wallet-stack 1.0.0-alpha.121
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +86 -0
- package/app.plugin.js +1 -0
- package/locales/base/translation.json +2998 -0
- package/locales/de/translation.json +2998 -0
- package/locales/en-US/translation.json +2998 -0
- package/locales/es-419/translation.json +2998 -0
- package/locales/fr-FR/translation.json +2998 -0
- package/locales/index.ts +163 -0
- package/locales/it-IT/translation.json +2998 -0
- package/locales/pl-PL/translation.json +3004 -0
- package/locales/pt-BR/translation.json +2998 -0
- package/locales/ru-RU/translation.json +3004 -0
- package/locales/th-TH/translation.json +2995 -0
- package/locales/tr-TR/translation.json +2998 -0
- package/locales/uk-UA/translation.json +3004 -0
- package/locales/vi-VN/translation.json +2995 -0
- package/locales/zh-CN/translation.json +2995 -0
- package/metro-config.js +40 -0
- package/package.json +227 -0
- package/plugin/build/consts.d.ts +2 -0
- package/plugin/build/consts.js +6 -0
- package/plugin/build/index.d.ts +8 -0
- package/plugin/build/index.js +21 -0
- package/plugin/build/withAndroidUserAgent.d.ts +8 -0
- package/plugin/build/withAndroidUserAgent.js +86 -0
- package/plugin/build/withAndroidWindowSoftInputModeAdjustNothing.d.ts +6 -0
- package/plugin/build/withAndroidWindowSoftInputModeAdjustNothing.js +16 -0
- package/plugin/build/withIosAppDelegateResetKeychain.d.ts +2 -0
- package/plugin/build/withIosAppDelegateResetKeychain.js +77 -0
- package/plugin/build/withIosUserAgent.d.ts +8 -0
- package/plugin/build/withIosUserAgent.js +56 -0
- package/plugin/tsconfig.json +13 -0
- package/src/RevokePhoneNumber.tsx +117 -0
- package/src/abis/IWalletJumpstart.ts +472 -0
- package/src/account/AccountErrorScreen.test.tsx +47 -0
- package/src/account/AccountErrorScreen.tsx +72 -0
- package/src/account/AccountKeyEducation.test.tsx +20 -0
- package/src/account/AccountKeyEducation.tsx +83 -0
- package/src/account/AccountSetupFailureScreen.test.tsx +59 -0
- package/src/account/AccountSetupFailureScreen.tsx +42 -0
- package/src/account/Education.test.tsx +48 -0
- package/src/account/Education.tsx +235 -0
- package/src/account/GoldEducation.test.tsx +35 -0
- package/src/account/GoldEducation.tsx +82 -0
- package/src/account/LegalSubmenu.test.tsx +84 -0
- package/src/account/LegalSubmenu.tsx +74 -0
- package/src/account/LicenseDisclaimer.txt +15310 -0
- package/src/account/Licenses.test.tsx +17 -0
- package/src/account/Licenses.tsx +43 -0
- package/src/account/PreferencesSubmenu.test.tsx +66 -0
- package/src/account/PreferencesSubmenu.tsx +87 -0
- package/src/account/PrivateKey.test.tsx +241 -0
- package/src/account/PrivateKey.tsx +169 -0
- package/src/account/Profile.test.tsx +77 -0
- package/src/account/Profile.tsx +153 -0
- package/src/account/ProfileSubmenu.test.tsx +105 -0
- package/src/account/ProfileSubmenu.tsx +89 -0
- package/src/account/SecuritySubmenu.test.tsx +305 -0
- package/src/account/SecuritySubmenu.tsx +435 -0
- package/src/account/ShakeForSupport.test.tsx +23 -0
- package/src/account/ShakeForSupport.tsx +112 -0
- package/src/account/StoreWipeRecoveryScreen.test.tsx +39 -0
- package/src/account/StoreWipeRecoveryScreen.tsx +50 -0
- package/src/account/Support.test.tsx +67 -0
- package/src/account/Support.tsx +69 -0
- package/src/account/SupportContact.test.tsx +95 -0
- package/src/account/SupportContact.tsx +265 -0
- package/src/account/__snapshots__/AccountKeyEducation.test.tsx.snap +579 -0
- package/src/account/__snapshots__/Education.test.tsx.snap +286 -0
- package/src/account/__snapshots__/GoldEducation.test.tsx.snap +579 -0
- package/src/account/__snapshots__/Licenses.test.tsx.snap +33 -0
- package/src/account/__snapshots__/ShakeForSupport.test.tsx.snap +3 -0
- package/src/account/actions.ts +270 -0
- package/src/account/reducer.test.ts +28 -0
- package/src/account/reducer.ts +296 -0
- package/src/account/saga.test.ts +209 -0
- package/src/account/saga.ts +249 -0
- package/src/account/selectors.test.ts +18 -0
- package/src/account/selectors.ts +60 -0
- package/src/account/updateAccountRegistration.ts +35 -0
- package/src/account/utils.ts +36 -0
- package/src/account/zendesk.test.ts +166 -0
- package/src/account/zendesk.ts +199 -0
- package/src/alert/AlertBanner.test.tsx +123 -0
- package/src/alert/AlertBanner.tsx +84 -0
- package/src/alert/actions.ts +127 -0
- package/src/alert/reducer.ts +52 -0
- package/src/analytics/AppAnalytics.test.ts +334 -0
- package/src/analytics/AppAnalytics.ts +369 -0
- package/src/analytics/AsyncStoragePersistor.ts +34 -0
- package/src/analytics/Events.test.tsx +49 -0
- package/src/analytics/Events.tsx +648 -0
- package/src/analytics/InjectTraits.ts +34 -0
- package/src/analytics/Properties.tsx +1645 -0
- package/src/analytics/README.md +24 -0
- package/src/analytics/docs.ts +675 -0
- package/src/analytics/saga.test.ts +57 -0
- package/src/analytics/saga.ts +21 -0
- package/src/analytics/selectors.test.ts +391 -0
- package/src/analytics/selectors.ts +200 -0
- package/src/analytics/types.ts +46 -0
- package/src/app/App.test.tsx +25 -0
- package/src/app/App.tsx +124 -0
- package/src/app/AppInitGate.test.tsx +100 -0
- package/src/app/AppInitGate.tsx +77 -0
- package/src/app/AppLoading.test.tsx +11 -0
- package/src/app/AppLoading.tsx +79 -0
- package/src/app/DebugImages.tsx +110 -0
- package/src/app/ErrorBoundary.test.tsx +19 -0
- package/src/app/ErrorBoundary.tsx +41 -0
- package/src/app/ErrorMessages.ts +40 -0
- package/src/app/ErrorScreen.test.tsx +26 -0
- package/src/app/ErrorScreen.tsx +57 -0
- package/src/app/SanctionedCountryErrorScreen.tsx +37 -0
- package/src/app/UpgradeScreen.tsx +28 -0
- package/src/app/__snapshots__/AppLoading.test.tsx.snap +35 -0
- package/src/app/__snapshots__/ErrorScreen.test.tsx.snap +365 -0
- package/src/app/actions.ts +301 -0
- package/src/app/crowd_mobile.png +0 -0
- package/src/app/reducers.ts +204 -0
- package/src/app/saga.test.ts +651 -0
- package/src/app/saga.ts +367 -0
- package/src/app/selectors.ts +53 -0
- package/src/app/useDeepLinks.test.tsx +43 -0
- package/src/app/useDeepLinks.ts +72 -0
- package/src/app/utils.ts +14 -0
- package/src/appConfig.test.ts +37 -0
- package/src/appConfig.ts +20 -0
- package/src/backup/BackupComplete.test.tsx +61 -0
- package/src/backup/BackupComplete.tsx +69 -0
- package/src/backup/BackupIntroduction.test.tsx +37 -0
- package/src/backup/BackupIntroduction.tsx +157 -0
- package/src/backup/BackupPhrase.test.tsx +71 -0
- package/src/backup/BackupPhrase.tsx +208 -0
- package/src/backup/BackupPhraseContainer.test.tsx +43 -0
- package/src/backup/BackupPhraseContainer.tsx +207 -0
- package/src/backup/BackupQuiz.test.tsx +130 -0
- package/src/backup/BackupQuiz.tsx +429 -0
- package/src/backup/CancelConfirm.tsx +60 -0
- package/src/backup/QuizzBottom.tsx +57 -0
- package/src/backup/__snapshots__/BackupComplete.test.tsx.snap +58 -0
- package/src/backup/__snapshots__/BackupPhrase.test.tsx.snap +906 -0
- package/src/backup/__snapshots__/BackupPhraseContainer.test.tsx.snap +719 -0
- package/src/backup/__snapshots__/BackupQuiz.test.tsx.snap +1313 -0
- package/src/backup/utils.test.ts +91 -0
- package/src/backup/utils.ts +103 -0
- package/src/celoNews/CeloNewsFeed.test.tsx +157 -0
- package/src/celoNews/CeloNewsFeed.tsx +161 -0
- package/src/celoNews/CeloNewsFeedItem.test.tsx +46 -0
- package/src/celoNews/CeloNewsFeedItem.tsx +104 -0
- package/src/celoNews/types.ts +14 -0
- package/src/components/AccountNumber.test.tsx +25 -0
- package/src/components/AccountNumber.tsx +78 -0
- package/src/components/AccountNumberCard.tsx +23 -0
- package/src/components/Avatar.test.tsx +67 -0
- package/src/components/Avatar.tsx +72 -0
- package/src/components/BackButton.tsx +44 -0
- package/src/components/BeatingHeartLoader.tsx +39 -0
- package/src/components/BorderlessButton.tsx +25 -0
- package/src/components/BottomSheet.tsx +84 -0
- package/src/components/BottomSheetBase.tsx +87 -0
- package/src/components/BottomSheetScrollView.tsx +54 -0
- package/src/components/Button.test.tsx +94 -0
- package/src/components/Button.tsx +259 -0
- package/src/components/CallToActionsBar.tsx +68 -0
- package/src/components/CancelButton.test.tsx +11 -0
- package/src/components/CancelButton.tsx +58 -0
- package/src/components/Card.tsx +34 -0
- package/src/components/CircleButton.test.tsx +35 -0
- package/src/components/CircleButton.tsx +64 -0
- package/src/components/ClipboardAwarePasteButton.tsx +65 -0
- package/src/components/CloseButton.tsx +41 -0
- package/src/components/CodeInput.test.tsx +26 -0
- package/src/components/CodeInput.tsx +124 -0
- package/src/components/CodeRow.test.tsx +27 -0
- package/src/components/CodeRow.tsx +163 -0
- package/src/components/ContactCircle.test.tsx +67 -0
- package/src/components/ContactCircle.tsx +133 -0
- package/src/components/ContactCircleSelf.tsx +28 -0
- package/src/components/CurrencyDisplay.tsx +242 -0
- package/src/components/DataFieldWithCopy.tsx +75 -0
- package/src/components/DevSkipButton.tsx +105 -0
- package/src/components/Dialog.test.tsx +14 -0
- package/src/components/Dialog.tsx +124 -0
- package/src/components/Dropdown.tsx +98 -0
- package/src/components/EmptyView.tsx +34 -0
- package/src/components/ErrorMessageInline.tsx +78 -0
- package/src/components/ExchangesBottomSheet.test.tsx +84 -0
- package/src/components/ExchangesBottomSheet.tsx +74 -0
- package/src/components/Expandable.tsx +57 -0
- package/src/components/FeeDrawer.test.tsx +150 -0
- package/src/components/FeeDrawer.tsx +127 -0
- package/src/components/FeeIcon.test.tsx +14 -0
- package/src/components/FeeIcon.tsx +95 -0
- package/src/components/FeeInfoBottomSheet.test.tsx +320 -0
- package/src/components/FeeInfoBottomSheet.tsx +219 -0
- package/src/components/FilterChipsCarousel.tsx +143 -0
- package/src/components/FormField.tsx +23 -0
- package/src/components/FormLabel.tsx +21 -0
- package/src/components/FormTextInput.tsx +16 -0
- package/src/components/FullscreenCTA.test.tsx +58 -0
- package/src/components/FullscreenCTA.tsx +60 -0
- package/src/components/GasFeeWarning.test.tsx +126 -0
- package/src/components/GasFeeWarning.tsx +124 -0
- package/src/components/GradientBlock.tsx +20 -0
- package/src/components/HorizontalLine.tsx +18 -0
- package/src/components/IconWithNetworkBadge.test.tsx +49 -0
- package/src/components/IconWithNetworkBadge.tsx +69 -0
- package/src/components/InLineNotification.test.tsx +74 -0
- package/src/components/InLineNotification.tsx +160 -0
- package/src/components/InfoBottomSheet.test.tsx +55 -0
- package/src/components/InfoBottomSheet.tsx +79 -0
- package/src/components/ItemSeparator.test.tsx +8 -0
- package/src/components/ItemSeparator.tsx +16 -0
- package/src/components/KeyboardAwareScrollView.tsx +104 -0
- package/src/components/KeyboardSpacer.tsx +168 -0
- package/src/components/LabelWithInfo.tsx +57 -0
- package/src/components/LegacyTokenDisplay.test.tsx +282 -0
- package/src/components/LegacyTokenDisplay.tsx +63 -0
- package/src/components/LegacyTokenTotalLineItem.test.tsx +90 -0
- package/src/components/LegacyTokenTotalLineItem.tsx +38 -0
- package/src/components/LineItemRow.tsx +74 -0
- package/src/components/ListItem.test.tsx +19 -0
- package/src/components/ListItem.tsx +44 -0
- package/src/components/MessagingCard.tsx +21 -0
- package/src/components/Modal.tsx +57 -0
- package/src/components/NumberKeypad.test.tsx +21 -0
- package/src/components/NumberKeypad.tsx +102 -0
- package/src/components/NumberTicker.tsx +115 -0
- package/src/components/OnboardingCard.tsx +61 -0
- package/src/components/Pagination.tsx +39 -0
- package/src/components/PercentageIndicator.test.tsx +118 -0
- package/src/components/PercentageIndicator.tsx +75 -0
- package/src/components/PhoneNumberInput.test.tsx +99 -0
- package/src/components/PhoneNumberInput.tsx +132 -0
- package/src/components/PhoneNumberWithFlag.tsx +54 -0
- package/src/components/QrScanButton.test.tsx +21 -0
- package/src/components/QrScanButton.tsx +30 -0
- package/src/components/RecoveryPhraseInput.test.tsx +26 -0
- package/src/components/RecoveryPhraseInput.tsx +188 -0
- package/src/components/ReviewHeader.test.tsx +21 -0
- package/src/components/ReviewHeader.tsx +36 -0
- package/src/components/ReviewTransaction.test.tsx +474 -0
- package/src/components/ReviewTransaction.tsx +526 -0
- package/src/components/RowDivider.tsx +36 -0
- package/src/components/SearchInput.tsx +40 -0
- package/src/components/SectionHead.test.tsx +9 -0
- package/src/components/SectionHead.tsx +33 -0
- package/src/components/SegmentedControl.test.tsx +28 -0
- package/src/components/SegmentedControl.tsx +156 -0
- package/src/components/SelectRecipientButton.tsx +89 -0
- package/src/components/SelectionOption.test.tsx +18 -0
- package/src/components/SelectionOption.tsx +62 -0
- package/src/components/SettingsGearButton.tsx +30 -0
- package/src/components/SettingsItem.test.tsx +80 -0
- package/src/components/SettingsItem.tsx +195 -0
- package/src/components/SimpleMessagingCard.test.tsx +54 -0
- package/src/components/SimpleMessagingCard.tsx +90 -0
- package/src/components/SingleDigitInput.tsx +53 -0
- package/src/components/SkeletonPlaceholder.tsx +33 -0
- package/src/components/SmallButton.test.tsx +41 -0
- package/src/components/SmallButton.tsx +74 -0
- package/src/components/SmartTopAlert.test.tsx +22 -0
- package/src/components/SmartTopAlert.tsx +183 -0
- package/src/components/Switch.tsx +19 -0
- package/src/components/TextButton.tsx +22 -0
- package/src/components/TextInput.tsx +133 -0
- package/src/components/TextInputWithButtons.test.tsx +24 -0
- package/src/components/TextInputWithButtons.tsx +54 -0
- package/src/components/Toast.test.tsx +62 -0
- package/src/components/Toast.tsx +180 -0
- package/src/components/TokenBalance.test.tsx +389 -0
- package/src/components/TokenBalance.tsx +321 -0
- package/src/components/TokenBottomSheet.test.tsx +356 -0
- package/src/components/TokenBottomSheet.tsx +413 -0
- package/src/components/TokenDisplay.test.tsx +274 -0
- package/src/components/TokenDisplay.tsx +104 -0
- package/src/components/TokenEnterAmount.test.tsx +461 -0
- package/src/components/TokenEnterAmount.tsx +591 -0
- package/src/components/TokenIcon.test.tsx +93 -0
- package/src/components/TokenIcon.tsx +142 -0
- package/src/components/TokenTotalLineItem.test.tsx +199 -0
- package/src/components/TokenTotalLineItem.tsx +103 -0
- package/src/components/Touchable.tsx +48 -0
- package/src/components/ValidatedTextInput.tsx +96 -0
- package/src/components/WebView.tsx +43 -0
- package/src/components/WithPasteAware.tsx +113 -0
- package/src/components/WithTextInputPasteAware.tsx +51 -0
- package/src/components/__snapshots__/AccountNumber.test.tsx.snap +87 -0
- package/src/components/__snapshots__/Avatar.test.tsx.snap +435 -0
- package/src/components/__snapshots__/Button.test.tsx.snap +292 -0
- package/src/components/__snapshots__/CircleButton.test.tsx.snap +211 -0
- package/src/components/__snapshots__/CodeRow.test.tsx.snap +211 -0
- package/src/components/__snapshots__/ContactCircle.test.tsx.snap +46 -0
- package/src/components/__snapshots__/Dialog.test.tsx.snap +248 -0
- package/src/components/__snapshots__/FeeIcon.test.tsx.snap +147 -0
- package/src/components/__snapshots__/FullscreenCTA.test.tsx.snap +183 -0
- package/src/components/__snapshots__/ItemSeparator.test.tsx.snap +13 -0
- package/src/components/__snapshots__/NumberKeypad.test.tsx.snap +1434 -0
- package/src/components/__snapshots__/PhoneNumberInput.test.tsx.snap +202 -0
- package/src/components/__snapshots__/SectionHead.test.tsx.snap +32 -0
- package/src/components/__snapshots__/SelectionOption.test.tsx.snap +197 -0
- package/src/components/__snapshots__/SettingsItem.test.tsx.snap +226 -0
- package/src/components/__snapshots__/SmartTopAlert.test.tsx.snap +103 -0
- package/src/components/__snapshots__/TextInputWithButtons.test.tsx.snap +78 -0
- package/src/components/header/CustomHeader.tsx +56 -0
- package/src/components/multiSelect/MultiSelectBottomSheet.test.tsx +175 -0
- package/src/components/multiSelect/MultiSelectBottomSheet.tsx +249 -0
- package/src/components/multiSelect/NetworkMultiSelectBottomSheet.test.tsx +77 -0
- package/src/components/multiSelect/NetworkMultiSelectBottomSheet.tsx +56 -0
- package/src/components/useShowOrHideAnimation.tsx +33 -0
- package/src/config.enc +0 -0
- package/src/config.ts +186 -0
- package/src/dapps/DappShortcutTransactionRequest.test.tsx +187 -0
- package/src/dapps/DappShortcutTransactionRequest.tsx +270 -0
- package/src/dapps/DappShortcutsRewards.test.tsx +292 -0
- package/src/dapps/DappShortcutsRewards.tsx +284 -0
- package/src/dapps/DappsScreen.test.tsx +716 -0
- package/src/dapps/DappsScreen.tsx +365 -0
- package/src/dapps/saga.test.ts +194 -0
- package/src/dapps/saga.ts +136 -0
- package/src/dapps/selectors.test.ts +127 -0
- package/src/dapps/selectors.ts +123 -0
- package/src/dapps/slice.ts +110 -0
- package/src/dapps/types.ts +30 -0
- package/src/dappsExplorer/DappCard.tsx +141 -0
- package/src/dappsExplorer/DappFeaturedActions.test.tsx +72 -0
- package/src/dappsExplorer/DappFeaturedActions.tsx +121 -0
- package/src/dappsExplorer/DiscoverDappsCard.tsx +186 -0
- package/src/dappsExplorer/NoResults.tsx +126 -0
- package/src/dappsExplorer/TabDiscover.test.tsx +397 -0
- package/src/dappsExplorer/TabDiscover.tsx +76 -0
- package/src/dappsExplorer/searchDappList.test.tsx +69 -0
- package/src/dappsExplorer/searchDappList.tsx +113 -0
- package/src/dappsExplorer/useDappFavoritedToast.tsx +56 -0
- package/src/dappsExplorer/useOpenDapp.tsx +31 -0
- package/src/divviProtocol/saga.test.ts +51 -0
- package/src/divviProtocol/saga.ts +44 -0
- package/src/earn/ActionCard.tsx +46 -0
- package/src/earn/EarnDepositConfirmationScreen.test.tsx +603 -0
- package/src/earn/EarnDepositConfirmationScreen.tsx +596 -0
- package/src/earn/EarnEnterAmount.test.tsx +1296 -0
- package/src/earn/EarnEnterAmount.tsx +815 -0
- package/src/earn/EarnEntrypoint.test.tsx +100 -0
- package/src/earn/EarnEntrypoint.tsx +127 -0
- package/src/earn/EarnHome.test.tsx +237 -0
- package/src/earn/EarnHome.tsx +411 -0
- package/src/earn/EarnInfoScreen.test.tsx +96 -0
- package/src/earn/EarnInfoScreen.tsx +174 -0
- package/src/earn/EarnTabBar.test.tsx +43 -0
- package/src/earn/EarnTabBar.tsx +73 -0
- package/src/earn/EarnWithdrawConfirmationScreen.test.tsx +1022 -0
- package/src/earn/EarnWithdrawConfirmationScreen.tsx +476 -0
- package/src/earn/PoolCard.test.tsx +68 -0
- package/src/earn/PoolCard.tsx +218 -0
- package/src/earn/PoolList.tsx +87 -0
- package/src/earn/TabEarn.test.tsx +159 -0
- package/src/earn/TabEarn.tsx +354 -0
- package/src/earn/hooks.test.tsx +328 -0
- package/src/earn/hooks.ts +178 -0
- package/src/earn/poolInfoScreen/BeforeDepositBottomSheet.test.tsx +411 -0
- package/src/earn/poolInfoScreen/BeforeDepositBottomSheet.tsx +448 -0
- package/src/earn/poolInfoScreen/Cards.tsx +383 -0
- package/src/earn/poolInfoScreen/EarnPoolInfoScreen.test.tsx +498 -0
- package/src/earn/poolInfoScreen/EarnPoolInfoScreen.tsx +595 -0
- package/src/earn/poolInfoScreen/SafetyCard.test.tsx +108 -0
- package/src/earn/poolInfoScreen/SafetyCard.tsx +165 -0
- package/src/earn/poolInfoScreen/TokenIcons.tsx +37 -0
- package/src/earn/poolInfoScreen/WithdrawBottomSheet.test.tsx +235 -0
- package/src/earn/poolInfoScreen/WithdrawBottomSheet.tsx +168 -0
- package/src/earn/prepareTransactions.test.ts +616 -0
- package/src/earn/prepareTransactions.ts +281 -0
- package/src/earn/saga.test.ts +1149 -0
- package/src/earn/saga.ts +456 -0
- package/src/earn/selectors.ts +5 -0
- package/src/earn/simulateTransactions.test.ts +121 -0
- package/src/earn/simulateTransactions.ts +58 -0
- package/src/earn/slice.test.ts +87 -0
- package/src/earn/slice.ts +73 -0
- package/src/earn/types.ts +70 -0
- package/src/earn/utils.test.ts +48 -0
- package/src/earn/utils.ts +54 -0
- package/src/fiatExchanges/BidaliScreen.test.tsx +163 -0
- package/src/fiatExchanges/BidaliScreen.tsx +189 -0
- package/src/fiatExchanges/CashInSuccess.test.tsx +54 -0
- package/src/fiatExchanges/CashInSuccess.tsx +104 -0
- package/src/fiatExchanges/ExchangeQR.test.tsx +100 -0
- package/src/fiatExchanges/ExchangeQR.tsx +94 -0
- package/src/fiatExchanges/ExternalExchanges.test.tsx +67 -0
- package/src/fiatExchanges/ExternalExchanges.tsx +104 -0
- package/src/fiatExchanges/FiatExchangeAmount.test.tsx +418 -0
- package/src/fiatExchanges/FiatExchangeAmount.tsx +305 -0
- package/src/fiatExchanges/FiatExchangeCurrencyBottomSheet.test.tsx +309 -0
- package/src/fiatExchanges/FiatExchangeCurrencyBottomSheet.tsx +139 -0
- package/src/fiatExchanges/PaymentMethodSection.test.tsx +259 -0
- package/src/fiatExchanges/PaymentMethodSection.tsx +378 -0
- package/src/fiatExchanges/ReviewFees.test.tsx +74 -0
- package/src/fiatExchanges/ReviewFees.tsx +202 -0
- package/src/fiatExchanges/SelectProvider.test.tsx +415 -0
- package/src/fiatExchanges/SelectProvider.tsx +649 -0
- package/src/fiatExchanges/SimplexScreen.test.tsx +109 -0
- package/src/fiatExchanges/SimplexScreen.tsx +185 -0
- package/src/fiatExchanges/Spend.tsx +104 -0
- package/src/fiatExchanges/WithdrawSpend.test.tsx +37 -0
- package/src/fiatExchanges/WithdrawSpend.tsx +139 -0
- package/src/fiatExchanges/__snapshots__/CashInSuccess.test.tsx.snap +351 -0
- package/src/fiatExchanges/__snapshots__/FiatExchangeAmount.test.tsx.snap +397 -0
- package/src/fiatExchanges/__snapshots__/ReviewFees.test.tsx.snap +844 -0
- package/src/fiatExchanges/__snapshots__/SimplexScreen.test.tsx.snap +1083 -0
- package/src/fiatExchanges/actions.ts +67 -0
- package/src/fiatExchanges/amount.test.tsx +48 -0
- package/src/fiatExchanges/amount.tsx +45 -0
- package/src/fiatExchanges/quotes/ExternalQuote.test.ts +172 -0
- package/src/fiatExchanges/quotes/ExternalQuote.ts +121 -0
- package/src/fiatExchanges/quotes/FiatConnectQuote.test.ts +718 -0
- package/src/fiatExchanges/quotes/FiatConnectQuote.ts +343 -0
- package/src/fiatExchanges/quotes/NormalizedQuote.ts +47 -0
- package/src/fiatExchanges/quotes/constants.ts +63 -0
- package/src/fiatExchanges/quotes/normalizeQuotes.test.ts +102 -0
- package/src/fiatExchanges/quotes/normalizeQuotes.ts +76 -0
- package/src/fiatExchanges/quotes/utils.ts +31 -0
- package/src/fiatExchanges/reducer.ts +65 -0
- package/src/fiatExchanges/saga.test.ts +281 -0
- package/src/fiatExchanges/saga.ts +195 -0
- package/src/fiatExchanges/types.ts +104 -0
- package/src/fiatExchanges/utils.test.ts +159 -0
- package/src/fiatExchanges/utils.tsx +287 -0
- package/src/fiatconnect/FiatDetailsScreen.test.tsx +371 -0
- package/src/fiatconnect/FiatDetailsScreen.tsx +441 -0
- package/src/fiatconnect/LinkAccountScreen.test.tsx +107 -0
- package/src/fiatconnect/LinkAccountScreen.tsx +180 -0
- package/src/fiatconnect/RefetchQuoteScreen.test.tsx +119 -0
- package/src/fiatconnect/RefetchQuoteScreen.tsx +68 -0
- package/src/fiatconnect/ReviewScreen.test.tsx +505 -0
- package/src/fiatconnect/ReviewScreen.tsx +708 -0
- package/src/fiatconnect/TransferStatusScreen.test.tsx +399 -0
- package/src/fiatconnect/TransferStatusScreen.tsx +351 -0
- package/src/fiatconnect/clients.test.tsx +83 -0
- package/src/fiatconnect/clients.ts +69 -0
- package/src/fiatconnect/consts.ts +41 -0
- package/src/fiatconnect/fiatAccountSchemas/accountNumber.test.ts +60 -0
- package/src/fiatconnect/fiatAccountSchemas/accountNumber.ts +55 -0
- package/src/fiatconnect/fiatAccountSchemas/ibanNumber.test.ts +53 -0
- package/src/fiatconnect/fiatAccountSchemas/ibanNumber.ts +56 -0
- package/src/fiatconnect/fiatAccountSchemas/ifscAccount.test.ts +45 -0
- package/src/fiatconnect/fiatAccountSchemas/ifscAccount.ts +58 -0
- package/src/fiatconnect/fiatAccountSchemas/index.test.ts +119 -0
- package/src/fiatconnect/fiatAccountSchemas/index.ts +89 -0
- package/src/fiatconnect/fiatAccountSchemas/mobileMoney.test.ts +29 -0
- package/src/fiatconnect/fiatAccountSchemas/mobileMoney.ts +61 -0
- package/src/fiatconnect/fiatAccountSchemas/pixAccount.test.ts +45 -0
- package/src/fiatconnect/fiatAccountSchemas/pixAccount.ts +62 -0
- package/src/fiatconnect/fiatAccountSchemas/types.ts +40 -0
- package/src/fiatconnect/index.test.ts +244 -0
- package/src/fiatconnect/index.ts +179 -0
- package/src/fiatconnect/kyc/KycDenied.test.tsx +139 -0
- package/src/fiatconnect/kyc/KycDenied.tsx +144 -0
- package/src/fiatconnect/kyc/KycExpired.test.tsx +128 -0
- package/src/fiatconnect/kyc/KycExpired.tsx +127 -0
- package/src/fiatconnect/kyc/KycInactive.test.tsx +139 -0
- package/src/fiatconnect/kyc/KycInactive.tsx +100 -0
- package/src/fiatconnect/kyc/KycPending.test.tsx +82 -0
- package/src/fiatconnect/kyc/KycPending.tsx +106 -0
- package/src/fiatconnect/kyc/getNavigationOptions.tsx +72 -0
- package/src/fiatconnect/saga.test.ts +2594 -0
- package/src/fiatconnect/saga.ts +1133 -0
- package/src/fiatconnect/selectors.ts +24 -0
- package/src/fiatconnect/slice.test.ts +79 -0
- package/src/fiatconnect/slice.ts +380 -0
- package/src/fiatconnect/types.ts +24 -0
- package/src/firebase/actions.ts +11 -0
- package/src/firebase/db-rules.json +129 -0
- package/src/firebase/firebase.test.ts +190 -0
- package/src/firebase/firebase.ts +315 -0
- package/src/firebase/notifications.test.ts +180 -0
- package/src/firebase/notifications.ts +106 -0
- package/src/firebase/saga.test.ts +23 -0
- package/src/firebase/saga.ts +81 -0
- package/src/flags.ts +76 -0
- package/src/home/ActionsCarousel.test.tsx +162 -0
- package/src/home/ActionsCarousel.tsx +161 -0
- package/src/home/DivviBottomSheet.test.tsx +59 -0
- package/src/home/DivviBottomSheet.tsx +197 -0
- package/src/home/GetStarted.test.tsx +47 -0
- package/src/home/GetStarted.tsx +115 -0
- package/src/home/NotificationBell.test.tsx +81 -0
- package/src/home/NotificationBell.tsx +42 -0
- package/src/home/NotificationBox.test.tsx +373 -0
- package/src/home/NotificationBox.tsx +362 -0
- package/src/home/NotificationCenter.test.tsx +466 -0
- package/src/home/NotificationCenter.tsx +185 -0
- package/src/home/SendBar.tsx +60 -0
- package/src/home/TabHome.test.tsx +336 -0
- package/src/home/TabHome.tsx +181 -0
- package/src/home/__snapshots__/NotificationBox.test.tsx.snap +933 -0
- package/src/home/actions.ts +154 -0
- package/src/home/celebration/ConfettiCelebration.tsx +170 -0
- package/src/home/celebration/NftCelebration.test.tsx +137 -0
- package/src/home/celebration/NftCelebration.tsx +207 -0
- package/src/home/celebration/NftReward.test.tsx +94 -0
- package/src/home/celebration/NftReward.tsx +172 -0
- package/src/home/celebration/confettiAnimation.json +5126 -0
- package/src/home/celebration/utils.test.ts +32 -0
- package/src/home/celebration/utils.ts +21 -0
- package/src/home/reducers.test.ts +245 -0
- package/src/home/reducers.ts +191 -0
- package/src/home/saga.test.ts +34 -0
- package/src/home/saga.ts +87 -0
- package/src/home/selectors.test.ts +302 -0
- package/src/home/selectors.ts +82 -0
- package/src/home/types.ts +31 -0
- package/src/i18n/i18n.test.ts +106 -0
- package/src/i18n/index.ts +88 -0
- package/src/i18n/otaTranslations.test.ts +34 -0
- package/src/i18n/otaTranslations.ts +15 -0
- package/src/i18n/saga.test.ts +106 -0
- package/src/i18n/saga.ts +92 -0
- package/src/i18n/selectors.ts +12 -0
- package/src/i18n/slice.ts +46 -0
- package/src/i18n/useChangeLanguage.test.tsx +53 -0
- package/src/i18n/useChangeLanguage.ts +19 -0
- package/src/icons/Activity.tsx +21 -0
- package/src/icons/Apple.tsx +14 -0
- package/src/icons/ArrowDown.tsx +19 -0
- package/src/icons/ArrowRightThick.tsx +16 -0
- package/src/icons/Attention.tsx +22 -0
- package/src/icons/BackChevron.tsx +24 -0
- package/src/icons/Backspace.tsx +31 -0
- package/src/icons/BankIcon.tsx +23 -0
- package/src/icons/Celebration.tsx +18 -0
- package/src/icons/CheckCircle.tsx +19 -0
- package/src/icons/Checkmark.tsx +26 -0
- package/src/icons/CircleArrowIcon.tsx +39 -0
- package/src/icons/CircledIcon.tsx +47 -0
- package/src/icons/Clipboard.tsx +17 -0
- package/src/icons/ClockIcon.tsx +23 -0
- package/src/icons/CloudCheck.tsx +19 -0
- package/src/icons/ComingSoon.tsx +18 -0
- package/src/icons/CopyIcon.tsx +14 -0
- package/src/icons/CrossChainIndicator.tsx +36 -0
- package/src/icons/DataDown.tsx +16 -0
- package/src/icons/DataUp.tsx +16 -0
- package/src/icons/DownArrowIcon.tsx +37 -0
- package/src/icons/EarnCoins.tsx +22 -0
- package/src/icons/Error.tsx +30 -0
- package/src/icons/Exit.tsx +18 -0
- package/src/icons/ExploreTokens.tsx +17 -0
- package/src/icons/EyeIcon.tsx +22 -0
- package/src/icons/ForwardChevron.tsx +30 -0
- package/src/icons/GearIcon.tsx +19 -0
- package/src/icons/Google.tsx +14 -0
- package/src/icons/GradientIcon.tsx +70 -0
- package/src/icons/GreenLoadingSpinner.tsx +16 -0
- package/src/icons/GreenLoadingSpinnerToCheck.tsx +16 -0
- package/src/icons/HamburgerCard.tsx +55 -0
- package/src/icons/Help.tsx +21 -0
- package/src/icons/HiddenEyeIcon.tsx +26 -0
- package/src/icons/ImageErrorIcon.tsx +26 -0
- package/src/icons/InfoIcon.tsx +33 -0
- package/src/icons/KeylessBackup.tsx +32 -0
- package/src/icons/LinkArrow.tsx +27 -0
- package/src/icons/LoadingSpinner.tsx +25 -0
- package/src/icons/Lock.tsx +19 -0
- package/src/icons/MagicWand.tsx +20 -0
- package/src/icons/Manage.tsx +22 -0
- package/src/icons/NotificationBellIcon.tsx +25 -0
- package/src/icons/OpenLinkIcon.tsx +18 -0
- package/src/icons/Paste.tsx +33 -0
- package/src/icons/Phone.tsx +20 -0
- package/src/icons/Preferences.tsx +21 -0
- package/src/icons/QRCode.tsx +14 -0
- package/src/icons/RadioButton.tsx +39 -0
- package/src/icons/RedLoadingSpinnerToInfo.tsx +16 -0
- package/src/icons/Refresh.tsx +30 -0
- package/src/icons/Reward.tsx +29 -0
- package/src/icons/ScanIcon.tsx +26 -0
- package/src/icons/Search.tsx +25 -0
- package/src/icons/Share.tsx +21 -0
- package/src/icons/Social.tsx +15 -0
- package/src/icons/Stack.tsx +21 -0
- package/src/icons/StarOutline.tsx +14 -0
- package/src/icons/SwapAndDeposit.tsx +20 -0
- package/src/icons/SwapArrows.tsx +20 -0
- package/src/icons/ThumbsUpIllustration.tsx +64 -0
- package/src/icons/Times.tsx +38 -0
- package/src/icons/TripleDotVertical.tsx +18 -0
- package/src/icons/Trophy.tsx +18 -0
- package/src/icons/User.tsx +19 -0
- package/src/icons/Warning.tsx +22 -0
- package/src/icons/biometry/Face.tsx +28 -0
- package/src/icons/biometry/FaceID.tsx +18 -0
- package/src/icons/biometry/Fingerprint.tsx +16 -0
- package/src/icons/biometry/Iris.tsx +22 -0
- package/src/icons/biometry/TouchID.tsx +44 -0
- package/src/icons/loadingSpinnerGreen.json +401 -0
- package/src/icons/lottie-json/greenLoadingSpinner.json +370 -0
- package/src/icons/lottie-json/greenLoadingSpinnerToCheck.json +666 -0
- package/src/icons/lottie-json/redLoadingSpinnerToInfo.json +950 -0
- package/src/icons/navigator/Discover.tsx +17 -0
- package/src/icons/navigator/Home.tsx +18 -0
- package/src/icons/navigator/Wallet.tsx +18 -0
- package/src/icons/quick-actions/Add.tsx +18 -0
- package/src/icons/quick-actions/More.tsx +19 -0
- package/src/icons/quick-actions/Receive.tsx +18 -0
- package/src/icons/quick-actions/Send.tsx +18 -0
- package/src/icons/quick-actions/Withdraw.tsx +18 -0
- package/src/identity/actions.ts +244 -0
- package/src/identity/contactMapping.test.ts +391 -0
- package/src/identity/contactMapping.ts +422 -0
- package/src/identity/reducer.ts +243 -0
- package/src/identity/saga.test.ts +103 -0
- package/src/identity/saga.ts +122 -0
- package/src/identity/secureSend.ts +171 -0
- package/src/identity/selectors.ts +16 -0
- package/src/identity/types.ts +14 -0
- package/src/images/Blob.tsx +20 -0
- package/src/images/Celebration.tsx +35 -0
- package/src/images/DivviLogo.tsx +22 -0
- package/src/images/GuideKeyIcon.tsx +51 -0
- package/src/images/Images.ts +22 -0
- package/src/images/Logo.tsx +66 -0
- package/src/images/LogoHeart.tsx +206 -0
- package/src/images/NftReceivedIcon.tsx +18 -0
- package/src/images/NftSentIcon.tsx +18 -0
- package/src/images/Palm.tsx +21 -0
- package/src/images/Star.tsx +20 -0
- package/src/images/WelcomeLogo.tsx +19 -0
- package/src/images/assets/account-key-1.png +0 -0
- package/src/images/assets/account-key-1@1.5x.png +0 -0
- package/src/images/assets/account-key-1@2x.png +0 -0
- package/src/images/assets/account-key-1@3x.png +0 -0
- package/src/images/assets/account-key-1@4x.png +0 -0
- package/src/images/assets/account-key-2.png +0 -0
- package/src/images/assets/account-key-2@1.5x.png +0 -0
- package/src/images/assets/account-key-2@2x.png +0 -0
- package/src/images/assets/account-key-2@3x.png +0 -0
- package/src/images/assets/account-key-2@4x.png +0 -0
- package/src/images/assets/account-key-3.png +0 -0
- package/src/images/assets/account-key-3@1.5x.png +0 -0
- package/src/images/assets/account-key-3@2x.png +0 -0
- package/src/images/assets/account-key-3@3x.png +0 -0
- package/src/images/assets/account-key-3@4x.png +0 -0
- package/src/images/assets/account-key-4.png +0 -0
- package/src/images/assets/account-key-4@1.5x.png +0 -0
- package/src/images/assets/account-key-4@2x.png +0 -0
- package/src/images/assets/account-key-4@3x.png +0 -0
- package/src/images/assets/account-key-4@4x.png +0 -0
- package/src/images/assets/biometry-face-id.png +0 -0
- package/src/images/assets/biometry-face-id@1.5x.png +0 -0
- package/src/images/assets/biometry-face-id@2x.png +0 -0
- package/src/images/assets/biometry-face-id@3x.png +0 -0
- package/src/images/assets/biometry-face-id@4x.png +0 -0
- package/src/images/assets/biometry-face.png +0 -0
- package/src/images/assets/biometry-face@1.5x.png +0 -0
- package/src/images/assets/biometry-face@2x.png +0 -0
- package/src/images/assets/biometry-face@3x.png +0 -0
- package/src/images/assets/biometry-face@4x.png +0 -0
- package/src/images/assets/biometry-fingerprint.png +0 -0
- package/src/images/assets/biometry-fingerprint@1.5x.png +0 -0
- package/src/images/assets/biometry-fingerprint@2x.png +0 -0
- package/src/images/assets/biometry-fingerprint@3x.png +0 -0
- package/src/images/assets/biometry-fingerprint@4x.png +0 -0
- package/src/images/assets/biometry-iris.png +0 -0
- package/src/images/assets/biometry-iris@1.5x.png +0 -0
- package/src/images/assets/biometry-iris@2x.png +0 -0
- package/src/images/assets/biometry-iris@3x.png +0 -0
- package/src/images/assets/biometry-iris@4x.png +0 -0
- package/src/images/assets/biometry-touch-id.png +0 -0
- package/src/images/assets/biometry-touch-id@1.5x.png +0 -0
- package/src/images/assets/biometry-touch-id@2x.png +0 -0
- package/src/images/assets/biometry-touch-id@3x.png +0 -0
- package/src/images/assets/biometry-touch-id@4x.png +0 -0
- package/src/images/assets/celo-education-1.png +0 -0
- package/src/images/assets/celo-education-1@1.5x.png +0 -0
- package/src/images/assets/celo-education-1@2x.png +0 -0
- package/src/images/assets/celo-education-1@3x.png +0 -0
- package/src/images/assets/celo-education-1@4x.png +0 -0
- package/src/images/assets/celo-education-2.png +0 -0
- package/src/images/assets/celo-education-2@1.5x.png +0 -0
- package/src/images/assets/celo-education-2@2x.png +0 -0
- package/src/images/assets/celo-education-2@3x.png +0 -0
- package/src/images/assets/celo-education-2@4x.png +0 -0
- package/src/images/assets/celo-education-3.png +0 -0
- package/src/images/assets/celo-education-3@1.5x.png +0 -0
- package/src/images/assets/celo-education-3@2x.png +0 -0
- package/src/images/assets/celo-education-3@3x.png +0 -0
- package/src/images/assets/celo-education-3@4x.png +0 -0
- package/src/images/assets/celo-education-4.png +0 -0
- package/src/images/assets/celo-education-4@1.5x.png +0 -0
- package/src/images/assets/celo-education-4@2x.png +0 -0
- package/src/images/assets/celo-education-4@3x.png +0 -0
- package/src/images/assets/celo-education-4@4x.png +0 -0
- package/src/images/assets/earn-card-background.png +0 -0
- package/src/images/assets/earn-card-background@1.5x.png +0 -0
- package/src/images/assets/earn-card-background@2x.png +0 -0
- package/src/images/assets/earn-card-background@3x.png +0 -0
- package/src/images/assets/earn-card-background@4x.png +0 -0
- package/src/images/assets/email.png +0 -0
- package/src/images/assets/email@1.5x.png +0 -0
- package/src/images/assets/email@2x.png +0 -0
- package/src/images/assets/email@3x.png +0 -0
- package/src/images/assets/email@4x.png +0 -0
- package/src/images/assets/fiat-exchange.png +0 -0
- package/src/images/assets/fiat-exchange@1.5x.png +0 -0
- package/src/images/assets/fiat-exchange@2x.png +0 -0
- package/src/images/assets/fiat-exchange@3x.png +0 -0
- package/src/images/assets/fiat-exchange@4x.png +0 -0
- package/src/images/assets/get-verified.png +0 -0
- package/src/images/assets/get-verified@1.5x.png +0 -0
- package/src/images/assets/get-verified@2x.png +0 -0
- package/src/images/assets/get-verified@3x.png +0 -0
- package/src/images/assets/get-verified@4x.png +0 -0
- package/src/images/assets/learn-celo.png +0 -0
- package/src/images/assets/learn-celo@1.5x.png +0 -0
- package/src/images/assets/learn-celo@2x.png +0 -0
- package/src/images/assets/learn-celo@3x.png +0 -0
- package/src/images/assets/learn-celo@4x.png +0 -0
- package/src/images/assets/pie.png +0 -0
- package/src/images/assets/pie@1.5x.png +0 -0
- package/src/images/assets/pie@2x.png +0 -0
- package/src/images/assets/pie@3x.png +0 -0
- package/src/images/assets/pie@4x.png +0 -0
- package/src/images/assets/points-card-background.png +0 -0
- package/src/images/assets/points-card-background@1.5x.png +0 -0
- package/src/images/assets/points-card-background@2x.png +0 -0
- package/src/images/assets/points-card-background@3x.png +0 -0
- package/src/images/assets/points-card-background@4x.png +0 -0
- package/src/images/assets/points-illustration.png +0 -0
- package/src/images/assets/points-illustration@1.5x.png +0 -0
- package/src/images/assets/points-illustration@2x.png +0 -0
- package/src/images/assets/points-illustration@3x.png +0 -0
- package/src/images/assets/points-illustration@4x.png +0 -0
- package/src/images/assets/wallet-safe.png +0 -0
- package/src/images/assets/wallet-safe@1.5x.png +0 -0
- package/src/images/assets/wallet-safe@2x.png +0 -0
- package/src/images/assets/wallet-safe@3x.png +0 -0
- package/src/images/assets/wallet-safe@4x.png +0 -0
- package/src/import/ImportWallet.test.tsx +102 -0
- package/src/import/ImportWallet.tsx +277 -0
- package/src/import/actions.ts +41 -0
- package/src/import/reducer.ts +28 -0
- package/src/import/saga.test.ts +165 -0
- package/src/import/saga.ts +250 -0
- package/src/in-house-liquidity/client.test.ts +34 -0
- package/src/in-house-liquidity/client.ts +38 -0
- package/src/in-house-liquidity/index.test.ts +258 -0
- package/src/in-house-liquidity/index.ts +187 -0
- package/src/index.d.ts +25 -0
- package/src/jumpstart/JumpstartTransactionDetailsScreen.test.tsx +329 -0
- package/src/jumpstart/JumpstartTransactionDetailsScreen.tsx +407 -0
- package/src/jumpstart/fetchClaimStatus.ts +46 -0
- package/src/jumpstart/saga.test.ts +117 -0
- package/src/jumpstart/saga.ts +82 -0
- package/src/jumpstart/selectors.ts +5 -0
- package/src/jumpstart/slice.test.ts +51 -0
- package/src/jumpstart/slice.ts +64 -0
- package/src/keylessBackup/EnvelopeIcon.tsx +19 -0
- package/src/keylessBackup/KeylessBackupCancelButton.test.tsx +55 -0
- package/src/keylessBackup/KeylessBackupCancelButton.tsx +26 -0
- package/src/keylessBackup/KeylessBackupIntro.test.tsx +76 -0
- package/src/keylessBackup/KeylessBackupIntro.tsx +175 -0
- package/src/keylessBackup/KeylessBackupPhoneCodeInput.test.tsx +256 -0
- package/src/keylessBackup/KeylessBackupPhoneCodeInput.tsx +257 -0
- package/src/keylessBackup/KeylessBackupPhoneInput.test.tsx +67 -0
- package/src/keylessBackup/KeylessBackupPhoneInput.tsx +203 -0
- package/src/keylessBackup/KeylessBackupProgress.test.tsx +371 -0
- package/src/keylessBackup/KeylessBackupProgress.tsx +495 -0
- package/src/keylessBackup/LinkPhoneNumber.test.tsx +57 -0
- package/src/keylessBackup/LinkPhoneNumber.tsx +107 -0
- package/src/keylessBackup/SignInWithEmail.test.tsx +271 -0
- package/src/keylessBackup/SignInWithEmail.tsx +348 -0
- package/src/keylessBackup/SmartphoneIcon.tsx +19 -0
- package/src/keylessBackup/WalletSecurityPrimer.test.tsx +31 -0
- package/src/keylessBackup/WalletSecurityPrimer.tsx +81 -0
- package/src/keylessBackup/encryption.test.ts +139 -0
- package/src/keylessBackup/encryption.ts +121 -0
- package/src/keylessBackup/hooks.ts +179 -0
- package/src/keylessBackup/index.test.ts +204 -0
- package/src/keylessBackup/index.ts +98 -0
- package/src/keylessBackup/keychain.test.ts +55 -0
- package/src/keylessBackup/keychain.ts +30 -0
- package/src/keylessBackup/saga.test.ts +427 -0
- package/src/keylessBackup/saga.ts +264 -0
- package/src/keylessBackup/selectors.ts +8 -0
- package/src/keylessBackup/slice.ts +108 -0
- package/src/keylessBackup/types.ts +25 -0
- package/src/keylessBackup/web3auth.test.ts +74 -0
- package/src/keylessBackup/web3auth.ts +54 -0
- package/src/language/Language.test.tsx +41 -0
- package/src/language/Language.tsx +99 -0
- package/src/localCurrency/SelectLocalCurrency.test.tsx +19 -0
- package/src/localCurrency/SelectLocalCurrency.tsx +83 -0
- package/src/localCurrency/actions.ts +49 -0
- package/src/localCurrency/consts.test.ts +9 -0
- package/src/localCurrency/consts.ts +97 -0
- package/src/localCurrency/convert.test.ts +30 -0
- package/src/localCurrency/convert.ts +66 -0
- package/src/localCurrency/hooks.test.tsx +146 -0
- package/src/localCurrency/hooks.ts +47 -0
- package/src/localCurrency/reducer.ts +59 -0
- package/src/localCurrency/saga.test.ts +34 -0
- package/src/localCurrency/saga.ts +61 -0
- package/src/localCurrency/selectors.test.ts +47 -0
- package/src/localCurrency/selectors.ts +66 -0
- package/src/localCurrency/types.ts +6 -0
- package/src/missingGlobals.ts +21 -0
- package/src/nameGenerator/index.test.ts +46 -0
- package/src/nameGenerator/index.ts +17 -0
- package/src/nameGenerator/names.ts +938 -0
- package/src/navigator/DemoModeAuthBlock.test.tsx +60 -0
- package/src/navigator/DemoModeAuthBlock.tsx +61 -0
- package/src/navigator/DemoModeChipIndicator.test.tsx +109 -0
- package/src/navigator/DemoModeChipIndicator.tsx +76 -0
- package/src/navigator/Headers.tsx +263 -0
- package/src/navigator/NavigationService.test.tsx +74 -0
- package/src/navigator/NavigationService.ts +244 -0
- package/src/navigator/Navigator.tsx +760 -0
- package/src/navigator/NavigatorWrapper.test.tsx +65 -0
- package/src/navigator/NavigatorWrapper.tsx +248 -0
- package/src/navigator/QRNavigator.test.tsx +61 -0
- package/src/navigator/QRNavigator.tsx +144 -0
- package/src/navigator/Screens.tsx +107 -0
- package/src/navigator/ScrollAwareHeader.tsx +57 -0
- package/src/navigator/SettingsMenu.test.tsx +253 -0
- package/src/navigator/SettingsMenu.tsx +353 -0
- package/src/navigator/TabNavigator.test.tsx +181 -0
- package/src/navigator/TabNavigator.tsx +142 -0
- package/src/navigator/TopBarButton.test.tsx +44 -0
- package/src/navigator/TopBarButton.tsx +88 -0
- package/src/navigator/TopBarIconButtonV2.test.tsx +17 -0
- package/src/navigator/TopBarIconButtonV2.tsx +85 -0
- package/src/navigator/initialRoute.test.tsx +32 -0
- package/src/navigator/initialRoute.tsx +29 -0
- package/src/navigator/types.tsx +346 -0
- package/src/networkInfo/actions.ts +28 -0
- package/src/networkInfo/reducer.ts +44 -0
- package/src/networkInfo/saga.test.ts +43 -0
- package/src/networkInfo/saga.ts +100 -0
- package/src/networkInfo/selectors.ts +4 -0
- package/src/nfts/NftMedia.test.tsx +114 -0
- package/src/nfts/NftMedia.tsx +205 -0
- package/src/nfts/NftsInfoCarousel.test.tsx +218 -0
- package/src/nfts/NftsInfoCarousel.tsx +344 -0
- package/src/nfts/NftsLoadError.test.tsx +37 -0
- package/src/nfts/NftsLoadError.tsx +111 -0
- package/src/nfts/saga.test.tsx +502 -0
- package/src/nfts/saga.ts +198 -0
- package/src/nfts/selectors.ts +13 -0
- package/src/nfts/slice.ts +45 -0
- package/src/nfts/types.ts +51 -0
- package/src/notifications/NotificationList.test.tsx +25 -0
- package/src/notifications/NotificationList.tsx +45 -0
- package/src/notifications/__snapshots__/NotificationList.test.tsx.snap +35 -0
- package/src/notifications/types.ts +31 -0
- package/src/onboarding/LanguageButton.tsx +26 -0
- package/src/onboarding/TopBarTextButtonOnboarding.test.tsx +22 -0
- package/src/onboarding/TopBarTextButtonOnboarding.tsx +17 -0
- package/src/onboarding/actions.ts +46 -0
- package/src/onboarding/registration/EnableBiometry.test.tsx +168 -0
- package/src/onboarding/registration/EnableBiometry.tsx +207 -0
- package/src/onboarding/registration/ImportSelect.test.tsx +54 -0
- package/src/onboarding/registration/ImportSelect.tsx +167 -0
- package/src/onboarding/registration/OnboardingRecoveryPhrase.test.tsx +83 -0
- package/src/onboarding/registration/OnboardingRecoveryPhrase.tsx +197 -0
- package/src/onboarding/registration/ProtectWallet.test.tsx +96 -0
- package/src/onboarding/registration/ProtectWallet.tsx +153 -0
- package/src/onboarding/registration/RegulatoryTerms.test.tsx +75 -0
- package/src/onboarding/registration/RegulatoryTerms.tsx +174 -0
- package/src/onboarding/registration/SelectCountry.test.tsx +51 -0
- package/src/onboarding/registration/SelectCountry.tsx +88 -0
- package/src/onboarding/registration/SelectCountryItem.tsx +59 -0
- package/src/onboarding/steps.test.ts +464 -0
- package/src/onboarding/steps.ts +303 -0
- package/src/onboarding/success/OnboardingSuccessScreen.tsx +64 -0
- package/src/onboarding/types.ts +14 -0
- package/src/onboarding/welcome/Welcome.test.tsx +234 -0
- package/src/onboarding/welcome/Welcome.tsx +182 -0
- package/src/pincode/PasswordCache.ts +71 -0
- package/src/pincode/Pincode.tsx +109 -0
- package/src/pincode/PincodeDisplay.tsx +92 -0
- package/src/pincode/PincodeEnter.test.tsx +85 -0
- package/src/pincode/PincodeEnter.tsx +103 -0
- package/src/pincode/PincodeLock.test.tsx +144 -0
- package/src/pincode/PincodeLock.tsx +121 -0
- package/src/pincode/PincodeSet.test.tsx +213 -0
- package/src/pincode/PincodeSet.tsx +263 -0
- package/src/pincode/authentication.test.ts +654 -0
- package/src/pincode/authentication.ts +425 -0
- package/src/points/ActivityCard.test.tsx +63 -0
- package/src/points/ActivityCard.tsx +101 -0
- package/src/points/ActivityCardSection.tsx +126 -0
- package/src/points/PointsDiscoverCard.test.tsx +106 -0
- package/src/points/PointsDiscoverCard.tsx +122 -0
- package/src/points/PointsHistoryBottomSheet.test.tsx +179 -0
- package/src/points/PointsHistoryBottomSheet.tsx +264 -0
- package/src/points/PointsHome.test.tsx +230 -0
- package/src/points/PointsHome.tsx +357 -0
- package/src/points/PointsIntro.test.tsx +67 -0
- package/src/points/PointsIntro.tsx +85 -0
- package/src/points/cardDefinitions.tsx +94 -0
- package/src/points/cardSort.test.ts +58 -0
- package/src/points/cardSort.ts +18 -0
- package/src/points/saga.test.ts +769 -0
- package/src/points/saga.ts +379 -0
- package/src/points/selectors.test.ts +73 -0
- package/src/points/selectors.ts +68 -0
- package/src/points/slice.test.ts +76 -0
- package/src/points/slice.ts +164 -0
- package/src/points/types.ts +94 -0
- package/src/positions/HooksPreviewModeBanner.test.tsx +56 -0
- package/src/positions/HooksPreviewModeBanner.tsx +69 -0
- package/src/positions/actions.ts +11 -0
- package/src/positions/getPositionBalanceUsd.ts +14 -0
- package/src/positions/saga.test.ts +468 -0
- package/src/positions/saga.ts +378 -0
- package/src/positions/selectors.test.ts +281 -0
- package/src/positions/selectors.ts +189 -0
- package/src/positions/slice.ts +219 -0
- package/src/positions/transactions.ts +21 -0
- package/src/positions/types.ts +137 -0
- package/src/priceHistory/PriceHistoryChart.test.tsx +200 -0
- package/src/priceHistory/PriceHistoryChart.tsx +345 -0
- package/src/priceHistory/__snapshots__/PriceHistoryChart.test.tsx.snap +419 -0
- package/src/priceHistory/saga.test.ts +120 -0
- package/src/priceHistory/saga.ts +62 -0
- package/src/priceHistory/selectors.test.ts +52 -0
- package/src/priceHistory/selectors.ts +17 -0
- package/src/priceHistory/slice.test.ts +94 -0
- package/src/priceHistory/slice.ts +68 -0
- package/src/public/components/Button.tsx +66 -0
- package/src/public/createApp.ts +67 -0
- package/src/public/getFees.test.ts +24 -0
- package/src/public/getFees.ts +8 -0
- package/src/public/getPublicClient.test.ts +19 -0
- package/src/public/getPublicClient.ts +25 -0
- package/src/public/getWalletClient.test.ts +30 -0
- package/src/public/getWalletClient.ts +32 -0
- package/src/public/hooks/toAsyncStatus.ts +19 -0
- package/src/public/hooks/usePrepareTransactions.test.ts +63 -0
- package/src/public/hooks/usePrepareTransactions.ts +15 -0
- package/src/public/hooks/usePublicClient.test.ts +24 -0
- package/src/public/hooks/usePublicClient.ts +7 -0
- package/src/public/hooks/useSendTransactions.test.ts +49 -0
- package/src/public/hooks/useSendTransactions.ts +15 -0
- package/src/public/hooks/useWallet.ts +52 -0
- package/src/public/hooks/useWalletClient.test.ts +35 -0
- package/src/public/hooks/useWalletClient.ts +24 -0
- package/src/public/index.ts +29 -0
- package/src/public/navigate.test.ts +168 -0
- package/src/public/navigate.ts +168 -0
- package/src/public/prepareTransactions.test.ts +76 -0
- package/src/public/prepareTransactions.ts +78 -0
- package/src/public/sendTransactions.test.ts +37 -0
- package/src/public/sendTransactions.ts +25 -0
- package/src/public/types.tsx +278 -0
- package/src/public/unlockAccount.test.ts +79 -0
- package/src/public/unlockAccount.ts +43 -0
- package/src/qrcode/NotAuthorizedView.test.tsx +11 -0
- package/src/qrcode/NotAuthorizedView.tsx +47 -0
- package/src/qrcode/QRCode.test.tsx +117 -0
- package/src/qrcode/QRCode.tsx +190 -0
- package/src/qrcode/QRScanner.tsx +249 -0
- package/src/qrcode/QRTabBar.tsx +137 -0
- package/src/qrcode/StyledQRCode.tsx +31 -0
- package/src/qrcode/StyledQRGen.tsx +26 -0
- package/src/qrcode/__snapshots__/NotAuthorizedView.test.tsx.snap +90 -0
- package/src/qrcode/schema.test.ts +121 -0
- package/src/qrcode/schema.ts +45 -0
- package/src/qrcode/utils.test.tsx +293 -0
- package/src/qrcode/utils.ts +230 -0
- package/src/recaptcha/RecaptchaService.ts +105 -0
- package/src/recaptcha/saga.ts +24 -0
- package/src/recipients/RecipientItemV2.test.tsx +153 -0
- package/src/recipients/RecipientItemV2.tsx +142 -0
- package/src/recipients/RecipientPickerV2.test.tsx +110 -0
- package/src/recipients/RecipientPickerV2.tsx +61 -0
- package/src/recipients/recipient.test.ts +113 -0
- package/src/recipients/recipient.ts +313 -0
- package/src/recipients/reducer.ts +107 -0
- package/src/recipients/resolve-id.ts +21 -0
- package/src/recipients/saga.ts +87 -0
- package/src/redux/apiReducersList.ts +11 -0
- package/src/redux/createMigrate.test.ts +113 -0
- package/src/redux/createMigrate.ts +46 -0
- package/src/redux/hooks.ts +7 -0
- package/src/redux/migrations.test.ts +1925 -0
- package/src/redux/migrations.ts +2069 -0
- package/src/redux/persist-helper.ts +14 -0
- package/src/redux/reducers.ts +29 -0
- package/src/redux/reducersForSchemaGeneration.ts +20 -0
- package/src/redux/reducersList.ts +57 -0
- package/src/redux/sagas-helpers.ts +29 -0
- package/src/redux/sagas.test.ts +19 -0
- package/src/redux/sagas.ts +155 -0
- package/src/redux/selectors.ts +3 -0
- package/src/redux/store.test.ts +391 -0
- package/src/redux/store.ts +151 -0
- package/src/send/EnterAmount.test.tsx +1030 -0
- package/src/send/EnterAmount.tsx +360 -0
- package/src/send/EnterAmountOptions.tsx +170 -0
- package/src/send/PasteAddressButton.tsx +81 -0
- package/src/send/SelectRecipientButtons.test.tsx +256 -0
- package/src/send/SelectRecipientButtons.tsx +202 -0
- package/src/send/SendConfirmation.test.tsx +233 -0
- package/src/send/SendConfirmation.tsx +317 -0
- package/src/send/SendEnterAmount.test.tsx +235 -0
- package/src/send/SendEnterAmount.tsx +123 -0
- package/src/send/SendSelectRecipient.test.tsx +765 -0
- package/src/send/SendSelectRecipient.tsx +504 -0
- package/src/send/SendSelectRecipientSearchInput.tsx +72 -0
- package/src/send/ValidateRecipientAccount.test.tsx +181 -0
- package/src/send/ValidateRecipientAccount.tsx +387 -0
- package/src/send/ValidateRecipientIntro.test.tsx +61 -0
- package/src/send/ValidateRecipientIntro.tsx +136 -0
- package/src/send/__snapshots__/ValidateRecipientAccount.test.tsx.snap +777 -0
- package/src/send/actions.ts +142 -0
- package/src/send/hooks.test.tsx +371 -0
- package/src/send/hooks.ts +445 -0
- package/src/send/reducers.ts +90 -0
- package/src/send/saga.test.ts +247 -0
- package/src/send/saga.ts +176 -0
- package/src/send/selectors.ts +22 -0
- package/src/send/types.ts +18 -0
- package/src/send/useFetchRecipientVerificationStatus.ts +67 -0
- package/src/send/usePrepareSendTransactions.test.ts +135 -0
- package/src/send/usePrepareSendTransactions.ts +69 -0
- package/src/send/utils.test.ts +361 -0
- package/src/send/utils.ts +116 -0
- package/src/sendCalls/constants.ts +11 -0
- package/src/sendCalls/saga.test.ts +31 -0
- package/src/sendCalls/saga.ts +15 -0
- package/src/sendCalls/selectors.test.ts +40 -0
- package/src/sendCalls/selectors.ts +8 -0
- package/src/sendCalls/slice.test.ts +85 -0
- package/src/sendCalls/slice.ts +72 -0
- package/src/sentry/Sentry.ts +75 -0
- package/src/sentry/SentrySpanHub.ts +27 -0
- package/src/sentry/SentrySpans.tsx +57 -0
- package/src/sentry/actions.ts +11 -0
- package/src/sentry/saga.ts +8 -0
- package/src/shared/DisconnectBanner.test.tsx +25 -0
- package/src/shared/DisconnectBanner.tsx +81 -0
- package/src/shared/__snapshots__/DisconnectBanner.test.tsx.snap +29 -0
- package/src/shared/conts.ts +16 -0
- package/src/statsig/client.test.ts +62 -0
- package/src/statsig/client.ts +97 -0
- package/src/statsig/constants.ts +177 -0
- package/src/statsig/index.test.ts +351 -0
- package/src/statsig/index.ts +186 -0
- package/src/statsig/selector.ts +17 -0
- package/src/statsig/types.ts +52 -0
- package/src/storage/keychain.tsx +92 -0
- package/src/styles/accessibility.ts +7 -0
- package/src/styles/appTheme.ts +13 -0
- package/src/styles/colors.tsx +78 -0
- package/src/styles/fonts.tsx +143 -0
- package/src/styles/hapticFeedback.ts +27 -0
- package/src/styles/progressDots.ts +23 -0
- package/src/styles/styles.ts +67 -0
- package/src/styles/variables.tsx +16 -0
- package/src/swap/SwapAmountInput.tsx +228 -0
- package/src/swap/SwapScreen.test.tsx +1927 -0
- package/src/swap/SwapScreen.tsx +1156 -0
- package/src/swap/SwapScreenV2.test.tsx +2180 -0
- package/src/swap/SwapScreenV2.tsx +1201 -0
- package/src/swap/SwapTransactionDetails.test.tsx +217 -0
- package/src/swap/SwapTransactionDetails.tsx +274 -0
- package/src/swap/UnfavorableRateBottomSheet.test.tsx +150 -0
- package/src/swap/UnfavorableRateBottomSheet.tsx +288 -0
- package/src/swap/getCrossChainFee.ts +64 -0
- package/src/swap/getSwapTxsAnalyticsProperties.tsx +49 -0
- package/src/swap/saga.test.ts +863 -0
- package/src/swap/saga.ts +324 -0
- package/src/swap/selectors.ts +5 -0
- package/src/swap/slice.test.ts +133 -0
- package/src/swap/slice.ts +93 -0
- package/src/swap/types.ts +98 -0
- package/src/swap/useFilterChips.ts +69 -0
- package/src/swap/useSwapQuote.ts +292 -0
- package/src/tokens/AssetList.test.tsx +270 -0
- package/src/tokens/AssetList.tsx +388 -0
- package/src/tokens/AssetTabBar.test.tsx +130 -0
- package/src/tokens/AssetTabBar.tsx +106 -0
- package/src/tokens/PasteButton.test.tsx +30 -0
- package/src/tokens/PasteButton.tsx +34 -0
- package/src/tokens/PositionIcon.tsx +22 -0
- package/src/tokens/PositionItem.test.tsx +132 -0
- package/src/tokens/PositionItem.tsx +131 -0
- package/src/tokens/TabWallet.test.tsx +386 -0
- package/src/tokens/TabWallet.tsx +237 -0
- package/src/tokens/TokenBalanceItem.test.tsx +119 -0
- package/src/tokens/TokenBalanceItem.tsx +143 -0
- package/src/tokens/TokenDetails.test.tsx +476 -0
- package/src/tokens/TokenDetails.tsx +391 -0
- package/src/tokens/TokenDetailsMoreActions.test.tsx +120 -0
- package/src/tokens/TokenDetailsMoreActions.tsx +87 -0
- package/src/tokens/TokenImport.test.tsx +376 -0
- package/src/tokens/TokenImport.tsx +381 -0
- package/src/tokens/hooks.test.tsx +419 -0
- package/src/tokens/hooks.ts +164 -0
- package/src/tokens/saga.test.ts +527 -0
- package/src/tokens/saga.ts +248 -0
- package/src/tokens/selectors.test.ts +888 -0
- package/src/tokens/selectors.ts +516 -0
- package/src/tokens/slice.ts +173 -0
- package/src/tokens/types.ts +29 -0
- package/src/tokens/utils.test.tsx +330 -0
- package/src/tokens/utils.ts +218 -0
- package/src/transactions/NoActivity.test.tsx +30 -0
- package/src/transactions/NoActivity.tsx +73 -0
- package/src/transactions/TransferAvatars.tsx +39 -0
- package/src/transactions/UserSection.tsx +133 -0
- package/src/transactions/api.ts +67 -0
- package/src/transactions/apiTestHelpers.ts +55 -0
- package/src/transactions/feed/ClaimRewardFeedItem.test.tsx +164 -0
- package/src/transactions/feed/ClaimRewardFeedItem.tsx +142 -0
- package/src/transactions/feed/DepositOrWithdrawFeedItem.test.tsx +138 -0
- package/src/transactions/feed/DepositOrWithdrawFeedItem.tsx +178 -0
- package/src/transactions/feed/EarnFeedItem.test.tsx +189 -0
- package/src/transactions/feed/EarnFeedItem.tsx +190 -0
- package/src/transactions/feed/NftFeedItem.test.tsx +102 -0
- package/src/transactions/feed/NftFeedItem.tsx +99 -0
- package/src/transactions/feed/SwapFeedItem.test.tsx +137 -0
- package/src/transactions/feed/SwapFeedItem.tsx +128 -0
- package/src/transactions/feed/TokenApprovalFeedItem.test.tsx +37 -0
- package/src/transactions/feed/TokenApprovalFeedItem.tsx +59 -0
- package/src/transactions/feed/TransactionDetails.tsx +160 -0
- package/src/transactions/feed/TransactionDetailsScreen.test.tsx +1228 -0
- package/src/transactions/feed/TransactionDetailsScreen.tsx +157 -0
- package/src/transactions/feed/TransactionFeed.test.tsx +474 -0
- package/src/transactions/feed/TransactionFeed.tsx +172 -0
- package/src/transactions/feed/TransactionFeedItemImage.test.tsx +66 -0
- package/src/transactions/feed/TransactionFeedItemImage.tsx +116 -0
- package/src/transactions/feed/TransactionFeedV2.test.tsx +576 -0
- package/src/transactions/feed/TransactionFeedV2.tsx +504 -0
- package/src/transactions/feed/TransactionPrimaryAction.test.tsx +62 -0
- package/src/transactions/feed/TransactionPrimaryAction.tsx +83 -0
- package/src/transactions/feed/TransactionStatusIndicator.test.tsx +15 -0
- package/src/transactions/feed/TransactionStatusIndicator.tsx +63 -0
- package/src/transactions/feed/TransferFeedItem.test.tsx +579 -0
- package/src/transactions/feed/TransferFeedItem.tsx +148 -0
- package/src/transactions/feed/detailContent/ClaimRewardContent.tsx +84 -0
- package/src/transactions/feed/detailContent/DepositOrWithdrawContent.tsx +169 -0
- package/src/transactions/feed/detailContent/EarnContent.tsx +259 -0
- package/src/transactions/feed/detailContent/FeeRowItem.tsx +90 -0
- package/src/transactions/feed/detailContent/RewardReceivedContent.tsx +46 -0
- package/src/transactions/feed/detailContent/SwapContent.tsx +127 -0
- package/src/transactions/feed/detailContent/TokenApprovalDetails.tsx +59 -0
- package/src/transactions/feed/detailContent/TransferReceivedContent.tsx +73 -0
- package/src/transactions/feed/detailContent/TransferSentContent.tsx +117 -0
- package/src/transactions/feed/queryHelper.test.ts +229 -0
- package/src/transactions/feed/queryHelper.ts +941 -0
- package/src/transactions/saga.test.ts +482 -0
- package/src/transactions/saga.ts +322 -0
- package/src/transactions/selectors.ts +120 -0
- package/src/transactions/send.test.ts +29 -0
- package/src/transactions/send.ts +51 -0
- package/src/transactions/slice.test.ts +372 -0
- package/src/transactions/slice.ts +262 -0
- package/src/transactions/transferFeedUtils.ts +225 -0
- package/src/transactions/types.ts +355 -0
- package/src/transactions/utils.test.ts +98 -0
- package/src/transactions/utils.ts +122 -0
- package/src/utils/AppRestart.ts +12 -0
- package/src/utils/Countries.test.ts +180 -0
- package/src/utils/Countries.ts +121 -0
- package/src/utils/IosVersionUtils.ts +6 -0
- package/src/utils/Logger.test.ts +113 -0
- package/src/utils/Logger.ts +304 -0
- package/src/utils/LoggerLevels.ts +6 -0
- package/src/utils/account.test.ts +390 -0
- package/src/utils/account.ts +497 -0
- package/src/utils/accountChecker.test.ts +75 -0
- package/src/utils/accountChecker.ts +77 -0
- package/src/utils/address.test.ts +62 -0
- package/src/utils/address.ts +34 -0
- package/src/utils/aes.test.ts +36 -0
- package/src/utils/aes.ts +46 -0
- package/src/utils/contacts.ts +78 -0
- package/src/utils/contentTranslations.ts +18 -0
- package/src/utils/country.json +257 -0
- package/src/utils/countryFeatures.ts +21 -0
- package/src/utils/currencies.ts +72 -0
- package/src/utils/displayFormatting.ts +11 -0
- package/src/utils/ensureError.test.ts +32 -0
- package/src/utils/ensureError.ts +13 -0
- package/src/utils/fetchWithTimeout.test.ts +55 -0
- package/src/utils/fetchWithTimeout.ts +15 -0
- package/src/utils/formatting.test.ts +93 -0
- package/src/utils/formatting.ts +107 -0
- package/src/utils/getCountryEmoji.ts +28 -0
- package/src/utils/getPhoneHash.ts +29 -0
- package/src/utils/gql.ts +8 -0
- package/src/utils/identifier.ts +81 -0
- package/src/utils/inputValidation.test.ts +53 -0
- package/src/utils/inputValidation.ts +76 -0
- package/src/utils/io.ts +39 -0
- package/src/utils/linking.ts +42 -0
- package/src/utils/moneyAmount.ts +16 -0
- package/src/utils/parsing.test.ts +30 -0
- package/src/utils/parsing.ts +20 -0
- package/src/utils/phoneNumber.test.ts +236 -0
- package/src/utils/phoneNumbers.ts +240 -0
- package/src/utils/random.test.ts +53 -0
- package/src/utils/random.ts +48 -0
- package/src/utils/safely.test.ts +101 -0
- package/src/utils/safely.ts +30 -0
- package/src/utils/sleep.ts +3 -0
- package/src/utils/string.ts +8 -0
- package/src/utils/stylize.ts +30 -0
- package/src/utils/time.test.ts +76 -0
- package/src/utils/time.ts +99 -0
- package/src/utils/typescript.ts +38 -0
- package/src/utils/useBackHandler.ts +10 -0
- package/src/utils/useClipboard.ts +56 -0
- package/src/utils/versionCheck.test.ts +47 -0
- package/src/utils/versionCheck.ts +35 -0
- package/src/verify/ResendButtonWithDelay.tsx +56 -0
- package/src/verify/VerificationCodeInput.test.tsx +87 -0
- package/src/verify/VerificationCodeInput.tsx +103 -0
- package/src/verify/VerificationCodeInputScreen.test.tsx +364 -0
- package/src/verify/VerificationCodeInputScreen.tsx +138 -0
- package/src/verify/VerificationStartScreen.test.tsx +218 -0
- package/src/verify/VerificationStartScreen.tsx +311 -0
- package/src/verify/hooks.test.tsx +85 -0
- package/src/verify/hooks.ts +261 -0
- package/src/viem/estimateFeesPerGas.test.ts +129 -0
- package/src/viem/estimateFeesPerGas.ts +70 -0
- package/src/viem/getLockableWallet.test.ts +263 -0
- package/src/viem/getLockableWallet.ts +120 -0
- package/src/viem/index.ts +86 -0
- package/src/viem/keychainAccountToAccount.test.ts +55 -0
- package/src/viem/keychainAccountToAccount.ts +58 -0
- package/src/viem/prepareTransactions.test.ts +1668 -0
- package/src/viem/prepareTransactions.ts +741 -0
- package/src/viem/preparedTransactionSerialization.test.ts +192 -0
- package/src/viem/preparedTransactionSerialization.ts +100 -0
- package/src/viem/saga.test.ts +227 -0
- package/src/viem/saga.ts +118 -0
- package/src/walletConnect/actions.test.ts +94 -0
- package/src/walletConnect/actions.ts +232 -0
- package/src/walletConnect/analytics.ts +58 -0
- package/src/walletConnect/capabilities.ts +175 -0
- package/src/walletConnect/constants.ts +157 -0
- package/src/walletConnect/reducer.ts +105 -0
- package/src/walletConnect/request.test.ts +698 -0
- package/src/walletConnect/request.ts +225 -0
- package/src/walletConnect/saga.test.ts +1875 -0
- package/src/walletConnect/saga.ts +1159 -0
- package/src/walletConnect/screens/ActionRequest.test.tsx +727 -0
- package/src/walletConnect/screens/ActionRequest.tsx +227 -0
- package/src/walletConnect/screens/ActionRequestPayload.tsx +84 -0
- package/src/walletConnect/screens/ConnectionTimedOut.tsx +34 -0
- package/src/walletConnect/screens/DappsDisclaimer.tsx +31 -0
- package/src/walletConnect/screens/EstimatedNetworkFee.test.tsx +88 -0
- package/src/walletConnect/screens/EstimatedNetworkFee.tsx +134 -0
- package/src/walletConnect/screens/Logos.tsx +89 -0
- package/src/walletConnect/screens/RequestContent.tsx +224 -0
- package/src/walletConnect/screens/SessionRequest.test.tsx +274 -0
- package/src/walletConnect/screens/SessionRequest.tsx +221 -0
- package/src/walletConnect/screens/Sessions.tsx +142 -0
- package/src/walletConnect/screens/WalletConnectRequest.tsx +63 -0
- package/src/walletConnect/screens/useIsDappListed.test.tsx +51 -0
- package/src/walletConnect/screens/useIsDappListed.ts +20 -0
- package/src/walletConnect/selectors.ts +25 -0
- package/src/walletConnect/types.ts +99 -0
- package/src/walletConnect/walletConnect.ts +87 -0
- package/src/web3/KeychainAccounts.test.ts +326 -0
- package/src/web3/KeychainAccounts.ts +309 -0
- package/src/web3/actions.ts +30 -0
- package/src/web3/consts.ts +8 -0
- package/src/web3/contracts.test.ts +115 -0
- package/src/web3/contracts.ts +74 -0
- package/src/web3/networkConfig.test.ts +18 -0
- package/src/web3/networkConfig.ts +621 -0
- package/src/web3/reducer.ts +39 -0
- package/src/web3/saga.test.ts +200 -0
- package/src/web3/saga.ts +229 -0
- package/src/web3/selectors.ts +47 -0
- package/src/web3/utils.test.ts +12 -0
- package/src/web3/utils.ts +11 -0
- package/src/webview/WebViewAndroidBottomSheet.test.tsx +58 -0
- package/src/webview/WebViewAndroidBottomSheet.tsx +83 -0
- package/src/webview/WebViewScreen.test.tsx +84 -0
- package/src/webview/WebViewScreen.tsx +296 -0
- package/src/webview/__snapshots__/WebViewAndroidBottomSheet.test.tsx.snap +249 -0
- package/tsconfig.base.json +5 -0
- package/tsconfig.json +30 -0
|
@@ -0,0 +1,675 @@
|
|
|
1
|
+
import { AnalyticsEventType } from 'src/analytics/Properties'
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
AppEvents,
|
|
5
|
+
AssetsEvents,
|
|
6
|
+
AuthenticationEvents,
|
|
7
|
+
BuilderHooksEvents,
|
|
8
|
+
CeloExchangeEvents,
|
|
9
|
+
CeloNewsEvents,
|
|
10
|
+
CoinbasePayEvents,
|
|
11
|
+
ContractKitEvents,
|
|
12
|
+
DappExplorerEvents,
|
|
13
|
+
DappShortcutsEvents,
|
|
14
|
+
EarnEvents,
|
|
15
|
+
FeeEvents,
|
|
16
|
+
FiatExchangeEvents,
|
|
17
|
+
HomeEvents,
|
|
18
|
+
IdentityEvents,
|
|
19
|
+
JumpstartEvents,
|
|
20
|
+
KeylessBackupEvents,
|
|
21
|
+
NavigationEvents,
|
|
22
|
+
NftEvents,
|
|
23
|
+
OnboardingEvents,
|
|
24
|
+
PerformanceEvents,
|
|
25
|
+
PhoneVerificationEvents,
|
|
26
|
+
PointsEvents,
|
|
27
|
+
PrivateKeyEvents,
|
|
28
|
+
QrScreenEvents,
|
|
29
|
+
SendEvents,
|
|
30
|
+
SettingsEvents,
|
|
31
|
+
SwapEvents,
|
|
32
|
+
TokenBottomSheetEvents,
|
|
33
|
+
TransactionDetailsEvents,
|
|
34
|
+
TransactionEvents,
|
|
35
|
+
WalletConnectEvents,
|
|
36
|
+
WebViewEvents,
|
|
37
|
+
} from 'src/analytics/Events'
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Documentation for analytics events.
|
|
41
|
+
*
|
|
42
|
+
* Intentionally causes compilation errors if any analytics events are omitted (to remind us to document them).
|
|
43
|
+
*
|
|
44
|
+
* DO NOT add empty strings as descriptions! Some events have empty descriptions from before we used this to enforce
|
|
45
|
+
* documenting new events.
|
|
46
|
+
*/
|
|
47
|
+
export const eventDocs: Record<AnalyticsEventType, string> = {
|
|
48
|
+
[AppEvents.app_launched]: ``,
|
|
49
|
+
[AppEvents.app_state_error]: ``,
|
|
50
|
+
[AppEvents.error_displayed]: ``,
|
|
51
|
+
[AppEvents.error_fallback]: ``,
|
|
52
|
+
[AppEvents.user_restart]: ``,
|
|
53
|
+
[AppEvents.fetch_balance]: `when balances are fetched. occurs every 10 seconds on the transaction feed, or on-demand after events like completing a send`,
|
|
54
|
+
[AppEvents.fetch_balance_error]: ``,
|
|
55
|
+
[AppEvents.redux_keychain_mismatch]: `when the redux state doesn't contain the account found in the keychain`,
|
|
56
|
+
[AppEvents.redux_store_recovery_success]: ``,
|
|
57
|
+
[AppEvents.redux_no_matching_keychain_account]: `when account in redux has no matching password hash in the keychain`,
|
|
58
|
+
[AppEvents.push_notification_opened]: ``,
|
|
59
|
+
[AppEvents.push_notifications_permission_changed]: ``,
|
|
60
|
+
[AppEvents.android_mobile_services_checked]: ``,
|
|
61
|
+
[AppEvents.request_tracking_permission_started]: ``,
|
|
62
|
+
[AppEvents.request_tracking_permission_declined]: ``,
|
|
63
|
+
[AppEvents.request_tracking_permission_accepted]: ``,
|
|
64
|
+
[AppEvents.account_funded]: `Fired when user balance (total fiat value of all supported tokens) is above $0.01 USD and the last known balance value was less than this`,
|
|
65
|
+
[AppEvents.account_liquidated]: `Fired when user balance (total fiat value of all supported tokens) falls below $0.01 USD and the last known value was greater than this`,
|
|
66
|
+
[AppEvents.in_app_review_impression]: `User sees an in-app review request`,
|
|
67
|
+
[AppEvents.in_app_review_error]: `Error while attempting to display in-app review`,
|
|
68
|
+
[AppEvents.handle_deeplink]: `When a deeplink that leads into the app is detected and handled`,
|
|
69
|
+
[HomeEvents.account_circle_tapped]: `When the account circle used in the tab navigation is tapped`,
|
|
70
|
+
[HomeEvents.profile_address_copy]: `When a user copies their wallet address from the profile screen`,
|
|
71
|
+
[HomeEvents.notification_scroll]: ``,
|
|
72
|
+
[HomeEvents.notification_impression]: `When the notification appears on the user screen for the first time. Note that the format of the notificationId property for user generated notifications is $NotificationType/$Id, where the $Id can be filtered out with a fuzzy string match.`,
|
|
73
|
+
[HomeEvents.notification_select]: `When user taps on notification CTA(s). Note that the format of the notificationId property for user generated notifications is $NotificationType/$Id, where the $Id can be filtered out with a fuzzy string match.`,
|
|
74
|
+
[HomeEvents.notification_center_opened]: `when the notification center is opened`,
|
|
75
|
+
[HomeEvents.notification_center_spotlight_dismiss]: `when the user taps "got it" on the app update notification center spotlight`,
|
|
76
|
+
[HomeEvents.transaction_feed_item_select]: ``,
|
|
77
|
+
[HomeEvents.transaction_feed_address_copy]: ``,
|
|
78
|
+
[HomeEvents.view_token_balances]: ``,
|
|
79
|
+
[HomeEvents.home_action_pressed]: ``,
|
|
80
|
+
[HomeEvents.notification_bell_pressed]: ``,
|
|
81
|
+
[HomeEvents.hide_balances]: `When the eye icon is clicked to hide balances on the home screen`,
|
|
82
|
+
[HomeEvents.show_balances]: `When the crossed out eye icon is clicked to show balances on the home screen`,
|
|
83
|
+
[HomeEvents.nft_celebration_displayed]: `When user has seen an NFT celebration bottom sheet`,
|
|
84
|
+
[HomeEvents.nft_celebration_animation_displayed]: `When user has seen an NFT celebration confetti animation`,
|
|
85
|
+
[HomeEvents.nft_reward_accept]: `When user press "Use reward" button when presented with an NFT reward`,
|
|
86
|
+
[HomeEvents.nft_reward_dismiss]: `When user dismiss the bottom sheet when presented with an NFT reward`,
|
|
87
|
+
[HomeEvents.divvi_bottom_sheet_displayed]: `When the Divvi bottom sheet is displayed to the user`,
|
|
88
|
+
[HomeEvents.divvi_bottom_sheet_cta_pressed]: `When the user presses the CTA button in the Divvi bottom sheet.`,
|
|
89
|
+
[SettingsEvents.settings_profile_edit]: ``,
|
|
90
|
+
[SettingsEvents.profile_generate_name]: ``,
|
|
91
|
+
[SettingsEvents.profile_save]: ``,
|
|
92
|
+
[SettingsEvents.profile_cancel]: ``,
|
|
93
|
+
[SettingsEvents.profile_photo_chosen]: ``,
|
|
94
|
+
[SettingsEvents.profile_photo_removed]: ``,
|
|
95
|
+
[SettingsEvents.settings_verify_number]: ``,
|
|
96
|
+
[SettingsEvents.language_select]: ``,
|
|
97
|
+
[SettingsEvents.pin_require_on_load]: ``,
|
|
98
|
+
[SettingsEvents.licenses_view]: ``,
|
|
99
|
+
[SettingsEvents.tos_view]: ``,
|
|
100
|
+
[SettingsEvents.start_account_removal]: ``,
|
|
101
|
+
[SettingsEvents.completed_account_removal]: ``,
|
|
102
|
+
[SettingsEvents.change_pin_start]: ``,
|
|
103
|
+
[SettingsEvents.change_pin_current_pin_entered]: ``,
|
|
104
|
+
[SettingsEvents.change_pin_current_pin_error]: ``,
|
|
105
|
+
[SettingsEvents.change_pin_new_pin_entered]: ``,
|
|
106
|
+
[SettingsEvents.change_pin_new_pin_confirmed]: ``,
|
|
107
|
+
[SettingsEvents.change_pin_new_pin_error]: ``,
|
|
108
|
+
[SettingsEvents.settings_biometry_opt_in_enable]: ``,
|
|
109
|
+
[SettingsEvents.settings_biometry_opt_in_complete]: ``,
|
|
110
|
+
[SettingsEvents.settings_biometry_opt_in_error]: ``,
|
|
111
|
+
[SettingsEvents.settings_biometry_opt_in_disable]: ``,
|
|
112
|
+
// intentionally not tracking analytics opt in/out
|
|
113
|
+
// to avoid tracking through omission
|
|
114
|
+
[SettingsEvents.settings_recovery_phrase]: ``,
|
|
115
|
+
[SettingsEvents.settings_private_key]: ``,
|
|
116
|
+
[SettingsEvents.settings_haptic_feedback]: ``,
|
|
117
|
+
[SettingsEvents.settings_analytics]: ``,
|
|
118
|
+
[SettingsEvents.settings_revoke_phone_number]: ``,
|
|
119
|
+
[SettingsEvents.settings_revoke_phone_number_confirm]: ``,
|
|
120
|
+
[SettingsEvents.settings_delete_account]: `When the user taps on the Delete Account button in the settings screen`,
|
|
121
|
+
[SettingsEvents.settings_delete_account_confirm]: `When the user confirms they want to delete their account`,
|
|
122
|
+
[SettingsEvents.settings_set_up_keyless_backup]: ``,
|
|
123
|
+
[SettingsEvents.settings_delete_keyless_backup]: ``,
|
|
124
|
+
[KeylessBackupEvents.wallet_security_primer_get_started]: ``,
|
|
125
|
+
[KeylessBackupEvents.cab_setup_recovery_phrase]: `When the recovery phrase link is pressed in the setup wallet backup screen`,
|
|
126
|
+
[KeylessBackupEvents.cab_sign_in_another_way]: `When the sign in another way button is pressed in the setup wallet backup screen`,
|
|
127
|
+
[KeylessBackupEvents.cab_sign_in_start]: `When the user presses 'Sign in with Apple' or 'Sign in with Google'`,
|
|
128
|
+
[KeylessBackupEvents.cab_sign_in_success]: `When the user has successfully signed in with google or apple`,
|
|
129
|
+
[KeylessBackupEvents.cab_sign_in_with_email_screen_back]: `When the back button is pressed on the sign in with email screen`,
|
|
130
|
+
[KeylessBackupEvents.cab_sign_in_with_email_screen_cancel]: ``,
|
|
131
|
+
[KeylessBackupEvents.cab_sign_in_with_email_screen_skip]: `When the skip button is pressed on the sign in with email bottom sheet`,
|
|
132
|
+
[KeylessBackupEvents.cab_get_torus_keyshare_failed]: ``,
|
|
133
|
+
[KeylessBackupEvents.cab_enter_phone_number_back]: `When the back button is pressed on the phone input screen`,
|
|
134
|
+
[KeylessBackupEvents.cab_enter_phone_number_cancel]: `When the cancel button is pressed on the phone input screen`,
|
|
135
|
+
[KeylessBackupEvents.cab_enter_phone_number_continue]: ``,
|
|
136
|
+
[KeylessBackupEvents.cab_intro_continue]: `When the continue button is pressed on the keyless backup intro screen`,
|
|
137
|
+
[KeylessBackupEvents.cab_issue_sms_code_start]: ``,
|
|
138
|
+
[KeylessBackupEvents.cab_issue_sms_code_success]: ``,
|
|
139
|
+
[KeylessBackupEvents.cab_issue_sms_code_error]: ``,
|
|
140
|
+
[KeylessBackupEvents.cab_enter_phone_code_back]: `When the back button is pressed on the phone verification code input screen`,
|
|
141
|
+
[KeylessBackupEvents.cab_enter_phone_code_cancel]: `When the cancel button is pressed on the phone verification code input screen`,
|
|
142
|
+
[KeylessBackupEvents.cab_issue_app_keyshare_start]: ``,
|
|
143
|
+
[KeylessBackupEvents.cab_issue_app_keyshare_success]: ``,
|
|
144
|
+
[KeylessBackupEvents.cab_issue_app_keyshare_error]: ``,
|
|
145
|
+
[KeylessBackupEvents.cab_progress_completed_continue]: ``,
|
|
146
|
+
[KeylessBackupEvents.cab_progress_failed_later]: ``,
|
|
147
|
+
[KeylessBackupEvents.cab_progress_failed_manual]: ``,
|
|
148
|
+
[KeylessBackupEvents.cab_progress_failed_skip_onboarding]: ``,
|
|
149
|
+
[KeylessBackupEvents.cab_post_encrypted_mnemonic_failed]: ``,
|
|
150
|
+
[KeylessBackupEvents.cab_torus_keyshare_timeout]: ``,
|
|
151
|
+
[KeylessBackupEvents.cab_handle_keyless_backup_failed]: `When keyless backup fails to generate store encrypted mnemonic for setup or fails to retrieve and decrypt mnemonic for restore`,
|
|
152
|
+
[KeylessBackupEvents.cab_handle_keyless_backup_success]: `When keyless backup successfully saves encrypted mnemonic for setup or successfully retrieves and decrypts mnemonic for restore`,
|
|
153
|
+
[KeylessBackupEvents.cab_restore_zero_balance_accept]: `When a user is restoring from CAB and a dialog is shown informing them that their wallet has zero balance but they proceed anyways`,
|
|
154
|
+
[KeylessBackupEvents.cab_restore_zero_balance_bail]: `When a user is restoring from CAB and a dialog is shown informing them that their wallet has zero balance and they choose to bail and restart restore flow`,
|
|
155
|
+
[KeylessBackupEvents.cab_restore_completed_continue]: `When a user has completed restoring through CAB and on the success screen they press continue`,
|
|
156
|
+
[KeylessBackupEvents.cab_restore_failed_try_again]: `When a user is restoring from CAB and the restore fails, and they opt to try again`,
|
|
157
|
+
[KeylessBackupEvents.cab_restore_failed_create_new_wallet]: `When a user is restoring from CAB and the restore fails, and they opt to create a new wallet`,
|
|
158
|
+
[KeylessBackupEvents.cab_restore_failed_help]: `When a user is restoring from CAB and the restore fails, and they press the Help button`,
|
|
159
|
+
[KeylessBackupEvents.cab_phone_verification_help]: `When a user is asked to enter the phone code in CAB and they tap the Help button`,
|
|
160
|
+
[KeylessBackupEvents.cab_phone_verification_help_skip]: `When a user is on the Help bottom sheet on CAB phone verification screen, and they hit skip`,
|
|
161
|
+
[KeylessBackupEvents.cab_phone_verification_help_go_back]: `When a user is on the Help bottom sheet on CAB phone verification screen, and they hit go back`,
|
|
162
|
+
[KeylessBackupEvents.cab_phone_verification_help_use_phrase]: `When a user is on the Help bottom sheet on CAB phone verification screen during setup in onboarding, and they hit use recovery phrase`,
|
|
163
|
+
[KeylessBackupEvents.cab_restore_mnemonic_not_found]: `When a user is restoring from CAB and the mnemonic is not found. Meaning one or more of the user's keyshares/auth methods were incorrect`,
|
|
164
|
+
[KeylessBackupEvents.cab_setup_hashed_keyshares]: `When a user is setting up CAB, the hashed keyshares from their phone and email are saved`,
|
|
165
|
+
[PrivateKeyEvents.copy_private_key]: `When a user copies their private key from the private key screen`,
|
|
166
|
+
[OnboardingEvents.create_account_start]: ``,
|
|
167
|
+
[OnboardingEvents.restore_account_start]: ``,
|
|
168
|
+
[OnboardingEvents.restore_account_cancel]: ``,
|
|
169
|
+
[OnboardingEvents.backup_education_start]: ``,
|
|
170
|
+
[OnboardingEvents.backup_education_scroll]: ``,
|
|
171
|
+
[OnboardingEvents.backup_education_complete]: ``,
|
|
172
|
+
[OnboardingEvents.backup_education_cancel]: ``,
|
|
173
|
+
[OnboardingEvents.backup_start]: ``,
|
|
174
|
+
[OnboardingEvents.backup_continue]: `(count # of taps on “Continue” button in Backup_Phrase)`,
|
|
175
|
+
[OnboardingEvents.backup_complete]: `(count # of taps on "Cancel" button in Backup_Phrase/BackupQuiz)`,
|
|
176
|
+
[OnboardingEvents.backup_more_info]: ``,
|
|
177
|
+
[OnboardingEvents.backup_delay_confirm]: `when a user confirms they want to delay backup`,
|
|
178
|
+
[OnboardingEvents.backup_delay_cancel]: `when a user decides to return to backup flow`,
|
|
179
|
+
[OnboardingEvents.backup_cancel]: `(count # of taps on "Cancel" button in Backup_Phrase/BackupQuiz)`,
|
|
180
|
+
[OnboardingEvents.backup_error]: ``,
|
|
181
|
+
[OnboardingEvents.backup_quiz_start]: ``,
|
|
182
|
+
[OnboardingEvents.backup_quiz_progress]: `whenever the backspace is pressed or word is chosen`,
|
|
183
|
+
[OnboardingEvents.backup_quiz_complete]: `(Count # of successful Recovery Phrase confirmations Backup_Quiz)`,
|
|
184
|
+
[OnboardingEvents.backup_quiz_incorrect]: `(Count # of failed Recovery Phrase confirmations Backup_Quiz)`,
|
|
185
|
+
[OnboardingEvents.terms_and_conditions_accepted]: `when the accept button on the terms and conditions screen is pressed or when the checkbox is checked and the create / import button is pressed on the welcome screen`,
|
|
186
|
+
[OnboardingEvents.celo_education_start]: ``,
|
|
187
|
+
[OnboardingEvents.celo_education_scroll]: ``,
|
|
188
|
+
[OnboardingEvents.celo_education_complete]: ``,
|
|
189
|
+
[OnboardingEvents.celo_education_cancel]: ``,
|
|
190
|
+
[OnboardingEvents.name_and_picture_set]: ``,
|
|
191
|
+
[OnboardingEvents.name_and_picture_skip]: ``,
|
|
192
|
+
[OnboardingEvents.pin_set]: ``,
|
|
193
|
+
[OnboardingEvents.pin_invalid]: ``,
|
|
194
|
+
[OnboardingEvents.pin_never_set]: ``,
|
|
195
|
+
[OnboardingEvents.biometry_opt_in_start]: ``,
|
|
196
|
+
[OnboardingEvents.biometry_opt_in_cancel]: ``,
|
|
197
|
+
[OnboardingEvents.biometry_opt_in_approve]: ``,
|
|
198
|
+
[OnboardingEvents.biometry_opt_in_complete]: ``,
|
|
199
|
+
[OnboardingEvents.biometry_opt_in_error]: ``,
|
|
200
|
+
[OnboardingEvents.wallet_import_start]: ``,
|
|
201
|
+
[OnboardingEvents.wallet_import_phrase_updated]: ``,
|
|
202
|
+
[OnboardingEvents.wallet_import_submit]: ``,
|
|
203
|
+
[OnboardingEvents.wallet_import_cancel]: `when a user cancels import of empty wallet or navigates back`,
|
|
204
|
+
[OnboardingEvents.wallet_import_zero_balance]: `when the user is informed a wallet has zero balance`,
|
|
205
|
+
[OnboardingEvents.wallet_import_phrase_invalid]: ``,
|
|
206
|
+
[OnboardingEvents.wallet_import_phrase_correction_attempt]: ``,
|
|
207
|
+
[OnboardingEvents.wallet_import_phrase_correction_success]: ``,
|
|
208
|
+
[OnboardingEvents.wallet_import_phrase_correction_failed]: ``,
|
|
209
|
+
[OnboardingEvents.wallet_import_error]: ``,
|
|
210
|
+
[OnboardingEvents.wallet_import_success]: ``,
|
|
211
|
+
[OnboardingEvents.initialize_account_start]: ``,
|
|
212
|
+
[OnboardingEvents.initialize_account_complete]: `When the wallet has been successfully initialized after onboarding (either by creating a new account or restoring an existing one)`,
|
|
213
|
+
[OnboardingEvents.initialize_account_error]: ``,
|
|
214
|
+
[OnboardingEvents.protect_wallet_use_recovery]: ``,
|
|
215
|
+
[OnboardingEvents.protect_wallet_help]: ``,
|
|
216
|
+
[OnboardingEvents.protect_wallet_help_dismiss]: ``,
|
|
217
|
+
[OnboardingEvents.protect_wallet_copy_phrase]: ``,
|
|
218
|
+
[OnboardingEvents.protect_wallet_complete]: ``,
|
|
219
|
+
[OnboardingEvents.link_phone_number]: `User chooses to link phone number for CPV after recovery flow`,
|
|
220
|
+
[OnboardingEvents.link_phone_number_later]: `User chooses not to link phone number for CPV after recovery flow`,
|
|
221
|
+
|
|
222
|
+
// Events emitted in the CPV flow
|
|
223
|
+
[PhoneVerificationEvents.phone_verification_skip_confirm]: `when skip is confirmed from the dialog in the phone number input screen`,
|
|
224
|
+
[PhoneVerificationEvents.phone_verification_learn_more]: `when the learn more dialog is launched in the phone number input screen`,
|
|
225
|
+
[PhoneVerificationEvents.phone_verification_start]: `when the start button is pressed in the phone number input screen`,
|
|
226
|
+
[PhoneVerificationEvents.phone_verification_code_request_success]: `when the verifyPhoneNumber endpoint returns successfully`,
|
|
227
|
+
[PhoneVerificationEvents.phone_verification_restore_success]: `when the verifyPhoneNumber endpoint returns that the user is already verified (restore wallet flow)`,
|
|
228
|
+
[PhoneVerificationEvents.phone_verification_code_verify_start]: `when the user has entered the sms code and we start to validate on the backend`,
|
|
229
|
+
[PhoneVerificationEvents.phone_verification_code_verify_success]: `when the backend confirms that the sms code is successfully validated`,
|
|
230
|
+
[PhoneVerificationEvents.phone_verification_code_verify_error]: `when the backend throws an error and the sms code cannot be validated`,
|
|
231
|
+
[PhoneVerificationEvents.phone_verification_input_help]: `when the help button is pressed`,
|
|
232
|
+
[PhoneVerificationEvents.phone_verification_input_help_continue]: `when the user presses continue on the help dialog to continue verification`,
|
|
233
|
+
[PhoneVerificationEvents.phone_verification_resend_message]: `when the user triggers a resend of the sms code`,
|
|
234
|
+
[PhoneVerificationEvents.phone_verification_revoke_start]: `when the revoke endpoint is called`,
|
|
235
|
+
[PhoneVerificationEvents.phone_verification_revoke_success]: `when the revoke endpoint returns successfully`,
|
|
236
|
+
[PhoneVerificationEvents.phone_verification_revoke_error]: `when the revoke endpoint returns an error`,
|
|
237
|
+
[IdentityEvents.contacts_import_permission_denied]: ``,
|
|
238
|
+
[IdentityEvents.contacts_import_start]: ``,
|
|
239
|
+
[IdentityEvents.contacts_import_complete]: ``,
|
|
240
|
+
[IdentityEvents.contacts_processing_complete]: ``,
|
|
241
|
+
[IdentityEvents.contacts_import_error]: ``,
|
|
242
|
+
[IdentityEvents.phone_number_lookup_start]: ``,
|
|
243
|
+
[IdentityEvents.phone_number_lookup_complete]: ``,
|
|
244
|
+
[IdentityEvents.phone_number_lookup_error]: ``,
|
|
245
|
+
[IdentityEvents.address_lookup_start]: `When address verification lookup starts`,
|
|
246
|
+
[IdentityEvents.address_lookup_complete]: `When address verification lookup is completed`,
|
|
247
|
+
[IdentityEvents.address_lookup_error]: `When address verification lookup encounters an error`,
|
|
248
|
+
[AuthenticationEvents.get_pincode_start]: ``,
|
|
249
|
+
[AuthenticationEvents.get_pincode_complete]: ``,
|
|
250
|
+
[AuthenticationEvents.get_pincode_error]: ``,
|
|
251
|
+
[AuthenticationEvents.get_pincode_with_biometry_start]: ``,
|
|
252
|
+
[AuthenticationEvents.get_pincode_with_biometry_complete]: ``,
|
|
253
|
+
[AuthenticationEvents.get_pincode_with_biometry_error]: ``,
|
|
254
|
+
[AuthenticationEvents.get_pincode_with_input_start]: ``,
|
|
255
|
+
[AuthenticationEvents.get_pincode_with_input_complete]: ``,
|
|
256
|
+
[AuthenticationEvents.get_pincode_with_input_error]: ``,
|
|
257
|
+
[SendEvents.send_scan]: `when scan QR icon is selected from the send screen`,
|
|
258
|
+
[SendEvents.send_select_recipient]: `when recipient was selected`,
|
|
259
|
+
[SendEvents.send_cancel]: `when user x's out of Send screen`,
|
|
260
|
+
[SendEvents.send_amount_back]: `back button pressed on amount screen`,
|
|
261
|
+
[SendEvents.send_amount_continue]: `when next button pressed on amount enter page`,
|
|
262
|
+
[SendEvents.send_confirm_back]: `when back button pressed on send confirmation screen`,
|
|
263
|
+
[SendEvents.send_confirm_send]: `when send button pressed on send confirmation screen`,
|
|
264
|
+
[SendEvents.send_secure_start]: `when either secure send scan or manual confirm button pressed`,
|
|
265
|
+
[SendEvents.send_secure_back]: `when back button is pressed during secure send`,
|
|
266
|
+
[SendEvents.send_secure_cancel]: `when secure send flow is canceled`,
|
|
267
|
+
[SendEvents.send_secure_info]: `when "help" button is pressed`,
|
|
268
|
+
[SendEvents.send_secure_info_dismissed]: `when "help" button is dismissed`,
|
|
269
|
+
[SendEvents.send_secure_submit]: `when an account is submitted for validation`,
|
|
270
|
+
[SendEvents.send_secure_incorrect]: `when there's been an error validating the account`,
|
|
271
|
+
[SendEvents.send_secure_complete]: `when an account has been validated`,
|
|
272
|
+
[SendEvents.send_tx_start]: `issued from the sendPayment saga, after a user confirms their intent to send and right before we build and send the transaction to the network`,
|
|
273
|
+
[SendEvents.send_tx_complete]: `when a send transaction has successfully completed`,
|
|
274
|
+
[SendEvents.send_tx_error]: `when there is an error sending a transaction`,
|
|
275
|
+
[SendEvents.token_dropdown_opened]: ``,
|
|
276
|
+
[SendEvents.send_percentage_selected]: `When the user selects a pre-defined percentage of their balance to transact with`,
|
|
277
|
+
[SendEvents.swap_input_pressed]: ``,
|
|
278
|
+
|
|
279
|
+
// related to the alert that is shown when sending to an unknown address
|
|
280
|
+
[SendEvents.check_account_alert_shown]: ``,
|
|
281
|
+
[SendEvents.check_account_do_not_ask_selected]: ``,
|
|
282
|
+
[SendEvents.check_account_alert_back]: ``,
|
|
283
|
+
[SendEvents.check_account_alerts_continue]: ``,
|
|
284
|
+
|
|
285
|
+
// Events for the send select recipient screen
|
|
286
|
+
[SendEvents.send_select_recipient_scan_qr]: `When the QR code button is pressed`,
|
|
287
|
+
[SendEvents.send_select_recipient_contacts]: `When the import contacts button is pressed`,
|
|
288
|
+
[SendEvents.send_phone_number_modal_connect]: `When the connect action is pressed on the modal shown when the user clicks sync contacts but hasn't connected a phone number yet`,
|
|
289
|
+
[SendEvents.send_phone_number_modal_dismiss]: `When the dismiss action or background is pressed on the modal shown when the user clicks sync contacts but hasn't connected a phone number yet`,
|
|
290
|
+
[SendEvents.send_contacts_modal_settings]: `When the settings action is pressed in the modal shown when the user clicks sync contacts but hasn't granted contacts permission yet`,
|
|
291
|
+
[SendEvents.send_contacts_modal_dismiss]: `When the dismiss action or background is pressed in the modal shown when the user clicks sync contacts but hasn't granted contacts permission yet`,
|
|
292
|
+
[SendEvents.request_contacts_permission_started]: `When contacts permission is requested (for iOS this and the below fires only when the permission is requestable, for Android these fire when the permission is requstable or in a do not ask again state)`,
|
|
293
|
+
[SendEvents.request_contacts_permission_completed]: `When the request to contact permission completes, includes a property on the permission status`,
|
|
294
|
+
[SendEvents.send_select_recipient_send_press]: `When the send button is pressed after selecting a recipient`,
|
|
295
|
+
[SendEvents.send_select_recipient_invite_press]: `When the invite button is pressed after selecting a recipient`,
|
|
296
|
+
[SendEvents.send_select_recipient_recent_press]: `When a recent recipient is pressed`,
|
|
297
|
+
[JumpstartEvents.jumpstart_reclaim_press]:
|
|
298
|
+
'When user taps on "Reclaim" button on the Jumpstart screen',
|
|
299
|
+
[JumpstartEvents.jumpstart_reclaim_start]:
|
|
300
|
+
'When user taps on "Confirm" button on the transaction confirmation bottom sheet to start sending the reclaim transaction to the network',
|
|
301
|
+
[JumpstartEvents.jumpstart_reclaim_failed]:
|
|
302
|
+
'When the reclaim transaction fails to send, or is reverted by the network',
|
|
303
|
+
[JumpstartEvents.jumpstart_reclaim_dismiss_error]:
|
|
304
|
+
'When user dismisses the error toast for when the reclaim transaction failed',
|
|
305
|
+
[JumpstartEvents.jumpstart_reclaim_succeeded]:
|
|
306
|
+
'When the reclaim transaction was successful on the network',
|
|
307
|
+
[JumpstartEvents.jumpstart_reclaim_contact_support]:
|
|
308
|
+
'When the user taps "contact support" from any of the error toasts',
|
|
309
|
+
[JumpstartEvents.jumpstart_claim_status_fetch_success]:
|
|
310
|
+
'When fetching whether a jumpstart link has been claimed is successful',
|
|
311
|
+
[JumpstartEvents.jumpstart_claim_status_fetch_error]:
|
|
312
|
+
'When fetching whether a jumpstart link has been claimed fails',
|
|
313
|
+
|
|
314
|
+
// Events for the QR screen redesign
|
|
315
|
+
[QrScreenEvents.qr_screen_copy_address]: ``,
|
|
316
|
+
[QrScreenEvents.qr_scanner_open]: `When unique "QR scanner" button is pressed`,
|
|
317
|
+
[QrScreenEvents.qr_scanned]: `When a QR code has been successfully scanned`,
|
|
318
|
+
[FeeEvents.gas_fee_warning_impression]: `When the gas fee warning is shown to the user`,
|
|
319
|
+
[FeeEvents.gas_fee_warning_cta_press]: `When the user presses the CTA on the gas fee warning`,
|
|
320
|
+
[TransactionEvents.transaction_start]: `when a transaction is about to be submitted to the blockchain`,
|
|
321
|
+
[TransactionEvents.transaction_gas_estimated]: `when gas is estimated for a transaction or an already estimated gas is used in a transaction about to be submitted (only for contract-kit)`,
|
|
322
|
+
[TransactionEvents.transaction_hash_received]: `when a hash is received for a transaction`,
|
|
323
|
+
[TransactionEvents.transaction_receipt_received]: `when a receipt is received for a transaction`,
|
|
324
|
+
[TransactionEvents.transaction_confirmed]: `when a transaction is confirmed by the blockchain`,
|
|
325
|
+
[TransactionEvents.transaction_error]: `when a transaction submission emits an error (only for contract-kit)`,
|
|
326
|
+
[TransactionEvents.transaction_exception]: `when a transaction submission throws`,
|
|
327
|
+
[TransactionEvents.transaction_prepare_insufficient_gas]: `when a transaction cannot be prepared due to insufficient gas. Includes networkId and origin props to identify the transaction being attempted. For swaps, the networkId is always the source network`,
|
|
328
|
+
[CeloExchangeEvents.celo_withdraw_completed]: `when the transaction for the withdrawal is completed`,
|
|
329
|
+
|
|
330
|
+
// The CICO landing page accessible from the Settings Menu
|
|
331
|
+
[FiatExchangeEvents.cico_landing_token_balance]: `User taps to view detailed token balance`,
|
|
332
|
+
[FiatExchangeEvents.cico_landing_select_flow]: `User taps which CICO flow they want (Cash in, cash out, spend)`,
|
|
333
|
+
[FiatExchangeEvents.cico_landing_how_to_fund]: `User taps help article link at the bottom`,
|
|
334
|
+
|
|
335
|
+
// The CICO Amount screen where the user selects the amount of money
|
|
336
|
+
[FiatExchangeEvents.cico_amount_chosen]: `User selects a valid amount and taps next`,
|
|
337
|
+
[FiatExchangeEvents.cico_amount_chosen_invalid]: `User attempts to click next but the amount is invalid`,
|
|
338
|
+
[FiatExchangeEvents.cico_amount_back]: `User presses the back button from the amount screen`,
|
|
339
|
+
|
|
340
|
+
// Select Provider Screen
|
|
341
|
+
[FiatExchangeEvents.cico_providers_section_impression]: `User sees a category of providers`,
|
|
342
|
+
[FiatExchangeEvents.cico_providers_section_expand]: `User expands a category of providers`,
|
|
343
|
+
[FiatExchangeEvents.cico_providers_section_collapse]: `User collapses a category of providers`,
|
|
344
|
+
[FiatExchangeEvents.cico_providers_quote_selected]: `User selects a quote`,
|
|
345
|
+
[FiatExchangeEvents.cico_providers_exchanges_selected]: `User taps the External Exchanges section`,
|
|
346
|
+
[FiatExchangeEvents.cico_providers_back]: `User presses the back button from the Select Providers screen`,
|
|
347
|
+
[FiatExchangeEvents.cico_providers_unavailable_impression]: `User sees a blurb about providers unavailable`,
|
|
348
|
+
[FiatExchangeEvents.cico_providers_unavailable_selected]: `User taps a blurb about providers unavailable`,
|
|
349
|
+
[FiatExchangeEvents.cico_providers_new_info_opened]: `User taps on the new label and views the dialog`,
|
|
350
|
+
[FiatExchangeEvents.cico_providers_fetch_quotes_result]: `Information on fetch quotes result`,
|
|
351
|
+
|
|
352
|
+
// Cash In Success Screen
|
|
353
|
+
[FiatExchangeEvents.cash_in_success]: `Screen users are (most of the time) redirected to after cash in with external providers`,
|
|
354
|
+
|
|
355
|
+
// Add fund flow entered through home screen cash in bottom sheet
|
|
356
|
+
[FiatExchangeEvents.cico_add_bottom_sheet_selected]: ``,
|
|
357
|
+
[FiatExchangeEvents.cico_add_bottom_sheet_impression]: ``,
|
|
358
|
+
[FiatExchangeEvents.cico_add_bottom_sheet_ramp_selected]: ``,
|
|
359
|
+
[FiatExchangeEvents.cico_add_bottom_sheet_ramp_available]: ``,
|
|
360
|
+
|
|
361
|
+
// Add fund flow entered through new user get started card
|
|
362
|
+
[FiatExchangeEvents.cico_add_get_started_impression]: `When the get started card with the add funds button is displayed`,
|
|
363
|
+
[FiatExchangeEvents.cico_add_get_started_selected]: `When the user taps 'add funds' on the get started card`,
|
|
364
|
+
|
|
365
|
+
// Funding Education Dialog Screen
|
|
366
|
+
[FiatExchangeEvents.external_exchange_link]: ``,
|
|
367
|
+
[FiatExchangeEvents.cico_external_exchanges_back]: ``,
|
|
368
|
+
[FiatExchangeEvents.cico_cash_out_copy_address]: ``,
|
|
369
|
+
|
|
370
|
+
// External Exchanges QR Code Screen
|
|
371
|
+
[FiatExchangeEvents.cico_exchange_qr_bottom_sheet_open]: ``,
|
|
372
|
+
[FiatExchangeEvents.cico_exchange_qr_bottom_sheet_close]: ``,
|
|
373
|
+
[FiatExchangeEvents.cico_exchange_qr_bottom_sheet_link_press]: ``,
|
|
374
|
+
[FiatExchangeEvents.cico_exchange_qr_back]: ``,
|
|
375
|
+
[FiatExchangeEvents.cico_exchange_qr_copy_address]: ``,
|
|
376
|
+
[FiatExchangeEvents.cico_exchange_qr_share]: ``,
|
|
377
|
+
|
|
378
|
+
// Spend Flow
|
|
379
|
+
[FiatExchangeEvents.spend_merchant_link]: ``,
|
|
380
|
+
[FiatExchangeEvents.cico_spend_select_provider_back]: ``,
|
|
381
|
+
[FiatExchangeEvents.cico_non_celo_exchange_send_bar_continue]: `When send bar is tapped from cash out for cUSD & cEUR`,
|
|
382
|
+
|
|
383
|
+
// Simplex Review Screen
|
|
384
|
+
[FiatExchangeEvents.cico_simplex_open_webview]: ``,
|
|
385
|
+
|
|
386
|
+
// Fiat connect review screen
|
|
387
|
+
[FiatExchangeEvents.cico_fc_review_submit]: ``,
|
|
388
|
+
[FiatExchangeEvents.cico_fc_review_cancel]: ``,
|
|
389
|
+
[FiatExchangeEvents.cico_fc_review_back]: ``,
|
|
390
|
+
[FiatExchangeEvents.cico_fc_review_error_contact_support]: ``,
|
|
391
|
+
|
|
392
|
+
// Fiat Connect link account screen
|
|
393
|
+
[FiatExchangeEvents.cico_fc_review_error_retry]: ``,
|
|
394
|
+
[FiatExchangeEvents.cico_fc_link_account_continue]: ``,
|
|
395
|
+
[FiatExchangeEvents.cico_fc_link_account_back]: ``,
|
|
396
|
+
[FiatExchangeEvents.cico_fc_link_account_provider_website]: ``,
|
|
397
|
+
|
|
398
|
+
// Fiat Connect link KYC & account page
|
|
399
|
+
[FiatExchangeEvents.cico_fc_link_kyc_account_back]: ``,
|
|
400
|
+
|
|
401
|
+
// Fiat Connect fiat details screen
|
|
402
|
+
[FiatExchangeEvents.cico_fiat_details_success]: ``,
|
|
403
|
+
[FiatExchangeEvents.cico_fiat_details_back]: ``,
|
|
404
|
+
[FiatExchangeEvents.cico_fiat_details_cancel]: ``,
|
|
405
|
+
[FiatExchangeEvents.cico_fiat_details_error]: ``,
|
|
406
|
+
|
|
407
|
+
// Fiat Connect transfer analytics
|
|
408
|
+
[FiatExchangeEvents.cico_fc_transfer_api_error]: ``,
|
|
409
|
+
[FiatExchangeEvents.cico_fc_transfer_tx_error]: ``,
|
|
410
|
+
[FiatExchangeEvents.cico_fc_transfer_error]: ``,
|
|
411
|
+
[FiatExchangeEvents.cico_fc_transfer_success]: ``,
|
|
412
|
+
|
|
413
|
+
// Fiat Connect transfer status screen
|
|
414
|
+
[FiatExchangeEvents.cico_fc_transfer_error_retry]: ``,
|
|
415
|
+
[FiatExchangeEvents.cico_fc_transfer_error_cancel]: ``,
|
|
416
|
+
[FiatExchangeEvents.cico_fc_transfer_error_contact_support]: ``,
|
|
417
|
+
[FiatExchangeEvents.cico_fc_transfer_success_complete]: ``,
|
|
418
|
+
[FiatExchangeEvents.cico_fc_transfer_success_view_tx]: ``,
|
|
419
|
+
[FiatExchangeEvents.cico_fc_transfer_processing_continue]: ``,
|
|
420
|
+
[FiatExchangeEvents.cico_fc_transfer_processing_view_tx]: ``,
|
|
421
|
+
|
|
422
|
+
// Fiat Connect KYC status screens
|
|
423
|
+
[FiatExchangeEvents.cico_fc_kyc_status_contact_support]: ``,
|
|
424
|
+
[FiatExchangeEvents.cico_fc_kyc_status_back]: ``,
|
|
425
|
+
[FiatExchangeEvents.cico_fc_kyc_status_close]: ``,
|
|
426
|
+
[FiatExchangeEvents.cico_fc_kyc_status_try_again]: ``,
|
|
427
|
+
[FiatExchangeEvents.cico_fc_kyc_status_switch_method]: ``,
|
|
428
|
+
[ContractKitEvents.init_contractkit_start]: ``,
|
|
429
|
+
[ContractKitEvents.init_contractkit_get_wallet_start]: ``,
|
|
430
|
+
[ContractKitEvents.init_contractkit_get_wallet_finish]: ``,
|
|
431
|
+
[ContractKitEvents.init_contractkit_init_wallet_finish]: ``,
|
|
432
|
+
[ContractKitEvents.init_contractkit_finish]: ``,
|
|
433
|
+
[PerformanceEvents.redux_store_size]: ``,
|
|
434
|
+
[NavigationEvents.navigator_not_ready]: ``,
|
|
435
|
+
|
|
436
|
+
// Events related to Points program
|
|
437
|
+
[PointsEvents.points_discover_press]: `when points card is pressed in the discover tab`,
|
|
438
|
+
[PointsEvents.points_intro_dismiss]: `when points intro is dismissed`,
|
|
439
|
+
[PointsEvents.points_intro_back]: `when back button is pressed from points intro screen`,
|
|
440
|
+
[PointsEvents.points_screen_back]: `when back button is pressed from Points home screen`,
|
|
441
|
+
[PointsEvents.points_screen_card_press]: `when an activity card is pressed from Points home screen`,
|
|
442
|
+
[PointsEvents.points_screen_card_cta_press]: `when a CTA is pressed on an activity card bottom sheet from the Points home screen`,
|
|
443
|
+
[PointsEvents.points_screen_activity_press]: `when the Activity button is pressed from Points home screen`,
|
|
444
|
+
[PointsEvents.points_screen_activity_try_again_press]: `when the Try Again button is pressed after an error while fetching Points activity`,
|
|
445
|
+
[PointsEvents.points_screen_activity_fetch_more]: `when the user requests to fetch more Points history`,
|
|
446
|
+
[PointsEvents.points_screen_activity_learn_more_press]: `when the Learn button is pressed when a user has no points history`,
|
|
447
|
+
[PointsEvents.points_screen_disclaimer_press]: `when the learn more button is pressed from Points activity screen`,
|
|
448
|
+
|
|
449
|
+
// Events related to WalletConnect pairing (technical: opening up the communication channel via QR code or deeplink)
|
|
450
|
+
[WalletConnectEvents.wc_pairing_start]: `when WC pairing is started (no UI at this point)`,
|
|
451
|
+
[WalletConnectEvents.wc_pairing_success]: `when WC pairing succeeds`,
|
|
452
|
+
[WalletConnectEvents.wc_pairing_error]: `when WC pairing fails`,
|
|
453
|
+
|
|
454
|
+
// Events related to WalletConnect sessions (approving/rejecting/removing dapps)
|
|
455
|
+
[WalletConnectEvents.wc_session_propose]: `when the WC session screen is displayed to approve/reject a new dapp`,
|
|
456
|
+
[WalletConnectEvents.wc_session_approve_start]: `when user presses the button to approve the dapp connection`,
|
|
457
|
+
[WalletConnectEvents.wc_session_approve_success]: `when the dapp approval succeeds`,
|
|
458
|
+
[WalletConnectEvents.wc_session_approve_error]: `when the dapp approval fails`,
|
|
459
|
+
[WalletConnectEvents.wc_session_reject_start]: `when user presses the button to reject the dapp connection`,
|
|
460
|
+
[WalletConnectEvents.wc_session_reject_success]: `when the dapp rejection succeeds`,
|
|
461
|
+
[WalletConnectEvents.wc_session_reject_error]: `when the dapp rejection fails`,
|
|
462
|
+
[WalletConnectEvents.wc_session_remove_start]: `when user presses the button to disconnect the dapp`,
|
|
463
|
+
[WalletConnectEvents.wc_session_remove_success]: `when the dapp disconnection succeeds`,
|
|
464
|
+
[WalletConnectEvents.wc_session_remove_error]: `when the dapp disconnection fails`,
|
|
465
|
+
|
|
466
|
+
// Events related to WalletConnect requests from approved dapps (signing)
|
|
467
|
+
[WalletConnectEvents.wc_request_propose]: `when the WC request screen is displayed to accept/deny a dapp request`,
|
|
468
|
+
[WalletConnectEvents.wc_request_accept_start]: `when user presses the button to accept a dapp request`,
|
|
469
|
+
[WalletConnectEvents.wc_request_accept_success]: `when the dapp request succeeds`,
|
|
470
|
+
[WalletConnectEvents.wc_request_accept_error]: `when the dapp request fails`,
|
|
471
|
+
[WalletConnectEvents.wc_request_deny_start]: `when user presses the button to accept a dapp request`,
|
|
472
|
+
[WalletConnectEvents.wc_request_deny_success]: `when the dapp request denial succeeds`,
|
|
473
|
+
[WalletConnectEvents.wc_request_deny_error]: `when the dapp request denial fails`,
|
|
474
|
+
[WalletConnectEvents.wc_copy_request_payload]: `when a user taps to copy the request payload from the bottom sheet`,
|
|
475
|
+
|
|
476
|
+
[DappExplorerEvents.dapp_impression]: `when a dapp shows up in the featured section of the app`,
|
|
477
|
+
[DappExplorerEvents.dapp_open]: `when a dapp is opened`,
|
|
478
|
+
[DappExplorerEvents.dapp_close]: `when a dapp is closed from the in-app dapp web view`,
|
|
479
|
+
[DappExplorerEvents.dapp_screen_open]: ``,
|
|
480
|
+
[DappExplorerEvents.dapp_view_all]: `when user taps "view all dapps" from recently used dapps section`,
|
|
481
|
+
[DappExplorerEvents.dapp_favorite]: `when user favorites a dapp`,
|
|
482
|
+
[DappExplorerEvents.dapp_unfavorite]: `when user unfavorites a dapp`,
|
|
483
|
+
[DappExplorerEvents.dapp_filter]: `when a user taps on a filter`,
|
|
484
|
+
[DappExplorerEvents.dapp_explore_all]: `when a user taps on the explore all button`,
|
|
485
|
+
[WebViewEvents.webview_more_options]: `when user taps "triple dot icon" from the webview`,
|
|
486
|
+
[WebViewEvents.webview_open_in_browser]: `when user taps "Open in External Browser" from the webview options`,
|
|
487
|
+
[CoinbasePayEvents.coinbase_pay_flow_start]: `When user is navigated to Coinbase Pay experience`,
|
|
488
|
+
[CoinbasePayEvents.coinbase_pay_flow_exit]: `When user exits Coinbase Pay`,
|
|
489
|
+
[SwapEvents.swap_screen_open]: `When the screen is mounted`,
|
|
490
|
+
[SwapEvents.swap_screen_select_token]: `When a user selects a token, prompting the token select bottom sheet`,
|
|
491
|
+
[SwapEvents.swap_screen_confirm_token]: `When a user selects a token from the bottom sheet`,
|
|
492
|
+
[SwapEvents.swap_screen_percentage_selected]: `When the user selects a pre-defined percentage of their balance to transact with`,
|
|
493
|
+
[SwapEvents.swap_review_submit]: `When a user click on the confirm swap button to proceed to next step`,
|
|
494
|
+
[SwapEvents.swap_gas_fees_learn_more]: `When a user taps on the learn more text on the max swap amount warning`,
|
|
495
|
+
[SwapEvents.swap_execute_success]: `When the swap is executed successfully`,
|
|
496
|
+
[SwapEvents.swap_execute_error]: `When the swap returns an error`,
|
|
497
|
+
[SwapEvents.swap_cancel]: `When the swap is cancelled by the user on the pincode screen`,
|
|
498
|
+
[SwapEvents.swap_learn_more]: `When a user taps on the learn more button on the swap screen`,
|
|
499
|
+
[SwapEvents.swap_price_impact_warning_displayed]: `When the price impact warning is displayed`,
|
|
500
|
+
[SwapEvents.swap_show_info]: `When a user taps an info icon to show more information on the swap screen`,
|
|
501
|
+
[SwapEvents.swap_show_fund_your_wallet]: `When "Fund your wallet" bottom sheet is displayed`,
|
|
502
|
+
[SwapEvents.swap_add_funds]: `When user taps "Add funds" button is "Fund your wallet" bottom sheet`,
|
|
503
|
+
[SwapEvents.swap_switch_tokens]: `When a user taps the button to switch the to and from tokens`,
|
|
504
|
+
[SwapEvents.swap_unfavorable_rate_warning_displayed]: `When the unfavorable rate bottom sheet is displayed`,
|
|
505
|
+
[SwapEvents.swap_unfavorable_rate_warning_cancelled]: `When the cancel button is pressed in the unfavorable rate bottom sheet`,
|
|
506
|
+
[CeloNewsEvents.celo_news_screen_open]: `When the screen is mounted`,
|
|
507
|
+
[CeloNewsEvents.celo_news_article_tap]: `When a user taps on a news article`,
|
|
508
|
+
[CeloNewsEvents.celo_news_bottom_read_more_tap]: `When a user taps on the read more button at the bottom of the screen`,
|
|
509
|
+
[CeloNewsEvents.celo_news_retry_tap]: `When a user taps on the retry button`,
|
|
510
|
+
[TokenBottomSheetEvents.search_token]: `When a user searches a token using the token bottom sheet search box`,
|
|
511
|
+
[TokenBottomSheetEvents.token_selected]: `A token was selected in TokenBottomSheet.`,
|
|
512
|
+
[TokenBottomSheetEvents.toggle_tokens_filter]: `A filter was selected in the TokenBottomSheet.`,
|
|
513
|
+
[TokenBottomSheetEvents.network_filter_updated]: `The network filter was updated and the multiselect UI closed in the TokenBottomSheet.`,
|
|
514
|
+
[AssetsEvents.show_asset_balance_info]: `When a user taps on the info icon`,
|
|
515
|
+
[AssetsEvents.view_wallet_assets]: `When a user taps on the "Wallet Assets" segmented control or "Assets" tab`,
|
|
516
|
+
[AssetsEvents.view_collectibles]: `When a user taps on the "Collectibles" tab`,
|
|
517
|
+
[AssetsEvents.view_dapp_positions]: `When a user taps on the "Dapp Positions" segmented control or tab`,
|
|
518
|
+
[AssetsEvents.tap_asset]: `When a user taps on an asset`,
|
|
519
|
+
[AssetsEvents.tap_claim_rewards]: `When a user taps on the "Claim Rewards" button`,
|
|
520
|
+
[AssetsEvents.tap_token_details_action]: `When a user taps one of the actions on the token details screen`,
|
|
521
|
+
[AssetsEvents.tap_token_details_bottom_sheet_action]: `When a user taps one of the actions on the more actions bottom sheet`,
|
|
522
|
+
[AssetsEvents.tap_token_details_learn_more]: `When a user taps the learn more link on the token details screen`,
|
|
523
|
+
[AssetsEvents.import_token_screen_open]: `When a user taps on the "Import" top bar button in the Assets screen`,
|
|
524
|
+
[AssetsEvents.import_token_submit]: `When a user taps on the "Import" button in the Import Token screen`,
|
|
525
|
+
[AssetsEvents.import_token_paste]: `When a user taps on the "Paste" button in the Import Token screen`,
|
|
526
|
+
[AssetsEvents.import_token_error]: `When a user enters token address and validation fails in the Import Token screen`,
|
|
527
|
+
[NftEvents.nft_error_screen_open]: `When the high level error screen is mounted`,
|
|
528
|
+
[NftEvents.nft_media_load]: `When attempting to load NFT media`,
|
|
529
|
+
[BuilderHooksEvents.hooks_enable_preview_propose]: `When a user scans a QR code or opens a deep link to enable hooks preview`,
|
|
530
|
+
[BuilderHooksEvents.hooks_enable_preview_cancel]: `When a user cancels the hooks preview flow`,
|
|
531
|
+
[BuilderHooksEvents.hooks_enable_preview_confirm]: `When a user confirms enabling hooks preview`,
|
|
532
|
+
[BuilderHooksEvents.hooks_enable_preview_error]: `When a user encounters an error enabling hooks preview`,
|
|
533
|
+
[BuilderHooksEvents.hooks_disable_preview]: `When a user disables hooks preview`,
|
|
534
|
+
[DappShortcutsEvents.dapp_shortcuts_rewards_screen_open]: `When the rewards screen is mounted`,
|
|
535
|
+
[DappShortcutsEvents.dapp_shortcuts_reward_claim_start]: `When the claim button is pressed`,
|
|
536
|
+
[DappShortcutsEvents.dapp_shortcuts_reward_claim_success]: `When the claim shortcut succeeds`,
|
|
537
|
+
[DappShortcutsEvents.dapp_shortcuts_reward_claim_error]: `When the claim shortcut fails`,
|
|
538
|
+
[DappShortcutsEvents.dapp_shortcuts_reward_tx_propose]: `When the user is shown the transaction details via the bottom sheet`,
|
|
539
|
+
[DappShortcutsEvents.dapp_shortcuts_reward_tx_copy]: `When the user copies the transaction details via the bottom sheet`,
|
|
540
|
+
[DappShortcutsEvents.dapp_shortcuts_reward_tx_accepted]: `When the user confirms the transaction via the bottom sheet`,
|
|
541
|
+
[DappShortcutsEvents.dapp_shortcuts_reward_tx_rejected]: `When the user rejects the transaction via the bottom sheet`,
|
|
542
|
+
[TransactionDetailsEvents.transaction_details_tap_details]: `When a user press 'Details' on transaction details page`,
|
|
543
|
+
[TransactionDetailsEvents.transaction_details_tap_check_status]: `When a user press 'Check status' on transaction details page`,
|
|
544
|
+
[TransactionDetailsEvents.transaction_details_tap_retry]: `When a user press 'Retry' on transaction details page`,
|
|
545
|
+
[TransactionDetailsEvents.transaction_details_tap_block_explorer]: `When a user press 'View on block explorer' on transaction details page`,
|
|
546
|
+
|
|
547
|
+
// Events related to earn program
|
|
548
|
+
[EarnEvents.earn_entrypoint_press]: `When a user taps on the earn your stablecoins entrypoint on the discover tab (only for multiple pools)`,
|
|
549
|
+
[EarnEvents.earn_before_deposit_action_press]: `When a user in the Earn flow doesn't have the deposit token and so chooses an option to add it`,
|
|
550
|
+
[EarnEvents.earn_deposit_provider_info_press]: `When a user taps on the info icon next to the provider name on the deposit bottom sheet`,
|
|
551
|
+
[EarnEvents.earn_deposit_terms_and_conditions_press]: `When a user taps on the terms and conditions link on the deposit bottom sheet`,
|
|
552
|
+
[EarnEvents.earn_deposit_complete]: `When a user taps on the complete button on the deposit bottom sheet`,
|
|
553
|
+
[EarnEvents.earn_deposit_cancel]: `When a user taps on the cancel button on the deposit bottom sheet`,
|
|
554
|
+
[EarnEvents.earn_deposit_submit_start]: `When the wallet is about to submit the deposit transaction to the network`,
|
|
555
|
+
[EarnEvents.earn_deposit_submit_success]: `When the deposit transaction succeeds. For cross chain swaps, when the tx is submitted to the source chain`,
|
|
556
|
+
[EarnEvents.earn_deposit_submit_error]: `When the deposit transaction fails`,
|
|
557
|
+
[EarnEvents.earn_deposit_submit_cancel]: `When the user cancels the deposit after submitting by cancelling PIN input`,
|
|
558
|
+
[EarnEvents.earn_deposit_execute_success]: `When the deposit transaction is executed successfully and funds are deposited to the pool. For cross chain swaps, this is after the tx completely succeeds`,
|
|
559
|
+
[EarnEvents.earn_enter_amount_continue_press]: `When a user taps continue on the earn enter amount`,
|
|
560
|
+
[EarnEvents.earn_feed_item_select]: `When the users taps on an earn transaction feed item`,
|
|
561
|
+
[EarnEvents.earn_collect_earnings_press]: `When the user taps on the collect earnings button in the collect screen`,
|
|
562
|
+
[EarnEvents.earn_withdraw_submit_start]: `When the wallet is about to submit the withdraw and/or claim transactions to the network`,
|
|
563
|
+
[EarnEvents.earn_withdraw_submit_success]: `When the withdraw and/or claim transactions succeed`,
|
|
564
|
+
[EarnEvents.earn_withdraw_submit_error]: `When the withdraw and/or claim transactions fail`,
|
|
565
|
+
[EarnEvents.earn_withdraw_submit_cancel]: `When the user cancels the withdraw and/or claim transactions after submitting by cancelling PIN input`,
|
|
566
|
+
[EarnEvents.earn_withdraw_add_gas_press]: `When the user doesn't have enough for gas and clicks on the button to add gas token`,
|
|
567
|
+
[EarnEvents.earn_withdraw_provider_info_press]: `When a user taps on the info icon next to the provider name on the withdraw confirmation screen`,
|
|
568
|
+
[EarnEvents.earn_info_learn_press]: `When the user taps 'Learn More' on the earn info page`,
|
|
569
|
+
[EarnEvents.earn_info_earn_press]: `When the user taps 'Start Earning' on the earn info page `,
|
|
570
|
+
[EarnEvents.earn_home_learn_more_press]: `When the user taps 'Learn more' on the earn home screen`,
|
|
571
|
+
[EarnEvents.earn_pool_card_press]: `When the user taps on a pool card`,
|
|
572
|
+
[EarnEvents.earn_home_error_try_again]: `When the user taps try again on the earn home screen after an error loading pools`,
|
|
573
|
+
[EarnEvents.earn_pool_info_view_pool]: `When the user taps 'View Pool' on the earn pool info screen`,
|
|
574
|
+
[EarnEvents.earn_pool_info_tap_info_icon]: `When the user taps an info icon on the earn pool info screen`,
|
|
575
|
+
[EarnEvents.earn_pool_info_tap_withdraw]: `When the user taps the withdraw button on the pool info screen`,
|
|
576
|
+
[EarnEvents.earn_pool_info_tap_deposit]: `When the user taps the deposit button on the pool info screen`,
|
|
577
|
+
[EarnEvents.earn_pool_info_tap_safety_details]: `When the user taps the view more/less details on the safety card on the pool info screen`,
|
|
578
|
+
[EarnEvents.earn_select_withdraw_type]: `When a user selects a withdrawal type on the withdraw bottom sheet`,
|
|
579
|
+
|
|
580
|
+
// Legacy event docs
|
|
581
|
+
// The below events had docs, but are no longer produced by the latest app version.
|
|
582
|
+
// [HomeEvents.home_send]: `when "send" button is pressed from home screen send or request bar (NOT from home screen actions)`,
|
|
583
|
+
// [HomeEvents.view_nft_home_assets]: `When "NFTs" is clicked in Home Assets Pages`,
|
|
584
|
+
// [DappExplorerEvents.dapp_open_info]: `when a user taps on the help icon`,
|
|
585
|
+
// [DappExplorerEvents.dapp_open_more_info]: `when a user taps on the "more" button from inside the help bottom sheet`,
|
|
586
|
+
// [DappExplorerEvents.dapp_search]: `when a user searches on the dapp explorer screen`,
|
|
587
|
+
// [DappExplorerEvents.dapp_rankings_impression]: `when the dapp rankings card shows up`,
|
|
588
|
+
// [DappExplorerEvents.dapp_rankings_open]: `when a user taps on the dapp rankings card`,
|
|
589
|
+
// [WalletConnectEvents.wc_request_details]: `when user presses the button to show details of a dapp request`,
|
|
590
|
+
// [CeloExchangeEvents.celo_withdraw_review]: `when ‘review’ is clicked on the withdraw amount screen`,
|
|
591
|
+
// [CeloExchangeEvents.celo_withdraw_edit]: `when ‘edit’ is clicked on the review screen`,
|
|
592
|
+
// [CeloExchangeEvents.celo_withdraw_cancel]: `when ’cancel’ is clicked on the review screen`,
|
|
593
|
+
// [CeloExchangeEvents.celo_withdraw_confirm]: `when ‘withdraw’ is clicked on the review screen`,
|
|
594
|
+
// [CeloExchangeEvents.celo_withdraw_error]: `when there's an error on the withdrawal transaction`,
|
|
595
|
+
// [CeloExchangeEvents.celo_home_info]: `when the (i) next to Celo Gold price is clicked, launching education (not pictured)`,
|
|
596
|
+
// [CeloExchangeEvents.celo_chart_tapped]: `when user clicks the chart on exchange screen`,
|
|
597
|
+
// [NftEvents.nft_gallery_screen_open]: `When the gallery screen is mounted`,
|
|
598
|
+
// [PhoneVerificationEvents.phone_verification_input_help_skip]: `when the user presses skip on the help dialog to skip verification`,
|
|
599
|
+
// [PhoneVerificationEvents.phone_verification_skip]: `when skip is pressed in the phone number input screen`,
|
|
600
|
+
// [IdentityEvents.contacts_connect]: `when connect button is pressed`,
|
|
601
|
+
// [RequestEvents.request_scan]: `when scan QR icon is selected from the request screen`,
|
|
602
|
+
// [RequestEvents.request_select_recipient]: `when recipient was selected`,
|
|
603
|
+
// [RequestEvents.request_cancel]: `when cancel is clicked after launching request flow`,
|
|
604
|
+
// [RequestEvents.request_amount_back]: `back button pressed on amount screen`,
|
|
605
|
+
// [RequestEvents.request_amount_continue]: `when next button pressed on amount enter page`,
|
|
606
|
+
// [RequestEvents.request_confirm_back]: `when back button pressed on request confirmation screen`,
|
|
607
|
+
// [RequestEvents.request_confirm_request]: `when request button pressed on request confirmation screen`,
|
|
608
|
+
// [RequestEvents.request_error]: `when there is an error requesting a transaction`,
|
|
609
|
+
// [FiatExchangeEvents.cico_currency_chosen]: `User selects a currency and taps next`,
|
|
610
|
+
// [FiatExchangeEvents.cico_currency_back]: `User presses the back button from the currency screen`,
|
|
611
|
+
// [DappKitEvents.dappkit_parse_deeplink_error]: `when dappkit fails to parse the deeplink`,
|
|
612
|
+
// [DappKitEvents.dappkit_request_propose]: `when the dappkit request screen is displayed to accept/deny a dapp request`,
|
|
613
|
+
// [DappKitEvents.dappkit_request_cancel]: `when user presses the button to cancel the dapp request`,
|
|
614
|
+
// [DappKitEvents.dappkit_copy_request_details]: `when user presses the button to copy details of a dapp request`,
|
|
615
|
+
// [DappKitEvents.dappkit_request_accept_start]: `when user presses the button to accept a dapp request`,
|
|
616
|
+
// [DappKitEvents.dappkit_request_accept_success]: `when the dapp request succeeds`,
|
|
617
|
+
// [DappKitEvents.dappkit_request_accept_error]: `when the dapp request fails`,
|
|
618
|
+
// [KeylessBackupEvents.cab_sign_in_with_google]: ``, renamed to cab_sign_in_start when we started supporting Apple sign in
|
|
619
|
+
// [KeylessBackupEvents.cab_sign_in_with_google_success]: ``, renamed to cab_sign_in_success when we started supporting Apple sign in
|
|
620
|
+
// [EarnEvents.earn_pool_card_cta_press]: `When the user taps a cta button on the pool card`,
|
|
621
|
+
// [EarnEvents.earn_active_pools_cta_press]: `cta buttons on the card were removed and replaced with a single card press event`,
|
|
622
|
+
// [EarnEvents.earn_add_crypto_action_press]: `When a user in the Earn flow enters an amount higher than their balance and chooses an option to add crypto`,
|
|
623
|
+
// [EarnEvents.earn_cta_press]: `When a user taps on the earn your stablecoins CTA on the discover tab (only for MVP w/ AAVE)`,
|
|
624
|
+
// [EarnEvents.earn_view_pools_press]: `When the user taps on the view pools button from token details`,
|
|
625
|
+
// [EarnEvents.earn_enter_amount_info_press]: `When a user taps on the info icon on the earn enter amount screen`,
|
|
626
|
+
// [EarnEvents.earn_enter_amount_info_more_pools]: `When a user taps to see other Aave pools`,
|
|
627
|
+
// [EarnEvents.earn_exit_pool_press]: `When the user taps on the exit pool button from the earn card in discover tab`,
|
|
628
|
+
// [EarnEvents.earn_deposit_more_press]: `When the user taps deposit more button from the earn card in discover tab`,
|
|
629
|
+
// [EarnEvents.earn_active_pools_card_press]: `When the user taps on the active pool card in discover tab.`,
|
|
630
|
+
// [EarnEvents.earn_deposit_add_gas_press]: `When the user doesn't have enough for gas when trying to deposit and clicks on the button to add gas token`,
|
|
631
|
+
// [AppEvents.multichain_beta_opt_in]: `When the user taps the Try it Now button on the multichain beta screen`,
|
|
632
|
+
// [AppEvents.multichain_beta_opt_out]: `When the user taps the No Thanks button on the multichain beta screen`,
|
|
633
|
+
// [AppEvents.multichain_beta_contact_support]: `When the user taps the Contact Support button on the multichain beta screen`,
|
|
634
|
+
// [FeeEvents.estimate_fee_failed]: ``,
|
|
635
|
+
// [FeeEvents.estimate_fee_success]: ``,
|
|
636
|
+
// [OnboardingEvents.cya_button_press]: `when one of the choose your adventure card is pressed. Properties include card name, position of the card (1-based index) and card order`,
|
|
637
|
+
// [OnboardingEvents.cya_later]: `when "I'll explore later" is pressed`,
|
|
638
|
+
// [CICOEvents.persona_kyc_start]: `when a user begins the Persona KYC process (clicks 'Set up ID Verification' button)`,
|
|
639
|
+
// [CICOEvents.persona_kyc_success]: `when the onComplete callback is called for a Persona inquiry with success status`,
|
|
640
|
+
// [CICOEvents.persona_kyc_failed]: `when the onComplete callback is called for a Persona inquiry with failed status`,
|
|
641
|
+
// [CICOEvents.persona_kyc_cancel]: `when the onCancelled callback is called for a Persona inquiry`,
|
|
642
|
+
// [CICOEvents.persona_kyc_error]: `when the onError callback is called for a Persona inquiry`,
|
|
643
|
+
// [InviteEvents.invite_banner_impression]: ``,
|
|
644
|
+
// [InviteEvents.invite_with_share]: ``,
|
|
645
|
+
// [InviteEvents.invite_with_share_dismiss]: ``,
|
|
646
|
+
// [InviteEvents.invite_with_referral_url]: ``,
|
|
647
|
+
// [InviteEvents.opened_via_invite_url]: `When the app is opened via a referral link (even if the link took the user to the app store first). Note that this event is fired on app open, so the user will not have a wallet address yet.`,
|
|
648
|
+
// [InviteEvents.invite_help_link]: `When taps "View all terms" in invite disclaimer`,
|
|
649
|
+
// [JumpstartEvents.send_select_recipient_jumpstart]: `When the user taps the Jumpstart button on the select recipient screen to start sending crypto via escrow link`,
|
|
650
|
+
// [JumpstartEvents.jumpstart_send_amount_exceeds_threshold]: `When the user enters a send value greater than allowed threshold, and is shown the max send amount warning`,
|
|
651
|
+
// [JumpstartEvents.jumpstart_send_amount_continue]: `When the user taps the continue button on the jumpstart enter amount screen`,
|
|
652
|
+
// [JumpstartEvents.jumpstart_send_confirm]: `When the user taps the confirm button on the jumpstart confirmation screen to start sending the transaction`,
|
|
653
|
+
// [JumpstartEvents.jumpstart_send_start]: `When the wallet is about to send the transactions to the network`,
|
|
654
|
+
// [JumpstartEvents.jumpstart_send_cancelled]: `When the user cancels the transaction, e.g. by exiting the pincode enter screen`,
|
|
655
|
+
// [JumpstartEvents.jumpstart_send_succeeded]: `When the transactions are successfully settled on the network`,
|
|
656
|
+
// [JumpstartEvents.jumpstart_send_failed]: `When the transactions failed to send or are reverted by the network`,
|
|
657
|
+
// [JumpstartEvents.jumpstart_share_link]: `When the user taps on the share link button on the jumpstart share screen or qr bottom sheet`,
|
|
658
|
+
// [JumpstartEvents.jumpstart_share_link_result]: `The result of the user's share action, can be shared or dismissed or error`,
|
|
659
|
+
// [JumpstartEvents.jumpstart_show_QR]: `When the user taps the CTA to launch the QR code bottom sheet on the share screen`,
|
|
660
|
+
// [JumpstartEvents.jumpstart_copy_link]: `When the user copies the link from the share screen or QR code bottom sheet`,
|
|
661
|
+
// [JumpstartEvents.jumpstart_share_close]: `When the user tries to navigate away from the jumpstart share screen`,
|
|
662
|
+
// [JumpstartEvents.jumpstart_share_confirm_close]: `When the user confirms on the popup that they want to navigate away`,
|
|
663
|
+
// [JumpstartEvents.jumpstart_share_dismiss_close]: `When the user dismisses the popup and does not navigate away from the jumpstart share screen`,
|
|
664
|
+
// [JumpstartEvents.jumpstart_claim_succeeded]: `When claiming from Wallet Jumpstart succeeded`,
|
|
665
|
+
// [JumpstartEvents.jumpstart_claim_failed]: `When claiming from Wallet Jumpstart failed`,
|
|
666
|
+
// [JumpstartEvents.jumpstart_claimed_token]: `When user successfully claimed an ERC20 token trough Wallet Jumpstart`,
|
|
667
|
+
// [JumpstartEvents.jumpstart_claimed_nft]: `When user successfully claimed an NFT trough Wallet Jumpstart`,
|
|
668
|
+
// [JumpstartEvents.jumpstart_claim_loading_dismissed]: `When user dismisses Wallet Jumpstart claim loading toast`,
|
|
669
|
+
// [JumpstartEvents.jumpstart_claim_error_dismissed]: `When user dismisses Wallet Jumpstart claim error toast`,
|
|
670
|
+
// [JumpstartEvents.jumpstart_claim_error_contact_support]: `When user taps "Contact Support" CTA on Wallet Jumpstart claim error toast`,
|
|
671
|
+
// [JumpstartEvents.jumpstart_add_assets_show_actions]: 'When user taps the CTA to show ways to add assets',
|
|
672
|
+
// [JumpstartEvents.jumpstart_add_assets_action_press]: 'When user selects an add assets action from the available options',
|
|
673
|
+
// [JumpstartEvents.jumpstart_intro_seen]: `when jumpstart intro is seen by the user`,
|
|
674
|
+
// [OnboardingEvents.stale_keychain_items_cleared]: `Stale keychain items where found during onboarding and cleared`,
|
|
675
|
+
}
|