mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
62e0c2a592
* Fix stub creation * Generate MWEB addresses * Fix mweb address derivation * Use camel-case * Show utxos in tx list * A few fixes * Add spent processing * Update balance * Balance fixes * Update address records * Get rid of debounce hack * Get sending up to the confirmation box * Fee estimation * Stop the daemon if plugin is unloaded * Normal fee for non-mweb txns * Fix fee estimation for send all * Don't hash mweb addresses * More fee fixes * Broadcast mweb * Remove test files * One more * Confirm sent txns * Couple of fixes * Resign inputs after mweb create * Some more fixes * Update balance after sending * Correctly update address records * Update confs * [skip ci] updates * [skip ci] add dep overrides * working * small fix * merge fixes [skip ci] * merge fixes [skip ci] * [skip ci] minor fixes * silent payment fixes [skip ci] * updates [skip ci] * save [skip ci] * use mwebutxos box * [skip ci] lots of fixes, still testing * add rescan from height feature and test workflow build * install go * use sudo * correct package name * move building mweb higher for faster testing * install fixes * install later version of go * go fixes * testing * testing * testing * testing * testing * should workgit add .github/workflows/pr_test_build.yml * ??? * ??? pt.2 * should work, for real this time * fix tx history not persisting + update build_mwebd script * updates * fix some rescan and address gen issues * save [skip ci] * fix unconfirmed balance not updating when receiving * unspent coins / coin control fixes * coin control fixes * address balance and txCount fixes, try/catch electrum call * fix txCount for addresses * save [skip ci] * potential fixes * minor fix * minor fix - 2 * sync status fixes, potential fix for background state issue * workflow and script updates * updates * expirimental optimization * [skip ci] minor enhancements * workflow and script fixes * workflow minor cleanup [skip ci] * minor code cleanup & friendlier error message on failed tx's * balance when sending fix * experimental * more experiments * save * updates * coin control edge cases * remove neutrino.db if no litecoin wallets left after deleting * update translations * updates * minor fix * [skip ci] update translations + minor fixes * state fixes * configure fix * ui updates * translation fixes * [skip ci] addressbook updates * fix popup * fix popup2 * fix litecoin address book * fix ios mwebd build script * fix for building monero.com * minor fix * uncomment fix for state issues * potential mweb sync fix (ios) * remove print [skip ci] * electrum stream potential fix * fix ios build issues [skip ci] * connection reliability updates, update kotlin code to match swift code, minor electrum error handling * dep fixes * minor fix * more merge fixes * bitcoin_flutter removal fixes * [skip ci] fix always scan setting, swift updates * updates * fixes * small fix * small fix * fix * dart:convert != package:convert * change address fixes * update bitcoin_base to fix mweb address program checking * fix ios xcode project [skip ci] * updates * more fixes * more fixes * ensure we don't initialize mweb until we really have to * fix regression * improve mweb reliability * [skip ci] wip adress generation * wip * wip * [skip ci] wip * updates [skip ci] * ios fixes * fix workflows + ios fix * test old mweb version * update go version and mwebd hash * review updates pt.1 * Update cw_bitcoin/lib/litecoin_wallet.dart Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> * remove non-litecoin address types regex [skip ci] * more minor fixes * remove duplicate [skip ci] * Update lib/store/settings_store.dart Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> * script updates, swap params on createLitecoinWalletService * topup fix * [skip ci] wip * [skip ci] testing * [skip ci] file didn't get saved * more address generation reliability fixes * [skip ci] minor * minor code cleanup * hopefully prevents send issue * [skip ci] wip address changes * [skip ci] save * save mweb addresses, auto-restart sync process if it gets stuck [skip ci] * address generation issues mostly resolved * more performance fixes * [skip ci] * this should maybe be refactored, pt.1 * separate mweb balances, pt.2 * [skip ci] save * add translations [skip ci] * fix sending with mweb amounts * works for simple mweb-mweb case, further testing needed * found an edge case * [skip ci] make failed broadcast error message less serious * minor * capture all grpc errors and much better error handling overall * [skip ci] minor * prevent transactions with < 6 confirmations from being used + hide mweb balances if mweb is off * fix * merge fixes pt.1 [skip ci] * fix mweb tags * fix * [skip ci] fix tag spacing * fix transaction history not showing up * fix mweb crash on non-fully deleted mweb cache, sync status ETA, other connection fixes * [skip ci] minor code cleanup * [skip ci] minor code cleanup * additional cleanup * silent payments eta fixes and updates * revert sync eta changes into separate pr * [skip ci] minor * [skip ci] minor * revert sync status title * review fixes, additional cleanup * [skip ci] minor * [skip ci] minor * [skip ci] minor * trigger build * review fixes, pt.2 * check if still processing utxos before updating sync status [skip ci] * [skip ci] minor * balance fix * minor * minor * [skip ci] minor * [skip ci] fix test net btc * don't use mwebd for non-mweb tx's * [skip ci] minor cleanup * don't show all 1000+ mweb addresses on receive page * minor cleanup + additional logging --------- Co-authored-by: Hector Chu <hectorchu@gmail.com> Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> Co-authored-by: Czarek Nakamoto <cyjan@mrcyjanek.net>
111 lines
5.7 KiB
Dart
111 lines
5.7 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 seed = '/seed';
|
|
static const restoreOptions = '/restore_options';
|
|
static const restoreWalletFromSeedKeys = '/restore_wallet_from_seeds_keys';
|
|
static const restoreWalletFromHardwareWallet = '/restore/hardware_wallet';
|
|
static const restoreWalletTypeFromQR = '/restore_wallet_from_qr_code';
|
|
static const restoreWalletChooseDerivation = '/restore_wallet_choose_derivation';
|
|
static const chooseHardwareWalletAccount = '/restore/hardware_wallet/accounts';
|
|
static const dashboard = '/dashboard';
|
|
static const send = '/send';
|
|
static const transactionDetails = '/transaction_info';
|
|
static const bumpFeePage = '/bump_fee_page';
|
|
static const receive = '/receive';
|
|
static const newSubaddress = '/new_subaddress';
|
|
static const walletEdit = '/walletEdit';
|
|
static const disclaimer = '/disclaimer';
|
|
static const readDisclaimer = '/read_disclaimer';
|
|
static const changeRep = '/change_representative';
|
|
static const walletList = '/view_model.wallet_list';
|
|
static const auth = '/auth';
|
|
static const newNode = '/new_node_list';
|
|
static const newPowNode = '/new_pow_node_list';
|
|
static const login = '/login';
|
|
static const splash = '/splash';
|
|
static const accountCreation = '/account_new';
|
|
static const nanoAccountCreation = '/nano_account_new';
|
|
static const addressBook = '/address_book';
|
|
static const pickerAddressBook = '/picker_address_book';
|
|
static const pickerWalletAddress = '/picker_wallet_address';
|
|
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 exchange = '/exchange';
|
|
static const settings = '/settings';
|
|
static const desktop_settings_page = '/desktop_settings_page';
|
|
static const empty_no_route = '/empty_no_route';
|
|
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 preSeedPage = '/pre_seed_page';
|
|
static const backup = '/backup';
|
|
static const editBackupPassword = '/edit_backup_passowrd';
|
|
static const restoreFromBackup = '/restore_from_backup';
|
|
static const support = '/support';
|
|
static const supportLiveChat = '/support/live_chat';
|
|
static const supportOtherLinks = '/support/other';
|
|
static const orderDetails = '/order_details';
|
|
static const buySellPage = '/buy_sell_page';
|
|
static const buyWebView = '/buy_web_view';
|
|
static const unspentCoinsList = '/unspent_coins_list';
|
|
static const unspentCoinsDetails = '/unspent_coins_details';
|
|
static const addressPage = '/address_page';
|
|
static const fullscreenQR = '/fullscreen_qr';
|
|
static const cakePayWelcomePage = '/cake_pay_welcome_page';
|
|
static const cakePayLoginPage = '/cake_pay_login_page';
|
|
static const cakePayCardsPage = '/cake_pay_cards_page';
|
|
static const cakePayBuyCardPage = '/cake_pay_buy_card_page';
|
|
static const cakePayBuyCardDetailPage = '/cake_pay_buy_card_detail_page';
|
|
static const cakePayVerifyOtpPage = '/cake_pay_verify_otp_page';
|
|
static const cakePayAccountPage = '/cake_pay_account_page';
|
|
static const webViewPage = '/web_view_page';
|
|
static const silentPaymentsSettings = '/silent_payments_settings';
|
|
static const mwebSettings = '/mweb_settings';
|
|
static const connectionSync = '/connection_sync_page';
|
|
static const securityBackupPage = '/security_and_backup_page';
|
|
static const privacyPage = '/privacy_page';
|
|
static const trocadorProvidersPage = '/trocador_providers_page';
|
|
static const domainLookupsPage = '/domain_lookups_page';
|
|
static const displaySettingsPage = '/display_settings_page';
|
|
static const otherSettingsPage = '/other_settings_page';
|
|
static const advancedPrivacySettings = '/advanced_privacy_settings';
|
|
static const sweepingWalletPage = '/sweeping_wallet_page';
|
|
static const walletPasswordUnlock = '/wallet_password_unlock';
|
|
static const walletUnlockLoadable = '/wallet_unlock_loadable';
|
|
static const anonPayInvoicePage = '/anon_pay_invoice_page';
|
|
static const anonPayReceivePage = '/anon_pay_receive_page';
|
|
static const anonPayDetailsPage = '/anon_pay_details_page';
|
|
static const desktop_actions = '/desktop_actions';
|
|
static const transactionsPage = '/transactions_page';
|
|
static const setup_2faPage = '/setup_2fa_page';
|
|
static const setup_2faQRPage = '/setup_2fa_qr_page';
|
|
static const totpAuthCodePage = '/totp_auth_code_page';
|
|
static const modify2FAPage = '/modify_2fa_page';
|
|
static const setup2faInfoPage = '/setup_2fa_info_page';
|
|
static const homeSettings = '/home_settings';
|
|
static const editToken = '/edit_token';
|
|
static const manageNodes = '/manage_nodes';
|
|
static const managePowNodes = '/manage_pow_nodes';
|
|
static const walletConnectConnectionsListing = '/wallet-connect-connections-listing';
|
|
static const nftDetailsPage = '/nft_details_page';
|
|
static const importNFTPage = '/import_nft_page';
|
|
static const torPage = '/tor_page';
|
|
|
|
static const signPage = '/sign_page';
|
|
static const connectDevices = '/device/connect';
|
|
static const walletGroupsDisplayPage = '/wallet_groups_display_page';
|
|
static const walletGroupDescription = '/wallet_group_description';
|
|
}
|