├── .gitattributes ├── .github └── workflows │ ├── documentation.yml │ └── main.yml ├── .gitignore ├── .gitmodules ├── .prettierrc.json ├── Cargo.lock ├── README.md ├── RELEASE_BRANCH ├── RELEASE_DOMAIN ├── RELEASE_VERSION ├── TESTNET_BRANCH ├── TESTNET_DOMAIN ├── book.toml ├── custom.js ├── mdbook-admonish.css ├── mermaid-init.js ├── mermaid.min.js ├── rust-toolchain.toml ├── src ├── SUMMARY.md ├── appendix │ └── glossary.md ├── developers │ ├── advanced_topics.md │ ├── advanced_topics │ │ ├── assets.md │ │ ├── block_creation.md │ │ ├── contract_finalize.md │ │ ├── oracles.md │ │ └── validators.md │ ├── backend.md │ ├── backend │ │ ├── abi.md │ │ ├── blobs.md │ │ ├── composition.md │ │ ├── contract.md │ │ ├── creating_a_project.md │ │ ├── deploy.md │ │ ├── logging.md │ │ ├── messages.md │ │ ├── service.md │ │ ├── state.md │ │ └── testing.md │ ├── core_concepts.md │ ├── core_concepts │ │ ├── applications.md │ │ ├── design_patterns.md │ │ ├── graphiql.png │ │ ├── microchains.md │ │ ├── node_service.md │ │ └── wallets.md │ ├── experimental.md │ ├── experimental │ │ ├── ethereum.md │ │ └── ml.md │ ├── frontend.md │ ├── frontend │ │ ├── interactivity.md │ │ ├── overview.md │ │ ├── setup.md │ │ └── wallets.md │ ├── getting_started.md │ └── getting_started │ │ ├── hello_linera.md │ │ └── installation.md ├── images │ └── linera_banner_db73e9b.svg ├── introduction.md ├── operators │ ├── devnets.md │ ├── devnets │ │ ├── compose.md │ │ └── kind.md │ ├── testnets.md │ └── testnets │ │ ├── dashboard-example.png │ │ ├── debugging.md │ │ ├── manual-installation.md │ │ ├── monitoring-logging.md │ │ ├── one-click.md │ │ ├── requirements.md │ │ └── verify-installation.md └── protocol │ ├── overview.md │ └── roadmap.md └── theme ├── book.js ├── css ├── chrome.css ├── general.css ├── print.css └── variables.css ├── favicon.png ├── favicon.svg ├── fonts ├── OPEN-SANS-LICENSE.txt ├── SOURCE-CODE-PRO-LICENSE.txt ├── fonts.css ├── open-sans-v17-all-charsets-300.woff2 ├── open-sans-v17-all-charsets-300italic.woff2 ├── open-sans-v17-all-charsets-600.woff2 ├── open-sans-v17-all-charsets-600italic.woff2 ├── open-sans-v17-all-charsets-700.woff2 ├── open-sans-v17-all-charsets-700italic.woff2 ├── open-sans-v17-all-charsets-800.woff2 ├── open-sans-v17-all-charsets-800italic.woff2 ├── open-sans-v17-all-charsets-italic.woff2 ├── open-sans-v17-all-charsets-regular.woff2 └── source-code-pro-v11-all-charsets-500.woff2 ├── highlight.css ├── highlight.js ├── index.hbs └── theme.css /.gitattributes: -------------------------------------------------------------------------------- 1 | *.svg binary 2 | -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- 1 | linera-protocol/Cargo.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_BRANCH: -------------------------------------------------------------------------------- 1 | testnet_conway 2 | -------------------------------------------------------------------------------- /RELEASE_DOMAIN: -------------------------------------------------------------------------------- 1 | testnet-conway 2 | -------------------------------------------------------------------------------- /RELEASE_VERSION: -------------------------------------------------------------------------------- 1 | 0.15.6 2 | -------------------------------------------------------------------------------- /TESTNET_BRANCH: -------------------------------------------------------------------------------- 1 | testnet_conway 2 | -------------------------------------------------------------------------------- /TESTNET_DOMAIN: -------------------------------------------------------------------------------- 1 | testnet-conway 2 | -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/book.toml -------------------------------------------------------------------------------- /custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/custom.js -------------------------------------------------------------------------------- /mdbook-admonish.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/mdbook-admonish.css -------------------------------------------------------------------------------- /mermaid-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/mermaid-init.js -------------------------------------------------------------------------------- /mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/mermaid.min.js -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | linera-protocol/rust-toolchain.toml -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/appendix/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/appendix/glossary.md -------------------------------------------------------------------------------- /src/developers/advanced_topics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/advanced_topics.md -------------------------------------------------------------------------------- /src/developers/advanced_topics/assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/advanced_topics/assets.md -------------------------------------------------------------------------------- /src/developers/advanced_topics/block_creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/advanced_topics/block_creation.md -------------------------------------------------------------------------------- /src/developers/advanced_topics/contract_finalize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/advanced_topics/contract_finalize.md -------------------------------------------------------------------------------- /src/developers/advanced_topics/oracles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/advanced_topics/oracles.md -------------------------------------------------------------------------------- /src/developers/advanced_topics/validators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/advanced_topics/validators.md -------------------------------------------------------------------------------- /src/developers/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/backend.md -------------------------------------------------------------------------------- /src/developers/backend/abi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/backend/abi.md -------------------------------------------------------------------------------- /src/developers/backend/blobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/backend/blobs.md -------------------------------------------------------------------------------- /src/developers/backend/composition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/backend/composition.md -------------------------------------------------------------------------------- /src/developers/backend/contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/backend/contract.md -------------------------------------------------------------------------------- /src/developers/backend/creating_a_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/backend/creating_a_project.md -------------------------------------------------------------------------------- /src/developers/backend/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/backend/deploy.md -------------------------------------------------------------------------------- /src/developers/backend/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/backend/logging.md -------------------------------------------------------------------------------- /src/developers/backend/messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/backend/messages.md -------------------------------------------------------------------------------- /src/developers/backend/service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/backend/service.md -------------------------------------------------------------------------------- /src/developers/backend/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/backend/state.md -------------------------------------------------------------------------------- /src/developers/backend/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/backend/testing.md -------------------------------------------------------------------------------- /src/developers/core_concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/core_concepts.md -------------------------------------------------------------------------------- /src/developers/core_concepts/applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/core_concepts/applications.md -------------------------------------------------------------------------------- /src/developers/core_concepts/design_patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/core_concepts/design_patterns.md -------------------------------------------------------------------------------- /src/developers/core_concepts/graphiql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/core_concepts/graphiql.png -------------------------------------------------------------------------------- /src/developers/core_concepts/microchains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/core_concepts/microchains.md -------------------------------------------------------------------------------- /src/developers/core_concepts/node_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/core_concepts/node_service.md -------------------------------------------------------------------------------- /src/developers/core_concepts/wallets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/core_concepts/wallets.md -------------------------------------------------------------------------------- /src/developers/experimental.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/experimental.md -------------------------------------------------------------------------------- /src/developers/experimental/ethereum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/experimental/ethereum.md -------------------------------------------------------------------------------- /src/developers/experimental/ml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/experimental/ml.md -------------------------------------------------------------------------------- /src/developers/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/frontend.md -------------------------------------------------------------------------------- /src/developers/frontend/interactivity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/frontend/interactivity.md -------------------------------------------------------------------------------- /src/developers/frontend/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/frontend/overview.md -------------------------------------------------------------------------------- /src/developers/frontend/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/frontend/setup.md -------------------------------------------------------------------------------- /src/developers/frontend/wallets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/frontend/wallets.md -------------------------------------------------------------------------------- /src/developers/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/getting_started.md -------------------------------------------------------------------------------- /src/developers/getting_started/hello_linera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/getting_started/hello_linera.md -------------------------------------------------------------------------------- /src/developers/getting_started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/developers/getting_started/installation.md -------------------------------------------------------------------------------- /src/images/linera_banner_db73e9b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/images/linera_banner_db73e9b.svg -------------------------------------------------------------------------------- /src/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/introduction.md -------------------------------------------------------------------------------- /src/operators/devnets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/operators/devnets.md -------------------------------------------------------------------------------- /src/operators/devnets/compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/operators/devnets/compose.md -------------------------------------------------------------------------------- /src/operators/devnets/kind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/operators/devnets/kind.md -------------------------------------------------------------------------------- /src/operators/testnets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/operators/testnets.md -------------------------------------------------------------------------------- /src/operators/testnets/dashboard-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/operators/testnets/dashboard-example.png -------------------------------------------------------------------------------- /src/operators/testnets/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/operators/testnets/debugging.md -------------------------------------------------------------------------------- /src/operators/testnets/manual-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/operators/testnets/manual-installation.md -------------------------------------------------------------------------------- /src/operators/testnets/monitoring-logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/operators/testnets/monitoring-logging.md -------------------------------------------------------------------------------- /src/operators/testnets/one-click.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/operators/testnets/one-click.md -------------------------------------------------------------------------------- /src/operators/testnets/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/operators/testnets/requirements.md -------------------------------------------------------------------------------- /src/operators/testnets/verify-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/operators/testnets/verify-installation.md -------------------------------------------------------------------------------- /src/protocol/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/protocol/overview.md -------------------------------------------------------------------------------- /src/protocol/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/src/protocol/roadmap.md -------------------------------------------------------------------------------- /theme/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/book.js -------------------------------------------------------------------------------- /theme/css/chrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/css/chrome.css -------------------------------------------------------------------------------- /theme/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/css/general.css -------------------------------------------------------------------------------- /theme/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/css/print.css -------------------------------------------------------------------------------- /theme/css/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/css/variables.css -------------------------------------------------------------------------------- /theme/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/favicon.png -------------------------------------------------------------------------------- /theme/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/favicon.svg -------------------------------------------------------------------------------- /theme/fonts/OPEN-SANS-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/fonts/OPEN-SANS-LICENSE.txt -------------------------------------------------------------------------------- /theme/fonts/SOURCE-CODE-PRO-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/fonts/SOURCE-CODE-PRO-LICENSE.txt -------------------------------------------------------------------------------- /theme/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/fonts/fonts.css -------------------------------------------------------------------------------- /theme/fonts/open-sans-v17-all-charsets-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/fonts/open-sans-v17-all-charsets-300.woff2 -------------------------------------------------------------------------------- /theme/fonts/open-sans-v17-all-charsets-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/fonts/open-sans-v17-all-charsets-300italic.woff2 -------------------------------------------------------------------------------- /theme/fonts/open-sans-v17-all-charsets-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/fonts/open-sans-v17-all-charsets-600.woff2 -------------------------------------------------------------------------------- /theme/fonts/open-sans-v17-all-charsets-600italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/fonts/open-sans-v17-all-charsets-600italic.woff2 -------------------------------------------------------------------------------- /theme/fonts/open-sans-v17-all-charsets-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/fonts/open-sans-v17-all-charsets-700.woff2 -------------------------------------------------------------------------------- /theme/fonts/open-sans-v17-all-charsets-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/fonts/open-sans-v17-all-charsets-700italic.woff2 -------------------------------------------------------------------------------- /theme/fonts/open-sans-v17-all-charsets-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/fonts/open-sans-v17-all-charsets-800.woff2 -------------------------------------------------------------------------------- /theme/fonts/open-sans-v17-all-charsets-800italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/fonts/open-sans-v17-all-charsets-800italic.woff2 -------------------------------------------------------------------------------- /theme/fonts/open-sans-v17-all-charsets-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/fonts/open-sans-v17-all-charsets-italic.woff2 -------------------------------------------------------------------------------- /theme/fonts/open-sans-v17-all-charsets-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/fonts/open-sans-v17-all-charsets-regular.woff2 -------------------------------------------------------------------------------- /theme/fonts/source-code-pro-v11-all-charsets-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/fonts/source-code-pro-v11-all-charsets-500.woff2 -------------------------------------------------------------------------------- /theme/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/highlight.css -------------------------------------------------------------------------------- /theme/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/highlight.js -------------------------------------------------------------------------------- /theme/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/index.hbs -------------------------------------------------------------------------------- /theme/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linera-io/linera-documentation/HEAD/theme/theme.css --------------------------------------------------------------------------------