├── .github ├── ISSUE_TEMPLATE │ └── documentation-request.yml ├── dependabot.yml ├── settings.yml └── workflows │ ├── continuous-integration.yml │ └── deploy.yml ├── .gitignore ├── CONTRIBUTING.md ├── MAINTAINERS.md ├── README.md ├── biome.json ├── developer-docs ├── CONCEPTS.md └── TUTORIALS.md ├── docusaurus.config.ts ├── guides ├── concepts │ ├── agents.md │ ├── did-and-didcomm.md │ ├── index.md │ └── platform-and-environment.md ├── ecosystem │ └── index.md ├── extensions │ ├── index.md │ ├── push-notifications.md │ ├── react-hooks.md │ ├── redux-store.md │ └── rest.md ├── features │ ├── aries.md │ ├── credentials.md │ ├── dids.md │ ├── index.md │ └── openid4vc.md ├── getting-started │ ├── index.md │ ├── prerequisites.md │ └── set-up │ │ ├── anoncreds.md │ │ ├── aries-askar.md │ │ ├── cheqd │ │ └── index.md │ │ ├── hedera │ │ └── index.md │ │ ├── index.md │ │ ├── indy-vdr.md │ │ └── openid4vc.md ├── index.md ├── tutorials │ ├── agent-config │ │ ├── index.md │ │ └── logging.md │ ├── cheqd │ │ └── index.md │ ├── create-a-connection.md │ ├── hedera │ │ └── index.md │ ├── index.md │ ├── issue-an-anoncreds-credential-over-didcomm.md │ ├── mediation.md │ ├── openid4vc │ │ ├── index.md │ │ ├── issuing-credentials-using-openid4vc-issuer-module.md │ │ ├── receiving-and-proving-credentials-using-openid4vc-holder-module.md │ │ └── verifying-credentials-using-openid4vc-verifier-module.md │ └── registering-schema-and-credential-definition.md └── updating │ ├── index.md │ ├── update-assistant.md │ ├── update-indy-sdk-to-askar.md │ └── versions │ ├── 0.1-to-0.2.md │ ├── 0.2-to-0.3.md │ ├── 0.3-to-0.4.md │ └── 0.4-to-0.5.md ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── sidebars.js ├── snippets ├── 0.5 │ ├── package.json │ ├── src │ │ ├── create-a-connection.ts │ │ ├── issue-anoncreds-credential-didcomm.ts │ │ ├── mediation-recipient.ts │ │ ├── mediator-setup.ts │ │ ├── register-schema-and-cred-def.ts │ │ ├── sd-jwt-vc-openid4vc.ts │ │ ├── set-up-anoncreds-rn.ts │ │ ├── set-up-anoncreds.ts │ │ ├── set-up-askar-rn.ts │ │ ├── set-up-askar.ts │ │ ├── set-up-cheqd.ts │ │ ├── set-up-hedera.ts │ │ ├── set-up-indy-vdr-config.ts │ │ ├── set-up-indy-vdr-rn.ts │ │ ├── set-up-indy-vdr.ts │ │ ├── set-up-openid4vc-holder.ts │ │ ├── set-up-openid4vc-issuer-verifier.ts │ │ ├── set-up-rn.ts │ │ └── set-up.ts │ └── tsconfig.json └── current │ ├── package.json │ ├── src │ ├── create-a-connection.ts │ ├── issue-anoncreds-credential-didcomm.ts │ ├── mediation-recipient.ts │ ├── mediator-setup.ts │ ├── register-schema-and-cred-def.ts │ ├── sd-jwt-vc-openid4vc.ts │ ├── set-up-anoncreds-rn.ts │ ├── set-up-anoncreds.ts │ ├── set-up-askar-rn.ts │ ├── set-up-askar.ts │ ├── set-up-cheqd.ts │ ├── set-up-hedera.ts │ ├── set-up-indy-vdr-config.ts │ ├── set-up-indy-vdr-rn.ts │ ├── set-up-indy-vdr.ts │ ├── set-up-openid4vc-holder.ts │ ├── set-up-openid4vc-issuer-verifier.ts │ ├── set-up-rn.ts │ └── set-up.ts │ └── tsconfig.json ├── src ├── components │ └── HomepageFeatures │ │ ├── index.tsx │ │ └── styles.module.css ├── css │ └── custom.css ├── pages │ ├── index.module.css │ ├── index.tsx │ └── markdown-page.md └── theme │ ├── Admonition │ └── Types.tsx │ └── CodeBlock │ └── index.tsx ├── static ├── .nojekyll └── img │ ├── credo-logo.png │ ├── credo-social-preview.png │ ├── easy-to-use.svg │ ├── favicon.ico │ ├── multiplatform.svg │ └── standards.svg ├── tsconfig.json ├── tsconfig.snippets.json ├── versioned_docs └── version-0.5 │ ├── concepts │ ├── agents.md │ ├── did-and-didcomm.md │ ├── index.md │ └── platform-and-environment.md │ ├── ecosystem │ └── index.md │ ├── extensions │ ├── index.md │ ├── push-notifications.md │ ├── react-hooks.md │ ├── redux-store.md │ └── rest.md │ ├── features │ ├── aries.md │ ├── credentials.md │ ├── dids.md │ ├── index.md │ └── openid4vc.md │ ├── getting-started │ ├── index.md │ ├── prerequisites.md │ └── set-up │ │ ├── anoncreds.md │ │ ├── aries-askar.md │ │ ├── cheqd │ │ └── index.md │ │ ├── hedera │ │ └── index.md │ │ ├── index.md │ │ ├── indy-vdr.md │ │ └── openid4vc.md │ ├── index.md │ ├── tutorials │ ├── agent-config │ │ ├── index.md │ │ └── logging.md │ ├── cheqd │ │ └── index.md │ ├── create-a-connection.md │ ├── hedera │ │ └── index.md │ ├── index.md │ ├── issue-an-anoncreds-credential-over-didcomm.md │ ├── mediation.md │ ├── openid4vc │ │ ├── index.md │ │ ├── issuing-credentials-using-openid4vc-issuer-module.md │ │ ├── receiving-and-proving-credentials-using-openid4vc-holder-module.md │ │ └── verifying-credentials-using-openid4vc-verifier-module.md │ └── registering-schema-and-credential-definition.md │ └── updating │ ├── index.md │ ├── update-assistant.md │ ├── update-indy-sdk-to-askar.md │ └── versions │ ├── 0.1-to-0.2.md │ ├── 0.2-to-0.3.md │ ├── 0.3-to-0.4.md │ └── 0.4-to-0.5.md ├── versioned_sidebars └── version-0.5-sidebars.json └── versions.json /.github/ISSUE_TEMPLATE/documentation-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/.github/ISSUE_TEMPLATE/documentation-request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/biome.json -------------------------------------------------------------------------------- /developer-docs/CONCEPTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/developer-docs/CONCEPTS.md -------------------------------------------------------------------------------- /developer-docs/TUTORIALS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/developer-docs/TUTORIALS.md -------------------------------------------------------------------------------- /docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/docusaurus.config.ts -------------------------------------------------------------------------------- /guides/concepts/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/concepts/agents.md -------------------------------------------------------------------------------- /guides/concepts/did-and-didcomm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/concepts/did-and-didcomm.md -------------------------------------------------------------------------------- /guides/concepts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/concepts/index.md -------------------------------------------------------------------------------- /guides/concepts/platform-and-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/concepts/platform-and-environment.md -------------------------------------------------------------------------------- /guides/ecosystem/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/ecosystem/index.md -------------------------------------------------------------------------------- /guides/extensions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/extensions/index.md -------------------------------------------------------------------------------- /guides/extensions/push-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/extensions/push-notifications.md -------------------------------------------------------------------------------- /guides/extensions/react-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/extensions/react-hooks.md -------------------------------------------------------------------------------- /guides/extensions/redux-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/extensions/redux-store.md -------------------------------------------------------------------------------- /guides/extensions/rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/extensions/rest.md -------------------------------------------------------------------------------- /guides/features/aries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/features/aries.md -------------------------------------------------------------------------------- /guides/features/credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/features/credentials.md -------------------------------------------------------------------------------- /guides/features/dids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/features/dids.md -------------------------------------------------------------------------------- /guides/features/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/features/index.md -------------------------------------------------------------------------------- /guides/features/openid4vc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/features/openid4vc.md -------------------------------------------------------------------------------- /guides/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/getting-started/index.md -------------------------------------------------------------------------------- /guides/getting-started/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/getting-started/prerequisites.md -------------------------------------------------------------------------------- /guides/getting-started/set-up/anoncreds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/getting-started/set-up/anoncreds.md -------------------------------------------------------------------------------- /guides/getting-started/set-up/aries-askar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/getting-started/set-up/aries-askar.md -------------------------------------------------------------------------------- /guides/getting-started/set-up/cheqd/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/getting-started/set-up/cheqd/index.md -------------------------------------------------------------------------------- /guides/getting-started/set-up/hedera/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/getting-started/set-up/hedera/index.md -------------------------------------------------------------------------------- /guides/getting-started/set-up/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/getting-started/set-up/index.md -------------------------------------------------------------------------------- /guides/getting-started/set-up/indy-vdr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/getting-started/set-up/indy-vdr.md -------------------------------------------------------------------------------- /guides/getting-started/set-up/openid4vc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/getting-started/set-up/openid4vc.md -------------------------------------------------------------------------------- /guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/index.md -------------------------------------------------------------------------------- /guides/tutorials/agent-config/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/tutorials/agent-config/index.md -------------------------------------------------------------------------------- /guides/tutorials/agent-config/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/tutorials/agent-config/logging.md -------------------------------------------------------------------------------- /guides/tutorials/cheqd/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/tutorials/cheqd/index.md -------------------------------------------------------------------------------- /guides/tutorials/create-a-connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/tutorials/create-a-connection.md -------------------------------------------------------------------------------- /guides/tutorials/hedera/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/tutorials/hedera/index.md -------------------------------------------------------------------------------- /guides/tutorials/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/tutorials/index.md -------------------------------------------------------------------------------- /guides/tutorials/issue-an-anoncreds-credential-over-didcomm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/tutorials/issue-an-anoncreds-credential-over-didcomm.md -------------------------------------------------------------------------------- /guides/tutorials/mediation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/tutorials/mediation.md -------------------------------------------------------------------------------- /guides/tutorials/openid4vc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/tutorials/openid4vc/index.md -------------------------------------------------------------------------------- /guides/tutorials/openid4vc/issuing-credentials-using-openid4vc-issuer-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/tutorials/openid4vc/issuing-credentials-using-openid4vc-issuer-module.md -------------------------------------------------------------------------------- /guides/tutorials/openid4vc/receiving-and-proving-credentials-using-openid4vc-holder-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/tutorials/openid4vc/receiving-and-proving-credentials-using-openid4vc-holder-module.md -------------------------------------------------------------------------------- /guides/tutorials/openid4vc/verifying-credentials-using-openid4vc-verifier-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/tutorials/openid4vc/verifying-credentials-using-openid4vc-verifier-module.md -------------------------------------------------------------------------------- /guides/tutorials/registering-schema-and-credential-definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/tutorials/registering-schema-and-credential-definition.md -------------------------------------------------------------------------------- /guides/updating/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/updating/index.md -------------------------------------------------------------------------------- /guides/updating/update-assistant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/updating/update-assistant.md -------------------------------------------------------------------------------- /guides/updating/update-indy-sdk-to-askar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/updating/update-indy-sdk-to-askar.md -------------------------------------------------------------------------------- /guides/updating/versions/0.1-to-0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/updating/versions/0.1-to-0.2.md -------------------------------------------------------------------------------- /guides/updating/versions/0.2-to-0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/updating/versions/0.2-to-0.3.md -------------------------------------------------------------------------------- /guides/updating/versions/0.3-to-0.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/updating/versions/0.3-to-0.4.md -------------------------------------------------------------------------------- /guides/updating/versions/0.4-to-0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/guides/updating/versions/0.4-to-0.5.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - snippets/* -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/sidebars.js -------------------------------------------------------------------------------- /snippets/0.5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/package.json -------------------------------------------------------------------------------- /snippets/0.5/src/create-a-connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/create-a-connection.ts -------------------------------------------------------------------------------- /snippets/0.5/src/issue-anoncreds-credential-didcomm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/issue-anoncreds-credential-didcomm.ts -------------------------------------------------------------------------------- /snippets/0.5/src/mediation-recipient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/mediation-recipient.ts -------------------------------------------------------------------------------- /snippets/0.5/src/mediator-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/mediator-setup.ts -------------------------------------------------------------------------------- /snippets/0.5/src/register-schema-and-cred-def.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/register-schema-and-cred-def.ts -------------------------------------------------------------------------------- /snippets/0.5/src/sd-jwt-vc-openid4vc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/sd-jwt-vc-openid4vc.ts -------------------------------------------------------------------------------- /snippets/0.5/src/set-up-anoncreds-rn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/set-up-anoncreds-rn.ts -------------------------------------------------------------------------------- /snippets/0.5/src/set-up-anoncreds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/set-up-anoncreds.ts -------------------------------------------------------------------------------- /snippets/0.5/src/set-up-askar-rn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/set-up-askar-rn.ts -------------------------------------------------------------------------------- /snippets/0.5/src/set-up-askar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/set-up-askar.ts -------------------------------------------------------------------------------- /snippets/0.5/src/set-up-cheqd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/set-up-cheqd.ts -------------------------------------------------------------------------------- /snippets/0.5/src/set-up-hedera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/set-up-hedera.ts -------------------------------------------------------------------------------- /snippets/0.5/src/set-up-indy-vdr-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/set-up-indy-vdr-config.ts -------------------------------------------------------------------------------- /snippets/0.5/src/set-up-indy-vdr-rn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/set-up-indy-vdr-rn.ts -------------------------------------------------------------------------------- /snippets/0.5/src/set-up-indy-vdr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/set-up-indy-vdr.ts -------------------------------------------------------------------------------- /snippets/0.5/src/set-up-openid4vc-holder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/set-up-openid4vc-holder.ts -------------------------------------------------------------------------------- /snippets/0.5/src/set-up-openid4vc-issuer-verifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/set-up-openid4vc-issuer-verifier.ts -------------------------------------------------------------------------------- /snippets/0.5/src/set-up-rn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/set-up-rn.ts -------------------------------------------------------------------------------- /snippets/0.5/src/set-up.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/0.5/src/set-up.ts -------------------------------------------------------------------------------- /snippets/0.5/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.snippets.json" 3 | } 4 | -------------------------------------------------------------------------------- /snippets/current/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/package.json -------------------------------------------------------------------------------- /snippets/current/src/create-a-connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/create-a-connection.ts -------------------------------------------------------------------------------- /snippets/current/src/issue-anoncreds-credential-didcomm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/issue-anoncreds-credential-didcomm.ts -------------------------------------------------------------------------------- /snippets/current/src/mediation-recipient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/mediation-recipient.ts -------------------------------------------------------------------------------- /snippets/current/src/mediator-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/mediator-setup.ts -------------------------------------------------------------------------------- /snippets/current/src/register-schema-and-cred-def.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/register-schema-and-cred-def.ts -------------------------------------------------------------------------------- /snippets/current/src/sd-jwt-vc-openid4vc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/sd-jwt-vc-openid4vc.ts -------------------------------------------------------------------------------- /snippets/current/src/set-up-anoncreds-rn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/set-up-anoncreds-rn.ts -------------------------------------------------------------------------------- /snippets/current/src/set-up-anoncreds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/set-up-anoncreds.ts -------------------------------------------------------------------------------- /snippets/current/src/set-up-askar-rn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/set-up-askar-rn.ts -------------------------------------------------------------------------------- /snippets/current/src/set-up-askar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/set-up-askar.ts -------------------------------------------------------------------------------- /snippets/current/src/set-up-cheqd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/set-up-cheqd.ts -------------------------------------------------------------------------------- /snippets/current/src/set-up-hedera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/set-up-hedera.ts -------------------------------------------------------------------------------- /snippets/current/src/set-up-indy-vdr-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/set-up-indy-vdr-config.ts -------------------------------------------------------------------------------- /snippets/current/src/set-up-indy-vdr-rn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/set-up-indy-vdr-rn.ts -------------------------------------------------------------------------------- /snippets/current/src/set-up-indy-vdr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/set-up-indy-vdr.ts -------------------------------------------------------------------------------- /snippets/current/src/set-up-openid4vc-holder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/set-up-openid4vc-holder.ts -------------------------------------------------------------------------------- /snippets/current/src/set-up-openid4vc-issuer-verifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/set-up-openid4vc-issuer-verifier.ts -------------------------------------------------------------------------------- /snippets/current/src/set-up-rn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/set-up-rn.ts -------------------------------------------------------------------------------- /snippets/current/src/set-up.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/snippets/current/src/set-up.ts -------------------------------------------------------------------------------- /snippets/current/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.snippets.json" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/src/pages/index.module.css -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/src/pages/markdown-page.md -------------------------------------------------------------------------------- /src/theme/Admonition/Types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/src/theme/Admonition/Types.tsx -------------------------------------------------------------------------------- /src/theme/CodeBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/src/theme/CodeBlock/index.tsx -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/credo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/static/img/credo-logo.png -------------------------------------------------------------------------------- /static/img/credo-social-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/static/img/credo-social-preview.png -------------------------------------------------------------------------------- /static/img/easy-to-use.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/static/img/easy-to-use.svg -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/multiplatform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/static/img/multiplatform.svg -------------------------------------------------------------------------------- /static/img/standards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/static/img/standards.svg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/tsconfig.snippets.json -------------------------------------------------------------------------------- /versioned_docs/version-0.5/concepts/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/concepts/agents.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/concepts/did-and-didcomm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/concepts/did-and-didcomm.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/concepts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/concepts/index.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/concepts/platform-and-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/concepts/platform-and-environment.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/ecosystem/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/ecosystem/index.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/extensions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/extensions/index.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/extensions/push-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/extensions/push-notifications.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/extensions/react-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/extensions/react-hooks.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/extensions/redux-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/extensions/redux-store.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/extensions/rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/extensions/rest.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/features/aries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/features/aries.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/features/credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/features/credentials.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/features/dids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/features/dids.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/features/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/features/index.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/features/openid4vc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/features/openid4vc.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/getting-started/index.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/getting-started/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/getting-started/prerequisites.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/getting-started/set-up/anoncreds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/getting-started/set-up/anoncreds.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/getting-started/set-up/aries-askar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/getting-started/set-up/aries-askar.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/getting-started/set-up/cheqd/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/getting-started/set-up/cheqd/index.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/getting-started/set-up/hedera/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/getting-started/set-up/hedera/index.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/getting-started/set-up/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/getting-started/set-up/index.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/getting-started/set-up/indy-vdr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/getting-started/set-up/indy-vdr.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/getting-started/set-up/openid4vc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/getting-started/set-up/openid4vc.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/index.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/tutorials/agent-config/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/tutorials/agent-config/index.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/tutorials/agent-config/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/tutorials/agent-config/logging.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/tutorials/cheqd/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/tutorials/cheqd/index.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/tutorials/create-a-connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/tutorials/create-a-connection.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/tutorials/hedera/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/tutorials/hedera/index.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/tutorials/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/tutorials/index.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/tutorials/issue-an-anoncreds-credential-over-didcomm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/tutorials/issue-an-anoncreds-credential-over-didcomm.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/tutorials/mediation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/tutorials/mediation.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/tutorials/openid4vc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/tutorials/openid4vc/index.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/tutorials/openid4vc/issuing-credentials-using-openid4vc-issuer-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/tutorials/openid4vc/issuing-credentials-using-openid4vc-issuer-module.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/tutorials/openid4vc/receiving-and-proving-credentials-using-openid4vc-holder-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/tutorials/openid4vc/receiving-and-proving-credentials-using-openid4vc-holder-module.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/tutorials/openid4vc/verifying-credentials-using-openid4vc-verifier-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/tutorials/openid4vc/verifying-credentials-using-openid4vc-verifier-module.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/tutorials/registering-schema-and-credential-definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/tutorials/registering-schema-and-credential-definition.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/updating/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/updating/index.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/updating/update-assistant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/updating/update-assistant.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/updating/update-indy-sdk-to-askar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/updating/update-indy-sdk-to-askar.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/updating/versions/0.1-to-0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/updating/versions/0.1-to-0.2.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/updating/versions/0.2-to-0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/updating/versions/0.2-to-0.3.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/updating/versions/0.3-to-0.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/updating/versions/0.3-to-0.4.md -------------------------------------------------------------------------------- /versioned_docs/version-0.5/updating/versions/0.4-to-0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_docs/version-0.5/updating/versions/0.4-to-0.5.md -------------------------------------------------------------------------------- /versioned_sidebars/version-0.5-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwallet-foundation/credo-ts-docs/HEAD/versioned_sidebars/version-0.5-sidebars.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | ["0.5"] 2 | --------------------------------------------------------------------------------