├── .codesandbox └── Dockerfile ├── .dockerignore ├── .env.local.example ├── .github ├── ISSUE_TEMPLATE │ ├── feedback-report.yaml │ ├── usecase.yaml │ └── web5-upgrade.yaml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── docker-image-publish.yml │ └── main.yml ├── .gitignore ├── .npmrc ├── Apps.Dockerfile ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── GOVERNANCE.md ├── LICENSE ├── README.md ├── apps └── feedback-server │ ├── .env.example │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc.json │ ├── README.md │ ├── config.js │ ├── db.js │ ├── logger.js │ ├── package.json │ ├── server.js │ ├── tests │ ├── db.test.js │ └── server.test.js │ └── vitest.config.ts ├── docker-compose.yaml ├── examples ├── tutorials │ ├── book-reviews │ │ ├── .codesandbox │ │ │ ├── Dockerfile │ │ │ └── tasks.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── book-reviews.js │ │ └── package.json │ ├── dinger-completed │ │ ├── .codesandbox │ │ │ ├── Dockerfile │ │ │ └── tasks.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── jsconfig.json │ │ ├── next.config.js │ │ ├── package.json │ │ ├── public │ │ │ └── favicon.ico │ │ └── src │ │ │ ├── components │ │ │ ├── Chat.js │ │ │ ├── NoChatSelected.js │ │ │ └── Sidebar.js │ │ │ ├── pages │ │ │ ├── _app.js │ │ │ ├── _document.js │ │ │ ├── api │ │ │ │ └── hello.js │ │ │ └── index.js │ │ │ └── styles │ │ │ └── globals.css │ ├── dinger-starter │ │ ├── .codesandbox │ │ │ ├── Dockerfile │ │ │ └── tasks.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── jsconfig.json │ │ ├── next.config.js │ │ ├── package.json │ │ ├── public │ │ │ └── favicon.ico │ │ └── src │ │ │ ├── components │ │ │ ├── Chat.js │ │ │ ├── NoChatSelected.js │ │ │ └── Sidebar.js │ │ │ ├── pages │ │ │ ├── _app.js │ │ │ ├── _document.js │ │ │ ├── api │ │ │ │ └── hello.js │ │ │ └── index.js │ │ │ └── styles │ │ │ └── globals.css │ ├── shared-todo-completed │ │ ├── .codesandbox │ │ │ ├── Dockerfile │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── app.vue │ │ ├── assets │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── shared-todo-protocol.json │ │ ├── nuxt.config.ts │ │ ├── package.json │ │ ├── pages │ │ │ ├── index.vue │ │ │ └── todos │ │ │ │ └── [id].vue │ │ ├── plugins │ │ │ └── web5.client.js │ │ ├── public │ │ │ └── favicon.ico │ │ ├── server │ │ │ └── tsconfig.json │ │ ├── tailwind.config.js │ │ └── tsconfig.json │ ├── shared-todo-starter │ │ ├── .codesandbox │ │ │ └── tasks.json │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── README.md │ │ ├── app.vue │ │ ├── assets │ │ │ └── css │ │ │ │ └── main.css │ │ ├── nuxt.config.ts │ │ ├── package.json │ │ ├── pages │ │ │ ├── index.vue │ │ │ └── todos │ │ │ │ └── [id].vue │ │ ├── public │ │ │ └── favicon.ico │ │ ├── server │ │ │ └── tsconfig.json │ │ ├── tailwind.config.js │ │ └── tsconfig.json │ ├── todo-completed │ │ ├── .codesandbox │ │ │ ├── Dockerfile │ │ │ └── tasks.json │ │ ├── .eslintrc.cjs │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.html │ │ ├── netlify.toml │ │ ├── package.json │ │ ├── postcss.config.cjs │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── main.js │ │ │ └── style.css │ │ ├── tailwind.config.cjs │ │ └── vite.config.js │ └── todo-starter │ │ ├── .eslintrc.cjs │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.html │ │ ├── package.json │ │ ├── postcss.config.cjs │ │ ├── src │ │ ├── App.vue │ │ ├── main.js │ │ └── style.css │ │ ├── tailwind.config.cjs │ │ └── vite.config.js └── web5-quickstart-widgets │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── README.md │ ├── __tests__ │ └── widget.test.js │ ├── index.html │ ├── index.js │ ├── package.json │ ├── public │ ├── index.js │ └── index.js.map │ ├── rollup.config.mjs │ └── server.js ├── extract-snippets.js ├── generate-contributors-json.js ├── netlify.toml ├── netlify └── functions │ └── discord-messages.mjs ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── propagateWeb5.js ├── site ├── .editorconfig ├── .env.example ├── .eslintrc.js ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── README.md ├── __tests__ │ ├── api │ │ └── web5-js │ │ │ ├── did.test.js │ │ │ ├── dwn │ │ │ ├── protocol.test.js │ │ │ ├── protocols.test.js │ │ │ ├── record.test.js │ │ │ └── records.test.js │ │ │ └── index.test.js │ ├── blog │ │ └── 2023-05-23-dwas-vs-pwas.test.js │ ├── quickstart.test.js │ └── web5 │ │ └── build │ │ ├── apps │ │ └── upgrade-to-web5.test.js │ │ ├── decentralized-identifiers │ │ └── how-to-create-did.test.js │ │ └── decentralized-web-nodes │ │ ├── query-from-dwn.test.js │ │ └── send.test.js ├── api-sidebars.js ├── api │ └── web5-js │ │ ├── _category_.json │ │ ├── did.mdx │ │ ├── dwn │ │ ├── _category_.json │ │ ├── dwn.mdx │ │ ├── protocol.mdx │ │ ├── protocols.mdx │ │ ├── record.mdx │ │ └── records.mdx │ │ └── index.mdx ├── babel.config.js ├── blog │ ├── 2022-07-01-what-is-web5.md │ ├── 2022-07-26-web5-roadmap.md │ ├── 2022-08-15-our-interop-work-in-dif.md │ ├── 2022-08-17-what-are-verifiable-credentials.md │ ├── 2022-08-26-ssi-tbd-web5.md │ ├── 2022-10-13-announcing-the-incubation-program.md │ ├── 2022-10-18-web5-verifiable-credential-selector.md │ ├── 2022-12-20-currency-of-freedom.md │ ├── 2023-01-10-ssi-chat-gpt.md │ ├── 2023-04-03-tiktok-ban.md │ ├── 2023-04-18-benri-hosts-ssi-service.md │ ├── 2023-04-19-practicality-of-dids.md │ ├── 2023-04-25-ssi-service-playground.md │ ├── 2023-05-15-dids-in-the-real-world.md │ ├── 2023-05-23-dwas-vs-pwas.md │ ├── 2023-06-01-ssi-console.md │ ├── 2023-06-07-did-parental-controls.md │ ├── 2023-06-23-did-hack.md │ ├── 2023-06-27-web5-chatgpt.md │ ├── 2023-07-13-authentication-with-web5.md │ ├── 2023-07-26-homenode-manager.md │ ├── 2023-08-11-who-really-owns-your-social-media-handles.md │ ├── 2023-09-22-preptember-gearing-up-for-hacktoberfest23.md │ ├── 2023-09-25-why-would-companies-embrace-web5 copy.md │ ├── 2023-09-29-new-recognition-program.md │ ├── 2023-10-11-dif-hackathon.md │ └── authors.yml ├── code-snippets │ ├── api │ │ └── web5-js │ │ │ ├── did.js │ │ │ ├── dwn │ │ │ ├── protocol.js │ │ │ ├── protocols.js │ │ │ ├── record.js │ │ │ └── records.js │ │ │ ├── index.js │ │ │ └── records.js │ ├── blog │ │ └── 2023-05-23-dwas-vs-pwas.js │ └── web5 │ │ ├── build │ │ ├── apps │ │ │ └── upgrade-to-web5.js │ │ ├── decentralized-identifiers │ │ │ └── how-to-create-did.js │ │ └── decentralized-web-nodes │ │ │ ├── query-from-dwn.js │ │ │ └── send.js │ │ └── quickstart.js ├── docs │ ├── api.mdx │ ├── docs-index.js │ ├── glossary.md │ ├── index.mdx │ ├── ssi │ │ ├── _category_.json │ │ ├── api_guide.mdx │ │ ├── create-credentials.md │ │ ├── create-did.md │ │ ├── create-schema.md │ │ ├── credential-issuance-service.md │ │ ├── credential-manifests.md │ │ ├── credential-status.md │ │ ├── presentation-requests.md │ │ ├── revoke-credentials.md │ │ ├── run-ssi-service.md │ │ ├── ssi-console.md │ │ ├── verifiable-presentations.md │ │ ├── verify-credentials.md │ │ └── well-known-did.md │ ├── tbdex │ │ ├── _category_.json │ │ └── api-reference │ │ │ ├── _category_.json │ │ │ └── tbdex-js │ │ │ ├── http-client │ │ │ ├── classes │ │ │ │ └── TbdexHttpClient.md │ │ │ └── index.md │ │ │ ├── http-server │ │ │ ├── classes │ │ │ │ └── TbdexHttpServer.md │ │ │ ├── index.md │ │ │ └── interfaces │ │ │ │ ├── ExchangesApi.md │ │ │ │ └── OfferingsApi.md │ │ │ └── protocol │ │ │ ├── classes │ │ │ ├── Close.md │ │ │ ├── Crypto.md │ │ │ ├── DevTools.md │ │ │ ├── Message.md │ │ │ ├── Offering.md │ │ │ ├── Order.md │ │ │ ├── OrderStatus.md │ │ │ ├── Quote.md │ │ │ ├── Resource.md │ │ │ └── Rfq.md │ │ │ └── index.md │ └── web5 │ │ ├── _category_.json │ │ ├── _quickstart-01-intro.mdx │ │ ├── _quickstart-02-prereqs-and-installation.mdx │ │ ├── _quickstart-03-create-did.mdx │ │ ├── _quickstart-05-write-record.mdx │ │ ├── _quickstart-06-read-record.mdx │ │ ├── _quickstart-07-update-record.mdx │ │ ├── _quickstart-08-delete-record.mdx │ │ ├── _quickstart-10-next-steps.mdx │ │ ├── api_guide.mdx │ │ ├── build │ │ ├── _category_.json │ │ ├── apps │ │ │ ├── _category_.json │ │ │ ├── book-reviews-tutorial.mdx │ │ │ ├── dinger-tutorial.mdx │ │ │ ├── shared-todo-app.mdx │ │ │ ├── todo-app-tutorial.mdx │ │ │ └── upgrade-to-web5.mdx │ │ ├── decentralized-identifiers │ │ │ ├── _category_.json │ │ │ └── how-to-create-did.mdx │ │ └── decentralized-web-nodes │ │ │ ├── _category_.json │ │ │ ├── delete-from-dwn.mdx │ │ │ ├── host-dwn-server.mdx │ │ │ ├── publishing-records.md │ │ │ ├── query-from-dwn.mdx │ │ │ ├── read-from-dwn.mdx │ │ │ ├── send-to-dwn.md │ │ │ ├── update-to-dwn.mdx │ │ │ └── write-to-dwn.mdx │ │ ├── index.mdx │ │ ├── learn │ │ ├── _category_.json │ │ ├── agents.md │ │ ├── decentralized-identifiers.md │ │ ├── decentralized-web-nodes.md │ │ ├── did_document.md │ │ ├── protocols.md │ │ ├── sync.md │ │ └── verifiable-credentials.md │ │ ├── quickstart.js │ │ └── quickstart.mdx ├── docusaurus.config.js ├── event-sidebars.js ├── events │ ├── events │ │ ├── 2023-01-13-areweweb5yet.md │ │ ├── 2023-02-22-verifiable_credentials.md │ │ └── 2023-03-02-advancing_bitcoin_conf.md │ └── index.mdx ├── learn-sidebars.js ├── learn │ ├── _index-concepts.mdx │ ├── discussions │ │ ├── architectural-concerns-blockchain.mdx │ │ ├── blockchain-crypto-tbd.mdx │ │ ├── blockchain-skepticism.mdx │ │ ├── decentralized-identity.mdx │ │ ├── history-of-blockchains.mdx │ │ ├── realities-working-blockchain.mdx │ │ └── web5-ask-me-anything.mdx │ └── index.mdx ├── netlify.toml ├── package.json ├── sidebars.js ├── src │ ├── components │ │ ├── Actors.jsx │ │ ├── ApiCard.jsx │ │ ├── ApiDetails.jsx │ │ ├── Audio.jsx │ │ ├── Biography.jsx │ │ ├── BiographyList.jsx │ │ ├── Button.jsx │ │ ├── ButtonGroup.jsx │ │ ├── Card.jsx │ │ ├── ChatGPTSearch.jsx │ │ ├── CodeSnippet.jsx │ │ ├── Community.jsx │ │ ├── CommunityCard.jsx │ │ ├── CommunitySection.jsx │ │ ├── ConferenceCommunitySection.jsx │ │ ├── ConferenceScheduleSection.jsx │ │ ├── DetailsSummary.jsx │ │ ├── Divider.jsx │ │ ├── EventCard.jsx │ │ ├── EventCardList.jsx │ │ ├── ExploreCard.jsx │ │ ├── FeedbackWidget.jsx │ │ ├── FeedbackWidgetRating.jsx │ │ ├── Gallery.jsx │ │ ├── GlitchWrapper.jsx │ │ ├── HeroCard.jsx │ │ ├── HighlightsCard.jsx │ │ ├── HighlightsCardList.jsx │ │ ├── HighlightsEmbed.jsx │ │ ├── HighlightsEmbedGrid.jsx │ │ ├── HomeList.jsx │ │ ├── HomeListItem.jsx │ │ ├── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── Illustration.jsx │ │ ├── ImportSrc.jsx │ │ ├── KnowledgeCheck.jsx │ │ ├── LearnCard.jsx │ │ ├── LearnCardList.jsx │ │ ├── PackageJson.jsx │ │ ├── Pillar.jsx │ │ ├── PillarList.jsx │ │ ├── Project.jsx │ │ ├── ProjectList.jsx │ │ ├── ScriptSrc.jsx │ │ ├── SmallSocialButton.jsx │ │ ├── SwitchIllustration.jsx │ │ ├── TBDBreadcrumbs │ │ │ ├── BreadCrumbsRoutes.json │ │ │ ├── TBDBreadcrumbs.js │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── TextLink.jsx │ │ ├── TextWithTooltip.jsx │ │ ├── Tooltip.jsx │ │ ├── TooltipWrapper.jsx │ │ ├── TwoColumnContainer.jsx │ │ ├── Version.jsx │ │ └── Video.jsx │ ├── content │ │ ├── global-meta.js │ │ ├── home │ │ │ ├── heading.mdx │ │ │ ├── home.js │ │ │ ├── our-approach.mdx │ │ │ ├── our-philosophy.mdx │ │ │ ├── our-projects.mdx │ │ │ ├── our-protocol.mdx │ │ │ └── web5-cta.js │ │ ├── learn-concepts-detail.js │ │ ├── learn-concepts-example.js │ │ ├── learn-detail.js │ │ ├── open-source │ │ │ ├── governance │ │ │ │ ├── content.mdx │ │ │ │ ├── governance.js │ │ │ │ └── heading.mdx │ │ │ ├── heading.mdx │ │ │ ├── incubation │ │ │ │ ├── content.mdx │ │ │ │ ├── heading.mdx │ │ │ │ └── incubation-program.js │ │ │ ├── open-source.js │ │ │ ├── pillars-clarity.mdx │ │ │ ├── pillars-inclusivity.mdx │ │ │ └── pillars-transparency.mdx │ │ ├── projects │ │ │ ├── project-index │ │ │ │ ├── column-1.mdx │ │ │ │ ├── column-2.mdx │ │ │ │ ├── heading.mdx │ │ │ │ ├── project-list.mdx │ │ │ │ └── projects.js │ │ │ ├── ssi-service.mdx │ │ │ ├── ssi │ │ │ │ ├── heading.mdx │ │ │ │ └── ssi.js │ │ │ ├── tbdex-protocol.mdx │ │ │ ├── tbdex │ │ │ │ ├── data-self-ownership.mdx │ │ │ │ ├── heading.mdx │ │ │ │ ├── proving-your-identity.mdx │ │ │ │ └── tbdex.js │ │ │ └── web5 │ │ │ │ ├── heading.mdx │ │ │ │ └── web5.js │ │ └── remote-md.json │ ├── contributors.json │ ├── css │ │ ├── api.css │ │ ├── custom.css │ │ ├── docs.css │ │ ├── feedback.css │ │ ├── illustration.css │ │ ├── jsvariables.js │ │ ├── layout.css │ │ ├── navbar.css │ │ ├── prose.css │ │ ├── search.css │ │ ├── sidebar.css │ │ ├── styles.js │ │ ├── text.css │ │ ├── variables.css │ │ └── web5-quickstart.css │ ├── hooks │ │ ├── index.js │ │ └── use-feedback-rating.js │ ├── pages │ │ ├── community │ │ │ ├── discord-messages-view.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── index.module.css │ │ ├── markdown-page.md │ │ ├── open-source.mdx │ │ ├── open-source │ │ │ ├── code-of-conduct.mdx │ │ │ ├── contributing.mdx │ │ │ ├── governance.mdx │ │ │ └── incubation.mdx │ │ ├── projects.mdx │ │ ├── projects │ │ │ ├── ssi-sdk │ │ │ │ └── doc │ │ │ │ │ └── ssi-sdk.png │ │ │ ├── ssi-service │ │ │ │ └── doc │ │ │ │ │ └── ssi-service.png │ │ │ ├── ssi.mdx │ │ │ ├── tbdex.mdx │ │ │ └── web5.mdx │ │ └── wad23.mdx │ ├── theme │ │ ├── DocItem │ │ │ └── Footer │ │ │ │ └── index.js │ │ ├── Footer.js │ │ ├── Layout │ │ │ └── index.js │ │ └── MDXComponents.js │ └── util │ │ ├── code-snippets-map.json │ │ ├── code-snippets.js │ │ ├── feedback-retry-wait.js │ │ ├── glitches.js │ │ ├── random-accent-color.js │ │ └── remote-content-modification.js ├── static │ ├── .nojekyll │ ├── files │ │ ├── Decentralized-Web-Platform.pdf │ │ ├── index.txt │ │ └── schema.txt │ ├── img │ │ ├── Home-breadcrumbs-icon.svg │ │ ├── TBD54566975.svg │ │ ├── abc_conf_angie.png │ │ ├── acme-bank-example.png │ │ ├── actors-index-1.svg │ │ ├── actors-index-2.svg │ │ ├── actors-index-3.svg │ │ ├── actors-web5-desktop.svg │ │ ├── actors-web5-mobile-1.svg │ │ ├── actors-web5-mobile-2.svg │ │ ├── actors-web5-mobile.svg │ │ ├── africabitcoin22.png │ │ ├── alice-bob-dwn.png │ │ ├── allthingsopen22-angie.jpg │ │ ├── arrow-blue-navbar.svg │ │ ├── arrow-blue-right.svg │ │ ├── arrow-blue.svg │ │ ├── arrow-icon.svg │ │ ├── arrow-yellow.svg │ │ ├── article-icon.svg │ │ ├── article-media-icon.svg │ │ ├── ask-chad.png │ │ ├── audio-media-icon.svg │ │ ├── bar-code.svg │ │ ├── blog-benri-ssi-host3.png │ │ ├── blog-companies-embrace-web5.png │ │ ├── blog-google-podcasts-discontinued.png │ │ ├── blog_recognition_program.png │ │ ├── blog_social_media_handles_vs_dids.png │ │ ├── blue-arrow-left.svg │ │ ├── blue-arrow-right.svg │ │ ├── bluesky-dids.png │ │ ├── brain-image-dark.svg │ │ ├── brain-image-light.svg │ │ ├── chatgpt-plugin-create-did.png │ │ ├── chatgpt-plugin-create-protocol.png │ │ ├── chatgpt-plugin-install.png │ │ ├── chatgpt-plugin-what-is-a-did.png │ │ ├── chatgpt_error.png │ │ ├── chatgpt_resolver.png │ │ ├── checkered-glitch.svg │ │ ├── clarity-icon.svg │ │ ├── close-menu-mobile.svg │ │ ├── component-icon.svg │ │ ├── converge22-daniel.png │ │ ├── copyright-image.svg │ │ ├── credential_working_group_banner.png │ │ ├── currency-of-freedom.png │ │ ├── daniel_buchner.jpg │ │ ├── dark-mode-toggle-2.svg │ │ ├── dark-mode-toggle.svg │ │ ├── data-icon.svg │ │ ├── devices-icon.svg │ │ ├── did-Authentication.png │ │ ├── did-controller-trust.png │ │ ├── did-example.png │ │ ├── did-format.png │ │ ├── did-hack-slide0.png │ │ ├── did-hack-slide1.png │ │ ├── did-hack-slide2.png │ │ ├── did-hack-slide3.png │ │ ├── did-hack-winners.jpg │ │ ├── did-parental-controls.png │ │ ├── did-resolve.png │ │ ├── did_format.png │ │ ├── dids-in-the-real-world.png │ │ ├── dif-hackathon-ace.jpg │ │ ├── dif-hackathon-banner.gif │ │ ├── dinosaur-illustration.svg │ │ ├── discord-avatar.png │ │ ├── discord-icon.svg │ │ ├── discourse-icon.svg │ │ ├── divider-dotted-dark.svg │ │ ├── divider-dotted-light.svg │ │ ├── divider-dotted-small-dark.svg │ │ ├── divider-dotted-white.svg │ │ ├── divider-mobile-menu-dark copy.svg │ │ ├── divider-mobile-menu-dark.svg │ │ ├── divider-mobile-menu.svg │ │ ├── divider-slash-dark.svg │ │ ├── divider-slash-light.svg │ │ ├── docs-app.svg │ │ ├── docs-blog-icon.svg │ │ ├── docs-chatting.svg │ │ ├── docs-cloud-server.svg │ │ ├── docs-coffee-break.svg │ │ ├── docs-computer-user.svg │ │ ├── docs-conference-speaker.svg │ │ ├── docs-id-icon.svg │ │ ├── docs-listen-music.svg │ │ ├── docs-page-icon.svg │ │ ├── docs-puzzle.svg │ │ ├── docs-task-list.svg │ │ ├── docs-todo-icon.png │ │ ├── docs-video-camera.svg │ │ ├── docs-web5-code-connect-animated.png │ │ ├── docs-web5-code-connect.png │ │ ├── docusaurus-social-card.jpg │ │ ├── docusaurus.png │ │ ├── dot-icon.svg │ │ ├── download-icon.svg │ │ ├── dwas-vs-pwas.png │ │ ├── email-icon.svg │ │ ├── evolving-the-web.png │ │ ├── external-link-blue-icon.svg │ │ ├── external-link-icon.svg │ │ ├── external-link.svg │ │ ├── favicon.ico │ │ ├── features-graphic.png │ │ ├── footer-bottom-dark-bw.svg │ │ ├── footer-bottom-dark.svg │ │ ├── footer-bottom-light.svg │ │ ├── footer-top-marquee.svg │ │ ├── github-button-icon.svg │ │ ├── github-icon.svg │ │ ├── hacktoberfest_blog.png │ │ ├── happy-hour.png │ │ ├── heart.svg │ │ ├── heart.zip │ │ ├── homenode-porotcol-messaging.jpg │ │ ├── hotel-travel-plans.png │ │ ├── identity-icon.svg │ │ ├── identity-wallets.png │ │ ├── inclusivity-icon.svg │ │ ├── incubator-vcs.png │ │ ├── innovator-projects │ │ │ ├── home-node.png │ │ │ ├── netonomy.png │ │ │ ├── qnav-links.png │ │ │ └── time-blind.png │ │ ├── instagram-icon.svg │ │ ├── issue_student_id_manually.png │ │ ├── issue_vc_for_student_id.png │ │ ├── jwt-encoded.png │ │ ├── learn │ │ │ ├── architectural_concerns_with_blockchain.png │ │ │ ├── blockchain_crypto_tbd.png │ │ │ ├── blockchain_skepticism.png │ │ │ ├── decentralized_identity.png │ │ │ ├── headshots │ │ │ │ ├── angie_jones.png │ │ │ │ ├── brooklyn_zelenka.jpg │ │ │ │ ├── daniel_buchner.jpg │ │ │ │ ├── grady_booch.jpg │ │ │ │ ├── henry_tsai.jpg │ │ │ │ ├── kelsey_hightower.jpg │ │ │ │ ├── kim_hamilton_duffy.jpg │ │ │ │ ├── mike_brock.jpeg │ │ │ │ ├── moe_jangda.jpg │ │ │ │ ├── nader_dabit.jpg │ │ │ │ └── rhian_lewis.jpg │ │ │ ├── history_of_blockchains.png │ │ │ ├── nader_dabit_banner.png │ │ │ └── web5_ama_banner.png │ │ ├── linkedin-icon.svg │ │ ├── lock-key.png │ │ ├── logo.svg │ │ ├── mainnet22-mike.jpg │ │ ├── mainnet22.png │ │ ├── marquee-d-1440.svg │ │ ├── maze.svg │ │ ├── menu-mobile-dark.png │ │ ├── menu-mobile-light.png │ │ ├── menu-mobile.svg │ │ ├── message-icon-purple.png │ │ ├── message-icon.png │ │ ├── message-icon.svg │ │ ├── mobile-menu-glitch-bottom-dark.svg │ │ ├── mobile-menu-glitch-bottom.svg │ │ ├── music-to-my-ears.png │ │ ├── new-web5-desktop.svg │ │ ├── new-web5-mobile.svg │ │ ├── new-web5-tablet.svg │ │ ├── npr-article-on-x-handle.png │ │ ├── open-sandbox-in-new-tab.gif │ │ ├── person-example.png │ │ ├── pillars-of-web5.png │ │ ├── placeholder-media-image.png │ │ ├── practicality-did-blog-banner.png │ │ ├── protocols-illustration.png │ │ ├── pwa-dwa.png │ │ ├── rectangle.svg │ │ ├── refactr-2022-angie.png │ │ ├── right-bracket-light.svg │ │ ├── search-icon.png │ │ ├── selected-arrow-blue.svg │ │ ├── selected-arrow-mobile.svg │ │ ├── selected-arrow-yellow.svg │ │ ├── selected-arrow.svg │ │ ├── separator-mobile-menu.svg │ │ ├── shopping-cart.svg │ │ ├── small-glitch-cluster-vert.svg │ │ ├── small-glitch-cluster.svg │ │ ├── smallTwitterDark.png │ │ ├── smallTwitterLight.png │ │ ├── sphere-index.svg │ │ ├── ssi-console.png │ │ ├── ssi-service-playground.png │ │ ├── ssi-trust-model.png │ │ ├── ssi_console.png │ │ ├── ssi_tbd_web5.png │ │ ├── static-vertical-cyan.svg │ │ ├── swag-giveaway.png │ │ ├── tag-front.svg │ │ ├── tbd-fav-icon-main.png │ │ ├── tbd-logo-light.png │ │ ├── tbd-logo-square.svg │ │ ├── tbd-logo.svg │ │ ├── tbd-long-logo.svg │ │ ├── tbd-yellowcard-asset-full.png │ │ ├── tbd_circle_partnership.png │ │ ├── tbd_og_meta_image.png │ │ ├── tbd_spruce_did_interoperability.png │ │ ├── test-image.png │ │ ├── tiktok-icon.svg │ │ ├── tiktok_blog_banner.png │ │ ├── todo-app-tutorial.png │ │ ├── tooltip-border.png │ │ ├── tooltip-info-icon.svg │ │ ├── tooltip-x-icon.svg │ │ ├── transparency-icon.svg │ │ ├── tutorial │ │ │ ├── docsVersionDropdown.png │ │ │ └── localeDropdown.png │ │ ├── tutorial_issue_vc.png │ │ ├── tutorial_todo_app.png │ │ ├── tweet-from-music-handle.png │ │ ├── twitch-icon.svg │ │ ├── twitter-icon.svg │ │ ├── twitterDark.png │ │ ├── twitterLight.png │ │ ├── twitter_space_are_we_web5_yet.png │ │ ├── twitter_space_verifiable_credentials.png │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ ├── undraw_docusaurus_tree.svg │ │ ├── vc-three-party-model.png │ │ ├── vc_ecosystem.svg │ │ ├── vertical-divider.svg │ │ ├── video-media-icon.svg │ │ ├── vimeo-icon.svg │ │ ├── wallet-icon.svg │ │ ├── wasm-chatgpt-ssi.png │ │ ├── web5-chatgpt-plugin-blog-banner.png │ │ ├── web5-desktop.svg │ │ ├── web5-graphic.png │ │ ├── web5-journey-to-adoption.png │ │ ├── web5-mobile.svg │ │ ├── web5-roadmap.jpeg │ │ ├── web5-tablet.svg │ │ ├── what_are_vcs_banner.png │ │ ├── what_is_web5.png │ │ ├── youtube-icon.svg │ │ └── zcluster.svg │ ├── scripts │ │ ├── custom.js │ │ └── dd-analytics.js │ └── tutorial │ │ ├── docsVersionDropdown.png │ │ └── localeDropdown.png └── tailwind.config.js └── vite.config.ts /.codesandbox/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:18 2 | RUN npm i -g pnpm -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.local.example: -------------------------------------------------------------------------------- 1 | DISCORD_BOT_TOKEN=your_discord_token_goes_here -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feedback-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/.github/ISSUE_TEMPLATE/feedback-report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/usecase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/.github/ISSUE_TEMPLATE/usecase.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/web5-upgrade.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/.github/ISSUE_TEMPLATE/web5-upgrade.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/docker-image-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/.github/workflows/docker-image-publish.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/.npmrc -------------------------------------------------------------------------------- /Apps.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/Apps.Dockerfile -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/Dockerfile -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/README.md -------------------------------------------------------------------------------- /apps/feedback-server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/apps/feedback-server/.env.example -------------------------------------------------------------------------------- /apps/feedback-server/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .env.local 3 | coverage 4 | -------------------------------------------------------------------------------- /apps/feedback-server/.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /apps/feedback-server/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/apps/feedback-server/.prettierrc.json -------------------------------------------------------------------------------- /apps/feedback-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/apps/feedback-server/README.md -------------------------------------------------------------------------------- /apps/feedback-server/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/apps/feedback-server/config.js -------------------------------------------------------------------------------- /apps/feedback-server/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/apps/feedback-server/db.js -------------------------------------------------------------------------------- /apps/feedback-server/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/apps/feedback-server/logger.js -------------------------------------------------------------------------------- /apps/feedback-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/apps/feedback-server/package.json -------------------------------------------------------------------------------- /apps/feedback-server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/apps/feedback-server/server.js -------------------------------------------------------------------------------- /apps/feedback-server/tests/db.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/apps/feedback-server/tests/db.test.js -------------------------------------------------------------------------------- /apps/feedback-server/tests/server.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/apps/feedback-server/tests/server.test.js -------------------------------------------------------------------------------- /apps/feedback-server/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/apps/feedback-server/vitest.config.ts -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /examples/tutorials/book-reviews/.codesandbox/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:18 -------------------------------------------------------------------------------- /examples/tutorials/book-reviews/.codesandbox/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/book-reviews/.codesandbox/tasks.json -------------------------------------------------------------------------------- /examples/tutorials/book-reviews/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | DATA/ 3 | -------------------------------------------------------------------------------- /examples/tutorials/book-reviews/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/book-reviews/README.md -------------------------------------------------------------------------------- /examples/tutorials/book-reviews/book-reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/book-reviews/book-reviews.js -------------------------------------------------------------------------------- /examples/tutorials/book-reviews/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/book-reviews/package.json -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/.codesandbox/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:18 2 | RUN npm i -g pnpm -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/.codesandbox/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-completed/.codesandbox/tasks.json -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-completed/.gitignore -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-completed/README.md -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-completed/jsconfig.json -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-completed/next.config.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-completed/package.json -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-completed/public/favicon.ico -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/src/components/Chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-completed/src/components/Chat.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/src/components/NoChatSelected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-completed/src/components/NoChatSelected.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/src/components/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-completed/src/components/Sidebar.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/src/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-completed/src/pages/_app.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/src/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-completed/src/pages/_document.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/src/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-completed/src/pages/api/hello.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-completed/src/pages/index.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-completed/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-completed/src/styles/globals.css -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/.codesandbox/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:18 2 | RUN npm i -g pnpm -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/.codesandbox/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-starter/.codesandbox/tasks.json -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-starter/.gitignore -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-starter/README.md -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-starter/jsconfig.json -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-starter/next.config.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-starter/package.json -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-starter/public/favicon.ico -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/src/components/Chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-starter/src/components/Chat.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/src/components/NoChatSelected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-starter/src/components/NoChatSelected.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/src/components/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-starter/src/components/Sidebar.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/src/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-starter/src/pages/_app.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/src/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-starter/src/pages/_document.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/src/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-starter/src/pages/api/hello.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-starter/src/pages/index.js -------------------------------------------------------------------------------- /examples/tutorials/dinger-starter/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/dinger-starter/src/styles/globals.css -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-completed/.codesandbox/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:18 -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-completed/.codesandbox/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-completed/.codesandbox/tasks.json -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-completed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-completed/README.md -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-completed/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-completed/app.vue -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-completed/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-completed/assets/css/main.css -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-completed/assets/shared-todo-protocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-completed/assets/shared-todo-protocol.json -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-completed/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-completed/nuxt.config.ts -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-completed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-completed/package.json -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-completed/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-completed/pages/index.vue -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-completed/pages/todos/[id].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-completed/pages/todos/[id].vue -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-completed/plugins/web5.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-completed/plugins/web5.client.js -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-completed/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-completed/public/favicon.ico -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-completed/server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-completed/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-completed/tailwind.config.js -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-completed/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-completed/tsconfig.json -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-starter/.codesandbox/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-starter/.codesandbox/tasks.json -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-starter/.gitignore -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-starter/.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | strict-peer-dependencies=false 3 | -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-starter/README.md -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-starter/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-starter/app.vue -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-starter/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-starter/assets/css/main.css -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-starter/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-starter/nuxt.config.ts -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-starter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-starter/package.json -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-starter/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-starter/pages/index.vue -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-starter/pages/todos/[id].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-starter/pages/todos/[id].vue -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-starter/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-starter/public/favicon.ico -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-starter/server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-starter/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-starter/tailwind.config.js -------------------------------------------------------------------------------- /examples/tutorials/shared-todo-starter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/shared-todo-starter/tsconfig.json -------------------------------------------------------------------------------- /examples/tutorials/todo-completed/.codesandbox/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:18 -------------------------------------------------------------------------------- /examples/tutorials/todo-completed/.codesandbox/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-completed/.codesandbox/tasks.json -------------------------------------------------------------------------------- /examples/tutorials/todo-completed/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-completed/.eslintrc.cjs -------------------------------------------------------------------------------- /examples/tutorials/todo-completed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-completed/.gitignore -------------------------------------------------------------------------------- /examples/tutorials/todo-completed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-completed/README.md -------------------------------------------------------------------------------- /examples/tutorials/todo-completed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-completed/index.html -------------------------------------------------------------------------------- /examples/tutorials/todo-completed/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-completed/netlify.toml -------------------------------------------------------------------------------- /examples/tutorials/todo-completed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-completed/package.json -------------------------------------------------------------------------------- /examples/tutorials/todo-completed/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-completed/postcss.config.cjs -------------------------------------------------------------------------------- /examples/tutorials/todo-completed/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-completed/src/App.vue -------------------------------------------------------------------------------- /examples/tutorials/todo-completed/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-completed/src/main.js -------------------------------------------------------------------------------- /examples/tutorials/todo-completed/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-completed/src/style.css -------------------------------------------------------------------------------- /examples/tutorials/todo-completed/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-completed/tailwind.config.cjs -------------------------------------------------------------------------------- /examples/tutorials/todo-completed/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-completed/vite.config.js -------------------------------------------------------------------------------- /examples/tutorials/todo-starter/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-starter/.eslintrc.cjs -------------------------------------------------------------------------------- /examples/tutorials/todo-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-starter/.gitignore -------------------------------------------------------------------------------- /examples/tutorials/todo-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-starter/README.md -------------------------------------------------------------------------------- /examples/tutorials/todo-starter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-starter/index.html -------------------------------------------------------------------------------- /examples/tutorials/todo-starter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-starter/package.json -------------------------------------------------------------------------------- /examples/tutorials/todo-starter/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-starter/postcss.config.cjs -------------------------------------------------------------------------------- /examples/tutorials/todo-starter/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-starter/src/App.vue -------------------------------------------------------------------------------- /examples/tutorials/todo-starter/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-starter/src/main.js -------------------------------------------------------------------------------- /examples/tutorials/todo-starter/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-starter/src/style.css -------------------------------------------------------------------------------- /examples/tutorials/todo-starter/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-starter/tailwind.config.cjs -------------------------------------------------------------------------------- /examples/tutorials/todo-starter/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/tutorials/todo-starter/vite.config.js -------------------------------------------------------------------------------- /examples/web5-quickstart-widgets/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/web5-quickstart-widgets/CODEOWNERS -------------------------------------------------------------------------------- /examples/web5-quickstart-widgets/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/web5-quickstart-widgets/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /examples/web5-quickstart-widgets/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/web5-quickstart-widgets/CONTRIBUTING.md -------------------------------------------------------------------------------- /examples/web5-quickstart-widgets/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/web5-quickstart-widgets/GOVERNANCE.md -------------------------------------------------------------------------------- /examples/web5-quickstart-widgets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/web5-quickstart-widgets/LICENSE -------------------------------------------------------------------------------- /examples/web5-quickstart-widgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/web5-quickstart-widgets/README.md -------------------------------------------------------------------------------- /examples/web5-quickstart-widgets/__tests__/widget.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/web5-quickstart-widgets/__tests__/widget.test.js -------------------------------------------------------------------------------- /examples/web5-quickstart-widgets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/web5-quickstart-widgets/index.html -------------------------------------------------------------------------------- /examples/web5-quickstart-widgets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/web5-quickstart-widgets/index.js -------------------------------------------------------------------------------- /examples/web5-quickstart-widgets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/web5-quickstart-widgets/package.json -------------------------------------------------------------------------------- /examples/web5-quickstart-widgets/public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/web5-quickstart-widgets/public/index.js -------------------------------------------------------------------------------- /examples/web5-quickstart-widgets/public/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/web5-quickstart-widgets/public/index.js.map -------------------------------------------------------------------------------- /examples/web5-quickstart-widgets/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/web5-quickstart-widgets/rollup.config.mjs -------------------------------------------------------------------------------- /examples/web5-quickstart-widgets/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/examples/web5-quickstart-widgets/server.js -------------------------------------------------------------------------------- /extract-snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/extract-snippets.js -------------------------------------------------------------------------------- /generate-contributors-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/generate-contributors-json.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/netlify.toml -------------------------------------------------------------------------------- /netlify/functions/discord-messages.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/netlify/functions/discord-messages.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /propagateWeb5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/propagateWeb5.js -------------------------------------------------------------------------------- /site/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/.editorconfig -------------------------------------------------------------------------------- /site/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/.env.example -------------------------------------------------------------------------------- /site/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/.eslintrc.js -------------------------------------------------------------------------------- /site/.nvmrc: -------------------------------------------------------------------------------- 1 | 18.15.0 2 | -------------------------------------------------------------------------------- /site/.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /site/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/.prettierrc.json -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/README.md -------------------------------------------------------------------------------- /site/__tests__/api/web5-js/did.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/__tests__/api/web5-js/did.test.js -------------------------------------------------------------------------------- /site/__tests__/api/web5-js/dwn/protocol.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/__tests__/api/web5-js/dwn/protocol.test.js -------------------------------------------------------------------------------- /site/__tests__/api/web5-js/dwn/protocols.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/__tests__/api/web5-js/dwn/protocols.test.js -------------------------------------------------------------------------------- /site/__tests__/api/web5-js/dwn/record.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/__tests__/api/web5-js/dwn/record.test.js -------------------------------------------------------------------------------- /site/__tests__/api/web5-js/dwn/records.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/__tests__/api/web5-js/dwn/records.test.js -------------------------------------------------------------------------------- /site/__tests__/api/web5-js/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/__tests__/api/web5-js/index.test.js -------------------------------------------------------------------------------- /site/__tests__/blog/2023-05-23-dwas-vs-pwas.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/__tests__/blog/2023-05-23-dwas-vs-pwas.test.js -------------------------------------------------------------------------------- /site/__tests__/quickstart.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/__tests__/quickstart.test.js -------------------------------------------------------------------------------- /site/__tests__/web5/build/apps/upgrade-to-web5.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/__tests__/web5/build/apps/upgrade-to-web5.test.js -------------------------------------------------------------------------------- /site/__tests__/web5/build/decentralized-identifiers/how-to-create-did.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/__tests__/web5/build/decentralized-identifiers/how-to-create-did.test.js -------------------------------------------------------------------------------- /site/__tests__/web5/build/decentralized-web-nodes/query-from-dwn.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/__tests__/web5/build/decentralized-web-nodes/query-from-dwn.test.js -------------------------------------------------------------------------------- /site/__tests__/web5/build/decentralized-web-nodes/send.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/__tests__/web5/build/decentralized-web-nodes/send.test.js -------------------------------------------------------------------------------- /site/api-sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/api-sidebars.js -------------------------------------------------------------------------------- /site/api/web5-js/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/api/web5-js/_category_.json -------------------------------------------------------------------------------- /site/api/web5-js/did.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/api/web5-js/did.mdx -------------------------------------------------------------------------------- /site/api/web5-js/dwn/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsible": false 3 | } 4 | -------------------------------------------------------------------------------- /site/api/web5-js/dwn/dwn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/api/web5-js/dwn/dwn.mdx -------------------------------------------------------------------------------- /site/api/web5-js/dwn/protocol.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/api/web5-js/dwn/protocol.mdx -------------------------------------------------------------------------------- /site/api/web5-js/dwn/protocols.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/api/web5-js/dwn/protocols.mdx -------------------------------------------------------------------------------- /site/api/web5-js/dwn/record.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/api/web5-js/dwn/record.mdx -------------------------------------------------------------------------------- /site/api/web5-js/dwn/records.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/api/web5-js/dwn/records.mdx -------------------------------------------------------------------------------- /site/api/web5-js/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/api/web5-js/index.mdx -------------------------------------------------------------------------------- /site/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/babel.config.js -------------------------------------------------------------------------------- /site/blog/2022-07-01-what-is-web5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2022-07-01-what-is-web5.md -------------------------------------------------------------------------------- /site/blog/2022-07-26-web5-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2022-07-26-web5-roadmap.md -------------------------------------------------------------------------------- /site/blog/2022-08-15-our-interop-work-in-dif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2022-08-15-our-interop-work-in-dif.md -------------------------------------------------------------------------------- /site/blog/2022-08-17-what-are-verifiable-credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2022-08-17-what-are-verifiable-credentials.md -------------------------------------------------------------------------------- /site/blog/2022-08-26-ssi-tbd-web5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2022-08-26-ssi-tbd-web5.md -------------------------------------------------------------------------------- /site/blog/2022-10-13-announcing-the-incubation-program.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2022-10-13-announcing-the-incubation-program.md -------------------------------------------------------------------------------- /site/blog/2022-10-18-web5-verifiable-credential-selector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2022-10-18-web5-verifiable-credential-selector.md -------------------------------------------------------------------------------- /site/blog/2022-12-20-currency-of-freedom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2022-12-20-currency-of-freedom.md -------------------------------------------------------------------------------- /site/blog/2023-01-10-ssi-chat-gpt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-01-10-ssi-chat-gpt.md -------------------------------------------------------------------------------- /site/blog/2023-04-03-tiktok-ban.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-04-03-tiktok-ban.md -------------------------------------------------------------------------------- /site/blog/2023-04-18-benri-hosts-ssi-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-04-18-benri-hosts-ssi-service.md -------------------------------------------------------------------------------- /site/blog/2023-04-19-practicality-of-dids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-04-19-practicality-of-dids.md -------------------------------------------------------------------------------- /site/blog/2023-04-25-ssi-service-playground.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-04-25-ssi-service-playground.md -------------------------------------------------------------------------------- /site/blog/2023-05-15-dids-in-the-real-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-05-15-dids-in-the-real-world.md -------------------------------------------------------------------------------- /site/blog/2023-05-23-dwas-vs-pwas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-05-23-dwas-vs-pwas.md -------------------------------------------------------------------------------- /site/blog/2023-06-01-ssi-console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-06-01-ssi-console.md -------------------------------------------------------------------------------- /site/blog/2023-06-07-did-parental-controls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-06-07-did-parental-controls.md -------------------------------------------------------------------------------- /site/blog/2023-06-23-did-hack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-06-23-did-hack.md -------------------------------------------------------------------------------- /site/blog/2023-06-27-web5-chatgpt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-06-27-web5-chatgpt.md -------------------------------------------------------------------------------- /site/blog/2023-07-13-authentication-with-web5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-07-13-authentication-with-web5.md -------------------------------------------------------------------------------- /site/blog/2023-07-26-homenode-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-07-26-homenode-manager.md -------------------------------------------------------------------------------- /site/blog/2023-08-11-who-really-owns-your-social-media-handles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-08-11-who-really-owns-your-social-media-handles.md -------------------------------------------------------------------------------- /site/blog/2023-09-22-preptember-gearing-up-for-hacktoberfest23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-09-22-preptember-gearing-up-for-hacktoberfest23.md -------------------------------------------------------------------------------- /site/blog/2023-09-25-why-would-companies-embrace-web5 copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-09-25-why-would-companies-embrace-web5 copy.md -------------------------------------------------------------------------------- /site/blog/2023-09-29-new-recognition-program.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-09-29-new-recognition-program.md -------------------------------------------------------------------------------- /site/blog/2023-10-11-dif-hackathon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/2023-10-11-dif-hackathon.md -------------------------------------------------------------------------------- /site/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/blog/authors.yml -------------------------------------------------------------------------------- /site/code-snippets/api/web5-js/did.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/code-snippets/api/web5-js/did.js -------------------------------------------------------------------------------- /site/code-snippets/api/web5-js/dwn/protocol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/code-snippets/api/web5-js/dwn/protocol.js -------------------------------------------------------------------------------- /site/code-snippets/api/web5-js/dwn/protocols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/code-snippets/api/web5-js/dwn/protocols.js -------------------------------------------------------------------------------- /site/code-snippets/api/web5-js/dwn/record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/code-snippets/api/web5-js/dwn/record.js -------------------------------------------------------------------------------- /site/code-snippets/api/web5-js/dwn/records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/code-snippets/api/web5-js/dwn/records.js -------------------------------------------------------------------------------- /site/code-snippets/api/web5-js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/code-snippets/api/web5-js/index.js -------------------------------------------------------------------------------- /site/code-snippets/api/web5-js/records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/code-snippets/api/web5-js/records.js -------------------------------------------------------------------------------- /site/code-snippets/blog/2023-05-23-dwas-vs-pwas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/code-snippets/blog/2023-05-23-dwas-vs-pwas.js -------------------------------------------------------------------------------- /site/code-snippets/web5/build/apps/upgrade-to-web5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/code-snippets/web5/build/apps/upgrade-to-web5.js -------------------------------------------------------------------------------- /site/code-snippets/web5/build/decentralized-identifiers/how-to-create-did.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/code-snippets/web5/build/decentralized-identifiers/how-to-create-did.js -------------------------------------------------------------------------------- /site/code-snippets/web5/build/decentralized-web-nodes/query-from-dwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/code-snippets/web5/build/decentralized-web-nodes/query-from-dwn.js -------------------------------------------------------------------------------- /site/code-snippets/web5/build/decentralized-web-nodes/send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/code-snippets/web5/build/decentralized-web-nodes/send.js -------------------------------------------------------------------------------- /site/code-snippets/web5/quickstart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/code-snippets/web5/quickstart.js -------------------------------------------------------------------------------- /site/docs/api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/api.mdx -------------------------------------------------------------------------------- /site/docs/docs-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/docs-index.js -------------------------------------------------------------------------------- /site/docs/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/glossary.md -------------------------------------------------------------------------------- /site/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/index.mdx -------------------------------------------------------------------------------- /site/docs/ssi/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/ssi/_category_.json -------------------------------------------------------------------------------- /site/docs/ssi/api_guide.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/ssi/api_guide.mdx -------------------------------------------------------------------------------- /site/docs/ssi/create-credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/ssi/create-credentials.md -------------------------------------------------------------------------------- /site/docs/ssi/create-did.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/ssi/create-did.md -------------------------------------------------------------------------------- /site/docs/ssi/create-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/ssi/create-schema.md -------------------------------------------------------------------------------- /site/docs/ssi/credential-issuance-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/ssi/credential-issuance-service.md -------------------------------------------------------------------------------- /site/docs/ssi/credential-manifests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/ssi/credential-manifests.md -------------------------------------------------------------------------------- /site/docs/ssi/credential-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/ssi/credential-status.md -------------------------------------------------------------------------------- /site/docs/ssi/presentation-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/ssi/presentation-requests.md -------------------------------------------------------------------------------- /site/docs/ssi/revoke-credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/ssi/revoke-credentials.md -------------------------------------------------------------------------------- /site/docs/ssi/run-ssi-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/ssi/run-ssi-service.md -------------------------------------------------------------------------------- /site/docs/ssi/ssi-console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/ssi/ssi-console.md -------------------------------------------------------------------------------- /site/docs/ssi/verifiable-presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/ssi/verifiable-presentations.md -------------------------------------------------------------------------------- /site/docs/ssi/verify-credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/ssi/verify-credentials.md -------------------------------------------------------------------------------- /site/docs/ssi/well-known-did.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/ssi/well-known-did.md -------------------------------------------------------------------------------- /site/docs/tbdex/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/_category_.json -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/_category_.json -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/http-client/classes/TbdexHttpClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/http-client/classes/TbdexHttpClient.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/http-client/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/http-client/index.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/http-server/classes/TbdexHttpServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/http-server/classes/TbdexHttpServer.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/http-server/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/http-server/index.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/http-server/interfaces/ExchangesApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/http-server/interfaces/ExchangesApi.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/http-server/interfaces/OfferingsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/http-server/interfaces/OfferingsApi.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Close.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Close.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Crypto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Crypto.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/protocol/classes/DevTools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/protocol/classes/DevTools.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Message.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Offering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Offering.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Order.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/protocol/classes/OrderStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/protocol/classes/OrderStatus.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Quote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Quote.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Resource.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Rfq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/protocol/classes/Rfq.md -------------------------------------------------------------------------------- /site/docs/tbdex/api-reference/tbdex-js/protocol/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/tbdex/api-reference/tbdex-js/protocol/index.md -------------------------------------------------------------------------------- /site/docs/web5/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/_category_.json -------------------------------------------------------------------------------- /site/docs/web5/_quickstart-01-intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/_quickstart-01-intro.mdx -------------------------------------------------------------------------------- /site/docs/web5/_quickstart-02-prereqs-and-installation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/_quickstart-02-prereqs-and-installation.mdx -------------------------------------------------------------------------------- /site/docs/web5/_quickstart-03-create-did.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/_quickstart-03-create-did.mdx -------------------------------------------------------------------------------- /site/docs/web5/_quickstart-05-write-record.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/_quickstart-05-write-record.mdx -------------------------------------------------------------------------------- /site/docs/web5/_quickstart-06-read-record.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/_quickstart-06-read-record.mdx -------------------------------------------------------------------------------- /site/docs/web5/_quickstart-07-update-record.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/_quickstart-07-update-record.mdx -------------------------------------------------------------------------------- /site/docs/web5/_quickstart-08-delete-record.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/_quickstart-08-delete-record.mdx -------------------------------------------------------------------------------- /site/docs/web5/_quickstart-10-next-steps.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/_quickstart-10-next-steps.mdx -------------------------------------------------------------------------------- /site/docs/web5/api_guide.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/api_guide.mdx -------------------------------------------------------------------------------- /site/docs/web5/build/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/_category_.json -------------------------------------------------------------------------------- /site/docs/web5/build/apps/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/apps/_category_.json -------------------------------------------------------------------------------- /site/docs/web5/build/apps/book-reviews-tutorial.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/apps/book-reviews-tutorial.mdx -------------------------------------------------------------------------------- /site/docs/web5/build/apps/dinger-tutorial.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/apps/dinger-tutorial.mdx -------------------------------------------------------------------------------- /site/docs/web5/build/apps/shared-todo-app.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/apps/shared-todo-app.mdx -------------------------------------------------------------------------------- /site/docs/web5/build/apps/todo-app-tutorial.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/apps/todo-app-tutorial.mdx -------------------------------------------------------------------------------- /site/docs/web5/build/apps/upgrade-to-web5.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/apps/upgrade-to-web5.mdx -------------------------------------------------------------------------------- /site/docs/web5/build/decentralized-identifiers/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/decentralized-identifiers/_category_.json -------------------------------------------------------------------------------- /site/docs/web5/build/decentralized-identifiers/how-to-create-did.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/decentralized-identifiers/how-to-create-did.mdx -------------------------------------------------------------------------------- /site/docs/web5/build/decentralized-web-nodes/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/decentralized-web-nodes/_category_.json -------------------------------------------------------------------------------- /site/docs/web5/build/decentralized-web-nodes/delete-from-dwn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/decentralized-web-nodes/delete-from-dwn.mdx -------------------------------------------------------------------------------- /site/docs/web5/build/decentralized-web-nodes/host-dwn-server.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/decentralized-web-nodes/host-dwn-server.mdx -------------------------------------------------------------------------------- /site/docs/web5/build/decentralized-web-nodes/publishing-records.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/decentralized-web-nodes/publishing-records.md -------------------------------------------------------------------------------- /site/docs/web5/build/decentralized-web-nodes/query-from-dwn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/decentralized-web-nodes/query-from-dwn.mdx -------------------------------------------------------------------------------- /site/docs/web5/build/decentralized-web-nodes/read-from-dwn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/decentralized-web-nodes/read-from-dwn.mdx -------------------------------------------------------------------------------- /site/docs/web5/build/decentralized-web-nodes/send-to-dwn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/decentralized-web-nodes/send-to-dwn.md -------------------------------------------------------------------------------- /site/docs/web5/build/decentralized-web-nodes/update-to-dwn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/decentralized-web-nodes/update-to-dwn.mdx -------------------------------------------------------------------------------- /site/docs/web5/build/decentralized-web-nodes/write-to-dwn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/build/decentralized-web-nodes/write-to-dwn.mdx -------------------------------------------------------------------------------- /site/docs/web5/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/index.mdx -------------------------------------------------------------------------------- /site/docs/web5/learn/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/learn/_category_.json -------------------------------------------------------------------------------- /site/docs/web5/learn/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/learn/agents.md -------------------------------------------------------------------------------- /site/docs/web5/learn/decentralized-identifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/learn/decentralized-identifiers.md -------------------------------------------------------------------------------- /site/docs/web5/learn/decentralized-web-nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/learn/decentralized-web-nodes.md -------------------------------------------------------------------------------- /site/docs/web5/learn/did_document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/learn/did_document.md -------------------------------------------------------------------------------- /site/docs/web5/learn/protocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/learn/protocols.md -------------------------------------------------------------------------------- /site/docs/web5/learn/sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/learn/sync.md -------------------------------------------------------------------------------- /site/docs/web5/learn/verifiable-credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/learn/verifiable-credentials.md -------------------------------------------------------------------------------- /site/docs/web5/quickstart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/quickstart.js -------------------------------------------------------------------------------- /site/docs/web5/quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docs/web5/quickstart.mdx -------------------------------------------------------------------------------- /site/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/docusaurus.config.js -------------------------------------------------------------------------------- /site/event-sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/event-sidebars.js -------------------------------------------------------------------------------- /site/events/events/2023-01-13-areweweb5yet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/events/events/2023-01-13-areweweb5yet.md -------------------------------------------------------------------------------- /site/events/events/2023-02-22-verifiable_credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/events/events/2023-02-22-verifiable_credentials.md -------------------------------------------------------------------------------- /site/events/events/2023-03-02-advancing_bitcoin_conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/events/events/2023-03-02-advancing_bitcoin_conf.md -------------------------------------------------------------------------------- /site/events/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/events/index.mdx -------------------------------------------------------------------------------- /site/learn-sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/learn-sidebars.js -------------------------------------------------------------------------------- /site/learn/_index-concepts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/learn/_index-concepts.mdx -------------------------------------------------------------------------------- /site/learn/discussions/architectural-concerns-blockchain.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/learn/discussions/architectural-concerns-blockchain.mdx -------------------------------------------------------------------------------- /site/learn/discussions/blockchain-crypto-tbd.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/learn/discussions/blockchain-crypto-tbd.mdx -------------------------------------------------------------------------------- /site/learn/discussions/blockchain-skepticism.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/learn/discussions/blockchain-skepticism.mdx -------------------------------------------------------------------------------- /site/learn/discussions/decentralized-identity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/learn/discussions/decentralized-identity.mdx -------------------------------------------------------------------------------- /site/learn/discussions/history-of-blockchains.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/learn/discussions/history-of-blockchains.mdx -------------------------------------------------------------------------------- /site/learn/discussions/realities-working-blockchain.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/learn/discussions/realities-working-blockchain.mdx -------------------------------------------------------------------------------- /site/learn/discussions/web5-ask-me-anything.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/learn/discussions/web5-ask-me-anything.mdx -------------------------------------------------------------------------------- /site/learn/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/learn/index.mdx -------------------------------------------------------------------------------- /site/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/netlify.toml -------------------------------------------------------------------------------- /site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/package.json -------------------------------------------------------------------------------- /site/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/sidebars.js -------------------------------------------------------------------------------- /site/src/components/Actors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/Actors.jsx -------------------------------------------------------------------------------- /site/src/components/ApiCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/ApiCard.jsx -------------------------------------------------------------------------------- /site/src/components/ApiDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/ApiDetails.jsx -------------------------------------------------------------------------------- /site/src/components/Audio.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/Audio.jsx -------------------------------------------------------------------------------- /site/src/components/Biography.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/Biography.jsx -------------------------------------------------------------------------------- /site/src/components/BiographyList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/BiographyList.jsx -------------------------------------------------------------------------------- /site/src/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/Button.jsx -------------------------------------------------------------------------------- /site/src/components/ButtonGroup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/ButtonGroup.jsx -------------------------------------------------------------------------------- /site/src/components/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/Card.jsx -------------------------------------------------------------------------------- /site/src/components/ChatGPTSearch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/ChatGPTSearch.jsx -------------------------------------------------------------------------------- /site/src/components/CodeSnippet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/CodeSnippet.jsx -------------------------------------------------------------------------------- /site/src/components/Community.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/Community.jsx -------------------------------------------------------------------------------- /site/src/components/CommunityCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/CommunityCard.jsx -------------------------------------------------------------------------------- /site/src/components/CommunitySection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/CommunitySection.jsx -------------------------------------------------------------------------------- /site/src/components/ConferenceCommunitySection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/ConferenceCommunitySection.jsx -------------------------------------------------------------------------------- /site/src/components/ConferenceScheduleSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/ConferenceScheduleSection.jsx -------------------------------------------------------------------------------- /site/src/components/DetailsSummary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/DetailsSummary.jsx -------------------------------------------------------------------------------- /site/src/components/Divider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/Divider.jsx -------------------------------------------------------------------------------- /site/src/components/EventCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/EventCard.jsx -------------------------------------------------------------------------------- /site/src/components/EventCardList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/EventCardList.jsx -------------------------------------------------------------------------------- /site/src/components/ExploreCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/ExploreCard.jsx -------------------------------------------------------------------------------- /site/src/components/FeedbackWidget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/FeedbackWidget.jsx -------------------------------------------------------------------------------- /site/src/components/FeedbackWidgetRating.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/FeedbackWidgetRating.jsx -------------------------------------------------------------------------------- /site/src/components/Gallery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/Gallery.jsx -------------------------------------------------------------------------------- /site/src/components/GlitchWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/GlitchWrapper.jsx -------------------------------------------------------------------------------- /site/src/components/HeroCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/HeroCard.jsx -------------------------------------------------------------------------------- /site/src/components/HighlightsCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/HighlightsCard.jsx -------------------------------------------------------------------------------- /site/src/components/HighlightsCardList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/HighlightsCardList.jsx -------------------------------------------------------------------------------- /site/src/components/HighlightsEmbed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/HighlightsEmbed.jsx -------------------------------------------------------------------------------- /site/src/components/HighlightsEmbedGrid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/HighlightsEmbedGrid.jsx -------------------------------------------------------------------------------- /site/src/components/HomeList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/HomeList.jsx -------------------------------------------------------------------------------- /site/src/components/HomeListItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/HomeListItem.jsx -------------------------------------------------------------------------------- /site/src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /site/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /site/src/components/Illustration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/Illustration.jsx -------------------------------------------------------------------------------- /site/src/components/ImportSrc.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/ImportSrc.jsx -------------------------------------------------------------------------------- /site/src/components/KnowledgeCheck.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/KnowledgeCheck.jsx -------------------------------------------------------------------------------- /site/src/components/LearnCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/LearnCard.jsx -------------------------------------------------------------------------------- /site/src/components/LearnCardList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/LearnCardList.jsx -------------------------------------------------------------------------------- /site/src/components/PackageJson.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/PackageJson.jsx -------------------------------------------------------------------------------- /site/src/components/Pillar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/Pillar.jsx -------------------------------------------------------------------------------- /site/src/components/PillarList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/PillarList.jsx -------------------------------------------------------------------------------- /site/src/components/Project.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/Project.jsx -------------------------------------------------------------------------------- /site/src/components/ProjectList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/ProjectList.jsx -------------------------------------------------------------------------------- /site/src/components/ScriptSrc.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/ScriptSrc.jsx -------------------------------------------------------------------------------- /site/src/components/SmallSocialButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/SmallSocialButton.jsx -------------------------------------------------------------------------------- /site/src/components/SwitchIllustration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/SwitchIllustration.jsx -------------------------------------------------------------------------------- /site/src/components/TBDBreadcrumbs/BreadCrumbsRoutes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/TBDBreadcrumbs/BreadCrumbsRoutes.json -------------------------------------------------------------------------------- /site/src/components/TBDBreadcrumbs/TBDBreadcrumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/TBDBreadcrumbs/TBDBreadcrumbs.js -------------------------------------------------------------------------------- /site/src/components/TBDBreadcrumbs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/TBDBreadcrumbs/index.js -------------------------------------------------------------------------------- /site/src/components/TBDBreadcrumbs/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/TBDBreadcrumbs/styles.module.css -------------------------------------------------------------------------------- /site/src/components/TextLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/TextLink.jsx -------------------------------------------------------------------------------- /site/src/components/TextWithTooltip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/TextWithTooltip.jsx -------------------------------------------------------------------------------- /site/src/components/Tooltip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/Tooltip.jsx -------------------------------------------------------------------------------- /site/src/components/TooltipWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/TooltipWrapper.jsx -------------------------------------------------------------------------------- /site/src/components/TwoColumnContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/TwoColumnContainer.jsx -------------------------------------------------------------------------------- /site/src/components/Version.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/Version.jsx -------------------------------------------------------------------------------- /site/src/components/Video.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/components/Video.jsx -------------------------------------------------------------------------------- /site/src/content/global-meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/global-meta.js -------------------------------------------------------------------------------- /site/src/content/home/heading.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/home/heading.mdx -------------------------------------------------------------------------------- /site/src/content/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/home/home.js -------------------------------------------------------------------------------- /site/src/content/home/our-approach.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/home/our-approach.mdx -------------------------------------------------------------------------------- /site/src/content/home/our-philosophy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/home/our-philosophy.mdx -------------------------------------------------------------------------------- /site/src/content/home/our-projects.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/home/our-projects.mdx -------------------------------------------------------------------------------- /site/src/content/home/our-protocol.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/home/our-protocol.mdx -------------------------------------------------------------------------------- /site/src/content/home/web5-cta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/home/web5-cta.js -------------------------------------------------------------------------------- /site/src/content/learn-concepts-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/learn-concepts-detail.js -------------------------------------------------------------------------------- /site/src/content/learn-concepts-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/learn-concepts-example.js -------------------------------------------------------------------------------- /site/src/content/learn-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/learn-detail.js -------------------------------------------------------------------------------- /site/src/content/open-source/governance/content.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/open-source/governance/content.mdx -------------------------------------------------------------------------------- /site/src/content/open-source/governance/governance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/open-source/governance/governance.js -------------------------------------------------------------------------------- /site/src/content/open-source/governance/heading.mdx: -------------------------------------------------------------------------------- 1 |

