├── .github └── ISSUE_TEMPLATE │ ├── config.yml │ └── docs-issue.md ├── .gitignore ├── .prettierrc ├── .yarnclean ├── README.md ├── babel.config.js ├── docusaurus.config.js ├── package.json ├── src ├── css │ └── custom.css └── pages │ └── index.js ├── static ├── .index.html ├── .nojekyll └── img │ ├── ArrowRight.png │ ├── bittensor-dev-docs-social-card.png │ ├── bittensor-docs-social-card.png │ ├── bt-docs-logo.svg │ ├── darkfeeling1.png │ ├── darkfeeling2.png │ ├── darkfeeling3.png │ ├── darkfeeling4.png │ ├── docs │ ├── 1-commit-reveal.png │ ├── 1-commit-reveal.svg │ ├── 1-operational-uses-of-keys.svg │ ├── 1-prompting-subnet-walkthrough.svg │ ├── 1-schedule-dissolve-network.png │ ├── 1-text-prompting-walkthrough.svg │ ├── 2-EVM-block-diagram.svg │ ├── 2-commit-reveal.png │ ├── 2-commit-reveal.svg │ ├── 2-prompting-subnet-high-level.svg │ ├── 2-schedule-dissolve-network.png │ ├── 2-text-prompting-walkthrough.svg │ ├── 3-prompting-subnet-high-level.svg │ ├── 3-prompting-subnet1-key-innovation.svg │ ├── 3-text-prompting-walkthrough.svg │ ├── Bittensor-ecosystem-top-level.svg │ ├── EVM-subtensor-block-diagram.svg │ ├── OCR-high-level.svg │ ├── bittensor-block-diagram.svg │ ├── building-blocks-first.svg │ ├── child-hotkey-fig1.svg │ ├── coldkey-hotkey-pairing.svg │ ├── components-of-incentive-mechanism.svg │ ├── dark-1-commit-reveal.svg │ ├── dark-1-operational-uses-of-keys.svg │ ├── dark-1-prompting-subnet-walkthrough.svg │ ├── dark-1-text-prompting-walkthrough.svg │ ├── dark-2-EVM-block-diagram.svg │ ├── dark-2-commit-reveal.svg │ ├── dark-2-prompting-subnet-high-level.svg │ ├── dark-2-text-prompting-walkthrough.svg │ ├── dark-3-prompting-subnet1-key-innovation.svg │ ├── dark-3-text-prompting-walkthrough.svg │ ├── dark-Bittensor-ecosystem-top-level.svg │ ├── dark-EVM-subtensor-block-diagram.svg │ ├── dark-OCR-high-level.svg │ ├── dark-bittensor-block-diagram.svg │ ├── dark-building-blocks-first.svg │ ├── dark-child-hotkey-fig1.svg │ ├── dark-components-of-incentive-mechanism.svg │ ├── dark-delegate-example.svg │ ├── dark-distribution-of-rewards-big-picture.svg │ ├── dark-fig2-child-hotkey.svg │ ├── dark-local-subtensor.svg │ ├── dark-miner-deregistration.svg │ ├── dark-second-building-blocks.svg │ ├── dark-subnet-deploy-stages.svg │ ├── dark-subnet-high-level.svg │ ├── delegate-example.svg │ ├── distribution-of-rewards-big-picture.svg │ ├── dynamic-tao │ │ ├── alpha-and-alpha-out.svg │ │ ├── curves.png │ │ ├── dark-alpha-and-alpha-out.svg │ │ ├── dark-emissions-dynamic-tao.svg │ │ ├── dark-fifty-one-percent-example.svg │ │ ├── dark-staking-subnet-pools.svg │ │ ├── dark-subnet-pools.svg │ │ ├── dark-unstaking-subnet-pools.svg │ │ ├── emissions-dynamic-tao.svg │ │ ├── fifty-one-percent-example.svg │ │ ├── staking-subnet-pools.svg │ │ ├── subnet-pools.svg │ │ └── unstaking-subnet-pools.svg │ ├── fig2-child-hotkey.svg │ ├── ledger-hw-wallet │ │ ├── Ledger │ │ │ ├── Ledger-4.7a.jpg │ │ │ ├── Ledger-4.7b.jpg │ │ │ ├── Ledger-4.7c.jpg │ │ │ ├── Ledger-4.7d.jpg │ │ │ └── Ledger-4.7e.jpg │ │ └── Talisman │ │ │ ├── Talisman-1.3.png │ │ │ ├── Talisman-1.4.png │ │ │ ├── Talisman-1.4a.png │ │ │ ├── Talisman-1.5.png │ │ │ ├── Talisman-1.5a.png │ │ │ ├── Talisman-1.last.png │ │ │ ├── Talisman-1.last2.png │ │ │ ├── Talisman-3.1.png │ │ │ ├── Talisman-3.2.png │ │ │ ├── Talisman-3.3.png │ │ │ ├── Talisman-4.1.png │ │ │ ├── Talisman-4.3.png │ │ │ ├── Talisman-4.4.png │ │ │ ├── Talisman-4.5.png │ │ │ ├── Talisman-4.6.png │ │ │ └── Talisman-4.8.png │ ├── list_delegates_screenshot.png │ ├── local-subtensor.svg │ ├── miner-deregistration.svg │ ├── schedule-coldkey-swap-polkadotapp.png │ ├── second-building-blocks.svg │ ├── step1.png │ ├── step2.png │ ├── step3.png │ ├── step4.png │ ├── step5.png │ ├── step6.png │ ├── step7.png │ ├── subnet-deploy-stages.svg │ └── subnet-high-level.svg │ ├── docusaurus-social-card.jpg │ ├── docusaurus.png │ ├── favicon.ico │ ├── feelings1.png │ ├── feelings2.png │ ├── feelings3.png │ ├── feelings4.png │ ├── list_delegates.png │ ├── list_proposals.png │ ├── logo-dark-mode.svg │ ├── logo.svg │ ├── slice.png │ ├── slice.svg │ ├── tao-logo.png │ ├── undraw_docusaurus_mountain.svg │ ├── undraw_docusaurus_react.svg │ └── undraw_docusaurus_tree.svg ├── vercel.json └── yarn.lock /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | labels: "Docs" 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/.github/ISSUE_TEMPLATE/docs-issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarnclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/.yarnclean -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/babel.config.js -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/package.json -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /static/.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/.index.html -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/ArrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/ArrowRight.png -------------------------------------------------------------------------------- /static/img/bittensor-dev-docs-social-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/bittensor-dev-docs-social-card.png -------------------------------------------------------------------------------- /static/img/bittensor-docs-social-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/bittensor-docs-social-card.png -------------------------------------------------------------------------------- /static/img/bt-docs-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/bt-docs-logo.svg -------------------------------------------------------------------------------- /static/img/darkfeeling1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/darkfeeling1.png -------------------------------------------------------------------------------- /static/img/darkfeeling2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/darkfeeling2.png -------------------------------------------------------------------------------- /static/img/darkfeeling3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/darkfeeling3.png -------------------------------------------------------------------------------- /static/img/darkfeeling4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/darkfeeling4.png -------------------------------------------------------------------------------- /static/img/docs/1-commit-reveal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/1-commit-reveal.png -------------------------------------------------------------------------------- /static/img/docs/1-commit-reveal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/1-commit-reveal.svg -------------------------------------------------------------------------------- /static/img/docs/1-operational-uses-of-keys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/1-operational-uses-of-keys.svg -------------------------------------------------------------------------------- /static/img/docs/1-prompting-subnet-walkthrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/1-prompting-subnet-walkthrough.svg -------------------------------------------------------------------------------- /static/img/docs/1-schedule-dissolve-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/1-schedule-dissolve-network.png -------------------------------------------------------------------------------- /static/img/docs/1-text-prompting-walkthrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/1-text-prompting-walkthrough.svg -------------------------------------------------------------------------------- /static/img/docs/2-EVM-block-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/2-EVM-block-diagram.svg -------------------------------------------------------------------------------- /static/img/docs/2-commit-reveal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/2-commit-reveal.png -------------------------------------------------------------------------------- /static/img/docs/2-commit-reveal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/2-commit-reveal.svg -------------------------------------------------------------------------------- /static/img/docs/2-prompting-subnet-high-level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/2-prompting-subnet-high-level.svg -------------------------------------------------------------------------------- /static/img/docs/2-schedule-dissolve-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/2-schedule-dissolve-network.png -------------------------------------------------------------------------------- /static/img/docs/2-text-prompting-walkthrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/2-text-prompting-walkthrough.svg -------------------------------------------------------------------------------- /static/img/docs/3-prompting-subnet-high-level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/3-prompting-subnet-high-level.svg -------------------------------------------------------------------------------- /static/img/docs/3-prompting-subnet1-key-innovation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/3-prompting-subnet1-key-innovation.svg -------------------------------------------------------------------------------- /static/img/docs/3-text-prompting-walkthrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/3-text-prompting-walkthrough.svg -------------------------------------------------------------------------------- /static/img/docs/Bittensor-ecosystem-top-level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/Bittensor-ecosystem-top-level.svg -------------------------------------------------------------------------------- /static/img/docs/EVM-subtensor-block-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/EVM-subtensor-block-diagram.svg -------------------------------------------------------------------------------- /static/img/docs/OCR-high-level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/OCR-high-level.svg -------------------------------------------------------------------------------- /static/img/docs/bittensor-block-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/bittensor-block-diagram.svg -------------------------------------------------------------------------------- /static/img/docs/building-blocks-first.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/building-blocks-first.svg -------------------------------------------------------------------------------- /static/img/docs/child-hotkey-fig1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/child-hotkey-fig1.svg -------------------------------------------------------------------------------- /static/img/docs/coldkey-hotkey-pairing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/coldkey-hotkey-pairing.svg -------------------------------------------------------------------------------- /static/img/docs/components-of-incentive-mechanism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/components-of-incentive-mechanism.svg -------------------------------------------------------------------------------- /static/img/docs/dark-1-commit-reveal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-1-commit-reveal.svg -------------------------------------------------------------------------------- /static/img/docs/dark-1-operational-uses-of-keys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-1-operational-uses-of-keys.svg -------------------------------------------------------------------------------- /static/img/docs/dark-1-prompting-subnet-walkthrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-1-prompting-subnet-walkthrough.svg -------------------------------------------------------------------------------- /static/img/docs/dark-1-text-prompting-walkthrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-1-text-prompting-walkthrough.svg -------------------------------------------------------------------------------- /static/img/docs/dark-2-EVM-block-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-2-EVM-block-diagram.svg -------------------------------------------------------------------------------- /static/img/docs/dark-2-commit-reveal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-2-commit-reveal.svg -------------------------------------------------------------------------------- /static/img/docs/dark-2-prompting-subnet-high-level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-2-prompting-subnet-high-level.svg -------------------------------------------------------------------------------- /static/img/docs/dark-2-text-prompting-walkthrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-2-text-prompting-walkthrough.svg -------------------------------------------------------------------------------- /static/img/docs/dark-3-prompting-subnet1-key-innovation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-3-prompting-subnet1-key-innovation.svg -------------------------------------------------------------------------------- /static/img/docs/dark-3-text-prompting-walkthrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-3-text-prompting-walkthrough.svg -------------------------------------------------------------------------------- /static/img/docs/dark-Bittensor-ecosystem-top-level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-Bittensor-ecosystem-top-level.svg -------------------------------------------------------------------------------- /static/img/docs/dark-EVM-subtensor-block-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-EVM-subtensor-block-diagram.svg -------------------------------------------------------------------------------- /static/img/docs/dark-OCR-high-level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-OCR-high-level.svg -------------------------------------------------------------------------------- /static/img/docs/dark-bittensor-block-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-bittensor-block-diagram.svg -------------------------------------------------------------------------------- /static/img/docs/dark-building-blocks-first.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-building-blocks-first.svg -------------------------------------------------------------------------------- /static/img/docs/dark-child-hotkey-fig1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-child-hotkey-fig1.svg -------------------------------------------------------------------------------- /static/img/docs/dark-components-of-incentive-mechanism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-components-of-incentive-mechanism.svg -------------------------------------------------------------------------------- /static/img/docs/dark-delegate-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-delegate-example.svg -------------------------------------------------------------------------------- /static/img/docs/dark-distribution-of-rewards-big-picture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-distribution-of-rewards-big-picture.svg -------------------------------------------------------------------------------- /static/img/docs/dark-fig2-child-hotkey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-fig2-child-hotkey.svg -------------------------------------------------------------------------------- /static/img/docs/dark-local-subtensor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-local-subtensor.svg -------------------------------------------------------------------------------- /static/img/docs/dark-miner-deregistration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-miner-deregistration.svg -------------------------------------------------------------------------------- /static/img/docs/dark-second-building-blocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-second-building-blocks.svg -------------------------------------------------------------------------------- /static/img/docs/dark-subnet-deploy-stages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-subnet-deploy-stages.svg -------------------------------------------------------------------------------- /static/img/docs/dark-subnet-high-level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dark-subnet-high-level.svg -------------------------------------------------------------------------------- /static/img/docs/delegate-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/delegate-example.svg -------------------------------------------------------------------------------- /static/img/docs/distribution-of-rewards-big-picture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/distribution-of-rewards-big-picture.svg -------------------------------------------------------------------------------- /static/img/docs/dynamic-tao/alpha-and-alpha-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dynamic-tao/alpha-and-alpha-out.svg -------------------------------------------------------------------------------- /static/img/docs/dynamic-tao/curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dynamic-tao/curves.png -------------------------------------------------------------------------------- /static/img/docs/dynamic-tao/dark-alpha-and-alpha-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dynamic-tao/dark-alpha-and-alpha-out.svg -------------------------------------------------------------------------------- /static/img/docs/dynamic-tao/dark-emissions-dynamic-tao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dynamic-tao/dark-emissions-dynamic-tao.svg -------------------------------------------------------------------------------- /static/img/docs/dynamic-tao/dark-fifty-one-percent-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dynamic-tao/dark-fifty-one-percent-example.svg -------------------------------------------------------------------------------- /static/img/docs/dynamic-tao/dark-staking-subnet-pools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dynamic-tao/dark-staking-subnet-pools.svg -------------------------------------------------------------------------------- /static/img/docs/dynamic-tao/dark-subnet-pools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dynamic-tao/dark-subnet-pools.svg -------------------------------------------------------------------------------- /static/img/docs/dynamic-tao/dark-unstaking-subnet-pools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dynamic-tao/dark-unstaking-subnet-pools.svg -------------------------------------------------------------------------------- /static/img/docs/dynamic-tao/emissions-dynamic-tao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dynamic-tao/emissions-dynamic-tao.svg -------------------------------------------------------------------------------- /static/img/docs/dynamic-tao/fifty-one-percent-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dynamic-tao/fifty-one-percent-example.svg -------------------------------------------------------------------------------- /static/img/docs/dynamic-tao/staking-subnet-pools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dynamic-tao/staking-subnet-pools.svg -------------------------------------------------------------------------------- /static/img/docs/dynamic-tao/subnet-pools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dynamic-tao/subnet-pools.svg -------------------------------------------------------------------------------- /static/img/docs/dynamic-tao/unstaking-subnet-pools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/dynamic-tao/unstaking-subnet-pools.svg -------------------------------------------------------------------------------- /static/img/docs/fig2-child-hotkey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/fig2-child-hotkey.svg -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Ledger/Ledger-4.7a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Ledger/Ledger-4.7a.jpg -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Ledger/Ledger-4.7b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Ledger/Ledger-4.7b.jpg -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Ledger/Ledger-4.7c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Ledger/Ledger-4.7c.jpg -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Ledger/Ledger-4.7d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Ledger/Ledger-4.7d.jpg -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Ledger/Ledger-4.7e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Ledger/Ledger-4.7e.jpg -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-1.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-1.3.png -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-1.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-1.4.png -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-1.4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-1.4a.png -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-1.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-1.5.png -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-1.5a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-1.5a.png -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-1.last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-1.last.png -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-1.last2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-1.last2.png -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-3.1.png -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-3.2.png -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-3.3.png -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-4.1.png -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-4.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-4.3.png -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-4.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-4.4.png -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-4.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-4.5.png -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-4.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-4.6.png -------------------------------------------------------------------------------- /static/img/docs/ledger-hw-wallet/Talisman/Talisman-4.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/ledger-hw-wallet/Talisman/Talisman-4.8.png -------------------------------------------------------------------------------- /static/img/docs/list_delegates_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/list_delegates_screenshot.png -------------------------------------------------------------------------------- /static/img/docs/local-subtensor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/local-subtensor.svg -------------------------------------------------------------------------------- /static/img/docs/miner-deregistration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/miner-deregistration.svg -------------------------------------------------------------------------------- /static/img/docs/schedule-coldkey-swap-polkadotapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/schedule-coldkey-swap-polkadotapp.png -------------------------------------------------------------------------------- /static/img/docs/second-building-blocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/second-building-blocks.svg -------------------------------------------------------------------------------- /static/img/docs/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/step1.png -------------------------------------------------------------------------------- /static/img/docs/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/step2.png -------------------------------------------------------------------------------- /static/img/docs/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/step3.png -------------------------------------------------------------------------------- /static/img/docs/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/step4.png -------------------------------------------------------------------------------- /static/img/docs/step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/step5.png -------------------------------------------------------------------------------- /static/img/docs/step6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/step6.png -------------------------------------------------------------------------------- /static/img/docs/step7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/step7.png -------------------------------------------------------------------------------- /static/img/docs/subnet-deploy-stages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/subnet-deploy-stages.svg -------------------------------------------------------------------------------- /static/img/docs/subnet-high-level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docs/subnet-high-level.svg -------------------------------------------------------------------------------- /static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/docusaurus.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/feelings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/feelings1.png -------------------------------------------------------------------------------- /static/img/feelings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/feelings2.png -------------------------------------------------------------------------------- /static/img/feelings3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/feelings3.png -------------------------------------------------------------------------------- /static/img/feelings4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/feelings4.png -------------------------------------------------------------------------------- /static/img/list_delegates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/list_delegates.png -------------------------------------------------------------------------------- /static/img/list_proposals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/list_proposals.png -------------------------------------------------------------------------------- /static/img/logo-dark-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/logo-dark-mode.svg -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/img/slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/slice.png -------------------------------------------------------------------------------- /static/img/slice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/slice.svg -------------------------------------------------------------------------------- /static/img/tao-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/tao-logo.png -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/developer-docs/HEAD/yarn.lock --------------------------------------------------------------------------------