mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-27 05:59:38 +00:00
6eb0706b77
Conflicts: cw_bitcoin/lib/electrum_transaction_history.dart cw_bitcoin/lib/electrum_wallet_snapshot.dart cw_bitcoin/lib/file.dart cw_core/lib/file.dart cw_core/lib/utils/file.dart lib/di.dart lib/src/screens/restore/wallet_restore_from_seed_form.dart lib/view_model/wallet_new_vm.dart model_generator.sh tool/configure.dart
60 lines
2.1 KiB
Dart
60 lines
2.1 KiB
Dart
import 'dart:convert';
|
|
import 'package:cw_bitcoin/bitcoin_address_record.dart';
|
|
import 'package:cw_bitcoin/electrum_balance.dart';
|
|
import 'package:cw_core/encryption_file_utils.dart';
|
|
import 'package:cw_core/pathForWallet.dart';
|
|
import 'package:cw_core/utils/file.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
|
|
class ElectrumWallletSnapshot {
|
|
ElectrumWallletSnapshot({
|
|
required this.name,
|
|
required this.type,
|
|
required this.password,
|
|
required this.mnemonic,
|
|
required this.addresses,
|
|
required this.balance,
|
|
required this.regularAddressIndex,
|
|
required this.changeAddressIndex});
|
|
|
|
final String name;
|
|
final String password;
|
|
final WalletType type;
|
|
|
|
String mnemonic;
|
|
List<BitcoinAddressRecord> addresses;
|
|
ElectrumBalance balance;
|
|
int regularAddressIndex;
|
|
int changeAddressIndex;
|
|
|
|
static Future<ElectrumWallletSnapshot> load(EncryptionFileUtils encryptionFileUtils, String name, WalletType type, String password) async {
|
|
final path = await pathForWallet(name: name, type: type);
|
|
final jsonSource = await encryptionFileUtils.read(path: path, password: password);
|
|
final data = json.decode(jsonSource) as Map;
|
|
final addressesTmp = data['addresses'] as List? ?? <Object>[];
|
|
final mnemonic = data['mnemonic'] as String;
|
|
final addresses = addressesTmp
|
|
.whereType<String>()
|
|
.map((addr) => BitcoinAddressRecord.fromJSON(addr))
|
|
.toList();
|
|
final balance = ElectrumBalance.fromJSON(data['balance'] as String) ??
|
|
ElectrumBalance(confirmed: 0, unconfirmed: 0, frozen: 0);
|
|
var regularAddressIndex = 0;
|
|
var changeAddressIndex = 0;
|
|
|
|
try {
|
|
regularAddressIndex = int.parse(data['account_index'] as String? ?? '0');
|
|
changeAddressIndex = int.parse(data['change_address_index'] as String? ?? '0');
|
|
} catch (_) {}
|
|
|
|
return ElectrumWallletSnapshot(
|
|
name: name,
|
|
type: type,
|
|
password: password,
|
|
mnemonic: mnemonic,
|
|
addresses: addresses,
|
|
balance: balance,
|
|
regularAddressIndex: regularAddressIndex,
|
|
changeAddressIndex: changeAddressIndex);
|
|
}
|
|
}
|