credo-ts
credo-ts copied to clipboard
Typescript framework for building decentralized identity and verifiable credential solutions
When building an agent that interacts with other agents that don't have an endpoint (lets say you're a mediator), you can communicate with the other agent by using the inbound...
Currently, the AFJ agent receives messages in the background via `receiveMessage`. I'm curious how we should handle errors thrown by this method. For example, when we're making a connection from...
https://github.com/hyperledger/aries-rfcs/blob/7a44f650d3cebf5b3047c1680618978393a497d5/features/0646-bbs-credentials/README.md
https://github.com/hyperledger/aries-rfcs/tree/b3a3942ef052039e73cd23d847f42947f8287da2/features/0360-use-did-key
As a developer I want to be able to issue credentials that are revocable. Checklist: - [ ] ... Resources - [Aries Framework .NET Issue Credential](https://github.com/hyperledger/aries-framework-dotnet/tree/master/src/Hyperledger.Aries/Features/IssueCredential) - [Indy Tails Server](https://github.com/bcgov/indy-tails-server)...
Support shortened URLs - First check if a `c_i` or `d_m` or `oob` parameter is available on the invitation url. If it is continue as usual (decode the parameter, we...
Right now, It not really possible to generate a nonce, via `proofService.generateNonceForProofRequest()` without a lot of hassle because you need to instantiate the `proofService`. We should add a way to...
We want to use unknown in catch statements. Before typescript 4.4 `any` was the default but this is now switched to `unknown`. Once we have migrated all catch statements to...
We want to add caching of ledger objects to improve speed of operations by using locally cached ledger objects vs connecting to the ledger again. This would help significantly improve...
When presenting proof of non revocation we need to fetch tails files and we want to validate the hash of downloaded tails files against the hash recorded in the revocation...