mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-18 10:11:03 +00:00
10 lines
206 B
Dart
10 lines
206 B
Dart
|
import 'package:stackwallet/models/ordinal.dart';
|
||
|
|
||
|
class OrdinalsAPI {
|
||
|
// dummy class with sample functions to be changed / filled out
|
||
|
|
||
|
static Future<List<Ordinal>> fetch() async {
|
||
|
return [];
|
||
|
}
|
||
|
}
|