signify-ts
signify-ts copied to clipboard
Typescript prototype of Simple KERI for Web Apps
The [endpoint on KERIA](https://github.com/WebOfTrust/keria/blob/a1a9b02ceda45fb83885f8ad97cc8de78cb96e45/src/keria/app/aiding.py#L1526) doesn't return a JSON response, so deleting via contact is throwing an error: ``` SyntaxError: Unexpected end of JSON input at JSON.parse () ``` I can...
This is a suggestion of an automated workflow for publishing npm packages. Process for publishing the development tags would be: 1. Create a PR for the next intended npm package...
To accompany https://github.com/WebOfTrust/keria/pull/198.
I have noticed it is inconvenient that the types returned from "identifiers().get()" is not exported by the package. This PR fixes that.
This PR includes multisig test join and illustrates the problem in https://github.com/WebOfTrust/signify-ts/issues/227. The integration test creates a multisig-group with 2 members and threshold 1. Member 1 adds a new member(member3)...
I've made a test where I try to add a third member to a already existing multisig with 2 members. When the third member tries to join the multisig the...
singlesig-vlei-issuance test has many useful schemas/data/functions that tests in singify-ts and tests that use signify-ts can benefit from. Refactor reusable parts into a test helper within src.
When creating an identifier with "special" characters, for example spaces or the "ö" letter used in Swedish and Finnish: ```js const alias = 'ö'; const result = await client.identifiers().create(alias, {});...
PR that follows KERIA [PR #218](https://github.com/WebOfTrust/keria/pull/218)
I did this as a step to try and resolve what was failing the multisig vlei test in #241. I found that there is a problem when an agent that...