2 | Open Source Project Governance 3 |

4 | -------------------------------------------------------------------------------- /site/src/content/open-source/heading.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/open-source/heading.mdx -------------------------------------------------------------------------------- /site/src/content/open-source/incubation/content.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/open-source/incubation/content.mdx -------------------------------------------------------------------------------- /site/src/content/open-source/incubation/heading.mdx: -------------------------------------------------------------------------------- 1 |

2 | Open Source Incubation Program 3 |

4 | -------------------------------------------------------------------------------- /site/src/content/open-source/incubation/incubation-program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/open-source/incubation/incubation-program.js -------------------------------------------------------------------------------- /site/src/content/open-source/open-source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/open-source/open-source.js -------------------------------------------------------------------------------- /site/src/content/open-source/pillars-clarity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/open-source/pillars-clarity.mdx -------------------------------------------------------------------------------- /site/src/content/open-source/pillars-inclusivity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/open-source/pillars-inclusivity.mdx -------------------------------------------------------------------------------- /site/src/content/open-source/pillars-transparency.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/open-source/pillars-transparency.mdx -------------------------------------------------------------------------------- /site/src/content/projects/project-index/column-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/projects/project-index/column-1.mdx -------------------------------------------------------------------------------- /site/src/content/projects/project-index/column-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/projects/project-index/column-2.mdx -------------------------------------------------------------------------------- /site/src/content/projects/project-index/heading.mdx: -------------------------------------------------------------------------------- 1 | # The future is TBD. 2 | 3 | ## Join us in shaping it. 4 | -------------------------------------------------------------------------------- /site/src/content/projects/project-index/project-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/projects/project-index/project-list.mdx -------------------------------------------------------------------------------- /site/src/content/projects/project-index/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/projects/project-index/projects.js -------------------------------------------------------------------------------- /site/src/content/projects/ssi-service.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/projects/ssi-service.mdx -------------------------------------------------------------------------------- /site/src/content/projects/ssi/heading.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/projects/ssi/heading.mdx -------------------------------------------------------------------------------- /site/src/content/projects/ssi/ssi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/projects/ssi/ssi.js -------------------------------------------------------------------------------- /site/src/content/projects/tbdex-protocol.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/projects/tbdex-protocol.mdx -------------------------------------------------------------------------------- /site/src/content/projects/tbdex/data-self-ownership.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/projects/tbdex/data-self-ownership.mdx -------------------------------------------------------------------------------- /site/src/content/projects/tbdex/heading.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/projects/tbdex/heading.mdx -------------------------------------------------------------------------------- /site/src/content/projects/tbdex/proving-your-identity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/projects/tbdex/proving-your-identity.mdx -------------------------------------------------------------------------------- /site/src/content/projects/tbdex/tbdex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/projects/tbdex/tbdex.js -------------------------------------------------------------------------------- /site/src/content/projects/web5/heading.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/projects/web5/heading.mdx -------------------------------------------------------------------------------- /site/src/content/projects/web5/web5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/projects/web5/web5.js -------------------------------------------------------------------------------- /site/src/content/remote-md.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/content/remote-md.json -------------------------------------------------------------------------------- /site/src/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/contributors.json -------------------------------------------------------------------------------- /site/src/css/api.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/css/api.css -------------------------------------------------------------------------------- /site/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/css/custom.css -------------------------------------------------------------------------------- /site/src/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/css/docs.css -------------------------------------------------------------------------------- /site/src/css/feedback.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/css/feedback.css -------------------------------------------------------------------------------- /site/src/css/illustration.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/css/illustration.css -------------------------------------------------------------------------------- /site/src/css/jsvariables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/css/jsvariables.js -------------------------------------------------------------------------------- /site/src/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/css/layout.css -------------------------------------------------------------------------------- /site/src/css/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/css/navbar.css -------------------------------------------------------------------------------- /site/src/css/prose.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/css/prose.css -------------------------------------------------------------------------------- /site/src/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/css/search.css -------------------------------------------------------------------------------- /site/src/css/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/css/sidebar.css -------------------------------------------------------------------------------- /site/src/css/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/css/styles.js -------------------------------------------------------------------------------- /site/src/css/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/css/text.css -------------------------------------------------------------------------------- /site/src/css/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/css/variables.css -------------------------------------------------------------------------------- /site/src/css/web5-quickstart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/css/web5-quickstart.css -------------------------------------------------------------------------------- /site/src/hooks/index.js: -------------------------------------------------------------------------------- 1 | export * from './use-feedback-rating'; 2 | -------------------------------------------------------------------------------- /site/src/hooks/use-feedback-rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/hooks/use-feedback-rating.js -------------------------------------------------------------------------------- /site/src/pages/community/discord-messages-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/community/discord-messages-view.js -------------------------------------------------------------------------------- /site/src/pages/community/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/community/index.js -------------------------------------------------------------------------------- /site/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/index.js -------------------------------------------------------------------------------- /site/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/index.module.css -------------------------------------------------------------------------------- /site/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/markdown-page.md -------------------------------------------------------------------------------- /site/src/pages/open-source.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/open-source.mdx -------------------------------------------------------------------------------- /site/src/pages/open-source/code-of-conduct.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/open-source/code-of-conduct.mdx -------------------------------------------------------------------------------- /site/src/pages/open-source/contributing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/open-source/contributing.mdx -------------------------------------------------------------------------------- /site/src/pages/open-source/governance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/open-source/governance.mdx -------------------------------------------------------------------------------- /site/src/pages/open-source/incubation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/open-source/incubation.mdx -------------------------------------------------------------------------------- /site/src/pages/projects.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/projects.mdx -------------------------------------------------------------------------------- /site/src/pages/projects/ssi-sdk/doc/ssi-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/projects/ssi-sdk/doc/ssi-sdk.png -------------------------------------------------------------------------------- /site/src/pages/projects/ssi-service/doc/ssi-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/projects/ssi-service/doc/ssi-service.png -------------------------------------------------------------------------------- /site/src/pages/projects/ssi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/projects/ssi.mdx -------------------------------------------------------------------------------- /site/src/pages/projects/tbdex.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/projects/tbdex.mdx -------------------------------------------------------------------------------- /site/src/pages/projects/web5.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/projects/web5.mdx -------------------------------------------------------------------------------- /site/src/pages/wad23.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/pages/wad23.mdx -------------------------------------------------------------------------------- /site/src/theme/DocItem/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/theme/DocItem/Footer/index.js -------------------------------------------------------------------------------- /site/src/theme/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/theme/Footer.js -------------------------------------------------------------------------------- /site/src/theme/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/theme/Layout/index.js -------------------------------------------------------------------------------- /site/src/theme/MDXComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/theme/MDXComponents.js -------------------------------------------------------------------------------- /site/src/util/code-snippets-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/util/code-snippets-map.json -------------------------------------------------------------------------------- /site/src/util/code-snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/util/code-snippets.js -------------------------------------------------------------------------------- /site/src/util/feedback-retry-wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/util/feedback-retry-wait.js -------------------------------------------------------------------------------- /site/src/util/glitches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/util/glitches.js -------------------------------------------------------------------------------- /site/src/util/random-accent-color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/util/random-accent-color.js -------------------------------------------------------------------------------- /site/src/util/remote-content-modification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/src/util/remote-content-modification.js -------------------------------------------------------------------------------- /site/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/static/files/Decentralized-Web-Platform.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/files/Decentralized-Web-Platform.pdf -------------------------------------------------------------------------------- /site/static/files/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/files/index.txt -------------------------------------------------------------------------------- /site/static/files/schema.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/files/schema.txt -------------------------------------------------------------------------------- /site/static/img/Home-breadcrumbs-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/Home-breadcrumbs-icon.svg -------------------------------------------------------------------------------- /site/static/img/TBD54566975.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/TBD54566975.svg -------------------------------------------------------------------------------- /site/static/img/abc_conf_angie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/abc_conf_angie.png -------------------------------------------------------------------------------- /site/static/img/acme-bank-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/acme-bank-example.png -------------------------------------------------------------------------------- /site/static/img/actors-index-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/actors-index-1.svg -------------------------------------------------------------------------------- /site/static/img/actors-index-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/actors-index-2.svg -------------------------------------------------------------------------------- /site/static/img/actors-index-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/actors-index-3.svg -------------------------------------------------------------------------------- /site/static/img/actors-web5-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/actors-web5-desktop.svg -------------------------------------------------------------------------------- /site/static/img/actors-web5-mobile-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/actors-web5-mobile-1.svg -------------------------------------------------------------------------------- /site/static/img/actors-web5-mobile-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/actors-web5-mobile-2.svg -------------------------------------------------------------------------------- /site/static/img/actors-web5-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/actors-web5-mobile.svg -------------------------------------------------------------------------------- /site/static/img/africabitcoin22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/africabitcoin22.png -------------------------------------------------------------------------------- /site/static/img/alice-bob-dwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/alice-bob-dwn.png -------------------------------------------------------------------------------- /site/static/img/allthingsopen22-angie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/allthingsopen22-angie.jpg -------------------------------------------------------------------------------- /site/static/img/arrow-blue-navbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/arrow-blue-navbar.svg -------------------------------------------------------------------------------- /site/static/img/arrow-blue-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/arrow-blue-right.svg -------------------------------------------------------------------------------- /site/static/img/arrow-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/arrow-blue.svg -------------------------------------------------------------------------------- /site/static/img/arrow-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/arrow-icon.svg -------------------------------------------------------------------------------- /site/static/img/arrow-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/arrow-yellow.svg -------------------------------------------------------------------------------- /site/static/img/article-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/article-icon.svg -------------------------------------------------------------------------------- /site/static/img/article-media-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/article-media-icon.svg -------------------------------------------------------------------------------- /site/static/img/ask-chad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/ask-chad.png -------------------------------------------------------------------------------- /site/static/img/audio-media-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/audio-media-icon.svg -------------------------------------------------------------------------------- /site/static/img/bar-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/bar-code.svg -------------------------------------------------------------------------------- /site/static/img/blog-benri-ssi-host3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/blog-benri-ssi-host3.png -------------------------------------------------------------------------------- /site/static/img/blog-companies-embrace-web5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/blog-companies-embrace-web5.png -------------------------------------------------------------------------------- /site/static/img/blog-google-podcasts-discontinued.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/blog-google-podcasts-discontinued.png -------------------------------------------------------------------------------- /site/static/img/blog_recognition_program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/blog_recognition_program.png -------------------------------------------------------------------------------- /site/static/img/blog_social_media_handles_vs_dids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/blog_social_media_handles_vs_dids.png -------------------------------------------------------------------------------- /site/static/img/blue-arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/blue-arrow-left.svg -------------------------------------------------------------------------------- /site/static/img/blue-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/blue-arrow-right.svg -------------------------------------------------------------------------------- /site/static/img/bluesky-dids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/bluesky-dids.png -------------------------------------------------------------------------------- /site/static/img/brain-image-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/brain-image-dark.svg -------------------------------------------------------------------------------- /site/static/img/brain-image-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/brain-image-light.svg -------------------------------------------------------------------------------- /site/static/img/chatgpt-plugin-create-did.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/chatgpt-plugin-create-did.png -------------------------------------------------------------------------------- /site/static/img/chatgpt-plugin-create-protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/chatgpt-plugin-create-protocol.png -------------------------------------------------------------------------------- /site/static/img/chatgpt-plugin-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/chatgpt-plugin-install.png -------------------------------------------------------------------------------- /site/static/img/chatgpt-plugin-what-is-a-did.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/chatgpt-plugin-what-is-a-did.png -------------------------------------------------------------------------------- /site/static/img/chatgpt_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/chatgpt_error.png -------------------------------------------------------------------------------- /site/static/img/chatgpt_resolver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/chatgpt_resolver.png -------------------------------------------------------------------------------- /site/static/img/checkered-glitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/checkered-glitch.svg -------------------------------------------------------------------------------- /site/static/img/clarity-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/clarity-icon.svg -------------------------------------------------------------------------------- /site/static/img/close-menu-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/close-menu-mobile.svg -------------------------------------------------------------------------------- /site/static/img/component-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/component-icon.svg -------------------------------------------------------------------------------- /site/static/img/converge22-daniel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/converge22-daniel.png -------------------------------------------------------------------------------- /site/static/img/copyright-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/copyright-image.svg -------------------------------------------------------------------------------- /site/static/img/credential_working_group_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/credential_working_group_banner.png -------------------------------------------------------------------------------- /site/static/img/currency-of-freedom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/currency-of-freedom.png -------------------------------------------------------------------------------- /site/static/img/daniel_buchner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/daniel_buchner.jpg -------------------------------------------------------------------------------- /site/static/img/dark-mode-toggle-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/dark-mode-toggle-2.svg -------------------------------------------------------------------------------- /site/static/img/dark-mode-toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/dark-mode-toggle.svg -------------------------------------------------------------------------------- /site/static/img/data-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/data-icon.svg -------------------------------------------------------------------------------- /site/static/img/devices-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/devices-icon.svg -------------------------------------------------------------------------------- /site/static/img/did-Authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/did-Authentication.png -------------------------------------------------------------------------------- /site/static/img/did-controller-trust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/did-controller-trust.png -------------------------------------------------------------------------------- /site/static/img/did-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/did-example.png -------------------------------------------------------------------------------- /site/static/img/did-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/did-format.png -------------------------------------------------------------------------------- /site/static/img/did-hack-slide0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/did-hack-slide0.png -------------------------------------------------------------------------------- /site/static/img/did-hack-slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/did-hack-slide1.png -------------------------------------------------------------------------------- /site/static/img/did-hack-slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/did-hack-slide2.png -------------------------------------------------------------------------------- /site/static/img/did-hack-slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/did-hack-slide3.png -------------------------------------------------------------------------------- /site/static/img/did-hack-winners.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/did-hack-winners.jpg -------------------------------------------------------------------------------- /site/static/img/did-parental-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/did-parental-controls.png -------------------------------------------------------------------------------- /site/static/img/did-resolve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/did-resolve.png -------------------------------------------------------------------------------- /site/static/img/did_format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/did_format.png -------------------------------------------------------------------------------- /site/static/img/dids-in-the-real-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/dids-in-the-real-world.png -------------------------------------------------------------------------------- /site/static/img/dif-hackathon-ace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/dif-hackathon-ace.jpg -------------------------------------------------------------------------------- /site/static/img/dif-hackathon-banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/dif-hackathon-banner.gif -------------------------------------------------------------------------------- /site/static/img/dinosaur-illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/dinosaur-illustration.svg -------------------------------------------------------------------------------- /site/static/img/discord-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/discord-avatar.png -------------------------------------------------------------------------------- /site/static/img/discord-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/discord-icon.svg -------------------------------------------------------------------------------- /site/static/img/discourse-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/discourse-icon.svg -------------------------------------------------------------------------------- /site/static/img/divider-dotted-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/divider-dotted-dark.svg -------------------------------------------------------------------------------- /site/static/img/divider-dotted-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/divider-dotted-light.svg -------------------------------------------------------------------------------- /site/static/img/divider-dotted-small-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/divider-dotted-small-dark.svg -------------------------------------------------------------------------------- /site/static/img/divider-dotted-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/divider-dotted-white.svg -------------------------------------------------------------------------------- /site/static/img/divider-mobile-menu-dark copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/divider-mobile-menu-dark copy.svg -------------------------------------------------------------------------------- /site/static/img/divider-mobile-menu-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/divider-mobile-menu-dark.svg -------------------------------------------------------------------------------- /site/static/img/divider-mobile-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/divider-mobile-menu.svg -------------------------------------------------------------------------------- /site/static/img/divider-slash-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/divider-slash-dark.svg -------------------------------------------------------------------------------- /site/static/img/divider-slash-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/divider-slash-light.svg -------------------------------------------------------------------------------- /site/static/img/docs-app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-app.svg -------------------------------------------------------------------------------- /site/static/img/docs-blog-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-blog-icon.svg -------------------------------------------------------------------------------- /site/static/img/docs-chatting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-chatting.svg -------------------------------------------------------------------------------- /site/static/img/docs-cloud-server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-cloud-server.svg -------------------------------------------------------------------------------- /site/static/img/docs-coffee-break.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-coffee-break.svg -------------------------------------------------------------------------------- /site/static/img/docs-computer-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-computer-user.svg -------------------------------------------------------------------------------- /site/static/img/docs-conference-speaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-conference-speaker.svg -------------------------------------------------------------------------------- /site/static/img/docs-id-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-id-icon.svg -------------------------------------------------------------------------------- /site/static/img/docs-listen-music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-listen-music.svg -------------------------------------------------------------------------------- /site/static/img/docs-page-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-page-icon.svg -------------------------------------------------------------------------------- /site/static/img/docs-puzzle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-puzzle.svg -------------------------------------------------------------------------------- /site/static/img/docs-task-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-task-list.svg -------------------------------------------------------------------------------- /site/static/img/docs-todo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-todo-icon.png -------------------------------------------------------------------------------- /site/static/img/docs-video-camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-video-camera.svg -------------------------------------------------------------------------------- /site/static/img/docs-web5-code-connect-animated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-web5-code-connect-animated.png -------------------------------------------------------------------------------- /site/static/img/docs-web5-code-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docs-web5-code-connect.png -------------------------------------------------------------------------------- /site/static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /site/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/docusaurus.png -------------------------------------------------------------------------------- /site/static/img/dot-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/dot-icon.svg -------------------------------------------------------------------------------- /site/static/img/download-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/download-icon.svg -------------------------------------------------------------------------------- /site/static/img/dwas-vs-pwas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/dwas-vs-pwas.png -------------------------------------------------------------------------------- /site/static/img/email-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/email-icon.svg -------------------------------------------------------------------------------- /site/static/img/evolving-the-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/evolving-the-web.png -------------------------------------------------------------------------------- /site/static/img/external-link-blue-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/external-link-blue-icon.svg -------------------------------------------------------------------------------- /site/static/img/external-link-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/external-link-icon.svg -------------------------------------------------------------------------------- /site/static/img/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/external-link.svg -------------------------------------------------------------------------------- /site/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/favicon.ico -------------------------------------------------------------------------------- /site/static/img/features-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/features-graphic.png -------------------------------------------------------------------------------- /site/static/img/footer-bottom-dark-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/footer-bottom-dark-bw.svg -------------------------------------------------------------------------------- /site/static/img/footer-bottom-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/footer-bottom-dark.svg -------------------------------------------------------------------------------- /site/static/img/footer-bottom-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/footer-bottom-light.svg -------------------------------------------------------------------------------- /site/static/img/footer-top-marquee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/footer-top-marquee.svg -------------------------------------------------------------------------------- /site/static/img/github-button-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/github-button-icon.svg -------------------------------------------------------------------------------- /site/static/img/github-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/github-icon.svg -------------------------------------------------------------------------------- /site/static/img/hacktoberfest_blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/hacktoberfest_blog.png -------------------------------------------------------------------------------- /site/static/img/happy-hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/happy-hour.png -------------------------------------------------------------------------------- /site/static/img/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/heart.svg -------------------------------------------------------------------------------- /site/static/img/heart.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/heart.zip -------------------------------------------------------------------------------- /site/static/img/homenode-porotcol-messaging.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/homenode-porotcol-messaging.jpg -------------------------------------------------------------------------------- /site/static/img/hotel-travel-plans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/hotel-travel-plans.png -------------------------------------------------------------------------------- /site/static/img/identity-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/identity-icon.svg -------------------------------------------------------------------------------- /site/static/img/identity-wallets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/identity-wallets.png -------------------------------------------------------------------------------- /site/static/img/inclusivity-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/inclusivity-icon.svg -------------------------------------------------------------------------------- /site/static/img/incubator-vcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/incubator-vcs.png -------------------------------------------------------------------------------- /site/static/img/innovator-projects/home-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/innovator-projects/home-node.png -------------------------------------------------------------------------------- /site/static/img/innovator-projects/netonomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/innovator-projects/netonomy.png -------------------------------------------------------------------------------- /site/static/img/innovator-projects/qnav-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/innovator-projects/qnav-links.png -------------------------------------------------------------------------------- /site/static/img/innovator-projects/time-blind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/innovator-projects/time-blind.png -------------------------------------------------------------------------------- /site/static/img/instagram-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/instagram-icon.svg -------------------------------------------------------------------------------- /site/static/img/issue_student_id_manually.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/issue_student_id_manually.png -------------------------------------------------------------------------------- /site/static/img/issue_vc_for_student_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/issue_vc_for_student_id.png -------------------------------------------------------------------------------- /site/static/img/jwt-encoded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/jwt-encoded.png -------------------------------------------------------------------------------- /site/static/img/learn/architectural_concerns_with_blockchain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/architectural_concerns_with_blockchain.png -------------------------------------------------------------------------------- /site/static/img/learn/blockchain_crypto_tbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/blockchain_crypto_tbd.png -------------------------------------------------------------------------------- /site/static/img/learn/blockchain_skepticism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/blockchain_skepticism.png -------------------------------------------------------------------------------- /site/static/img/learn/decentralized_identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/decentralized_identity.png -------------------------------------------------------------------------------- /site/static/img/learn/headshots/angie_jones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/headshots/angie_jones.png -------------------------------------------------------------------------------- /site/static/img/learn/headshots/brooklyn_zelenka.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/headshots/brooklyn_zelenka.jpg -------------------------------------------------------------------------------- /site/static/img/learn/headshots/daniel_buchner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/headshots/daniel_buchner.jpg -------------------------------------------------------------------------------- /site/static/img/learn/headshots/grady_booch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/headshots/grady_booch.jpg -------------------------------------------------------------------------------- /site/static/img/learn/headshots/henry_tsai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/headshots/henry_tsai.jpg -------------------------------------------------------------------------------- /site/static/img/learn/headshots/kelsey_hightower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/headshots/kelsey_hightower.jpg -------------------------------------------------------------------------------- /site/static/img/learn/headshots/kim_hamilton_duffy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/headshots/kim_hamilton_duffy.jpg -------------------------------------------------------------------------------- /site/static/img/learn/headshots/mike_brock.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/headshots/mike_brock.jpeg -------------------------------------------------------------------------------- /site/static/img/learn/headshots/moe_jangda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/headshots/moe_jangda.jpg -------------------------------------------------------------------------------- /site/static/img/learn/headshots/nader_dabit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/headshots/nader_dabit.jpg -------------------------------------------------------------------------------- /site/static/img/learn/headshots/rhian_lewis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/headshots/rhian_lewis.jpg -------------------------------------------------------------------------------- /site/static/img/learn/history_of_blockchains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/history_of_blockchains.png -------------------------------------------------------------------------------- /site/static/img/learn/nader_dabit_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/nader_dabit_banner.png -------------------------------------------------------------------------------- /site/static/img/learn/web5_ama_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/learn/web5_ama_banner.png -------------------------------------------------------------------------------- /site/static/img/linkedin-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/linkedin-icon.svg -------------------------------------------------------------------------------- /site/static/img/lock-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/lock-key.png -------------------------------------------------------------------------------- /site/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/logo.svg -------------------------------------------------------------------------------- /site/static/img/mainnet22-mike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/mainnet22-mike.jpg -------------------------------------------------------------------------------- /site/static/img/mainnet22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/mainnet22.png -------------------------------------------------------------------------------- /site/static/img/marquee-d-1440.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/marquee-d-1440.svg -------------------------------------------------------------------------------- /site/static/img/maze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/maze.svg -------------------------------------------------------------------------------- /site/static/img/menu-mobile-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/menu-mobile-dark.png -------------------------------------------------------------------------------- /site/static/img/menu-mobile-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/menu-mobile-light.png -------------------------------------------------------------------------------- /site/static/img/menu-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/menu-mobile.svg -------------------------------------------------------------------------------- /site/static/img/message-icon-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/message-icon-purple.png -------------------------------------------------------------------------------- /site/static/img/message-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/message-icon.png -------------------------------------------------------------------------------- /site/static/img/message-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/message-icon.svg -------------------------------------------------------------------------------- /site/static/img/mobile-menu-glitch-bottom-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/mobile-menu-glitch-bottom-dark.svg -------------------------------------------------------------------------------- /site/static/img/mobile-menu-glitch-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/mobile-menu-glitch-bottom.svg -------------------------------------------------------------------------------- /site/static/img/music-to-my-ears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/music-to-my-ears.png -------------------------------------------------------------------------------- /site/static/img/new-web5-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/new-web5-desktop.svg -------------------------------------------------------------------------------- /site/static/img/new-web5-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/new-web5-mobile.svg -------------------------------------------------------------------------------- /site/static/img/new-web5-tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/new-web5-tablet.svg -------------------------------------------------------------------------------- /site/static/img/npr-article-on-x-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/npr-article-on-x-handle.png -------------------------------------------------------------------------------- /site/static/img/open-sandbox-in-new-tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/open-sandbox-in-new-tab.gif -------------------------------------------------------------------------------- /site/static/img/person-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/person-example.png -------------------------------------------------------------------------------- /site/static/img/pillars-of-web5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/pillars-of-web5.png -------------------------------------------------------------------------------- /site/static/img/placeholder-media-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/placeholder-media-image.png -------------------------------------------------------------------------------- /site/static/img/practicality-did-blog-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/practicality-did-blog-banner.png -------------------------------------------------------------------------------- /site/static/img/protocols-illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/protocols-illustration.png -------------------------------------------------------------------------------- /site/static/img/pwa-dwa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/pwa-dwa.png -------------------------------------------------------------------------------- /site/static/img/rectangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/rectangle.svg -------------------------------------------------------------------------------- /site/static/img/refactr-2022-angie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/refactr-2022-angie.png -------------------------------------------------------------------------------- /site/static/img/right-bracket-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/right-bracket-light.svg -------------------------------------------------------------------------------- /site/static/img/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/search-icon.png -------------------------------------------------------------------------------- /site/static/img/selected-arrow-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/selected-arrow-blue.svg -------------------------------------------------------------------------------- /site/static/img/selected-arrow-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/selected-arrow-mobile.svg -------------------------------------------------------------------------------- /site/static/img/selected-arrow-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/selected-arrow-yellow.svg -------------------------------------------------------------------------------- /site/static/img/selected-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/selected-arrow.svg -------------------------------------------------------------------------------- /site/static/img/separator-mobile-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/separator-mobile-menu.svg -------------------------------------------------------------------------------- /site/static/img/shopping-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/shopping-cart.svg -------------------------------------------------------------------------------- /site/static/img/small-glitch-cluster-vert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/small-glitch-cluster-vert.svg -------------------------------------------------------------------------------- /site/static/img/small-glitch-cluster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/small-glitch-cluster.svg -------------------------------------------------------------------------------- /site/static/img/smallTwitterDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/smallTwitterDark.png -------------------------------------------------------------------------------- /site/static/img/smallTwitterLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/smallTwitterLight.png -------------------------------------------------------------------------------- /site/static/img/sphere-index.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/sphere-index.svg -------------------------------------------------------------------------------- /site/static/img/ssi-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/ssi-console.png -------------------------------------------------------------------------------- /site/static/img/ssi-service-playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/ssi-service-playground.png -------------------------------------------------------------------------------- /site/static/img/ssi-trust-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/ssi-trust-model.png -------------------------------------------------------------------------------- /site/static/img/ssi_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/ssi_console.png -------------------------------------------------------------------------------- /site/static/img/ssi_tbd_web5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/ssi_tbd_web5.png -------------------------------------------------------------------------------- /site/static/img/static-vertical-cyan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/static-vertical-cyan.svg -------------------------------------------------------------------------------- /site/static/img/swag-giveaway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/swag-giveaway.png -------------------------------------------------------------------------------- /site/static/img/tag-front.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tag-front.svg -------------------------------------------------------------------------------- /site/static/img/tbd-fav-icon-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tbd-fav-icon-main.png -------------------------------------------------------------------------------- /site/static/img/tbd-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tbd-logo-light.png -------------------------------------------------------------------------------- /site/static/img/tbd-logo-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tbd-logo-square.svg -------------------------------------------------------------------------------- /site/static/img/tbd-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tbd-logo.svg -------------------------------------------------------------------------------- /site/static/img/tbd-long-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tbd-long-logo.svg -------------------------------------------------------------------------------- /site/static/img/tbd-yellowcard-asset-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tbd-yellowcard-asset-full.png -------------------------------------------------------------------------------- /site/static/img/tbd_circle_partnership.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tbd_circle_partnership.png -------------------------------------------------------------------------------- /site/static/img/tbd_og_meta_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tbd_og_meta_image.png -------------------------------------------------------------------------------- /site/static/img/tbd_spruce_did_interoperability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tbd_spruce_did_interoperability.png -------------------------------------------------------------------------------- /site/static/img/test-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/test-image.png -------------------------------------------------------------------------------- /site/static/img/tiktok-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tiktok-icon.svg -------------------------------------------------------------------------------- /site/static/img/tiktok_blog_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tiktok_blog_banner.png -------------------------------------------------------------------------------- /site/static/img/todo-app-tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/todo-app-tutorial.png -------------------------------------------------------------------------------- /site/static/img/tooltip-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tooltip-border.png -------------------------------------------------------------------------------- /site/static/img/tooltip-info-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tooltip-info-icon.svg -------------------------------------------------------------------------------- /site/static/img/tooltip-x-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tooltip-x-icon.svg -------------------------------------------------------------------------------- /site/static/img/transparency-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/transparency-icon.svg -------------------------------------------------------------------------------- /site/static/img/tutorial/docsVersionDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tutorial/docsVersionDropdown.png -------------------------------------------------------------------------------- /site/static/img/tutorial/localeDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tutorial/localeDropdown.png -------------------------------------------------------------------------------- /site/static/img/tutorial_issue_vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tutorial_issue_vc.png -------------------------------------------------------------------------------- /site/static/img/tutorial_todo_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tutorial_todo_app.png -------------------------------------------------------------------------------- /site/static/img/tweet-from-music-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/tweet-from-music-handle.png -------------------------------------------------------------------------------- /site/static/img/twitch-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/twitch-icon.svg -------------------------------------------------------------------------------- /site/static/img/twitter-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/twitter-icon.svg -------------------------------------------------------------------------------- /site/static/img/twitterDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/twitterDark.png -------------------------------------------------------------------------------- /site/static/img/twitterLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/twitterLight.png -------------------------------------------------------------------------------- /site/static/img/twitter_space_are_we_web5_yet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/twitter_space_are_we_web5_yet.png -------------------------------------------------------------------------------- /site/static/img/twitter_space_verifiable_credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/twitter_space_verifiable_credentials.png -------------------------------------------------------------------------------- /site/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /site/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /site/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /site/static/img/vc-three-party-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/vc-three-party-model.png -------------------------------------------------------------------------------- /site/static/img/vc_ecosystem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/vc_ecosystem.svg -------------------------------------------------------------------------------- /site/static/img/vertical-divider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/vertical-divider.svg -------------------------------------------------------------------------------- /site/static/img/video-media-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/video-media-icon.svg -------------------------------------------------------------------------------- /site/static/img/vimeo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/vimeo-icon.svg -------------------------------------------------------------------------------- /site/static/img/wallet-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/wallet-icon.svg -------------------------------------------------------------------------------- /site/static/img/wasm-chatgpt-ssi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/wasm-chatgpt-ssi.png -------------------------------------------------------------------------------- /site/static/img/web5-chatgpt-plugin-blog-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/web5-chatgpt-plugin-blog-banner.png -------------------------------------------------------------------------------- /site/static/img/web5-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/web5-desktop.svg -------------------------------------------------------------------------------- /site/static/img/web5-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/web5-graphic.png -------------------------------------------------------------------------------- /site/static/img/web5-journey-to-adoption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/web5-journey-to-adoption.png -------------------------------------------------------------------------------- /site/static/img/web5-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/web5-mobile.svg -------------------------------------------------------------------------------- /site/static/img/web5-roadmap.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/web5-roadmap.jpeg -------------------------------------------------------------------------------- /site/static/img/web5-tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/web5-tablet.svg -------------------------------------------------------------------------------- /site/static/img/what_are_vcs_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/what_are_vcs_banner.png -------------------------------------------------------------------------------- /site/static/img/what_is_web5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/what_is_web5.png -------------------------------------------------------------------------------- /site/static/img/youtube-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/youtube-icon.svg -------------------------------------------------------------------------------- /site/static/img/zcluster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/img/zcluster.svg -------------------------------------------------------------------------------- /site/static/scripts/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/scripts/custom.js -------------------------------------------------------------------------------- /site/static/scripts/dd-analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/scripts/dd-analytics.js -------------------------------------------------------------------------------- /site/static/tutorial/docsVersionDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/tutorial/docsVersionDropdown.png -------------------------------------------------------------------------------- /site/static/tutorial/localeDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/static/tutorial/localeDropdown.png -------------------------------------------------------------------------------- /site/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/site/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanzalahwaheed/developer.tbd.website/HEAD/vite.config.ts --------------------------------------------------------------------------------