Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Consolidate Substrate Connect topics and add a new tutorials section …
…for integration topics
  • Loading branch information
lisa-parity committed Jul 27, 2022
commit 416ba79203e8606d27591eb01bcb21271ca86d39
6 changes: 3 additions & 3 deletions content/config/nav.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,15 +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: Connect to a chain from a browser
- 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/
Expand Down
20 changes: 14 additions & 6 deletions content/md/en/docs/tutorials/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
12 changes: 6 additions & 6 deletions content/md/en/docs/tutorials/integrate-with-tools/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ description: Demonstrates use cases for tools that enable you to connect to and
keywords:
---

The **Integrate with tools** tutorials highlight tools and node extensions that enable you to access, synchronize, and interact with information from Substrate nodes and the blockchain.
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.

- [Connect to a chain from the browser](/tutorials/integrate-with-tools/substrate-connect/) XXX.
- [Connect a local parachain](/tutorials/connect-other-chains/local-parachain/) highlights the steps necessary to connect your local parachain to a relay chain.
- [Connect to Rococo testnet](/tutorials/connect-other-chains/rococo-slot/) summarizes the steps for connecting a parachain to the Rococo test network.
<!-- TODO: WIP page on XCM -->
<!-- - [Send cross-consensus messages (XCM)](/tutorials/connect-other-chains/xcm/) summarizes the steps for connecting a parachain to the Rococo test network. -->
- [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.

<!--
- [Sidecar](/tutorials/integrate-with-tools/sidecar/) summarizes the steps for connecting a parachain to the Rococo test network.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Connect a light client
description: Introduces tutorials for running in-browser light clients using Substrate Connect.
title: Integrate a light client node
description: Demonstrates how you can connect to Substrate-based blockchains using Substrate Connect in a browser.
keywords:
---

Expand Down