aries-cloudagent-python
aries-cloudagent-python copied to clipboard
Hyperledger Aries Cloud Agent Python (ACA-Py) is a foundation for building decentralized identity applications and services running in non-mobile environments.
I am using aca-py with a controller and bifold. When I try to use action menu the aca- py terminal shows problem report stating "No message class found for message...
I was ran the demo [AliceWantsAJsonCredential.md](https://github.com/hyperledger/aries-cloudagent-python/blob/main/demo/AliceWantsAJsonCredential.md) using an Ed25519Signature2081, I noticed two things that I wonder about. First, when I put in Alice's `did:key`(in my case: `did:key:z6MksTBMW4EeA9hQUYcXSDYmzaKV4fD972b9VL5pGBBPcf2G`) in the `id`...
> This is a brainstorming issue -- the ideas here may or may not make sense. Please note the deficiencies and suggest improvements. We have the use case of an...
Some request schemas are defined with custom Marshmallow types, such as in the CredentialSchema: ```py class CredentialSchema(BaseModelSchema): ... context = fields.List( UriOrDictField( required=True, ), data_key="@context", required=True, description="The JSON-LD context of...
Hi all, I am new to the Hyperledger Aries space and am attempting to walk through some basic connection and issuance steps between two agents, Alice and Bob. I am...
This is a rebased version of #2033. Thank you for your contributions, @Przytua! I think these changes are likely to be better suited to a new endpoint (i.e. `POST /present-proof/{pres_ex_id}/counter-request`...
Related issue on anoncreds-rs: https://github.com/hyperledger/anoncreds-rs/issues/202 The link secret is a sensitive value that should be carefully handled to reduce the chances of compromising it. Commonly, sensitive values like private keys...
We (Sherman) have implemented a plugin in Traction that simply allows an update to a connections alias. https://github.com/bcgov/traction/tree/main/plugins/connection_update Why such a simple, single-use plugin? 1. had a requirement for it...
See: https://github.com/hyperledger/aries-cloudagent-python/blob/anoncreds-rs/aries_cloudagent/anoncreds/issuer.py#L232-L255 And: https://github.com/hyperledger/aries-cloudagent-python/blob/anoncreds-rs/aries_cloudagent/anoncreds/issuer.py#L417-L446 This is similar in behavior to the current interface but as you can see it is using `fetch_all` to retrieve all of the matching records. In...
Hi, First and foremost thank you for the incredible amount of works that you have done in that area 🚀 . Do you plan to implement the full implementation of...