├── .clabot ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ ├── dictionary.txt │ ├── linkcheck.cfg.json │ ├── linkcheck.yml │ └── spellcheck.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Community_Specification_License-v1.md ├── Governance.md ├── LICENSE ├── Notices.md ├── README.md ├── Scope.md ├── UPGRADE_GUIDE.md └── common.md /.clabot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/.clabot -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipldsch linguist-language=OCaml 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/.github/workflows/dictionary.txt -------------------------------------------------------------------------------- /.github/workflows/linkcheck.cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/.github/workflows/linkcheck.cfg.json -------------------------------------------------------------------------------- /.github/workflows/linkcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/.github/workflows/linkcheck.yml -------------------------------------------------------------------------------- /.github/workflows/spellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/.github/workflows/spellcheck.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Community_Specification_License-v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/Community_Specification_License-v1.md -------------------------------------------------------------------------------- /Governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/Governance.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/LICENSE -------------------------------------------------------------------------------- /Notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/Notices.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/README.md -------------------------------------------------------------------------------- /Scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/Scope.md -------------------------------------------------------------------------------- /UPGRADE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/UPGRADE_GUIDE.md -------------------------------------------------------------------------------- /common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainAgnostic/varsig/HEAD/common.md --------------------------------------------------------------------------------