├── .claude ├── commands │ └── dev.md └── settings.local.json ├── .env ├── .eslintrc.json ├── .gitattributes ├── .github ├── actions │ └── setup │ │ └── action.yml └── workflows │ ├── knip.yaml │ ├── pages-deployment.yaml │ ├── test-wallet.yaml │ └── test.yaml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .stylelintrc.json ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CLAUDE.md ├── CODEOWNERS ├── LICENSE ├── Manager App Architecture sans links.drawio.png ├── README.md ├── deploy ├── .contracts │ ├── CustomLegacyResolver.json │ ├── CustomNameWrapperAwareResolver.json │ ├── CustomResolver.json │ ├── CustomResolver1.json │ ├── LegacyResolverV1.json │ ├── LegacyResolverV5.json │ ├── NameWrapperEthRegistrarController.json │ ├── NameWrapperPublicResolver.json │ ├── NoMulticallResolver.json │ ├── OldResolver.json │ ├── OutdatedResolverV1.json │ ├── OutdatedResolverV2.json │ ├── OutdatedResolverV3.json │ ├── StaticBulkRenewal.json │ └── UniversalRegistrarRenewalWithReferrer.json ├── .eslintrc.json ├── .utils │ ├── LegacyETHRegistrarController.d.ts │ ├── LegacyPublicResolver.d.ts │ ├── artifacts.d.ts │ ├── nameWrapperRegisterHelpers.ts │ └── nonceManager.ts ├── 00_deploy_legacy_resolvers.ts ├── 00_deploy_namewrapper_eth_registrar_controller.ts ├── 00_deploy_static_bulk_renewal.ts ├── 00_deploy_universal_registrar_renewal_with_referrer.ts ├── 00_legacy_registry.ts ├── 00_migrate_legacy_records.ts ├── 00_register_contracts.ts ├── 00_register_desynced.ts ├── 00_register_legacy.ts ├── 00_register_wrapped.ts ├── 00_update_contracts.ts ├── 01_get_contract_addresses.ts └── 01_sync_time.ts ├── docs └── safe-ens-metamask-testing.md ├── e2e └── specs │ ├── stateful │ ├── address.spec.ts │ ├── dnsclaim.spec.ts │ ├── moonpay.spec.ts │ ├── more-tab-primary-name.spec.ts │ ├── profile.spec.ts │ ├── settings-primary-name.spec.ts │ └── un-normalised-name.spec.ts │ ├── stateless │ ├── _importName.spec.ts │ ├── addressPageErrorHandling.spec.ts │ ├── advancedEditor.spec.ts │ ├── box.spec.ts │ ├── createSubname.spec.ts │ ├── deleteSubname.spec.ts │ ├── desyncedName.spec.ts │ ├── extendNames.spec.ts │ ├── myNames.spec.ts │ ├── ownership.2LD.spec.ts │ ├── ownership.3LD.spec.ts │ ├── ownership.4LD.spec.ts │ ├── ownership.spec.ts │ ├── permissions.spec.ts │ ├── profileEditor.spec.ts │ ├── registerName.spec.ts │ ├── setPrimary.spec.ts │ ├── settings.spec.ts │ ├── updateResolver.spec.ts │ ├── verifications.spec.ts │ └── wrapName.spec.ts │ └── wallets │ ├── REFACTORING_GUIDE.md │ ├── config │ ├── safe-ens-config.ts │ ├── test-utilities.ts │ └── wallet-ens-config.ts │ ├── extendName-metamask.spec.ts │ ├── registerName-metamask.spec.ts │ ├── safe-ens-with-metamask.spec.ts │ └── subName-metamask.spec.ts ├── ens-test-env.config.js ├── functions ├── _middleware.ts └── tsconfig.json ├── hardhat.config.ts ├── knip.config.ts ├── next-env.d.ts ├── next-i18next.config.js ├── next.config.mjs ├── package.json ├── patches ├── @ensdomains__dnsprovejs@0.5.1.patch ├── @ensdomains__ens-contracts@1.6.0.patch ├── @ensdomains__ens-test-env@1.0.1.patch ├── @nomicfoundation%2Fhardhat-viem@2.0.3.patch ├── hardhat-deploy@0.12.4.patch ├── next-dev-https@0.1.2.patch ├── node-forge@1.3.1.patch ├── react-confetti@6.1.0.patch └── viem@2.19.4.patch ├── playwright.config.ts ├── playwright ├── fixtures │ ├── accounts.ts │ ├── consoleListener.ts │ ├── contracts │ │ └── utils │ │ │ └── addTestContracts.ts │ ├── login.ts │ ├── makeName │ │ ├── README.md │ │ ├── constants │ │ │ └── abis.ts │ │ ├── generators │ │ │ ├── generateLegacySubname.ts │ │ │ ├── generateRecords.ts │ │ │ ├── generateWrappedSubname.ts │ │ │ ├── legacyNameGenerator.ts │ │ │ ├── legacyWithConfigNameGenerator.ts │ │ │ ├── utils │ │ │ │ └── registerWrappeName.ts │ │ │ └── wrappedNameGenerator.ts │ │ ├── index.ts │ │ └── utils │ │ │ ├── adjustName.ts │ │ │ ├── getLegacyRentPrice.ts │ │ │ └── getTimeOffset.ts │ ├── subgraph.ts │ └── time.ts ├── index.ts └── pageObjects │ ├── addressPage.ts │ ├── advancedEditorModal.ts │ ├── editRolesModal.ts │ ├── extendNamesModal.ts │ ├── homePage.ts │ ├── importPage.ts │ ├── index.ts │ ├── morePage.ts │ ├── ownershipPage.ts │ ├── permissionsPage.ts │ ├── profilePage.ts │ ├── recordsPage.ts │ ├── registrationPage.ts │ ├── selectPrimaryNameModal.ts │ ├── sendNameModal.ts │ ├── settingsPage.ts │ ├── subnamePage.ts │ ├── transactionModal.ts │ └── verificationsModal.ts ├── pnpm-lock.yaml ├── public ├── _headers ├── android-chrome-144x144.png ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── favicon.svg ├── fonts │ ├── fonts.css │ └── sans-serif │ │ ├── Satoshi-Black.otf │ │ ├── Satoshi-Black.woff │ │ ├── Satoshi-Black.woff2 │ │ ├── Satoshi-Bold.otf │ │ ├── Satoshi-Bold.woff │ │ ├── Satoshi-Bold.woff2 │ │ ├── Satoshi-Medium.otf │ │ ├── Satoshi-Medium.woff │ │ ├── Satoshi-Medium.woff2 │ │ ├── Satoshi-Regular.otf │ │ ├── Satoshi-Variable.ttf │ │ ├── Satoshi-Variable.woff │ │ ├── Satoshi-Variable.woff2 │ │ └── special │ │ ├── Satoshi-Bold.otf │ │ └── Satoshi-ExtraBold.otf ├── locales │ ├── de │ │ └── common.json │ ├── en │ │ ├── address.json │ │ ├── common.json │ │ ├── dnssec.json │ │ ├── ensv2.json │ │ ├── error.json │ │ ├── names.json │ │ ├── profile.json │ │ ├── register.json │ │ ├── settings.json │ │ └── transactionFlow.json │ ├── es │ │ ├── address.json │ │ ├── common.json │ │ ├── dnssec.json │ │ ├── ensv2.json │ │ ├── error.json │ │ ├── names.json │ │ ├── profile.json │ │ ├── register.json │ │ ├── settings.json │ │ └── transactionFlow.json │ ├── nl │ │ ├── address.json │ │ ├── common.json │ │ ├── dnssec.json │ │ ├── names.json │ │ ├── profile.json │ │ ├── register.json │ │ ├── settings.json │ │ └── transactionFlow.json │ ├── pt │ │ ├── address.json │ │ ├── common.json │ │ ├── dnssec.json │ │ ├── ensv2.json │ │ ├── error.json │ │ ├── names.json │ │ ├── profile.json │ │ ├── register.json │ │ ├── settings.json │ │ └── transactionFlow.json │ ├── ru │ │ ├── address.json │ │ ├── common.json │ │ ├── dnssec.json │ │ ├── error.json │ │ ├── names.json │ │ ├── profile.json │ │ ├── register.json │ │ ├── settings.json │ │ └── transactionFlow.json │ ├── uk │ │ ├── address.json │ │ ├── common.json │ │ ├── dnssec.json │ │ ├── error.json │ │ ├── names.json │ │ ├── profile.json │ │ ├── register.json │ │ ├── settings.json │ │ └── transactionFlow.json │ └── zh │ │ ├── address.json │ │ ├── common.json │ │ ├── dnssec.json │ │ ├── ensv2.json │ │ ├── error.json │ │ ├── names.json │ │ ├── profile.json │ │ ├── register.json │ │ ├── settings.json │ │ ├── transactionFlow.json │ │ └── translationNorms.md ├── manifest.json ├── manifest.webmanifest ├── mask-icon.svg ├── migrate │ ├── confetti.png │ └── preview.svg ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png ├── other │ └── TemplateNFTImage.svg ├── robots.txt ├── safari-pinned-tab.svg ├── site.webmanifest └── wasm │ └── break_iterator.wasm ├── scripts ├── check-chrome.sh ├── coin-mapper.ts ├── compare-locales.mjs ├── generate-site-map.mjs └── importCoinIcons.ts ├── src ├── __tests__ │ └── pages │ │ └── address.test.tsx ├── assets │ ├── Aeroplane.svg │ ├── ArrowLeft.svg │ ├── Calendar.svg │ ├── Camera.svg │ ├── CircleTick.svg │ ├── Clock.svg │ ├── Cog.svg │ ├── Coin.svg │ ├── CropBorder.svg │ ├── CropFrame.svg │ ├── CrossCircle.svg │ ├── DAO.svg │ ├── Dentity.svg │ ├── DownDirection.svg │ ├── ENSFull.svg │ ├── ENSWithGradient.svg │ ├── FAQ.svg │ ├── FastForward.svg │ ├── Feedback.svg │ ├── Filter.svg │ ├── Gas.svg │ ├── GoDaddy.svg │ ├── Grid.svg │ ├── HeaderCropBorder.svg │ ├── HeaderCropFrame.svg │ ├── Heart.svg │ ├── Info.svg │ ├── List.svg │ ├── MagnifyingGlass.svg │ ├── Minus.svg │ ├── MinusCircle.svg │ ├── MoonpayLogo.svg │ ├── Outlink.svg │ ├── PaperPlane.svg │ ├── PaperPlaneColour.svg │ ├── Person.svg │ ├── PersonPlus.svg │ ├── PhantomWallet.svg │ ├── PhantomWallet.ts │ ├── Plus.svg │ ├── PlusCircle.svg │ ├── Question.svg │ ├── SOS.svg │ ├── SortAscending.svg │ ├── SortDescending.svg │ ├── Spanner.svg │ ├── Sparkles.svg │ ├── Stars.svg │ ├── Trash.svg │ ├── TripleDot.svg │ ├── Unsupported.svg │ ├── UpDirection.svg │ ├── VerifiedPerson.svg │ ├── VerifiedRecord.svg │ ├── Wallet.svg │ ├── WrapNameGift.tsx │ ├── address │ │ ├── AbbcIcon.svg │ │ ├── AdaIcon.svg │ │ ├── AeIcon.svg │ │ ├── AionIcon.svg │ │ ├── AlgoIcon.svg │ │ ├── ArIcon.svg │ │ ├── ArbIcon.svg │ │ ├── ArdrIcon.svg │ │ ├── ArkIcon.svg │ │ ├── AtomIcon.svg │ │ ├── AvaxIcon.svg │ │ ├── BaseIcon.svg │ │ ├── BcdIcon.svg │ │ ├── BchIcon.svg │ │ ├── BcnIcon.svg │ │ ├── BnbIcon.svg │ │ ├── BtcIcon.svg │ │ ├── BtgIcon.svg │ │ ├── BtsIcon.svg │ │ ├── CeloIcon.svg │ │ ├── CkbIcon.svg │ │ ├── CloIcon.svg │ │ ├── CroIcon.svg │ │ ├── DashIcon.svg │ │ ├── DcrIcon.svg │ │ ├── DefaultIcon.svg │ │ ├── DgbIcon.svg │ │ ├── DiviIcon.svg │ │ ├── DogeIcon.svg │ │ ├── DotIcon.svg │ │ ├── DynamicAddressIcon.tsx │ │ ├── EgldIcon.svg │ │ ├── ElaIcon.svg │ │ ├── EosIcon.svg │ │ ├── EtcIcon.svg │ │ ├── EthIcon.svg │ │ ├── EtnIcon.svg │ │ ├── EwtIcon.svg │ │ ├── FilIcon.svg │ │ ├── FlowIcon.svg │ │ ├── FtmIcon.svg │ │ ├── GnoIcon.svg │ │ ├── GoIcon.svg │ │ ├── GrinIcon.svg │ │ ├── GrsIcon.svg │ │ ├── HbarIcon.svg │ │ ├── HiveIcon.svg │ │ ├── HntIcon.svg │ │ ├── IcxIcon.svg │ │ ├── IostIcon.svg │ │ ├── IotaIcon.svg │ │ ├── IotxIcon.svg │ │ ├── IrisIcon.svg │ │ ├── KavaIcon.svg │ │ ├── KmdIcon.svg │ │ ├── KsmIcon.svg │ │ ├── LineaIcon.svg │ │ ├── LskIcon.svg │ │ ├── LtcIcon.svg │ │ ├── LunaIcon.svg │ │ ├── MaticIcon.svg │ │ ├── MetisIcon.svg │ │ ├── NanoIcon.svg │ │ ├── NasIcon.svg │ │ ├── NearIcon.svg │ │ ├── NeoIcon.svg │ │ ├── NrgIcon.svg │ │ ├── NulsIcon.svg │ │ ├── OneIcon.svg │ │ ├── OntIcon.svg │ │ ├── OpIcon.svg │ │ ├── PoaIcon.svg │ │ ├── PpcIcon.svg │ │ ├── QtumIcon.svg │ │ ├── RddIcon.svg │ │ ├── RuneIcon.svg │ │ ├── RvnIcon.svg │ │ ├── ScrollIcon.svg │ │ ├── SolIcon.svg │ │ ├── SrmIcon.svg │ │ ├── SteemIcon.svg │ │ ├── StratIcon.svg │ │ ├── StrkIcon.svg │ │ ├── StxIcon.svg │ │ ├── SysIcon.svg │ │ ├── TfuelIcon.svg │ │ ├── ThetaIcon.svg │ │ ├── TomoIcon.svg │ │ ├── TrxIcon.svg │ │ ├── VetIcon.svg │ │ ├── ViaIcon.svg │ │ ├── VlxIcon.svg │ │ ├── VsysIcon.svg │ │ ├── WanIcon.svg │ │ ├── WavesIcon.svg │ │ ├── XemIcon.svg │ │ ├── XhvIcon.svg │ │ ├── XlmIcon.svg │ │ ├── XmrIcon.svg │ │ ├── XrpIcon.svg │ │ ├── XtzIcon.svg │ │ ├── XvgIcon.svg │ │ ├── ZecIcon.svg │ │ ├── ZenIcon.svg │ │ ├── ZilIcon.svg │ │ ├── ZkSyncIcon.svg │ │ ├── ZoraIcon.svg │ │ └── dynamicAddressIcons.ts │ ├── contentHash │ │ ├── ContentHashIPFS.svg │ │ ├── DynamicContentHashIcon.tsx │ │ ├── arweave.svg │ │ ├── onion.svg │ │ ├── skynet.svg │ │ └── swarm.svg │ ├── dotbox │ │ ├── CoreFeatureENS.svg │ │ ├── CoreFeatureNFT.svg │ │ ├── CoreFeatureOnchain.svg │ │ ├── CoreFeatureWebsite.svg │ │ └── DotBoxLogo.svg │ ├── legal │ │ ├── privacy-policy.md │ │ └── terms-of-use.md │ ├── network │ │ ├── DynamicNetworkIcon.tsx │ │ ├── arbitrum.svg │ │ ├── base.svg │ │ ├── dynamicNetworkIcons.ts │ │ ├── ens.svg │ │ ├── ethereum.svg │ │ ├── linea.svg │ │ ├── optimism.svg │ │ └── scroll.svg │ ├── social │ │ ├── DynamicSocialIcon.tsx │ │ ├── SocialDiscord.svg │ │ ├── SocialDiscourse.svg │ │ ├── SocialDiscourseColour.svg │ │ ├── SocialGithub.svg │ │ ├── SocialMedium.svg │ │ ├── SocialMirror.svg │ │ ├── SocialMirrorColour.svg │ │ ├── SocialTelegram.svg │ │ ├── SocialX.svg │ │ └── SocialYoutube.svg │ ├── text │ │ ├── DynamicTextIcon.tsx │ │ ├── TextBio.svg │ │ ├── TextLocation.svg │ │ ├── TextName.svg │ │ ├── TextPublicKey.svg │ │ └── TextURL.svg │ └── verification │ │ ├── Dentity.svg │ │ └── DynamicVerificationIcon.tsx ├── components │ ├── @atoms │ │ ├── BannerMessageWithAction │ │ │ └── BannerMessageWithAction.tsx │ │ ├── BaseLink.tsx │ │ ├── CacheableComponent.tsx │ │ ├── Calendar │ │ │ ├── Calendar.test.tsx │ │ │ └── Calendar.tsx │ │ ├── CheckButton │ │ │ └── CheckButton.tsx │ │ ├── CollapsibleContent │ │ │ ├── CollapsibleContent.test.tsx │ │ │ └── CollapsibleContent.tsx │ │ ├── CurrencyText │ │ │ ├── CurrencyText.test.tsx │ │ │ └── CurrencyText.tsx │ │ ├── DismissDialogButton │ │ │ └── DismissDialogButton.tsx │ │ ├── ErrorScreen.test.tsx │ │ ├── ErrorScreen.tsx │ │ ├── ExpandableSection │ │ │ ├── ExpandableSection.test.tsx │ │ │ └── ExpandableSection.tsx │ │ ├── ExpiryComponents │ │ │ ├── ExpiryComponents.test.tsx │ │ │ └── ExpiryComponents.tsx │ │ ├── GasDisplay.tsx │ │ ├── InfiniteScrollContainer │ │ │ └── InfiniteScrollContainer.tsx │ │ ├── InnerDialog.tsx │ │ ├── Invoice │ │ │ ├── Invoice.test.tsx │ │ │ └── Invoice.tsx │ │ ├── MobileFullWidth.tsx │ │ ├── NameDetailItem │ │ │ ├── NameDetailItem.test.tsx │ │ │ ├── NameDetailItem.tsx │ │ │ ├── TaggedNameItem.test.tsx │ │ │ └── TaggedNameItem.tsx │ │ ├── OptionalLink │ │ │ └── OptionalLink.tsx │ │ ├── PlusMinusControl │ │ │ ├── PlusMinusControl.test.tsx │ │ │ └── PlusMinusControl.tsx │ │ ├── PseudoActionButton │ │ │ ├── PseudoActionButton.test.tsx │ │ │ └── PseudoActionButton.tsx │ │ ├── RegistrationTimeComparisonBanner │ │ │ ├── RegistrationTimeComparisonBanner.test.tsx │ │ │ └── RegistrationTimeComparisonBanner.tsx │ │ ├── RouteItem │ │ │ ├── RouteItem.test.tsx │ │ │ └── RouteItem.tsx │ │ ├── Spacer.tsx │ │ ├── StatusDots │ │ │ └── StatusDots.tsx │ │ ├── StyledLink.tsx │ │ ├── StyledName │ │ │ └── StyledName.tsx │ │ ├── SupportOutlink.tsx │ │ ├── SupportQuestionIcon.tsx │ │ └── TextWithTooltip │ │ │ ├── TextWithTooltip.test.tsx │ │ │ └── TextWithTooltip.tsx │ ├── @molecules │ │ ├── AddRecordButton │ │ │ ├── AddRecordButton.test.tsx │ │ │ └── AddRecordButton.tsx │ │ ├── AdvancedEditor │ │ │ ├── AddRecord.tsx │ │ │ ├── AdvancedEditorTabContent.tsx │ │ │ ├── AdvancedEditorTabs.tsx │ │ │ └── textOptions.tsx │ │ ├── AvatarWithIdentifier │ │ │ ├── AvatarWithIdentifier.test.tsx │ │ │ └── AvatarWithIdentifier.tsx │ │ ├── AvatarWithLink │ │ │ ├── AvatarWithLink.test.tsx │ │ │ └── AvatarWithLink.tsx │ │ ├── ConfirmationDialogView │ │ │ ├── ConfirmationDialogView.test.tsx │ │ │ └── ConfirmationDialogView.tsx │ │ ├── ConnectButton │ │ │ ├── ConnectButton.test.tsx │ │ │ ├── ConnectButton.tsx │ │ │ ├── utils.test.tsx │ │ │ └── utils.tsx │ │ ├── DateSelection │ │ │ ├── DateSelection.test.tsx │ │ │ └── DateSelection.tsx │ │ ├── DesyncedMessage │ │ │ └── DesyncedMessage.tsx │ │ ├── DialogComponentVariants │ │ │ ├── DialogFooterWithBorder.tsx │ │ │ ├── DialogHeadinWithBorder.tsx │ │ │ └── DialogInput.tsx │ │ ├── DisabledButtonWithTooltip.tsx │ │ ├── DogFood.tsx │ │ ├── EditResolver │ │ │ ├── EditResolverForm.tsx │ │ │ └── EditResolverWarnings.tsx │ │ ├── FaucetBanner.tsx │ │ ├── Hamburger │ │ │ ├── Hamburger.tsx │ │ │ ├── LanguageMenu.tsx │ │ │ ├── MainMenu.tsx │ │ │ └── ThemeMenu.tsx │ │ ├── LegacyDropdown │ │ │ └── LegacyDropdown.tsx │ │ ├── NFTTemplate │ │ │ ├── NFTTemplate.test.tsx │ │ │ └── NFTTemplate.tsx │ │ ├── NameListView │ │ │ ├── NameListView.test.tsx │ │ │ └── NameListView.tsx │ │ ├── NameTableHeader │ │ │ └── NameTableHeader.tsx │ │ ├── NetworkNotifications │ │ │ ├── NetworkNotifications.test.tsx │ │ │ ├── NetworkNotifications.tsx │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── ProfileEditor │ │ │ ├── Avatar │ │ │ │ ├── AvatarButton.tsx │ │ │ │ ├── AvatarCrop.tsx │ │ │ │ ├── AvatarManual.tsx │ │ │ │ ├── AvatarNFT.test.tsx │ │ │ │ ├── AvatarNFT.tsx │ │ │ │ ├── AvatarUpload.test.tsx │ │ │ │ ├── AvatarUpload.tsx │ │ │ │ └── AvatarViewManager.tsx │ │ │ ├── Header │ │ │ │ ├── HeaderButton.tsx │ │ │ │ ├── HeaderCrop.tsx │ │ │ │ ├── HeaderManual.tsx │ │ │ │ ├── HeaderNFT.tsx │ │ │ │ ├── HeaderUpload.test.tsx │ │ │ │ ├── HeaderUpload.tsx │ │ │ │ └── HeaderViewManager.tsx │ │ │ └── options │ │ │ │ └── addressOptions.tsx │ │ ├── QuestionTooltip │ │ │ ├── QuestionTooltip.test.tsx │ │ │ └── QuestionTooltip.tsx │ │ ├── RecordInput │ │ │ ├── RecordInput.test.tsx │ │ │ └── RecordInput.tsx │ │ ├── ScrollBoxWithSpinner.tsx │ │ ├── SearchInput │ │ │ ├── SearchInput.test.tsx │ │ │ ├── SearchInput.tsx │ │ │ ├── SearchInputBox.tsx │ │ │ ├── SearchResult.test.tsx │ │ │ ├── SearchResult.tsx │ │ │ └── types.ts │ │ ├── TransactionDialogManager │ │ │ ├── DisplayItems.test.tsx │ │ │ ├── DisplayItems.tsx │ │ │ ├── DynamicLoadingContext.tsx │ │ │ ├── InputComponentWrapper.test.tsx │ │ │ ├── InputComponentWrapper.tsx │ │ │ ├── TransactionDialogManager.test.tsx │ │ │ ├── TransactionDialogManager.tsx │ │ │ └── stage │ │ │ │ ├── Intro.tsx │ │ │ │ ├── TransactionStageModal.test.tsx │ │ │ │ ├── TransactionStageModal.tsx │ │ │ │ ├── query.test.ts │ │ │ │ └── query.ts │ │ └── VerificationBadge │ │ │ ├── VerificationBadge.tsx │ │ │ └── components │ │ │ ├── VerificationBadgeAccountTooltipContent.tsx │ │ │ └── VerificationBadgeVerifierTooltipContent.tsx │ ├── AvatarWithZorb.tsx │ ├── Card.tsx │ ├── ConditionalWrapper.tsx │ ├── CookieConsentBanner.tsx │ ├── Header.test.tsx │ ├── Header.tsx │ ├── IconCopyAnimated.tsx │ ├── LeadingHeading.tsx │ ├── NFTWithPlaceholder.tsx │ ├── Outlink.tsx │ ├── ProfileSnippet.test.tsx │ ├── ProfileSnippet.tsx │ ├── RecordItem.tsx │ ├── SocialIcon.tsx │ ├── TabBar.tsx │ ├── TestnetWarning.tsx │ ├── TransactionNotifications.test.tsx │ ├── TransactionNotifications.tsx │ ├── address │ │ └── NoProfileSnippet.tsx │ └── pages │ │ ├── AnnouncementBanner.tsx │ │ ├── VerificationErrorDialog.tsx │ │ ├── dotbox │ │ └── [name] │ │ │ └── DotBoxRegistration.tsx │ │ ├── import │ │ └── [name] │ │ │ ├── DnsClaim.tsx │ │ │ ├── StatusChecker.test.tsx │ │ │ ├── StatusChecker.tsx │ │ │ ├── SupportLinkList.tsx │ │ │ ├── shared.tsx │ │ │ ├── steps │ │ │ ├── CompleteImport.tsx │ │ │ ├── EnableDnssec.tsx │ │ │ ├── ImportError.tsx │ │ │ ├── SelectImportType.test.tsx │ │ │ ├── SelectImportType.tsx │ │ │ ├── VerifyOffchainOwnership.tsx │ │ │ └── onchain │ │ │ │ ├── ImportTransaction.tsx │ │ │ │ └── VerifyOnchainOwnership.tsx │ │ │ ├── useDnsImportReducer.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── migrate │ │ └── Carousel.tsx │ │ └── profile │ │ ├── NameSnippet.test.tsx │ │ ├── NameSnippet.tsx │ │ ├── ProfileButton.test.tsx │ │ ├── ProfileButton.tsx │ │ ├── ProfileDetails.test.tsx │ │ ├── ProfileDetails.tsx │ │ ├── TabWrapper.tsx │ │ ├── [name] │ │ ├── Profile.test.tsx │ │ ├── Profile.tsx │ │ ├── ProfileEmptyBanner.test.tsx │ │ ├── ProfileEmptyBanner.tsx │ │ ├── registration │ │ │ ├── FullInvoice.tsx │ │ │ ├── Registration.tsx │ │ │ ├── steps │ │ │ │ ├── Complete.tsx │ │ │ │ ├── Info.tsx │ │ │ │ ├── Invoice.tsx │ │ │ │ ├── Pricing │ │ │ │ │ ├── Pricing.test.tsx │ │ │ │ │ ├── Pricing.tsx │ │ │ │ │ └── TemporaryPremium.tsx │ │ │ │ ├── Profile │ │ │ │ │ ├── AddProfileRecordView.test.tsx │ │ │ │ │ ├── AddProfileRecordView.tsx │ │ │ │ │ ├── CustomProfileRecordInput.tsx │ │ │ │ │ ├── DynamicIcon.tsx │ │ │ │ │ ├── Field.tsx │ │ │ │ │ ├── OptionButton.tsx │ │ │ │ │ ├── OptionGroup.tsx │ │ │ │ │ ├── Profile.test.tsx │ │ │ │ │ ├── Profile.tsx │ │ │ │ │ ├── ProfileRecordInput.tsx │ │ │ │ │ ├── ProfileRecordTextarea.tsx │ │ │ │ │ ├── WrappedAvatarButton.tsx │ │ │ │ │ ├── WrappedHeaderButton.tsx │ │ │ │ │ ├── profileRecordUtils.test.ts │ │ │ │ │ └── profileRecordUtils.ts │ │ │ │ └── Transactions.tsx │ │ │ ├── types.ts │ │ │ ├── useMoonpayRegistration.test.ts │ │ │ └── useMoonpayRegistration.ts │ │ └── tabs │ │ │ ├── MoreTab │ │ │ ├── Miscellaneous │ │ │ │ ├── EarnifiDialog.test.tsx │ │ │ │ ├── EarnifiDialog.tsx │ │ │ │ ├── GraceEndDate.test.tsx │ │ │ │ ├── GraceEndDate.tsx │ │ │ │ ├── RegistrationDate.test.tsx │ │ │ │ ├── RegistrationDate.tsx │ │ │ │ ├── components │ │ │ │ │ └── DateLayout.tsx │ │ │ │ ├── useSubscribeToEarnifi.test.ts │ │ │ │ └── useSubscribeToEarnifi.ts │ │ │ ├── MoreTab.test.tsx │ │ │ ├── MoreTab.tsx │ │ │ ├── NameWrapper.test.tsx │ │ │ ├── NameWrapper.tsx │ │ │ ├── Ownership.tsx │ │ │ ├── PrimaryName.tsx │ │ │ ├── Resolver.tsx │ │ │ └── Token │ │ │ │ ├── BaseWrapButton.tsx │ │ │ │ ├── Token.test.tsx │ │ │ │ ├── Token.tsx │ │ │ │ ├── UnwrapButton.test.tsx │ │ │ │ ├── UnwrapButton.tsx │ │ │ │ ├── WrapButton.test.tsx │ │ │ │ └── WrapButton.tsx │ │ │ ├── OwnershipTab │ │ │ ├── OwnershipTab.tsx │ │ │ ├── hooks │ │ │ │ ├── useOwnershipWarning.test.tsx │ │ │ │ └── useOwnershipWarning.tsx │ │ │ └── sections │ │ │ │ ├── ContractSection │ │ │ │ ├── ContractSection.test.tsx │ │ │ │ ├── ContractSection.tsx │ │ │ │ └── components │ │ │ │ │ └── Header.tsx │ │ │ │ ├── ExpirySection │ │ │ │ ├── ExpirySection.test.tsx │ │ │ │ ├── ExpirySection.tsx │ │ │ │ ├── components │ │ │ │ │ ├── ExpiryPanel.test.tsx │ │ │ │ │ └── ExpiryPanel.tsx │ │ │ │ └── hooks │ │ │ │ │ ├── useExpiryActions.test.tsx │ │ │ │ │ ├── useExpiryActions.tsx │ │ │ │ │ ├── useExpiryDetails.test.ts │ │ │ │ │ └── useExpiryDetails.ts │ │ │ │ └── RolesSection │ │ │ │ ├── RolesSection.tsx │ │ │ │ ├── components │ │ │ │ ├── Header.tsx │ │ │ │ ├── RoleRow.test.tsx │ │ │ │ ├── RoleRow.tsx │ │ │ │ └── RoleTag.tsx │ │ │ │ └── hooks │ │ │ │ ├── useRoleActions.test.tsx │ │ │ │ └── useRoleActions.tsx │ │ │ ├── PermissionsTab │ │ │ ├── ExpiryPermissions.tsx │ │ │ ├── NameChangePermissions.tsx │ │ │ ├── OwnershipPermissions.tsx │ │ │ ├── PermissionsTab.test.tsx │ │ │ ├── PermissionsTab.tsx │ │ │ └── Section.tsx │ │ │ ├── ProfileTab.tsx │ │ │ ├── RecordsTab.test.tsx │ │ │ ├── RecordsTab.tsx │ │ │ ├── SubnamesTab.test.tsx │ │ │ └── SubnamesTab.tsx │ │ └── settings │ │ ├── DevSection.tsx │ │ ├── PrimarySection │ │ ├── NetworkRow.tsx │ │ ├── NetworkSpecificPrimaryNamesSection.tsx │ │ └── PrimarySection.tsx │ │ ├── PrivacySection │ │ ├── index.test.tsx │ │ └── index.tsx │ │ ├── Section.tsx │ │ ├── TransactionSection │ │ ├── ClearTransactionsDialog.tsx │ │ ├── TransactionSection.test.tsx │ │ └── TransactionSection.tsx │ │ └── WalletSection.tsx ├── constants │ ├── allCoins.json │ ├── blockExplorers │ │ ├── evm.json │ │ ├── other.json │ │ └── supported.json │ ├── chains.test.ts │ ├── chains.ts │ ├── coinsWithIcons.json │ ├── coinsWithoutIcons.json │ ├── constants.test.ts │ ├── dnsLinks.ts │ ├── domains.json │ ├── interfaces.json │ ├── networks.ts │ ├── pointers.json │ ├── profileRecordOptions.ts │ ├── resolverAddressData.test.ts │ ├── resolverAddressData.ts │ ├── resolverInterfaceIds.ts │ ├── supportedAddresses.ts │ ├── supportedContentHashKeys.ts │ ├── supportedGeneralRecordKeys.ts │ ├── supportedMediaRecordKeys.ts │ ├── supportedOtherRecordKeys.ts │ ├── supportedSocialRecordKeys.ts │ ├── textRecords.ts │ ├── tldData.ts │ └── verification.ts ├── hooks │ ├── abilities │ │ ├── useAbilities.test.ts │ │ ├── useAbilities.ts │ │ └── utils │ │ │ ├── getDeleteAbilities.test.ts │ │ │ ├── getDeleteAbilities.ts │ │ │ ├── getEditAbilities.test.ts │ │ │ ├── getEditAbilities.ts │ │ │ ├── getReclaimAbilities.test.ts │ │ │ ├── getReclaimAbilities.ts │ │ │ ├── getSendAbilities.test.ts │ │ │ └── getSendAbilities.ts │ ├── account │ │ └── useAccountSafely.ts │ ├── chain │ │ ├── useBlockTimestamp.ts │ │ ├── useChainName.ts │ │ ├── useCoinChain.test.ts │ │ ├── useCoinChain.ts │ │ ├── useContractAddress.ts │ │ ├── useCurrentBlockTimestamp.ts │ │ ├── useEstimateGasWithStateOverride.ts │ │ ├── useGasPrice.ts │ │ └── useInvalidateOnBlock.ts │ ├── dns │ │ ├── useDnsOffchainStatus.ts │ │ └── useDnsSecEnabled.ts │ ├── dotbox │ │ ├── useDotBoxAvailabilityOffchain.ts │ │ └── useDotBoxAvailabilityOnchain.ts │ ├── ensjs │ │ ├── dns │ │ │ ├── useDnsImportData.ts │ │ │ ├── useDnsOffchainData.ts │ │ │ ├── useDnsOwner.ts │ │ │ └── useIsOffchainName.ts │ │ ├── public │ │ │ ├── useAddressRecord.ts │ │ │ ├── useExpiry.ts │ │ │ ├── useOwner.ts │ │ │ ├── usePrice.ts │ │ │ ├── usePrimaryName.test.ts │ │ │ ├── usePrimaryName.ts │ │ │ ├── useRecords.test-d.ts │ │ │ ├── useRecords.test.ts │ │ │ ├── useRecords.ts │ │ │ ├── useResolver.ts │ │ │ ├── useReverseRegistryName.ts │ │ │ ├── useSupportedInterfaces.ts │ │ │ └── useWrapperData.ts │ │ └── subgraph │ │ │ ├── useDecodedName.ts │ │ │ ├── useNameHistory.ts │ │ │ ├── useNamesForAddress.ts │ │ │ ├── useSubgraphClient.ts │ │ │ ├── useSubgraphMeta.ts │ │ │ ├── useSubgraphRecords.ts │ │ │ ├── useSubgraphRegistrant.ts │ │ │ └── useSubnames.ts │ ├── fuses │ │ ├── useFusesSetDates.test.ts │ │ ├── useFusesSetDates.ts │ │ ├── useFusesStates.ts │ │ └── usePccExpired.ts │ ├── gasEstimation │ │ ├── calculateTransactions.ts │ │ └── useEstimateRegistration.ts │ ├── nameType │ │ ├── getNameType.ts │ │ ├── useNameType.test.ts │ │ └── useNameType.ts │ ├── ownership │ │ └── useRoles │ │ │ ├── useRoles.test.ts │ │ │ ├── useRoles.ts │ │ │ └── utils │ │ │ ├── getAvailableRoles.test.ts │ │ │ ├── getAvailableRoles.ts │ │ │ ├── getRoles.test.ts │ │ │ └── getRoles.ts │ ├── pages │ │ ├── profile │ │ │ ├── [name] │ │ │ │ └── profile │ │ │ │ │ └── useProfileActions │ │ │ │ │ ├── useProfileActions.test.ts │ │ │ │ │ └── useProfileActions.ts │ │ │ └── useRenew │ │ │ │ ├── useRenew.test.ts │ │ │ │ └── useRenew.ts │ │ └── register │ │ │ └── useRegistrationValueFromRegisterReceipt.ts │ ├── primary │ │ ├── queries │ │ │ └── getPrimaryNameQuery.ts │ │ ├── useGetPrimaryNameTransactionFlowItem │ │ │ ├── index.ts │ │ │ ├── useGetPrimaryNameTransactionFlowItem.test.ts │ │ │ └── utils │ │ │ │ └── index.ts │ │ └── usePrimaryNames.tsx │ ├── registration │ │ ├── useCheckRegistered.ts │ │ ├── useExistingCommitment.ts │ │ ├── useSimulateRegistration.ts │ │ └── utils │ │ │ ├── getBlockMetadataByTimestamp.ts │ │ │ └── useExistingCommitment.test.ts │ ├── resolver │ │ ├── useRegistryResolver.ts │ │ ├── useResolverIsAuthorised.test.ts │ │ ├── useResolverIsAuthorised.ts │ │ ├── useResolverStatus.test.ts │ │ ├── useResolverStatus.ts │ │ ├── useResolverType.test.ts │ │ └── useResolverType.ts │ ├── reverseRecord │ │ └── usePrimaryNameOrAddress.ts │ ├── time │ │ ├── useDurationCountdown.test.ts │ │ └── useDurationCountdown.ts │ ├── transactions │ │ ├── TransactionStoreContext.tsx │ │ ├── clearRelevantNameQueriesFromRegisterOrImport.test.ts │ │ ├── clearRelevantNameQueriesFromRegisterOrImport.ts │ │ ├── transactionStore.test.ts │ │ ├── transactionStore.ts │ │ ├── useAddRecentTransaction.ts │ │ ├── useClearRecentTransactions.ts │ │ ├── useHasPendingTransactions.ts │ │ ├── useRecentTransactions.ts │ │ ├── waitForTransaction.test.ts │ │ └── waitForTransaction.ts │ ├── useActiveRoute.test.ts │ ├── useActiveRoute.ts │ ├── useAdvancedEditor.ts │ ├── useApprovedForAll.ts │ ├── useAvatarFromRecord.ts │ ├── useBasicName.test.ts │ ├── useBasicName.ts │ ├── useBeautifiedName.ts │ ├── useCalendarOptions.ts │ ├── useContentWarning.ts │ ├── useCopied.ts │ ├── useCustomizedTLD.ts │ ├── useDebouncedCallback.ts │ ├── useDefaultRef.ts │ ├── useEnsAvatar.ts │ ├── useEthPrice.ts │ ├── useEventTracker.test.ts │ ├── useEventTracker.ts │ ├── useExpandableRecordsGroup.test.ts │ ├── useExpandableRecordsGroup.ts │ ├── useFaucet.ts │ ├── useGetSegmentLength.ts │ ├── useHasSubnames.ts │ ├── useInitial.ts │ ├── useIsSafeApp.test.ts │ ├── useIsSafeApp.ts │ ├── useIsWrapped.ts │ ├── useLocalStorage.node.test.tsx │ ├── useLocalStorage.test.ts │ ├── useLocalStorage.ts │ ├── useNameDetails.test.ts │ ├── useNameDetails.tsx │ ├── useOwners.test.ts │ ├── useOwners.ts │ ├── useParentBasicName.ts │ ├── usePrefetchQuery.ts │ ├── usePrimaryProfile.test.tsx │ ├── usePrimaryProfile.ts │ ├── useProfile.test.ts │ ├── useProfile.ts │ ├── useProfileEditorForm.test.ts │ ├── useProfileEditorForm.tsx │ ├── useProtectedRoute.ts │ ├── useQueryOptions.ts │ ├── useQueryParameterState.ts │ ├── useReferrer.ts │ ├── useRegistrationData.ts │ ├── useRegistrationParams.test.ts │ ├── useRegistrationParams.ts │ ├── useRegistrationReducer.test.ts │ ├── useRegistrationReducer.ts │ ├── useResolverEditor.ts │ ├── useResolverExists.ts │ ├── useResolverHasInterfaces.test.ts │ ├── useResolverHasInterfaces.ts │ ├── useRouterWithHistory.test.ts │ ├── useRouterWithHistory.ts │ ├── useSetupIntercom.ts │ ├── useSupportsTLD.ts │ ├── useThrottledCallback.ts │ ├── useTooltipSeenManager.ts │ ├── useUnmanagedTLD.ts │ ├── useValidate.test.ts │ ├── useValidate.ts │ ├── useValidateSubnameLabel.test.ts │ ├── useValidateSubnameLabel.ts │ ├── useWindowSize.ts │ ├── useWrapperApprovedForAll.ts │ ├── useZorb.ts │ └── verification │ │ ├── useDentityProfile │ │ └── useDentityProfile.ts │ │ ├── useDentityToken │ │ └── useDentityToken.ts │ │ ├── useVerificationOAuthHandler │ │ ├── useVerificationOAuthHandler.ts │ │ └── utils │ │ │ ├── createVerificationTransactionFlow.test.ts │ │ │ ├── createVerificationTransactionFlow.ts │ │ │ └── dentityHandler.ts │ │ └── useVerifiedRecords │ │ ├── useVerifiedRecords.test.ts │ │ ├── useVerifiedRecords.ts │ │ └── utils │ │ ├── makeAppendVerificationProps.test.ts │ │ ├── makeAppendVerificationProps.ts │ │ ├── parseVerificationData │ │ ├── parseVerificationData.ts │ │ └── utils │ │ │ ├── parseDentityVerifiablePresentation.ts │ │ │ ├── parseOpenIdVerifiablePresentation.test.ts │ │ │ ├── parseOpenIdVerifiablePresentation.ts │ │ │ └── tryVerifyVerifiableCredentials.ts │ │ ├── parseVerifiedCredential.test.ts │ │ └── parseVerifiedCredential.ts ├── i18n.ts ├── layouts │ ├── Basic.tsx │ ├── Content.tsx │ ├── ContentGrid.tsx │ └── Navigation.tsx ├── overrides │ ├── addEnsContractsWithSubgraphAndOverrides.ts │ ├── ensjs │ │ ├── README.md │ │ └── renewNames.ts │ └── makeLocalhostChainWithEnsAndOverrides.ts ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── address.tsx │ ├── dotbox.tsx │ ├── ens-v2.tsx │ ├── import.tsx │ ├── index.tsx │ ├── legacyfavourites.tsx │ ├── legal │ │ └── [slug].tsx │ ├── my │ │ ├── names.tsx │ │ └── settings.tsx │ ├── profile.tsx │ └── register.tsx ├── routes.test.ts ├── routes.ts ├── stub.css ├── styles.css ├── test-utils.tsx ├── transaction-flow │ ├── TransactionFlowProvider.tsx │ ├── TransactionLoader.tsx │ ├── input │ │ ├── AdvancedEditor │ │ │ ├── AdvancedEditor-flow.tsx │ │ │ └── AdvancedEditor.test.tsx │ │ ├── CreateSubname-flow.tsx │ │ ├── DeleteEmancipatedSubnameWarning │ │ │ └── DeleteEmancipatedSubnameWarning-flow.tsx │ │ ├── DeleteSubnameNotParentWarning │ │ │ └── DeleteSubnameNotParentWarning-flow.tsx │ │ ├── EditResolver │ │ │ └── EditResolver-flow.tsx │ │ ├── EditRoles │ │ │ ├── EditRoles-flow.tsx │ │ │ ├── EditRoles.test.tsx │ │ │ ├── hooks │ │ │ │ └── useSimpleSearch.ts │ │ │ └── views │ │ │ │ ├── EditRoleView │ │ │ │ ├── EditRoleView.tsx │ │ │ │ └── views │ │ │ │ │ ├── EditRoleIntroView.tsx │ │ │ │ │ └── EditRoleResultsView.tsx │ │ │ │ └── MainView │ │ │ │ ├── MainView.tsx │ │ │ │ └── components │ │ │ │ ├── NoneSetAvatarWithIdentifier.tsx │ │ │ │ └── RoleCard.tsx │ │ ├── ExtendNames │ │ │ ├── ExtendNames-flow.test.tsx │ │ │ ├── ExtendNames-flow.tsx │ │ │ └── utils │ │ │ │ ├── validateExtendNamesDuration.test.ts │ │ │ │ └── validateExtendNamesDuration.ts │ │ ├── ProfileEditor │ │ │ ├── ProfileEditor-flow.tsx │ │ │ ├── ProfileEditor.test.tsx │ │ │ ├── WrappedAvatarButton.tsx │ │ │ ├── WrappedHeaderButton.tsx │ │ │ ├── components │ │ │ │ ├── CenteredTypography.tsx │ │ │ │ ├── ContentContainer.tsx │ │ │ │ ├── DetailedSwitch.tsx │ │ │ │ └── ProfileBlurb.tsx │ │ │ ├── hooks │ │ │ │ └── useProfileEditorReducer.ts │ │ │ └── views │ │ │ │ ├── InvalidResolverView.tsx │ │ │ │ ├── MigrateProfileSelectorView.tsx.tsx │ │ │ │ ├── MigrateProfileWarningView.tsx │ │ │ │ ├── MigrateRegistryView.tsx │ │ │ │ ├── NoResolverView.tsx │ │ │ │ ├── ResetProfileView.tsx │ │ │ │ ├── ResolverNotNameWrapperAwareView.tsx │ │ │ │ ├── ResolverOutOfDateView.tsx │ │ │ │ ├── TransferOrResetProfileView.tsx │ │ │ │ └── UpdateResolverOrResetProfileView.tsx │ │ ├── ProfileReclaim-flow.tsx │ │ ├── ResetPrimaryName │ │ │ └── ResetPrimaryName-flow.tsx │ │ ├── RevokePermissions │ │ │ ├── RevokePermissions-flow.tsx │ │ │ ├── RevokePermissions.test.tsx │ │ │ ├── components │ │ │ │ ├── CenterAlignedTypography.tsx │ │ │ │ └── ControlledNextButton.tsx │ │ │ └── views │ │ │ │ ├── GrantExtendExpiryView.tsx │ │ │ │ ├── NameConfirmationWarningView.test.tsx │ │ │ │ ├── NameConfirmationWarningView.tsx │ │ │ │ ├── ParentRevokePermissionsView.tsx │ │ │ │ ├── RevokeChangeFusesView.tsx │ │ │ │ ├── RevokeChangeFusesWarningView.tsx │ │ │ │ ├── RevokePCCView.tsx │ │ │ │ ├── RevokePermissionsView.tsx │ │ │ │ ├── RevokeUnwrapView.tsx │ │ │ │ ├── RevokeWarningView.tsx │ │ │ │ └── SetExpiryView.tsx │ │ ├── SelectPrimaryName │ │ │ ├── SelectPrimaryName-flow.tsx │ │ │ ├── SelectPrimaryName.test.tsx │ │ │ └── components │ │ │ │ ├── TaggedNameItemWithFuseCheck.test.tsx │ │ │ │ └── TaggedNameItemWithFuseCheck.tsx │ │ ├── SendName │ │ │ ├── SendName-flow.tsx │ │ │ ├── SendName.test.tsx │ │ │ ├── utils │ │ │ │ ├── checkCanSend.ts │ │ │ │ ├── getSendNameTransactions.test.ts │ │ │ │ └── getSendNameTransactions.ts │ │ │ └── views │ │ │ │ ├── CannotSendView.tsx │ │ │ │ ├── ConfirmationView.tsx │ │ │ │ ├── SearchView │ │ │ │ ├── SearchView.tsx │ │ │ │ ├── components │ │ │ │ │ └── SearchViewResult.tsx │ │ │ │ └── views │ │ │ │ │ ├── SearchViewErrorView.tsx │ │ │ │ │ ├── SearchViewIntroView.tsx │ │ │ │ │ ├── SearchViewLoadingView.tsx │ │ │ │ │ ├── SearchViewNoResultsView.tsx │ │ │ │ │ └── SearchViewResultsView.tsx │ │ │ │ └── SummaryView │ │ │ │ ├── SummaryView.tsx │ │ │ │ └── components │ │ │ │ └── SummarySection.tsx │ │ ├── SyncManager │ │ │ ├── SyncManager-flow.tsx │ │ │ ├── utils │ │ │ │ └── checkCanSyncManager.ts │ │ │ └── views │ │ │ │ ├── ErrorView.tsx │ │ │ │ └── MainView.tsx │ │ ├── UnknownLabels │ │ │ ├── UnknownLabels-flow.tsx │ │ │ ├── UnknownLabels.test.tsx │ │ │ └── views │ │ │ │ └── UnknownLabelsForm.tsx │ │ ├── VerifyProfile │ │ │ ├── VerifyProfile-flow.tsx │ │ │ ├── components │ │ │ │ └── VerificationOptionButton.tsx │ │ │ ├── utils │ │ │ │ └── createDentityUrl.ts │ │ │ └── views │ │ │ │ ├── DentityView.tsx │ │ │ │ └── VerificationOptionsList.tsx │ │ └── index.tsx │ ├── intro │ │ ├── ChangePrimaryName.tsx │ │ ├── GenericWithDescription.tsx │ │ ├── MigrateAndUpdateResolver.tsx │ │ ├── SyncManager.tsx │ │ ├── WrapName.tsx │ │ └── index.ts │ ├── reducer.test.ts │ ├── reducer.ts │ ├── transaction │ │ ├── approveDnsRegistrar.ts │ │ ├── approveNameWrapper.ts │ │ ├── burnFuses.ts │ │ ├── changePermissions.ts │ │ ├── claimDnsName.ts │ │ ├── commitName.ts │ │ ├── createSubname.ts │ │ ├── deleteSubname.ts │ │ ├── extendNames.test.ts │ │ ├── extendNames.ts │ │ ├── importDnsName.ts │ │ ├── index.ts │ │ ├── migrateProfile.ts │ │ ├── migrateProfileWithReset.ts │ │ ├── registerName.test.ts │ │ ├── registerName.ts │ │ ├── removeVerificationRecord.ts │ │ ├── repairDesyncedName.ts │ │ ├── resetPrimaryName.ts │ │ ├── resetProfile.ts │ │ ├── resetProfileWithRecords.ts │ │ ├── setPrimaryName.ts │ │ ├── syncManager.ts │ │ ├── testSendName.ts │ │ ├── transferController.ts │ │ ├── transferName.ts │ │ ├── transferSubname.ts │ │ ├── unwrapName.test.ts │ │ ├── unwrapName.ts │ │ ├── updateEthAddress.ts │ │ ├── updateProfile.ts │ │ ├── updateProfileRecords.ts │ │ ├── updateResolver.ts │ │ ├── updateVerificationRecord.ts │ │ ├── utils │ │ │ └── makeTransferNameOrSubnameTransactionItem.ts │ │ └── wrapName.ts │ ├── types.ts │ └── utils │ │ ├── isTransaction.ts │ │ └── shouldSkipTransactionUpdateDuringTest.ts ├── types │ ├── index.ts │ └── verification.ts ├── utils │ ├── BreakpointProvider.test.tsx │ ├── BreakpointProvider.tsx │ ├── SyncProvider │ │ ├── SyncDroppedTransaction.test.tsx │ │ ├── SyncDroppedTransaction.tsx │ │ └── SyncProvider.tsx │ ├── abi.test.ts │ ├── abi.ts │ ├── abilities │ │ ├── shouldShowExtendWarning.test.ts │ │ └── shouldShowExtendWarning.ts │ ├── analytics.test.ts │ ├── analytics.ts │ ├── analytics │ │ ├── cookies.ts │ │ ├── events.ts │ │ └── posthog.tsx │ ├── array.test.ts │ ├── array.ts │ ├── avatarUpload.test.ts │ ├── avatarUpload.ts │ ├── beautify.ts │ ├── chains │ │ ├── addEnsContractsWithSubgraph.ts │ │ └── makeLocalhostChainWithEns.ts │ ├── checkAvailablePrimaryName.test.ts │ ├── checkAvailablePrimaryName.ts │ ├── coin.ts │ ├── constants.ts │ ├── contenthash.ts │ ├── createCsp.ts │ ├── currency.ts │ ├── date.test.ts │ ├── date.ts │ ├── datetime-local.ts │ ├── device.ts │ ├── editor.ts │ ├── errors.ts │ ├── getChainName.ts │ ├── getIsCachedData.ts │ ├── getSocialData.ts │ ├── getSupportedChainContractAddress.ts │ ├── gradient.ts │ ├── headerUpload.test.ts │ ├── headerUpload.ts │ ├── metamask │ │ └── firefox.ts │ ├── name.test.ts │ ├── name.ts │ ├── prepareQueryOptions.ts │ ├── profile.test.ts │ ├── profile.ts │ ├── query │ │ ├── RainbowKitWithParaProvider.tsx │ │ ├── createAccessList.ts │ │ ├── loadPara.test.ts │ │ ├── loadPara.ts │ │ ├── match │ │ │ ├── matchExactOrNullParamItem.test-d.ts │ │ │ ├── matchExactOrNullParamItem.test.ts │ │ │ ├── matchExactOrNullParamItem.ts │ │ │ ├── matchQueryKeyMeta.test-d.ts │ │ │ ├── matchQueryKeyMeta.test.ts │ │ │ ├── matchQueryKeyMeta.ts │ │ │ ├── queryKeyToInternalParams.test-d.ts │ │ │ ├── queryKeyToInternalParams.test.ts │ │ │ └── queryKeyToInternalParams.ts │ │ ├── paraWallet.ts │ │ ├── persist.ts │ │ ├── providers.tsx │ │ ├── reactQuery.test.tsx │ │ ├── reactQuery.ts │ │ ├── serialize.ts │ │ ├── useInfiniteQuery.ts │ │ ├── useQuery.ts │ │ ├── wagmi.ts │ │ └── wallets.ts │ ├── records.test.ts │ ├── records.ts │ ├── records │ │ ├── categoriseProfileTextRecords.test.ts │ │ ├── categoriseProfileTextRecords.ts │ │ ├── normaliseProfileAccountsRecord.ts │ │ └── normaliseTwitterRecordValue.ts │ ├── referrer.test.ts │ ├── referrer.ts │ ├── registrationStatus.test.ts │ ├── registrationStatus.ts │ ├── reverse.ts │ ├── safe.test.ts │ ├── safe.ts │ ├── shouldRedirect.test.ts │ ├── shouldRedirect.ts │ ├── supportLinks.ts │ ├── syntheticEvent.ts │ ├── time.ts │ ├── urlObject.test.ts │ ├── urlObject.ts │ ├── urls.test.ts │ ├── urls.ts │ ├── useHasSubgraphSyncErrors.test.ts │ ├── useHasSubgraphSyncErrors.ts │ ├── useUserConfig.ts │ ├── utils.test.ts │ ├── utils.ts │ └── verification │ │ ├── getVerificationRecordItems.ts │ │ ├── getVerifierData.ts │ │ ├── isVerificationProtocol.test.ts │ │ ├── isVerificationProtocol.ts │ │ └── labelForVerificationProtocol.ts └── validators │ ├── validateAbi.ts │ ├── validateAccount.test.ts │ ├── validateAccount.ts │ ├── validateAddress.ts │ ├── validateContentHash.test.ts │ ├── validateContentHash.ts │ ├── validateImageUri.test.ts │ ├── validateImageUri.ts │ ├── validateUrl.test.ts │ └── validateUrl.ts ├── test ├── dom-setup.mts ├── global-setup.mts ├── mock │ ├── makeMockIntersectionObserver.ts │ ├── makeMockUseAbilitiesData.ts │ ├── makeMockUseAddrRecordData.ts │ ├── makeMockUseBasicName.ts │ ├── makeMockUseContractAddress.ts │ ├── makeMockUseDnsOwnerData.ts │ ├── makeMockUseExpiryData.ts │ ├── makeMockUseOwnerData.ts │ ├── makeMockUseOwners.ts │ ├── makeMockUsePriceData.ts │ ├── makeMockUseSubgraphRegistrantData.ts │ ├── makeMockUseValidate.ts │ ├── makeMockUseVerifiedRecords.ts │ ├── makeMockUseWrapperDataData.ts.ts │ ├── makeMockVerifiablePresentationData.ts │ └── useMockedUseQueryOptions.ts ├── textencoder-setup.mts └── websocket-setup.mts ├── tsconfig.json ├── tsconfig.typecheck.json ├── tsconfig.typecheck.tsbuildinfo ├── typings-custom ├── @ensdomains │ ├── content-hash.d.ts │ ├── ens-validation.d.ts │ └── eth-ens-namehash.d.ts ├── @myetherwallet │ └── mewconnect-web-client.d.ts ├── dns-packet.d.ts ├── local-contracts.d.ts └── styled-components.d.ts ├── vitest.config.mts └── wrangler.toml /.claude/commands/dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.claude/commands/dev.md -------------------------------------------------------------------------------- /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/knip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.github/workflows/knip.yaml -------------------------------------------------------------------------------- /.github/workflows/pages-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.github/workflows/pages-deployment.yaml -------------------------------------------------------------------------------- /.github/workflows/test-wallet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.github/workflows/test-wallet.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.13.1 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @sugh01 @laurgk @storywithoutend 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/LICENSE -------------------------------------------------------------------------------- /Manager App Architecture sans links.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/Manager App Architecture sans links.drawio.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/README.md -------------------------------------------------------------------------------- /deploy/.contracts/CustomLegacyResolver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.contracts/CustomLegacyResolver.json -------------------------------------------------------------------------------- /deploy/.contracts/CustomResolver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.contracts/CustomResolver.json -------------------------------------------------------------------------------- /deploy/.contracts/CustomResolver1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.contracts/CustomResolver1.json -------------------------------------------------------------------------------- /deploy/.contracts/LegacyResolverV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.contracts/LegacyResolverV1.json -------------------------------------------------------------------------------- /deploy/.contracts/LegacyResolverV5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.contracts/LegacyResolverV5.json -------------------------------------------------------------------------------- /deploy/.contracts/NameWrapperPublicResolver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.contracts/NameWrapperPublicResolver.json -------------------------------------------------------------------------------- /deploy/.contracts/NoMulticallResolver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.contracts/NoMulticallResolver.json -------------------------------------------------------------------------------- /deploy/.contracts/OldResolver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.contracts/OldResolver.json -------------------------------------------------------------------------------- /deploy/.contracts/OutdatedResolverV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.contracts/OutdatedResolverV1.json -------------------------------------------------------------------------------- /deploy/.contracts/OutdatedResolverV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.contracts/OutdatedResolverV2.json -------------------------------------------------------------------------------- /deploy/.contracts/OutdatedResolverV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.contracts/OutdatedResolverV3.json -------------------------------------------------------------------------------- /deploy/.contracts/StaticBulkRenewal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.contracts/StaticBulkRenewal.json -------------------------------------------------------------------------------- /deploy/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.eslintrc.json -------------------------------------------------------------------------------- /deploy/.utils/LegacyETHRegistrarController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.utils/LegacyETHRegistrarController.d.ts -------------------------------------------------------------------------------- /deploy/.utils/LegacyPublicResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.utils/LegacyPublicResolver.d.ts -------------------------------------------------------------------------------- /deploy/.utils/artifacts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.utils/artifacts.d.ts -------------------------------------------------------------------------------- /deploy/.utils/nameWrapperRegisterHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.utils/nameWrapperRegisterHelpers.ts -------------------------------------------------------------------------------- /deploy/.utils/nonceManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/.utils/nonceManager.ts -------------------------------------------------------------------------------- /deploy/00_deploy_legacy_resolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/00_deploy_legacy_resolvers.ts -------------------------------------------------------------------------------- /deploy/00_deploy_static_bulk_renewal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/00_deploy_static_bulk_renewal.ts -------------------------------------------------------------------------------- /deploy/00_legacy_registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/00_legacy_registry.ts -------------------------------------------------------------------------------- /deploy/00_migrate_legacy_records.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/00_migrate_legacy_records.ts -------------------------------------------------------------------------------- /deploy/00_register_contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/00_register_contracts.ts -------------------------------------------------------------------------------- /deploy/00_register_desynced.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/00_register_desynced.ts -------------------------------------------------------------------------------- /deploy/00_register_legacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/00_register_legacy.ts -------------------------------------------------------------------------------- /deploy/00_register_wrapped.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/00_register_wrapped.ts -------------------------------------------------------------------------------- /deploy/00_update_contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/00_update_contracts.ts -------------------------------------------------------------------------------- /deploy/01_get_contract_addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/01_get_contract_addresses.ts -------------------------------------------------------------------------------- /deploy/01_sync_time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/deploy/01_sync_time.ts -------------------------------------------------------------------------------- /docs/safe-ens-metamask-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/docs/safe-ens-metamask-testing.md -------------------------------------------------------------------------------- /e2e/specs/stateful/address.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateful/address.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateful/dnsclaim.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateful/dnsclaim.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateful/moonpay.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateful/moonpay.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateful/more-tab-primary-name.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateful/more-tab-primary-name.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateful/profile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateful/profile.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateful/settings-primary-name.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateful/settings-primary-name.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateful/un-normalised-name.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateful/un-normalised-name.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/_importName.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/_importName.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/advancedEditor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/advancedEditor.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/box.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/box.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/createSubname.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/createSubname.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/deleteSubname.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/deleteSubname.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/desyncedName.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/desyncedName.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/extendNames.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/extendNames.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/myNames.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/myNames.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/ownership.2LD.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/ownership.2LD.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/ownership.3LD.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/ownership.3LD.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/ownership.4LD.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/ownership.4LD.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/ownership.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/ownership.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/permissions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/permissions.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/profileEditor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/profileEditor.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/registerName.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/registerName.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/setPrimary.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/setPrimary.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/settings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/settings.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/updateResolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/updateResolver.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/verifications.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/verifications.spec.ts -------------------------------------------------------------------------------- /e2e/specs/stateless/wrapName.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/stateless/wrapName.spec.ts -------------------------------------------------------------------------------- /e2e/specs/wallets/REFACTORING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/wallets/REFACTORING_GUIDE.md -------------------------------------------------------------------------------- /e2e/specs/wallets/config/safe-ens-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/wallets/config/safe-ens-config.ts -------------------------------------------------------------------------------- /e2e/specs/wallets/config/test-utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/wallets/config/test-utilities.ts -------------------------------------------------------------------------------- /e2e/specs/wallets/config/wallet-ens-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/wallets/config/wallet-ens-config.ts -------------------------------------------------------------------------------- /e2e/specs/wallets/extendName-metamask.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/wallets/extendName-metamask.spec.ts -------------------------------------------------------------------------------- /e2e/specs/wallets/registerName-metamask.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/wallets/registerName-metamask.spec.ts -------------------------------------------------------------------------------- /e2e/specs/wallets/safe-ens-with-metamask.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/wallets/safe-ens-with-metamask.spec.ts -------------------------------------------------------------------------------- /e2e/specs/wallets/subName-metamask.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/e2e/specs/wallets/subName-metamask.spec.ts -------------------------------------------------------------------------------- /ens-test-env.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/ens-test-env.config.js -------------------------------------------------------------------------------- /functions/_middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/functions/_middleware.ts -------------------------------------------------------------------------------- /functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/functions/tsconfig.json -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /knip.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/knip.config.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next-i18next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/next-i18next.config.js -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/package.json -------------------------------------------------------------------------------- /patches/@ensdomains__dnsprovejs@0.5.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/patches/@ensdomains__dnsprovejs@0.5.1.patch -------------------------------------------------------------------------------- /patches/@ensdomains__ens-contracts@1.6.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/patches/@ensdomains__ens-contracts@1.6.0.patch -------------------------------------------------------------------------------- /patches/@ensdomains__ens-test-env@1.0.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/patches/@ensdomains__ens-test-env@1.0.1.patch -------------------------------------------------------------------------------- /patches/hardhat-deploy@0.12.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/patches/hardhat-deploy@0.12.4.patch -------------------------------------------------------------------------------- /patches/next-dev-https@0.1.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/patches/next-dev-https@0.1.2.patch -------------------------------------------------------------------------------- /patches/node-forge@1.3.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/patches/node-forge@1.3.1.patch -------------------------------------------------------------------------------- /patches/react-confetti@6.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/patches/react-confetti@6.1.0.patch -------------------------------------------------------------------------------- /patches/viem@2.19.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/patches/viem@2.19.4.patch -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /playwright/fixtures/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/fixtures/accounts.ts -------------------------------------------------------------------------------- /playwright/fixtures/consoleListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/fixtures/consoleListener.ts -------------------------------------------------------------------------------- /playwright/fixtures/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/fixtures/login.ts -------------------------------------------------------------------------------- /playwright/fixtures/makeName/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/fixtures/makeName/README.md -------------------------------------------------------------------------------- /playwright/fixtures/makeName/constants/abis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/fixtures/makeName/constants/abis.ts -------------------------------------------------------------------------------- /playwright/fixtures/makeName/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/fixtures/makeName/index.ts -------------------------------------------------------------------------------- /playwright/fixtures/makeName/utils/adjustName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/fixtures/makeName/utils/adjustName.ts -------------------------------------------------------------------------------- /playwright/fixtures/subgraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/fixtures/subgraph.ts -------------------------------------------------------------------------------- /playwright/fixtures/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/fixtures/time.ts -------------------------------------------------------------------------------- /playwright/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/index.ts -------------------------------------------------------------------------------- /playwright/pageObjects/addressPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/addressPage.ts -------------------------------------------------------------------------------- /playwright/pageObjects/advancedEditorModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/advancedEditorModal.ts -------------------------------------------------------------------------------- /playwright/pageObjects/editRolesModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/editRolesModal.ts -------------------------------------------------------------------------------- /playwright/pageObjects/extendNamesModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/extendNamesModal.ts -------------------------------------------------------------------------------- /playwright/pageObjects/homePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/homePage.ts -------------------------------------------------------------------------------- /playwright/pageObjects/importPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/importPage.ts -------------------------------------------------------------------------------- /playwright/pageObjects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/index.ts -------------------------------------------------------------------------------- /playwright/pageObjects/morePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/morePage.ts -------------------------------------------------------------------------------- /playwright/pageObjects/ownershipPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/ownershipPage.ts -------------------------------------------------------------------------------- /playwright/pageObjects/permissionsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/permissionsPage.ts -------------------------------------------------------------------------------- /playwright/pageObjects/profilePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/profilePage.ts -------------------------------------------------------------------------------- /playwright/pageObjects/recordsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/recordsPage.ts -------------------------------------------------------------------------------- /playwright/pageObjects/registrationPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/registrationPage.ts -------------------------------------------------------------------------------- /playwright/pageObjects/selectPrimaryNameModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/selectPrimaryNameModal.ts -------------------------------------------------------------------------------- /playwright/pageObjects/sendNameModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/sendNameModal.ts -------------------------------------------------------------------------------- /playwright/pageObjects/settingsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/settingsPage.ts -------------------------------------------------------------------------------- /playwright/pageObjects/subnamePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/subnamePage.ts -------------------------------------------------------------------------------- /playwright/pageObjects/transactionModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/transactionModal.ts -------------------------------------------------------------------------------- /playwright/pageObjects/verificationsModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/playwright/pageObjects/verificationsModal.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/_headers -------------------------------------------------------------------------------- /public/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/android-chrome-144x144.png -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/fonts/fonts.css -------------------------------------------------------------------------------- /public/fonts/sans-serif/Satoshi-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/fonts/sans-serif/Satoshi-Black.otf -------------------------------------------------------------------------------- /public/fonts/sans-serif/Satoshi-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/fonts/sans-serif/Satoshi-Black.woff -------------------------------------------------------------------------------- /public/fonts/sans-serif/Satoshi-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/fonts/sans-serif/Satoshi-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/sans-serif/Satoshi-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/fonts/sans-serif/Satoshi-Bold.otf -------------------------------------------------------------------------------- /public/fonts/sans-serif/Satoshi-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/fonts/sans-serif/Satoshi-Bold.woff -------------------------------------------------------------------------------- /public/fonts/sans-serif/Satoshi-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/fonts/sans-serif/Satoshi-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/sans-serif/Satoshi-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/fonts/sans-serif/Satoshi-Medium.otf -------------------------------------------------------------------------------- /public/fonts/sans-serif/Satoshi-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/fonts/sans-serif/Satoshi-Medium.woff -------------------------------------------------------------------------------- /public/fonts/sans-serif/Satoshi-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/fonts/sans-serif/Satoshi-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/sans-serif/Satoshi-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/fonts/sans-serif/Satoshi-Regular.otf -------------------------------------------------------------------------------- /public/fonts/sans-serif/Satoshi-Variable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/fonts/sans-serif/Satoshi-Variable.ttf -------------------------------------------------------------------------------- /public/fonts/sans-serif/Satoshi-Variable.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/fonts/sans-serif/Satoshi-Variable.woff -------------------------------------------------------------------------------- /public/fonts/sans-serif/Satoshi-Variable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/fonts/sans-serif/Satoshi-Variable.woff2 -------------------------------------------------------------------------------- /public/fonts/sans-serif/special/Satoshi-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/fonts/sans-serif/special/Satoshi-Bold.otf -------------------------------------------------------------------------------- /public/locales/de/common.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Ihr web3-Benutzername" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/en/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/en/address.json -------------------------------------------------------------------------------- /public/locales/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/en/common.json -------------------------------------------------------------------------------- /public/locales/en/dnssec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/en/dnssec.json -------------------------------------------------------------------------------- /public/locales/en/ensv2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/en/ensv2.json -------------------------------------------------------------------------------- /public/locales/en/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/en/error.json -------------------------------------------------------------------------------- /public/locales/en/names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/en/names.json -------------------------------------------------------------------------------- /public/locales/en/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/en/profile.json -------------------------------------------------------------------------------- /public/locales/en/register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/en/register.json -------------------------------------------------------------------------------- /public/locales/en/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/en/settings.json -------------------------------------------------------------------------------- /public/locales/en/transactionFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/en/transactionFlow.json -------------------------------------------------------------------------------- /public/locales/es/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/es/address.json -------------------------------------------------------------------------------- /public/locales/es/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/es/common.json -------------------------------------------------------------------------------- /public/locales/es/dnssec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/es/dnssec.json -------------------------------------------------------------------------------- /public/locales/es/ensv2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/es/ensv2.json -------------------------------------------------------------------------------- /public/locales/es/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/es/error.json -------------------------------------------------------------------------------- /public/locales/es/names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/es/names.json -------------------------------------------------------------------------------- /public/locales/es/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/es/profile.json -------------------------------------------------------------------------------- /public/locales/es/register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/es/register.json -------------------------------------------------------------------------------- /public/locales/es/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/es/settings.json -------------------------------------------------------------------------------- /public/locales/es/transactionFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/es/transactionFlow.json -------------------------------------------------------------------------------- /public/locales/nl/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/nl/address.json -------------------------------------------------------------------------------- /public/locales/nl/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/nl/common.json -------------------------------------------------------------------------------- /public/locales/nl/dnssec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/nl/dnssec.json -------------------------------------------------------------------------------- /public/locales/nl/names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/nl/names.json -------------------------------------------------------------------------------- /public/locales/nl/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/nl/profile.json -------------------------------------------------------------------------------- /public/locales/nl/register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/nl/register.json -------------------------------------------------------------------------------- /public/locales/nl/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/nl/settings.json -------------------------------------------------------------------------------- /public/locales/nl/transactionFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/nl/transactionFlow.json -------------------------------------------------------------------------------- /public/locales/pt/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/pt/address.json -------------------------------------------------------------------------------- /public/locales/pt/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/pt/common.json -------------------------------------------------------------------------------- /public/locales/pt/dnssec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/pt/dnssec.json -------------------------------------------------------------------------------- /public/locales/pt/ensv2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/pt/ensv2.json -------------------------------------------------------------------------------- /public/locales/pt/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/pt/error.json -------------------------------------------------------------------------------- /public/locales/pt/names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/pt/names.json -------------------------------------------------------------------------------- /public/locales/pt/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/pt/profile.json -------------------------------------------------------------------------------- /public/locales/pt/register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/pt/register.json -------------------------------------------------------------------------------- /public/locales/pt/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/pt/settings.json -------------------------------------------------------------------------------- /public/locales/pt/transactionFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/pt/transactionFlow.json -------------------------------------------------------------------------------- /public/locales/ru/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/ru/address.json -------------------------------------------------------------------------------- /public/locales/ru/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/ru/common.json -------------------------------------------------------------------------------- /public/locales/ru/dnssec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/ru/dnssec.json -------------------------------------------------------------------------------- /public/locales/ru/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/ru/error.json -------------------------------------------------------------------------------- /public/locales/ru/names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/ru/names.json -------------------------------------------------------------------------------- /public/locales/ru/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/ru/profile.json -------------------------------------------------------------------------------- /public/locales/ru/register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/ru/register.json -------------------------------------------------------------------------------- /public/locales/ru/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/ru/settings.json -------------------------------------------------------------------------------- /public/locales/ru/transactionFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/ru/transactionFlow.json -------------------------------------------------------------------------------- /public/locales/uk/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/uk/address.json -------------------------------------------------------------------------------- /public/locales/uk/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/uk/common.json -------------------------------------------------------------------------------- /public/locales/uk/dnssec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/uk/dnssec.json -------------------------------------------------------------------------------- /public/locales/uk/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/uk/error.json -------------------------------------------------------------------------------- /public/locales/uk/names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/uk/names.json -------------------------------------------------------------------------------- /public/locales/uk/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/uk/profile.json -------------------------------------------------------------------------------- /public/locales/uk/register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/uk/register.json -------------------------------------------------------------------------------- /public/locales/uk/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/uk/settings.json -------------------------------------------------------------------------------- /public/locales/uk/transactionFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/uk/transactionFlow.json -------------------------------------------------------------------------------- /public/locales/zh/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/zh/address.json -------------------------------------------------------------------------------- /public/locales/zh/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/zh/common.json -------------------------------------------------------------------------------- /public/locales/zh/dnssec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/zh/dnssec.json -------------------------------------------------------------------------------- /public/locales/zh/ensv2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/zh/ensv2.json -------------------------------------------------------------------------------- /public/locales/zh/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/zh/error.json -------------------------------------------------------------------------------- /public/locales/zh/names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/zh/names.json -------------------------------------------------------------------------------- /public/locales/zh/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/zh/profile.json -------------------------------------------------------------------------------- /public/locales/zh/register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/zh/register.json -------------------------------------------------------------------------------- /public/locales/zh/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/zh/settings.json -------------------------------------------------------------------------------- /public/locales/zh/transactionFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/zh/transactionFlow.json -------------------------------------------------------------------------------- /public/locales/zh/translationNorms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/locales/zh/translationNorms.md -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/manifest.webmanifest -------------------------------------------------------------------------------- /public/mask-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/mask-icon.svg -------------------------------------------------------------------------------- /public/migrate/confetti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/migrate/confetti.png -------------------------------------------------------------------------------- /public/migrate/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/migrate/preview.svg -------------------------------------------------------------------------------- /public/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/mstile-144x144.png -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/mstile-310x150.png -------------------------------------------------------------------------------- /public/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/mstile-310x310.png -------------------------------------------------------------------------------- /public/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/mstile-70x70.png -------------------------------------------------------------------------------- /public/other/TemplateNFTImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/other/TemplateNFTImage.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/wasm/break_iterator.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/public/wasm/break_iterator.wasm -------------------------------------------------------------------------------- /scripts/check-chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/scripts/check-chrome.sh -------------------------------------------------------------------------------- /scripts/coin-mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/scripts/coin-mapper.ts -------------------------------------------------------------------------------- /scripts/compare-locales.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/scripts/compare-locales.mjs -------------------------------------------------------------------------------- /scripts/generate-site-map.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/scripts/generate-site-map.mjs -------------------------------------------------------------------------------- /scripts/importCoinIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/scripts/importCoinIcons.ts -------------------------------------------------------------------------------- /src/__tests__/pages/address.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/__tests__/pages/address.test.tsx -------------------------------------------------------------------------------- /src/assets/Aeroplane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Aeroplane.svg -------------------------------------------------------------------------------- /src/assets/ArrowLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/ArrowLeft.svg -------------------------------------------------------------------------------- /src/assets/Calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Calendar.svg -------------------------------------------------------------------------------- /src/assets/Camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Camera.svg -------------------------------------------------------------------------------- /src/assets/CircleTick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/CircleTick.svg -------------------------------------------------------------------------------- /src/assets/Clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Clock.svg -------------------------------------------------------------------------------- /src/assets/Cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Cog.svg -------------------------------------------------------------------------------- /src/assets/Coin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Coin.svg -------------------------------------------------------------------------------- /src/assets/CropBorder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/CropBorder.svg -------------------------------------------------------------------------------- /src/assets/CropFrame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/CropFrame.svg -------------------------------------------------------------------------------- /src/assets/CrossCircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/CrossCircle.svg -------------------------------------------------------------------------------- /src/assets/DAO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/DAO.svg -------------------------------------------------------------------------------- /src/assets/Dentity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Dentity.svg -------------------------------------------------------------------------------- /src/assets/DownDirection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/DownDirection.svg -------------------------------------------------------------------------------- /src/assets/ENSFull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/ENSFull.svg -------------------------------------------------------------------------------- /src/assets/ENSWithGradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/ENSWithGradient.svg -------------------------------------------------------------------------------- /src/assets/FAQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/FAQ.svg -------------------------------------------------------------------------------- /src/assets/FastForward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/FastForward.svg -------------------------------------------------------------------------------- /src/assets/Feedback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Feedback.svg -------------------------------------------------------------------------------- /src/assets/Filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Filter.svg -------------------------------------------------------------------------------- /src/assets/Gas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Gas.svg -------------------------------------------------------------------------------- /src/assets/GoDaddy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/GoDaddy.svg -------------------------------------------------------------------------------- /src/assets/Grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Grid.svg -------------------------------------------------------------------------------- /src/assets/HeaderCropBorder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/HeaderCropBorder.svg -------------------------------------------------------------------------------- /src/assets/HeaderCropFrame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/HeaderCropFrame.svg -------------------------------------------------------------------------------- /src/assets/Heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Heart.svg -------------------------------------------------------------------------------- /src/assets/Info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Info.svg -------------------------------------------------------------------------------- /src/assets/List.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/List.svg -------------------------------------------------------------------------------- /src/assets/MagnifyingGlass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/MagnifyingGlass.svg -------------------------------------------------------------------------------- /src/assets/Minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Minus.svg -------------------------------------------------------------------------------- /src/assets/MinusCircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/MinusCircle.svg -------------------------------------------------------------------------------- /src/assets/MoonpayLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/MoonpayLogo.svg -------------------------------------------------------------------------------- /src/assets/Outlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Outlink.svg -------------------------------------------------------------------------------- /src/assets/PaperPlane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/PaperPlane.svg -------------------------------------------------------------------------------- /src/assets/PaperPlaneColour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/PaperPlaneColour.svg -------------------------------------------------------------------------------- /src/assets/Person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Person.svg -------------------------------------------------------------------------------- /src/assets/PersonPlus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/PersonPlus.svg -------------------------------------------------------------------------------- /src/assets/PhantomWallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/PhantomWallet.svg -------------------------------------------------------------------------------- /src/assets/PhantomWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/PhantomWallet.ts -------------------------------------------------------------------------------- /src/assets/Plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Plus.svg -------------------------------------------------------------------------------- /src/assets/PlusCircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/PlusCircle.svg -------------------------------------------------------------------------------- /src/assets/Question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Question.svg -------------------------------------------------------------------------------- /src/assets/SOS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/SOS.svg -------------------------------------------------------------------------------- /src/assets/SortAscending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/SortAscending.svg -------------------------------------------------------------------------------- /src/assets/SortDescending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/SortDescending.svg -------------------------------------------------------------------------------- /src/assets/Spanner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Spanner.svg -------------------------------------------------------------------------------- /src/assets/Sparkles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Sparkles.svg -------------------------------------------------------------------------------- /src/assets/Stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Stars.svg -------------------------------------------------------------------------------- /src/assets/Trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Trash.svg -------------------------------------------------------------------------------- /src/assets/TripleDot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/TripleDot.svg -------------------------------------------------------------------------------- /src/assets/Unsupported.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Unsupported.svg -------------------------------------------------------------------------------- /src/assets/UpDirection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/UpDirection.svg -------------------------------------------------------------------------------- /src/assets/VerifiedPerson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/VerifiedPerson.svg -------------------------------------------------------------------------------- /src/assets/VerifiedRecord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/VerifiedRecord.svg -------------------------------------------------------------------------------- /src/assets/Wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/Wallet.svg -------------------------------------------------------------------------------- /src/assets/WrapNameGift.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/WrapNameGift.tsx -------------------------------------------------------------------------------- /src/assets/address/AbbcIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/AbbcIcon.svg -------------------------------------------------------------------------------- /src/assets/address/AdaIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/AdaIcon.svg -------------------------------------------------------------------------------- /src/assets/address/AeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/AeIcon.svg -------------------------------------------------------------------------------- /src/assets/address/AionIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/AionIcon.svg -------------------------------------------------------------------------------- /src/assets/address/AlgoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/AlgoIcon.svg -------------------------------------------------------------------------------- /src/assets/address/ArIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/ArIcon.svg -------------------------------------------------------------------------------- /src/assets/address/ArbIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/ArbIcon.svg -------------------------------------------------------------------------------- /src/assets/address/ArdrIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/ArdrIcon.svg -------------------------------------------------------------------------------- /src/assets/address/ArkIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/ArkIcon.svg -------------------------------------------------------------------------------- /src/assets/address/AtomIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/AtomIcon.svg -------------------------------------------------------------------------------- /src/assets/address/AvaxIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/AvaxIcon.svg -------------------------------------------------------------------------------- /src/assets/address/BaseIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/BaseIcon.svg -------------------------------------------------------------------------------- /src/assets/address/BcdIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/BcdIcon.svg -------------------------------------------------------------------------------- /src/assets/address/BchIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/BchIcon.svg -------------------------------------------------------------------------------- /src/assets/address/BcnIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/BcnIcon.svg -------------------------------------------------------------------------------- /src/assets/address/BnbIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/BnbIcon.svg -------------------------------------------------------------------------------- /src/assets/address/BtcIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/BtcIcon.svg -------------------------------------------------------------------------------- /src/assets/address/BtgIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/BtgIcon.svg -------------------------------------------------------------------------------- /src/assets/address/BtsIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/BtsIcon.svg -------------------------------------------------------------------------------- /src/assets/address/CeloIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/CeloIcon.svg -------------------------------------------------------------------------------- /src/assets/address/CkbIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/CkbIcon.svg -------------------------------------------------------------------------------- /src/assets/address/CloIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/CloIcon.svg -------------------------------------------------------------------------------- /src/assets/address/CroIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/CroIcon.svg -------------------------------------------------------------------------------- /src/assets/address/DashIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/DashIcon.svg -------------------------------------------------------------------------------- /src/assets/address/DcrIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/DcrIcon.svg -------------------------------------------------------------------------------- /src/assets/address/DefaultIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/DefaultIcon.svg -------------------------------------------------------------------------------- /src/assets/address/DgbIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/DgbIcon.svg -------------------------------------------------------------------------------- /src/assets/address/DiviIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/DiviIcon.svg -------------------------------------------------------------------------------- /src/assets/address/DogeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/DogeIcon.svg -------------------------------------------------------------------------------- /src/assets/address/DotIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/DotIcon.svg -------------------------------------------------------------------------------- /src/assets/address/DynamicAddressIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/DynamicAddressIcon.tsx -------------------------------------------------------------------------------- /src/assets/address/EgldIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/EgldIcon.svg -------------------------------------------------------------------------------- /src/assets/address/ElaIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/ElaIcon.svg -------------------------------------------------------------------------------- /src/assets/address/EosIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/EosIcon.svg -------------------------------------------------------------------------------- /src/assets/address/EtcIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/EtcIcon.svg -------------------------------------------------------------------------------- /src/assets/address/EthIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/EthIcon.svg -------------------------------------------------------------------------------- /src/assets/address/EtnIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/EtnIcon.svg -------------------------------------------------------------------------------- /src/assets/address/EwtIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/EwtIcon.svg -------------------------------------------------------------------------------- /src/assets/address/FilIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/FilIcon.svg -------------------------------------------------------------------------------- /src/assets/address/FlowIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/FlowIcon.svg -------------------------------------------------------------------------------- /src/assets/address/FtmIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/FtmIcon.svg -------------------------------------------------------------------------------- /src/assets/address/GnoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/GnoIcon.svg -------------------------------------------------------------------------------- /src/assets/address/GoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/GoIcon.svg -------------------------------------------------------------------------------- /src/assets/address/GrinIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/GrinIcon.svg -------------------------------------------------------------------------------- /src/assets/address/GrsIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/GrsIcon.svg -------------------------------------------------------------------------------- /src/assets/address/HbarIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/HbarIcon.svg -------------------------------------------------------------------------------- /src/assets/address/HiveIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/HiveIcon.svg -------------------------------------------------------------------------------- /src/assets/address/HntIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/HntIcon.svg -------------------------------------------------------------------------------- /src/assets/address/IcxIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/IcxIcon.svg -------------------------------------------------------------------------------- /src/assets/address/IostIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/IostIcon.svg -------------------------------------------------------------------------------- /src/assets/address/IotaIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/IotaIcon.svg -------------------------------------------------------------------------------- /src/assets/address/IotxIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/IotxIcon.svg -------------------------------------------------------------------------------- /src/assets/address/IrisIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/IrisIcon.svg -------------------------------------------------------------------------------- /src/assets/address/KavaIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/KavaIcon.svg -------------------------------------------------------------------------------- /src/assets/address/KmdIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/KmdIcon.svg -------------------------------------------------------------------------------- /src/assets/address/KsmIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/KsmIcon.svg -------------------------------------------------------------------------------- /src/assets/address/LineaIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/LineaIcon.svg -------------------------------------------------------------------------------- /src/assets/address/LskIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/LskIcon.svg -------------------------------------------------------------------------------- /src/assets/address/LtcIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/LtcIcon.svg -------------------------------------------------------------------------------- /src/assets/address/LunaIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/LunaIcon.svg -------------------------------------------------------------------------------- /src/assets/address/MaticIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/MaticIcon.svg -------------------------------------------------------------------------------- /src/assets/address/MetisIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/MetisIcon.svg -------------------------------------------------------------------------------- /src/assets/address/NanoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/NanoIcon.svg -------------------------------------------------------------------------------- /src/assets/address/NasIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/NasIcon.svg -------------------------------------------------------------------------------- /src/assets/address/NearIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/NearIcon.svg -------------------------------------------------------------------------------- /src/assets/address/NeoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/NeoIcon.svg -------------------------------------------------------------------------------- /src/assets/address/NrgIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/NrgIcon.svg -------------------------------------------------------------------------------- /src/assets/address/NulsIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/NulsIcon.svg -------------------------------------------------------------------------------- /src/assets/address/OneIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/OneIcon.svg -------------------------------------------------------------------------------- /src/assets/address/OntIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/OntIcon.svg -------------------------------------------------------------------------------- /src/assets/address/OpIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/OpIcon.svg -------------------------------------------------------------------------------- /src/assets/address/PoaIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/PoaIcon.svg -------------------------------------------------------------------------------- /src/assets/address/PpcIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/PpcIcon.svg -------------------------------------------------------------------------------- /src/assets/address/QtumIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/QtumIcon.svg -------------------------------------------------------------------------------- /src/assets/address/RddIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/RddIcon.svg -------------------------------------------------------------------------------- /src/assets/address/RuneIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/RuneIcon.svg -------------------------------------------------------------------------------- /src/assets/address/RvnIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/RvnIcon.svg -------------------------------------------------------------------------------- /src/assets/address/ScrollIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/ScrollIcon.svg -------------------------------------------------------------------------------- /src/assets/address/SolIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/SolIcon.svg -------------------------------------------------------------------------------- /src/assets/address/SrmIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/SrmIcon.svg -------------------------------------------------------------------------------- /src/assets/address/SteemIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/SteemIcon.svg -------------------------------------------------------------------------------- /src/assets/address/StratIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/StratIcon.svg -------------------------------------------------------------------------------- /src/assets/address/StrkIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/StrkIcon.svg -------------------------------------------------------------------------------- /src/assets/address/StxIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/StxIcon.svg -------------------------------------------------------------------------------- /src/assets/address/SysIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/SysIcon.svg -------------------------------------------------------------------------------- /src/assets/address/TfuelIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/TfuelIcon.svg -------------------------------------------------------------------------------- /src/assets/address/ThetaIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/ThetaIcon.svg -------------------------------------------------------------------------------- /src/assets/address/TomoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/TomoIcon.svg -------------------------------------------------------------------------------- /src/assets/address/TrxIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/TrxIcon.svg -------------------------------------------------------------------------------- /src/assets/address/VetIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/VetIcon.svg -------------------------------------------------------------------------------- /src/assets/address/ViaIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/ViaIcon.svg -------------------------------------------------------------------------------- /src/assets/address/VlxIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/VlxIcon.svg -------------------------------------------------------------------------------- /src/assets/address/VsysIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/VsysIcon.svg -------------------------------------------------------------------------------- /src/assets/address/WanIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/WanIcon.svg -------------------------------------------------------------------------------- /src/assets/address/WavesIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/WavesIcon.svg -------------------------------------------------------------------------------- /src/assets/address/XemIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/XemIcon.svg -------------------------------------------------------------------------------- /src/assets/address/XhvIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/XhvIcon.svg -------------------------------------------------------------------------------- /src/assets/address/XlmIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/XlmIcon.svg -------------------------------------------------------------------------------- /src/assets/address/XmrIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/XmrIcon.svg -------------------------------------------------------------------------------- /src/assets/address/XrpIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/XrpIcon.svg -------------------------------------------------------------------------------- /src/assets/address/XtzIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/XtzIcon.svg -------------------------------------------------------------------------------- /src/assets/address/XvgIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/XvgIcon.svg -------------------------------------------------------------------------------- /src/assets/address/ZecIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/ZecIcon.svg -------------------------------------------------------------------------------- /src/assets/address/ZenIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/ZenIcon.svg -------------------------------------------------------------------------------- /src/assets/address/ZilIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/ZilIcon.svg -------------------------------------------------------------------------------- /src/assets/address/ZkSyncIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/ZkSyncIcon.svg -------------------------------------------------------------------------------- /src/assets/address/ZoraIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/ZoraIcon.svg -------------------------------------------------------------------------------- /src/assets/address/dynamicAddressIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/address/dynamicAddressIcons.ts -------------------------------------------------------------------------------- /src/assets/contentHash/ContentHashIPFS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/contentHash/ContentHashIPFS.svg -------------------------------------------------------------------------------- /src/assets/contentHash/arweave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/contentHash/arweave.svg -------------------------------------------------------------------------------- /src/assets/contentHash/onion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/contentHash/onion.svg -------------------------------------------------------------------------------- /src/assets/contentHash/skynet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/contentHash/skynet.svg -------------------------------------------------------------------------------- /src/assets/contentHash/swarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/contentHash/swarm.svg -------------------------------------------------------------------------------- /src/assets/dotbox/CoreFeatureENS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/dotbox/CoreFeatureENS.svg -------------------------------------------------------------------------------- /src/assets/dotbox/CoreFeatureNFT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/dotbox/CoreFeatureNFT.svg -------------------------------------------------------------------------------- /src/assets/dotbox/CoreFeatureOnchain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/dotbox/CoreFeatureOnchain.svg -------------------------------------------------------------------------------- /src/assets/dotbox/CoreFeatureWebsite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/dotbox/CoreFeatureWebsite.svg -------------------------------------------------------------------------------- /src/assets/dotbox/DotBoxLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/dotbox/DotBoxLogo.svg -------------------------------------------------------------------------------- /src/assets/legal/privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/legal/privacy-policy.md -------------------------------------------------------------------------------- /src/assets/legal/terms-of-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/legal/terms-of-use.md -------------------------------------------------------------------------------- /src/assets/network/DynamicNetworkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/network/DynamicNetworkIcon.tsx -------------------------------------------------------------------------------- /src/assets/network/arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/network/arbitrum.svg -------------------------------------------------------------------------------- /src/assets/network/base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/network/base.svg -------------------------------------------------------------------------------- /src/assets/network/dynamicNetworkIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/network/dynamicNetworkIcons.ts -------------------------------------------------------------------------------- /src/assets/network/ens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/network/ens.svg -------------------------------------------------------------------------------- /src/assets/network/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/network/ethereum.svg -------------------------------------------------------------------------------- /src/assets/network/linea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/network/linea.svg -------------------------------------------------------------------------------- /src/assets/network/optimism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/network/optimism.svg -------------------------------------------------------------------------------- /src/assets/network/scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/network/scroll.svg -------------------------------------------------------------------------------- /src/assets/social/DynamicSocialIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/social/DynamicSocialIcon.tsx -------------------------------------------------------------------------------- /src/assets/social/SocialDiscord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/social/SocialDiscord.svg -------------------------------------------------------------------------------- /src/assets/social/SocialDiscourse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/social/SocialDiscourse.svg -------------------------------------------------------------------------------- /src/assets/social/SocialDiscourseColour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/social/SocialDiscourseColour.svg -------------------------------------------------------------------------------- /src/assets/social/SocialGithub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/social/SocialGithub.svg -------------------------------------------------------------------------------- /src/assets/social/SocialMedium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/social/SocialMedium.svg -------------------------------------------------------------------------------- /src/assets/social/SocialMirror.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/social/SocialMirror.svg -------------------------------------------------------------------------------- /src/assets/social/SocialMirrorColour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/social/SocialMirrorColour.svg -------------------------------------------------------------------------------- /src/assets/social/SocialTelegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/social/SocialTelegram.svg -------------------------------------------------------------------------------- /src/assets/social/SocialX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/social/SocialX.svg -------------------------------------------------------------------------------- /src/assets/social/SocialYoutube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/social/SocialYoutube.svg -------------------------------------------------------------------------------- /src/assets/text/DynamicTextIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/text/DynamicTextIcon.tsx -------------------------------------------------------------------------------- /src/assets/text/TextBio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/text/TextBio.svg -------------------------------------------------------------------------------- /src/assets/text/TextLocation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/text/TextLocation.svg -------------------------------------------------------------------------------- /src/assets/text/TextName.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/text/TextName.svg -------------------------------------------------------------------------------- /src/assets/text/TextPublicKey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/text/TextPublicKey.svg -------------------------------------------------------------------------------- /src/assets/text/TextURL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/text/TextURL.svg -------------------------------------------------------------------------------- /src/assets/verification/Dentity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/assets/verification/Dentity.svg -------------------------------------------------------------------------------- /src/components/@atoms/BaseLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/BaseLink.tsx -------------------------------------------------------------------------------- /src/components/@atoms/CacheableComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/CacheableComponent.tsx -------------------------------------------------------------------------------- /src/components/@atoms/Calendar/Calendar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/Calendar/Calendar.test.tsx -------------------------------------------------------------------------------- /src/components/@atoms/Calendar/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/Calendar/Calendar.tsx -------------------------------------------------------------------------------- /src/components/@atoms/ErrorScreen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/ErrorScreen.test.tsx -------------------------------------------------------------------------------- /src/components/@atoms/ErrorScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/ErrorScreen.tsx -------------------------------------------------------------------------------- /src/components/@atoms/GasDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/GasDisplay.tsx -------------------------------------------------------------------------------- /src/components/@atoms/InnerDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/InnerDialog.tsx -------------------------------------------------------------------------------- /src/components/@atoms/Invoice/Invoice.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/Invoice/Invoice.test.tsx -------------------------------------------------------------------------------- /src/components/@atoms/Invoice/Invoice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/Invoice/Invoice.tsx -------------------------------------------------------------------------------- /src/components/@atoms/MobileFullWidth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/MobileFullWidth.tsx -------------------------------------------------------------------------------- /src/components/@atoms/RouteItem/RouteItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/RouteItem/RouteItem.tsx -------------------------------------------------------------------------------- /src/components/@atoms/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/Spacer.tsx -------------------------------------------------------------------------------- /src/components/@atoms/StatusDots/StatusDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/StatusDots/StatusDots.tsx -------------------------------------------------------------------------------- /src/components/@atoms/StyledLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/StyledLink.tsx -------------------------------------------------------------------------------- /src/components/@atoms/StyledName/StyledName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/StyledName/StyledName.tsx -------------------------------------------------------------------------------- /src/components/@atoms/SupportOutlink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/SupportOutlink.tsx -------------------------------------------------------------------------------- /src/components/@atoms/SupportQuestionIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@atoms/SupportQuestionIcon.tsx -------------------------------------------------------------------------------- /src/components/@molecules/DogFood.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@molecules/DogFood.tsx -------------------------------------------------------------------------------- /src/components/@molecules/FaucetBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@molecules/FaucetBanner.tsx -------------------------------------------------------------------------------- /src/components/@molecules/Hamburger/MainMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@molecules/Hamburger/MainMenu.tsx -------------------------------------------------------------------------------- /src/components/@molecules/SearchInput/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/@molecules/SearchInput/types.ts -------------------------------------------------------------------------------- /src/components/AvatarWithZorb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/AvatarWithZorb.tsx -------------------------------------------------------------------------------- /src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/Card.tsx -------------------------------------------------------------------------------- /src/components/ConditionalWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/ConditionalWrapper.tsx -------------------------------------------------------------------------------- /src/components/CookieConsentBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/CookieConsentBanner.tsx -------------------------------------------------------------------------------- /src/components/Header.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/Header.test.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/IconCopyAnimated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/IconCopyAnimated.tsx -------------------------------------------------------------------------------- /src/components/LeadingHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/LeadingHeading.tsx -------------------------------------------------------------------------------- /src/components/NFTWithPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/NFTWithPlaceholder.tsx -------------------------------------------------------------------------------- /src/components/Outlink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/Outlink.tsx -------------------------------------------------------------------------------- /src/components/ProfileSnippet.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/ProfileSnippet.test.tsx -------------------------------------------------------------------------------- /src/components/ProfileSnippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/ProfileSnippet.tsx -------------------------------------------------------------------------------- /src/components/RecordItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/RecordItem.tsx -------------------------------------------------------------------------------- /src/components/SocialIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/SocialIcon.tsx -------------------------------------------------------------------------------- /src/components/TabBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/TabBar.tsx -------------------------------------------------------------------------------- /src/components/TestnetWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/TestnetWarning.tsx -------------------------------------------------------------------------------- /src/components/TransactionNotifications.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/TransactionNotifications.test.tsx -------------------------------------------------------------------------------- /src/components/TransactionNotifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/TransactionNotifications.tsx -------------------------------------------------------------------------------- /src/components/address/NoProfileSnippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/address/NoProfileSnippet.tsx -------------------------------------------------------------------------------- /src/components/pages/AnnouncementBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/pages/AnnouncementBanner.tsx -------------------------------------------------------------------------------- /src/components/pages/VerificationErrorDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/pages/VerificationErrorDialog.tsx -------------------------------------------------------------------------------- /src/components/pages/import/[name]/DnsClaim.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/pages/import/[name]/DnsClaim.tsx -------------------------------------------------------------------------------- /src/components/pages/import/[name]/shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/pages/import/[name]/shared.tsx -------------------------------------------------------------------------------- /src/components/pages/import/[name]/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/pages/import/[name]/utils.test.ts -------------------------------------------------------------------------------- /src/components/pages/import/[name]/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/pages/import/[name]/utils.ts -------------------------------------------------------------------------------- /src/components/pages/migrate/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/pages/migrate/Carousel.tsx -------------------------------------------------------------------------------- /src/components/pages/profile/NameSnippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/pages/profile/NameSnippet.tsx -------------------------------------------------------------------------------- /src/components/pages/profile/ProfileButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/pages/profile/ProfileButton.tsx -------------------------------------------------------------------------------- /src/components/pages/profile/ProfileDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/pages/profile/ProfileDetails.tsx -------------------------------------------------------------------------------- /src/components/pages/profile/TabWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/pages/profile/TabWrapper.tsx -------------------------------------------------------------------------------- /src/components/pages/profile/[name]/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/components/pages/profile/[name]/Profile.tsx -------------------------------------------------------------------------------- /src/constants/allCoins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/allCoins.json -------------------------------------------------------------------------------- /src/constants/blockExplorers/evm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/blockExplorers/evm.json -------------------------------------------------------------------------------- /src/constants/blockExplorers/other.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/constants/blockExplorers/supported.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/blockExplorers/supported.json -------------------------------------------------------------------------------- /src/constants/chains.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/chains.test.ts -------------------------------------------------------------------------------- /src/constants/chains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/chains.ts -------------------------------------------------------------------------------- /src/constants/coinsWithIcons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/coinsWithIcons.json -------------------------------------------------------------------------------- /src/constants/coinsWithoutIcons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/coinsWithoutIcons.json -------------------------------------------------------------------------------- /src/constants/constants.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/constants.test.ts -------------------------------------------------------------------------------- /src/constants/dnsLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/dnsLinks.ts -------------------------------------------------------------------------------- /src/constants/domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/domains.json -------------------------------------------------------------------------------- /src/constants/interfaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/interfaces.json -------------------------------------------------------------------------------- /src/constants/networks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/networks.ts -------------------------------------------------------------------------------- /src/constants/pointers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/pointers.json -------------------------------------------------------------------------------- /src/constants/profileRecordOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/profileRecordOptions.ts -------------------------------------------------------------------------------- /src/constants/resolverAddressData.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/resolverAddressData.test.ts -------------------------------------------------------------------------------- /src/constants/resolverAddressData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/resolverAddressData.ts -------------------------------------------------------------------------------- /src/constants/resolverInterfaceIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/resolverInterfaceIds.ts -------------------------------------------------------------------------------- /src/constants/supportedAddresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/supportedAddresses.ts -------------------------------------------------------------------------------- /src/constants/supportedContentHashKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/supportedContentHashKeys.ts -------------------------------------------------------------------------------- /src/constants/supportedGeneralRecordKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/supportedGeneralRecordKeys.ts -------------------------------------------------------------------------------- /src/constants/supportedMediaRecordKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/supportedMediaRecordKeys.ts -------------------------------------------------------------------------------- /src/constants/supportedOtherRecordKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/supportedOtherRecordKeys.ts -------------------------------------------------------------------------------- /src/constants/supportedSocialRecordKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/supportedSocialRecordKeys.ts -------------------------------------------------------------------------------- /src/constants/textRecords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/textRecords.ts -------------------------------------------------------------------------------- /src/constants/tldData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/tldData.ts -------------------------------------------------------------------------------- /src/constants/verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/constants/verification.ts -------------------------------------------------------------------------------- /src/hooks/abilities/useAbilities.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/abilities/useAbilities.test.ts -------------------------------------------------------------------------------- /src/hooks/abilities/useAbilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/abilities/useAbilities.ts -------------------------------------------------------------------------------- /src/hooks/abilities/utils/getDeleteAbilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/abilities/utils/getDeleteAbilities.ts -------------------------------------------------------------------------------- /src/hooks/abilities/utils/getEditAbilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/abilities/utils/getEditAbilities.ts -------------------------------------------------------------------------------- /src/hooks/abilities/utils/getReclaimAbilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/abilities/utils/getReclaimAbilities.ts -------------------------------------------------------------------------------- /src/hooks/abilities/utils/getSendAbilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/abilities/utils/getSendAbilities.ts -------------------------------------------------------------------------------- /src/hooks/account/useAccountSafely.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/account/useAccountSafely.ts -------------------------------------------------------------------------------- /src/hooks/chain/useBlockTimestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/chain/useBlockTimestamp.ts -------------------------------------------------------------------------------- /src/hooks/chain/useChainName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/chain/useChainName.ts -------------------------------------------------------------------------------- /src/hooks/chain/useCoinChain.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/chain/useCoinChain.test.ts -------------------------------------------------------------------------------- /src/hooks/chain/useCoinChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/chain/useCoinChain.ts -------------------------------------------------------------------------------- /src/hooks/chain/useContractAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/chain/useContractAddress.ts -------------------------------------------------------------------------------- /src/hooks/chain/useCurrentBlockTimestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/chain/useCurrentBlockTimestamp.ts -------------------------------------------------------------------------------- /src/hooks/chain/useGasPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/chain/useGasPrice.ts -------------------------------------------------------------------------------- /src/hooks/chain/useInvalidateOnBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/chain/useInvalidateOnBlock.ts -------------------------------------------------------------------------------- /src/hooks/dns/useDnsOffchainStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/dns/useDnsOffchainStatus.ts -------------------------------------------------------------------------------- /src/hooks/dns/useDnsSecEnabled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/dns/useDnsSecEnabled.ts -------------------------------------------------------------------------------- /src/hooks/dotbox/useDotBoxAvailabilityOnchain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/dotbox/useDotBoxAvailabilityOnchain.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/dns/useDnsImportData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/dns/useDnsImportData.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/dns/useDnsOffchainData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/dns/useDnsOffchainData.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/dns/useDnsOwner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/dns/useDnsOwner.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/dns/useIsOffchainName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/dns/useIsOffchainName.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/public/useAddressRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/public/useAddressRecord.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/public/useExpiry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/public/useExpiry.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/public/useOwner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/public/useOwner.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/public/usePrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/public/usePrice.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/public/usePrimaryName.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/public/usePrimaryName.test.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/public/usePrimaryName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/public/usePrimaryName.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/public/useRecords.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/public/useRecords.test-d.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/public/useRecords.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/public/useRecords.test.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/public/useRecords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/public/useRecords.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/public/useResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/public/useResolver.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/public/useReverseRegistryName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/public/useReverseRegistryName.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/public/useSupportedInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/public/useSupportedInterfaces.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/public/useWrapperData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/public/useWrapperData.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/subgraph/useDecodedName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/subgraph/useDecodedName.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/subgraph/useNameHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/subgraph/useNameHistory.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/subgraph/useNamesForAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/subgraph/useNamesForAddress.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/subgraph/useSubgraphClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/subgraph/useSubgraphClient.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/subgraph/useSubgraphMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/subgraph/useSubgraphMeta.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/subgraph/useSubgraphRecords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/subgraph/useSubgraphRecords.ts -------------------------------------------------------------------------------- /src/hooks/ensjs/subgraph/useSubnames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ensjs/subgraph/useSubnames.ts -------------------------------------------------------------------------------- /src/hooks/fuses/useFusesSetDates.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/fuses/useFusesSetDates.test.ts -------------------------------------------------------------------------------- /src/hooks/fuses/useFusesSetDates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/fuses/useFusesSetDates.ts -------------------------------------------------------------------------------- /src/hooks/fuses/useFusesStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/fuses/useFusesStates.ts -------------------------------------------------------------------------------- /src/hooks/fuses/usePccExpired.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/fuses/usePccExpired.ts -------------------------------------------------------------------------------- /src/hooks/gasEstimation/calculateTransactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/gasEstimation/calculateTransactions.ts -------------------------------------------------------------------------------- /src/hooks/nameType/getNameType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/nameType/getNameType.ts -------------------------------------------------------------------------------- /src/hooks/nameType/useNameType.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/nameType/useNameType.test.ts -------------------------------------------------------------------------------- /src/hooks/nameType/useNameType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/nameType/useNameType.ts -------------------------------------------------------------------------------- /src/hooks/ownership/useRoles/useRoles.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ownership/useRoles/useRoles.test.ts -------------------------------------------------------------------------------- /src/hooks/ownership/useRoles/useRoles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ownership/useRoles/useRoles.ts -------------------------------------------------------------------------------- /src/hooks/ownership/useRoles/utils/getRoles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/ownership/useRoles/utils/getRoles.ts -------------------------------------------------------------------------------- /src/hooks/pages/profile/useRenew/useRenew.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/pages/profile/useRenew/useRenew.ts -------------------------------------------------------------------------------- /src/hooks/primary/queries/getPrimaryNameQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/primary/queries/getPrimaryNameQuery.ts -------------------------------------------------------------------------------- /src/hooks/primary/usePrimaryNames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/primary/usePrimaryNames.tsx -------------------------------------------------------------------------------- /src/hooks/registration/useCheckRegistered.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/registration/useCheckRegistered.ts -------------------------------------------------------------------------------- /src/hooks/registration/useExistingCommitment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/registration/useExistingCommitment.ts -------------------------------------------------------------------------------- /src/hooks/resolver/useRegistryResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/resolver/useRegistryResolver.ts -------------------------------------------------------------------------------- /src/hooks/resolver/useResolverIsAuthorised.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/resolver/useResolverIsAuthorised.ts -------------------------------------------------------------------------------- /src/hooks/resolver/useResolverStatus.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/resolver/useResolverStatus.test.ts -------------------------------------------------------------------------------- /src/hooks/resolver/useResolverStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/resolver/useResolverStatus.ts -------------------------------------------------------------------------------- /src/hooks/resolver/useResolverType.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/resolver/useResolverType.test.ts -------------------------------------------------------------------------------- /src/hooks/resolver/useResolverType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/resolver/useResolverType.ts -------------------------------------------------------------------------------- /src/hooks/time/useDurationCountdown.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/time/useDurationCountdown.test.ts -------------------------------------------------------------------------------- /src/hooks/time/useDurationCountdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/time/useDurationCountdown.ts -------------------------------------------------------------------------------- /src/hooks/transactions/transactionStore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/transactions/transactionStore.test.ts -------------------------------------------------------------------------------- /src/hooks/transactions/transactionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/transactions/transactionStore.ts -------------------------------------------------------------------------------- /src/hooks/transactions/useRecentTransactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/transactions/useRecentTransactions.ts -------------------------------------------------------------------------------- /src/hooks/transactions/waitForTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/transactions/waitForTransaction.ts -------------------------------------------------------------------------------- /src/hooks/useActiveRoute.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useActiveRoute.test.ts -------------------------------------------------------------------------------- /src/hooks/useActiveRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useActiveRoute.ts -------------------------------------------------------------------------------- /src/hooks/useAdvancedEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useAdvancedEditor.ts -------------------------------------------------------------------------------- /src/hooks/useApprovedForAll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useApprovedForAll.ts -------------------------------------------------------------------------------- /src/hooks/useAvatarFromRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useAvatarFromRecord.ts -------------------------------------------------------------------------------- /src/hooks/useBasicName.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useBasicName.test.ts -------------------------------------------------------------------------------- /src/hooks/useBasicName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useBasicName.ts -------------------------------------------------------------------------------- /src/hooks/useBeautifiedName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useBeautifiedName.ts -------------------------------------------------------------------------------- /src/hooks/useCalendarOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useCalendarOptions.ts -------------------------------------------------------------------------------- /src/hooks/useContentWarning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useContentWarning.ts -------------------------------------------------------------------------------- /src/hooks/useCopied.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useCopied.ts -------------------------------------------------------------------------------- /src/hooks/useCustomizedTLD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useCustomizedTLD.ts -------------------------------------------------------------------------------- /src/hooks/useDebouncedCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useDebouncedCallback.ts -------------------------------------------------------------------------------- /src/hooks/useDefaultRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useDefaultRef.ts -------------------------------------------------------------------------------- /src/hooks/useEnsAvatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useEnsAvatar.ts -------------------------------------------------------------------------------- /src/hooks/useEthPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useEthPrice.ts -------------------------------------------------------------------------------- /src/hooks/useEventTracker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useEventTracker.test.ts -------------------------------------------------------------------------------- /src/hooks/useEventTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useEventTracker.ts -------------------------------------------------------------------------------- /src/hooks/useExpandableRecordsGroup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useExpandableRecordsGroup.test.ts -------------------------------------------------------------------------------- /src/hooks/useExpandableRecordsGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useExpandableRecordsGroup.ts -------------------------------------------------------------------------------- /src/hooks/useFaucet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useFaucet.ts -------------------------------------------------------------------------------- /src/hooks/useGetSegmentLength.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useGetSegmentLength.ts -------------------------------------------------------------------------------- /src/hooks/useHasSubnames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useHasSubnames.ts -------------------------------------------------------------------------------- /src/hooks/useInitial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useInitial.ts -------------------------------------------------------------------------------- /src/hooks/useIsSafeApp.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useIsSafeApp.test.ts -------------------------------------------------------------------------------- /src/hooks/useIsSafeApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useIsSafeApp.ts -------------------------------------------------------------------------------- /src/hooks/useIsWrapped.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useIsWrapped.ts -------------------------------------------------------------------------------- /src/hooks/useLocalStorage.node.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useLocalStorage.node.test.tsx -------------------------------------------------------------------------------- /src/hooks/useLocalStorage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useLocalStorage.test.ts -------------------------------------------------------------------------------- /src/hooks/useLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useLocalStorage.ts -------------------------------------------------------------------------------- /src/hooks/useNameDetails.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useNameDetails.test.ts -------------------------------------------------------------------------------- /src/hooks/useNameDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useNameDetails.tsx -------------------------------------------------------------------------------- /src/hooks/useOwners.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useOwners.test.ts -------------------------------------------------------------------------------- /src/hooks/useOwners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useOwners.ts -------------------------------------------------------------------------------- /src/hooks/useParentBasicName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useParentBasicName.ts -------------------------------------------------------------------------------- /src/hooks/usePrefetchQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/usePrefetchQuery.ts -------------------------------------------------------------------------------- /src/hooks/usePrimaryProfile.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/usePrimaryProfile.test.tsx -------------------------------------------------------------------------------- /src/hooks/usePrimaryProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/usePrimaryProfile.ts -------------------------------------------------------------------------------- /src/hooks/useProfile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useProfile.test.ts -------------------------------------------------------------------------------- /src/hooks/useProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useProfile.ts -------------------------------------------------------------------------------- /src/hooks/useProfileEditorForm.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useProfileEditorForm.test.ts -------------------------------------------------------------------------------- /src/hooks/useProfileEditorForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useProfileEditorForm.tsx -------------------------------------------------------------------------------- /src/hooks/useProtectedRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useProtectedRoute.ts -------------------------------------------------------------------------------- /src/hooks/useQueryOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useQueryOptions.ts -------------------------------------------------------------------------------- /src/hooks/useQueryParameterState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useQueryParameterState.ts -------------------------------------------------------------------------------- /src/hooks/useReferrer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useReferrer.ts -------------------------------------------------------------------------------- /src/hooks/useRegistrationData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useRegistrationData.ts -------------------------------------------------------------------------------- /src/hooks/useRegistrationParams.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useRegistrationParams.test.ts -------------------------------------------------------------------------------- /src/hooks/useRegistrationParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useRegistrationParams.ts -------------------------------------------------------------------------------- /src/hooks/useRegistrationReducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useRegistrationReducer.test.ts -------------------------------------------------------------------------------- /src/hooks/useRegistrationReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useRegistrationReducer.ts -------------------------------------------------------------------------------- /src/hooks/useResolverEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useResolverEditor.ts -------------------------------------------------------------------------------- /src/hooks/useResolverExists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useResolverExists.ts -------------------------------------------------------------------------------- /src/hooks/useResolverHasInterfaces.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useResolverHasInterfaces.test.ts -------------------------------------------------------------------------------- /src/hooks/useResolverHasInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useResolverHasInterfaces.ts -------------------------------------------------------------------------------- /src/hooks/useRouterWithHistory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useRouterWithHistory.test.ts -------------------------------------------------------------------------------- /src/hooks/useRouterWithHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useRouterWithHistory.ts -------------------------------------------------------------------------------- /src/hooks/useSetupIntercom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useSetupIntercom.ts -------------------------------------------------------------------------------- /src/hooks/useSupportsTLD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useSupportsTLD.ts -------------------------------------------------------------------------------- /src/hooks/useThrottledCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useThrottledCallback.ts -------------------------------------------------------------------------------- /src/hooks/useTooltipSeenManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useTooltipSeenManager.ts -------------------------------------------------------------------------------- /src/hooks/useUnmanagedTLD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useUnmanagedTLD.ts -------------------------------------------------------------------------------- /src/hooks/useValidate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useValidate.test.ts -------------------------------------------------------------------------------- /src/hooks/useValidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useValidate.ts -------------------------------------------------------------------------------- /src/hooks/useValidateSubnameLabel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useValidateSubnameLabel.test.ts -------------------------------------------------------------------------------- /src/hooks/useValidateSubnameLabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useValidateSubnameLabel.ts -------------------------------------------------------------------------------- /src/hooks/useWindowSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useWindowSize.ts -------------------------------------------------------------------------------- /src/hooks/useWrapperApprovedForAll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useWrapperApprovedForAll.ts -------------------------------------------------------------------------------- /src/hooks/useZorb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/hooks/useZorb.ts -------------------------------------------------------------------------------- /src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/i18n.ts -------------------------------------------------------------------------------- /src/layouts/Basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/layouts/Basic.tsx -------------------------------------------------------------------------------- /src/layouts/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/layouts/Content.tsx -------------------------------------------------------------------------------- /src/layouts/ContentGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/layouts/ContentGrid.tsx -------------------------------------------------------------------------------- /src/layouts/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/layouts/Navigation.tsx -------------------------------------------------------------------------------- /src/overrides/ensjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/overrides/ensjs/README.md -------------------------------------------------------------------------------- /src/overrides/ensjs/renewNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/overrides/ensjs/renewNames.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/address.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/pages/address.tsx -------------------------------------------------------------------------------- /src/pages/dotbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/pages/dotbox.tsx -------------------------------------------------------------------------------- /src/pages/ens-v2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/pages/ens-v2.tsx -------------------------------------------------------------------------------- /src/pages/import.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/pages/import.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/legacyfavourites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/pages/legacyfavourites.tsx -------------------------------------------------------------------------------- /src/pages/legal/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/pages/legal/[slug].tsx -------------------------------------------------------------------------------- /src/pages/my/names.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/pages/my/names.tsx -------------------------------------------------------------------------------- /src/pages/my/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/pages/my/settings.tsx -------------------------------------------------------------------------------- /src/pages/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/pages/profile.tsx -------------------------------------------------------------------------------- /src/pages/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/pages/register.tsx -------------------------------------------------------------------------------- /src/routes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/routes.test.ts -------------------------------------------------------------------------------- /src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/routes.ts -------------------------------------------------------------------------------- /src/stub.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/test-utils.tsx -------------------------------------------------------------------------------- /src/transaction-flow/TransactionFlowProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/TransactionFlowProvider.tsx -------------------------------------------------------------------------------- /src/transaction-flow/TransactionLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/TransactionLoader.tsx -------------------------------------------------------------------------------- /src/transaction-flow/input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/input/index.tsx -------------------------------------------------------------------------------- /src/transaction-flow/intro/ChangePrimaryName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/intro/ChangePrimaryName.tsx -------------------------------------------------------------------------------- /src/transaction-flow/intro/SyncManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/intro/SyncManager.tsx -------------------------------------------------------------------------------- /src/transaction-flow/intro/WrapName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/intro/WrapName.tsx -------------------------------------------------------------------------------- /src/transaction-flow/intro/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/intro/index.ts -------------------------------------------------------------------------------- /src/transaction-flow/reducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/reducer.test.ts -------------------------------------------------------------------------------- /src/transaction-flow/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/reducer.ts -------------------------------------------------------------------------------- /src/transaction-flow/transaction/burnFuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/transaction/burnFuses.ts -------------------------------------------------------------------------------- /src/transaction-flow/transaction/claimDnsName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/transaction/claimDnsName.ts -------------------------------------------------------------------------------- /src/transaction-flow/transaction/commitName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/transaction/commitName.ts -------------------------------------------------------------------------------- /src/transaction-flow/transaction/extendNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/transaction/extendNames.ts -------------------------------------------------------------------------------- /src/transaction-flow/transaction/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/transaction/index.ts -------------------------------------------------------------------------------- /src/transaction-flow/transaction/registerName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/transaction/registerName.ts -------------------------------------------------------------------------------- /src/transaction-flow/transaction/resetProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/transaction/resetProfile.ts -------------------------------------------------------------------------------- /src/transaction-flow/transaction/syncManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/transaction/syncManager.ts -------------------------------------------------------------------------------- /src/transaction-flow/transaction/testSendName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/transaction/testSendName.ts -------------------------------------------------------------------------------- /src/transaction-flow/transaction/transferName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/transaction/transferName.ts -------------------------------------------------------------------------------- /src/transaction-flow/transaction/unwrapName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/transaction/unwrapName.ts -------------------------------------------------------------------------------- /src/transaction-flow/transaction/wrapName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/transaction/wrapName.ts -------------------------------------------------------------------------------- /src/transaction-flow/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/types.ts -------------------------------------------------------------------------------- /src/transaction-flow/utils/isTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/transaction-flow/utils/isTransaction.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/types/verification.ts -------------------------------------------------------------------------------- /src/utils/BreakpointProvider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/BreakpointProvider.test.tsx -------------------------------------------------------------------------------- /src/utils/BreakpointProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/BreakpointProvider.tsx -------------------------------------------------------------------------------- /src/utils/SyncProvider/SyncProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/SyncProvider/SyncProvider.tsx -------------------------------------------------------------------------------- /src/utils/abi.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/abi.test.ts -------------------------------------------------------------------------------- /src/utils/abi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/abi.ts -------------------------------------------------------------------------------- /src/utils/abilities/shouldShowExtendWarning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/abilities/shouldShowExtendWarning.ts -------------------------------------------------------------------------------- /src/utils/analytics.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/analytics.test.ts -------------------------------------------------------------------------------- /src/utils/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/analytics.ts -------------------------------------------------------------------------------- /src/utils/analytics/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/analytics/cookies.ts -------------------------------------------------------------------------------- /src/utils/analytics/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/analytics/events.ts -------------------------------------------------------------------------------- /src/utils/analytics/posthog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/analytics/posthog.tsx -------------------------------------------------------------------------------- /src/utils/array.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/array.test.ts -------------------------------------------------------------------------------- /src/utils/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/array.ts -------------------------------------------------------------------------------- /src/utils/avatarUpload.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/avatarUpload.test.ts -------------------------------------------------------------------------------- /src/utils/avatarUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/avatarUpload.ts -------------------------------------------------------------------------------- /src/utils/beautify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/beautify.ts -------------------------------------------------------------------------------- /src/utils/chains/addEnsContractsWithSubgraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/chains/addEnsContractsWithSubgraph.ts -------------------------------------------------------------------------------- /src/utils/chains/makeLocalhostChainWithEns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/chains/makeLocalhostChainWithEns.ts -------------------------------------------------------------------------------- /src/utils/checkAvailablePrimaryName.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/checkAvailablePrimaryName.test.ts -------------------------------------------------------------------------------- /src/utils/checkAvailablePrimaryName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/checkAvailablePrimaryName.ts -------------------------------------------------------------------------------- /src/utils/coin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/coin.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/contenthash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/contenthash.ts -------------------------------------------------------------------------------- /src/utils/createCsp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/createCsp.ts -------------------------------------------------------------------------------- /src/utils/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/currency.ts -------------------------------------------------------------------------------- /src/utils/date.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/date.test.ts -------------------------------------------------------------------------------- /src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/date.ts -------------------------------------------------------------------------------- /src/utils/datetime-local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/datetime-local.ts -------------------------------------------------------------------------------- /src/utils/device.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/device.ts -------------------------------------------------------------------------------- /src/utils/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/editor.ts -------------------------------------------------------------------------------- /src/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/errors.ts -------------------------------------------------------------------------------- /src/utils/getChainName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/getChainName.ts -------------------------------------------------------------------------------- /src/utils/getIsCachedData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/getIsCachedData.ts -------------------------------------------------------------------------------- /src/utils/getSocialData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/getSocialData.ts -------------------------------------------------------------------------------- /src/utils/getSupportedChainContractAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/getSupportedChainContractAddress.ts -------------------------------------------------------------------------------- /src/utils/gradient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/gradient.ts -------------------------------------------------------------------------------- /src/utils/headerUpload.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/headerUpload.test.ts -------------------------------------------------------------------------------- /src/utils/headerUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/headerUpload.ts -------------------------------------------------------------------------------- /src/utils/metamask/firefox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/metamask/firefox.ts -------------------------------------------------------------------------------- /src/utils/name.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/name.test.ts -------------------------------------------------------------------------------- /src/utils/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/name.ts -------------------------------------------------------------------------------- /src/utils/prepareQueryOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/prepareQueryOptions.ts -------------------------------------------------------------------------------- /src/utils/profile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/profile.test.ts -------------------------------------------------------------------------------- /src/utils/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/profile.ts -------------------------------------------------------------------------------- /src/utils/query/RainbowKitWithParaProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/RainbowKitWithParaProvider.tsx -------------------------------------------------------------------------------- /src/utils/query/createAccessList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/createAccessList.ts -------------------------------------------------------------------------------- /src/utils/query/loadPara.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/loadPara.test.ts -------------------------------------------------------------------------------- /src/utils/query/loadPara.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/loadPara.ts -------------------------------------------------------------------------------- /src/utils/query/match/matchQueryKeyMeta.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/match/matchQueryKeyMeta.test.ts -------------------------------------------------------------------------------- /src/utils/query/match/matchQueryKeyMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/match/matchQueryKeyMeta.ts -------------------------------------------------------------------------------- /src/utils/query/paraWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/paraWallet.ts -------------------------------------------------------------------------------- /src/utils/query/persist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/persist.ts -------------------------------------------------------------------------------- /src/utils/query/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/providers.tsx -------------------------------------------------------------------------------- /src/utils/query/reactQuery.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/reactQuery.test.tsx -------------------------------------------------------------------------------- /src/utils/query/reactQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/reactQuery.ts -------------------------------------------------------------------------------- /src/utils/query/serialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/serialize.ts -------------------------------------------------------------------------------- /src/utils/query/useInfiniteQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/useInfiniteQuery.ts -------------------------------------------------------------------------------- /src/utils/query/useQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/useQuery.ts -------------------------------------------------------------------------------- /src/utils/query/wagmi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/wagmi.ts -------------------------------------------------------------------------------- /src/utils/query/wallets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/query/wallets.ts -------------------------------------------------------------------------------- /src/utils/records.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/records.test.ts -------------------------------------------------------------------------------- /src/utils/records.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/records.ts -------------------------------------------------------------------------------- /src/utils/records/normaliseTwitterRecordValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/records/normaliseTwitterRecordValue.ts -------------------------------------------------------------------------------- /src/utils/referrer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/referrer.test.ts -------------------------------------------------------------------------------- /src/utils/referrer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/referrer.ts -------------------------------------------------------------------------------- /src/utils/registrationStatus.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/registrationStatus.test.ts -------------------------------------------------------------------------------- /src/utils/registrationStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/registrationStatus.ts -------------------------------------------------------------------------------- /src/utils/reverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/reverse.ts -------------------------------------------------------------------------------- /src/utils/safe.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/safe.test.ts -------------------------------------------------------------------------------- /src/utils/safe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/safe.ts -------------------------------------------------------------------------------- /src/utils/shouldRedirect.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/shouldRedirect.test.ts -------------------------------------------------------------------------------- /src/utils/shouldRedirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/shouldRedirect.ts -------------------------------------------------------------------------------- /src/utils/supportLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/supportLinks.ts -------------------------------------------------------------------------------- /src/utils/syntheticEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/syntheticEvent.ts -------------------------------------------------------------------------------- /src/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/time.ts -------------------------------------------------------------------------------- /src/utils/urlObject.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/urlObject.test.ts -------------------------------------------------------------------------------- /src/utils/urlObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/urlObject.ts -------------------------------------------------------------------------------- /src/utils/urls.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/urls.test.ts -------------------------------------------------------------------------------- /src/utils/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/urls.ts -------------------------------------------------------------------------------- /src/utils/useHasSubgraphSyncErrors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/useHasSubgraphSyncErrors.test.ts -------------------------------------------------------------------------------- /src/utils/useHasSubgraphSyncErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/useHasSubgraphSyncErrors.ts -------------------------------------------------------------------------------- /src/utils/useUserConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/useUserConfig.ts -------------------------------------------------------------------------------- /src/utils/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/utils.test.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /src/utils/verification/getVerifierData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/utils/verification/getVerifierData.ts -------------------------------------------------------------------------------- /src/validators/validateAbi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/validators/validateAbi.ts -------------------------------------------------------------------------------- /src/validators/validateAccount.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/validators/validateAccount.test.ts -------------------------------------------------------------------------------- /src/validators/validateAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/validators/validateAccount.ts -------------------------------------------------------------------------------- /src/validators/validateAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/validators/validateAddress.ts -------------------------------------------------------------------------------- /src/validators/validateContentHash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/validators/validateContentHash.test.ts -------------------------------------------------------------------------------- /src/validators/validateContentHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/validators/validateContentHash.ts -------------------------------------------------------------------------------- /src/validators/validateImageUri.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/validators/validateImageUri.test.ts -------------------------------------------------------------------------------- /src/validators/validateImageUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/validators/validateImageUri.ts -------------------------------------------------------------------------------- /src/validators/validateUrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/validators/validateUrl.test.ts -------------------------------------------------------------------------------- /src/validators/validateUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/src/validators/validateUrl.ts -------------------------------------------------------------------------------- /test/dom-setup.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/dom-setup.mts -------------------------------------------------------------------------------- /test/global-setup.mts: -------------------------------------------------------------------------------- 1 | export const setup = () => { 2 | process.env.TZ = 'UTC' 3 | } 4 | -------------------------------------------------------------------------------- /test/mock/makeMockIntersectionObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/mock/makeMockIntersectionObserver.ts -------------------------------------------------------------------------------- /test/mock/makeMockUseAbilitiesData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/mock/makeMockUseAbilitiesData.ts -------------------------------------------------------------------------------- /test/mock/makeMockUseAddrRecordData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/mock/makeMockUseAddrRecordData.ts -------------------------------------------------------------------------------- /test/mock/makeMockUseBasicName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/mock/makeMockUseBasicName.ts -------------------------------------------------------------------------------- /test/mock/makeMockUseContractAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/mock/makeMockUseContractAddress.ts -------------------------------------------------------------------------------- /test/mock/makeMockUseDnsOwnerData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/mock/makeMockUseDnsOwnerData.ts -------------------------------------------------------------------------------- /test/mock/makeMockUseExpiryData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/mock/makeMockUseExpiryData.ts -------------------------------------------------------------------------------- /test/mock/makeMockUseOwnerData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/mock/makeMockUseOwnerData.ts -------------------------------------------------------------------------------- /test/mock/makeMockUseOwners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/mock/makeMockUseOwners.ts -------------------------------------------------------------------------------- /test/mock/makeMockUsePriceData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/mock/makeMockUsePriceData.ts -------------------------------------------------------------------------------- /test/mock/makeMockUseValidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/mock/makeMockUseValidate.ts -------------------------------------------------------------------------------- /test/mock/makeMockUseVerifiedRecords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/mock/makeMockUseVerifiedRecords.ts -------------------------------------------------------------------------------- /test/mock/makeMockUseWrapperDataData.ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/mock/makeMockUseWrapperDataData.ts.ts -------------------------------------------------------------------------------- /test/mock/useMockedUseQueryOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/mock/useMockedUseQueryOptions.ts -------------------------------------------------------------------------------- /test/textencoder-setup.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/textencoder-setup.mts -------------------------------------------------------------------------------- /test/websocket-setup.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/test/websocket-setup.mts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.typecheck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/tsconfig.typecheck.json -------------------------------------------------------------------------------- /tsconfig.typecheck.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/tsconfig.typecheck.tsbuildinfo -------------------------------------------------------------------------------- /typings-custom/@ensdomains/content-hash.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@ensdomains/content-hash' 2 | -------------------------------------------------------------------------------- /typings-custom/@ensdomains/ens-validation.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@ensdomains/ens-validation' 2 | -------------------------------------------------------------------------------- /typings-custom/@ensdomains/eth-ens-namehash.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@ensdomains/eth-ens-namehash' 2 | -------------------------------------------------------------------------------- /typings-custom/@myetherwallet/mewconnect-web-client.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@myetherwallet/mewconnect-web-client' 2 | -------------------------------------------------------------------------------- /typings-custom/dns-packet.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'dns-packet' 2 | -------------------------------------------------------------------------------- /typings-custom/local-contracts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/typings-custom/local-contracts.d.ts -------------------------------------------------------------------------------- /typings-custom/styled-components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/typings-custom/styled-components.d.ts -------------------------------------------------------------------------------- /vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/vitest.config.mts -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-app-v3/HEAD/wrangler.toml --------------------------------------------------------------------------------