diff --git a/content/config/nav.yaml b/content/config/nav.yaml index d31d4ba49..a096576ee 100644 --- a/content/config/nav.yaml +++ b/content/config/nav.yaml @@ -190,10 +190,15 @@ tutorials: url: /tutorials/connect-other-chains/local-parachain/ - title: Connect to Rococo testnet url: /tutorials/connect-other-chains/rococo-slot/ - - title: Access EVM accounts - url: /tutorials/connect-other-chains/access-evm-accounts/ #- title: Send cross-consensus messages (XCM) # url: /tutorials/connect-other-chains/xcm/ + - title: Integrate with tools + url: /tutorials/integrate-with-tools/ + pages: + - title: Integrate a light client node + url: /tutorials/integrate-with-tools/substrate-connect/ + - title: Access EVM accounts + url: /tutorials/integrate-with-tools/access-evm-accounts/ reference: title: Reference url: /reference/ diff --git a/content/md/en/docs/tutorials/index.md b/content/md/en/docs/tutorials/index.md index 553fc47a1..26da6fc41 100644 --- a/content/md/en/docs/tutorials/index.md +++ b/content/md/en/docs/tutorials/index.md @@ -33,6 +33,16 @@ You'll learn how to: - Create a custom pallet using macros. - Publish a custom pallet for others to use. +## Develop smart contracts + +The **Develop smart contracts** tutorials guide you through how you can use the ink programming language to build smart contracts that run on a Substrate-based blockchain. +You'll learn how to: + +- Create a smart contract project the ink! programming language. +- Store, increment, and retrieve simple values using a smart contract. +- Use maps to store and retrieve values in a smart contract. +- Build a smart contract for transferring ERC-20 tokens. + ## Connect with other chains The **Connect with other chains** tutorials delve into more advanced topics for moving beyond solo chain development, including how to connect your chain to other chains. @@ -42,12 +52,10 @@ You'll learn how to: - Deploy a local test network and interact with multiple connected parachains. - Connect your parachain to a public test network. -## Develop smart contracts +## Integrate with tools -The **Develop smart contracts** tutorials guide you through how you can use the ink programming language to build smart contracts that run on a Substrate-based blockchain. +The **Integrate with tools** tutorials highlight additional tools and node extensions that enable you to interact with Substrate nodes or the information in the blockchain in unique ways. You'll learn how to: -- Create a smart contract project the ink! programming language. -- Store, increment, and retrieve simple values using a smart contract. -- Use maps to store and retrieve values in a smart contract. -- Build a smart contract for transferring ERC-20 tokens. +- Integrate a light client node to connect to a Substrate chain. +- Access EVM accounts and work with EVM-compatible applications. diff --git a/content/md/en/docs/tutorials/integrate-with-tools/index.md b/content/md/en/docs/tutorials/integrate-with-tools/index.md new file mode 100644 index 000000000..a81e3d569 --- /dev/null +++ b/content/md/en/docs/tutorials/integrate-with-tools/index.md @@ -0,0 +1,13 @@ +--- +title: Integrate with tools +description: Demonstrates use cases for tools that enable you to connect to and interact with Substrate nodes and Substrate-based blockchains. +keywords: +--- + +The **Integrate with tools** tutorials highlight tools and node extensions that enable you to deploy nodes that can integrate with other systems and how to use additional ecosystem tools that allow you to access, synchronize, and interact with information your own or other blockchains. + +- [Integrate a light client node](/tutorials/integrate-with-tools/substrate-connect/) describes how you can use the Substrate Connect light client node to synchronize and interact with a Substrate chain from a browser. +- [Access EVM accounts](/tutorials/integrate-with-tools/access-evm-accounts/) illustrates how you can use a customized Substrate node to access to Ethereum-based accounts and contracts. + + \ No newline at end of file