2020-01-04 19:31:52 +00:00
|
|
|
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';
|
2020-02-28 20:16:39 +00:00
|
|
|
static const seedLanguage = '/seed_language';
|
2020-07-06 20:09:03 +00:00
|
|
|
static const walletList = '/view_model.wallet_list';
|
2020-01-04 19:31:52 +00:00
|
|
|
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 changeLanguage = '/change_language';
|
2020-04-28 17:50:12 +00:00
|
|
|
static const newWalletType = '/new_wallet_type';
|
2020-05-08 16:22:56 +00:00
|
|
|
static const sendTemplate = '/send_template';
|
2020-05-14 17:29:10 +00:00
|
|
|
static const exchangeTemplate = '/exchange_template';
|
2020-06-20 07:10:00 +00:00
|
|
|
static const restoreWalletType = '/restore_wallet_type';
|
2020-10-13 21:11:04 +00:00
|
|
|
static const restoreWallet = '/restore_wallet';
|
2020-11-27 11:08:17 +00:00
|
|
|
static const preSeed = '/pre_seed';
|
2021-01-13 16:43:34 +00:00
|
|
|
static const backup = '/backup';
|
|
|
|
static const editBackupPassword = '/edit_backup_passowrd';
|
|
|
|
static const restoreFromBackup = '/restore_from_backup';
|
2021-02-25 18:25:52 +00:00
|
|
|
static const support = '/support';
|
2021-03-12 19:04:37 +00:00
|
|
|
static const orderDetails = '/order_details';
|
2021-04-12 18:22:22 +00:00
|
|
|
static const preOrder = '/pre_order';
|
2021-04-13 18:40:44 +00:00
|
|
|
static const buyWebView = '/buy_web_view';
|
2021-05-25 17:32:36 +00:00
|
|
|
static const unspentCoinsList = '/unspent_coins_list';
|
2021-05-27 17:57:51 +00:00
|
|
|
static const unspentCoinsDetails = '/unspent_coins_details';
|
2020-01-04 19:31:52 +00:00
|
|
|
}
|