cake_wallet/lib/entities/preferences_key.dart

20 lines
1.1 KiB
Dart
Raw Normal View History

2020-09-21 11:50:26 +00:00
class PreferencesKey {
static const currentWalletType ='current_wallet_type';
static const currentWalletName ='current_wallet_name';
static const currentNodeIdKey = 'current_node_id';
static const currentBitcoinElectrumSererIdKey = 'current_node_id_btc';
static const currentFiatCurrencyKey = 'current_fiat_currency';
2021-01-27 13:51:51 +00:00
static const currentTransactionPriorityKeyLegacy = 'current_fee_priority';
2020-09-21 11:50:26 +00:00
static const currentBalanceDisplayModeKey = 'current_balance_display_mode';
static const shouldSaveRecipientAddressKey = 'save_recipient_address';
static const allowBiometricalAuthenticationKey =
'allow_biometrical_authentication';
static const currentTheme = 'current_theme';
2020-12-18 19:30:43 +00:00
static const isDarkThemeLegacy = 'dark_theme';
2020-09-21 11:50:26 +00:00
static const displayActionListModeKey = 'display_list_mode';
static const currentPinLength = 'current_pin_length';
static const currentLanguageCode = 'language_code';
2021-01-15 17:41:30 +00:00
static const currentDefaultSettingsMigrationVersion = 'current_default_settings_migration_version';
2021-01-27 13:51:51 +00:00
static const moneroTransactionPriority = 'current_fee_priority_monero';
static const bitcoinTransactionPriority = 'current_fee_priority_bitcoin';
2020-09-21 11:50:26 +00:00
}