2022-12-28 15:02:04 +00:00
|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
import 'package:cw_core/balance.dart';
|
|
|
|
import 'package:cw_core/pathForWallet.dart';
|
|
|
|
import 'package:cw_core/transaction_history.dart';
|
|
|
|
import 'package:cw_core/transaction_info.dart';
|
|
|
|
import 'package:cw_core/wallet_base.dart';
|
|
|
|
import 'package:cw_core/wallet_info.dart';
|
|
|
|
import 'package:cw_core/wallet_service.dart';
|
|
|
|
import 'package:cw_core/wallet_type.dart';
|
|
|
|
import 'package:cw_ethereum/ethereum_wallet.dart';
|
|
|
|
import 'package:cw_ethereum/ethereum_wallet_creation_credentials.dart';
|
|
|
|
import 'package:hive/hive.dart';
|
2023-01-03 20:19:02 +00:00
|
|
|
import 'package:bip39/bip39.dart' as bip39;
|
2022-12-28 15:02:04 +00:00
|
|
|
|
|
|
|
class EthereumWalletService extends WalletService<EthereumNewWalletCredentials,
|
|
|
|
EthereumRestoreWalletFromSeedCredentials, EthereumRestoreWalletFromWIFCredentials> {
|
|
|
|
EthereumWalletService(this.walletInfoSource);
|
|
|
|
|
|
|
|
final Box<WalletInfo> walletInfoSource;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<EthereumWallet> create(EthereumNewWalletCredentials credentials) async {
|
2023-01-03 20:19:02 +00:00
|
|
|
final mnemonic = bip39.generateMnemonic();
|
|
|
|
final wallet = EthereumWallet(
|
|
|
|
walletInfo: credentials.walletInfo!,
|
|
|
|
mnemonic: mnemonic,
|
|
|
|
password: credentials.password!,
|
2022-12-28 15:02:04 +00:00
|
|
|
);
|
2023-01-05 19:05:44 +00:00
|
|
|
|
|
|
|
await wallet.init();
|
2023-01-03 20:19:02 +00:00
|
|
|
await wallet.save();
|
2022-12-28 15:02:04 +00:00
|
|
|
|
|
|
|
return wallet;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
WalletType getType() => WalletType.ethereum;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<bool> isWalletExit(String name) async =>
|
|
|
|
File(await pathForWallet(name: name, type: getType())).existsSync();
|
|
|
|
|
|
|
|
@override
|
2023-01-05 19:05:44 +00:00
|
|
|
Future<EthereumWallet> openWallet(String name, String password) async {
|
|
|
|
final walletInfo =
|
|
|
|
walletInfoSource.values.firstWhere((info) => info.id == WalletBase.idFor(name, getType()));
|
|
|
|
final wallet = await EthereumWalletBase.open(
|
|
|
|
name: name,
|
|
|
|
password: password,
|
|
|
|
walletInfo: walletInfo,
|
|
|
|
);
|
|
|
|
|
|
|
|
await wallet.init();
|
|
|
|
await wallet.save();
|
|
|
|
|
|
|
|
return wallet;
|
2022-12-28 15:02:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> remove(String wallet) async =>
|
|
|
|
File(await pathForWalletDir(name: wallet, type: getType())).delete(recursive: true);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<WalletBase<Balance, TransactionHistoryBase<TransactionInfo>, TransactionInfo>>
|
|
|
|
restoreFromKeys(credentials) {
|
|
|
|
throw UnimplementedError();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<WalletBase<Balance, TransactionHistoryBase<TransactionInfo>, TransactionInfo>>
|
|
|
|
restoreFromSeed(credentials) {
|
|
|
|
// TODO: implement restoreFromSeed
|
|
|
|
throw UnimplementedError();
|
|
|
|
}
|
|
|
|
}
|