mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-10-30 08:57:38 +00:00
4120394121
* chore: Setup * feat: Verbose controls for TOTP 2FA WIP [skip-ci] * feat: Implement verbose controls for sends to contact, non contacts and internal wallets * feat: Implement verbose 2FA control for exchanges to internal wallets [skip-ci] * Implement verbose controls * chore: PR cleanup * fix: Implement fixes and recommendations on verbose controls * feat: Localization for verbose controls settings * fix: disable pin when 2fa is not activated * fix: Naming error * chore: Reformat code with linelength of 100 * fix: Wallet type page and type bug when creating wallet * fix: add new values to be stored in local storage to both reload function and import/export functions in back_service.dart * fix: White spaces with localization files * fix: Switch observers in modify_2fa page to individual observer * chore: Switch custom tab widget to reusable SettingsChoicesCell widget * chore: Remove unneeded argument in create wallet entrypoint * fix: Switch type for selectedCakePreference when importing preferences from backup file * fix: Await all values being saved to local storage --------- Co-authored-by: David Adegoke <blazebrain@Davids-MacBook-Pro.local>
69 lines
3.9 KiB
Dart
69 lines
3.9 KiB
Dart
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 currentLitecoinElectrumSererIdKey = 'current_node_id_ltc';
|
|
static const currentHavenNodeIdKey = 'current_node_id_xhv';
|
|
static const currentFiatCurrencyKey = 'current_fiat_currency';
|
|
static const currentTransactionPriorityKeyLegacy = 'current_fee_priority';
|
|
static const currentBalanceDisplayModeKey = 'current_balance_display_mode';
|
|
static const shouldSaveRecipientAddressKey = 'save_recipient_address';
|
|
static const isAppSecureKey = 'is_app_secure';
|
|
static const disableBuyKey = 'disable_buy';
|
|
static const disableSellKey = 'disable_sell';
|
|
static const currentFiatApiModeKey = 'current_fiat_api_mode';
|
|
static const allowBiometricalAuthenticationKey =
|
|
'allow_biometrical_authentication';
|
|
static const useTOTP2FA = 'use_totp_2fa';
|
|
static const failedTotpTokenTrials = 'failed_token_trials';
|
|
static const totpSecretKey = 'totp_qr_secret_key';
|
|
static const disableExchangeKey = 'disable_exchange';
|
|
static const exchangeStatusKey = 'exchange_status';
|
|
static const currentTheme = 'current_theme';
|
|
static const isDarkThemeLegacy = 'dark_theme';
|
|
static const displayActionListModeKey = 'display_list_mode';
|
|
static const currentPinLength = 'current_pin_length';
|
|
static const currentLanguageCode = 'language_code';
|
|
static const currentDefaultSettingsMigrationVersion =
|
|
'current_default_settings_migration_version';
|
|
static const moneroTransactionPriority = 'current_fee_priority_monero';
|
|
static const bitcoinTransactionPriority = 'current_fee_priority_bitcoin';
|
|
static const havenTransactionPriority = 'current_fee_priority_haven';
|
|
static const litecoinTransactionPriority = 'current_fee_priority_litecoin';
|
|
static const shouldShowReceiveWarning = 'should_show_receive_warning';
|
|
static const shouldShowYatPopup = 'should_show_yat_popup';
|
|
static const moneroWalletPasswordUpdateV1Base = 'monero_wallet_update_v1';
|
|
static const pinTimeOutDuration = 'pin_timeout_duration';
|
|
static const lastAuthTimeMilliseconds = 'last_auth_time_milliseconds';
|
|
static const lastPopupDate = 'last_popup_date';
|
|
static const lastAppReviewDate = 'last_app_review_date';
|
|
|
|
static String moneroWalletUpdateV1Key(String name) =>
|
|
'${PreferencesKey.moneroWalletPasswordUpdateV1Base}_${name}';
|
|
|
|
static const exchangeProvidersSelection = 'exchange-providers-selection';
|
|
static const clearnetDonationLink = 'clearnet_donation_link';
|
|
static const onionDonationLink = 'onion_donation_link';
|
|
static const lastSeenAppVersion = 'last_seen_app_version';
|
|
static const shouldShowMarketPlaceInDashboard =
|
|
'should_show_marketplace_in_dashboard';
|
|
static const isNewInstall = 'is_new_install';
|
|
static const shouldRequireTOTP2FAForAccessingWallet =
|
|
'should_require_totp_2fa_for_accessing_wallets';
|
|
static const shouldRequireTOTP2FAForSendsToContact =
|
|
'should_require_totp_2fa_for_sends_to_contact';
|
|
static const shouldRequireTOTP2FAForSendsToNonContact =
|
|
'should_require_totp_2fa_for_sends_to_non_contact';
|
|
static const shouldRequireTOTP2FAForSendsToInternalWallets =
|
|
'should_require_totp_2fa_for_sends_to_internal_wallets';
|
|
static const shouldRequireTOTP2FAForExchangesToInternalWallets =
|
|
'should_require_totp_2fa_for_exchanges_to_internal_wallets';
|
|
static const shouldRequireTOTP2FAForAddingContacts =
|
|
'should_require_totp_2fa_for_adding_contacts';
|
|
static const shouldRequireTOTP2FAForCreatingNewWallets =
|
|
'should_require_totp_2fa_for_creating_new_wallets';
|
|
static const shouldRequireTOTP2FAForAllSecurityAndBackupSettings =
|
|
'should_require_totp_2fa_for_all_security_and_backup_settings';
|
|
static const selectedCake2FAPreset = 'selected_cake_2fa_preset';
|
|
}
|