├── .clabot ├── .custom-words.txt ├── .github ├── CODEOWNERS └── workflows │ ├── linkcheck.yml │ └── spellcheck.yml ├── .spellcheck.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Community_Specification_License-v1.md ├── Governance.md ├── LICENSE ├── Notices.md ├── README.md ├── Scope.md ├── design ├── README.md ├── cid_configuration.md └── cryptosuite.md └── fixtures ├── 0.7.0 └── fixtures.json ├── 0.8.1 ├── invalid.json └── valid.json └── 1.0.0 ├── delegation.json ├── invocation.json └── policy.json /.clabot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/.clabot -------------------------------------------------------------------------------- /.custom-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/.custom-words.txt -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/linkcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/.github/workflows/linkcheck.yml -------------------------------------------------------------------------------- /.github/workflows/spellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/.github/workflows/spellcheck.yml -------------------------------------------------------------------------------- /.spellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/.spellcheck.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Community_Specification_License-v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/Community_Specification_License-v1.md -------------------------------------------------------------------------------- /Governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/Governance.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/LICENSE -------------------------------------------------------------------------------- /Notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/Notices.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/README.md -------------------------------------------------------------------------------- /Scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/Scope.md -------------------------------------------------------------------------------- /design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/design/README.md -------------------------------------------------------------------------------- /design/cid_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/design/cid_configuration.md -------------------------------------------------------------------------------- /design/cryptosuite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/design/cryptosuite.md -------------------------------------------------------------------------------- /fixtures/0.7.0/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/fixtures/0.7.0/fixtures.json -------------------------------------------------------------------------------- /fixtures/0.8.1/invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/fixtures/0.8.1/invalid.json -------------------------------------------------------------------------------- /fixtures/0.8.1/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/fixtures/0.8.1/valid.json -------------------------------------------------------------------------------- /fixtures/1.0.0/delegation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/fixtures/1.0.0/delegation.json -------------------------------------------------------------------------------- /fixtures/1.0.0/invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/fixtures/1.0.0/invocation.json -------------------------------------------------------------------------------- /fixtures/1.0.0/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ucan-wg/spec/HEAD/fixtures/1.0.0/policy.json --------------------------------------------------------------------------------