cake_wallet/lib/ethereum/cw_ethereum.dart
2022-12-28 17:02:04 +02:00

12 lines
317 B
Dart

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);
}
}