mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
eeb9976d09
* update wallet restore page to be less confusing for nano users * update translations * only include private key if seed phrase is null * restore fixes * fix default derivation being wrong on restore * fix default nano derivationType & qr code parameters * update language on nano restore (hex form) * support hex seed from qr restore
69 lines
2.2 KiB
Dart
69 lines
2.2 KiB
Dart
import 'package:cake_wallet/view_model/restore/restore_mode.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
|
|
class RestoredWallet {
|
|
RestoredWallet(
|
|
{required this.restoreMode,
|
|
required this.type,
|
|
required this.address,
|
|
this.txId,
|
|
this.spendKey,
|
|
this.viewKey,
|
|
this.mnemonicSeed,
|
|
this.txAmount,
|
|
this.txDescription,
|
|
this.recipientName,
|
|
this.height,
|
|
this.privateKey});
|
|
|
|
final WalletRestoreMode restoreMode;
|
|
final WalletType type;
|
|
final String? address;
|
|
final String? txId;
|
|
final String? spendKey;
|
|
final String? viewKey;
|
|
final String? mnemonicSeed;
|
|
final String? txAmount;
|
|
final String? txDescription;
|
|
final String? recipientName;
|
|
final int? height;
|
|
final String? privateKey;
|
|
|
|
factory RestoredWallet.fromKey(Map<String, dynamic> json) {
|
|
final height = json['height'] as String?;
|
|
return RestoredWallet(
|
|
restoreMode: json['mode'] as WalletRestoreMode,
|
|
type: json['type'] as WalletType,
|
|
address: json['address'] as String?,
|
|
spendKey: json['spend_key'] as String?,
|
|
viewKey: json['view_key'] as String?,
|
|
height: height != null ? int.parse(height) : 0,
|
|
privateKey: json['private_key'] as String?,
|
|
);
|
|
}
|
|
|
|
factory RestoredWallet.fromSeed(Map<String, dynamic> json) {
|
|
final height = json['height'] as String?;
|
|
final mnemonic_seed = json['mnemonic_seed'] as String?;
|
|
final seed = json['seed'] as String? ?? json['hexSeed'] as String?;
|
|
return RestoredWallet(
|
|
restoreMode: json['mode'] as WalletRestoreMode,
|
|
type: json['type'] as WalletType,
|
|
address: json['address'] as String?,
|
|
mnemonicSeed: mnemonic_seed ?? seed,
|
|
height: height != null ? int.parse(height) : 0,
|
|
);
|
|
}
|
|
|
|
factory RestoredWallet.fromTxIds(Map<String, dynamic> json) {
|
|
return RestoredWallet(
|
|
restoreMode: json['mode'] as WalletRestoreMode,
|
|
type: json['type'] as WalletType,
|
|
address: json['address'] as String?,
|
|
txId: json['tx_payment_id'] as String,
|
|
txAmount: json['tx_amount'] as String,
|
|
txDescription: json['tx_description'] as String?,
|
|
recipientName: json['recipient_name'] as String?,
|
|
);
|
|
}
|
|
}
|