├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .flake8 ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── PR.yaml │ ├── PublishRelease.yaml │ ├── Push.yaml │ ├── Releasepr.yaml │ ├── Tag.yaml │ ├── repoDispatchable_updateNodeDependency.yaml │ ├── repoDispatchable_updateTokenPluginDependency.yaml │ ├── reuseable_build_package.yaml │ └── reuseable_publish.yaml ├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── .vscode └── settings.json ├── Jenkinsfile ├── Jenkinsfile.nightly ├── LICENSE ├── MANIFEST.in ├── README.md ├── TAA ├── AML.md ├── README.md └── TAA.md ├── _config.yml ├── banner.png ├── collateral ├── sovrin-logo-tagline.png ├── sovrin-logo-tagline.svg ├── sovrin-logo.png └── sovrin-logo.svg ├── conf.py ├── docs ├── Makefile ├── acceptance.md ├── index.rst └── release.md ├── release-notes.md ├── setup.py ├── sovrin ├── __init__.py ├── __metadata__.py ├── domain_transactions_builder_genesis ├── domain_transactions_live_genesis ├── domain_transactions_local_genesis ├── domain_transactions_sandbox_genesis ├── metadata.json ├── pool_transactions_builder_genesis ├── pool_transactions_live_genesis ├── pool_transactions_local_genesis ├── pool_transactions_sandbox_genesis └── pool_transactions_training_genesis ├── spec └── did-method-spec-template.html └── updateVersion.py /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/PR.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.github/workflows/PR.yaml -------------------------------------------------------------------------------- /.github/workflows/PublishRelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.github/workflows/PublishRelease.yaml -------------------------------------------------------------------------------- /.github/workflows/Push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.github/workflows/Push.yaml -------------------------------------------------------------------------------- /.github/workflows/Releasepr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.github/workflows/Releasepr.yaml -------------------------------------------------------------------------------- /.github/workflows/Tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.github/workflows/Tag.yaml -------------------------------------------------------------------------------- /.github/workflows/repoDispatchable_updateNodeDependency.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.github/workflows/repoDispatchable_updateNodeDependency.yaml -------------------------------------------------------------------------------- /.github/workflows/repoDispatchable_updateTokenPluginDependency.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.github/workflows/repoDispatchable_updateTokenPluginDependency.yaml -------------------------------------------------------------------------------- /.github/workflows/reuseable_build_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.github/workflows/reuseable_build_package.yaml -------------------------------------------------------------------------------- /.github/workflows/reuseable_publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.github/workflows/reuseable_publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | toc.rst -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.gitpod.Dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.eol": "\n" 3 | } -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /Jenkinsfile.nightly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/Jenkinsfile.nightly -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include sovrin * 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/README.md -------------------------------------------------------------------------------- /TAA/AML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/TAA/AML.md -------------------------------------------------------------------------------- /TAA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/TAA/README.md -------------------------------------------------------------------------------- /TAA/TAA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/TAA/TAA.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/_config.yml -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/banner.png -------------------------------------------------------------------------------- /collateral/sovrin-logo-tagline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/collateral/sovrin-logo-tagline.png -------------------------------------------------------------------------------- /collateral/sovrin-logo-tagline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/collateral/sovrin-logo-tagline.svg -------------------------------------------------------------------------------- /collateral/sovrin-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/collateral/sovrin-logo.png -------------------------------------------------------------------------------- /collateral/sovrin-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/collateral/sovrin-logo.svg -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/conf.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/acceptance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/docs/acceptance.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/docs/release.md -------------------------------------------------------------------------------- /release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/release-notes.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/setup.py -------------------------------------------------------------------------------- /sovrin/__init__.py: -------------------------------------------------------------------------------- 1 | from .__metadata__ import * # noqa 2 | -------------------------------------------------------------------------------- /sovrin/__metadata__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/sovrin/__metadata__.py -------------------------------------------------------------------------------- /sovrin/domain_transactions_builder_genesis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/sovrin/domain_transactions_builder_genesis -------------------------------------------------------------------------------- /sovrin/domain_transactions_live_genesis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/sovrin/domain_transactions_live_genesis -------------------------------------------------------------------------------- /sovrin/domain_transactions_local_genesis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/sovrin/domain_transactions_local_genesis -------------------------------------------------------------------------------- /sovrin/domain_transactions_sandbox_genesis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/sovrin/domain_transactions_sandbox_genesis -------------------------------------------------------------------------------- /sovrin/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/sovrin/metadata.json -------------------------------------------------------------------------------- /sovrin/pool_transactions_builder_genesis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/sovrin/pool_transactions_builder_genesis -------------------------------------------------------------------------------- /sovrin/pool_transactions_live_genesis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/sovrin/pool_transactions_live_genesis -------------------------------------------------------------------------------- /sovrin/pool_transactions_local_genesis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/sovrin/pool_transactions_local_genesis -------------------------------------------------------------------------------- /sovrin/pool_transactions_sandbox_genesis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/sovrin/pool_transactions_sandbox_genesis -------------------------------------------------------------------------------- /sovrin/pool_transactions_training_genesis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/sovrin/pool_transactions_training_genesis -------------------------------------------------------------------------------- /spec/did-method-spec-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/spec/did-method-spec-template.html -------------------------------------------------------------------------------- /updateVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sovrin-foundation/sovrin/HEAD/updateVersion.py --------------------------------------------------------------------------------