cake_wallet/lib/ethereum/cw_ethereum.dart

28 lines
882 B
Dart
Raw Normal View History

2022-12-28 15:02:04 +00:00
part of 'ethereum.dart';
class CWEthereum extends Ethereum {
@override
2023-01-03 20:19:02 +00:00
List<String> getEthereumWordList(String language) => EthereumMnemonics.englishWordlist;
2022-12-28 15:02:04 +00:00
2023-01-03 20:19:02 +00:00
WalletService createEthereumWalletService(Box<WalletInfo> walletInfoSource) =>
EthereumWalletService(walletInfoSource);
@override
WalletCredentials createEthereumNewWalletCredentials({
required String name,
WalletInfo? walletInfo,
}) =>
EthereumNewWalletCredentials(name: name, walletInfo: walletInfo);
@override
WalletCredentials createEthereumRestoreWalletFromSeedCredentials({
required String name,
required String mnemonic,
required String password,
}) =>
EthereumRestoreWalletFromSeedCredentials(name: name, password: password, mnemonic: mnemonic);
@override
String getAddress(WalletBase wallet) => (wallet as EthereumWallet).walletAddresses.address;
2022-12-28 15:02:04 +00:00
}