cake_wallet/lib/core/mnemonic_length.dart
2020-09-21 14:50:26 +03:00

17 lines
No EOL
419 B
Dart

import 'package:cake_wallet/entities/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 lenth;
switch (type) {
case WalletType.monero:
return moneroMnemonicLength;
case WalletType.bitcoin:
return bitcoinMnemonicLength;
default:
return 0;
}
}