{"id":29271167,"url":"https://github.com/hyperledger-identus/sdk-ts","last_synced_at":"2025-08-03T19:36:00.115Z","repository":{"id":196825856,"uuid":"606398467","full_name":"hyperledger-identus/sdk-ts","owner":"hyperledger-identus","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-20T19:52:46.000Z","size":13129,"stargazers_count":23,"open_issues_count":26,"forks_count":17,"subscribers_count":17,"default_branch":"main","last_synced_at":"2025-06-20T19:53:19.198Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://hyperledger-identus.github.io/docs/sdk-ts/sdk","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hyperledger-identus.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-02-25T11:22:15.000Z","updated_at":"2025-06-20T19:16:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"607316f7-f512-4478-8dd5-225b949dccee","html_url":"https://github.com/hyperledger-identus/sdk-ts","commit_stats":null,"previous_names":["input-output-hk/atala-prism-wallet-sdk-ts","hyperledger/identus-edge-agent-sdk-ts","hyperledger-identus/edge-agent-sdk-ts","hyperledger-identus/sdk-ts"],"tags_count":42,"template":false,"template_full_name":null,"purl":"pkg:github/hyperledger-identus/sdk-ts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperledger-identus%2Fsdk-ts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperledger-identus%2Fsdk-ts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperledger-identus%2Fsdk-ts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperledger-identus%2Fsdk-ts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hyperledger-identus","download_url":"https://codeload.github.com/hyperledger-identus/sdk-ts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperledger-identus%2Fsdk-ts/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263632057,"owners_count":23491530,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-07-04T23:07:32.257Z","updated_at":"2025-07-04T23:07:33.002Z","avatar_url":"https://github.com/hyperledger-identus.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Identus TypeScript SDK\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://cdn.jsdelivr.net/gh/hyperledger/identus@latest/resources/images/hyperledger-identus.svg\" /\u003e\n\u003c/p\u003e\n\n[![Coverage Status](https://coveralls.io/repos/github/hyperledger-identus/sdk-ts/badge.svg?branch=main)](https://coveralls.io/github/hyperledger-identus/sdk-ts?branch=main)\n\n---\n\nIdentus is a self-sovereign identity (SSI) platform and service suite for\nverifiable data and digital identity. Built on Cardano, as a distributed ledger, \nit offers core infrastructure for issuing DIDs (Decentralized identifiers) and \nverifiable credentials, alongside tools and frameworks to help expand your ecosystem.\nThe complete platform is separated into multiple repositories:\n* [Cloud Agent](https://github.com/hyperledger-identus/cloud-agent) - Repo that contains the Cloud Agent that provides self-sovereign identity services to build products and solutions.\n* [Mediator](https://github.com/hyperledger-identus/mediator) - Repo for the DIDComm V2 Mediator.\n* [SDK TS](https://github.com/hyperledger-identus/sdk-ts) - Repo for the Typescript SDK.\n\nWe also have SDKs for other platforms:\n* [SDK Swift](https://github.com/hyperledger-identus/sdk-swift) - Repo for the Swift SDK.\n* [SDK KMP](https://github.com/hyperledger-identus/sdk-kmp) - Repo for the Kotlin Multi-Platform SDK.\n\n## SDK Overview\n\n- Apollo: Provides a suite of necessary cryptographic operations.\n- Castor: Provides a suite of operations to create, manage and resolve decentralized identifiers.\n- Mercury: Provides a suite of operations for handling DIDComm V2 messages.\n- Pluto: Provides an interface for storage operations in a portable, storage-agnostic manner.\n- Agent: A component using all other building blocks, provides basic edge agent capabilities, including implementing DIDComm V2 protocols.\n\n## Getting started\nWe highly recommend you check out the [docs](https://hyperledger-identus.github.io/docs/home/) :world_map:\n\n### Install\n\n**NOTE**: The package was renamed from `@hyperledger/identus-edge-agent-sdk` to `@hyperledger/identus-sdk`. Modify the scripts if you ready to use the new package accordingly.\n\n```bash\nnpm i @hyperledger/identus-edge-agent-sdk\n```\n\nor\n```bash\nyarn add @hyperledger/identus-edge-agent-sdk\n```\n\n### Demo application\nThis repository also includes a browser and a Node.js demo application\n\n#### Build demo dependencies\nThe demos assume building this repo from source, so you will need the following:\n* Bash\n* Rust ([cargo](https://doc.rust-lang.org/cargo/getting-started/installation.html)) and [wasm-pack](https://rustwasm.github.io/wasm-pack/installer/) installed.\n* Node JS Version (20/LTS Recommended)\n\nClone and build:\n```bash\ngit clone git@github.com:hyperledger-identus/sdk-ts.git --recurse-submodules\ncd sdk-ts\nyarn\nnpm run build\n```\n\nIf you have any issues while building you can try building from docker (this runs exaclty the same build):\n```bash\ndocker build -t atalaprismwalletsdkts:latest \".\" \ndocker run  -v $(pwd)/build:/app/build atalaprismwalletsdkts:latest\n```\n\n#### Run the demos\nOnce you have [built the demo dependencies](#build-demo-dependencies), you can try out each of the demos:\n\nBrowser React / NextJS\n```bash\ncd demos/next\nnpm i\nnpm run dev\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyperledger-identus%2Fsdk-ts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhyperledger-identus%2Fsdk-ts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyperledger-identus%2Fsdk-ts/lists"}