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.
# DIF PE v2.0 Implementation in ACA-Py - Links to specification - [v2.0](https://identity.foundation/presentation-exchange), current status is `working group draft` - [v1.0](https://identity.foundation/presentation-exchange/spec/v1.0.0), currently supported in ACA-Py ## Major differences from v1.0...
We are trying to use ACA-Py with multitenancy enabled (using Askar with Postgres for storage). The current implementation of multitenancy is limiting for our use case because it creates a...
Add a persistence mechanism to the event queue. Currently events are stored in an in-memory queue, which is lost if the agent re-starts, and is not available between agent instances...
If we increase the minimum required Python version to 3.7, then we can support the use of [contextvars](https://docs.python.org/3/library/contextvars.html). I'm not sure what an implementation would look like yet, but this...
The Getting Started Document https://github.com/hyperledger/aries-cloudagent-python/tree/master/docs/GettingStartedAriesDev Lists several documents that are To Do items: Request filling in. Especially the credential attributes to better understand how to use Sovrin ZCP credentials. To...
I'm just implementing the TAA acceptance handling in an acapy controller (Django Web App). I found some problems in how acapy is handling the acceptance: 1.) there is no proper...
I'm trying to provision (create wallet) an aca-py agent and tried to set the ledger to read-only. According to the --help output and the respective code, in provision mode there...
When ACA-Py is shutdown because of an error it does not shutdown the process. I just get the following error: ``` 503: Shutdown in progress ``` Is this intentional /...
When creating a schema with the following body: ``` { "attributes": [ "version_error" ], "schema_name": "version_error", "schema_version": "1" } ``` You get the following error: ``` 400: Ledger rejected transaction...
I have moved to passing all agent configuration in through an .env file. However, when trying to set mediation using this argument, which does seem to be correct from the...