├── .github └── dependabot.yml ├── .gitignore ├── .python-version ├── LICENSE ├── Makefile ├── README.md ├── akta ├── cli.py ├── commands │ ├── __init__.py │ ├── claim.py │ ├── keys.py │ ├── registry.py │ ├── token.py │ └── vdr.py ├── config.py ├── credentials.py ├── did.py ├── exceptions.py ├── logging.py ├── models.py ├── server.py ├── test_agent │ └── router.py ├── utils.py ├── utils │ └── key_utils.py └── vdr │ ├── __init__.py │ ├── crud.py │ ├── database.py │ ├── models.py │ ├── router.py │ └── schemas.py ├── pyproject.toml ├── pytest.ini ├── static ├── akta-logo-dark.png └── akta-logo-light.png ├── test_delegation_workflow.sh ├── tests ├── commands │ ├── test_claim.py │ ├── test_keys.py │ ├── test_registry.py │ ├── test_token.py │ └── test_vdr.py └── test_cli.py └── uv.lock /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/README.md -------------------------------------------------------------------------------- /akta/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/cli.py -------------------------------------------------------------------------------- /akta/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /akta/commands/claim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/commands/claim.py -------------------------------------------------------------------------------- /akta/commands/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/commands/keys.py -------------------------------------------------------------------------------- /akta/commands/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/commands/registry.py -------------------------------------------------------------------------------- /akta/commands/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/commands/token.py -------------------------------------------------------------------------------- /akta/commands/vdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/commands/vdr.py -------------------------------------------------------------------------------- /akta/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/config.py -------------------------------------------------------------------------------- /akta/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/credentials.py -------------------------------------------------------------------------------- /akta/did.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/did.py -------------------------------------------------------------------------------- /akta/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/exceptions.py -------------------------------------------------------------------------------- /akta/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/logging.py -------------------------------------------------------------------------------- /akta/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/models.py -------------------------------------------------------------------------------- /akta/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/server.py -------------------------------------------------------------------------------- /akta/test_agent/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/test_agent/router.py -------------------------------------------------------------------------------- /akta/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/utils.py -------------------------------------------------------------------------------- /akta/utils/key_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/utils/key_utils.py -------------------------------------------------------------------------------- /akta/vdr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /akta/vdr/crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/vdr/crud.py -------------------------------------------------------------------------------- /akta/vdr/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/vdr/database.py -------------------------------------------------------------------------------- /akta/vdr/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/vdr/models.py -------------------------------------------------------------------------------- /akta/vdr/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/vdr/router.py -------------------------------------------------------------------------------- /akta/vdr/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/akta/vdr/schemas.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/pytest.ini -------------------------------------------------------------------------------- /static/akta-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/static/akta-logo-dark.png -------------------------------------------------------------------------------- /static/akta-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/static/akta-logo-light.png -------------------------------------------------------------------------------- /test_delegation_workflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/test_delegation_workflow.sh -------------------------------------------------------------------------------- /tests/commands/test_claim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/tests/commands/test_claim.py -------------------------------------------------------------------------------- /tests/commands/test_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/tests/commands/test_keys.py -------------------------------------------------------------------------------- /tests/commands/test_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/tests/commands/test_registry.py -------------------------------------------------------------------------------- /tests/commands/test_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/tests/commands/test_token.py -------------------------------------------------------------------------------- /tests/commands/test_vdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/tests/commands/test_vdr.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/always-further/akta/HEAD/uv.lock --------------------------------------------------------------------------------