├── .editorconfig ├── .github ├── dependabot.yml └── pull_request_template.md ├── .gitignore ├── .nvmrc ├── 404.page.tsx ├── @theme ├── components │ ├── DeveloperSurvey.tsx │ ├── RotatingQuotes.tsx │ └── Video.tsx └── styles.css ├── LICENSE ├── README.md ├── _partials ├── _developer-survey-embed.md ├── _libraries-provider-config.md ├── _login-mainnet-warning.md ├── _login-paths-next.md ├── _namehashing-snippets.md ├── _new_tld_warning.md ├── _partner-survey-embed.md ├── _res-lib-error-intro.md └── _test-domain-explain.md ├── apis ├── loginref │ └── openapi.yaml ├── messaging-v1 │ └── openapi.yaml ├── metadata │ └── openapi.yaml ├── overview.md ├── partner │ └── openapi.yaml ├── profile-v1 │ └── openapi.yaml ├── registry │ └── openapi.yaml ├── resolution │ └── openapi.yaml └── sidebars.yaml ├── domain-distribution-and-management ├── guides │ ├── implementing-webhooks.md │ ├── on-chain-buy.md │ └── sell-domains.md ├── overview.md └── quickstart │ └── retrieve-an-api-key.md ├── favicon.png ├── getting-started ├── domain-registry-essentials │ └── namehashing.md ├── glossary.md └── overview.md ├── identity ├── api-reference │ └── error-codes.md ├── guides │ ├── best-practices.md │ ├── client-configurations.md │ ├── display-users-domain.md │ ├── faq.md │ ├── integration-paths │ │ ├── auth0.md │ │ ├── login-without-pop-up.md │ │ ├── node-js.md │ │ ├── web3-onboard.md │ │ └── web3-react.md │ ├── login-protocols │ │ ├── authentication-protocol.md │ │ └── authorization-server.md │ ├── login-scopes.md │ └── troubleshooting.md ├── overview │ └── login-with-unstoppable.md ├── quickstart │ ├── login-with-pop-up.md │ └── retrieve-client-credentials.md └── sdk-and-libraries │ ├── overview.md │ ├── uauth-js.md │ ├── uauth-node.md │ ├── web3-onboard.md │ └── web3-react.md ├── index.page.tsx ├── package.json ├── redirects.yaml ├── redocly.yaml ├── resolution ├── guides │ ├── best-practices.md │ ├── browser-resolution │ │ ├── algorithm.md │ │ ├── overview.md │ │ └── test-domains.md │ └── rr-faq.md ├── overview.md ├── quickstart │ ├── resolution.md │ ├── retrieve-an-api-key.md │ └── reverse-resolution.md ├── records-reference.md └── rr-overview.md ├── sidebars.yaml ├── smart-contracts ├── contract-reference │ ├── cns-smart-contracts.md │ └── uns-smart-contracts.md ├── overview │ ├── cns-architecture-overview.md │ ├── cns-uns-comparison.md │ └── uns-architecture-overview.md └── quick-start │ ├── manage-domain-records.md │ ├── resolve-domains.md │ └── reverse-resolve-domains.md ├── static ├── doc-templates │ ├── template-api-endpoint-docs.md │ ├── template-api-endpoints-spec.md │ ├── template-best-practices.md │ ├── template-error-codes.md │ ├── template-faq.md │ ├── template-high-level-overview.md │ ├── template-integration-guide.md │ ├── template-library-reference.md │ ├── template-troubleshooting.md │ ├── template-tutorial.md │ └── template-use-case.md ├── images │ ├── MetaMaskError-small.png │ ├── adding-domain-namehash.png │ ├── adding-records-with-setmany.png │ ├── api-reference-dark.png │ ├── api-reference-light.png │ ├── browser_resolution_algorithm.svg │ ├── configure_dns_gateway.png │ ├── consent-screen-marked-v2.png │ ├── dashboard-api-pannel.png │ ├── dashboard-client-page.png │ ├── dashboard-email-requirement.png │ ├── dashboard-empty-client-page.png │ ├── dashboard-sandbox-button.png │ ├── dashboard-update-client-info.png │ ├── domain-btc-resolving-example.png │ ├── domain-records-via-proxy-reader-smart-contract.png │ ├── faucet-address-submission.png │ ├── faucet-network-selection.png │ ├── faucet-transaction-confirmation.png │ ├── filling-issue-with-records-parameters-2.png │ ├── filling-issue-with-records-parameters.png │ ├── github-mark-32px.png │ ├── invalid-domain-error.png │ ├── login-buttons │ │ ├── login-default-large.png │ │ ├── login-default-small.png │ │ ├── login-hover-large.png │ │ ├── login-hover-small.png │ │ ├── login-loading-large.png │ │ ├── login-loading-small.png │ │ ├── login-pressed-large.png │ │ ├── login-pressed-small.png │ │ └── ud-login-assets.zip │ ├── login-client-advanced-config.png │ ├── login-client-config-branding.png │ ├── login-domains-modal1.png │ ├── login-domains-modal2-v3.png │ ├── login-enter-redirect-uris.gif │ ├── login-modal-doesnt-close.png │ ├── login-promo.png │ ├── login-scopes-email-optional.png │ ├── login-scopes-example.png │ ├── login-selection-auth0.png │ ├── login-selection-web3-onboard.png │ ├── login-selection-web3modal.png │ ├── login-with-domains-dark.png │ ├── login-with-domains-light.png │ ├── login-with-unstoppable-flow-revised.png │ ├── minting-manager-connect-wallet.png │ ├── minting-manager-write-as-proxy-tab.png │ ├── overview_dweb_website_via_dns_dweb_gateways.png │ ├── overview_read_dweb_website_from_ethereum_and_decentralized_network.png │ ├── partner-signup.png │ ├── polygon-minting-manager-contract.png │ ├── polygon-registry-contract.png │ ├── polygonscan-claim-to-records.png │ ├── polygonscan-connect-wallet.png │ ├── polygonscan-issue-with-records-method.png │ ├── polygonscan-read-as-proxy.png │ ├── polygonscan-set-method.png │ ├── polygonscan-setmany-method.png │ ├── polygonscan-subdomain-minting-transaction-details.png │ ├── polygonscan-transaction-details.png │ ├── polygonscan-write-as-proxy-tab.png │ ├── record-not-found-error.png │ ├── registry_resolver_relation-22231.svg │ ├── resolve-domains-dark.png │ ├── resolve-domains-light.png │ ├── resolve_dweb_website_by_direct_reading_from_ethereum_and_decentralized_network.png │ ├── resolve_dweb_website_via_dns_gateway_and_dweb_gateway.png │ ├── reverse-name-of-abi-response.png │ ├── reverse-name-of-abi.png │ ├── reverse-resolution-illustration.jpeg │ ├── sell-domains-dark.png │ ├── sell-domains-light.png │ ├── smart-contract-architecture-administration-44233.svg │ ├── submit-company-name.png │ ├── successful-domain-resolving.png │ ├── successful-faucet-request-submission.png │ ├── third-UI-example-login-domains.png │ ├── toolkit.png │ ├── ud-logo-dark.svg │ ├── ud-logo-light.svg │ ├── unregistered-domain-error.png │ ├── uns-architecture.png │ ├── uns-smart-contract-architecture.png │ ├── unspecified-resolver-error.png │ ├── unsupported-domain-error.png │ ├── use-case.png │ ├── wallet-provider-list.png │ └── website-free-domain-purchase.png ├── robots.txt ├── scripts │ ├── etlb.js │ ├── fd-widget.js │ └── typeform-init.js └── videos │ └── connect-wallet-and-create-client.mp4 ├── tsconfig.json ├── types.d.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public/ 3 | .DS_Store 4 | .idea 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.19.0 2 | -------------------------------------------------------------------------------- /404.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/404.page.tsx -------------------------------------------------------------------------------- /@theme/components/DeveloperSurvey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/@theme/components/DeveloperSurvey.tsx -------------------------------------------------------------------------------- /@theme/components/RotatingQuotes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/@theme/components/RotatingQuotes.tsx -------------------------------------------------------------------------------- /@theme/components/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/@theme/components/Video.tsx -------------------------------------------------------------------------------- /@theme/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/@theme/styles.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/README.md -------------------------------------------------------------------------------- /_partials/_developer-survey-embed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/_partials/_developer-survey-embed.md -------------------------------------------------------------------------------- /_partials/_libraries-provider-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/_partials/_libraries-provider-config.md -------------------------------------------------------------------------------- /_partials/_login-mainnet-warning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/_partials/_login-mainnet-warning.md -------------------------------------------------------------------------------- /_partials/_login-paths-next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/_partials/_login-paths-next.md -------------------------------------------------------------------------------- /_partials/_namehashing-snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/_partials/_namehashing-snippets.md -------------------------------------------------------------------------------- /_partials/_new_tld_warning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/_partials/_new_tld_warning.md -------------------------------------------------------------------------------- /_partials/_partner-survey-embed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/_partials/_partner-survey-embed.md -------------------------------------------------------------------------------- /_partials/_res-lib-error-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/_partials/_res-lib-error-intro.md -------------------------------------------------------------------------------- /_partials/_test-domain-explain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/_partials/_test-domain-explain.md -------------------------------------------------------------------------------- /apis/loginref/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/apis/loginref/openapi.yaml -------------------------------------------------------------------------------- /apis/messaging-v1/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/apis/messaging-v1/openapi.yaml -------------------------------------------------------------------------------- /apis/metadata/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/apis/metadata/openapi.yaml -------------------------------------------------------------------------------- /apis/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/apis/overview.md -------------------------------------------------------------------------------- /apis/partner/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/apis/partner/openapi.yaml -------------------------------------------------------------------------------- /apis/profile-v1/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/apis/profile-v1/openapi.yaml -------------------------------------------------------------------------------- /apis/registry/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/apis/registry/openapi.yaml -------------------------------------------------------------------------------- /apis/resolution/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/apis/resolution/openapi.yaml -------------------------------------------------------------------------------- /apis/sidebars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/apis/sidebars.yaml -------------------------------------------------------------------------------- /domain-distribution-and-management/guides/implementing-webhooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/domain-distribution-and-management/guides/implementing-webhooks.md -------------------------------------------------------------------------------- /domain-distribution-and-management/guides/on-chain-buy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/domain-distribution-and-management/guides/on-chain-buy.md -------------------------------------------------------------------------------- /domain-distribution-and-management/guides/sell-domains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/domain-distribution-and-management/guides/sell-domains.md -------------------------------------------------------------------------------- /domain-distribution-and-management/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/domain-distribution-and-management/overview.md -------------------------------------------------------------------------------- /domain-distribution-and-management/quickstart/retrieve-an-api-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/domain-distribution-and-management/quickstart/retrieve-an-api-key.md -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/favicon.png -------------------------------------------------------------------------------- /getting-started/domain-registry-essentials/namehashing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/getting-started/domain-registry-essentials/namehashing.md -------------------------------------------------------------------------------- /getting-started/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/getting-started/glossary.md -------------------------------------------------------------------------------- /getting-started/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/getting-started/overview.md -------------------------------------------------------------------------------- /identity/api-reference/error-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/api-reference/error-codes.md -------------------------------------------------------------------------------- /identity/guides/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/guides/best-practices.md -------------------------------------------------------------------------------- /identity/guides/client-configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/guides/client-configurations.md -------------------------------------------------------------------------------- /identity/guides/display-users-domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/guides/display-users-domain.md -------------------------------------------------------------------------------- /identity/guides/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/guides/faq.md -------------------------------------------------------------------------------- /identity/guides/integration-paths/auth0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/guides/integration-paths/auth0.md -------------------------------------------------------------------------------- /identity/guides/integration-paths/login-without-pop-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/guides/integration-paths/login-without-pop-up.md -------------------------------------------------------------------------------- /identity/guides/integration-paths/node-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/guides/integration-paths/node-js.md -------------------------------------------------------------------------------- /identity/guides/integration-paths/web3-onboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/guides/integration-paths/web3-onboard.md -------------------------------------------------------------------------------- /identity/guides/integration-paths/web3-react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/guides/integration-paths/web3-react.md -------------------------------------------------------------------------------- /identity/guides/login-protocols/authentication-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/guides/login-protocols/authentication-protocol.md -------------------------------------------------------------------------------- /identity/guides/login-protocols/authorization-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/guides/login-protocols/authorization-server.md -------------------------------------------------------------------------------- /identity/guides/login-scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/guides/login-scopes.md -------------------------------------------------------------------------------- /identity/guides/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/guides/troubleshooting.md -------------------------------------------------------------------------------- /identity/overview/login-with-unstoppable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/overview/login-with-unstoppable.md -------------------------------------------------------------------------------- /identity/quickstart/login-with-pop-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/quickstart/login-with-pop-up.md -------------------------------------------------------------------------------- /identity/quickstart/retrieve-client-credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/quickstart/retrieve-client-credentials.md -------------------------------------------------------------------------------- /identity/sdk-and-libraries/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/sdk-and-libraries/overview.md -------------------------------------------------------------------------------- /identity/sdk-and-libraries/uauth-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/sdk-and-libraries/uauth-js.md -------------------------------------------------------------------------------- /identity/sdk-and-libraries/uauth-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/sdk-and-libraries/uauth-node.md -------------------------------------------------------------------------------- /identity/sdk-and-libraries/web3-onboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/sdk-and-libraries/web3-onboard.md -------------------------------------------------------------------------------- /identity/sdk-and-libraries/web3-react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/identity/sdk-and-libraries/web3-react.md -------------------------------------------------------------------------------- /index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/index.page.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/package.json -------------------------------------------------------------------------------- /redirects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/redirects.yaml -------------------------------------------------------------------------------- /redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/redocly.yaml -------------------------------------------------------------------------------- /resolution/guides/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/resolution/guides/best-practices.md -------------------------------------------------------------------------------- /resolution/guides/browser-resolution/algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/resolution/guides/browser-resolution/algorithm.md -------------------------------------------------------------------------------- /resolution/guides/browser-resolution/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/resolution/guides/browser-resolution/overview.md -------------------------------------------------------------------------------- /resolution/guides/browser-resolution/test-domains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/resolution/guides/browser-resolution/test-domains.md -------------------------------------------------------------------------------- /resolution/guides/rr-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/resolution/guides/rr-faq.md -------------------------------------------------------------------------------- /resolution/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/resolution/overview.md -------------------------------------------------------------------------------- /resolution/quickstart/resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/resolution/quickstart/resolution.md -------------------------------------------------------------------------------- /resolution/quickstart/retrieve-an-api-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/resolution/quickstart/retrieve-an-api-key.md -------------------------------------------------------------------------------- /resolution/quickstart/reverse-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/resolution/quickstart/reverse-resolution.md -------------------------------------------------------------------------------- /resolution/records-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/resolution/records-reference.md -------------------------------------------------------------------------------- /resolution/rr-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/resolution/rr-overview.md -------------------------------------------------------------------------------- /sidebars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/sidebars.yaml -------------------------------------------------------------------------------- /smart-contracts/contract-reference/cns-smart-contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/smart-contracts/contract-reference/cns-smart-contracts.md -------------------------------------------------------------------------------- /smart-contracts/contract-reference/uns-smart-contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/smart-contracts/contract-reference/uns-smart-contracts.md -------------------------------------------------------------------------------- /smart-contracts/overview/cns-architecture-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/smart-contracts/overview/cns-architecture-overview.md -------------------------------------------------------------------------------- /smart-contracts/overview/cns-uns-comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/smart-contracts/overview/cns-uns-comparison.md -------------------------------------------------------------------------------- /smart-contracts/overview/uns-architecture-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/smart-contracts/overview/uns-architecture-overview.md -------------------------------------------------------------------------------- /smart-contracts/quick-start/manage-domain-records.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/smart-contracts/quick-start/manage-domain-records.md -------------------------------------------------------------------------------- /smart-contracts/quick-start/resolve-domains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/smart-contracts/quick-start/resolve-domains.md -------------------------------------------------------------------------------- /smart-contracts/quick-start/reverse-resolve-domains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/smart-contracts/quick-start/reverse-resolve-domains.md -------------------------------------------------------------------------------- /static/doc-templates/template-api-endpoint-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/doc-templates/template-api-endpoint-docs.md -------------------------------------------------------------------------------- /static/doc-templates/template-api-endpoints-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/doc-templates/template-api-endpoints-spec.md -------------------------------------------------------------------------------- /static/doc-templates/template-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/doc-templates/template-best-practices.md -------------------------------------------------------------------------------- /static/doc-templates/template-error-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/doc-templates/template-error-codes.md -------------------------------------------------------------------------------- /static/doc-templates/template-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/doc-templates/template-faq.md -------------------------------------------------------------------------------- /static/doc-templates/template-high-level-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/doc-templates/template-high-level-overview.md -------------------------------------------------------------------------------- /static/doc-templates/template-integration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/doc-templates/template-integration-guide.md -------------------------------------------------------------------------------- /static/doc-templates/template-library-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/doc-templates/template-library-reference.md -------------------------------------------------------------------------------- /static/doc-templates/template-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/doc-templates/template-troubleshooting.md -------------------------------------------------------------------------------- /static/doc-templates/template-tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/doc-templates/template-tutorial.md -------------------------------------------------------------------------------- /static/doc-templates/template-use-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/doc-templates/template-use-case.md -------------------------------------------------------------------------------- /static/images/MetaMaskError-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/MetaMaskError-small.png -------------------------------------------------------------------------------- /static/images/adding-domain-namehash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/adding-domain-namehash.png -------------------------------------------------------------------------------- /static/images/adding-records-with-setmany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/adding-records-with-setmany.png -------------------------------------------------------------------------------- /static/images/api-reference-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/api-reference-dark.png -------------------------------------------------------------------------------- /static/images/api-reference-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/api-reference-light.png -------------------------------------------------------------------------------- /static/images/browser_resolution_algorithm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/browser_resolution_algorithm.svg -------------------------------------------------------------------------------- /static/images/configure_dns_gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/configure_dns_gateway.png -------------------------------------------------------------------------------- /static/images/consent-screen-marked-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/consent-screen-marked-v2.png -------------------------------------------------------------------------------- /static/images/dashboard-api-pannel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/dashboard-api-pannel.png -------------------------------------------------------------------------------- /static/images/dashboard-client-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/dashboard-client-page.png -------------------------------------------------------------------------------- /static/images/dashboard-email-requirement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/dashboard-email-requirement.png -------------------------------------------------------------------------------- /static/images/dashboard-empty-client-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/dashboard-empty-client-page.png -------------------------------------------------------------------------------- /static/images/dashboard-sandbox-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/dashboard-sandbox-button.png -------------------------------------------------------------------------------- /static/images/dashboard-update-client-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/dashboard-update-client-info.png -------------------------------------------------------------------------------- /static/images/domain-btc-resolving-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/domain-btc-resolving-example.png -------------------------------------------------------------------------------- /static/images/domain-records-via-proxy-reader-smart-contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/domain-records-via-proxy-reader-smart-contract.png -------------------------------------------------------------------------------- /static/images/faucet-address-submission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/faucet-address-submission.png -------------------------------------------------------------------------------- /static/images/faucet-network-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/faucet-network-selection.png -------------------------------------------------------------------------------- /static/images/faucet-transaction-confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/faucet-transaction-confirmation.png -------------------------------------------------------------------------------- /static/images/filling-issue-with-records-parameters-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/filling-issue-with-records-parameters-2.png -------------------------------------------------------------------------------- /static/images/filling-issue-with-records-parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/filling-issue-with-records-parameters.png -------------------------------------------------------------------------------- /static/images/github-mark-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/github-mark-32px.png -------------------------------------------------------------------------------- /static/images/invalid-domain-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/invalid-domain-error.png -------------------------------------------------------------------------------- /static/images/login-buttons/login-default-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-buttons/login-default-large.png -------------------------------------------------------------------------------- /static/images/login-buttons/login-default-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-buttons/login-default-small.png -------------------------------------------------------------------------------- /static/images/login-buttons/login-hover-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-buttons/login-hover-large.png -------------------------------------------------------------------------------- /static/images/login-buttons/login-hover-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-buttons/login-hover-small.png -------------------------------------------------------------------------------- /static/images/login-buttons/login-loading-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-buttons/login-loading-large.png -------------------------------------------------------------------------------- /static/images/login-buttons/login-loading-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-buttons/login-loading-small.png -------------------------------------------------------------------------------- /static/images/login-buttons/login-pressed-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-buttons/login-pressed-large.png -------------------------------------------------------------------------------- /static/images/login-buttons/login-pressed-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-buttons/login-pressed-small.png -------------------------------------------------------------------------------- /static/images/login-buttons/ud-login-assets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-buttons/ud-login-assets.zip -------------------------------------------------------------------------------- /static/images/login-client-advanced-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-client-advanced-config.png -------------------------------------------------------------------------------- /static/images/login-client-config-branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-client-config-branding.png -------------------------------------------------------------------------------- /static/images/login-domains-modal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-domains-modal1.png -------------------------------------------------------------------------------- /static/images/login-domains-modal2-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-domains-modal2-v3.png -------------------------------------------------------------------------------- /static/images/login-enter-redirect-uris.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-enter-redirect-uris.gif -------------------------------------------------------------------------------- /static/images/login-modal-doesnt-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-modal-doesnt-close.png -------------------------------------------------------------------------------- /static/images/login-promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-promo.png -------------------------------------------------------------------------------- /static/images/login-scopes-email-optional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-scopes-email-optional.png -------------------------------------------------------------------------------- /static/images/login-scopes-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-scopes-example.png -------------------------------------------------------------------------------- /static/images/login-selection-auth0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-selection-auth0.png -------------------------------------------------------------------------------- /static/images/login-selection-web3-onboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-selection-web3-onboard.png -------------------------------------------------------------------------------- /static/images/login-selection-web3modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-selection-web3modal.png -------------------------------------------------------------------------------- /static/images/login-with-domains-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-with-domains-dark.png -------------------------------------------------------------------------------- /static/images/login-with-domains-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-with-domains-light.png -------------------------------------------------------------------------------- /static/images/login-with-unstoppable-flow-revised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/login-with-unstoppable-flow-revised.png -------------------------------------------------------------------------------- /static/images/minting-manager-connect-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/minting-manager-connect-wallet.png -------------------------------------------------------------------------------- /static/images/minting-manager-write-as-proxy-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/minting-manager-write-as-proxy-tab.png -------------------------------------------------------------------------------- /static/images/overview_dweb_website_via_dns_dweb_gateways.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/overview_dweb_website_via_dns_dweb_gateways.png -------------------------------------------------------------------------------- /static/images/overview_read_dweb_website_from_ethereum_and_decentralized_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/overview_read_dweb_website_from_ethereum_and_decentralized_network.png -------------------------------------------------------------------------------- /static/images/partner-signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/partner-signup.png -------------------------------------------------------------------------------- /static/images/polygon-minting-manager-contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/polygon-minting-manager-contract.png -------------------------------------------------------------------------------- /static/images/polygon-registry-contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/polygon-registry-contract.png -------------------------------------------------------------------------------- /static/images/polygonscan-claim-to-records.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/polygonscan-claim-to-records.png -------------------------------------------------------------------------------- /static/images/polygonscan-connect-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/polygonscan-connect-wallet.png -------------------------------------------------------------------------------- /static/images/polygonscan-issue-with-records-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/polygonscan-issue-with-records-method.png -------------------------------------------------------------------------------- /static/images/polygonscan-read-as-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/polygonscan-read-as-proxy.png -------------------------------------------------------------------------------- /static/images/polygonscan-set-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/polygonscan-set-method.png -------------------------------------------------------------------------------- /static/images/polygonscan-setmany-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/polygonscan-setmany-method.png -------------------------------------------------------------------------------- /static/images/polygonscan-subdomain-minting-transaction-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/polygonscan-subdomain-minting-transaction-details.png -------------------------------------------------------------------------------- /static/images/polygonscan-transaction-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/polygonscan-transaction-details.png -------------------------------------------------------------------------------- /static/images/polygonscan-write-as-proxy-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/polygonscan-write-as-proxy-tab.png -------------------------------------------------------------------------------- /static/images/record-not-found-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/record-not-found-error.png -------------------------------------------------------------------------------- /static/images/registry_resolver_relation-22231.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/registry_resolver_relation-22231.svg -------------------------------------------------------------------------------- /static/images/resolve-domains-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/resolve-domains-dark.png -------------------------------------------------------------------------------- /static/images/resolve-domains-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/resolve-domains-light.png -------------------------------------------------------------------------------- /static/images/resolve_dweb_website_by_direct_reading_from_ethereum_and_decentralized_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/resolve_dweb_website_by_direct_reading_from_ethereum_and_decentralized_network.png -------------------------------------------------------------------------------- /static/images/resolve_dweb_website_via_dns_gateway_and_dweb_gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/resolve_dweb_website_via_dns_gateway_and_dweb_gateway.png -------------------------------------------------------------------------------- /static/images/reverse-name-of-abi-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/reverse-name-of-abi-response.png -------------------------------------------------------------------------------- /static/images/reverse-name-of-abi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/reverse-name-of-abi.png -------------------------------------------------------------------------------- /static/images/reverse-resolution-illustration.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/reverse-resolution-illustration.jpeg -------------------------------------------------------------------------------- /static/images/sell-domains-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/sell-domains-dark.png -------------------------------------------------------------------------------- /static/images/sell-domains-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/sell-domains-light.png -------------------------------------------------------------------------------- /static/images/smart-contract-architecture-administration-44233.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/smart-contract-architecture-administration-44233.svg -------------------------------------------------------------------------------- /static/images/submit-company-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/submit-company-name.png -------------------------------------------------------------------------------- /static/images/successful-domain-resolving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/successful-domain-resolving.png -------------------------------------------------------------------------------- /static/images/successful-faucet-request-submission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/successful-faucet-request-submission.png -------------------------------------------------------------------------------- /static/images/third-UI-example-login-domains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/third-UI-example-login-domains.png -------------------------------------------------------------------------------- /static/images/toolkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/toolkit.png -------------------------------------------------------------------------------- /static/images/ud-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/ud-logo-dark.svg -------------------------------------------------------------------------------- /static/images/ud-logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/ud-logo-light.svg -------------------------------------------------------------------------------- /static/images/unregistered-domain-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/unregistered-domain-error.png -------------------------------------------------------------------------------- /static/images/uns-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/uns-architecture.png -------------------------------------------------------------------------------- /static/images/uns-smart-contract-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/uns-smart-contract-architecture.png -------------------------------------------------------------------------------- /static/images/unspecified-resolver-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/unspecified-resolver-error.png -------------------------------------------------------------------------------- /static/images/unsupported-domain-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/unsupported-domain-error.png -------------------------------------------------------------------------------- /static/images/use-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/use-case.png -------------------------------------------------------------------------------- /static/images/wallet-provider-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/wallet-provider-list.png -------------------------------------------------------------------------------- /static/images/website-free-domain-purchase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/images/website-free-domain-purchase.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/robots.txt -------------------------------------------------------------------------------- /static/scripts/etlb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/scripts/etlb.js -------------------------------------------------------------------------------- /static/scripts/fd-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/scripts/fd-widget.js -------------------------------------------------------------------------------- /static/scripts/typeform-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/scripts/typeform-init.js -------------------------------------------------------------------------------- /static/videos/connect-wallet-and-create-client.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/static/videos/connect-wallet-and-create-client.mp4 -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/types.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unstoppabledomains/dev-docs/HEAD/yarn.lock --------------------------------------------------------------------------------