Identus is a self-sovereign identity (SSI) platform and service suite for verifiable data and digital identity. Built on Cardano, as a distributed ledger, it offers core infrastructure for issuing DIDs (Decentralized identifiers) and verifiable credentials, alongside tools and frameworks to help expand your ecosystem. The complete platform is separated into multiple repositories:
- Cloud Agent - Repo that contains the Cloud Agent that provides self-sovereign identity services to build products and solutions.
- Mediator - Repo for the DIDComm V2 Mediator.
- SDK TS - Repo for the Typescript SDK.
We also have SDKs for other platforms:
- Apollo: Provides a suite of necessary cryptographic operations.
- Castor: Provides a suite of operations to create, manage and resolve decentralized identifiers.
- Mercury: Provides a suite of operations for handling DIDComm V2 messages.
- Pluto: Provides an interface for storage operations in a portable, storage-agnostic manner.
- Agent: A component using all other building blocks, provides basic edge agent capabilities, including implementing DIDComm V2 protocols.
We highly recommend you check out the docs 🗺️
npm i @hyperledger/identus-edge-agent-sdk
or
yarn add @hyperledger/identus-edge-agent-sdk
This repository also includes a browser and a Node.js demo application
The demos assume building this repo from source, so you will need the following:
Clone and build:
git clone [email protected]:hyperledger-identus/sdk-ts.git --recurse-submodules
cd sdk-ts
npm i
npm run build
If you have any issues while building you can try building from docker (this runs exaclty the same build):
docker build -t atalaprismwalletsdkts:latest "."
docker run -v $(pwd)/build:/app/build atalaprismwalletsdkts:latest
Once you have built the demo dependencies, you can try out each of the demos:
Browser React / NextJS
cd demos/next
npm i
npm run dev