├── .env.example ├── .eslintrc.js ├── .github ├── CODEOWNERS └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── layout-issue.md ├── .gitignore ├── .prettierrc.js ├── .svgrrc ├── .vscode └── settings.json ├── LICENSE ├── PRIVACY.md ├── README.md ├── app.config.js ├── app.json ├── babel.config.js ├── crowdin.yml ├── declaration.d.ts ├── global.js ├── index.js ├── metro.config.js ├── package.json ├── scripts ├── clean-unused-assets.js ├── find-unused-icons.js ├── scan-asset-usage.js └── update-asset-imports.js ├── src ├── EVMApp.tsx ├── HiveApp.tsx ├── MultichainApp.tsx ├── actions │ ├── accountValueDisplay.ts │ ├── accounts.ts │ ├── browser.ts │ ├── colors.ts │ ├── floatingBar.ts │ ├── hive-uri.ts │ ├── hive.ts │ ├── hiveAuthenticationService.ts │ ├── hiveEngine.ts │ ├── index.ts │ ├── interfaces.ts │ ├── message.ts │ ├── navigation.ts │ ├── notifications.ts │ ├── preferences.ts │ ├── rpc-switcher.ts │ ├── settings.ts │ ├── tokensFilters.ts │ ├── types.ts │ └── walletFilters.ts ├── api │ ├── base.api.ts │ ├── hiveEngine.api.ts │ ├── keychain.api.ts │ ├── keychainSwap.api.ts │ └── peakdNotifications.api.ts ├── assets │ ├── fonts │ │ ├── JosefinSans-Bold.ttf │ │ ├── JosefinSans-Medium.ttf │ │ ├── JosefinSans-Regular.ttf │ │ ├── Poppins-Black.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-Italic.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-Regular.ttf │ │ └── Poppins-SemiBold.ttf │ └── images │ │ ├── background │ │ ├── about_background_light.svg │ │ ├── background-icon-red.svg │ │ ├── background_squares.svg │ │ ├── hexagons-bg-dark.png │ │ └── hexagons-bg-light.png │ │ ├── bottom-bar │ │ └── browser.svg │ │ ├── browser │ │ ├── add-browser.svg │ │ ├── add-tab.svg │ │ ├── desktop.svg │ │ ├── drag.svg │ │ ├── heart-empty.png │ │ ├── heart.png │ │ ├── home-browser.svg │ │ ├── mobile.svg │ │ ├── rotate-right-browser.svg │ │ ├── swipe-down.svg │ │ ├── swipe-left.svg │ │ ├── swipe-right.svg │ │ └── two-fingers-tap.svg │ │ ├── buy │ │ ├── binance.svg │ │ ├── dark │ │ │ ├── gateio.svg │ │ │ ├── huobi.svg │ │ │ ├── ionomy.svg │ │ │ └── mexc.svg │ │ ├── light │ │ │ ├── gateio.svg │ │ │ ├── huobi.svg │ │ │ ├── ionomy.svg │ │ │ └── mexc.svg │ │ ├── transak-logo-rounded.svg │ │ └── upbit.svg │ │ ├── carousel │ │ ├── circle_indicator_active.svg │ │ ├── circle_indicator_inactive.svg │ │ └── circle_indicator_inactive_light.svg │ │ ├── chains │ │ └── ethereum_logo.svg │ │ ├── common-ui │ │ ├── add-circle-outline.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right.svg │ │ ├── arrow-up.svg │ │ ├── arrow_left_dark.svg │ │ ├── arrow_left_light.svg │ │ ├── at.svg │ │ ├── backspace_dark_theme.svg │ │ ├── backspace_light_theme.svg │ │ ├── calendar.svg │ │ ├── caret-up.svg │ │ ├── check.svg │ │ ├── clock.svg │ │ ├── close-circle.svg │ │ ├── close_circle_dark.svg │ │ ├── close_circle_light.svg │ │ ├── copy.svg │ │ ├── edit.svg │ │ ├── error.svg │ │ ├── expand-less.svg │ │ ├── expand-more.svg │ │ ├── expand.svg │ │ ├── external-link.svg │ │ ├── eye-crossed.svg │ │ ├── eye.svg │ │ ├── filters.svg │ │ ├── icon_scan-qr.svg │ │ ├── info.svg │ │ ├── remove.svg │ │ ├── save-rpc.svg │ │ ├── scanner.svg │ │ ├── search.svg │ │ ├── share.svg │ │ └── success.svg │ │ ├── drawer │ │ ├── discord_logo.svg │ │ ├── hamburguer-menu-dark.svg │ │ ├── hamburguer-menu-light.svg │ │ ├── help.svg │ │ ├── medium.svg │ │ ├── moon.svg │ │ ├── sun.svg │ │ └── x_logo.svg │ │ ├── governance │ │ └── arrow_circle_up.svg │ │ ├── has │ │ ├── has_title_light.svg │ │ ├── logo-has.svg │ │ └── logo-light.png │ │ ├── hive │ │ ├── hbd.svg │ │ ├── hive-engine.svg │ │ ├── hive.svg │ │ ├── hive_engine.png │ │ ├── hive_logo.svg │ │ ├── icon_hbd.svg │ │ ├── icon_hive.svg │ │ ├── icon_hp.svg │ │ └── multisig.png │ │ ├── icons │ │ ├── android_launcher.png │ │ ├── ios_launcher.png │ │ ├── keychain_logo_powered_dark_theme.svg │ │ ├── keychain_logo_powered_light_theme.svg │ │ └── splashscreen.png │ │ ├── intro │ │ ├── hand_1.svg │ │ ├── hive_logo_signup_dark.svg │ │ ├── hive_logo_signup_light.svg │ │ ├── onboarding_mobile.png │ │ └── person_1.svg │ │ ├── keychain.svg │ │ ├── menus │ │ ├── accounts.svg │ │ ├── accounts │ │ │ ├── add-account.svg │ │ │ ├── create-account.svg │ │ │ └── key.svg │ │ ├── governance.svg │ │ ├── help │ │ │ ├── support.svg │ │ │ └── tutorial.svg │ │ ├── logout.svg │ │ ├── settings.svg │ │ ├── settings │ │ │ ├── automated-tasks.svg │ │ │ ├── export.svg │ │ │ ├── settings-multisig.svg │ │ │ ├── settings-notifications.svg │ │ │ ├── settings-operations.svg │ │ │ ├── settings-rpc.svg │ │ │ └── settings-wheel.svg │ │ └── theme.svg │ │ └── wallet │ │ ├── convert.svg │ │ ├── decrypt.svg │ │ ├── delegate-token.svg │ │ ├── delegate.svg │ │ ├── empty-wallet.svg │ │ ├── encrypt.svg │ │ ├── gift.svg │ │ ├── history.svg │ │ ├── hp-icon-light.svg │ │ ├── icon_savings.svg │ │ ├── img_import_dark.svg │ │ ├── img_import_light.svg │ │ ├── power-down.svg │ │ ├── power-icon.svg │ │ ├── power-up-down.svg │ │ ├── power-up.svg │ │ ├── rc-delegation-light.svg │ │ ├── rc.svg │ │ ├── savings.svg │ │ ├── stake.svg │ │ ├── swap.svg │ │ ├── swap │ │ ├── exchange-arrow-circled.svg │ │ └── exchange-arrow.svg │ │ ├── transfer.svg │ │ ├── unstake.svg │ │ └── voting-mana.svg ├── background │ ├── activeAccount.module.ts │ ├── autoStakeTokens.module.ts │ ├── claim.module.ts │ ├── index.ts │ └── multisig.module.tsx ├── components │ ├── bridge │ │ ├── html.ts │ │ └── index.tsx │ ├── browser │ │ ├── Header.tsx │ │ ├── HomeTab │ │ │ ├── Explore.tsx │ │ │ ├── Favorites.tsx │ │ │ ├── History.tsx │ │ │ ├── components │ │ │ │ ├── CategoryButton.tsx │ │ │ │ └── DAppCard.tsx │ │ │ └── index.tsx │ │ ├── ProgressBar.tsx │ │ ├── RequestModalContent.tsx │ │ ├── Tab.tsx │ │ ├── bridges │ │ │ ├── DesktopMode.ts │ │ │ ├── HiveKeychainBridge.ts │ │ │ └── WebviewInfo.ts │ │ ├── index.tsx │ │ ├── requestOperations │ │ │ ├── AddAccount.tsx │ │ │ ├── AddAccountAuthority.tsx │ │ │ ├── AddKeyAuthority.tsx │ │ │ ├── Broadcast.tsx │ │ │ ├── Convert.tsx │ │ │ ├── CreateAccount.tsx │ │ │ ├── CreateProposal.tsx │ │ │ ├── Custom.tsx │ │ │ ├── Decode.tsx │ │ │ ├── Delegation.tsx │ │ │ ├── Encode.tsx │ │ │ ├── Post.tsx │ │ │ ├── PowerDown.tsx │ │ │ ├── PowerUp.tsx │ │ │ ├── Proxy.tsx │ │ │ ├── RecurrentTransfer.tsx │ │ │ ├── RemoveAccountAuthority.tsx │ │ │ ├── RemoveKeyAuthority.tsx │ │ │ ├── RemoveProposal.tsx │ │ │ ├── SendToken.tsx │ │ │ ├── SignBuffer.tsx │ │ │ ├── SignTx.tsx │ │ │ ├── Swap.tsx │ │ │ ├── Transfer.tsx │ │ │ ├── UpdateProposalVote.tsx │ │ │ ├── Vote.tsx │ │ │ ├── Witness.tsx │ │ │ ├── components │ │ │ │ ├── CollapsibleData.tsx │ │ │ │ ├── RequestBalance.tsx │ │ │ │ ├── RequestError.tsx │ │ │ │ ├── RequestItem.tsx │ │ │ │ ├── RequestMessage.tsx │ │ │ │ ├── RequestOperation.tsx │ │ │ │ ├── RequestResultMessage.tsx │ │ │ │ ├── RequestSwapDisplay.tsx │ │ │ │ └── RequestUsername.tsx │ │ │ ├── index.ts │ │ │ └── requestOperations.types.ts │ │ ├── tabsManagement │ │ │ └── index.tsx │ │ └── urlModal │ │ │ ├── HistoryItem.tsx │ │ │ ├── SwipeToDelete.tsx │ │ │ ├── UrlAutocomplete.tsx │ │ │ └── index.tsx │ ├── carousel │ │ └── CustomCarousel.tsx │ ├── drawer │ │ ├── Content.tsx │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ └── drawer-content-item │ │ │ └── MenuItem.tsx │ ├── errors │ │ ├── ErrorBoundary.tsx │ │ └── FallbackComponent.tsx │ ├── form │ │ ├── ActiveOperationButton.tsx │ │ ├── AutoCompleteBox.tsx │ │ ├── CheckBoxPanel.tsx │ │ ├── ClearableInput.tsx │ │ ├── CustomAmountLabel.tsx │ │ ├── CustomCheckBox.tsx │ │ ├── CustomFilterBox.tsx │ │ ├── CustomInput.tsx │ │ ├── CustomSearchBar.tsx │ │ ├── CustomSwitch.tsx │ │ ├── DropdownModal.tsx │ │ ├── EllipticButton.tsx │ │ ├── OperationInput.tsx │ │ ├── TwoFaForm.tsx │ │ └── UserDropdown.tsx │ ├── history │ │ ├── Transactions.tsx │ │ ├── WalletHistoryComponent.tsx │ │ ├── WalletHistoryItemComponent.tsx │ │ ├── WalletTransactionInfoComponent.tsx │ │ ├── history-elements │ │ │ ├── ClaimAccountTransactionComponent.tsx │ │ │ ├── ClaimRewardsTransactionComponent.tsx │ │ │ ├── CollateralizedConvertTransactionComponent.tsx │ │ │ ├── ConvertTransactionComponent.tsx │ │ │ ├── CreateAccountTransactionComponent.tsx │ │ │ ├── CreateClaimedAccountTransactionComponent.tsx │ │ │ ├── DelegationTransactionComponent.tsx │ │ │ ├── DepositSavingsTransactionComponent.tsx │ │ │ ├── FillCollateralizedConvertTransactionComponent.tsx │ │ │ ├── FillConvertTransactionComponent.tsx │ │ │ ├── FillRecurrentTransfer.tsx │ │ │ ├── FillWithdrawSavingsTransactionComponent.tsx │ │ │ ├── PowerDownTransactionComponent.tsx │ │ │ ├── PowerUpTransactionComponent.tsx │ │ │ ├── ReceivedInterestsTransactionComponent.tsx │ │ │ ├── RecurrentTransfer.tsx │ │ │ ├── Transfer.tsx │ │ │ └── WithdrawSavingsTransactionComponent.tsx │ │ └── hive-engine │ │ │ ├── TokenHistoryItem.tsx │ │ │ └── TokensHistory.tsx │ ├── hive │ │ ├── AccountValue.tsx │ │ ├── CurrencyIcon.tsx │ │ ├── CurrencyToken.tsx │ │ ├── EngineTokenDisplay.tsx │ │ ├── HiveEngineAccountValue.tsx │ │ ├── Icon.tsx │ │ ├── IconHP.tsx │ │ ├── Key.tsx │ │ ├── PendingConversions.tsx │ │ ├── PendingSavingsWithdrawalPage.component.tsx │ │ ├── PercentageDisplay.tsx │ │ ├── ProposalItem.tsx │ │ ├── RcHpSelectorPanel.tsx │ │ ├── SwapBuy.tsx │ │ ├── SwapHistory.tsx │ │ ├── SwapHistoryItem.tsx │ │ ├── SwapInfo.tsx │ │ ├── TokenDisplay.tsx │ │ ├── TokenSwapHistoryItem.tsx │ │ └── notifications │ │ │ ├── Notifications.tsx │ │ │ └── NotificationsModal.tsx │ ├── hive_authentication_service │ │ ├── Auth.tsx │ │ ├── Challenge.tsx │ │ ├── Error.tsx │ │ ├── Info.tsx │ │ └── StatusIndicator.tsx │ ├── info_buttons │ │ ├── ForgotPin.tsx │ │ └── MoreInfo.tsx │ ├── modals │ │ ├── AddKey.tsx │ │ ├── CopyKeys.tsx │ │ ├── CustomModal.tsx │ │ ├── EnableIosBiometrics.tsx │ │ ├── ForgotPIN.tsx │ │ ├── InfoQR.tsx │ │ ├── InfoTemplate.tsx │ │ ├── InfoWalletQR.tsx │ │ ├── MessageModal.tsx │ │ ├── MoreInformation.tsx │ │ ├── RemoveKey.tsx │ │ └── TwoFaModal.tsx │ ├── multisig │ │ └── RequestMultisig.tsx │ ├── operations │ │ ├── Balance.tsx │ │ ├── BuyCoins.tsx │ │ ├── ClaimRewards.tsx │ │ ├── Confirmation.tsx │ │ ├── ConfirmationCard.tsx │ │ ├── Convert.tsx │ │ ├── DelegateToken.tsx │ │ ├── Delegation.tsx │ │ ├── DelegationsList.tsx │ │ ├── IncomingOutGoingRCDelegations.tsx │ │ ├── IncomingOutGoingTokenDelegations.tsx │ │ ├── IncomingOutgoingRcDelegationItem.tsx │ │ ├── IncomingOutgoingTokenDelegationItem.tsx │ │ ├── Operation.tsx │ │ ├── OperationThemed.tsx │ │ ├── PowerDown.tsx │ │ ├── PowerUp.tsx │ │ ├── RCDelegation.tsx │ │ ├── Savings.tsx │ │ ├── SavingsBalance.tsx │ │ ├── StakeToken.tsx │ │ ├── Swap.tsx │ │ ├── SwapConfirm.tsx │ │ ├── UnstakeToken.tsx │ │ └── transfer │ │ │ ├── Receive.tsx │ │ │ └── Transfer.tsx │ ├── pin_code │ │ ├── PinCompletionIndicator.tsx │ │ ├── PinElement.tsx │ │ └── index.tsx │ ├── popups │ │ ├── browser-tutorial │ │ │ └── BrowserTutorial.tsx │ │ ├── proposal-reminder │ │ │ └── index.tsx │ │ ├── rpc-switcher │ │ │ └── RpcSwitcher.tsx │ │ ├── tutorial │ │ │ └── Tutorial.tsx │ │ ├── vesting-routes │ │ │ ├── VestingRoutes.tsx │ │ │ ├── VestingRoutesItem.tsx │ │ │ └── vestingRoutes.interface.ts │ │ ├── whats-new │ │ │ ├── WhatsNew.tsx │ │ │ └── whatsNew.interface.ts │ │ ├── widget-configuration │ │ │ └── WidgetConfiguration.tsx │ │ └── wrong-key │ │ │ └── WrongKeyPopup.tsx │ ├── qr_code │ │ ├── HeaderQR.tsx │ │ ├── MarkerQR.tsx │ │ └── index.tsx │ ├── settings │ │ └── CollapsibleSettings.tsx │ ├── survey │ │ ├── index.tsx │ │ └── surveyData.ts │ └── ui │ │ ├── AssetImage.tsx │ │ ├── BackNavigationButton.tsx │ │ ├── BackToTopButton.tsx │ │ ├── Background.tsx │ │ ├── BackgroundHexagons.tsx │ │ ├── Caption.tsx │ │ ├── CloseButton.tsx │ │ ├── ConfirmationInItem.tsx │ │ ├── CurrentAvailableBalance.tsx │ │ ├── CustomIconButton.tsx │ │ ├── CustomRefreshControl.tsx │ │ ├── CustomToolTip.tsx │ │ ├── DrawerButton.tsx │ │ ├── FastImage.tsx │ │ ├── FloatingCloseButton.tsx │ │ ├── FocusAwareStatusBar.tsx │ │ ├── ItemCardExpandable.tsx │ │ ├── KeychainLogo.tsx │ │ ├── Loader.tsx │ │ ├── MultisigCaption.tsx │ │ ├── NavigatorTitle.tsx │ │ ├── OptionsToggle.tsx │ │ ├── RotationIconAnimated.tsx │ │ ├── SafeArea.tsx │ │ ├── ScreenToggle.tsx │ │ ├── Separator.tsx │ │ ├── SlidingOverlay.tsx │ │ ├── Spoiler.tsx │ │ ├── SquareButton.tsx │ │ ├── SvgContainer.tsx │ │ ├── UserProfilePicture.tsx │ │ ├── UsernameWithAvatar.tsx │ │ └── WalletPage.tsx ├── context │ ├── multichain.context.tsx │ ├── orientation.context.tsx │ ├── tab.context.tsx │ └── theme.context.tsx ├── declarations.d.ts ├── enums │ ├── bottomBarLink.enum.ts │ ├── icons.enum.ts │ ├── keychainStorageKey.enum.ts │ ├── messageModal.enum.ts │ ├── modal.enum.ts │ ├── operations.enum.ts │ ├── providerEvent.enum.ts │ └── widgets.enum.ts ├── hooks │ ├── domainCheck.ts │ ├── redux.ts │ ├── toggle.ts │ ├── useBackButtonNavigate.ts │ ├── useCheckForMultisig.ts │ ├── useHasExpiration.ts │ ├── useLockedPortrait.ts │ └── usePotentiallyAnonymousRequest.tsx ├── interfaces │ ├── autocomplete.interface.ts │ ├── common.interface.ts │ ├── confirmation.interface.ts │ ├── createAccounts.interface.ts │ ├── delegations.interface.ts │ ├── favoriteUsers.interface.ts │ ├── hiveEngineRpc.interface.ts │ ├── hiveTx.interface.ts │ ├── keychain.interface.ts │ ├── keys.interface.ts │ ├── multisig.interface.ts │ ├── notifications.interface.ts │ ├── rcDelegation.interface.ts │ ├── savings.interface.ts │ ├── swapTokens.interface.ts │ ├── tokenRequestParams.interface.ts │ ├── tokens.interface.ts │ ├── tokensHistory.interface.ts │ ├── transaction.interface.ts │ ├── walletHistory.interface.ts │ └── witness.interface.ts ├── lists │ ├── buyHive.list.ts │ ├── chains.list.tsx │ ├── floatingBarAllowedScreens.list.ts │ ├── hbdOperationButton.list.tsx │ ├── hiveOperationButton.list.tsx │ ├── hiveReact.list.tsx │ ├── hpOperationButton.list.tsx │ ├── infoScreenItem.list.ts │ └── rpc.list.ts ├── locales │ ├── en.json │ └── fr.json ├── navigators │ ├── MainDrawer.tsx │ ├── MainDrawer.types.ts │ ├── Root.types.ts │ ├── SignUp.tsx │ ├── Signup.types.ts │ ├── Unlock.tsx │ ├── Unlock.types.ts │ └── mainDrawerStacks │ │ ├── About.tsx │ │ ├── Accounts.tsx │ │ ├── AddAccount.types.ts │ │ ├── Browser.tsx │ │ ├── Browser.types.ts │ │ ├── CreateAccount.types.ts │ │ ├── GovernanceStack.tsx │ │ ├── Help.tsx │ │ ├── Operation.tsx │ │ ├── Settings.tsx │ │ ├── SettingsOperationsStack.tsx │ │ ├── SwapBuyStack.tsx │ │ ├── TokenDelegationsStack.tsx │ │ ├── TokenSettingsStack.tsx │ │ ├── Tokens.tsx │ │ ├── TokensHistory.tsx │ │ └── Wallet.tsx ├── reducers │ ├── accountValueDisplay.ts │ ├── accounts.ts │ ├── activeAccount.ts │ ├── auth.ts │ ├── browser.ts │ ├── colors.ts │ ├── configs │ │ └── index.ts │ ├── conversions.ts │ ├── currencyPrices.ts │ ├── delegations.ts │ ├── ecosystem.ts │ ├── floatingBar.ts │ ├── globalProperties.ts │ ├── historyFilters.ts │ ├── hiveAuthenticationService │ │ ├── index.ts │ │ └── types.ts │ ├── hiveUri.ts │ ├── index.ts │ ├── lastAccount.ts │ ├── message.ts │ ├── navigation.ts │ ├── notifications.ts │ ├── phishing.ts │ ├── preferences.ts │ ├── preferences.types.ts │ ├── rpcSwitcher.ts │ ├── settings.ts │ ├── tokenHistory.ts │ ├── tokens.ts │ ├── tokensFilters.ts │ ├── tokensMarket.ts │ ├── transactions.ts │ └── userTokens.ts ├── screens │ ├── Browser.tsx │ ├── ChooseFirstAccountMethod.tsx │ ├── Introduction.tsx │ ├── Loading.tsx │ ├── Modal.tsx │ ├── Signup.tsx │ ├── Unlock.tsx │ └── hive │ │ ├── drawer │ │ ├── accounts │ │ │ ├── AccountsMenu.tsx │ │ │ ├── ExportQRAccounts.tsx │ │ │ ├── addAccounts │ │ │ │ ├── AddAccountByAuth.tsx │ │ │ │ ├── AddAccountByKey.tsx │ │ │ │ └── ScanQR.tsx │ │ │ ├── createAccounts │ │ │ │ ├── CreateAccount.tsx │ │ │ │ ├── CreateAccountConfirmation.tsx │ │ │ │ └── CreateAccountForm.tsx │ │ │ └── createAccountsPeerToPeer │ │ │ │ └── CreateAccountPeerToPeer.tsx │ │ ├── governance │ │ │ ├── Governance.tsx │ │ │ ├── Proposal.tsx │ │ │ ├── Proxy.tsx │ │ │ ├── Witness.tsx │ │ │ └── myWitness │ │ │ │ ├── DisableEnableMyWitness.tsx │ │ │ │ ├── EditMyWitness.tsx │ │ │ │ ├── MyWitness.tsx │ │ │ │ ├── MyWitnessDataBlock.tsx │ │ │ │ ├── MyWitnessInformation.tsx │ │ │ │ └── MyWitnessInformationParams.tsx │ │ ├── help │ │ │ └── Help.tsx │ │ └── settings │ │ │ ├── About.tsx │ │ │ ├── AccountManagement.tsx │ │ │ ├── AutomatedTasks.tsx │ │ │ ├── ExportTransactions.tsx │ │ │ ├── Multisig.tsx │ │ │ ├── Notifications.tsx │ │ │ ├── Operations.tsx │ │ │ ├── RpcComponent.tsx │ │ │ ├── RpcNodes.tsx │ │ │ ├── Security.tsx │ │ │ └── SettingsMenu.tsx │ │ └── wallet │ │ ├── BottomNavigation.component.tsx │ │ ├── EngineTokens.tsx │ │ ├── Main.tsx │ │ ├── Tokens.tsx │ │ ├── WalletQRScanner.tsx │ │ └── tokens │ │ ├── TokenSettings.tsx │ │ └── TokenSettingsItem.tsx ├── store │ ├── index.ts │ └── transforms.ts ├── styles │ ├── button.ts │ ├── card.ts │ ├── colors.ts │ ├── headers.ts │ ├── icon.ts │ ├── index.ts │ ├── input.ts │ ├── line.ts │ ├── menu.ts │ ├── modal.ts │ ├── shadow.ts │ ├── sizeAdjuster.ts │ ├── spacing.ts │ ├── test.ts │ ├── text.ts │ ├── transform.ts │ └── typography.ts └── utils │ ├── account.utils.ts │ ├── accountCreation.utils.ts │ ├── analytics.utils.ts │ ├── array.utils.ts │ ├── async.utils.ts │ ├── automatedTasks.utils.ts │ ├── browser.utils.ts │ ├── colors.utils.ts │ ├── config.utils.ts │ ├── currency.utils.ts │ ├── ecosystem.utils.ts │ ├── encrypt.utils.ts │ ├── exportTransactions.utils.ts │ ├── favoriteUsers.utils.ts │ ├── format.utils.ts │ ├── hive.utils.ts │ ├── hiveAuthenticationService │ ├── has.types.ts │ ├── helpers │ │ ├── auth.ts │ │ ├── challenge.ts │ │ ├── keys.ts │ │ └── sign.ts │ ├── index.ts │ ├── messages │ │ ├── authenticate.ts │ │ ├── challenge.ts │ │ ├── index.ts │ │ └── sign.ts │ ├── payloads.types.ts │ └── static.ts │ ├── hiveEngine.utils.ts │ ├── hiveEngineConfig.utils.ts │ ├── hiveLibs.utils.ts │ ├── hiveUri.utils.tsx │ ├── key.utils.ts │ ├── keyValidation.utils.ts │ ├── keychain.utils.tsx │ ├── linking.utils.ts │ ├── localize.ts │ ├── lockout.utils.ts │ ├── multisig.utils.ts │ ├── navigation.utils.ts │ ├── notifications.utils.ts │ ├── object.utils.ts │ ├── phishing.utils.ts │ ├── platforms.utils.ts │ ├── preferences.utils.ts │ ├── price.utils.ts │ ├── proposals.utils.ts │ ├── proxy.utils.ts │ ├── rcDelegations.utils.ts │ ├── requestWithoutConfirmation.utils.ts │ ├── rewards.utils.ts │ ├── rpc.utils.ts │ ├── rpcSwitcher.utils.ts │ ├── savings.utils.ts │ ├── storage │ ├── encryptedStorage.utils.ts │ ├── keychainStorage.utils.ts │ ├── secureStore.utils.ts │ └── storage.utils.ts │ ├── swapToken.utils.ts │ ├── tokenTransaction.utils.ts │ ├── tokens.utils.ts │ ├── transactions.utils.ts │ ├── transfer.utils.ts │ ├── version.utils.ts │ ├── vestingRoutes.utils.ts │ ├── walletHistoryUtils.ts │ ├── whatsNew.utils.ts │ ├── widget.utils.ts │ └── witness.utils.ts ├── tsconfig.json └── widgets ├── android ├── java │ └── com │ │ └── mobilekeychain │ │ ├── FloatPoint.java │ │ ├── Utils.java │ │ ├── WidgetAccountBalanceListProvider.java │ │ ├── WidgetAccountBalanceListService.java │ │ ├── WidgetBridge.java │ │ ├── WidgetBridgePackage.java │ │ ├── WidgetCurrencyListProvider.java │ │ └── WidgetCurrencyListService.java └── res │ ├── drawable │ ├── arrow_downward.xml │ ├── arrow_upward.xml │ ├── bootsplash.xml │ ├── hbd_icon.png │ ├── hive_icon.png │ ├── hive_power_icon.png │ ├── hive_savings_icon.png │ ├── keychain_logo_power_by_light_theme.png │ ├── keychain_rounded_logo.xml │ ├── refresh.xml │ ├── rounded_shape20.xml │ ├── savings_icon.png │ ├── settings.xml │ ├── widget_account_balance_list_preview.png │ └── widget_currency_list_preview.png │ ├── layout │ ├── widget_account_balance_list.xml │ ├── widget_account_balance_list_item.xml │ ├── widget_account_balance_list_loading_view.xml │ ├── widget_currency_list.xml │ ├── widget_currency_list_item.xml │ └── widget_currency_list_loading_view.xml │ ├── mipmap │ └── bootsplash_logo.png │ ├── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ ├── styles2.xml │ ├── text_size.xml │ └── theme.xml │ └── xml │ ├── widget_account_balance_list.xml │ └── widget_currency_list.xml └── plugin ├── withAndroidWidget.js └── withSourceFiles.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @stoodkev 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/layout-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/.github/ISSUE_TEMPLATE/layout-issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.svgrrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/.svgrrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/README.md -------------------------------------------------------------------------------- /app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/app.config.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/babel.config.js -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/crowdin.yml -------------------------------------------------------------------------------- /declaration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/declaration.d.ts -------------------------------------------------------------------------------- /global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/global.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/index.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/package.json -------------------------------------------------------------------------------- /scripts/clean-unused-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/scripts/clean-unused-assets.js -------------------------------------------------------------------------------- /scripts/find-unused-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/scripts/find-unused-icons.js -------------------------------------------------------------------------------- /scripts/scan-asset-usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/scripts/scan-asset-usage.js -------------------------------------------------------------------------------- /scripts/update-asset-imports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/scripts/update-asset-imports.js -------------------------------------------------------------------------------- /src/EVMApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/EVMApp.tsx -------------------------------------------------------------------------------- /src/HiveApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/HiveApp.tsx -------------------------------------------------------------------------------- /src/MultichainApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/MultichainApp.tsx -------------------------------------------------------------------------------- /src/actions/accountValueDisplay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/accountValueDisplay.ts -------------------------------------------------------------------------------- /src/actions/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/accounts.ts -------------------------------------------------------------------------------- /src/actions/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/browser.ts -------------------------------------------------------------------------------- /src/actions/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/colors.ts -------------------------------------------------------------------------------- /src/actions/floatingBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/floatingBar.ts -------------------------------------------------------------------------------- /src/actions/hive-uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/hive-uri.ts -------------------------------------------------------------------------------- /src/actions/hive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/hive.ts -------------------------------------------------------------------------------- /src/actions/hiveAuthenticationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/hiveAuthenticationService.ts -------------------------------------------------------------------------------- /src/actions/hiveEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/hiveEngine.ts -------------------------------------------------------------------------------- /src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/index.ts -------------------------------------------------------------------------------- /src/actions/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/interfaces.ts -------------------------------------------------------------------------------- /src/actions/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/message.ts -------------------------------------------------------------------------------- /src/actions/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/navigation.ts -------------------------------------------------------------------------------- /src/actions/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/notifications.ts -------------------------------------------------------------------------------- /src/actions/preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/preferences.ts -------------------------------------------------------------------------------- /src/actions/rpc-switcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/rpc-switcher.ts -------------------------------------------------------------------------------- /src/actions/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/settings.ts -------------------------------------------------------------------------------- /src/actions/tokensFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/tokensFilters.ts -------------------------------------------------------------------------------- /src/actions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/types.ts -------------------------------------------------------------------------------- /src/actions/walletFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/actions/walletFilters.ts -------------------------------------------------------------------------------- /src/api/base.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/api/base.api.ts -------------------------------------------------------------------------------- /src/api/hiveEngine.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/api/hiveEngine.api.ts -------------------------------------------------------------------------------- /src/api/keychain.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/api/keychain.api.ts -------------------------------------------------------------------------------- /src/api/keychainSwap.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/api/keychainSwap.api.ts -------------------------------------------------------------------------------- /src/api/peakdNotifications.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/api/peakdNotifications.api.ts -------------------------------------------------------------------------------- /src/assets/fonts/JosefinSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/fonts/JosefinSans-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/JosefinSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/fonts/JosefinSans-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/JosefinSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/fonts/JosefinSans-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/fonts/Poppins-Black.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/fonts/Poppins-Italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /src/assets/images/background/about_background_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/background/about_background_light.svg -------------------------------------------------------------------------------- /src/assets/images/background/background-icon-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/background/background-icon-red.svg -------------------------------------------------------------------------------- /src/assets/images/background/background_squares.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/background/background_squares.svg -------------------------------------------------------------------------------- /src/assets/images/background/hexagons-bg-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/background/hexagons-bg-dark.png -------------------------------------------------------------------------------- /src/assets/images/background/hexagons-bg-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/background/hexagons-bg-light.png -------------------------------------------------------------------------------- /src/assets/images/bottom-bar/browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/bottom-bar/browser.svg -------------------------------------------------------------------------------- /src/assets/images/browser/add-browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/browser/add-browser.svg -------------------------------------------------------------------------------- /src/assets/images/browser/add-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/browser/add-tab.svg -------------------------------------------------------------------------------- /src/assets/images/browser/desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/browser/desktop.svg -------------------------------------------------------------------------------- /src/assets/images/browser/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/browser/drag.svg -------------------------------------------------------------------------------- /src/assets/images/browser/heart-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/browser/heart-empty.png -------------------------------------------------------------------------------- /src/assets/images/browser/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/browser/heart.png -------------------------------------------------------------------------------- /src/assets/images/browser/home-browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/browser/home-browser.svg -------------------------------------------------------------------------------- /src/assets/images/browser/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/browser/mobile.svg -------------------------------------------------------------------------------- /src/assets/images/browser/rotate-right-browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/browser/rotate-right-browser.svg -------------------------------------------------------------------------------- /src/assets/images/browser/swipe-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/browser/swipe-down.svg -------------------------------------------------------------------------------- /src/assets/images/browser/swipe-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/browser/swipe-left.svg -------------------------------------------------------------------------------- /src/assets/images/browser/swipe-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/browser/swipe-right.svg -------------------------------------------------------------------------------- /src/assets/images/browser/two-fingers-tap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/browser/two-fingers-tap.svg -------------------------------------------------------------------------------- /src/assets/images/buy/binance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/buy/binance.svg -------------------------------------------------------------------------------- /src/assets/images/buy/dark/gateio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/buy/dark/gateio.svg -------------------------------------------------------------------------------- /src/assets/images/buy/dark/huobi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/buy/dark/huobi.svg -------------------------------------------------------------------------------- /src/assets/images/buy/dark/ionomy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/buy/dark/ionomy.svg -------------------------------------------------------------------------------- /src/assets/images/buy/dark/mexc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/buy/dark/mexc.svg -------------------------------------------------------------------------------- /src/assets/images/buy/light/gateio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/buy/light/gateio.svg -------------------------------------------------------------------------------- /src/assets/images/buy/light/huobi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/buy/light/huobi.svg -------------------------------------------------------------------------------- /src/assets/images/buy/light/ionomy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/buy/light/ionomy.svg -------------------------------------------------------------------------------- /src/assets/images/buy/light/mexc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/buy/light/mexc.svg -------------------------------------------------------------------------------- /src/assets/images/buy/transak-logo-rounded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/buy/transak-logo-rounded.svg -------------------------------------------------------------------------------- /src/assets/images/buy/upbit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/buy/upbit.svg -------------------------------------------------------------------------------- /src/assets/images/carousel/circle_indicator_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/carousel/circle_indicator_active.svg -------------------------------------------------------------------------------- /src/assets/images/carousel/circle_indicator_inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/carousel/circle_indicator_inactive.svg -------------------------------------------------------------------------------- /src/assets/images/carousel/circle_indicator_inactive_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/carousel/circle_indicator_inactive_light.svg -------------------------------------------------------------------------------- /src/assets/images/chains/ethereum_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/chains/ethereum_logo.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/add-circle-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/add-circle-outline.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/arrow-left.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/arrow-right.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/arrow-up.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/arrow_left_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/arrow_left_dark.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/arrow_left_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/arrow_left_light.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/at.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/backspace_dark_theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/backspace_dark_theme.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/backspace_light_theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/backspace_light_theme.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/calendar.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/caret-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/caret-up.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/check.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/clock.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/close-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/close-circle.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/close_circle_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/close_circle_dark.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/close_circle_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/close_circle_light.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/copy.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/edit.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/error.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/expand-less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/expand-less.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/expand-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/expand-more.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/expand.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/external-link.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/eye-crossed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/eye-crossed.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/eye.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/filters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/filters.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/icon_scan-qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/icon_scan-qr.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/info.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/remove.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/save-rpc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/save-rpc.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/scanner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/scanner.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/search.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/share.svg -------------------------------------------------------------------------------- /src/assets/images/common-ui/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/common-ui/success.svg -------------------------------------------------------------------------------- /src/assets/images/drawer/discord_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/drawer/discord_logo.svg -------------------------------------------------------------------------------- /src/assets/images/drawer/hamburguer-menu-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/drawer/hamburguer-menu-dark.svg -------------------------------------------------------------------------------- /src/assets/images/drawer/hamburguer-menu-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/drawer/hamburguer-menu-light.svg -------------------------------------------------------------------------------- /src/assets/images/drawer/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/drawer/help.svg -------------------------------------------------------------------------------- /src/assets/images/drawer/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/drawer/medium.svg -------------------------------------------------------------------------------- /src/assets/images/drawer/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/drawer/moon.svg -------------------------------------------------------------------------------- /src/assets/images/drawer/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/drawer/sun.svg -------------------------------------------------------------------------------- /src/assets/images/drawer/x_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/drawer/x_logo.svg -------------------------------------------------------------------------------- /src/assets/images/governance/arrow_circle_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/governance/arrow_circle_up.svg -------------------------------------------------------------------------------- /src/assets/images/has/has_title_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/has/has_title_light.svg -------------------------------------------------------------------------------- /src/assets/images/has/logo-has.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/has/logo-has.svg -------------------------------------------------------------------------------- /src/assets/images/has/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/has/logo-light.png -------------------------------------------------------------------------------- /src/assets/images/hive/hbd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/hive/hbd.svg -------------------------------------------------------------------------------- /src/assets/images/hive/hive-engine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/hive/hive-engine.svg -------------------------------------------------------------------------------- /src/assets/images/hive/hive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/hive/hive.svg -------------------------------------------------------------------------------- /src/assets/images/hive/hive_engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/hive/hive_engine.png -------------------------------------------------------------------------------- /src/assets/images/hive/hive_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/hive/hive_logo.svg -------------------------------------------------------------------------------- /src/assets/images/hive/icon_hbd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/hive/icon_hbd.svg -------------------------------------------------------------------------------- /src/assets/images/hive/icon_hive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/hive/icon_hive.svg -------------------------------------------------------------------------------- /src/assets/images/hive/icon_hp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/hive/icon_hp.svg -------------------------------------------------------------------------------- /src/assets/images/hive/multisig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/hive/multisig.png -------------------------------------------------------------------------------- /src/assets/images/icons/android_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/icons/android_launcher.png -------------------------------------------------------------------------------- /src/assets/images/icons/ios_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/icons/ios_launcher.png -------------------------------------------------------------------------------- /src/assets/images/icons/keychain_logo_powered_dark_theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/icons/keychain_logo_powered_dark_theme.svg -------------------------------------------------------------------------------- /src/assets/images/icons/keychain_logo_powered_light_theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/icons/keychain_logo_powered_light_theme.svg -------------------------------------------------------------------------------- /src/assets/images/icons/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/icons/splashscreen.png -------------------------------------------------------------------------------- /src/assets/images/intro/hand_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/intro/hand_1.svg -------------------------------------------------------------------------------- /src/assets/images/intro/hive_logo_signup_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/intro/hive_logo_signup_dark.svg -------------------------------------------------------------------------------- /src/assets/images/intro/hive_logo_signup_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/intro/hive_logo_signup_light.svg -------------------------------------------------------------------------------- /src/assets/images/intro/onboarding_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/intro/onboarding_mobile.png -------------------------------------------------------------------------------- /src/assets/images/intro/person_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/intro/person_1.svg -------------------------------------------------------------------------------- /src/assets/images/keychain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/keychain.svg -------------------------------------------------------------------------------- /src/assets/images/menus/accounts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/accounts.svg -------------------------------------------------------------------------------- /src/assets/images/menus/accounts/add-account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/accounts/add-account.svg -------------------------------------------------------------------------------- /src/assets/images/menus/accounts/create-account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/accounts/create-account.svg -------------------------------------------------------------------------------- /src/assets/images/menus/accounts/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/accounts/key.svg -------------------------------------------------------------------------------- /src/assets/images/menus/governance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/governance.svg -------------------------------------------------------------------------------- /src/assets/images/menus/help/support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/help/support.svg -------------------------------------------------------------------------------- /src/assets/images/menus/help/tutorial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/help/tutorial.svg -------------------------------------------------------------------------------- /src/assets/images/menus/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/logout.svg -------------------------------------------------------------------------------- /src/assets/images/menus/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/settings.svg -------------------------------------------------------------------------------- /src/assets/images/menus/settings/automated-tasks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/settings/automated-tasks.svg -------------------------------------------------------------------------------- /src/assets/images/menus/settings/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/settings/export.svg -------------------------------------------------------------------------------- /src/assets/images/menus/settings/settings-multisig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/settings/settings-multisig.svg -------------------------------------------------------------------------------- /src/assets/images/menus/settings/settings-notifications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/settings/settings-notifications.svg -------------------------------------------------------------------------------- /src/assets/images/menus/settings/settings-operations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/settings/settings-operations.svg -------------------------------------------------------------------------------- /src/assets/images/menus/settings/settings-rpc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/settings/settings-rpc.svg -------------------------------------------------------------------------------- /src/assets/images/menus/settings/settings-wheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/settings/settings-wheel.svg -------------------------------------------------------------------------------- /src/assets/images/menus/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/menus/theme.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/convert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/convert.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/decrypt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/decrypt.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/delegate-token.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/delegate-token.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/delegate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/delegate.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/empty-wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/empty-wallet.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/encrypt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/encrypt.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/gift.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/history.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/hp-icon-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/hp-icon-light.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/icon_savings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/icon_savings.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/img_import_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/img_import_dark.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/img_import_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/img_import_light.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/power-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/power-down.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/power-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/power-icon.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/power-up-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/power-up-down.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/power-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/power-up.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/rc-delegation-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/rc-delegation-light.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/rc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/rc.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/savings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/savings.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/stake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/stake.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/swap.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/swap/exchange-arrow-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/swap/exchange-arrow-circled.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/swap/exchange-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/swap/exchange-arrow.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/transfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/transfer.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/unstake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/unstake.svg -------------------------------------------------------------------------------- /src/assets/images/wallet/voting-mana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/assets/images/wallet/voting-mana.svg -------------------------------------------------------------------------------- /src/background/activeAccount.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/background/activeAccount.module.ts -------------------------------------------------------------------------------- /src/background/autoStakeTokens.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/background/autoStakeTokens.module.ts -------------------------------------------------------------------------------- /src/background/claim.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/background/claim.module.ts -------------------------------------------------------------------------------- /src/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/background/index.ts -------------------------------------------------------------------------------- /src/background/multisig.module.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/background/multisig.module.tsx -------------------------------------------------------------------------------- /src/components/bridge/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/bridge/html.ts -------------------------------------------------------------------------------- /src/components/bridge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/bridge/index.tsx -------------------------------------------------------------------------------- /src/components/browser/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/Header.tsx -------------------------------------------------------------------------------- /src/components/browser/HomeTab/Explore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/HomeTab/Explore.tsx -------------------------------------------------------------------------------- /src/components/browser/HomeTab/Favorites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/HomeTab/Favorites.tsx -------------------------------------------------------------------------------- /src/components/browser/HomeTab/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/HomeTab/History.tsx -------------------------------------------------------------------------------- /src/components/browser/HomeTab/components/CategoryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/HomeTab/components/CategoryButton.tsx -------------------------------------------------------------------------------- /src/components/browser/HomeTab/components/DAppCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/HomeTab/components/DAppCard.tsx -------------------------------------------------------------------------------- /src/components/browser/HomeTab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/HomeTab/index.tsx -------------------------------------------------------------------------------- /src/components/browser/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/ProgressBar.tsx -------------------------------------------------------------------------------- /src/components/browser/RequestModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/RequestModalContent.tsx -------------------------------------------------------------------------------- /src/components/browser/Tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/Tab.tsx -------------------------------------------------------------------------------- /src/components/browser/bridges/DesktopMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/bridges/DesktopMode.ts -------------------------------------------------------------------------------- /src/components/browser/bridges/HiveKeychainBridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/bridges/HiveKeychainBridge.ts -------------------------------------------------------------------------------- /src/components/browser/bridges/WebviewInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/bridges/WebviewInfo.ts -------------------------------------------------------------------------------- /src/components/browser/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/index.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/AddAccount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/AddAccount.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/AddAccountAuthority.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/AddAccountAuthority.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/AddKeyAuthority.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/AddKeyAuthority.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/Broadcast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/Broadcast.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/Convert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/Convert.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/CreateAccount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/CreateAccount.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/CreateProposal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/CreateProposal.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/Custom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/Custom.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/Decode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/Decode.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/Delegation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/Delegation.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/Encode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/Encode.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/Post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/Post.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/PowerDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/PowerDown.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/PowerUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/PowerUp.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/Proxy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/Proxy.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/RecurrentTransfer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/RecurrentTransfer.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/RemoveAccountAuthority.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/RemoveAccountAuthority.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/RemoveKeyAuthority.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/RemoveKeyAuthority.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/RemoveProposal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/RemoveProposal.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/SendToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/SendToken.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/SignBuffer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/SignBuffer.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/SignTx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/SignTx.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/Swap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/Swap.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/Transfer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/Transfer.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/UpdateProposalVote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/UpdateProposalVote.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/Vote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/Vote.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/Witness.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/Witness.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/components/CollapsibleData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/components/CollapsibleData.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/components/RequestBalance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/components/RequestBalance.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/components/RequestError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/components/RequestError.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/components/RequestItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/components/RequestItem.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/components/RequestMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/components/RequestMessage.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/components/RequestOperation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/components/RequestOperation.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/components/RequestResultMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/components/RequestResultMessage.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/components/RequestSwapDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/components/RequestSwapDisplay.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/components/RequestUsername.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/components/RequestUsername.tsx -------------------------------------------------------------------------------- /src/components/browser/requestOperations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/index.ts -------------------------------------------------------------------------------- /src/components/browser/requestOperations/requestOperations.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/requestOperations/requestOperations.types.ts -------------------------------------------------------------------------------- /src/components/browser/tabsManagement/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/tabsManagement/index.tsx -------------------------------------------------------------------------------- /src/components/browser/urlModal/HistoryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/urlModal/HistoryItem.tsx -------------------------------------------------------------------------------- /src/components/browser/urlModal/SwipeToDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/urlModal/SwipeToDelete.tsx -------------------------------------------------------------------------------- /src/components/browser/urlModal/UrlAutocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/urlModal/UrlAutocomplete.tsx -------------------------------------------------------------------------------- /src/components/browser/urlModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/browser/urlModal/index.tsx -------------------------------------------------------------------------------- /src/components/carousel/CustomCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/carousel/CustomCarousel.tsx -------------------------------------------------------------------------------- /src/components/drawer/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/drawer/Content.tsx -------------------------------------------------------------------------------- /src/components/drawer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/drawer/Footer.tsx -------------------------------------------------------------------------------- /src/components/drawer/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/drawer/Header.tsx -------------------------------------------------------------------------------- /src/components/drawer/drawer-content-item/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/drawer/drawer-content-item/MenuItem.tsx -------------------------------------------------------------------------------- /src/components/errors/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/errors/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/components/errors/FallbackComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/errors/FallbackComponent.tsx -------------------------------------------------------------------------------- /src/components/form/ActiveOperationButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/form/ActiveOperationButton.tsx -------------------------------------------------------------------------------- /src/components/form/AutoCompleteBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/form/AutoCompleteBox.tsx -------------------------------------------------------------------------------- /src/components/form/CheckBoxPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/form/CheckBoxPanel.tsx -------------------------------------------------------------------------------- /src/components/form/ClearableInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/form/ClearableInput.tsx -------------------------------------------------------------------------------- /src/components/form/CustomAmountLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/form/CustomAmountLabel.tsx -------------------------------------------------------------------------------- /src/components/form/CustomCheckBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/form/CustomCheckBox.tsx -------------------------------------------------------------------------------- /src/components/form/CustomFilterBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/form/CustomFilterBox.tsx -------------------------------------------------------------------------------- /src/components/form/CustomInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/form/CustomInput.tsx -------------------------------------------------------------------------------- /src/components/form/CustomSearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/form/CustomSearchBar.tsx -------------------------------------------------------------------------------- /src/components/form/CustomSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/form/CustomSwitch.tsx -------------------------------------------------------------------------------- /src/components/form/DropdownModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/form/DropdownModal.tsx -------------------------------------------------------------------------------- /src/components/form/EllipticButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/form/EllipticButton.tsx -------------------------------------------------------------------------------- /src/components/form/OperationInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/form/OperationInput.tsx -------------------------------------------------------------------------------- /src/components/form/TwoFaForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/form/TwoFaForm.tsx -------------------------------------------------------------------------------- /src/components/form/UserDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/form/UserDropdown.tsx -------------------------------------------------------------------------------- /src/components/history/Transactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/Transactions.tsx -------------------------------------------------------------------------------- /src/components/history/WalletHistoryComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/WalletHistoryComponent.tsx -------------------------------------------------------------------------------- /src/components/history/WalletHistoryItemComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/WalletHistoryItemComponent.tsx -------------------------------------------------------------------------------- /src/components/history/WalletTransactionInfoComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/WalletTransactionInfoComponent.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/ClaimAccountTransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/ClaimAccountTransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/ClaimRewardsTransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/ClaimRewardsTransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/CollateralizedConvertTransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/CollateralizedConvertTransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/ConvertTransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/ConvertTransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/CreateAccountTransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/CreateAccountTransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/CreateClaimedAccountTransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/CreateClaimedAccountTransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/DelegationTransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/DelegationTransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/DepositSavingsTransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/DepositSavingsTransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/FillCollateralizedConvertTransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/FillCollateralizedConvertTransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/FillConvertTransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/FillConvertTransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/FillRecurrentTransfer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/FillRecurrentTransfer.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/FillWithdrawSavingsTransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/FillWithdrawSavingsTransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/PowerDownTransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/PowerDownTransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/PowerUpTransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/PowerUpTransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/ReceivedInterestsTransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/ReceivedInterestsTransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/RecurrentTransfer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/RecurrentTransfer.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/Transfer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/Transfer.tsx -------------------------------------------------------------------------------- /src/components/history/history-elements/WithdrawSavingsTransactionComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/history-elements/WithdrawSavingsTransactionComponent.tsx -------------------------------------------------------------------------------- /src/components/history/hive-engine/TokenHistoryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/hive-engine/TokenHistoryItem.tsx -------------------------------------------------------------------------------- /src/components/history/hive-engine/TokensHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/history/hive-engine/TokensHistory.tsx -------------------------------------------------------------------------------- /src/components/hive/AccountValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/AccountValue.tsx -------------------------------------------------------------------------------- /src/components/hive/CurrencyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/CurrencyIcon.tsx -------------------------------------------------------------------------------- /src/components/hive/CurrencyToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/CurrencyToken.tsx -------------------------------------------------------------------------------- /src/components/hive/EngineTokenDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/EngineTokenDisplay.tsx -------------------------------------------------------------------------------- /src/components/hive/HiveEngineAccountValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/HiveEngineAccountValue.tsx -------------------------------------------------------------------------------- /src/components/hive/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/Icon.tsx -------------------------------------------------------------------------------- /src/components/hive/IconHP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/IconHP.tsx -------------------------------------------------------------------------------- /src/components/hive/Key.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/Key.tsx -------------------------------------------------------------------------------- /src/components/hive/PendingConversions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/PendingConversions.tsx -------------------------------------------------------------------------------- /src/components/hive/PendingSavingsWithdrawalPage.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/PendingSavingsWithdrawalPage.component.tsx -------------------------------------------------------------------------------- /src/components/hive/PercentageDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/PercentageDisplay.tsx -------------------------------------------------------------------------------- /src/components/hive/ProposalItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/ProposalItem.tsx -------------------------------------------------------------------------------- /src/components/hive/RcHpSelectorPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/RcHpSelectorPanel.tsx -------------------------------------------------------------------------------- /src/components/hive/SwapBuy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/SwapBuy.tsx -------------------------------------------------------------------------------- /src/components/hive/SwapHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/SwapHistory.tsx -------------------------------------------------------------------------------- /src/components/hive/SwapHistoryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/SwapHistoryItem.tsx -------------------------------------------------------------------------------- /src/components/hive/SwapInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/SwapInfo.tsx -------------------------------------------------------------------------------- /src/components/hive/TokenDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/TokenDisplay.tsx -------------------------------------------------------------------------------- /src/components/hive/TokenSwapHistoryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/TokenSwapHistoryItem.tsx -------------------------------------------------------------------------------- /src/components/hive/notifications/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/notifications/Notifications.tsx -------------------------------------------------------------------------------- /src/components/hive/notifications/NotificationsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive/notifications/NotificationsModal.tsx -------------------------------------------------------------------------------- /src/components/hive_authentication_service/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive_authentication_service/Auth.tsx -------------------------------------------------------------------------------- /src/components/hive_authentication_service/Challenge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive_authentication_service/Challenge.tsx -------------------------------------------------------------------------------- /src/components/hive_authentication_service/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive_authentication_service/Error.tsx -------------------------------------------------------------------------------- /src/components/hive_authentication_service/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive_authentication_service/Info.tsx -------------------------------------------------------------------------------- /src/components/hive_authentication_service/StatusIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/hive_authentication_service/StatusIndicator.tsx -------------------------------------------------------------------------------- /src/components/info_buttons/ForgotPin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/info_buttons/ForgotPin.tsx -------------------------------------------------------------------------------- /src/components/info_buttons/MoreInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/info_buttons/MoreInfo.tsx -------------------------------------------------------------------------------- /src/components/modals/AddKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/modals/AddKey.tsx -------------------------------------------------------------------------------- /src/components/modals/CopyKeys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/modals/CopyKeys.tsx -------------------------------------------------------------------------------- /src/components/modals/CustomModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/modals/CustomModal.tsx -------------------------------------------------------------------------------- /src/components/modals/EnableIosBiometrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/modals/EnableIosBiometrics.tsx -------------------------------------------------------------------------------- /src/components/modals/ForgotPIN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/modals/ForgotPIN.tsx -------------------------------------------------------------------------------- /src/components/modals/InfoQR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/modals/InfoQR.tsx -------------------------------------------------------------------------------- /src/components/modals/InfoTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/modals/InfoTemplate.tsx -------------------------------------------------------------------------------- /src/components/modals/InfoWalletQR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/modals/InfoWalletQR.tsx -------------------------------------------------------------------------------- /src/components/modals/MessageModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/modals/MessageModal.tsx -------------------------------------------------------------------------------- /src/components/modals/MoreInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/modals/MoreInformation.tsx -------------------------------------------------------------------------------- /src/components/modals/RemoveKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/modals/RemoveKey.tsx -------------------------------------------------------------------------------- /src/components/modals/TwoFaModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/modals/TwoFaModal.tsx -------------------------------------------------------------------------------- /src/components/multisig/RequestMultisig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/multisig/RequestMultisig.tsx -------------------------------------------------------------------------------- /src/components/operations/Balance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/Balance.tsx -------------------------------------------------------------------------------- /src/components/operations/BuyCoins.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/BuyCoins.tsx -------------------------------------------------------------------------------- /src/components/operations/ClaimRewards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/ClaimRewards.tsx -------------------------------------------------------------------------------- /src/components/operations/Confirmation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/Confirmation.tsx -------------------------------------------------------------------------------- /src/components/operations/ConfirmationCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/ConfirmationCard.tsx -------------------------------------------------------------------------------- /src/components/operations/Convert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/Convert.tsx -------------------------------------------------------------------------------- /src/components/operations/DelegateToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/DelegateToken.tsx -------------------------------------------------------------------------------- /src/components/operations/Delegation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/Delegation.tsx -------------------------------------------------------------------------------- /src/components/operations/DelegationsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/DelegationsList.tsx -------------------------------------------------------------------------------- /src/components/operations/IncomingOutGoingRCDelegations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/IncomingOutGoingRCDelegations.tsx -------------------------------------------------------------------------------- /src/components/operations/IncomingOutGoingTokenDelegations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/IncomingOutGoingTokenDelegations.tsx -------------------------------------------------------------------------------- /src/components/operations/IncomingOutgoingRcDelegationItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/IncomingOutgoingRcDelegationItem.tsx -------------------------------------------------------------------------------- /src/components/operations/IncomingOutgoingTokenDelegationItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/IncomingOutgoingTokenDelegationItem.tsx -------------------------------------------------------------------------------- /src/components/operations/Operation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/Operation.tsx -------------------------------------------------------------------------------- /src/components/operations/OperationThemed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/OperationThemed.tsx -------------------------------------------------------------------------------- /src/components/operations/PowerDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/PowerDown.tsx -------------------------------------------------------------------------------- /src/components/operations/PowerUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/PowerUp.tsx -------------------------------------------------------------------------------- /src/components/operations/RCDelegation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/RCDelegation.tsx -------------------------------------------------------------------------------- /src/components/operations/Savings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/Savings.tsx -------------------------------------------------------------------------------- /src/components/operations/SavingsBalance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/SavingsBalance.tsx -------------------------------------------------------------------------------- /src/components/operations/StakeToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/StakeToken.tsx -------------------------------------------------------------------------------- /src/components/operations/Swap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/Swap.tsx -------------------------------------------------------------------------------- /src/components/operations/SwapConfirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/SwapConfirm.tsx -------------------------------------------------------------------------------- /src/components/operations/UnstakeToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/UnstakeToken.tsx -------------------------------------------------------------------------------- /src/components/operations/transfer/Receive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/transfer/Receive.tsx -------------------------------------------------------------------------------- /src/components/operations/transfer/Transfer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/operations/transfer/Transfer.tsx -------------------------------------------------------------------------------- /src/components/pin_code/PinCompletionIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/pin_code/PinCompletionIndicator.tsx -------------------------------------------------------------------------------- /src/components/pin_code/PinElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/pin_code/PinElement.tsx -------------------------------------------------------------------------------- /src/components/pin_code/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/pin_code/index.tsx -------------------------------------------------------------------------------- /src/components/popups/browser-tutorial/BrowserTutorial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/popups/browser-tutorial/BrowserTutorial.tsx -------------------------------------------------------------------------------- /src/components/popups/proposal-reminder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/popups/proposal-reminder/index.tsx -------------------------------------------------------------------------------- /src/components/popups/rpc-switcher/RpcSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/popups/rpc-switcher/RpcSwitcher.tsx -------------------------------------------------------------------------------- /src/components/popups/tutorial/Tutorial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/popups/tutorial/Tutorial.tsx -------------------------------------------------------------------------------- /src/components/popups/vesting-routes/VestingRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/popups/vesting-routes/VestingRoutes.tsx -------------------------------------------------------------------------------- /src/components/popups/vesting-routes/VestingRoutesItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/popups/vesting-routes/VestingRoutesItem.tsx -------------------------------------------------------------------------------- /src/components/popups/vesting-routes/vestingRoutes.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/popups/vesting-routes/vestingRoutes.interface.ts -------------------------------------------------------------------------------- /src/components/popups/whats-new/WhatsNew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/popups/whats-new/WhatsNew.tsx -------------------------------------------------------------------------------- /src/components/popups/whats-new/whatsNew.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/popups/whats-new/whatsNew.interface.ts -------------------------------------------------------------------------------- /src/components/popups/widget-configuration/WidgetConfiguration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/popups/widget-configuration/WidgetConfiguration.tsx -------------------------------------------------------------------------------- /src/components/popups/wrong-key/WrongKeyPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/popups/wrong-key/WrongKeyPopup.tsx -------------------------------------------------------------------------------- /src/components/qr_code/HeaderQR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/qr_code/HeaderQR.tsx -------------------------------------------------------------------------------- /src/components/qr_code/MarkerQR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/qr_code/MarkerQR.tsx -------------------------------------------------------------------------------- /src/components/qr_code/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/qr_code/index.tsx -------------------------------------------------------------------------------- /src/components/settings/CollapsibleSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/settings/CollapsibleSettings.tsx -------------------------------------------------------------------------------- /src/components/survey/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/survey/index.tsx -------------------------------------------------------------------------------- /src/components/survey/surveyData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/survey/surveyData.ts -------------------------------------------------------------------------------- /src/components/ui/AssetImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/AssetImage.tsx -------------------------------------------------------------------------------- /src/components/ui/BackNavigationButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/BackNavigationButton.tsx -------------------------------------------------------------------------------- /src/components/ui/BackToTopButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/BackToTopButton.tsx -------------------------------------------------------------------------------- /src/components/ui/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/Background.tsx -------------------------------------------------------------------------------- /src/components/ui/BackgroundHexagons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/BackgroundHexagons.tsx -------------------------------------------------------------------------------- /src/components/ui/Caption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/Caption.tsx -------------------------------------------------------------------------------- /src/components/ui/CloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/CloseButton.tsx -------------------------------------------------------------------------------- /src/components/ui/ConfirmationInItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/ConfirmationInItem.tsx -------------------------------------------------------------------------------- /src/components/ui/CurrentAvailableBalance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/CurrentAvailableBalance.tsx -------------------------------------------------------------------------------- /src/components/ui/CustomIconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/CustomIconButton.tsx -------------------------------------------------------------------------------- /src/components/ui/CustomRefreshControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/CustomRefreshControl.tsx -------------------------------------------------------------------------------- /src/components/ui/CustomToolTip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/CustomToolTip.tsx -------------------------------------------------------------------------------- /src/components/ui/DrawerButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/DrawerButton.tsx -------------------------------------------------------------------------------- /src/components/ui/FastImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/FastImage.tsx -------------------------------------------------------------------------------- /src/components/ui/FloatingCloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/FloatingCloseButton.tsx -------------------------------------------------------------------------------- /src/components/ui/FocusAwareStatusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/FocusAwareStatusBar.tsx -------------------------------------------------------------------------------- /src/components/ui/ItemCardExpandable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/ItemCardExpandable.tsx -------------------------------------------------------------------------------- /src/components/ui/KeychainLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/KeychainLogo.tsx -------------------------------------------------------------------------------- /src/components/ui/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/Loader.tsx -------------------------------------------------------------------------------- /src/components/ui/MultisigCaption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/MultisigCaption.tsx -------------------------------------------------------------------------------- /src/components/ui/NavigatorTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/NavigatorTitle.tsx -------------------------------------------------------------------------------- /src/components/ui/OptionsToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/OptionsToggle.tsx -------------------------------------------------------------------------------- /src/components/ui/RotationIconAnimated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/RotationIconAnimated.tsx -------------------------------------------------------------------------------- /src/components/ui/SafeArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/SafeArea.tsx -------------------------------------------------------------------------------- /src/components/ui/ScreenToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/ScreenToggle.tsx -------------------------------------------------------------------------------- /src/components/ui/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/Separator.tsx -------------------------------------------------------------------------------- /src/components/ui/SlidingOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/SlidingOverlay.tsx -------------------------------------------------------------------------------- /src/components/ui/Spoiler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/Spoiler.tsx -------------------------------------------------------------------------------- /src/components/ui/SquareButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/SquareButton.tsx -------------------------------------------------------------------------------- /src/components/ui/SvgContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/SvgContainer.tsx -------------------------------------------------------------------------------- /src/components/ui/UserProfilePicture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/UserProfilePicture.tsx -------------------------------------------------------------------------------- /src/components/ui/UsernameWithAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/UsernameWithAvatar.tsx -------------------------------------------------------------------------------- /src/components/ui/WalletPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/components/ui/WalletPage.tsx -------------------------------------------------------------------------------- /src/context/multichain.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/context/multichain.context.tsx -------------------------------------------------------------------------------- /src/context/orientation.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/context/orientation.context.tsx -------------------------------------------------------------------------------- /src/context/tab.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/context/tab.context.tsx -------------------------------------------------------------------------------- /src/context/theme.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/context/theme.context.tsx -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/declarations.d.ts -------------------------------------------------------------------------------- /src/enums/bottomBarLink.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/enums/bottomBarLink.enum.ts -------------------------------------------------------------------------------- /src/enums/icons.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/enums/icons.enum.ts -------------------------------------------------------------------------------- /src/enums/keychainStorageKey.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/enums/keychainStorageKey.enum.ts -------------------------------------------------------------------------------- /src/enums/messageModal.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/enums/messageModal.enum.ts -------------------------------------------------------------------------------- /src/enums/modal.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/enums/modal.enum.ts -------------------------------------------------------------------------------- /src/enums/operations.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/enums/operations.enum.ts -------------------------------------------------------------------------------- /src/enums/providerEvent.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/enums/providerEvent.enum.ts -------------------------------------------------------------------------------- /src/enums/widgets.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/enums/widgets.enum.ts -------------------------------------------------------------------------------- /src/hooks/domainCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/hooks/domainCheck.ts -------------------------------------------------------------------------------- /src/hooks/redux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/hooks/redux.ts -------------------------------------------------------------------------------- /src/hooks/toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/hooks/toggle.ts -------------------------------------------------------------------------------- /src/hooks/useBackButtonNavigate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/hooks/useBackButtonNavigate.ts -------------------------------------------------------------------------------- /src/hooks/useCheckForMultisig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/hooks/useCheckForMultisig.ts -------------------------------------------------------------------------------- /src/hooks/useHasExpiration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/hooks/useHasExpiration.ts -------------------------------------------------------------------------------- /src/hooks/useLockedPortrait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/hooks/useLockedPortrait.ts -------------------------------------------------------------------------------- /src/hooks/usePotentiallyAnonymousRequest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/hooks/usePotentiallyAnonymousRequest.tsx -------------------------------------------------------------------------------- /src/interfaces/autocomplete.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/autocomplete.interface.ts -------------------------------------------------------------------------------- /src/interfaces/common.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/common.interface.ts -------------------------------------------------------------------------------- /src/interfaces/confirmation.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/confirmation.interface.ts -------------------------------------------------------------------------------- /src/interfaces/createAccounts.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/createAccounts.interface.ts -------------------------------------------------------------------------------- /src/interfaces/delegations.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/delegations.interface.ts -------------------------------------------------------------------------------- /src/interfaces/favoriteUsers.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/favoriteUsers.interface.ts -------------------------------------------------------------------------------- /src/interfaces/hiveEngineRpc.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/hiveEngineRpc.interface.ts -------------------------------------------------------------------------------- /src/interfaces/hiveTx.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/hiveTx.interface.ts -------------------------------------------------------------------------------- /src/interfaces/keychain.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/keychain.interface.ts -------------------------------------------------------------------------------- /src/interfaces/keys.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/keys.interface.ts -------------------------------------------------------------------------------- /src/interfaces/multisig.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/multisig.interface.ts -------------------------------------------------------------------------------- /src/interfaces/notifications.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/notifications.interface.ts -------------------------------------------------------------------------------- /src/interfaces/rcDelegation.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/rcDelegation.interface.ts -------------------------------------------------------------------------------- /src/interfaces/savings.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/savings.interface.ts -------------------------------------------------------------------------------- /src/interfaces/swapTokens.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/swapTokens.interface.ts -------------------------------------------------------------------------------- /src/interfaces/tokenRequestParams.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/tokenRequestParams.interface.ts -------------------------------------------------------------------------------- /src/interfaces/tokens.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/tokens.interface.ts -------------------------------------------------------------------------------- /src/interfaces/tokensHistory.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/tokensHistory.interface.ts -------------------------------------------------------------------------------- /src/interfaces/transaction.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/transaction.interface.ts -------------------------------------------------------------------------------- /src/interfaces/walletHistory.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/walletHistory.interface.ts -------------------------------------------------------------------------------- /src/interfaces/witness.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/interfaces/witness.interface.ts -------------------------------------------------------------------------------- /src/lists/buyHive.list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/lists/buyHive.list.ts -------------------------------------------------------------------------------- /src/lists/chains.list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/lists/chains.list.tsx -------------------------------------------------------------------------------- /src/lists/floatingBarAllowedScreens.list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/lists/floatingBarAllowedScreens.list.ts -------------------------------------------------------------------------------- /src/lists/hbdOperationButton.list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/lists/hbdOperationButton.list.tsx -------------------------------------------------------------------------------- /src/lists/hiveOperationButton.list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/lists/hiveOperationButton.list.tsx -------------------------------------------------------------------------------- /src/lists/hiveReact.list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/lists/hiveReact.list.tsx -------------------------------------------------------------------------------- /src/lists/hpOperationButton.list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/lists/hpOperationButton.list.tsx -------------------------------------------------------------------------------- /src/lists/infoScreenItem.list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/lists/infoScreenItem.list.ts -------------------------------------------------------------------------------- /src/lists/rpc.list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/lists/rpc.list.ts -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/locales/fr.json -------------------------------------------------------------------------------- /src/navigators/MainDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/MainDrawer.tsx -------------------------------------------------------------------------------- /src/navigators/MainDrawer.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/MainDrawer.types.ts -------------------------------------------------------------------------------- /src/navigators/Root.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/Root.types.ts -------------------------------------------------------------------------------- /src/navigators/SignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/SignUp.tsx -------------------------------------------------------------------------------- /src/navigators/Signup.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/Signup.types.ts -------------------------------------------------------------------------------- /src/navigators/Unlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/Unlock.tsx -------------------------------------------------------------------------------- /src/navigators/Unlock.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/Unlock.types.ts -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/About.tsx -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/Accounts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/Accounts.tsx -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/AddAccount.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/AddAccount.types.ts -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/Browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/Browser.tsx -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/Browser.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/Browser.types.ts -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/CreateAccount.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/CreateAccount.types.ts -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/GovernanceStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/GovernanceStack.tsx -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/Help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/Help.tsx -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/Operation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/Operation.tsx -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/Settings.tsx -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/SettingsOperationsStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/SettingsOperationsStack.tsx -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/SwapBuyStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/SwapBuyStack.tsx -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/TokenDelegationsStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/TokenDelegationsStack.tsx -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/TokenSettingsStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/TokenSettingsStack.tsx -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/Tokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/Tokens.tsx -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/TokensHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/TokensHistory.tsx -------------------------------------------------------------------------------- /src/navigators/mainDrawerStacks/Wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/navigators/mainDrawerStacks/Wallet.tsx -------------------------------------------------------------------------------- /src/reducers/accountValueDisplay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/accountValueDisplay.ts -------------------------------------------------------------------------------- /src/reducers/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/accounts.ts -------------------------------------------------------------------------------- /src/reducers/activeAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/activeAccount.ts -------------------------------------------------------------------------------- /src/reducers/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/auth.ts -------------------------------------------------------------------------------- /src/reducers/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/browser.ts -------------------------------------------------------------------------------- /src/reducers/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/colors.ts -------------------------------------------------------------------------------- /src/reducers/configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/configs/index.ts -------------------------------------------------------------------------------- /src/reducers/conversions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/conversions.ts -------------------------------------------------------------------------------- /src/reducers/currencyPrices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/currencyPrices.ts -------------------------------------------------------------------------------- /src/reducers/delegations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/delegations.ts -------------------------------------------------------------------------------- /src/reducers/ecosystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/ecosystem.ts -------------------------------------------------------------------------------- /src/reducers/floatingBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/floatingBar.ts -------------------------------------------------------------------------------- /src/reducers/globalProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/globalProperties.ts -------------------------------------------------------------------------------- /src/reducers/historyFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/historyFilters.ts -------------------------------------------------------------------------------- /src/reducers/hiveAuthenticationService/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/hiveAuthenticationService/index.ts -------------------------------------------------------------------------------- /src/reducers/hiveAuthenticationService/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/hiveAuthenticationService/types.ts -------------------------------------------------------------------------------- /src/reducers/hiveUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/hiveUri.ts -------------------------------------------------------------------------------- /src/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/index.ts -------------------------------------------------------------------------------- /src/reducers/lastAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/lastAccount.ts -------------------------------------------------------------------------------- /src/reducers/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/message.ts -------------------------------------------------------------------------------- /src/reducers/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/navigation.ts -------------------------------------------------------------------------------- /src/reducers/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/notifications.ts -------------------------------------------------------------------------------- /src/reducers/phishing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/phishing.ts -------------------------------------------------------------------------------- /src/reducers/preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/preferences.ts -------------------------------------------------------------------------------- /src/reducers/preferences.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/preferences.types.ts -------------------------------------------------------------------------------- /src/reducers/rpcSwitcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/rpcSwitcher.ts -------------------------------------------------------------------------------- /src/reducers/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/settings.ts -------------------------------------------------------------------------------- /src/reducers/tokenHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/tokenHistory.ts -------------------------------------------------------------------------------- /src/reducers/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/tokens.ts -------------------------------------------------------------------------------- /src/reducers/tokensFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/tokensFilters.ts -------------------------------------------------------------------------------- /src/reducers/tokensMarket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/tokensMarket.ts -------------------------------------------------------------------------------- /src/reducers/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/transactions.ts -------------------------------------------------------------------------------- /src/reducers/userTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/reducers/userTokens.ts -------------------------------------------------------------------------------- /src/screens/Browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/Browser.tsx -------------------------------------------------------------------------------- /src/screens/ChooseFirstAccountMethod.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/ChooseFirstAccountMethod.tsx -------------------------------------------------------------------------------- /src/screens/Introduction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/Introduction.tsx -------------------------------------------------------------------------------- /src/screens/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/Loading.tsx -------------------------------------------------------------------------------- /src/screens/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/Modal.tsx -------------------------------------------------------------------------------- /src/screens/Signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/Signup.tsx -------------------------------------------------------------------------------- /src/screens/Unlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/Unlock.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/accounts/AccountsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/accounts/AccountsMenu.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/accounts/ExportQRAccounts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/accounts/ExportQRAccounts.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/accounts/addAccounts/AddAccountByAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/accounts/addAccounts/AddAccountByAuth.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/accounts/addAccounts/AddAccountByKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/accounts/addAccounts/AddAccountByKey.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/accounts/addAccounts/ScanQR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/accounts/addAccounts/ScanQR.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/accounts/createAccounts/CreateAccount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/accounts/createAccounts/CreateAccount.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/accounts/createAccounts/CreateAccountConfirmation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/accounts/createAccounts/CreateAccountConfirmation.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/accounts/createAccounts/CreateAccountForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/accounts/createAccounts/CreateAccountForm.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/accounts/createAccountsPeerToPeer/CreateAccountPeerToPeer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/accounts/createAccountsPeerToPeer/CreateAccountPeerToPeer.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/governance/Governance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/governance/Governance.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/governance/Proposal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/governance/Proposal.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/governance/Proxy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/governance/Proxy.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/governance/Witness.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/governance/Witness.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/governance/myWitness/DisableEnableMyWitness.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/governance/myWitness/DisableEnableMyWitness.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/governance/myWitness/EditMyWitness.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/governance/myWitness/EditMyWitness.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/governance/myWitness/MyWitness.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/governance/myWitness/MyWitness.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/governance/myWitness/MyWitnessDataBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/governance/myWitness/MyWitnessDataBlock.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/governance/myWitness/MyWitnessInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/governance/myWitness/MyWitnessInformation.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/governance/myWitness/MyWitnessInformationParams.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/governance/myWitness/MyWitnessInformationParams.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/help/Help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/help/Help.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/settings/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/settings/About.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/settings/AccountManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/settings/AccountManagement.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/settings/AutomatedTasks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/settings/AutomatedTasks.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/settings/ExportTransactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/settings/ExportTransactions.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/settings/Multisig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/settings/Multisig.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/settings/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/settings/Notifications.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/settings/Operations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/settings/Operations.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/settings/RpcComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/settings/RpcComponent.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/settings/RpcNodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/settings/RpcNodes.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/settings/Security.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/settings/Security.tsx -------------------------------------------------------------------------------- /src/screens/hive/drawer/settings/SettingsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/drawer/settings/SettingsMenu.tsx -------------------------------------------------------------------------------- /src/screens/hive/wallet/BottomNavigation.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/wallet/BottomNavigation.component.tsx -------------------------------------------------------------------------------- /src/screens/hive/wallet/EngineTokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/wallet/EngineTokens.tsx -------------------------------------------------------------------------------- /src/screens/hive/wallet/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/wallet/Main.tsx -------------------------------------------------------------------------------- /src/screens/hive/wallet/Tokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/wallet/Tokens.tsx -------------------------------------------------------------------------------- /src/screens/hive/wallet/WalletQRScanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/wallet/WalletQRScanner.tsx -------------------------------------------------------------------------------- /src/screens/hive/wallet/tokens/TokenSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/wallet/tokens/TokenSettings.tsx -------------------------------------------------------------------------------- /src/screens/hive/wallet/tokens/TokenSettingsItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/screens/hive/wallet/tokens/TokenSettingsItem.tsx -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/transforms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/store/transforms.ts -------------------------------------------------------------------------------- /src/styles/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/button.ts -------------------------------------------------------------------------------- /src/styles/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/card.ts -------------------------------------------------------------------------------- /src/styles/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/colors.ts -------------------------------------------------------------------------------- /src/styles/headers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/headers.ts -------------------------------------------------------------------------------- /src/styles/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/icon.ts -------------------------------------------------------------------------------- /src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/index.ts -------------------------------------------------------------------------------- /src/styles/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/input.ts -------------------------------------------------------------------------------- /src/styles/line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/line.ts -------------------------------------------------------------------------------- /src/styles/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/menu.ts -------------------------------------------------------------------------------- /src/styles/modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/modal.ts -------------------------------------------------------------------------------- /src/styles/shadow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/shadow.ts -------------------------------------------------------------------------------- /src/styles/sizeAdjuster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/sizeAdjuster.ts -------------------------------------------------------------------------------- /src/styles/spacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/spacing.ts -------------------------------------------------------------------------------- /src/styles/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/test.ts -------------------------------------------------------------------------------- /src/styles/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/text.ts -------------------------------------------------------------------------------- /src/styles/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/transform.ts -------------------------------------------------------------------------------- /src/styles/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/styles/typography.ts -------------------------------------------------------------------------------- /src/utils/account.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/account.utils.ts -------------------------------------------------------------------------------- /src/utils/accountCreation.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/accountCreation.utils.ts -------------------------------------------------------------------------------- /src/utils/analytics.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/analytics.utils.ts -------------------------------------------------------------------------------- /src/utils/array.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/array.utils.ts -------------------------------------------------------------------------------- /src/utils/async.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/async.utils.ts -------------------------------------------------------------------------------- /src/utils/automatedTasks.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/automatedTasks.utils.ts -------------------------------------------------------------------------------- /src/utils/browser.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/browser.utils.ts -------------------------------------------------------------------------------- /src/utils/colors.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/colors.utils.ts -------------------------------------------------------------------------------- /src/utils/config.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/config.utils.ts -------------------------------------------------------------------------------- /src/utils/currency.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/currency.utils.ts -------------------------------------------------------------------------------- /src/utils/ecosystem.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/ecosystem.utils.ts -------------------------------------------------------------------------------- /src/utils/encrypt.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/encrypt.utils.ts -------------------------------------------------------------------------------- /src/utils/exportTransactions.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/exportTransactions.utils.ts -------------------------------------------------------------------------------- /src/utils/favoriteUsers.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/favoriteUsers.utils.ts -------------------------------------------------------------------------------- /src/utils/format.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/format.utils.ts -------------------------------------------------------------------------------- /src/utils/hive.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hive.utils.ts -------------------------------------------------------------------------------- /src/utils/hiveAuthenticationService/has.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveAuthenticationService/has.types.ts -------------------------------------------------------------------------------- /src/utils/hiveAuthenticationService/helpers/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveAuthenticationService/helpers/auth.ts -------------------------------------------------------------------------------- /src/utils/hiveAuthenticationService/helpers/challenge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveAuthenticationService/helpers/challenge.ts -------------------------------------------------------------------------------- /src/utils/hiveAuthenticationService/helpers/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveAuthenticationService/helpers/keys.ts -------------------------------------------------------------------------------- /src/utils/hiveAuthenticationService/helpers/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveAuthenticationService/helpers/sign.ts -------------------------------------------------------------------------------- /src/utils/hiveAuthenticationService/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveAuthenticationService/index.ts -------------------------------------------------------------------------------- /src/utils/hiveAuthenticationService/messages/authenticate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveAuthenticationService/messages/authenticate.ts -------------------------------------------------------------------------------- /src/utils/hiveAuthenticationService/messages/challenge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveAuthenticationService/messages/challenge.ts -------------------------------------------------------------------------------- /src/utils/hiveAuthenticationService/messages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveAuthenticationService/messages/index.ts -------------------------------------------------------------------------------- /src/utils/hiveAuthenticationService/messages/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveAuthenticationService/messages/sign.ts -------------------------------------------------------------------------------- /src/utils/hiveAuthenticationService/payloads.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveAuthenticationService/payloads.types.ts -------------------------------------------------------------------------------- /src/utils/hiveAuthenticationService/static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveAuthenticationService/static.ts -------------------------------------------------------------------------------- /src/utils/hiveEngine.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveEngine.utils.ts -------------------------------------------------------------------------------- /src/utils/hiveEngineConfig.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveEngineConfig.utils.ts -------------------------------------------------------------------------------- /src/utils/hiveLibs.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveLibs.utils.ts -------------------------------------------------------------------------------- /src/utils/hiveUri.utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/hiveUri.utils.tsx -------------------------------------------------------------------------------- /src/utils/key.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/key.utils.ts -------------------------------------------------------------------------------- /src/utils/keyValidation.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/keyValidation.utils.ts -------------------------------------------------------------------------------- /src/utils/keychain.utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/keychain.utils.tsx -------------------------------------------------------------------------------- /src/utils/linking.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/linking.utils.ts -------------------------------------------------------------------------------- /src/utils/localize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/localize.ts -------------------------------------------------------------------------------- /src/utils/lockout.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/lockout.utils.ts -------------------------------------------------------------------------------- /src/utils/multisig.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/multisig.utils.ts -------------------------------------------------------------------------------- /src/utils/navigation.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/navigation.utils.ts -------------------------------------------------------------------------------- /src/utils/notifications.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/notifications.utils.ts -------------------------------------------------------------------------------- /src/utils/object.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/object.utils.ts -------------------------------------------------------------------------------- /src/utils/phishing.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/phishing.utils.ts -------------------------------------------------------------------------------- /src/utils/platforms.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/platforms.utils.ts -------------------------------------------------------------------------------- /src/utils/preferences.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/preferences.utils.ts -------------------------------------------------------------------------------- /src/utils/price.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/price.utils.ts -------------------------------------------------------------------------------- /src/utils/proposals.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/proposals.utils.ts -------------------------------------------------------------------------------- /src/utils/proxy.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/proxy.utils.ts -------------------------------------------------------------------------------- /src/utils/rcDelegations.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/rcDelegations.utils.ts -------------------------------------------------------------------------------- /src/utils/requestWithoutConfirmation.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/requestWithoutConfirmation.utils.ts -------------------------------------------------------------------------------- /src/utils/rewards.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/rewards.utils.ts -------------------------------------------------------------------------------- /src/utils/rpc.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/rpc.utils.ts -------------------------------------------------------------------------------- /src/utils/rpcSwitcher.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/rpcSwitcher.utils.ts -------------------------------------------------------------------------------- /src/utils/savings.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/savings.utils.ts -------------------------------------------------------------------------------- /src/utils/storage/encryptedStorage.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/storage/encryptedStorage.utils.ts -------------------------------------------------------------------------------- /src/utils/storage/keychainStorage.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/storage/keychainStorage.utils.ts -------------------------------------------------------------------------------- /src/utils/storage/secureStore.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/storage/secureStore.utils.ts -------------------------------------------------------------------------------- /src/utils/storage/storage.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/storage/storage.utils.ts -------------------------------------------------------------------------------- /src/utils/swapToken.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/swapToken.utils.ts -------------------------------------------------------------------------------- /src/utils/tokenTransaction.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/tokenTransaction.utils.ts -------------------------------------------------------------------------------- /src/utils/tokens.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/tokens.utils.ts -------------------------------------------------------------------------------- /src/utils/transactions.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/transactions.utils.ts -------------------------------------------------------------------------------- /src/utils/transfer.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/transfer.utils.ts -------------------------------------------------------------------------------- /src/utils/version.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/version.utils.ts -------------------------------------------------------------------------------- /src/utils/vestingRoutes.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/vestingRoutes.utils.ts -------------------------------------------------------------------------------- /src/utils/walletHistoryUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/walletHistoryUtils.ts -------------------------------------------------------------------------------- /src/utils/whatsNew.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/whatsNew.utils.ts -------------------------------------------------------------------------------- /src/utils/widget.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/widget.utils.ts -------------------------------------------------------------------------------- /src/utils/witness.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/src/utils/witness.utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/tsconfig.json -------------------------------------------------------------------------------- /widgets/android/java/com/mobilekeychain/FloatPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/java/com/mobilekeychain/FloatPoint.java -------------------------------------------------------------------------------- /widgets/android/java/com/mobilekeychain/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/java/com/mobilekeychain/Utils.java -------------------------------------------------------------------------------- /widgets/android/java/com/mobilekeychain/WidgetAccountBalanceListProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/java/com/mobilekeychain/WidgetAccountBalanceListProvider.java -------------------------------------------------------------------------------- /widgets/android/java/com/mobilekeychain/WidgetAccountBalanceListService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/java/com/mobilekeychain/WidgetAccountBalanceListService.java -------------------------------------------------------------------------------- /widgets/android/java/com/mobilekeychain/WidgetBridge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/java/com/mobilekeychain/WidgetBridge.java -------------------------------------------------------------------------------- /widgets/android/java/com/mobilekeychain/WidgetBridgePackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/java/com/mobilekeychain/WidgetBridgePackage.java -------------------------------------------------------------------------------- /widgets/android/java/com/mobilekeychain/WidgetCurrencyListProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/java/com/mobilekeychain/WidgetCurrencyListProvider.java -------------------------------------------------------------------------------- /widgets/android/java/com/mobilekeychain/WidgetCurrencyListService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/java/com/mobilekeychain/WidgetCurrencyListService.java -------------------------------------------------------------------------------- /widgets/android/res/drawable/arrow_downward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/drawable/arrow_downward.xml -------------------------------------------------------------------------------- /widgets/android/res/drawable/arrow_upward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/drawable/arrow_upward.xml -------------------------------------------------------------------------------- /widgets/android/res/drawable/bootsplash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/drawable/bootsplash.xml -------------------------------------------------------------------------------- /widgets/android/res/drawable/hbd_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/drawable/hbd_icon.png -------------------------------------------------------------------------------- /widgets/android/res/drawable/hive_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/drawable/hive_icon.png -------------------------------------------------------------------------------- /widgets/android/res/drawable/hive_power_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/drawable/hive_power_icon.png -------------------------------------------------------------------------------- /widgets/android/res/drawable/hive_savings_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/drawable/hive_savings_icon.png -------------------------------------------------------------------------------- /widgets/android/res/drawable/keychain_logo_power_by_light_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/drawable/keychain_logo_power_by_light_theme.png -------------------------------------------------------------------------------- /widgets/android/res/drawable/keychain_rounded_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/drawable/keychain_rounded_logo.xml -------------------------------------------------------------------------------- /widgets/android/res/drawable/refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/drawable/refresh.xml -------------------------------------------------------------------------------- /widgets/android/res/drawable/rounded_shape20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/drawable/rounded_shape20.xml -------------------------------------------------------------------------------- /widgets/android/res/drawable/savings_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/drawable/savings_icon.png -------------------------------------------------------------------------------- /widgets/android/res/drawable/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/drawable/settings.xml -------------------------------------------------------------------------------- /widgets/android/res/drawable/widget_account_balance_list_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/drawable/widget_account_balance_list_preview.png -------------------------------------------------------------------------------- /widgets/android/res/drawable/widget_currency_list_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/drawable/widget_currency_list_preview.png -------------------------------------------------------------------------------- /widgets/android/res/layout/widget_account_balance_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/layout/widget_account_balance_list.xml -------------------------------------------------------------------------------- /widgets/android/res/layout/widget_account_balance_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/layout/widget_account_balance_list_item.xml -------------------------------------------------------------------------------- /widgets/android/res/layout/widget_account_balance_list_loading_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/layout/widget_account_balance_list_loading_view.xml -------------------------------------------------------------------------------- /widgets/android/res/layout/widget_currency_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/layout/widget_currency_list.xml -------------------------------------------------------------------------------- /widgets/android/res/layout/widget_currency_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/layout/widget_currency_list_item.xml -------------------------------------------------------------------------------- /widgets/android/res/layout/widget_currency_list_loading_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/layout/widget_currency_list_loading_view.xml -------------------------------------------------------------------------------- /widgets/android/res/mipmap/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/mipmap/bootsplash_logo.png -------------------------------------------------------------------------------- /widgets/android/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/values/attrs.xml -------------------------------------------------------------------------------- /widgets/android/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/values/colors.xml -------------------------------------------------------------------------------- /widgets/android/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/values/dimens.xml -------------------------------------------------------------------------------- /widgets/android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/values/strings.xml -------------------------------------------------------------------------------- /widgets/android/res/values/styles2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/values/styles2.xml -------------------------------------------------------------------------------- /widgets/android/res/values/text_size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/values/text_size.xml -------------------------------------------------------------------------------- /widgets/android/res/values/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/values/theme.xml -------------------------------------------------------------------------------- /widgets/android/res/xml/widget_account_balance_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/xml/widget_account_balance_list.xml -------------------------------------------------------------------------------- /widgets/android/res/xml/widget_currency_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/android/res/xml/widget_currency_list.xml -------------------------------------------------------------------------------- /widgets/plugin/withAndroidWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/plugin/withAndroidWidget.js -------------------------------------------------------------------------------- /widgets/plugin/withSourceFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hive-keychain/hive-keychain-mobile/HEAD/widgets/plugin/withSourceFiles.js --------------------------------------------------------------------------------