mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
7 lines
No EOL
200 B
Dart
7 lines
No EOL
200 B
Dart
class BitcoinWalletKeys {
|
|
const BitcoinWalletKeys({required this.wif, required this.privateKey, required this.publicKey});
|
|
|
|
final String wif;
|
|
final String privateKey;
|
|
final String publicKey;
|
|
} |