├── .circleci └── config.yml ├── .github └── pull_request_template.md ├── .gitignore ├── README.md ├── checks ├── json_formatted.sh ├── json_pretty_print.sh └── verify_signature.sh ├── examples ├── correct │ └── delegates.json └── incorrect │ ├── badly_formatted │ ├── empty_file.json │ └── missaligned_file.json │ ├── incorrect_signature.json │ └── missing_signature.json ├── public └── delegates.json └── tooling ├── generate.py ├── requirements.txt └── verify_all.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/bittensor-delegates/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/bittensor-delegates/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/bittensor-delegates/HEAD/README.md -------------------------------------------------------------------------------- /checks/json_formatted.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/bittensor-delegates/HEAD/checks/json_formatted.sh -------------------------------------------------------------------------------- /checks/json_pretty_print.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/bittensor-delegates/HEAD/checks/json_pretty_print.sh -------------------------------------------------------------------------------- /checks/verify_signature.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/bittensor-delegates/HEAD/checks/verify_signature.sh -------------------------------------------------------------------------------- /examples/correct/delegates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/bittensor-delegates/HEAD/examples/correct/delegates.json -------------------------------------------------------------------------------- /examples/incorrect/badly_formatted/empty_file.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/incorrect/badly_formatted/missaligned_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/bittensor-delegates/HEAD/examples/incorrect/badly_formatted/missaligned_file.json -------------------------------------------------------------------------------- /examples/incorrect/incorrect_signature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/bittensor-delegates/HEAD/examples/incorrect/incorrect_signature.json -------------------------------------------------------------------------------- /examples/incorrect/missing_signature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/bittensor-delegates/HEAD/examples/incorrect/missing_signature.json -------------------------------------------------------------------------------- /public/delegates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/bittensor-delegates/HEAD/public/delegates.json -------------------------------------------------------------------------------- /tooling/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/bittensor-delegates/HEAD/tooling/generate.py -------------------------------------------------------------------------------- /tooling/requirements.txt: -------------------------------------------------------------------------------- 1 | bittensor 2 | -------------------------------------------------------------------------------- /tooling/verify_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/bittensor-delegates/HEAD/tooling/verify_all.py --------------------------------------------------------------------------------