├── .github └── workflows │ ├── deploy-to-gh-pages.yml │ └── test-build.yml ├── .gitignore ├── .vscode ├── ltex.dictionary.en-US.txt └── ltex.hiddenFalsePositives.en-US.txt ├── LICENSE ├── README.md ├── babel.config.js ├── docs ├── 1-overview.md ├── 2-introduction │ ├── _category_.json │ ├── chain-info.md │ └── introduction.md ├── 3-smart-contract-features │ ├── 1-data-access.md │ ├── 2-native-entropy.md │ ├── 3-native-commit-reveal.md │ ├── 4-transaction-timestamp.md │ └── _category_.json ├── 4-write-ten-dapp │ ├── 1-high-level-concepts.md │ ├── 2-setup-dev-env.md │ ├── 3-network-setup.md │ ├── 4-session-keys.md │ ├── 5-bridging.md │ ├── 6-testnet.md │ ├── 7-sample-dapps.md │ ├── 8-tutorial.md │ └── _category_.json ├── 5-run-ten-node │ ├── _category_.json │ ├── node-architecture.md │ ├── overview.md │ ├── rewards.md │ └── running-a-node.md ├── 6-governance │ ├── _category_.json │ ├── governance.md │ └── ten-network-association │ │ ├── _category_.json │ │ ├── airdrop.md │ │ ├── association.md │ │ ├── delegation.md │ │ ├── ten-token.md │ │ └── tip.md ├── 7-release-notes.md ├── assets │ ├── battleships.png │ ├── bug-reports-1.jpg │ ├── bug-reports-2.jpg │ ├── bug-reports-3.jpg │ ├── bug-reports-gif.gif │ ├── crash.png │ ├── faucet.png │ ├── faucet.ten.xyz.jpg │ ├── gateway.png │ ├── guessing-game.png │ ├── l1-l2-interaction.png │ ├── obscuroscan.png │ ├── overview-banner.png │ ├── ten-validator-composition.png │ ├── ten-validator-flow.png │ └── trickly.png ├── micar-white-papers │ ├── _category_.json │ └── trading-whitepaper.md └── security-audit │ ├── _category_.json │ └── security-audit.md ├── docusaurus.config.js ├── env.example ├── package.json ├── sidebars.js ├── src ├── components │ ├── HomepageFeatures │ │ ├── index.js │ │ └── styles.module.css │ └── ReleaseNotes │ │ ├── ReleaseNotesList.css │ │ └── ReleaseNotesList.js ├── css │ └── custom.css ├── pages │ ├── index.js │ ├── index.module.css │ └── markdown-page.md └── theme │ └── Footer │ ├── Copyright │ └── index.js │ ├── Layout │ └── index.js │ ├── LinkItem │ └── index.js │ ├── Links │ ├── MultiColumn │ │ └── index.js │ ├── Simple │ │ └── index.js │ └── index.js │ ├── Logo │ ├── index.js │ └── styles.module.css │ └── index.js └── static ├── .nojekyll ├── halborn-audit-ten.pdf ├── img ├── docusaurus-social-card.jpg.png ├── docusaurus.png ├── encrypted.png ├── favicon.ico ├── great-ux-dx.png ├── logo-white.svg ├── logo.svg ├── scale.png ├── undraw_docusaurus_mountain.svg ├── undraw_docusaurus_react.svg └── undraw_docusaurus_tree.svg └── micar-whitepaper.pdf /.github/workflows/deploy-to-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/.github/workflows/deploy-to-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/test-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/.github/workflows/test-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/ltex.dictionary.en-US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/.vscode/ltex.dictionary.en-US.txt -------------------------------------------------------------------------------- /.vscode/ltex.hiddenFalsePositives.en-US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/.vscode/ltex.hiddenFalsePositives.en-US.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/1-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/1-overview.md -------------------------------------------------------------------------------- /docs/2-introduction/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/2-introduction/_category_.json -------------------------------------------------------------------------------- /docs/2-introduction/chain-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/2-introduction/chain-info.md -------------------------------------------------------------------------------- /docs/2-introduction/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/2-introduction/introduction.md -------------------------------------------------------------------------------- /docs/3-smart-contract-features/1-data-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/3-smart-contract-features/1-data-access.md -------------------------------------------------------------------------------- /docs/3-smart-contract-features/2-native-entropy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/3-smart-contract-features/2-native-entropy.md -------------------------------------------------------------------------------- /docs/3-smart-contract-features/3-native-commit-reveal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/3-smart-contract-features/3-native-commit-reveal.md -------------------------------------------------------------------------------- /docs/3-smart-contract-features/4-transaction-timestamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/3-smart-contract-features/4-transaction-timestamp.md -------------------------------------------------------------------------------- /docs/3-smart-contract-features/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/3-smart-contract-features/_category_.json -------------------------------------------------------------------------------- /docs/4-write-ten-dapp/1-high-level-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/4-write-ten-dapp/1-high-level-concepts.md -------------------------------------------------------------------------------- /docs/4-write-ten-dapp/2-setup-dev-env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/4-write-ten-dapp/2-setup-dev-env.md -------------------------------------------------------------------------------- /docs/4-write-ten-dapp/3-network-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/4-write-ten-dapp/3-network-setup.md -------------------------------------------------------------------------------- /docs/4-write-ten-dapp/4-session-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/4-write-ten-dapp/4-session-keys.md -------------------------------------------------------------------------------- /docs/4-write-ten-dapp/5-bridging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/4-write-ten-dapp/5-bridging.md -------------------------------------------------------------------------------- /docs/4-write-ten-dapp/6-testnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/4-write-ten-dapp/6-testnet.md -------------------------------------------------------------------------------- /docs/4-write-ten-dapp/7-sample-dapps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/4-write-ten-dapp/7-sample-dapps.md -------------------------------------------------------------------------------- /docs/4-write-ten-dapp/8-tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/4-write-ten-dapp/8-tutorial.md -------------------------------------------------------------------------------- /docs/4-write-ten-dapp/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/4-write-ten-dapp/_category_.json -------------------------------------------------------------------------------- /docs/5-run-ten-node/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/5-run-ten-node/_category_.json -------------------------------------------------------------------------------- /docs/5-run-ten-node/node-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/5-run-ten-node/node-architecture.md -------------------------------------------------------------------------------- /docs/5-run-ten-node/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/5-run-ten-node/overview.md -------------------------------------------------------------------------------- /docs/5-run-ten-node/rewards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/5-run-ten-node/rewards.md -------------------------------------------------------------------------------- /docs/5-run-ten-node/running-a-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/5-run-ten-node/running-a-node.md -------------------------------------------------------------------------------- /docs/6-governance/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/6-governance/_category_.json -------------------------------------------------------------------------------- /docs/6-governance/governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/6-governance/governance.md -------------------------------------------------------------------------------- /docs/6-governance/ten-network-association/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/6-governance/ten-network-association/_category_.json -------------------------------------------------------------------------------- /docs/6-governance/ten-network-association/airdrop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/6-governance/ten-network-association/airdrop.md -------------------------------------------------------------------------------- /docs/6-governance/ten-network-association/association.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/6-governance/ten-network-association/association.md -------------------------------------------------------------------------------- /docs/6-governance/ten-network-association/delegation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/6-governance/ten-network-association/delegation.md -------------------------------------------------------------------------------- /docs/6-governance/ten-network-association/ten-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/6-governance/ten-network-association/ten-token.md -------------------------------------------------------------------------------- /docs/6-governance/ten-network-association/tip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/6-governance/ten-network-association/tip.md -------------------------------------------------------------------------------- /docs/7-release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/7-release-notes.md -------------------------------------------------------------------------------- /docs/assets/battleships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/battleships.png -------------------------------------------------------------------------------- /docs/assets/bug-reports-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/bug-reports-1.jpg -------------------------------------------------------------------------------- /docs/assets/bug-reports-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/bug-reports-2.jpg -------------------------------------------------------------------------------- /docs/assets/bug-reports-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/bug-reports-3.jpg -------------------------------------------------------------------------------- /docs/assets/bug-reports-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/bug-reports-gif.gif -------------------------------------------------------------------------------- /docs/assets/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/crash.png -------------------------------------------------------------------------------- /docs/assets/faucet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/faucet.png -------------------------------------------------------------------------------- /docs/assets/faucet.ten.xyz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/faucet.ten.xyz.jpg -------------------------------------------------------------------------------- /docs/assets/gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/gateway.png -------------------------------------------------------------------------------- /docs/assets/guessing-game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/guessing-game.png -------------------------------------------------------------------------------- /docs/assets/l1-l2-interaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/l1-l2-interaction.png -------------------------------------------------------------------------------- /docs/assets/obscuroscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/obscuroscan.png -------------------------------------------------------------------------------- /docs/assets/overview-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/overview-banner.png -------------------------------------------------------------------------------- /docs/assets/ten-validator-composition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/ten-validator-composition.png -------------------------------------------------------------------------------- /docs/assets/ten-validator-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/ten-validator-flow.png -------------------------------------------------------------------------------- /docs/assets/trickly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/assets/trickly.png -------------------------------------------------------------------------------- /docs/micar-white-papers/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/micar-white-papers/_category_.json -------------------------------------------------------------------------------- /docs/micar-white-papers/trading-whitepaper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/micar-white-papers/trading-whitepaper.md -------------------------------------------------------------------------------- /docs/security-audit/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/security-audit/_category_.json -------------------------------------------------------------------------------- /docs/security-audit/security-audit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docs/security-audit/security-audit.md -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/env.example -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/package.json -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/sidebars.js -------------------------------------------------------------------------------- /src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /src/components/ReleaseNotes/ReleaseNotesList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/components/ReleaseNotes/ReleaseNotesList.css -------------------------------------------------------------------------------- /src/components/ReleaseNotes/ReleaseNotesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/components/ReleaseNotes/ReleaseNotesList.js -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/pages/index.module.css -------------------------------------------------------------------------------- /src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/pages/markdown-page.md -------------------------------------------------------------------------------- /src/theme/Footer/Copyright/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/theme/Footer/Copyright/index.js -------------------------------------------------------------------------------- /src/theme/Footer/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/theme/Footer/Layout/index.js -------------------------------------------------------------------------------- /src/theme/Footer/LinkItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/theme/Footer/LinkItem/index.js -------------------------------------------------------------------------------- /src/theme/Footer/Links/MultiColumn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/theme/Footer/Links/MultiColumn/index.js -------------------------------------------------------------------------------- /src/theme/Footer/Links/Simple/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/theme/Footer/Links/Simple/index.js -------------------------------------------------------------------------------- /src/theme/Footer/Links/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/theme/Footer/Links/index.js -------------------------------------------------------------------------------- /src/theme/Footer/Logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/theme/Footer/Logo/index.js -------------------------------------------------------------------------------- /src/theme/Footer/Logo/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/theme/Footer/Logo/styles.module.css -------------------------------------------------------------------------------- /src/theme/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/src/theme/Footer/index.js -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/halborn-audit-ten.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/static/halborn-audit-ten.pdf -------------------------------------------------------------------------------- /static/img/docusaurus-social-card.jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/static/img/docusaurus-social-card.jpg.png -------------------------------------------------------------------------------- /static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/static/img/docusaurus.png -------------------------------------------------------------------------------- /static/img/encrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/static/img/encrypted.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/great-ux-dx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/static/img/great-ux-dx.png -------------------------------------------------------------------------------- /static/img/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/static/img/logo-white.svg -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/img/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/static/img/scale.png -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /static/micar-whitepaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-protocol/ten-documentation/HEAD/static/micar-whitepaper.pdf --------------------------------------------------------------------------------