credo-ts
credo-ts copied to clipboard
Typescript framework for building decentralized identity and verifiable credential solutions
As the documentation has been removed we should add this to the aries javascript docs repo once it will be released: General note: Right now, as a patch that will...
Hey folks! I've just tried to run this within a React Native environment--has that been recently tested? I've ran into a number of issues. The most problematic though is that...
Modify https://github.com/hyperledger/aries-framework-javascript/blob/main/CONTRIBUTING.md to include some of the lessons learned from the 0.2.0 release. That conversation started here https://wiki.hyperledger.org/display/ARIES/2022-06-30+Aries+Framework+JS+Meeting+notes And we should also update the Aries JS docs https://github.com/hyperledger/aries-javascript-docs for how...
I get the following error when starting a new React project and setting up Android and App.js for Aries Framework: > None of these files exist: * node_modules\@aries-framework\core\build\agent\EventEmitter(.native|.android.js|.native.js|.js|.android.json|.native.json|.json|.android.ts|.native.ts|.ts|.android.tsx|.native.tsx|.tsx) * node_modules\@aries-framework\core\build\agent\EventEmitter\index(.native|.android.js|.native.js|.js|.android.json|.native.json|.json|.android.ts|.native.ts|.ts|.android.tsx|.native.tsx|.tsx)...
Im trying to convert the rest api to use AFJ interfaces. In this case im using the `OfferCredentialOptions` interface to offer a credential. ```typescript @Post('/offer-credential') public async offerCredential(@Body() options: OfferCredentialOptions)...
We are encountering multiple issues (with not an individual identifiable cause) when attempting to initiate mediation with a single mediator agent from up to 30 client agents simultaneously. Mediator agent...
We only start event listeners after an actions has been performed (sendProposal -> start proposal received listener) in most e2e tests, while we should be starting the listener before performing...
see [this PR comment for more detail](https://github.com/hyperledger/aries-framework-javascript/pull/830#discussion_r893463474) Happy to work on this.
In order to process connection-less proof request and wait for the underline message to be processed, it would be helpful if [MessageReceiver.receiveMessage](https://github.com/hyperledger/aries-framework-javascript/blob/245223acbc6f50de418b310025665e5c1316f1af/packages/core/src/agent/MessageReceiver.ts#L68) returns the underline `InboundMessageContext`. Notice that [Agent.receiveMessage](https://github.com/hyperledger/aries-framework-javascript/blob/245223acbc6f50de418b310025665e5c1316f1af/packages/core/src/agent/Agent.ts#L256) already...