import 'dart:async'; import 'dart:convert'; import 'package:cw_core/crypto_currency.dart'; import 'package:cw_core/node.dart'; import 'package:cw_core/pathForWallet.dart'; import 'package:cw_core/pending_transaction.dart'; import 'package:cw_core/sync_status.dart'; import 'package:cw_core/transaction_priority.dart'; import 'package:cw_core/wallet_addresses.dart'; import 'package:cw_core/wallet_base.dart'; import 'package:cw_core/wallet_info.dart'; import 'package:cw_ethereum/ethereum_balance.dart'; import 'package:cw_ethereum/ethereum_client.dart'; import 'package:cw_ethereum/ethereum_transaction_history.dart'; import 'package:cw_ethereum/ethereum_transaction_info.dart'; import 'package:cw_ethereum/ethereum_transaction_priority.dart'; import 'package:cw_ethereum/ethereum_wallet_addresses.dart'; import 'package:cw_ethereum/file.dart'; import 'package:mobx/mobx.dart'; import 'package:web3dart/web3dart.dart'; import 'package:ed25519_hd_key/ed25519_hd_key.dart'; import 'package:bip39/bip39.dart' as bip39; import 'package:hex/hex.dart'; part 'ethereum_wallet.g.dart'; class EthereumWallet = EthereumWalletBase with _$EthereumWallet; abstract class EthereumWalletBase extends WalletBase with Store { EthereumWalletBase({ required WalletInfo walletInfo, required String mnemonic, required String password, EthereumBalance? initialBalance, }) : syncStatus = NotConnectedSyncStatus(), _password = password, _mnemonic = mnemonic, _feeRates = [], walletAddresses = EthereumWalletAddresses(walletInfo), balance = ObservableMap.of( {CryptoCurrency.eth: initialBalance ?? EthereumBalance(available: 0, additional: 0)}), super(walletInfo) { this.walletInfo = walletInfo; } final String _mnemonic; final String _password; late final String privateKey; late EthereumClient _client; List _feeRates; int? _gasPrice; @override WalletAddresses walletAddresses; @override SyncStatus syncStatus; @override @observable late ObservableMap balance; Future init() async { privateKey = await getPrivateKey(_mnemonic, _password); transactionHistory = EthereumTransactionHistory(); walletAddresses.address = EthPrivateKey.fromHex(privateKey).address.toString(); } @override int calculateEstimatedFee(TransactionPriority priority, int? amount) { throw UnimplementedError("calculateEstimatedFee"); } @override Future changePassword(String password) { throw UnimplementedError("changePassword"); } @override void close() {} @override Future connectToNode({required Node node}) async { try { syncStatus = ConnectingSyncStatus(); final isConnected = await _client.connect(node); if (!isConnected) { throw Exception("Ethereum Node connection failed"); } _updateBalance(); syncStatus = ConnectedSyncStatus(); } catch (e) { syncStatus = FailedSyncStatus(); } } @override Future createTransaction(Object credentials) { throw UnimplementedError("createTransaction"); } @override Future> fetchTransactions() { throw UnimplementedError("fetchTransactions"); } @override Object get keys => throw UnimplementedError("keys"); @override Future rescan({required int height}) { throw UnimplementedError("rescan"); } @override Future save() async { final path = await makePath(); await write(path: path, password: _password, data: toJSON()); await transactionHistory.save(); } @override String get seed => _mnemonic; @override Future startSync() async { try { syncStatus = AttemptingSyncStatus(); await _updateBalance(); _gasPrice = await _client.getGasUnitPrice(); _feeRates = await _client.getEstimatedGasForPriorities(); Timer.periodic( const Duration(minutes: 1), (timer) async => _gasPrice = await _client.getGasUnitPrice()); Timer.periodic(const Duration(minutes: 1), (timer) async => _feeRates = await _client.getEstimatedGasForPriorities()); syncStatus = SyncedSyncStatus(); } catch (e, stacktrace) { print(stacktrace); print(e.toString()); syncStatus = FailedSyncStatus(); } } int feeRate(TransactionPriority priority) { try { if (priority is EthereumTransactionPriority) { return _feeRates[priority.raw] * _gasPrice!; } return 0; } catch (e) { return 0; } } Future makePath() async => pathForWallet(name: walletInfo.name, type: walletInfo.type); String toJSON() => json.encode({ 'mnemonic': _mnemonic, 'balance': balance[currency]!.toJSON(), // TODO: save other attributes }); static Future open({ required String name, required String password, required WalletInfo walletInfo, }) async { final path = await pathForWallet(name: name, type: walletInfo.type); final jsonSource = await read(path: path, password: password); final data = json.decode(jsonSource) as Map; final mnemonic = data['mnemonic'] as String; final balance = EthereumBalance.fromJSON(data['balance'] as String) ?? EthereumBalance(available: 0, additional: 0); return EthereumWallet( walletInfo: walletInfo, password: password, mnemonic: mnemonic, initialBalance: balance, ); } Future _updateBalance() async { balance[currency] = await _fetchBalances(); await save(); } Future _fetchBalances() async { final balance = await _client.getBalance(privateKey); return EthereumBalance( available: balance.getInEther.toInt(), additional: balance.getInEther.toInt(), ); } Future getPrivateKey(String mnemonic, String password) async { final seed = bip39.mnemonicToSeedHex(mnemonic); final master = await ED25519_HD_KEY.getMasterKeyFromSeed( HEX.decode(seed), masterSecret: password, ); final privateKey = HEX.encode(master.key); return privateKey; } }