mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-25 04:59:33 +00:00
12 lines
317 B
Dart
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);
|
|
}
|
|
}
|