mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
80 lines
4.1 KiB
Dart
80 lines
4.1 KiB
Dart
class Routes {
|
|
static const welcome = '/welcome';
|
|
static const newWallet = '/new_wallet';
|
|
static const setupPin = '/setup_pin_code';
|
|
static const newWalletFromWelcome = '/new_wallet_from_welcome';
|
|
static const restoreFromWelcome = '/restore_from_welcome';
|
|
static const seed = '/seed';
|
|
static const restoreOptions = '/restore_options';
|
|
static const restoreOptionsFromWelcome = '/restore_options_from_welcome';
|
|
static const restoreWalletOptions = '/restore_seed_keys';
|
|
static const restoreWalletOptionsFromWelcome = '/restore_wallet_options_from_welcome';
|
|
static const restoreWalletFromSeed = '/restore_wallet_from_seed';
|
|
static const restoreWalletFromKeys = '/restore_wallet_from_keys';
|
|
static const dashboard = '/dashboard';
|
|
static const send = '/send';
|
|
static const transactionDetails = '/transaction_info';
|
|
static const receive = '/receive';
|
|
static const newSubaddress = '/new_subaddress';
|
|
static const disclaimer = '/disclaimer';
|
|
static const readDisclaimer = '/read_disclaimer';
|
|
static const seedLanguage = '/seed_language';
|
|
static const walletList = '/view_model.wallet_list';
|
|
static const auth = '/auth';
|
|
static const nodeList = '/node_list';
|
|
static const newNode = '/new_node_list';
|
|
static const login = '/login';
|
|
static const splash = '/splash';
|
|
static const accountCreation = '/account_new';
|
|
static const addressBook = '/address_book';
|
|
static const pickerAddressBook = '/picker_address_book';
|
|
static const addressBookAddContact = '/address_book_add_contact';
|
|
static const showKeys = '/show_keys';
|
|
static const exchangeConfirm = '/exchange_confirm';
|
|
static const tradeHistory = '/trade_history';
|
|
static const tradeDetails = '/trade_details';
|
|
static const exchangeFunds = '/exchange_funds';
|
|
static const exchangeTrade = '/exchange_trade';
|
|
static const restoreWalletFromSeedDetails = '/restore_from_seed_details';
|
|
static const exchange = '/exchange';
|
|
static const settings = '/settings';
|
|
static const unlock = '/auth_not_closable';
|
|
static const rescan = '/rescan';
|
|
static const faq = '/faq';
|
|
static const newWalletType = '/new_wallet_type';
|
|
static const sendTemplate = '/send_template';
|
|
static const exchangeTemplate = '/exchange_template';
|
|
static const restoreWalletType = '/restore_wallet_type';
|
|
static const restoreWallet = '/restore_wallet';
|
|
static const preSeed = '/pre_seed';
|
|
static const backup = '/backup';
|
|
static const editBackupPassword = '/edit_backup_passowrd';
|
|
static const restoreFromBackup = '/restore_from_backup';
|
|
static const support = '/support';
|
|
static const orderDetails = '/order_details';
|
|
static const preOrder = '/pre_order';
|
|
static const buyWebView = '/buy_web_view';
|
|
static const unspentCoinsList = '/unspent_coins_list';
|
|
static const unspentCoinsDetails = '/unspent_coins_details';
|
|
static const moneroRestoreWalletFromWelcome = '/monero_restore_wallet';
|
|
static const moneroNewWalletFromWelcome = '/monero_new_wallet';
|
|
static const addressPage = '/address_page';
|
|
static const fullscreenQR = '/fullscreen_qr';
|
|
static const ioniaWelcomePage = '/cake_pay_welcome_page';
|
|
static const ioniaCreateAccountPage = '/cake_pay_create_account_page';
|
|
static const ioniaLoginPage = '/cake_pay_login_page';
|
|
static const ioniaManageCardsPage = '/manage_cards_page';
|
|
static const ioniaBuyGiftCardPage = '/buy_gift_card_page';
|
|
static const ioniaBuyGiftCardDetailPage = '/buy_gift_card_detail_page';
|
|
static const ioniaVerifyIoniaOtpPage = '/cake_pay_verify_otp_page';
|
|
static const ioniaDebitCardPage = '/debit_card_page';
|
|
static const ioniaActivateDebitCardPage = '/activate_debit_card_page';
|
|
static const ioniaAccountPage = 'ionia_account_page';
|
|
static const ioniaAccountCardsPage = 'ionia_account_cards_page';
|
|
static const ioniaCustomTipPage = 'ionia_custom_tip_page';
|
|
static const ioniaGiftCardDetailPage = '/ionia_gift_card_detail_page';
|
|
static const ioniaPaymentStatusPage = '/ionia_payment_status_page';
|
|
static const ioniaMoreOptionsPage = '/ionia_more_options_page';
|
|
static const ioniaCustomRedeemPage = '/ionia_custom_redeem_page';
|
|
static const onramperPage = '/onramper';
|
|
}
|