mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-26 13:39:39 +00:00
a96f91fbee
Add estimated gas price
219 lines
6.2 KiB
Dart
219 lines
6.2 KiB
Dart
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<EthereumBalance, EthereumTransactionHistory, EthereumTransactionInfo>
|
|
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<CryptoCurrency, EthereumBalance>.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<int> _feeRates;
|
|
int? _gasPrice;
|
|
|
|
@override
|
|
WalletAddresses walletAddresses;
|
|
|
|
@override
|
|
SyncStatus syncStatus;
|
|
|
|
@override
|
|
@observable
|
|
late ObservableMap<CryptoCurrency, EthereumBalance> balance;
|
|
|
|
Future<void> 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<void> changePassword(String password) {
|
|
throw UnimplementedError("changePassword");
|
|
}
|
|
|
|
@override
|
|
void close() {}
|
|
|
|
@override
|
|
Future<void> 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<PendingTransaction> createTransaction(Object credentials) {
|
|
throw UnimplementedError("createTransaction");
|
|
}
|
|
|
|
@override
|
|
Future<Map<String, EthereumTransactionInfo>> fetchTransactions() {
|
|
throw UnimplementedError("fetchTransactions");
|
|
}
|
|
|
|
@override
|
|
Object get keys => throw UnimplementedError("keys");
|
|
|
|
@override
|
|
Future<void> rescan({required int height}) {
|
|
throw UnimplementedError("rescan");
|
|
}
|
|
|
|
@override
|
|
Future<void> save() async {
|
|
final path = await makePath();
|
|
await write(path: path, password: _password, data: toJSON());
|
|
await transactionHistory.save();
|
|
}
|
|
|
|
@override
|
|
String get seed => _mnemonic;
|
|
|
|
@override
|
|
Future<void> 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<String> 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<EthereumWallet> 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<void> _updateBalance() async {
|
|
balance[currency] = await _fetchBalances();
|
|
await save();
|
|
}
|
|
|
|
Future<EthereumBalance> _fetchBalances() async {
|
|
final balance = await _client.getBalance(privateKey);
|
|
|
|
return EthereumBalance(
|
|
available: balance.getInEther.toInt(),
|
|
additional: balance.getInEther.toInt(),
|
|
);
|
|
}
|
|
|
|
Future<String> 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;
|
|
}
|
|
}
|