cake_wallet/lib/ethereum/cw_ethereum.dart

13 lines
317 B
Dart
Raw Normal View History

2022-12-28 15:02:04 +00:00
part of 'ethereum.dart';
class CWEthereum extends Ethereum {
@override
List<String> getEthereumWordList(String language) {
return EthereumMnemonics.englishWordlist;
}
WalletService createEthereumWalletService(Box<WalletInfo> walletInfoSource) {
return EthereumWalletService(walletInfoSource);
}
}