Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions app/lib/models/wallet_model.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/// A stub model representing a KidWallet account.
class WalletModel {
/// The current balance in stroops (1 XLM = 10,000,000 stroops).
final int balance;

/// The Stellar public key address for this wallet.
final String address;

const WalletModel({
required this.balance,
required this.address,
});
}
Loading