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