mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
15 lines
No EOL
374 B
Dart
15 lines
No EOL
374 B
Dart
class BitcoinWalletKeys {
|
|
const BitcoinWalletKeys({required this.wif, required this.privateKey, required this.publicKey, required this.xpub});
|
|
|
|
final String wif;
|
|
final String privateKey;
|
|
final String publicKey;
|
|
final String xpub;
|
|
|
|
Map<String, String> toJson() => {
|
|
'wif': wif,
|
|
'privateKey': privateKey,
|
|
'publicKey': publicKey,
|
|
'xpub': xpub
|
|
};
|
|
} |