├── .cursor └── rules │ └── component-export.mdc ├── .cursorignore ├── .editorconfig ├── .fastlane └── Matchfile ├── .git-blame-ignore-revs ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── pr-checks.yml │ └── pr-rebase.yml ├── .gitignore ├── .groovylintrc.json ├── .husky └── pre-commit ├── .npmrc ├── .prettierrc.json ├── .travis.yml ├── .watchmanconfig ├── .yarnrc ├── AGENTS.md ├── CHANGELOG.md ├── Jenkinsfile ├── LICENSE ├── README.md ├── android ├── app │ ├── airbitz.keystore │ ├── build.gradle │ ├── google-services.sample.json │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── blank.html │ │ └── fonts │ │ │ ├── OFL.txt │ │ │ ├── Quicksand-Bold.ttf │ │ │ ├── Quicksand-Light.ttf │ │ │ ├── Quicksand-Medium.ttf │ │ │ ├── Quicksand-Regular.ttf │ │ │ ├── Quicksand-SemiBold.ttf │ │ │ ├── SF-UI-Text-Regular.otf │ │ │ ├── SourceSansPro-Black.ttf │ │ │ ├── SourceSansPro-BlackItalic.ttf │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ ├── SourceSansPro-BoldItalic.ttf │ │ │ ├── SourceSansPro-ExtraLight.ttf │ │ │ ├── SourceSansPro-ExtraLightItalic.ttf │ │ │ ├── SourceSansPro-Italic.ttf │ │ │ ├── SourceSansPro-Light.ttf │ │ │ ├── SourceSansPro-LightItalic.ttf │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ ├── SourceSansPro-Semibold.ttf │ │ │ ├── SourceSansPro-SemiboldItalic.ttf │ │ │ └── custom.ttf │ │ ├── java │ │ └── co │ │ │ └── edgesecure │ │ │ └── app │ │ │ ├── Base58.java │ │ │ ├── EdgeCore.java │ │ │ ├── MainActivity.kt │ │ │ ├── MainApplication.kt │ │ │ └── MessagesWorker.java │ │ └── res │ │ ├── drawable │ │ └── vd_splash.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_beta.png │ │ ├── ic_launcher_beta_round.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── edge_logo_hollow.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_beta.png │ │ ├── ic_launcher_beta_round.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_beta.png │ │ ├── ic_launcher_beta_round.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_beta.png │ │ ├── ic_launcher_beta_round.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_beta.png │ │ ├── ic_launcher_beta_round.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ ├── audio_received.mp3 │ │ └── audio_sent.mp3 │ │ ├── values-sw600dp │ │ └── bools.xml │ │ ├── values-xlarge │ │ └── bools.xml │ │ └── values │ │ ├── bools.xml │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── format-java.sh ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── sentry.properties └── settings.gradle ├── app.json ├── babel.config.js ├── copy-bitcoin.sh ├── crowdin.yml ├── deploy-config.sample.json ├── deployPatches └── edge │ ├── beta │ ├── androidManifest.patch │ ├── buildGradle.patch │ ├── edgeXcsheme.patch │ ├── infoPlist.patch │ ├── projectPbxproj.patch │ └── stringsXml.patch │ └── develop │ ├── buildGradle.patch │ ├── edgeXcscheme.patch │ ├── infoPlist.patch │ ├── projectPbxproj.patch │ └── stringsXml.patch ├── docs ├── GUI_PLUGINS_ARCHITECTURE.md ├── MAESTRO.md └── images │ ├── android-studio-ndk-preferences.png │ └── readme-cover-photo.png ├── env.json.enc ├── eslint.config.mjs ├── firebase.json ├── index.ts ├── ios ├── .xcode.env ├── Base58.swift ├── EdgeCore.swift ├── Podfile ├── Podfile.lock ├── Sentry.swift ├── edge.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── edge.xcscheme ├── edge.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings ├── edge │ ├── AppDelegate.swift │ ├── GoogleService-Info.sample.plist │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── ItunesArtwork@2x.png │ │ ├── BetaAppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ ├── ItunesArtwork@2x 1.png │ │ │ └── iTunesArtwork@2x.png │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ └── SplashImage.imageset │ │ │ ├── Contents.json │ │ │ └── splash.png │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── PrivacyInfo.xcprivacy │ └── edge.entitlements ├── exportOptions.plist └── sentry.properties ├── jest.config.js ├── jestSetup.js ├── localization ├── AppStoreDescription.de.txt ├── AppStoreDescription.es.txt ├── AppStoreDescription.esMX.txt ├── AppStoreDescription.fr.txt ├── AppStoreDescription.it.txt ├── AppStoreDescription.ja.txt ├── AppStoreDescription.kaa.txt ├── AppStoreDescription.ko.txt ├── AppStoreDescription.pt.txt ├── AppStoreDescription.ru.txt ├── AppStoreDescription.txt ├── AppStoreDescription.vi.txt ├── AppStoreDescription.zh.txt ├── AppStoreGraphics.de.json ├── AppStoreGraphics.es.json ├── AppStoreGraphics.esMX.json ├── AppStoreGraphics.fr.json ├── AppStoreGraphics.it.json ├── AppStoreGraphics.ja.json ├── AppStoreGraphics.json ├── AppStoreGraphics.kaa.json ├── AppStoreGraphics.ko.json ├── AppStoreGraphics.pt.json ├── AppStoreGraphics.ru.json ├── AppStoreGraphics.vi.json ├── AppStoreGraphics.zh.json ├── PlayStoreDescription.de.txt ├── PlayStoreDescription.es.txt ├── PlayStoreDescription.esMX.txt ├── PlayStoreDescription.fr.txt ├── PlayStoreDescription.it.txt ├── PlayStoreDescription.ja.txt ├── PlayStoreDescription.kaa.txt ├── PlayStoreDescription.ko.txt ├── PlayStoreDescription.pt.txt ├── PlayStoreDescription.ru.txt ├── PlayStoreDescription.txt ├── PlayStoreDescription.vi.txt ├── PlayStoreDescription.zh.txt ├── PlayStoreGraphics.de.json ├── PlayStoreGraphics.es.json ├── PlayStoreGraphics.esMX.json ├── PlayStoreGraphics.fr.json ├── PlayStoreGraphics.it.json ├── PlayStoreGraphics.ja.json ├── PlayStoreGraphics.json ├── PlayStoreGraphics.kaa.json ├── PlayStoreGraphics.ko.json ├── PlayStoreGraphics.pt.json ├── PlayStoreGraphics.ru.json ├── PlayStoreGraphics.vi.json ├── PlayStoreGraphics.zh.json ├── ReleaseNotes.de.txt ├── ReleaseNotes.es.txt ├── ReleaseNotes.fr.txt ├── ReleaseNotes.it.txt ├── ReleaseNotes.ja.txt ├── ReleaseNotes.ko.txt ├── ReleaseNotes.pt.txt ├── ReleaseNotes.ru.txt ├── ReleaseNotes.txt ├── ReleaseNotes.vi.txt └── ReleaseNotes.zh.txt ├── maestro.sh ├── maestro ├── 01-accounts │ ├── C000000-change-password.yaml │ ├── C000001-switch-and-forget-account.yaml │ ├── C000002-change-username.yaml │ ├── C000006-light-account.yaml │ ├── C000016-change-pin.yaml │ └── C999005-create-n-delete-account.yaml ├── 02-launch-login │ ├── C310-launch-no-crash.yaml │ └── C311-relaunch-no-crash.yaml ├── 03-login │ ├── C184036-ip2fa-01.yaml │ ├── C190284-2fa-01.yaml │ └── C999002-pin-login.yaml ├── 10-assets │ ├── C184035-utxo-01.yaml │ ├── C209290-xmr-01.yaml │ ├── C999000-tx-details.yaml │ └── C999004-no-crash-max-xrp-dex.yaml ├── 11-markets │ └── C202732-markets.yaml ├── 12-notifications │ └── C000015-ip-validation-reminder.yaml ├── 12-side-menu │ └── C202842-side-menu-no-crash.yaml ├── 13-settings │ ├── C209308-settings-visuals.yaml │ └── C999003-help-logged-in.yaml ├── 99-misc │ └── C999001-receive.yaml ├── common │ ├── clear-app-data.yaml │ ├── close-modal-hack.yaml │ ├── create-account.yaml │ ├── delete-account.yaml │ ├── dismiss-modals.yaml │ ├── generate-password.yaml │ ├── launch-cleared.yaml │ ├── launch.yaml │ ├── login-password.yaml │ ├── password-requirements.yaml │ ├── relogin-pin.yaml │ └── test-password.yaml └── config.yaml ├── metro.config.js ├── package.json ├── patches ├── @ethersproject+shims+5.6.0.patch ├── @react-navigation+drawer+6.7.2.patch ├── pretty-format++ansi-styles+5.2.0.patch ├── react-native+0.79.2.patch ├── react-native-fs+2.20.0.patch ├── react-native-gifted-charts+1.4.63.patch ├── react-native-vision-camera+4.7.2.patch ├── react-native-webview+13.15.0.patch ├── readable-stream+3.6.2.patch ├── rn-id-blurview+1.2.1.patch └── typechain+8.3.2.patch ├── react-native.config.js ├── rollup.config.mjs ├── scripts ├── cleanDirectories.ts ├── cleaners.ts ├── configure.ts ├── createAndroidKeys.ts ├── deploy.ts ├── eslint-plugin-edge │ ├── index.mjs │ ├── useAbortable-abort-check-param.mjs │ └── useAbortable-abort-check-usage.mjs ├── find-unused-strings.sh ├── gitVersionFile.ts ├── hack-travis.mjs ├── localizeLanguage.ts ├── loggingServer.ts ├── makeNativeHeaders.ts ├── patchFiles.ts ├── prepare.sh ├── r3-hack │ ├── README.md │ ├── index.js │ └── package.json ├── runMaestro.ts ├── secretFiles.ts ├── stringifyBridge.ts ├── themeParser.ts ├── themeServer.ts ├── updateEslintWarnings.ts └── updateVersion.ts ├── src ├── __mocks__ │ └── snapshots │ │ └── default │ │ └── POST │ │ ├── http: │ │ └── 127.0.0.1:8087 │ │ │ └── v3 │ │ │ └── rates │ │ │ └── bf6a2039b07c447cd11554af546f00a3 │ │ └── https: │ │ ├── rates-eusa1.edge.app │ │ └── v3 │ │ │ └── rates │ │ │ └── 926165052a78701903abcfb775c955f3 │ │ ├── rates-wusa1.edge.app │ │ └── v3 │ │ │ └── rates │ │ │ └── c90562adfb326efc3f3805f9bf81ab1b │ │ ├── rates1.edge.app │ │ └── v2 │ │ │ └── exchangeRates │ │ │ └── 7cbcc07bd222c99b7b21867cd1fd828b │ │ ├── rates2.edge.app │ │ └── v2 │ │ │ └── exchangeRates │ │ │ └── 233b27bab4ec7ef0e385c5c29ba71d5d │ │ ├── rates3.edge.app │ │ └── v3 │ │ │ └── rates │ │ │ └── 4f66311028e5f4c6dc386c88ba360c25 │ │ └── rates4.edge.app │ │ └── v3 │ │ └── rates │ │ └── b82fe21a50480f059a853dbe3bd60299 ├── __tests__ │ ├── DeepLink.test.ts │ ├── GuiPlugins.test.ts │ ├── __snapshots__ │ │ ├── GuiPlugins.test.ts.snap │ │ └── spendingLimits.test.ts.snap │ ├── actions │ │ ├── RequestReviewActions.test.ts │ │ └── TransactionExportActions.test.ts │ ├── amountQuotePlugin.test.ts │ ├── cleanImportText.test.ts │ ├── components │ │ ├── AccountSyncBar.test.tsx │ │ ├── BalanceCard.test.tsx │ │ ├── Buttons.test.tsx │ │ ├── BuyCrypto.test.tsx │ │ ├── Card.test.tsx │ │ ├── CreateWalletSelectCryptoRow.test.tsx │ │ ├── CurrencyIcon.test.tsx │ │ ├── EdgeText.test.tsx │ │ ├── ExchangeQuoteComponent.test.tsx │ │ ├── FilledTextInput.test.tsx │ │ ├── LineTextDivider.test.tsx │ │ ├── MenuTabs.test.tsx │ │ ├── PromoCards.test.tsx │ │ ├── Row.test.tsx │ │ ├── SceneHeader.test.tsx │ │ ├── SelectableRow.test.tsx │ │ ├── TransactionListRow.test.tsx │ │ ├── TransactionListTop.test.tsx │ │ ├── WalletListSortableRow.test.tsx │ │ ├── __snapshots__ │ │ │ ├── AccountSyncBar.test.tsx.snap │ │ │ ├── BalanceCard.test.tsx.snap │ │ │ ├── Buttons.test.tsx.snap │ │ │ ├── BuyCrypto.test.tsx.snap │ │ │ ├── Card.test.tsx.snap │ │ │ ├── CreateWalletSelectCryptoRow.test.tsx.snap │ │ │ ├── CurrencyIcon.test.tsx.snap │ │ │ ├── EdgeText.test.tsx.snap │ │ │ ├── ExchangeQuoteComponent.test.tsx.snap │ │ │ ├── FilledTextInput.test.tsx.snap │ │ │ ├── LineTextDivider.test.tsx.snap │ │ │ ├── MenuTabs.test.tsx.snap │ │ │ ├── Row.test.tsx.snap │ │ │ ├── SceneHeader.test.tsx.snap │ │ │ ├── SelectableRow.test.tsx.snap │ │ │ ├── TransactionListRow.test.tsx.snap │ │ │ ├── TransactionListTop.test.tsx.snap │ │ │ └── WalletListSortableRow.test.tsx.snap │ │ └── ui4 │ │ │ └── ContentPosts.test.tsx │ ├── displayTime.test.ts │ ├── edgeProvider.test.ts │ ├── exchangeRates.test.ts │ ├── exportCsvResult.csv │ ├── exportQboResult.qbo │ ├── fiatProviders │ │ └── processRevolutConfig.test.ts │ ├── intl.test.ts │ ├── matchJson.test.ts │ ├── modals │ │ ├── AccelerateTxModal.test.tsx │ │ ├── AddressModal.test.tsx │ │ ├── AdvancedDetailsCard.test.tsx │ │ ├── AirshipFullScreenSpinner.test.tsx │ │ ├── AutoLogoutModal.test.tsx │ │ ├── CategoryModal.test.tsx │ │ ├── CountryListModal.test.tsx │ │ ├── DateModal.test.tsx │ │ ├── HelpModal.test.tsx │ │ ├── LogsModal.test.tsx │ │ ├── PasswordReminderModal.test.tsx │ │ ├── TextInputModal.test.tsx │ │ ├── WalletListModal.test.tsx │ │ ├── WalletListSortModal.test.tsx │ │ └── __snapshots__ │ │ │ ├── AccelerateTxModal.test.tsx.snap │ │ │ ├── AddressModal.test.tsx.snap │ │ │ ├── AdvancedDetailsCard.test.tsx.snap │ │ │ ├── AirshipFullScreenSpinner.test.tsx.snap │ │ │ ├── AutoLogoutModal.test.tsx.snap │ │ │ ├── CategoryModal.test.tsx.snap │ │ │ ├── CountryListModal.test.tsx.snap │ │ │ ├── DateModal.test.tsx.snap │ │ │ ├── HelpModal.test.tsx.snap │ │ │ ├── LogsModal.test.tsx.snap │ │ │ ├── PasswordReminderModal.test.tsx.snap │ │ │ ├── TextInputModal.test.tsx.snap │ │ │ ├── WalletListModal.test.tsx.snap │ │ │ └── WalletListSortModal.test.tsx.snap │ ├── plugins │ │ └── ramps │ │ │ └── utils │ │ │ └── rampStoreIds.test.ts │ ├── reducers │ │ ├── RootReducer.test.ts │ │ ├── __snapshots__ │ │ │ └── RootReducer.test.ts.snap │ │ ├── passwordReminderReducer.test.ts │ │ ├── permissionsReducer.test.ts │ │ └── settingsReducer.test.ts │ ├── scenes │ │ ├── CreateWalletAccountSetupScene.test.tsx │ │ ├── CreateWalletEditNameScene.test.tsx │ │ ├── CreateWalletImportScene.test.tsx │ │ ├── CreateWalletSelectCryptoScene.test.tsx │ │ ├── CurrencyNotificationScene.test.tsx │ │ ├── CurrencySettings.ui.test.tsx │ │ ├── DefaultFiatSettingScene.test.tsx │ │ ├── EdgeLoginScene.test.tsx │ │ ├── FioAddressDetailsScene.test.tsx │ │ ├── FioAddressListScene.test.tsx │ │ ├── FioAddressRegisterScene.test.tsx │ │ ├── FioAddressRegisterSelectWalletScene.test.tsx │ │ ├── FioAddressRegisteredScene.test.tsx │ │ ├── FioAddressSettingsScene.test.tsx │ │ ├── FioConnectWalletConfirmScene.test.tsx │ │ ├── FioDomainRegisterScene.test.tsx │ │ ├── RequestScene.test.tsx │ │ ├── SendScene2.ui.test.tsx │ │ ├── SettingsScene.test.tsx │ │ ├── SwapConfirmationScene.test.tsx │ │ ├── SwapCreateScene.test.tsx │ │ ├── SwapSuccessScene.test.tsx │ │ ├── TransactionDetailsScene.test.tsx │ │ └── __snapshots__ │ │ │ ├── CreateWalletAccountSetupScene.test.tsx.snap │ │ │ ├── CreateWalletEditNameScene.test.tsx.snap │ │ │ ├── CreateWalletImportScene.test.tsx.snap │ │ │ ├── CreateWalletSelectCryptoScene.test.tsx.snap │ │ │ ├── CurrencyNotificationScene.test.tsx.snap │ │ │ ├── CurrencySettings.ui.test.tsx.snap │ │ │ ├── DefaultFiatSettingScene.test.tsx.snap │ │ │ ├── EdgeLoginScene.test.tsx.snap │ │ │ ├── FioAddressDetailsScene.test.tsx.snap │ │ │ ├── FioAddressListScene.test.tsx.snap │ │ │ ├── FioAddressRegisterScene.test.tsx.snap │ │ │ ├── FioAddressRegisterSelectWalletScene.test.tsx.snap │ │ │ ├── FioAddressRegisteredScene.test.tsx.snap │ │ │ ├── FioAddressSettingsScene.test.tsx.snap │ │ │ ├── FioConnectWalletConfirmScene.test.tsx.snap │ │ │ ├── FioDomainRegisterScene.test.tsx.snap │ │ │ ├── RequestScene.test.tsx.snap │ │ │ ├── SendScene2.ui.test.tsx.snap │ │ │ ├── SettingsScene.test.tsx.snap │ │ │ ├── SwapConfirmationScene.test.tsx.snap │ │ │ ├── SwapCreateScene.test.tsx.snap │ │ │ ├── SwapSuccessScene.test.tsx.snap │ │ │ └── TransactionDetailsScene.test.tsx.snap │ ├── spendingLimits.test.ts │ ├── toPercentString.test.ts │ ├── util.crypto.test.ts │ ├── util │ │ ├── paymentTypeIcons.test.ts │ │ ├── paymentTypeUtils.test.ts │ │ └── vault │ │ │ └── edgeVault.test.ts │ ├── utils.test.ts │ └── utils │ │ ├── FioConstants.test.ts │ │ ├── ProviderSupportStore.test.ts │ │ ├── intl.test.ts │ │ └── parseMarkedText.test.ts ├── actions │ ├── AccountActions.tsx │ ├── AccountReferralActions.ts │ ├── BackupModalActions.tsx │ ├── CategoriesActions.ts │ ├── CountryCodeActions.ts │ ├── CountryListActions.tsx │ ├── CreateWalletActions.tsx │ ├── DeepLinkingActions.tsx │ ├── DeleteWalletModalActions.tsx │ ├── DeviceReferralActions.ts │ ├── DeviceSettingsActions.ts │ ├── ExchangeInfoActions.ts │ ├── ExchangeRateActions.ts │ ├── FioActions.tsx │ ├── FioAddressActions.ts │ ├── FirstOpenActions.tsx │ ├── LoanWelcomeActions.tsx │ ├── LocalSettingsActions.ts │ ├── LogActions.tsx │ ├── LoginActions.tsx │ ├── NotificationActions.ts │ ├── PaymentProtoActions.tsx │ ├── PluginActions.tsx │ ├── ReceiveDropdown.tsx │ ├── RecoveryReminderActions.tsx │ ├── RequestReviewActions.tsx │ ├── ResyncWalletModalActions.tsx │ ├── ScamWarningActions.tsx │ ├── ScanActions.tsx │ ├── SettingsActions.tsx │ ├── SoundActions.ts │ ├── TokenTermsActions.tsx │ ├── TransactionExportActions.tsx │ ├── WalletActions.tsx │ ├── WalletListActions.tsx │ ├── WalletListMenuActions.tsx │ └── scene │ │ └── StakingActions.tsx ├── app.ts ├── assets │ ├── images │ │ ├── MenuButton │ │ │ ├── menu.png │ │ │ ├── menu@2x.png │ │ │ └── menu@3x.png │ │ ├── account-icon.svg │ │ ├── backup-hero.png │ │ ├── bitcoin-icon.svg │ │ ├── buy-sell-icon.svg │ │ ├── compromisedIcon.png │ │ ├── create-wallet.svg │ │ ├── createWallet │ │ │ ├── check_icon_lg.png │ │ │ ├── check_icon_lg@2x.png │ │ │ └── check_icon_lg@3x.png │ │ ├── currency-toggle-icon.svg │ │ ├── custom-asset.png │ │ ├── delete-icon.svg │ │ ├── details_fioAddress.png │ │ ├── details_fioAddress@2x.png │ │ ├── duressMode │ │ │ └── illustration.png │ │ ├── edgeLogo │ │ │ ├── Edge_logo_Icon.png │ │ │ ├── Edge_logo_Icon@2x.png │ │ │ ├── Edge_logo_Icon@3x.png │ │ │ ├── Edge_logo_Icon_L.png │ │ │ ├── Edge_logo_Icon_L@2x.png │ │ │ ├── Edge_logo_Icon_L@3x.png │ │ │ ├── Edge_logo_L.png │ │ │ ├── Edge_logo_L@2x.png │ │ │ ├── Edge_logo_L@3x.png │ │ │ ├── Edge_logo_S.png │ │ │ ├── Edge_logo_S@2x.png │ │ │ └── Edge_logo_S@3x.png │ │ ├── ens_logo.png │ │ ├── export-icon.svg │ │ ├── fio │ │ │ ├── SendModule_FioAddress.png │ │ │ ├── SendModule_FioAddress@2x.png │ │ │ ├── fio_logo.png │ │ │ ├── fio_logo@2x.png │ │ │ ├── fio_logo@3x.png │ │ │ ├── fio_sent_request.png │ │ │ ├── fio_sent_request@2x.png │ │ │ └── fio_sent_request@3x.png │ │ ├── fio_logo.png │ │ ├── gettingStarted │ │ │ ├── usp0.png │ │ │ ├── usp1.png │ │ │ ├── usp2.png │ │ │ └── usp3.png │ │ ├── guiPlugins │ │ │ ├── guiPluginLogoMoonpayDark.png │ │ │ ├── visaBrand.png │ │ │ └── visaCardSayAnythingIllustration.png │ │ ├── import-key-icon.svg │ │ ├── list_fioAddress.png │ │ ├── list_fioAddress@2x.png │ │ ├── logout-icon.svg │ │ ├── manageTokens │ │ │ ├── check_mark.png │ │ │ ├── check_mark@2x.png │ │ │ └── check_mark@3x.png │ │ ├── otp │ │ │ ├── OTP-badge_sm.png │ │ │ ├── OTP-badge_sm@2x.png │ │ │ └── OTP-badge_sm@3x.png │ │ ├── paymentTypes │ │ │ ├── paymentTypeLogoApplePay.png │ │ │ ├── paymentTypeLogoAuspost.png │ │ │ ├── paymentTypeLogoBankTransfer.png │ │ │ ├── paymentTypeLogoCash.png │ │ │ ├── paymentTypeLogoCreditCard.png │ │ │ ├── paymentTypeLogoDebitCard.png │ │ │ ├── paymentTypeLogoFasterPayments.png │ │ │ ├── paymentTypeLogoGiftCard.png │ │ │ ├── paymentTypeLogoGooglePay.png │ │ │ ├── paymentTypeLogoIdeal.png │ │ │ ├── paymentTypeLogoInterac.png │ │ │ ├── paymentTypeLogoPayid.png │ │ │ ├── paymentTypeLogoPaynow.png │ │ │ ├── paymentTypeLogoPaypal.png │ │ │ ├── paymentTypeLogoPix.png │ │ │ ├── paymentTypeLogoPoli.png │ │ │ ├── paymentTypeLogoRevolut-dark.png │ │ │ ├── paymentTypeLogoRevolut-light.png │ │ │ ├── paymentTypeLogoSofort.png │ │ │ ├── paymentTypeLogoUpi.png │ │ │ ├── paymentTypeLogoVenmo.png │ │ │ └── paymentTypeVisa.png │ │ ├── plugins-icon.svg │ │ ├── rename-icon.svg │ │ ├── request-icon.svg │ │ ├── settings-icon.svg │ │ ├── shapeShiftLogo.png │ │ ├── sidenav │ │ │ ├── accounts.png │ │ │ ├── accounts@2x.png │ │ │ ├── accounts@3x.png │ │ │ ├── buysell.png │ │ │ ├── buysell@2x.png │ │ │ ├── buysell@3x.png │ │ │ ├── exchange.png │ │ │ ├── exchange@2x.png │ │ │ ├── exchange@3x.png │ │ │ ├── fio-address.png │ │ │ ├── fio-address@2x.png │ │ │ ├── fio-address@3x.png │ │ │ ├── fioaddress.png │ │ │ ├── fioaddress@2x.png │ │ │ ├── fioaddress@3x.png │ │ │ ├── fiorequests.png │ │ │ ├── fiorequests@2x.png │ │ │ ├── fiorequests@3x.png │ │ │ ├── logout.png │ │ │ ├── logout@2x.png │ │ │ ├── logout@3x.png │ │ │ ├── receive.png │ │ │ ├── receive@2x.png │ │ │ ├── receive@3x.png │ │ │ ├── scan.png │ │ │ ├── scan@2x.png │ │ │ ├── scan@3x.png │ │ │ ├── sell.png │ │ │ ├── sell@2x.png │ │ │ ├── sell@3x.png │ │ │ ├── settings.png │ │ │ ├── settings@2x.png │ │ │ ├── settings@3x.png │ │ │ ├── share.png │ │ │ ├── share@2x.png │ │ │ ├── share@3x.png │ │ │ ├── sweep.png │ │ │ ├── sweep@2x.png │ │ │ ├── sweep@3x.png │ │ │ ├── terms.png │ │ │ ├── terms@2x.png │ │ │ ├── terms@3x.png │ │ │ ├── walletconnect-logo.png │ │ │ ├── walletconnect-logo@2x.png │ │ │ ├── walletconnect-logo@3x.png │ │ │ ├── wallets.png │ │ │ ├── wallets@2x.png │ │ │ └── wallets@3x.png │ │ ├── slider │ │ │ ├── keyboard-arrow-left.png │ │ │ └── keyboard-arrow-left@2x.png │ │ ├── tabbar │ │ │ ├── buy.png │ │ │ ├── buy@2x.png │ │ │ ├── buy@3x.png │ │ │ ├── buy_selected.png │ │ │ ├── buy_selected@2x.png │ │ │ ├── buy_selected@3x.png │ │ │ ├── exchange.png │ │ │ ├── exchange@2x.png │ │ │ ├── exchange@3x.png │ │ │ ├── exchange_selected.png │ │ │ ├── exchange_selected@2x.png │ │ │ ├── exchange_selected@3x.png │ │ │ ├── more.png │ │ │ ├── more@2x.png │ │ │ ├── more@3x.png │ │ │ ├── more_selected.png │ │ │ ├── more_selected@2x.png │ │ │ ├── more_selected@3x.png │ │ │ ├── sell.png │ │ │ ├── sell@2x.png │ │ │ ├── sell@3x.png │ │ │ ├── sell_selected.png │ │ │ ├── sell_selected@2x.png │ │ │ ├── sell_selected@3x.png │ │ │ ├── wallets.png │ │ │ ├── wallets@2x.png │ │ │ ├── wallets@3x.png │ │ │ ├── wallets_selected.png │ │ │ ├── wallets_selected@2x.png │ │ │ └── wallets_selected@3x.png │ │ ├── transaction_details_icon.png │ │ ├── transactions-icon.svg │ │ ├── transactions │ │ │ ├── transaction-details-exchanged.png │ │ │ ├── transaction-details-exchanged@2x.png │ │ │ ├── transaction-details-exchanged@3x.png │ │ │ ├── transaction-details-received.png │ │ │ ├── transaction-details-received@2x.png │ │ │ ├── transaction-details-received@3x.png │ │ │ ├── transaction-details-sent.png │ │ │ ├── transaction-details-sent@2x.png │ │ │ ├── transaction-details-sent@3x.png │ │ │ ├── transaction-type-exchanged.png │ │ │ ├── transaction-type-exchanged@2x.png │ │ │ ├── transaction-type-exchanged@3x.png │ │ │ ├── transaction-type-received.png │ │ │ ├── transaction-type-received@2x.png │ │ │ ├── transaction-type-received@3x.png │ │ │ ├── transaction-type-sent.png │ │ │ ├── transaction-type-sent@2x.png │ │ │ ├── transaction-type-sent@3x.png │ │ │ ├── transactions-request.png │ │ │ ├── transactions-request@2x.png │ │ │ ├── transactions-request@3x.png │ │ │ ├── transactions-send.png │ │ │ ├── transactions-send@2x.png │ │ │ └── transactions-send@3x.png │ │ ├── tutorials │ │ │ ├── walletList_sliding_dark.gif │ │ │ └── walletList_sliding_light.gif │ │ ├── wallet-icon.svg │ │ └── walletconnect-logo.png │ └── vector │ │ ├── config.json │ │ └── index.ts ├── components │ ├── App.tsx │ ├── FioAddress │ │ ├── ConnectWallets.tsx │ │ ├── DomainListModal.tsx │ │ ├── FioActionSubmit.tsx │ │ └── FioName.tsx │ ├── Main.tsx │ ├── buttons │ │ ├── ButtonsView.tsx │ │ ├── DropdownInputButton.tsx │ │ ├── EdgeButton.tsx │ │ ├── EdgeSwitch.tsx │ │ ├── IconButton.tsx │ │ ├── KavButtons.tsx │ │ ├── MinimalButton.tsx │ │ ├── ModalButtons.tsx │ │ ├── PillButton.tsx │ │ ├── ReturnKeyTypeButton.tsx │ │ └── SceneButtons.tsx │ ├── cards │ │ ├── AdvancedDetailsCard.tsx │ │ ├── AlertCard.tsx │ │ ├── BalanceCard.tsx │ │ ├── ContentPostCard.tsx │ │ ├── ContentPostCarousel.tsx │ │ ├── EarnOptionCard.tsx │ │ ├── EdgeCard.tsx │ │ ├── ErrorCard.tsx │ │ ├── FiatAmountInputCard.tsx │ │ ├── FiatExchangeDetailsCard.tsx │ │ ├── HomeTileCard.tsx │ │ ├── IconMessageCard.tsx │ │ ├── InfoCard.tsx │ │ ├── InfoCardCarousel.tsx │ │ ├── LoanDetailsSummaryCard.tsx │ │ ├── LoanSummaryCard.tsx │ │ ├── MarketsCard.tsx │ │ ├── PaymentOptionCard.tsx │ │ ├── PoweredByCard.tsx │ │ ├── StakingOptionCard.tsx │ │ ├── StakingReturnsCard.tsx │ │ ├── SupportCard.tsx │ │ ├── SwapDetailsCard.tsx │ │ ├── TappableAccountCard.tsx │ │ ├── TappableCard.tsx │ │ ├── UnderlinedNumInputCard.tsx │ │ ├── VisaCardCard.tsx │ │ ├── WalletRestoreCard.tsx │ │ └── WarningCard.tsx │ ├── charts │ │ └── SwipeChart.tsx │ ├── common │ │ ├── AirshipDropdown.tsx │ │ ├── AirshipToast.tsx │ │ ├── AnimatedNumber.tsx │ │ ├── BlurBackground.tsx │ │ ├── CrossFade.tsx │ │ ├── DividerLineUi4.tsx │ │ ├── DotsBackground.tsx │ │ ├── EdgeAnim.tsx │ │ ├── EdgeCarousel.tsx │ │ ├── EdgeTouchableOpacity.ts │ │ ├── EdgeTouchableWithoutFeedback.ts │ │ ├── ExchangeRate2.tsx │ │ ├── ExpandableList.tsx │ │ ├── Margins.ts │ │ ├── QrPeephole.tsx │ │ ├── SceneWrapper.tsx │ │ ├── SectionHeader.tsx │ │ └── TextDropdown.tsx │ ├── hoc │ │ ├── IfLoggedIn.tsx │ │ ├── MaybeCurrencySetting.tsx │ │ ├── maybeComponent.tsx │ │ ├── styled.tsx │ │ ├── withExtendedTouchable.tsx │ │ ├── withLoanAccount.tsx │ │ └── withWallet.tsx │ ├── icons │ │ ├── BestRateBadge.tsx │ │ ├── CryptoIcon.tsx │ │ ├── FiatIcon.tsx │ │ ├── IconBadge.tsx │ │ ├── PairIcons.tsx │ │ ├── SwipeableRowIcon.tsx │ │ ├── ThemedIcons.tsx │ │ └── WalletIcon.tsx │ ├── layout │ │ ├── Peek.tsx │ │ ├── SceneContainer.tsx │ │ ├── SectionView.tsx │ │ └── Space.tsx │ ├── modals │ │ ├── AccelerateTxModal.tsx │ │ ├── AddressModal.tsx │ │ ├── AirshipFullScreenSpinner.tsx │ │ ├── AutoLogoutModal.tsx │ │ ├── BackupModal.tsx │ │ ├── ButtonsModal.tsx │ │ ├── CardListModal.tsx │ │ ├── CategoryModal.tsx │ │ ├── ConfirmContinueModal.tsx │ │ ├── ContactListModal.tsx │ │ ├── ContactsPermissionModal.tsx │ │ ├── CountryListModal.tsx │ │ ├── DateModal.tsx │ │ ├── EdgeModal.tsx │ │ ├── FiatListModal.tsx │ │ ├── FioCreateHandleModal.tsx │ │ ├── FioExpiredModal.tsx │ │ ├── FlipInputModal2.tsx │ │ ├── FundAccountModal.tsx │ │ ├── GradientFadeout.tsx │ │ ├── HelpModal.tsx │ │ ├── InsufficientFeesModal.tsx │ │ ├── ListModal.tsx │ │ ├── LoanWelcomeModal.tsx │ │ ├── LogsModal.tsx │ │ ├── PasswordReminderModal.tsx │ │ ├── PendingTxModal.tsx │ │ ├── PermissionsSettingModal.tsx │ │ ├── QrModal.tsx │ │ ├── RadioListModal.tsx │ │ ├── RawTextModal.tsx │ │ ├── ScamWarningModal.tsx │ │ ├── ScanModal.tsx │ │ ├── StateProvinceListModal.tsx │ │ ├── SurveyModal.tsx │ │ ├── SwapVerifyTermsModal.tsx │ │ ├── TextInputModal.tsx │ │ ├── TransferModal.tsx │ │ ├── WalletListMenuModal.tsx │ │ ├── WalletListModal.tsx │ │ ├── WalletListSortModal.tsx │ │ ├── WcSmartContractModal.tsx │ │ └── WebViewModal.tsx │ ├── navigation │ │ ├── AlertDropdown.tsx │ │ ├── BackButton.tsx │ │ ├── CurrencySettingsTitle.tsx │ │ ├── EdgeHeader.tsx │ │ ├── EdgeLogoHeader.tsx │ │ ├── FlashNotification.tsx │ │ ├── GuiPluginBackButton.tsx │ │ ├── HeaderBackground.tsx │ │ ├── HeaderTextButton.tsx │ │ ├── HeaderTitle.tsx │ │ ├── NavigationButton.tsx │ │ ├── ParamHeaderTitle.tsx │ │ ├── SideMenuButton.tsx │ │ └── TransactionDetailsTitle.tsx │ ├── notification │ │ ├── NotificationCard.tsx │ │ ├── NotificationCenterCard.tsx │ │ └── NotificationView.tsx │ ├── progress-indicators │ │ ├── AccountSyncBar.tsx │ │ ├── CancellableProcessingScene.tsx │ │ ├── CircleTimer.tsx │ │ ├── FillLoader.tsx │ │ ├── FullScreenLoader.tsx │ │ ├── LoadingSplashScreen.tsx │ │ ├── Shimmer.tsx │ │ ├── ShimmerCard.tsx │ │ ├── StepProgressBar.tsx │ │ └── WalletSyncCircle.tsx │ ├── rows │ │ ├── CoinRankRow.tsx │ │ ├── CryptoFiatAmountRow.tsx │ │ ├── CurrencyRow.tsx │ │ ├── CustomAssetRow.tsx │ │ ├── EdgeRow.tsx │ │ ├── IconDataRow.tsx │ │ ├── PaymentMethodRow.tsx │ │ ├── SwapProviderRow.tsx │ │ └── TxCryptoAmountRow.tsx │ ├── scenes │ │ ├── AssetSettingsScene.tsx │ │ ├── ChangeMiningFeeScene.tsx │ │ ├── ChangePasswordScene.tsx │ │ ├── ChangePinScene.tsx │ │ ├── ChangeUsernameScene.tsx │ │ ├── CoinRankingDetailsScene.tsx │ │ ├── CoinRankingScene.tsx │ │ ├── ConfirmScene.tsx │ │ ├── CrashScene.tsx │ │ ├── CreateWalletAccountSelectScene.tsx │ │ ├── CreateWalletAccountSetupScene.tsx │ │ ├── CreateWalletCompletionScene.tsx │ │ ├── CreateWalletEditNameScene.tsx │ │ ├── CreateWalletImportOptionsScene.tsx │ │ ├── CreateWalletImportScene.tsx │ │ ├── CreateWalletSelectCryptoScene.tsx │ │ ├── CurrencyNotificationScene.tsx │ │ ├── CurrencySettingsScene.tsx │ │ ├── DefaultFiatSettingScene.tsx │ │ ├── DevTestScene.tsx │ │ ├── DuressModeHowToScene.tsx │ │ ├── DuressModeSettingScene.tsx │ │ ├── DuressPinScene.tsx │ │ ├── EdgeLoginScene.tsx │ │ ├── EditTokenScene.tsx │ │ ├── ExtraTabScene.tsx │ │ ├── Fio │ │ │ ├── FioAddressDetailsScene.tsx │ │ │ ├── FioAddressListScene.tsx │ │ │ ├── FioAddressRegisterScene.tsx │ │ │ ├── FioAddressRegisterSelectWalletScene.tsx │ │ │ ├── FioAddressRegisteredScene.tsx │ │ │ ├── FioAddressSettingsScene.tsx │ │ │ ├── FioConnectWalletConfirmScene.tsx │ │ │ ├── FioCreateHandleScene.tsx │ │ │ ├── FioDomainRegisterScene.tsx │ │ │ ├── FioDomainRegisterSelectWalletScene.tsx │ │ │ ├── FioDomainSettingsScene.tsx │ │ │ ├── FioNameConfirmScene.tsx │ │ │ ├── FioRequestConfirmationScene.tsx │ │ │ ├── FioRequestListScene.tsx │ │ │ ├── FioSentRequestDetailsScene.tsx │ │ │ ├── FioStakingChangeScene.tsx │ │ │ └── FioStakingOverviewScene.tsx │ │ ├── FormScene.tsx │ │ ├── GettingStartedScene.tsx │ │ ├── GuiPluginListScene.tsx │ │ ├── GuiPluginViewScene.tsx │ │ ├── HomeScene.tsx │ │ ├── LoadingScene.tsx │ │ ├── Loans │ │ │ ├── LoanCloseScene.tsx │ │ │ ├── LoanCreateConfirmationScene.tsx │ │ │ ├── LoanCreateScene.tsx │ │ │ ├── LoanDashboardScene.tsx │ │ │ ├── LoanDetailsScene.tsx │ │ │ ├── LoanManageScene.tsx │ │ │ └── LoanStatusScene.tsx │ │ ├── LoginScene.tsx │ │ ├── ManageTokensScene.tsx │ │ ├── MigrateWalletCalculateFeeScene.tsx │ │ ├── MigrateWalletCompletionScene.tsx │ │ ├── MigrateWalletSelectCryptoScene.tsx │ │ ├── NotificationCenterScene.tsx │ │ ├── NotificationScene.tsx │ │ ├── OtpRepairScene.tsx │ │ ├── OtpSettingsScene.tsx │ │ ├── PasswordRecoveryScene.tsx │ │ ├── PromotionSettingsScene.tsx │ │ ├── RampBankFormScene.tsx │ │ ├── RampBankRoutingDetailsScene.tsx │ │ ├── RampConfirmationScene.tsx │ │ ├── RampCreateScene.tsx │ │ ├── RampCreateScene │ │ │ └── RampRegionSelect.tsx │ │ ├── RampKycFormScene.tsx │ │ ├── RampPendingScene.tsx │ │ ├── RampSelectOptionScene.tsx │ │ ├── RequestScene.tsx │ │ ├── ReviewTriggerTestScene.tsx │ │ ├── SecurityAlertsScene.tsx │ │ ├── SendScene2.tsx │ │ ├── SettingsScene.tsx │ │ ├── SpendingLimitsScene.tsx │ │ ├── Staking │ │ │ ├── EarnScene.tsx │ │ │ ├── StakeModifyScene.tsx │ │ │ ├── StakeOptionsScene.tsx │ │ │ └── StakeOverviewScene.tsx │ │ ├── SwapConfirmationScene.tsx │ │ ├── SwapCreateScene.tsx │ │ ├── SwapProcessingScene.tsx │ │ ├── SwapSettingsScene.tsx │ │ ├── SwapSuccessScene.tsx │ │ ├── SweepPrivateKeyCalculateFeeScene.tsx │ │ ├── SweepPrivateKeyCompletionScene.tsx │ │ ├── SweepPrivateKeyProcessingScene.tsx │ │ ├── SweepPrivateKeySelectCryptoScene.tsx │ │ ├── TransactionDetailsScene.tsx │ │ ├── TransactionListScene.tsx │ │ ├── TransactionsExportScene.tsx │ │ ├── UpgradeUsernameScreen.tsx │ │ ├── WalletDetailsScene.tsx │ │ ├── WalletListScene.tsx │ │ ├── WalletRestoreScene.tsx │ │ ├── WcConnectScene.tsx │ │ ├── WcConnectionsScene.tsx │ │ ├── WcDisconnectScene.tsx │ │ ├── WebViewScene.tsx │ │ └── inputs │ │ │ ├── DigitInput.tsx │ │ │ └── DigitInput │ │ │ └── PinDots.tsx │ ├── services │ │ ├── AccountCallbackManager.tsx │ │ ├── ActionQueueService.ts │ │ ├── AirshipInstance.tsx │ │ ├── AutoLogout.ts │ │ ├── ContactsLoader.ts │ │ ├── DeepLinkingManager.tsx │ │ ├── EdgeContextCallbackManager.tsx │ │ ├── EdgeCoreManager.tsx │ │ ├── FioService.ts │ │ ├── LoanManagerService.ts │ │ ├── NetworkActivity.ts │ │ ├── NotificationService.ts │ │ ├── PasswordReminderService.ts │ │ ├── PermissionsManager.tsx │ │ ├── Providers.tsx │ │ ├── Services.tsx │ │ ├── SortedWalletList.ts │ │ ├── StatusBarManager.tsx │ │ ├── ThemeContext.ts │ │ ├── WalletConnectService.tsx │ │ ├── WalletLifecycle.ts │ │ └── WipeLogsService.tsx │ ├── settings │ │ ├── SettingsHeaderRow.tsx │ │ ├── SettingsLabelRow.tsx │ │ ├── SettingsRadioRow.tsx │ │ ├── SettingsRow.tsx │ │ ├── SettingsSubHeader.tsx │ │ ├── SettingsSwitchRow.tsx │ │ └── SettingsTappableRow.tsx │ ├── text │ │ ├── AssetChangeText.tsx │ │ ├── CryptoText.tsx │ │ ├── FiatText.tsx │ │ ├── SectionHeading.tsx │ │ ├── TitleText.tsx │ │ ├── UnscaledText.tsx │ │ └── UnscaledTextInput.tsx │ ├── themed │ │ ├── AddressQr.tsx │ │ ├── Alert.tsx │ │ ├── BuyCrypto.tsx │ │ ├── CarouselDots.tsx │ │ ├── CreateWalletSelectCryptoRow.tsx │ │ ├── DividerLine.tsx │ │ ├── EdgeProviderComponent.tsx │ │ ├── EdgeText.tsx │ │ ├── ExchangeQuoteComponent.tsx │ │ ├── ExchangedFlipInput2.tsx │ │ ├── ExplorerCard.tsx │ │ ├── FilledTextInput.tsx │ │ ├── FioRequestRow.tsx │ │ ├── FlipInput2.tsx │ │ ├── LineTextDivider.tsx │ │ ├── MainButton.tsx │ │ ├── ManageTokensRow.tsx │ │ ├── MaybeCustomServersSetting.tsx │ │ ├── MaybeMoneroUserSettings.tsx │ │ ├── MenuTabs.tsx │ │ ├── ModalParts.tsx │ │ ├── PinDots.tsx │ │ ├── QrCarousel.tsx │ │ ├── QrCode.tsx │ │ ├── SafeSlider.tsx │ │ ├── SceneFooterWrapper.tsx │ │ ├── SceneHeader.tsx │ │ ├── SceneHeaderUi4.tsx │ │ ├── SearchFooter.tsx │ │ ├── SelectableRow.tsx │ │ ├── SendFromFioRows.tsx │ │ ├── ShareButtons.tsx │ │ ├── SideMenu.tsx │ │ ├── SimpleTextInput.tsx │ │ ├── SwapInput.tsx │ │ ├── SwipeableRow.tsx │ │ ├── ThemedButtons.tsx │ │ ├── Thermostat.tsx │ │ ├── Title.tsx │ │ ├── TransactionListComponents.tsx │ │ ├── TransactionListRow.tsx │ │ ├── TransactionListTop.tsx │ │ ├── VectorIcon.tsx │ │ ├── WalletList.tsx │ │ ├── WalletListCreateRow.tsx │ │ ├── WalletListCurrencyRow.tsx │ │ ├── WalletListErrorRow.tsx │ │ ├── WalletListHeader.tsx │ │ ├── WalletListLoadingRow.tsx │ │ ├── WalletListSectionHeader.tsx │ │ ├── WalletListSortable.tsx │ │ ├── WalletListSortableRow.tsx │ │ ├── WalletListSwipeable.tsx │ │ ├── WalletListSwipeableCurrencyRow.tsx │ │ └── WalletListSwipeableLoadingRow.tsx │ └── tiles │ │ ├── AddressTile2.tsx │ │ ├── AprCard.tsx │ │ ├── CountdownTile.tsx │ │ ├── CryptoFiatAmountTile.tsx │ │ ├── EditableAmountTile.tsx │ │ ├── ErrorTile.tsx │ │ ├── FiatAmountTile.tsx │ │ ├── InterestRateChangeTile.tsx │ │ ├── LtvRatioTile.tsx │ │ ├── NetworkFeeTile.tsx │ │ ├── PercentageChangeArrowTile.tsx │ │ └── TotalDebtCollateralTile.tsx ├── constants │ ├── CdnConstants.ts │ ├── CountryConstants.ts │ ├── FioConstants.ts │ ├── MerchantContacts.ts │ ├── WalletAndCurrencyConstants.ts │ ├── aaveConstants.ts │ ├── constantSettings.ts │ ├── plugins │ │ ├── GuiPlugins.ts │ │ ├── buyPluginList.json │ │ ├── buyPluginListOverride.json │ │ ├── sellPluginList.json │ │ └── sellPluginListOverride.json │ ├── txActionConstants.ts │ └── valueConstants.ts ├── controllers │ ├── action-queue │ │ ├── ActionProgram.ts │ │ ├── ActionQueueStore.ts │ │ ├── PaymentMethod.ts │ │ ├── cleaners.ts │ │ ├── display.ts │ │ ├── push.ts │ │ ├── redux │ │ │ ├── actions.ts │ │ │ └── reducers.ts │ │ ├── runtime │ │ │ ├── checkActionEffect.ts │ │ │ ├── dryrunActionProgram.ts │ │ │ ├── evaluateAction.ts │ │ │ ├── executeActionProgram.ts │ │ │ └── mock │ │ │ │ ├── checkActionEffect.ts │ │ │ │ └── evaluateAction.ts │ │ ├── types.ts │ │ ├── types │ │ │ ├── pushApiTypes.ts │ │ │ ├── pushCleaners.ts │ │ │ └── pushTypes.ts │ │ └── util │ │ │ ├── checkEffectIsDone.ts │ │ │ ├── getEffectErrors.ts │ │ │ ├── getEffectPushEventIds.ts │ │ │ ├── makeExecutionContext.ts │ │ │ └── makeInitialProgramState.ts │ ├── edgeProvider │ │ ├── EdgeProviderServer.tsx │ │ ├── client │ │ │ ├── edgeProviderBridge.ts │ │ │ └── pendingList.ts │ │ ├── injectThisInWebView.d.ts │ │ └── types │ │ │ ├── edgeProviderCleaners.ts │ │ │ ├── edgeProviderTypes.ts │ │ │ └── jsonRpcCleaners.ts │ └── loan-manager │ │ ├── LoanAccount.ts │ │ ├── borrowPluginConfig.ts │ │ ├── redux │ │ ├── actions.ts │ │ ├── reducers.ts │ │ └── selectors.ts │ │ ├── store.ts │ │ ├── types.ts │ │ └── util │ │ ├── checkLoanHasFunds.ts │ │ └── waitForLoanAccountSync.ts ├── declare-modules.d.ts ├── env.ts ├── envConfig.ts ├── experimentConfig.ts ├── hooks │ ├── redux │ │ └── useContactThumbnail.ts │ ├── swap │ │ └── useSwapRequestOptions.ts │ ├── useAbortable.ts │ ├── useAccountSyncRatio.tsx │ ├── useAllTokens.ts │ ├── useAsyncEffect.ts │ ├── useAsyncNavigation.tsx │ ├── useAsyncValue.ts │ ├── useBackButtonToast.tsx │ ├── useBackEvent.ts │ ├── useCarouselGesture.ts │ ├── useCryptoText.ts │ ├── useDisplayDenom.ts │ ├── useExecutionContext.ts │ ├── useExperimentConfig.ts │ ├── useFiatText.ts │ ├── useFilter.ts │ ├── useHandler.ts │ ├── useHistoricalRate.ts │ ├── useIconColor.ts │ ├── useIsAccountFunded.ts │ ├── useIsAppForeground.ts │ ├── useLayout.ts │ ├── useLayoutOnce.ts │ ├── useLayoutStyle.ts │ ├── useMount.ts │ ├── useNumericInputProps.ts │ ├── usePendingPress.ts │ ├── useRampLastCryptoSelection.ts │ ├── useRampPlugins.ts │ ├── useRampQuotes.ts │ ├── useRefresher.ts │ ├── useRowLayout.ts │ ├── useScrollToEnd.ts │ ├── useSharedEvent.ts │ ├── useSpaceStyle.ts │ ├── useSupportedPlugins.ts │ ├── useTokenDisplayData.ts │ ├── useTransactionList.ts │ ├── useUnmount.ts │ ├── useUrlHandler.ts │ ├── useWalletBalance.ts │ ├── useWalletConnect.tsx │ ├── useWalletName.ts │ ├── useWalletsSubscriber.ts │ ├── useWatch.ts │ └── useWhyDidYouUpdate.ts ├── locales │ ├── dateLocales.ts │ ├── en_US.ts │ ├── intl.ts │ ├── strings.ts │ └── strings │ │ ├── de.json │ │ ├── enUS.json │ │ ├── es.json │ │ ├── esMX.json │ │ ├── fr.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── kaa.json │ │ ├── ko.json │ │ ├── pt.json │ │ ├── ru.json │ │ ├── vi.json │ │ └── zh.json ├── perf.ts ├── plugins │ ├── abi │ │ ├── ANYSWAP_V5_ERC20_ABI.json │ │ ├── A_TOKEN_ABI.json │ │ ├── ERC20_ABI.json │ │ ├── IPRICEORACLE_ABI.json │ │ ├── LENDING_POOL_ABI.json │ │ ├── MASONRY_ABI.json │ │ ├── PARASWAP_ABI.json │ │ ├── PROTOCOL_DATA_PROVIDER_ABI.json │ │ ├── STABLE_DEBT_TOKEN_ABI.json │ │ ├── THORCHAIN_SWAP_ABI.ts │ │ ├── TOMB_ABI.json │ │ ├── TOMB_TREASURY_ABI.json │ │ ├── TSHARE_ABI.json │ │ ├── TSHARE_REWARD_POOL_ABI.json │ │ ├── TSHARE_WFTM_LP_ABI.json │ │ ├── UNISWAP_V2_PAIR.json │ │ ├── UNISWAP_V2_ROUTER_02.json │ │ ├── VARIABLE_DEBT_TOKEN_ABI.json │ │ ├── VELODROME_V2_GAUGE.json │ │ ├── VELODROME_V2_ROUTER.json │ │ ├── VELODROME_V2_VOTER.json │ │ ├── WRAPPED_ETH_ABI.json │ │ └── WRAPPED_FTM_ABI.json │ ├── abis │ │ ├── GlifInfinityPool.json │ │ ├── GlifPoolToken.json │ │ ├── GlifRouter.json │ │ ├── GlifSimpleRamp.json │ │ ├── KilnLiquid20A.json │ │ ├── OptimismFeeOracle.json │ │ ├── TarotBorrowable.json │ │ ├── TarotCollateral.json │ │ ├── TarotRouter.json │ │ ├── VelodromeLPToken.json │ │ ├── VelodromePoolV2.json │ │ ├── VelodromeRouterV2.json │ │ └── erc20.json │ ├── borrow-plugins │ │ ├── common │ │ │ ├── ApprovableCall.ts │ │ │ ├── BorrowPluginFactory.ts │ │ │ ├── cleaners │ │ │ │ ├── asBigNumber.ts │ │ │ │ └── asGraceful.ts │ │ │ ├── constants.ts │ │ │ └── util │ │ │ │ └── composeApprovableActions.ts │ │ ├── plugins │ │ │ └── aave │ │ │ │ ├── AaveBorrowEngineFactory.ts │ │ │ │ ├── AaveNetwork.ts │ │ │ │ ├── cleaners │ │ │ │ └── asEthTokenContractAddress.ts │ │ │ │ └── index.ts │ │ └── types.ts │ ├── gui │ │ ├── RewardsCardPlugin.tsx │ │ ├── amountQuotePlugin.ts │ │ ├── components │ │ │ ├── GuiFormField.tsx │ │ │ └── GuiFormRow.tsx │ │ ├── fiatPlugin.tsx │ │ ├── fiatPluginTypes.ts │ │ ├── fiatProviderTypes.ts │ │ ├── hooks │ │ │ └── useStateManager.ts │ │ ├── pluginUtils.ts │ │ ├── providers │ │ │ ├── ProviderSupportStore.ts │ │ │ ├── banxaProvider.ts │ │ │ ├── bityProvider.ts │ │ │ ├── common.ts │ │ │ ├── ioniaProvider.ts │ │ │ ├── kadoOtcProvider.ts │ │ │ ├── kadoProvider.ts │ │ │ ├── moonpayProvider.ts │ │ │ ├── mtpelerinProvider.ts │ │ │ ├── paybisProvider.ts │ │ │ ├── revolutProvider.ts │ │ │ └── simplexProvider.ts │ │ ├── scenes │ │ │ ├── AddressFormScene.tsx │ │ │ ├── ConfirmationScene.tsx │ │ │ ├── ContactFormScene.tsx │ │ │ ├── FiatPluginEnterAmountScene.tsx │ │ │ ├── FiatPluginWebView.tsx │ │ │ ├── InfoDisplayScene.tsx │ │ │ ├── RewardsCardDashboardScene.tsx │ │ │ ├── RewardsCardWelcomeScene.tsx │ │ │ └── SepaFormScene.tsx │ │ └── util │ │ │ ├── fetchRevolut.ts │ │ │ ├── initializeProviders.ts │ │ │ └── providerUtils.ts │ ├── helpers │ │ └── borrowPluginHelpers.ts │ ├── ramps │ │ ├── README.md │ │ ├── allRampPlugins.ts │ │ ├── banxa │ │ │ ├── banxaRampPlugin.ts │ │ │ └── banxaRampTypes.ts │ │ ├── bitsofgold │ │ │ ├── bitsofgoldRampPlugin.ts │ │ │ └── bitsofgoldRampTypes.ts │ │ ├── infinite │ │ │ ├── infiniteApi.ts │ │ │ ├── infiniteApiTypes.ts │ │ │ ├── infiniteConstants.ts │ │ │ ├── infiniteRampPlugin.ts │ │ │ ├── infiniteRampTypes.ts │ │ │ ├── utils │ │ │ │ └── navigationFlow.ts │ │ │ └── workflows │ │ │ │ ├── authenticateWorkflow.ts │ │ │ │ ├── bankAccountWorkflow.ts │ │ │ │ ├── confirmationWorkflow.ts │ │ │ │ ├── kycWorkflow.ts │ │ │ │ └── tosWorkflow.ts │ │ ├── libertyx │ │ │ ├── libertyxRampPlugin.ts │ │ │ └── libertyxRampTypes.ts │ │ ├── moonpay │ │ │ ├── moonpayRampPlugin.ts │ │ │ └── moonpayRampTypes.ts │ │ ├── paybis │ │ │ ├── paybisRampPlugin.ts │ │ │ └── paybisRampTypes.ts │ │ ├── rampConstraints.ts │ │ ├── rampDeeplinkHandler.ts │ │ ├── rampPluginTypes.ts │ │ ├── revolut │ │ │ ├── revolutRampPlugin.ts │ │ │ ├── revolutRampTypes.ts │ │ │ └── util │ │ │ │ └── fetchRevolut.ts │ │ ├── simplex │ │ │ ├── simplexRampPlugin.ts │ │ │ └── simplexRampTypes.ts │ │ └── utils │ │ │ ├── README.md │ │ │ ├── constraintUtils.ts │ │ │ ├── createExternalRampPlugin.ts │ │ │ ├── createStore.ts │ │ │ ├── exitUtils.ts │ │ │ ├── getBestError.ts │ │ │ ├── getRateFromRampQuoteResult.ts │ │ │ ├── getSettlementRange.ts │ │ │ ├── rampStoreIds.ts │ │ │ └── webViewUtils.ts │ └── stake-plugins │ │ ├── currency │ │ └── tronStakePlugin.ts │ │ ├── generic │ │ ├── GenericStakePlugin.ts │ │ ├── pluginInfo.ts │ │ ├── pluginInfo │ │ │ ├── cardanoKilnPool.ts │ │ │ ├── coreumNativeStaking.ts │ │ │ ├── ethereumKilnPool.ts │ │ │ ├── filecoinCalibrationGlifpool.ts │ │ │ ├── filecoinGlifpool.ts │ │ │ ├── optimismTarotPool.ts │ │ │ └── thorchainYield.ts │ │ ├── policyAdapters │ │ │ ├── CardanoKilnAdaptor.ts │ │ │ ├── CoreumStakeKitAdaptor.ts │ │ │ ├── EthereumKilnAdaptor.ts │ │ │ ├── GlifInfinityPoolAdapter.ts │ │ │ ├── TarotPoolAdaptor.ts │ │ │ ├── ThorchainYieldAdaptor.ts │ │ │ └── types.ts │ │ ├── types.ts │ │ └── util │ │ │ ├── EdgeWalletProvider.ts │ │ │ ├── EdgeWalletSigner.ts │ │ │ ├── KilnApi.ts │ │ │ ├── Multipass.ts │ │ │ ├── stakeKitUtils.ts │ │ │ └── tarotUtils.ts │ │ ├── metadataCache.ts │ │ ├── stakePlugins.ts │ │ ├── thorchainSavers │ │ ├── defiUtils.ts │ │ ├── tcSaversPlugin.tsx │ │ └── tcSaversPluginSegwit.tsx │ │ ├── types.ts │ │ ├── uniswapV2 │ │ ├── Ecosystem.ts │ │ ├── pluginInfo.ts │ │ ├── policies │ │ │ ├── VelodromeV2StakePolicy.ts │ │ │ ├── cemeteryPolicy.ts │ │ │ └── masonryPolicy.ts │ │ ├── policyInfo │ │ │ ├── fantom.ts │ │ │ └── optimism.ts │ │ ├── stakePolicy.ts │ │ ├── types.ts │ │ └── uniV2Plugin.ts │ │ └── util │ │ ├── accumulator.ts │ │ ├── biggystringplus.ts │ │ ├── builder.ts │ │ ├── hex.ts │ │ └── internalTypes.ts ├── reducers │ ├── AccountReducer.ts │ ├── CoreReducer.ts │ ├── ExchangeInfoReducer.ts │ ├── FioReducer.ts │ ├── NetworkReducer.ts │ ├── PasswordReminderReducer.ts │ ├── PermissionsReducer.ts │ ├── RootReducer.ts │ ├── SpendingLimitsReducer.ts │ ├── StakingReducer.ts │ ├── scenes │ │ ├── FioAddressSceneReducer.ts │ │ └── SettingsReducer.ts │ └── uiReducer.ts ├── selectors │ ├── DenominationSelectors.ts │ ├── SettingsSelectors.ts │ ├── WalletSelectors.ts │ └── getCreateWalletList.ts ├── state │ ├── SceneFooterState.tsx │ ├── SceneScrollState.tsx │ ├── createStateProvider.tsx │ └── renderStateProviders.tsx ├── styles │ └── common │ │ ├── textStyles.tsx │ │ └── textStylesThemed.ts ├── theme │ ├── appConfig.ts │ ├── edgeConfig.ts │ ├── testConfig.ts │ └── variables │ │ ├── airbitz.ts │ │ ├── edgeDark.ts │ │ ├── edgeLight.ts │ │ ├── testDark.ts │ │ └── testLight.ts ├── types │ ├── AppleAdsAttributionTypes.ts │ ├── DeepLinkTypes.ts │ ├── FormTypes.ts │ ├── GuiPluginTypes.ts │ ├── HumanFriendlyError.ts │ ├── PaymentProtoError.ts │ ├── PaymentProtoTypes.ts │ ├── ReferralTypes.ts │ ├── ResolutionError.ts │ ├── Theme.ts │ ├── TweakTypes.ts │ ├── WebTypes.ts │ ├── brigad-react-native-adservices.d.ts │ ├── coinrankTypes.ts │ ├── posthog.d.ts │ ├── react-native-apple-ads-attribution.d.ts │ ├── reactHooks.ts │ ├── reactRedux.ts │ ├── reduxActions.ts │ ├── reduxTypes.ts │ ├── routerTypes.tsx │ └── types.ts ├── util │ ├── ActionProgramUtils.ts │ ├── CdnUris.ts │ ├── CleanStore.ts │ ├── CryptoAmount.ts │ ├── CurrencyInfoHelpers.ts │ ├── CurrencyWalletHelpers.ts │ ├── DeepLinkParser.ts │ ├── FioAddressUtils.ts │ ├── GuiPluginTools.ts │ ├── PeriodicTask.ts │ ├── PushClient │ │ └── PushClient.ts │ ├── PushMessageParser.ts │ ├── ReferralHelpers.ts │ ├── WebUtils.ts │ ├── addMetadataToContext.ts │ ├── arrangeUsers.ts │ ├── borrowUtils.ts │ ├── cleanFetch.ts │ ├── cleaners.ts │ ├── cleaners │ │ ├── asBase64.ts │ │ ├── asHex.ts │ │ └── asIntegerString.ts │ ├── corePluginBundle.js │ ├── corePlugins.ts │ ├── crypto.ts │ ├── cryptoTextUtils.ts │ ├── displayTime.ts │ ├── encoding.ts │ ├── exchangeRates.ts │ ├── fake-user.ts │ ├── fake │ │ ├── FakeProviders.tsx │ │ ├── fakeAirshipBridge.ts │ │ ├── fakeAvaxInfo.ts │ │ ├── fakeBtcInfo.ts │ │ ├── fakeCurrencyConfig.ts │ │ ├── fakeCurrencyPlugin.ts │ │ ├── fakeEthInfo.ts │ │ ├── fakeRootState.ts │ │ ├── fakeSceneProps.ts │ │ └── fakeUserDump.json │ ├── formUtils.ts │ ├── getAccountUsername.ts │ ├── haptic.ts │ ├── infoUtils.ts │ ├── ipApi.ts │ ├── isAbstractedAssetChain.ts │ ├── logger.ts │ ├── maestro.ts │ ├── matchJson.ts │ ├── memoUtils.ts │ ├── middleware │ │ ├── loginStatusChecker.ts │ │ └── perfLogger.ts │ ├── mswServer.ts │ ├── network.ts │ ├── networkFeeUtils.ts │ ├── normalizeError.ts │ ├── otpReminder.tsx │ ├── otpUtils.ts │ ├── parseMarkdown.tsx │ ├── parseMarkedText.tsx │ ├── paymentTypeIcons.ts │ ├── paymentTypeUtils.ts │ ├── promoCardUtils.ts │ ├── resolveName.ts │ ├── rnUtils.ts │ ├── routerUtils.ts │ ├── runOnce.ts │ ├── safeFilters.ts │ ├── scaling.ts │ ├── show-confetti.ts │ ├── sides.ts │ ├── stakeUtils.ts │ ├── tokenIdTools.ts │ ├── trace.ts │ ├── tracking.ts │ ├── translateError.ts │ ├── ukComplianceUtils.ts │ ├── utils.ts │ ├── vault │ │ ├── edgeVault.ts │ │ ├── edgeVaultKeys.ts │ │ ├── edgeVaultLogger.ts │ │ └── edgeVaultTypes.ts │ ├── versionCheck.tsx │ └── withWatchableProps.ts └── wdyr.ts ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.cursor/rules/component-export.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/.cursor/rules/component-export.mdc -------------------------------------------------------------------------------- /.cursorignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/.cursorignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.fastlane/Matchfile: -------------------------------------------------------------------------------- 1 | git_url("BUILD_REPO_URL") 2 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/pr-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/.github/workflows/pr-checks.yml -------------------------------------------------------------------------------- /.github/workflows/pr-rebase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/.github/workflows/pr-rebase.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /.groovylintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/.groovylintrc.json -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run precommit 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | @jsr:registry=https://npm.jsr.io 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/.travis.yml -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | --ignore-scripts true 2 | -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/README.md -------------------------------------------------------------------------------- /android/app/airbitz.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/app/airbitz.keystore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/app/google-services.sample.json -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/app/src/main/assets/blank.html -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/app/src/main/assets/fonts/OFL.txt -------------------------------------------------------------------------------- /android/app/src/main/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/app/src/main/res/values/bools.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/format-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/format-java.sh -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/sentry.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/sentry.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/babel.config.js -------------------------------------------------------------------------------- /copy-bitcoin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/copy-bitcoin.sh -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/crowdin.yml -------------------------------------------------------------------------------- /deploy-config.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/deploy-config.sample.json -------------------------------------------------------------------------------- /deployPatches/edge/beta/buildGradle.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/deployPatches/edge/beta/buildGradle.patch -------------------------------------------------------------------------------- /deployPatches/edge/beta/edgeXcsheme.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/deployPatches/edge/beta/edgeXcsheme.patch -------------------------------------------------------------------------------- /deployPatches/edge/beta/infoPlist.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/deployPatches/edge/beta/infoPlist.patch -------------------------------------------------------------------------------- /deployPatches/edge/beta/stringsXml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/deployPatches/edge/beta/stringsXml.patch -------------------------------------------------------------------------------- /deployPatches/edge/develop/infoPlist.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/deployPatches/edge/develop/infoPlist.patch -------------------------------------------------------------------------------- /docs/GUI_PLUGINS_ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/docs/GUI_PLUGINS_ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/MAESTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/docs/MAESTRO.md -------------------------------------------------------------------------------- /docs/images/readme-cover-photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/docs/images/readme-cover-photo.png -------------------------------------------------------------------------------- /env.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/env.json.enc -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/firebase.json -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/index.ts -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Base58.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/Base58.swift -------------------------------------------------------------------------------- /ios/EdgeCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/EdgeCore.swift -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Sentry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/Sentry.swift -------------------------------------------------------------------------------- /ios/edge.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/edge.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/edge/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/edge/AppDelegate.swift -------------------------------------------------------------------------------- /ios/edge/GoogleService-Info.sample.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/edge/GoogleService-Info.sample.plist -------------------------------------------------------------------------------- /ios/edge/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/edge/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/edge/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/edge/Info.plist -------------------------------------------------------------------------------- /ios/edge/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/edge/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/edge/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/edge/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/edge/edge.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/edge/edge.entitlements -------------------------------------------------------------------------------- /ios/exportOptions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/exportOptions.plist -------------------------------------------------------------------------------- /ios/sentry.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/ios/sentry.properties -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/jest.config.js -------------------------------------------------------------------------------- /jestSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/jestSetup.js -------------------------------------------------------------------------------- /localization/AppStoreDescription.de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreDescription.de.txt -------------------------------------------------------------------------------- /localization/AppStoreDescription.es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreDescription.es.txt -------------------------------------------------------------------------------- /localization/AppStoreDescription.esMX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreDescription.esMX.txt -------------------------------------------------------------------------------- /localization/AppStoreDescription.fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreDescription.fr.txt -------------------------------------------------------------------------------- /localization/AppStoreDescription.it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreDescription.it.txt -------------------------------------------------------------------------------- /localization/AppStoreDescription.ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreDescription.ja.txt -------------------------------------------------------------------------------- /localization/AppStoreDescription.kaa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreDescription.kaa.txt -------------------------------------------------------------------------------- /localization/AppStoreDescription.ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreDescription.ko.txt -------------------------------------------------------------------------------- /localization/AppStoreDescription.pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreDescription.pt.txt -------------------------------------------------------------------------------- /localization/AppStoreDescription.ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreDescription.ru.txt -------------------------------------------------------------------------------- /localization/AppStoreDescription.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreDescription.txt -------------------------------------------------------------------------------- /localization/AppStoreDescription.vi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreDescription.vi.txt -------------------------------------------------------------------------------- /localization/AppStoreDescription.zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreDescription.zh.txt -------------------------------------------------------------------------------- /localization/AppStoreGraphics.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreGraphics.de.json -------------------------------------------------------------------------------- /localization/AppStoreGraphics.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreGraphics.es.json -------------------------------------------------------------------------------- /localization/AppStoreGraphics.esMX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreGraphics.esMX.json -------------------------------------------------------------------------------- /localization/AppStoreGraphics.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreGraphics.fr.json -------------------------------------------------------------------------------- /localization/AppStoreGraphics.it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreGraphics.it.json -------------------------------------------------------------------------------- /localization/AppStoreGraphics.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreGraphics.ja.json -------------------------------------------------------------------------------- /localization/AppStoreGraphics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreGraphics.json -------------------------------------------------------------------------------- /localization/AppStoreGraphics.kaa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreGraphics.kaa.json -------------------------------------------------------------------------------- /localization/AppStoreGraphics.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreGraphics.ko.json -------------------------------------------------------------------------------- /localization/AppStoreGraphics.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreGraphics.pt.json -------------------------------------------------------------------------------- /localization/AppStoreGraphics.ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreGraphics.ru.json -------------------------------------------------------------------------------- /localization/AppStoreGraphics.vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreGraphics.vi.json -------------------------------------------------------------------------------- /localization/AppStoreGraphics.zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/AppStoreGraphics.zh.json -------------------------------------------------------------------------------- /localization/PlayStoreDescription.de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreDescription.de.txt -------------------------------------------------------------------------------- /localization/PlayStoreDescription.es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreDescription.es.txt -------------------------------------------------------------------------------- /localization/PlayStoreDescription.esMX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreDescription.esMX.txt -------------------------------------------------------------------------------- /localization/PlayStoreDescription.fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreDescription.fr.txt -------------------------------------------------------------------------------- /localization/PlayStoreDescription.it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreDescription.it.txt -------------------------------------------------------------------------------- /localization/PlayStoreDescription.ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreDescription.ja.txt -------------------------------------------------------------------------------- /localization/PlayStoreDescription.kaa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreDescription.kaa.txt -------------------------------------------------------------------------------- /localization/PlayStoreDescription.ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreDescription.ko.txt -------------------------------------------------------------------------------- /localization/PlayStoreDescription.pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreDescription.pt.txt -------------------------------------------------------------------------------- /localization/PlayStoreDescription.ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreDescription.ru.txt -------------------------------------------------------------------------------- /localization/PlayStoreDescription.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreDescription.txt -------------------------------------------------------------------------------- /localization/PlayStoreDescription.vi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreDescription.vi.txt -------------------------------------------------------------------------------- /localization/PlayStoreDescription.zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreDescription.zh.txt -------------------------------------------------------------------------------- /localization/PlayStoreGraphics.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreGraphics.de.json -------------------------------------------------------------------------------- /localization/PlayStoreGraphics.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreGraphics.es.json -------------------------------------------------------------------------------- /localization/PlayStoreGraphics.esMX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreGraphics.esMX.json -------------------------------------------------------------------------------- /localization/PlayStoreGraphics.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreGraphics.fr.json -------------------------------------------------------------------------------- /localization/PlayStoreGraphics.it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreGraphics.it.json -------------------------------------------------------------------------------- /localization/PlayStoreGraphics.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreGraphics.ja.json -------------------------------------------------------------------------------- /localization/PlayStoreGraphics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreGraphics.json -------------------------------------------------------------------------------- /localization/PlayStoreGraphics.kaa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreGraphics.kaa.json -------------------------------------------------------------------------------- /localization/PlayStoreGraphics.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreGraphics.ko.json -------------------------------------------------------------------------------- /localization/PlayStoreGraphics.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreGraphics.pt.json -------------------------------------------------------------------------------- /localization/PlayStoreGraphics.ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreGraphics.ru.json -------------------------------------------------------------------------------- /localization/PlayStoreGraphics.vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreGraphics.vi.json -------------------------------------------------------------------------------- /localization/PlayStoreGraphics.zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/PlayStoreGraphics.zh.json -------------------------------------------------------------------------------- /localization/ReleaseNotes.de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/ReleaseNotes.de.txt -------------------------------------------------------------------------------- /localization/ReleaseNotes.es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/ReleaseNotes.es.txt -------------------------------------------------------------------------------- /localization/ReleaseNotes.fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/ReleaseNotes.fr.txt -------------------------------------------------------------------------------- /localization/ReleaseNotes.it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/ReleaseNotes.it.txt -------------------------------------------------------------------------------- /localization/ReleaseNotes.ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/ReleaseNotes.ja.txt -------------------------------------------------------------------------------- /localization/ReleaseNotes.ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/ReleaseNotes.ko.txt -------------------------------------------------------------------------------- /localization/ReleaseNotes.pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/ReleaseNotes.pt.txt -------------------------------------------------------------------------------- /localization/ReleaseNotes.ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/ReleaseNotes.ru.txt -------------------------------------------------------------------------------- /localization/ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/ReleaseNotes.txt -------------------------------------------------------------------------------- /localization/ReleaseNotes.vi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/ReleaseNotes.vi.txt -------------------------------------------------------------------------------- /localization/ReleaseNotes.zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/localization/ReleaseNotes.zh.txt -------------------------------------------------------------------------------- /maestro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro.sh -------------------------------------------------------------------------------- /maestro/03-login/C184036-ip2fa-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/03-login/C184036-ip2fa-01.yaml -------------------------------------------------------------------------------- /maestro/03-login/C190284-2fa-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/03-login/C190284-2fa-01.yaml -------------------------------------------------------------------------------- /maestro/03-login/C999002-pin-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/03-login/C999002-pin-login.yaml -------------------------------------------------------------------------------- /maestro/10-assets/C184035-utxo-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/10-assets/C184035-utxo-01.yaml -------------------------------------------------------------------------------- /maestro/10-assets/C209290-xmr-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/10-assets/C209290-xmr-01.yaml -------------------------------------------------------------------------------- /maestro/10-assets/C999000-tx-details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/10-assets/C999000-tx-details.yaml -------------------------------------------------------------------------------- /maestro/11-markets/C202732-markets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/11-markets/C202732-markets.yaml -------------------------------------------------------------------------------- /maestro/99-misc/C999001-receive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/99-misc/C999001-receive.yaml -------------------------------------------------------------------------------- /maestro/common/clear-app-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/common/clear-app-data.yaml -------------------------------------------------------------------------------- /maestro/common/close-modal-hack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/common/close-modal-hack.yaml -------------------------------------------------------------------------------- /maestro/common/create-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/common/create-account.yaml -------------------------------------------------------------------------------- /maestro/common/delete-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/common/delete-account.yaml -------------------------------------------------------------------------------- /maestro/common/dismiss-modals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/common/dismiss-modals.yaml -------------------------------------------------------------------------------- /maestro/common/generate-password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/common/generate-password.yaml -------------------------------------------------------------------------------- /maestro/common/launch-cleared.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/common/launch-cleared.yaml -------------------------------------------------------------------------------- /maestro/common/launch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/common/launch.yaml -------------------------------------------------------------------------------- /maestro/common/login-password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/common/login-password.yaml -------------------------------------------------------------------------------- /maestro/common/password-requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/common/password-requirements.yaml -------------------------------------------------------------------------------- /maestro/common/relogin-pin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/common/relogin-pin.yaml -------------------------------------------------------------------------------- /maestro/common/test-password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/maestro/common/test-password.yaml -------------------------------------------------------------------------------- /maestro/config.yaml: -------------------------------------------------------------------------------- 1 | flows: 2 | - "*-*/*" 3 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/package.json -------------------------------------------------------------------------------- /patches/@ethersproject+shims+5.6.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/patches/@ethersproject+shims+5.6.0.patch -------------------------------------------------------------------------------- /patches/react-native+0.79.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/patches/react-native+0.79.2.patch -------------------------------------------------------------------------------- /patches/react-native-fs+2.20.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/patches/react-native-fs+2.20.0.patch -------------------------------------------------------------------------------- /patches/react-native-webview+13.15.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/patches/react-native-webview+13.15.0.patch -------------------------------------------------------------------------------- /patches/readable-stream+3.6.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/patches/readable-stream+3.6.2.patch -------------------------------------------------------------------------------- /patches/rn-id-blurview+1.2.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/patches/rn-id-blurview+1.2.1.patch -------------------------------------------------------------------------------- /patches/typechain+8.3.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/patches/typechain+8.3.2.patch -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/react-native.config.js -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /scripts/cleanDirectories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/cleanDirectories.ts -------------------------------------------------------------------------------- /scripts/cleaners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/cleaners.ts -------------------------------------------------------------------------------- /scripts/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/configure.ts -------------------------------------------------------------------------------- /scripts/createAndroidKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/createAndroidKeys.ts -------------------------------------------------------------------------------- /scripts/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/deploy.ts -------------------------------------------------------------------------------- /scripts/eslint-plugin-edge/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/eslint-plugin-edge/index.mjs -------------------------------------------------------------------------------- /scripts/find-unused-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/find-unused-strings.sh -------------------------------------------------------------------------------- /scripts/gitVersionFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/gitVersionFile.ts -------------------------------------------------------------------------------- /scripts/hack-travis.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/hack-travis.mjs -------------------------------------------------------------------------------- /scripts/localizeLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/localizeLanguage.ts -------------------------------------------------------------------------------- /scripts/loggingServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/loggingServer.ts -------------------------------------------------------------------------------- /scripts/makeNativeHeaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/makeNativeHeaders.ts -------------------------------------------------------------------------------- /scripts/patchFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/patchFiles.ts -------------------------------------------------------------------------------- /scripts/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/prepare.sh -------------------------------------------------------------------------------- /scripts/r3-hack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/r3-hack/README.md -------------------------------------------------------------------------------- /scripts/r3-hack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/r3-hack/index.js -------------------------------------------------------------------------------- /scripts/r3-hack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/r3-hack/package.json -------------------------------------------------------------------------------- /scripts/runMaestro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/runMaestro.ts -------------------------------------------------------------------------------- /scripts/secretFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/secretFiles.ts -------------------------------------------------------------------------------- /scripts/stringifyBridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/stringifyBridge.ts -------------------------------------------------------------------------------- /scripts/themeParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/themeParser.ts -------------------------------------------------------------------------------- /scripts/themeServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/themeServer.ts -------------------------------------------------------------------------------- /scripts/updateEslintWarnings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/updateEslintWarnings.ts -------------------------------------------------------------------------------- /scripts/updateVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/scripts/updateVersion.ts -------------------------------------------------------------------------------- /src/__tests__/DeepLink.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/DeepLink.test.ts -------------------------------------------------------------------------------- /src/__tests__/GuiPlugins.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/GuiPlugins.test.ts -------------------------------------------------------------------------------- /src/__tests__/amountQuotePlugin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/amountQuotePlugin.test.ts -------------------------------------------------------------------------------- /src/__tests__/cleanImportText.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/cleanImportText.test.ts -------------------------------------------------------------------------------- /src/__tests__/components/Buttons.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/components/Buttons.test.tsx -------------------------------------------------------------------------------- /src/__tests__/components/Card.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/components/Card.test.tsx -------------------------------------------------------------------------------- /src/__tests__/components/EdgeText.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/components/EdgeText.test.tsx -------------------------------------------------------------------------------- /src/__tests__/components/MenuTabs.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/components/MenuTabs.test.tsx -------------------------------------------------------------------------------- /src/__tests__/components/Row.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/components/Row.test.tsx -------------------------------------------------------------------------------- /src/__tests__/displayTime.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/displayTime.test.ts -------------------------------------------------------------------------------- /src/__tests__/edgeProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/edgeProvider.test.ts -------------------------------------------------------------------------------- /src/__tests__/exchangeRates.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/exchangeRates.test.ts -------------------------------------------------------------------------------- /src/__tests__/exportCsvResult.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/exportCsvResult.csv -------------------------------------------------------------------------------- /src/__tests__/exportQboResult.qbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/exportQboResult.qbo -------------------------------------------------------------------------------- /src/__tests__/intl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/intl.test.ts -------------------------------------------------------------------------------- /src/__tests__/matchJson.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/matchJson.test.ts -------------------------------------------------------------------------------- /src/__tests__/modals/AddressModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/modals/AddressModal.test.tsx -------------------------------------------------------------------------------- /src/__tests__/modals/DateModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/modals/DateModal.test.tsx -------------------------------------------------------------------------------- /src/__tests__/modals/HelpModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/modals/HelpModal.test.tsx -------------------------------------------------------------------------------- /src/__tests__/modals/LogsModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/modals/LogsModal.test.tsx -------------------------------------------------------------------------------- /src/__tests__/reducers/RootReducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/reducers/RootReducer.test.ts -------------------------------------------------------------------------------- /src/__tests__/scenes/RequestScene.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/scenes/RequestScene.test.tsx -------------------------------------------------------------------------------- /src/__tests__/spendingLimits.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/spendingLimits.test.ts -------------------------------------------------------------------------------- /src/__tests__/toPercentString.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/toPercentString.test.ts -------------------------------------------------------------------------------- /src/__tests__/util.crypto.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/util.crypto.test.ts -------------------------------------------------------------------------------- /src/__tests__/util/vault/edgeVault.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/util/vault/edgeVault.test.ts -------------------------------------------------------------------------------- /src/__tests__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/utils.test.ts -------------------------------------------------------------------------------- /src/__tests__/utils/FioConstants.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/utils/FioConstants.test.ts -------------------------------------------------------------------------------- /src/__tests__/utils/intl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/__tests__/utils/intl.test.ts -------------------------------------------------------------------------------- /src/actions/AccountActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/AccountActions.tsx -------------------------------------------------------------------------------- /src/actions/AccountReferralActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/AccountReferralActions.ts -------------------------------------------------------------------------------- /src/actions/BackupModalActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/BackupModalActions.tsx -------------------------------------------------------------------------------- /src/actions/CategoriesActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/CategoriesActions.ts -------------------------------------------------------------------------------- /src/actions/CountryCodeActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/CountryCodeActions.ts -------------------------------------------------------------------------------- /src/actions/CountryListActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/CountryListActions.tsx -------------------------------------------------------------------------------- /src/actions/CreateWalletActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/CreateWalletActions.tsx -------------------------------------------------------------------------------- /src/actions/DeepLinkingActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/DeepLinkingActions.tsx -------------------------------------------------------------------------------- /src/actions/DeleteWalletModalActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/DeleteWalletModalActions.tsx -------------------------------------------------------------------------------- /src/actions/DeviceReferralActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/DeviceReferralActions.ts -------------------------------------------------------------------------------- /src/actions/DeviceSettingsActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/DeviceSettingsActions.ts -------------------------------------------------------------------------------- /src/actions/ExchangeInfoActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/ExchangeInfoActions.ts -------------------------------------------------------------------------------- /src/actions/ExchangeRateActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/ExchangeRateActions.ts -------------------------------------------------------------------------------- /src/actions/FioActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/FioActions.tsx -------------------------------------------------------------------------------- /src/actions/FioAddressActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/FioAddressActions.ts -------------------------------------------------------------------------------- /src/actions/FirstOpenActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/FirstOpenActions.tsx -------------------------------------------------------------------------------- /src/actions/LoanWelcomeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/LoanWelcomeActions.tsx -------------------------------------------------------------------------------- /src/actions/LocalSettingsActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/LocalSettingsActions.ts -------------------------------------------------------------------------------- /src/actions/LogActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/LogActions.tsx -------------------------------------------------------------------------------- /src/actions/LoginActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/LoginActions.tsx -------------------------------------------------------------------------------- /src/actions/NotificationActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/NotificationActions.ts -------------------------------------------------------------------------------- /src/actions/PaymentProtoActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/PaymentProtoActions.tsx -------------------------------------------------------------------------------- /src/actions/PluginActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/PluginActions.tsx -------------------------------------------------------------------------------- /src/actions/ReceiveDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/ReceiveDropdown.tsx -------------------------------------------------------------------------------- /src/actions/RecoveryReminderActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/RecoveryReminderActions.tsx -------------------------------------------------------------------------------- /src/actions/RequestReviewActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/RequestReviewActions.tsx -------------------------------------------------------------------------------- /src/actions/ResyncWalletModalActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/ResyncWalletModalActions.tsx -------------------------------------------------------------------------------- /src/actions/ScamWarningActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/ScamWarningActions.tsx -------------------------------------------------------------------------------- /src/actions/ScanActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/ScanActions.tsx -------------------------------------------------------------------------------- /src/actions/SettingsActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/SettingsActions.tsx -------------------------------------------------------------------------------- /src/actions/SoundActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/SoundActions.ts -------------------------------------------------------------------------------- /src/actions/TokenTermsActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/TokenTermsActions.tsx -------------------------------------------------------------------------------- /src/actions/TransactionExportActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/TransactionExportActions.tsx -------------------------------------------------------------------------------- /src/actions/WalletActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/WalletActions.tsx -------------------------------------------------------------------------------- /src/actions/WalletListActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/WalletListActions.tsx -------------------------------------------------------------------------------- /src/actions/WalletListMenuActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/WalletListMenuActions.tsx -------------------------------------------------------------------------------- /src/actions/scene/StakingActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/actions/scene/StakingActions.tsx -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/assets/images/MenuButton/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/MenuButton/menu.png -------------------------------------------------------------------------------- /src/assets/images/MenuButton/menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/MenuButton/menu@2x.png -------------------------------------------------------------------------------- /src/assets/images/MenuButton/menu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/MenuButton/menu@3x.png -------------------------------------------------------------------------------- /src/assets/images/account-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/account-icon.svg -------------------------------------------------------------------------------- /src/assets/images/backup-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/backup-hero.png -------------------------------------------------------------------------------- /src/assets/images/bitcoin-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/bitcoin-icon.svg -------------------------------------------------------------------------------- /src/assets/images/buy-sell-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/buy-sell-icon.svg -------------------------------------------------------------------------------- /src/assets/images/compromisedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/compromisedIcon.png -------------------------------------------------------------------------------- /src/assets/images/create-wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/create-wallet.svg -------------------------------------------------------------------------------- /src/assets/images/currency-toggle-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/currency-toggle-icon.svg -------------------------------------------------------------------------------- /src/assets/images/custom-asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/custom-asset.png -------------------------------------------------------------------------------- /src/assets/images/delete-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/delete-icon.svg -------------------------------------------------------------------------------- /src/assets/images/details_fioAddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/details_fioAddress.png -------------------------------------------------------------------------------- /src/assets/images/edgeLogo/Edge_logo_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/edgeLogo/Edge_logo_L.png -------------------------------------------------------------------------------- /src/assets/images/edgeLogo/Edge_logo_S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/edgeLogo/Edge_logo_S.png -------------------------------------------------------------------------------- /src/assets/images/ens_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/ens_logo.png -------------------------------------------------------------------------------- /src/assets/images/export-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/export-icon.svg -------------------------------------------------------------------------------- /src/assets/images/fio/fio_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/fio/fio_logo.png -------------------------------------------------------------------------------- /src/assets/images/fio/fio_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/fio/fio_logo@2x.png -------------------------------------------------------------------------------- /src/assets/images/fio/fio_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/fio/fio_logo@3x.png -------------------------------------------------------------------------------- /src/assets/images/fio/fio_sent_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/fio/fio_sent_request.png -------------------------------------------------------------------------------- /src/assets/images/fio_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/fio_logo.png -------------------------------------------------------------------------------- /src/assets/images/gettingStarted/usp0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/gettingStarted/usp0.png -------------------------------------------------------------------------------- /src/assets/images/gettingStarted/usp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/gettingStarted/usp1.png -------------------------------------------------------------------------------- /src/assets/images/gettingStarted/usp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/gettingStarted/usp2.png -------------------------------------------------------------------------------- /src/assets/images/gettingStarted/usp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/gettingStarted/usp3.png -------------------------------------------------------------------------------- /src/assets/images/guiPlugins/visaBrand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/guiPlugins/visaBrand.png -------------------------------------------------------------------------------- /src/assets/images/import-key-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/import-key-icon.svg -------------------------------------------------------------------------------- /src/assets/images/list_fioAddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/list_fioAddress.png -------------------------------------------------------------------------------- /src/assets/images/list_fioAddress@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/list_fioAddress@2x.png -------------------------------------------------------------------------------- /src/assets/images/logout-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/logout-icon.svg -------------------------------------------------------------------------------- /src/assets/images/otp/OTP-badge_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/otp/OTP-badge_sm.png -------------------------------------------------------------------------------- /src/assets/images/otp/OTP-badge_sm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/otp/OTP-badge_sm@2x.png -------------------------------------------------------------------------------- /src/assets/images/otp/OTP-badge_sm@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/otp/OTP-badge_sm@3x.png -------------------------------------------------------------------------------- /src/assets/images/plugins-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/plugins-icon.svg -------------------------------------------------------------------------------- /src/assets/images/rename-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/rename-icon.svg -------------------------------------------------------------------------------- /src/assets/images/request-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/request-icon.svg -------------------------------------------------------------------------------- /src/assets/images/settings-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/settings-icon.svg -------------------------------------------------------------------------------- /src/assets/images/shapeShiftLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/shapeShiftLogo.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/accounts.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/accounts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/accounts@2x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/accounts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/accounts@3x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/buysell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/buysell.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/buysell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/buysell@2x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/buysell@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/buysell@3x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/exchange.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/exchange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/exchange@2x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/exchange@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/exchange@3x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/fio-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/fio-address.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/fioaddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/fioaddress.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/fiorequests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/fiorequests.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/logout.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/logout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/logout@2x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/logout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/logout@3x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/receive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/receive.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/receive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/receive@2x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/receive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/receive@3x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/scan.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/scan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/scan@2x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/scan@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/scan@3x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/sell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/sell.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/sell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/sell@2x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/sell@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/sell@3x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/settings.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/settings@2x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/settings@3x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/share.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/share@2x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/share@3x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/sweep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/sweep.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/sweep@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/sweep@2x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/sweep@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/sweep@3x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/terms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/terms.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/terms@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/terms@2x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/terms@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/terms@3x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/wallets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/wallets.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/wallets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/wallets@2x.png -------------------------------------------------------------------------------- /src/assets/images/sidenav/wallets@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/sidenav/wallets@3x.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/buy.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/buy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/buy@2x.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/buy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/buy@3x.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/buy_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/buy_selected.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/exchange.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/exchange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/exchange@2x.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/exchange@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/exchange@3x.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/more.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/more@2x.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/more@3x.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/more_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/more_selected.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/sell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/sell.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/sell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/sell@2x.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/sell@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/sell@3x.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/sell_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/sell_selected.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/wallets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/wallets.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/wallets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/wallets@2x.png -------------------------------------------------------------------------------- /src/assets/images/tabbar/wallets@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/tabbar/wallets@3x.png -------------------------------------------------------------------------------- /src/assets/images/transactions-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/transactions-icon.svg -------------------------------------------------------------------------------- /src/assets/images/wallet-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/wallet-icon.svg -------------------------------------------------------------------------------- /src/assets/images/walletconnect-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/images/walletconnect-logo.png -------------------------------------------------------------------------------- /src/assets/vector/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/vector/config.json -------------------------------------------------------------------------------- /src/assets/vector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/assets/vector/index.ts -------------------------------------------------------------------------------- /src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/App.tsx -------------------------------------------------------------------------------- /src/components/FioAddress/FioName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/FioAddress/FioName.tsx -------------------------------------------------------------------------------- /src/components/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/Main.tsx -------------------------------------------------------------------------------- /src/components/buttons/ButtonsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/buttons/ButtonsView.tsx -------------------------------------------------------------------------------- /src/components/buttons/EdgeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/buttons/EdgeButton.tsx -------------------------------------------------------------------------------- /src/components/buttons/EdgeSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/buttons/EdgeSwitch.tsx -------------------------------------------------------------------------------- /src/components/buttons/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/buttons/IconButton.tsx -------------------------------------------------------------------------------- /src/components/buttons/KavButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/buttons/KavButtons.tsx -------------------------------------------------------------------------------- /src/components/buttons/MinimalButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/buttons/MinimalButton.tsx -------------------------------------------------------------------------------- /src/components/buttons/ModalButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/buttons/ModalButtons.tsx -------------------------------------------------------------------------------- /src/components/buttons/PillButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/buttons/PillButton.tsx -------------------------------------------------------------------------------- /src/components/buttons/SceneButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/buttons/SceneButtons.tsx -------------------------------------------------------------------------------- /src/components/cards/AlertCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/AlertCard.tsx -------------------------------------------------------------------------------- /src/components/cards/BalanceCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/BalanceCard.tsx -------------------------------------------------------------------------------- /src/components/cards/ContentPostCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/ContentPostCard.tsx -------------------------------------------------------------------------------- /src/components/cards/EarnOptionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/EarnOptionCard.tsx -------------------------------------------------------------------------------- /src/components/cards/EdgeCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/EdgeCard.tsx -------------------------------------------------------------------------------- /src/components/cards/ErrorCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/ErrorCard.tsx -------------------------------------------------------------------------------- /src/components/cards/HomeTileCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/HomeTileCard.tsx -------------------------------------------------------------------------------- /src/components/cards/IconMessageCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/IconMessageCard.tsx -------------------------------------------------------------------------------- /src/components/cards/InfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/InfoCard.tsx -------------------------------------------------------------------------------- /src/components/cards/InfoCardCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/InfoCardCarousel.tsx -------------------------------------------------------------------------------- /src/components/cards/LoanSummaryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/LoanSummaryCard.tsx -------------------------------------------------------------------------------- /src/components/cards/MarketsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/MarketsCard.tsx -------------------------------------------------------------------------------- /src/components/cards/PaymentOptionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/PaymentOptionCard.tsx -------------------------------------------------------------------------------- /src/components/cards/PoweredByCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/PoweredByCard.tsx -------------------------------------------------------------------------------- /src/components/cards/StakingOptionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/StakingOptionCard.tsx -------------------------------------------------------------------------------- /src/components/cards/SupportCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/SupportCard.tsx -------------------------------------------------------------------------------- /src/components/cards/SwapDetailsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/SwapDetailsCard.tsx -------------------------------------------------------------------------------- /src/components/cards/TappableCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/TappableCard.tsx -------------------------------------------------------------------------------- /src/components/cards/VisaCardCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/VisaCardCard.tsx -------------------------------------------------------------------------------- /src/components/cards/WalletRestoreCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/WalletRestoreCard.tsx -------------------------------------------------------------------------------- /src/components/cards/WarningCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/cards/WarningCard.tsx -------------------------------------------------------------------------------- /src/components/charts/SwipeChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/charts/SwipeChart.tsx -------------------------------------------------------------------------------- /src/components/common/AirshipDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/common/AirshipDropdown.tsx -------------------------------------------------------------------------------- /src/components/common/AirshipToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/common/AirshipToast.tsx -------------------------------------------------------------------------------- /src/components/common/AnimatedNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/common/AnimatedNumber.tsx -------------------------------------------------------------------------------- /src/components/common/BlurBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/common/BlurBackground.tsx -------------------------------------------------------------------------------- /src/components/common/CrossFade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/common/CrossFade.tsx -------------------------------------------------------------------------------- /src/components/common/DividerLineUi4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/common/DividerLineUi4.tsx -------------------------------------------------------------------------------- /src/components/common/DotsBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/common/DotsBackground.tsx -------------------------------------------------------------------------------- /src/components/common/EdgeAnim.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/common/EdgeAnim.tsx -------------------------------------------------------------------------------- /src/components/common/EdgeCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/common/EdgeCarousel.tsx -------------------------------------------------------------------------------- /src/components/common/ExchangeRate2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/common/ExchangeRate2.tsx -------------------------------------------------------------------------------- /src/components/common/ExpandableList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/common/ExpandableList.tsx -------------------------------------------------------------------------------- /src/components/common/Margins.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_MARGIN_REM = 0.5 2 | -------------------------------------------------------------------------------- /src/components/common/QrPeephole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/common/QrPeephole.tsx -------------------------------------------------------------------------------- /src/components/common/SceneWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/common/SceneWrapper.tsx -------------------------------------------------------------------------------- /src/components/common/SectionHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/common/SectionHeader.tsx -------------------------------------------------------------------------------- /src/components/common/TextDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/common/TextDropdown.tsx -------------------------------------------------------------------------------- /src/components/hoc/IfLoggedIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/hoc/IfLoggedIn.tsx -------------------------------------------------------------------------------- /src/components/hoc/maybeComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/hoc/maybeComponent.tsx -------------------------------------------------------------------------------- /src/components/hoc/styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/hoc/styled.tsx -------------------------------------------------------------------------------- /src/components/hoc/withLoanAccount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/hoc/withLoanAccount.tsx -------------------------------------------------------------------------------- /src/components/hoc/withWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/hoc/withWallet.tsx -------------------------------------------------------------------------------- /src/components/icons/BestRateBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/icons/BestRateBadge.tsx -------------------------------------------------------------------------------- /src/components/icons/CryptoIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/icons/CryptoIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/FiatIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/icons/FiatIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/IconBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/icons/IconBadge.tsx -------------------------------------------------------------------------------- /src/components/icons/PairIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/icons/PairIcons.tsx -------------------------------------------------------------------------------- /src/components/icons/SwipeableRowIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/icons/SwipeableRowIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/ThemedIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/icons/ThemedIcons.tsx -------------------------------------------------------------------------------- /src/components/icons/WalletIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/icons/WalletIcon.tsx -------------------------------------------------------------------------------- /src/components/layout/Peek.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/layout/Peek.tsx -------------------------------------------------------------------------------- /src/components/layout/SceneContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/layout/SceneContainer.tsx -------------------------------------------------------------------------------- /src/components/layout/SectionView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/layout/SectionView.tsx -------------------------------------------------------------------------------- /src/components/layout/Space.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/layout/Space.tsx -------------------------------------------------------------------------------- /src/components/modals/AddressModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/AddressModal.tsx -------------------------------------------------------------------------------- /src/components/modals/AutoLogoutModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/AutoLogoutModal.tsx -------------------------------------------------------------------------------- /src/components/modals/BackupModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/BackupModal.tsx -------------------------------------------------------------------------------- /src/components/modals/ButtonsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/ButtonsModal.tsx -------------------------------------------------------------------------------- /src/components/modals/CardListModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/CardListModal.tsx -------------------------------------------------------------------------------- /src/components/modals/CategoryModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/CategoryModal.tsx -------------------------------------------------------------------------------- /src/components/modals/ContactListModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/ContactListModal.tsx -------------------------------------------------------------------------------- /src/components/modals/CountryListModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/CountryListModal.tsx -------------------------------------------------------------------------------- /src/components/modals/DateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/DateModal.tsx -------------------------------------------------------------------------------- /src/components/modals/EdgeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/EdgeModal.tsx -------------------------------------------------------------------------------- /src/components/modals/FiatListModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/FiatListModal.tsx -------------------------------------------------------------------------------- /src/components/modals/FioExpiredModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/FioExpiredModal.tsx -------------------------------------------------------------------------------- /src/components/modals/FlipInputModal2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/FlipInputModal2.tsx -------------------------------------------------------------------------------- /src/components/modals/FundAccountModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/FundAccountModal.tsx -------------------------------------------------------------------------------- /src/components/modals/GradientFadeout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/GradientFadeout.tsx -------------------------------------------------------------------------------- /src/components/modals/HelpModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/HelpModal.tsx -------------------------------------------------------------------------------- /src/components/modals/ListModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/ListModal.tsx -------------------------------------------------------------------------------- /src/components/modals/LoanWelcomeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/LoanWelcomeModal.tsx -------------------------------------------------------------------------------- /src/components/modals/LogsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/LogsModal.tsx -------------------------------------------------------------------------------- /src/components/modals/PendingTxModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/PendingTxModal.tsx -------------------------------------------------------------------------------- /src/components/modals/QrModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/QrModal.tsx -------------------------------------------------------------------------------- /src/components/modals/RadioListModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/RadioListModal.tsx -------------------------------------------------------------------------------- /src/components/modals/RawTextModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/RawTextModal.tsx -------------------------------------------------------------------------------- /src/components/modals/ScamWarningModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/ScamWarningModal.tsx -------------------------------------------------------------------------------- /src/components/modals/ScanModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/ScanModal.tsx -------------------------------------------------------------------------------- /src/components/modals/SurveyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/SurveyModal.tsx -------------------------------------------------------------------------------- /src/components/modals/TextInputModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/TextInputModal.tsx -------------------------------------------------------------------------------- /src/components/modals/TransferModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/TransferModal.tsx -------------------------------------------------------------------------------- /src/components/modals/WalletListModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/WalletListModal.tsx -------------------------------------------------------------------------------- /src/components/modals/WebViewModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/modals/WebViewModal.tsx -------------------------------------------------------------------------------- /src/components/navigation/BackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/navigation/BackButton.tsx -------------------------------------------------------------------------------- /src/components/navigation/EdgeHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/navigation/EdgeHeader.tsx -------------------------------------------------------------------------------- /src/components/navigation/HeaderTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/navigation/HeaderTitle.tsx -------------------------------------------------------------------------------- /src/components/rows/CoinRankRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/rows/CoinRankRow.tsx -------------------------------------------------------------------------------- /src/components/rows/CurrencyRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/rows/CurrencyRow.tsx -------------------------------------------------------------------------------- /src/components/rows/CustomAssetRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/rows/CustomAssetRow.tsx -------------------------------------------------------------------------------- /src/components/rows/EdgeRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/rows/EdgeRow.tsx -------------------------------------------------------------------------------- /src/components/rows/IconDataRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/rows/IconDataRow.tsx -------------------------------------------------------------------------------- /src/components/rows/PaymentMethodRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/rows/PaymentMethodRow.tsx -------------------------------------------------------------------------------- /src/components/rows/SwapProviderRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/rows/SwapProviderRow.tsx -------------------------------------------------------------------------------- /src/components/rows/TxCryptoAmountRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/rows/TxCryptoAmountRow.tsx -------------------------------------------------------------------------------- /src/components/scenes/ChangePinScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/ChangePinScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/CoinRankingScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/CoinRankingScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/ConfirmScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/ConfirmScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/CrashScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/CrashScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/DevTestScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/DevTestScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/DuressPinScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/DuressPinScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/EdgeLoginScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/EdgeLoginScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/EditTokenScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/EditTokenScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/ExtraTabScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/ExtraTabScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/FormScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/FormScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/HomeScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/HomeScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/LoadingScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/LoadingScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/LoginScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/LoginScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/OtpRepairScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/OtpRepairScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/OtpSettingsScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/OtpSettingsScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/RampCreateScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/RampCreateScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/RampKycFormScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/RampKycFormScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/RampPendingScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/RampPendingScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/RequestScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/RequestScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/SendScene2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/SendScene2.tsx -------------------------------------------------------------------------------- /src/components/scenes/SettingsScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/SettingsScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/SwapCreateScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/SwapCreateScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/SwapSuccessScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/SwapSuccessScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/WalletListScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/WalletListScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/WcConnectScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/WcConnectScene.tsx -------------------------------------------------------------------------------- /src/components/scenes/WebViewScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/scenes/WebViewScene.tsx -------------------------------------------------------------------------------- /src/components/services/AutoLogout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/services/AutoLogout.ts -------------------------------------------------------------------------------- /src/components/services/ContactsLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/services/ContactsLoader.ts -------------------------------------------------------------------------------- /src/components/services/FioService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/services/FioService.ts -------------------------------------------------------------------------------- /src/components/services/NetworkActivity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/services/NetworkActivity.ts -------------------------------------------------------------------------------- /src/components/services/Providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/services/Providers.tsx -------------------------------------------------------------------------------- /src/components/services/Services.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/services/Services.tsx -------------------------------------------------------------------------------- /src/components/services/ThemeContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/services/ThemeContext.ts -------------------------------------------------------------------------------- /src/components/services/WalletLifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/services/WalletLifecycle.ts -------------------------------------------------------------------------------- /src/components/settings/SettingsRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/settings/SettingsRow.tsx -------------------------------------------------------------------------------- /src/components/text/AssetChangeText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/text/AssetChangeText.tsx -------------------------------------------------------------------------------- /src/components/text/CryptoText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/text/CryptoText.tsx -------------------------------------------------------------------------------- /src/components/text/FiatText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/text/FiatText.tsx -------------------------------------------------------------------------------- /src/components/text/SectionHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/text/SectionHeading.tsx -------------------------------------------------------------------------------- /src/components/text/TitleText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/text/TitleText.tsx -------------------------------------------------------------------------------- /src/components/text/UnscaledText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/text/UnscaledText.tsx -------------------------------------------------------------------------------- /src/components/text/UnscaledTextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/text/UnscaledTextInput.tsx -------------------------------------------------------------------------------- /src/components/themed/AddressQr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/AddressQr.tsx -------------------------------------------------------------------------------- /src/components/themed/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/Alert.tsx -------------------------------------------------------------------------------- /src/components/themed/BuyCrypto.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/BuyCrypto.tsx -------------------------------------------------------------------------------- /src/components/themed/CarouselDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/CarouselDots.tsx -------------------------------------------------------------------------------- /src/components/themed/DividerLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/DividerLine.tsx -------------------------------------------------------------------------------- /src/components/themed/EdgeText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/EdgeText.tsx -------------------------------------------------------------------------------- /src/components/themed/ExplorerCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/ExplorerCard.tsx -------------------------------------------------------------------------------- /src/components/themed/FilledTextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/FilledTextInput.tsx -------------------------------------------------------------------------------- /src/components/themed/FioRequestRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/FioRequestRow.tsx -------------------------------------------------------------------------------- /src/components/themed/FlipInput2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/FlipInput2.tsx -------------------------------------------------------------------------------- /src/components/themed/LineTextDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/LineTextDivider.tsx -------------------------------------------------------------------------------- /src/components/themed/MainButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/MainButton.tsx -------------------------------------------------------------------------------- /src/components/themed/ManageTokensRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/ManageTokensRow.tsx -------------------------------------------------------------------------------- /src/components/themed/MenuTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/MenuTabs.tsx -------------------------------------------------------------------------------- /src/components/themed/ModalParts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/ModalParts.tsx -------------------------------------------------------------------------------- /src/components/themed/PinDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/PinDots.tsx -------------------------------------------------------------------------------- /src/components/themed/QrCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/QrCarousel.tsx -------------------------------------------------------------------------------- /src/components/themed/QrCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/QrCode.tsx -------------------------------------------------------------------------------- /src/components/themed/SafeSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/SafeSlider.tsx -------------------------------------------------------------------------------- /src/components/themed/SceneHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/SceneHeader.tsx -------------------------------------------------------------------------------- /src/components/themed/SceneHeaderUi4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/SceneHeaderUi4.tsx -------------------------------------------------------------------------------- /src/components/themed/SearchFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/SearchFooter.tsx -------------------------------------------------------------------------------- /src/components/themed/SelectableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/SelectableRow.tsx -------------------------------------------------------------------------------- /src/components/themed/SendFromFioRows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/SendFromFioRows.tsx -------------------------------------------------------------------------------- /src/components/themed/ShareButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/ShareButtons.tsx -------------------------------------------------------------------------------- /src/components/themed/SideMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/SideMenu.tsx -------------------------------------------------------------------------------- /src/components/themed/SimpleTextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/SimpleTextInput.tsx -------------------------------------------------------------------------------- /src/components/themed/SwapInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/SwapInput.tsx -------------------------------------------------------------------------------- /src/components/themed/SwipeableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/SwipeableRow.tsx -------------------------------------------------------------------------------- /src/components/themed/ThemedButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/ThemedButtons.tsx -------------------------------------------------------------------------------- /src/components/themed/Thermostat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/Thermostat.tsx -------------------------------------------------------------------------------- /src/components/themed/Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/Title.tsx -------------------------------------------------------------------------------- /src/components/themed/VectorIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/VectorIcon.tsx -------------------------------------------------------------------------------- /src/components/themed/WalletList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/WalletList.tsx -------------------------------------------------------------------------------- /src/components/themed/WalletListHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/themed/WalletListHeader.tsx -------------------------------------------------------------------------------- /src/components/tiles/AddressTile2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/tiles/AddressTile2.tsx -------------------------------------------------------------------------------- /src/components/tiles/AprCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/tiles/AprCard.tsx -------------------------------------------------------------------------------- /src/components/tiles/CountdownTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/tiles/CountdownTile.tsx -------------------------------------------------------------------------------- /src/components/tiles/ErrorTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/tiles/ErrorTile.tsx -------------------------------------------------------------------------------- /src/components/tiles/FiatAmountTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/tiles/FiatAmountTile.tsx -------------------------------------------------------------------------------- /src/components/tiles/LtvRatioTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/tiles/LtvRatioTile.tsx -------------------------------------------------------------------------------- /src/components/tiles/NetworkFeeTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/components/tiles/NetworkFeeTile.tsx -------------------------------------------------------------------------------- /src/constants/CdnConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/constants/CdnConstants.ts -------------------------------------------------------------------------------- /src/constants/CountryConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/constants/CountryConstants.ts -------------------------------------------------------------------------------- /src/constants/FioConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/constants/FioConstants.ts -------------------------------------------------------------------------------- /src/constants/MerchantContacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/constants/MerchantContacts.ts -------------------------------------------------------------------------------- /src/constants/aaveConstants.ts: -------------------------------------------------------------------------------- 1 | export const AAVE_SUPPORT_ARTICLE_URL_1S = 'https://www.edge.app/aave/%s' 2 | -------------------------------------------------------------------------------- /src/constants/constantSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/constants/constantSettings.ts -------------------------------------------------------------------------------- /src/constants/plugins/GuiPlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/constants/plugins/GuiPlugins.ts -------------------------------------------------------------------------------- /src/constants/plugins/buyPluginList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/constants/plugins/buyPluginList.json -------------------------------------------------------------------------------- /src/constants/plugins/buyPluginListOverride.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /src/constants/plugins/sellPluginList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/constants/plugins/sellPluginList.json -------------------------------------------------------------------------------- /src/constants/plugins/sellPluginListOverride.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /src/constants/txActionConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/constants/txActionConstants.ts -------------------------------------------------------------------------------- /src/constants/valueConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/constants/valueConstants.ts -------------------------------------------------------------------------------- /src/controllers/action-queue/cleaners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/controllers/action-queue/cleaners.ts -------------------------------------------------------------------------------- /src/controllers/action-queue/display.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/controllers/action-queue/display.ts -------------------------------------------------------------------------------- /src/controllers/action-queue/push.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/controllers/action-queue/push.ts -------------------------------------------------------------------------------- /src/controllers/action-queue/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/controllers/action-queue/types.ts -------------------------------------------------------------------------------- /src/controllers/edgeProvider/injectThisInWebView.d.ts: -------------------------------------------------------------------------------- 1 | export declare const javascript: string 2 | -------------------------------------------------------------------------------- /src/controllers/loan-manager/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/controllers/loan-manager/store.ts -------------------------------------------------------------------------------- /src/controllers/loan-manager/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/controllers/loan-manager/types.ts -------------------------------------------------------------------------------- /src/declare-modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/declare-modules.d.ts -------------------------------------------------------------------------------- /src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/env.ts -------------------------------------------------------------------------------- /src/envConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/envConfig.ts -------------------------------------------------------------------------------- /src/experimentConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/experimentConfig.ts -------------------------------------------------------------------------------- /src/hooks/redux/useContactThumbnail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/redux/useContactThumbnail.ts -------------------------------------------------------------------------------- /src/hooks/swap/useSwapRequestOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/swap/useSwapRequestOptions.ts -------------------------------------------------------------------------------- /src/hooks/useAbortable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useAbortable.ts -------------------------------------------------------------------------------- /src/hooks/useAccountSyncRatio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useAccountSyncRatio.tsx -------------------------------------------------------------------------------- /src/hooks/useAllTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useAllTokens.ts -------------------------------------------------------------------------------- /src/hooks/useAsyncEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useAsyncEffect.ts -------------------------------------------------------------------------------- /src/hooks/useAsyncNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useAsyncNavigation.tsx -------------------------------------------------------------------------------- /src/hooks/useAsyncValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useAsyncValue.ts -------------------------------------------------------------------------------- /src/hooks/useBackButtonToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useBackButtonToast.tsx -------------------------------------------------------------------------------- /src/hooks/useBackEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useBackEvent.ts -------------------------------------------------------------------------------- /src/hooks/useCarouselGesture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useCarouselGesture.ts -------------------------------------------------------------------------------- /src/hooks/useCryptoText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useCryptoText.ts -------------------------------------------------------------------------------- /src/hooks/useDisplayDenom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useDisplayDenom.ts -------------------------------------------------------------------------------- /src/hooks/useExecutionContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useExecutionContext.ts -------------------------------------------------------------------------------- /src/hooks/useExperimentConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useExperimentConfig.ts -------------------------------------------------------------------------------- /src/hooks/useFiatText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useFiatText.ts -------------------------------------------------------------------------------- /src/hooks/useFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useFilter.ts -------------------------------------------------------------------------------- /src/hooks/useHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useHandler.ts -------------------------------------------------------------------------------- /src/hooks/useHistoricalRate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useHistoricalRate.ts -------------------------------------------------------------------------------- /src/hooks/useIconColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useIconColor.ts -------------------------------------------------------------------------------- /src/hooks/useIsAccountFunded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useIsAccountFunded.ts -------------------------------------------------------------------------------- /src/hooks/useIsAppForeground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useIsAppForeground.ts -------------------------------------------------------------------------------- /src/hooks/useLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useLayout.ts -------------------------------------------------------------------------------- /src/hooks/useLayoutOnce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useLayoutOnce.ts -------------------------------------------------------------------------------- /src/hooks/useLayoutStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useLayoutStyle.ts -------------------------------------------------------------------------------- /src/hooks/useMount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useMount.ts -------------------------------------------------------------------------------- /src/hooks/useNumericInputProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useNumericInputProps.ts -------------------------------------------------------------------------------- /src/hooks/usePendingPress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/usePendingPress.ts -------------------------------------------------------------------------------- /src/hooks/useRampLastCryptoSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useRampLastCryptoSelection.ts -------------------------------------------------------------------------------- /src/hooks/useRampPlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useRampPlugins.ts -------------------------------------------------------------------------------- /src/hooks/useRampQuotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useRampQuotes.ts -------------------------------------------------------------------------------- /src/hooks/useRefresher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useRefresher.ts -------------------------------------------------------------------------------- /src/hooks/useRowLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useRowLayout.ts -------------------------------------------------------------------------------- /src/hooks/useScrollToEnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useScrollToEnd.ts -------------------------------------------------------------------------------- /src/hooks/useSharedEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useSharedEvent.ts -------------------------------------------------------------------------------- /src/hooks/useSpaceStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useSpaceStyle.ts -------------------------------------------------------------------------------- /src/hooks/useSupportedPlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useSupportedPlugins.ts -------------------------------------------------------------------------------- /src/hooks/useTokenDisplayData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useTokenDisplayData.ts -------------------------------------------------------------------------------- /src/hooks/useTransactionList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useTransactionList.ts -------------------------------------------------------------------------------- /src/hooks/useUnmount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useUnmount.ts -------------------------------------------------------------------------------- /src/hooks/useUrlHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useUrlHandler.ts -------------------------------------------------------------------------------- /src/hooks/useWalletBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useWalletBalance.ts -------------------------------------------------------------------------------- /src/hooks/useWalletConnect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useWalletConnect.tsx -------------------------------------------------------------------------------- /src/hooks/useWalletName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useWalletName.ts -------------------------------------------------------------------------------- /src/hooks/useWalletsSubscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useWalletsSubscriber.ts -------------------------------------------------------------------------------- /src/hooks/useWatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useWatch.ts -------------------------------------------------------------------------------- /src/hooks/useWhyDidYouUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/hooks/useWhyDidYouUpdate.ts -------------------------------------------------------------------------------- /src/locales/dateLocales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/dateLocales.ts -------------------------------------------------------------------------------- /src/locales/en_US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/en_US.ts -------------------------------------------------------------------------------- /src/locales/intl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/intl.ts -------------------------------------------------------------------------------- /src/locales/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/strings.ts -------------------------------------------------------------------------------- /src/locales/strings/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/strings/de.json -------------------------------------------------------------------------------- /src/locales/strings/enUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/strings/enUS.json -------------------------------------------------------------------------------- /src/locales/strings/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/strings/es.json -------------------------------------------------------------------------------- /src/locales/strings/esMX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/strings/esMX.json -------------------------------------------------------------------------------- /src/locales/strings/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/strings/fr.json -------------------------------------------------------------------------------- /src/locales/strings/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/strings/it.json -------------------------------------------------------------------------------- /src/locales/strings/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/strings/ja.json -------------------------------------------------------------------------------- /src/locales/strings/kaa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/strings/kaa.json -------------------------------------------------------------------------------- /src/locales/strings/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/strings/ko.json -------------------------------------------------------------------------------- /src/locales/strings/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/strings/pt.json -------------------------------------------------------------------------------- /src/locales/strings/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/strings/ru.json -------------------------------------------------------------------------------- /src/locales/strings/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/strings/vi.json -------------------------------------------------------------------------------- /src/locales/strings/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/locales/strings/zh.json -------------------------------------------------------------------------------- /src/perf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/perf.ts -------------------------------------------------------------------------------- /src/plugins/abi/ANYSWAP_V5_ERC20_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/ANYSWAP_V5_ERC20_ABI.json -------------------------------------------------------------------------------- /src/plugins/abi/A_TOKEN_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/A_TOKEN_ABI.json -------------------------------------------------------------------------------- /src/plugins/abi/ERC20_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/ERC20_ABI.json -------------------------------------------------------------------------------- /src/plugins/abi/IPRICEORACLE_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/IPRICEORACLE_ABI.json -------------------------------------------------------------------------------- /src/plugins/abi/LENDING_POOL_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/LENDING_POOL_ABI.json -------------------------------------------------------------------------------- /src/plugins/abi/MASONRY_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/MASONRY_ABI.json -------------------------------------------------------------------------------- /src/plugins/abi/PARASWAP_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/PARASWAP_ABI.json -------------------------------------------------------------------------------- /src/plugins/abi/STABLE_DEBT_TOKEN_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/STABLE_DEBT_TOKEN_ABI.json -------------------------------------------------------------------------------- /src/plugins/abi/THORCHAIN_SWAP_ABI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/THORCHAIN_SWAP_ABI.ts -------------------------------------------------------------------------------- /src/plugins/abi/TOMB_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/TOMB_ABI.json -------------------------------------------------------------------------------- /src/plugins/abi/TOMB_TREASURY_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/TOMB_TREASURY_ABI.json -------------------------------------------------------------------------------- /src/plugins/abi/TSHARE_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/TSHARE_ABI.json -------------------------------------------------------------------------------- /src/plugins/abi/TSHARE_WFTM_LP_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/TSHARE_WFTM_LP_ABI.json -------------------------------------------------------------------------------- /src/plugins/abi/UNISWAP_V2_PAIR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/UNISWAP_V2_PAIR.json -------------------------------------------------------------------------------- /src/plugins/abi/UNISWAP_V2_ROUTER_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/UNISWAP_V2_ROUTER_02.json -------------------------------------------------------------------------------- /src/plugins/abi/VELODROME_V2_GAUGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/VELODROME_V2_GAUGE.json -------------------------------------------------------------------------------- /src/plugins/abi/VELODROME_V2_ROUTER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/VELODROME_V2_ROUTER.json -------------------------------------------------------------------------------- /src/plugins/abi/VELODROME_V2_VOTER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/VELODROME_V2_VOTER.json -------------------------------------------------------------------------------- /src/plugins/abi/WRAPPED_ETH_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/WRAPPED_ETH_ABI.json -------------------------------------------------------------------------------- /src/plugins/abi/WRAPPED_FTM_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abi/WRAPPED_FTM_ABI.json -------------------------------------------------------------------------------- /src/plugins/abis/GlifInfinityPool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abis/GlifInfinityPool.json -------------------------------------------------------------------------------- /src/plugins/abis/GlifPoolToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abis/GlifPoolToken.json -------------------------------------------------------------------------------- /src/plugins/abis/GlifRouter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abis/GlifRouter.json -------------------------------------------------------------------------------- /src/plugins/abis/GlifSimpleRamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abis/GlifSimpleRamp.json -------------------------------------------------------------------------------- /src/plugins/abis/KilnLiquid20A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abis/KilnLiquid20A.json -------------------------------------------------------------------------------- /src/plugins/abis/OptimismFeeOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abis/OptimismFeeOracle.json -------------------------------------------------------------------------------- /src/plugins/abis/TarotBorrowable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abis/TarotBorrowable.json -------------------------------------------------------------------------------- /src/plugins/abis/TarotCollateral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abis/TarotCollateral.json -------------------------------------------------------------------------------- /src/plugins/abis/TarotRouter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abis/TarotRouter.json -------------------------------------------------------------------------------- /src/plugins/abis/VelodromeLPToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abis/VelodromeLPToken.json -------------------------------------------------------------------------------- /src/plugins/abis/VelodromePoolV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abis/VelodromePoolV2.json -------------------------------------------------------------------------------- /src/plugins/abis/VelodromeRouterV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abis/VelodromeRouterV2.json -------------------------------------------------------------------------------- /src/plugins/abis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/abis/erc20.json -------------------------------------------------------------------------------- /src/plugins/borrow-plugins/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/borrow-plugins/types.ts -------------------------------------------------------------------------------- /src/plugins/gui/RewardsCardPlugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/gui/RewardsCardPlugin.tsx -------------------------------------------------------------------------------- /src/plugins/gui/amountQuotePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/gui/amountQuotePlugin.ts -------------------------------------------------------------------------------- /src/plugins/gui/components/GuiFormRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/gui/components/GuiFormRow.tsx -------------------------------------------------------------------------------- /src/plugins/gui/fiatPlugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/gui/fiatPlugin.tsx -------------------------------------------------------------------------------- /src/plugins/gui/fiatPluginTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/gui/fiatPluginTypes.ts -------------------------------------------------------------------------------- /src/plugins/gui/fiatProviderTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/gui/fiatProviderTypes.ts -------------------------------------------------------------------------------- /src/plugins/gui/hooks/useStateManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/gui/hooks/useStateManager.ts -------------------------------------------------------------------------------- /src/plugins/gui/pluginUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/gui/pluginUtils.ts -------------------------------------------------------------------------------- /src/plugins/gui/providers/banxaProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/gui/providers/banxaProvider.ts -------------------------------------------------------------------------------- /src/plugins/gui/providers/bityProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/gui/providers/bityProvider.ts -------------------------------------------------------------------------------- /src/plugins/gui/providers/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/gui/providers/common.ts -------------------------------------------------------------------------------- /src/plugins/gui/providers/ioniaProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/gui/providers/ioniaProvider.ts -------------------------------------------------------------------------------- /src/plugins/gui/scenes/SepaFormScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/gui/scenes/SepaFormScene.tsx -------------------------------------------------------------------------------- /src/plugins/gui/util/fetchRevolut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/gui/util/fetchRevolut.ts -------------------------------------------------------------------------------- /src/plugins/gui/util/providerUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/gui/util/providerUtils.ts -------------------------------------------------------------------------------- /src/plugins/ramps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/ramps/README.md -------------------------------------------------------------------------------- /src/plugins/ramps/allRampPlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/ramps/allRampPlugins.ts -------------------------------------------------------------------------------- /src/plugins/ramps/rampConstraints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/ramps/rampConstraints.ts -------------------------------------------------------------------------------- /src/plugins/ramps/rampDeeplinkHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/ramps/rampDeeplinkHandler.ts -------------------------------------------------------------------------------- /src/plugins/ramps/rampPluginTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/ramps/rampPluginTypes.ts -------------------------------------------------------------------------------- /src/plugins/ramps/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/ramps/utils/README.md -------------------------------------------------------------------------------- /src/plugins/ramps/utils/createStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/ramps/utils/createStore.ts -------------------------------------------------------------------------------- /src/plugins/ramps/utils/exitUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/ramps/utils/exitUtils.ts -------------------------------------------------------------------------------- /src/plugins/ramps/utils/getBestError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/ramps/utils/getBestError.ts -------------------------------------------------------------------------------- /src/plugins/ramps/utils/rampStoreIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/ramps/utils/rampStoreIds.ts -------------------------------------------------------------------------------- /src/plugins/ramps/utils/webViewUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/ramps/utils/webViewUtils.ts -------------------------------------------------------------------------------- /src/plugins/stake-plugins/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/stake-plugins/types.ts -------------------------------------------------------------------------------- /src/plugins/stake-plugins/util/hex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/plugins/stake-plugins/util/hex.ts -------------------------------------------------------------------------------- /src/reducers/AccountReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/reducers/AccountReducer.ts -------------------------------------------------------------------------------- /src/reducers/CoreReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/reducers/CoreReducer.ts -------------------------------------------------------------------------------- /src/reducers/ExchangeInfoReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/reducers/ExchangeInfoReducer.ts -------------------------------------------------------------------------------- /src/reducers/FioReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/reducers/FioReducer.ts -------------------------------------------------------------------------------- /src/reducers/NetworkReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/reducers/NetworkReducer.ts -------------------------------------------------------------------------------- /src/reducers/PasswordReminderReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/reducers/PasswordReminderReducer.ts -------------------------------------------------------------------------------- /src/reducers/PermissionsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/reducers/PermissionsReducer.ts -------------------------------------------------------------------------------- /src/reducers/RootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/reducers/RootReducer.ts -------------------------------------------------------------------------------- /src/reducers/SpendingLimitsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/reducers/SpendingLimitsReducer.ts -------------------------------------------------------------------------------- /src/reducers/StakingReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/reducers/StakingReducer.ts -------------------------------------------------------------------------------- /src/reducers/scenes/SettingsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/reducers/scenes/SettingsReducer.ts -------------------------------------------------------------------------------- /src/reducers/uiReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/reducers/uiReducer.ts -------------------------------------------------------------------------------- /src/selectors/DenominationSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/selectors/DenominationSelectors.ts -------------------------------------------------------------------------------- /src/selectors/SettingsSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/selectors/SettingsSelectors.ts -------------------------------------------------------------------------------- /src/selectors/WalletSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/selectors/WalletSelectors.ts -------------------------------------------------------------------------------- /src/selectors/getCreateWalletList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/selectors/getCreateWalletList.ts -------------------------------------------------------------------------------- /src/state/SceneFooterState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/state/SceneFooterState.tsx -------------------------------------------------------------------------------- /src/state/SceneScrollState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/state/SceneScrollState.tsx -------------------------------------------------------------------------------- /src/state/createStateProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/state/createStateProvider.tsx -------------------------------------------------------------------------------- /src/state/renderStateProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/state/renderStateProviders.tsx -------------------------------------------------------------------------------- /src/styles/common/textStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/styles/common/textStyles.tsx -------------------------------------------------------------------------------- /src/styles/common/textStylesThemed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/styles/common/textStylesThemed.ts -------------------------------------------------------------------------------- /src/theme/appConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/theme/appConfig.ts -------------------------------------------------------------------------------- /src/theme/edgeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/theme/edgeConfig.ts -------------------------------------------------------------------------------- /src/theme/testConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/theme/testConfig.ts -------------------------------------------------------------------------------- /src/theme/variables/airbitz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/theme/variables/airbitz.ts -------------------------------------------------------------------------------- /src/theme/variables/edgeDark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/theme/variables/edgeDark.ts -------------------------------------------------------------------------------- /src/theme/variables/edgeLight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/theme/variables/edgeLight.ts -------------------------------------------------------------------------------- /src/theme/variables/testDark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/theme/variables/testDark.ts -------------------------------------------------------------------------------- /src/theme/variables/testLight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/theme/variables/testLight.ts -------------------------------------------------------------------------------- /src/types/AppleAdsAttributionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/AppleAdsAttributionTypes.ts -------------------------------------------------------------------------------- /src/types/DeepLinkTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/DeepLinkTypes.ts -------------------------------------------------------------------------------- /src/types/FormTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/FormTypes.ts -------------------------------------------------------------------------------- /src/types/GuiPluginTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/GuiPluginTypes.ts -------------------------------------------------------------------------------- /src/types/HumanFriendlyError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/HumanFriendlyError.ts -------------------------------------------------------------------------------- /src/types/PaymentProtoError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/PaymentProtoError.ts -------------------------------------------------------------------------------- /src/types/PaymentProtoTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/PaymentProtoTypes.ts -------------------------------------------------------------------------------- /src/types/ReferralTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/ReferralTypes.ts -------------------------------------------------------------------------------- /src/types/ResolutionError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/ResolutionError.ts -------------------------------------------------------------------------------- /src/types/Theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/Theme.ts -------------------------------------------------------------------------------- /src/types/TweakTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/TweakTypes.ts -------------------------------------------------------------------------------- /src/types/WebTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/WebTypes.ts -------------------------------------------------------------------------------- /src/types/coinrankTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/coinrankTypes.ts -------------------------------------------------------------------------------- /src/types/posthog.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/posthog.d.ts -------------------------------------------------------------------------------- /src/types/reactHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/reactHooks.ts -------------------------------------------------------------------------------- /src/types/reactRedux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/reactRedux.ts -------------------------------------------------------------------------------- /src/types/reduxActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/reduxActions.ts -------------------------------------------------------------------------------- /src/types/reduxTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/reduxTypes.ts -------------------------------------------------------------------------------- /src/types/routerTypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/routerTypes.tsx -------------------------------------------------------------------------------- /src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/types/types.ts -------------------------------------------------------------------------------- /src/util/ActionProgramUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/ActionProgramUtils.ts -------------------------------------------------------------------------------- /src/util/CdnUris.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/CdnUris.ts -------------------------------------------------------------------------------- /src/util/CleanStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/CleanStore.ts -------------------------------------------------------------------------------- /src/util/CryptoAmount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/CryptoAmount.ts -------------------------------------------------------------------------------- /src/util/CurrencyInfoHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/CurrencyInfoHelpers.ts -------------------------------------------------------------------------------- /src/util/CurrencyWalletHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/CurrencyWalletHelpers.ts -------------------------------------------------------------------------------- /src/util/DeepLinkParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/DeepLinkParser.ts -------------------------------------------------------------------------------- /src/util/FioAddressUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/FioAddressUtils.ts -------------------------------------------------------------------------------- /src/util/GuiPluginTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/GuiPluginTools.ts -------------------------------------------------------------------------------- /src/util/PeriodicTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/PeriodicTask.ts -------------------------------------------------------------------------------- /src/util/PushClient/PushClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/PushClient/PushClient.ts -------------------------------------------------------------------------------- /src/util/PushMessageParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/PushMessageParser.ts -------------------------------------------------------------------------------- /src/util/ReferralHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/ReferralHelpers.ts -------------------------------------------------------------------------------- /src/util/WebUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/WebUtils.ts -------------------------------------------------------------------------------- /src/util/addMetadataToContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/addMetadataToContext.ts -------------------------------------------------------------------------------- /src/util/arrangeUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/arrangeUsers.ts -------------------------------------------------------------------------------- /src/util/borrowUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/borrowUtils.ts -------------------------------------------------------------------------------- /src/util/cleanFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/cleanFetch.ts -------------------------------------------------------------------------------- /src/util/cleaners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/cleaners.ts -------------------------------------------------------------------------------- /src/util/cleaners/asBase64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/cleaners/asBase64.ts -------------------------------------------------------------------------------- /src/util/cleaners/asHex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/cleaners/asHex.ts -------------------------------------------------------------------------------- /src/util/cleaners/asIntegerString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/cleaners/asIntegerString.ts -------------------------------------------------------------------------------- /src/util/corePluginBundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/corePluginBundle.js -------------------------------------------------------------------------------- /src/util/corePlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/corePlugins.ts -------------------------------------------------------------------------------- /src/util/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/crypto.ts -------------------------------------------------------------------------------- /src/util/cryptoTextUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/cryptoTextUtils.ts -------------------------------------------------------------------------------- /src/util/displayTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/displayTime.ts -------------------------------------------------------------------------------- /src/util/encoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/encoding.ts -------------------------------------------------------------------------------- /src/util/exchangeRates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/exchangeRates.ts -------------------------------------------------------------------------------- /src/util/fake-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/fake-user.ts -------------------------------------------------------------------------------- /src/util/fake/FakeProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/fake/FakeProviders.tsx -------------------------------------------------------------------------------- /src/util/fake/fakeAirshipBridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/fake/fakeAirshipBridge.ts -------------------------------------------------------------------------------- /src/util/fake/fakeAvaxInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/fake/fakeAvaxInfo.ts -------------------------------------------------------------------------------- /src/util/fake/fakeBtcInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/fake/fakeBtcInfo.ts -------------------------------------------------------------------------------- /src/util/fake/fakeCurrencyConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/fake/fakeCurrencyConfig.ts -------------------------------------------------------------------------------- /src/util/fake/fakeCurrencyPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/fake/fakeCurrencyPlugin.ts -------------------------------------------------------------------------------- /src/util/fake/fakeEthInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/fake/fakeEthInfo.ts -------------------------------------------------------------------------------- /src/util/fake/fakeRootState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/fake/fakeRootState.ts -------------------------------------------------------------------------------- /src/util/fake/fakeSceneProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/fake/fakeSceneProps.ts -------------------------------------------------------------------------------- /src/util/fake/fakeUserDump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/fake/fakeUserDump.json -------------------------------------------------------------------------------- /src/util/formUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/formUtils.ts -------------------------------------------------------------------------------- /src/util/getAccountUsername.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/getAccountUsername.ts -------------------------------------------------------------------------------- /src/util/haptic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/haptic.ts -------------------------------------------------------------------------------- /src/util/infoUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/infoUtils.ts -------------------------------------------------------------------------------- /src/util/ipApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/ipApi.ts -------------------------------------------------------------------------------- /src/util/isAbstractedAssetChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/isAbstractedAssetChain.ts -------------------------------------------------------------------------------- /src/util/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/logger.ts -------------------------------------------------------------------------------- /src/util/maestro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/maestro.ts -------------------------------------------------------------------------------- /src/util/matchJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/matchJson.ts -------------------------------------------------------------------------------- /src/util/memoUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/memoUtils.ts -------------------------------------------------------------------------------- /src/util/middleware/perfLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/middleware/perfLogger.ts -------------------------------------------------------------------------------- /src/util/mswServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/mswServer.ts -------------------------------------------------------------------------------- /src/util/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/network.ts -------------------------------------------------------------------------------- /src/util/networkFeeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/networkFeeUtils.ts -------------------------------------------------------------------------------- /src/util/normalizeError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/normalizeError.ts -------------------------------------------------------------------------------- /src/util/otpReminder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/otpReminder.tsx -------------------------------------------------------------------------------- /src/util/otpUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/otpUtils.ts -------------------------------------------------------------------------------- /src/util/parseMarkdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/parseMarkdown.tsx -------------------------------------------------------------------------------- /src/util/parseMarkedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/parseMarkedText.tsx -------------------------------------------------------------------------------- /src/util/paymentTypeIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/paymentTypeIcons.ts -------------------------------------------------------------------------------- /src/util/paymentTypeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/paymentTypeUtils.ts -------------------------------------------------------------------------------- /src/util/promoCardUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/promoCardUtils.ts -------------------------------------------------------------------------------- /src/util/resolveName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/resolveName.ts -------------------------------------------------------------------------------- /src/util/rnUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/rnUtils.ts -------------------------------------------------------------------------------- /src/util/routerUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/routerUtils.ts -------------------------------------------------------------------------------- /src/util/runOnce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/runOnce.ts -------------------------------------------------------------------------------- /src/util/safeFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/safeFilters.ts -------------------------------------------------------------------------------- /src/util/scaling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/scaling.ts -------------------------------------------------------------------------------- /src/util/show-confetti.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/show-confetti.ts -------------------------------------------------------------------------------- /src/util/sides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/sides.ts -------------------------------------------------------------------------------- /src/util/stakeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/stakeUtils.ts -------------------------------------------------------------------------------- /src/util/tokenIdTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/tokenIdTools.ts -------------------------------------------------------------------------------- /src/util/trace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/trace.ts -------------------------------------------------------------------------------- /src/util/tracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/tracking.ts -------------------------------------------------------------------------------- /src/util/translateError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/translateError.ts -------------------------------------------------------------------------------- /src/util/ukComplianceUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/ukComplianceUtils.ts -------------------------------------------------------------------------------- /src/util/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/utils.ts -------------------------------------------------------------------------------- /src/util/vault/edgeVault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/vault/edgeVault.ts -------------------------------------------------------------------------------- /src/util/vault/edgeVaultKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/vault/edgeVaultKeys.ts -------------------------------------------------------------------------------- /src/util/vault/edgeVaultLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/vault/edgeVaultLogger.ts -------------------------------------------------------------------------------- /src/util/vault/edgeVaultTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/vault/edgeVaultTypes.ts -------------------------------------------------------------------------------- /src/util/versionCheck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/versionCheck.tsx -------------------------------------------------------------------------------- /src/util/withWatchableProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/util/withWatchableProps.ts -------------------------------------------------------------------------------- /src/wdyr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/src/wdyr.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/edge-react-gui/HEAD/yarn.lock --------------------------------------------------------------------------------