mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
17 lines
No EOL
407 B
Dart
17 lines
No EOL
407 B
Dart
import 'package:cw_core/wallet_type.dart';
|
|
|
|
const bitcoinMnemonicLength = 12;
|
|
const moneroMnemonicLength = 25;
|
|
|
|
int mnemonicLength(WalletType type) {
|
|
// TODO: need to have only one place for get(set) mnemonic string length;
|
|
|
|
switch (type) {
|
|
case WalletType.monero:
|
|
return moneroMnemonicLength;
|
|
case WalletType.bitcoin:
|
|
return bitcoinMnemonicLength;
|
|
default:
|
|
return 0;
|
|
}
|
|
} |