aries-framework-go
aries-framework-go copied to clipboard
Hyperledger Aries Framework Go provides packages for building Agent / DIDComm services.
Signed-off-by: Minh Huy, Tran Use the following template for your PR (make sure you follow our [guidelines](CONTRIBUTING.md#pull-request): **Title:** Update outdated doc.go **Description:** The package for checking CredentialMsgType is currently not...
**What I'm trying to do** I am trying to run OpenAPI demo (https://github.com/hyperledger/aries-framework-go/blob/master/docs/rest/openapi_demo.md). I am using Windows 10 with Ubuntu 20.04 LTS and Docker Desktop (WSL 2). **Expected result** Two...
Need to add a support of the next structure of services in DID doc: ``` "service": [ { "id": "#linkeddomains", "type": "LinkedDomains", "serviceEndpoint": { "origins": [ "https://did.rohitgulati.com/" ] } },...
The `check_bbs_interop.sh` script used to copy the `wasm_exec.js` file directly from `$GOROOT/misc/wasm/wasm_exec.js`. However, the latest version of Go works differently in that the functionality in `wasm_exec.js` has been reworked to...
As part of #3413, the protobuf type was updated from `github.com/golang/protobuf` to `google.golang.org/protobuf`. However, there are some places where the older type from `github.com/golang/protobuf` is still being used (namely, the...
As part of #3418, various linters were disabled temporarily. These linters should be re-enabled (and any failing code updated), especially `gosec` and `staticcheck`, both of which are currently reporting some...
Aries Framework Go has disabled URI type validation in Verifiable Presentation to support interop with various other Verifiable Presentation data model providers. This validation has to be brought back to...
Current aries presentation exchange implementation doesn't support `path_nested` in `presentation_submission `. We need to implement this feature in order to interop with various other presentation exchange implementations.
Requirements: * all incoming messages going through the messenger package first (at least this is needed for counting received_orders) * provide functions needed for sending a message (functions will be...