From feed7ffec57061654d82ea8f6bc0d80bd5875225 Mon Sep 17 00:00:00 2001 From: wangkui0508 Date: Thu, 27 May 2021 15:50:46 +0800 Subject: [PATCH] Add runmultinode.md into TOC --- SUMMARY.md | 1 + developers-guide/intro.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/SUMMARY.md b/SUMMARY.md index 0a113a2..75e6463 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -9,6 +9,7 @@ * [Introduction](developers-guide/intro.md) * [Single Node Private Testnet](developers-guide/runsinglenode.md) +* [Multi-Node Testnet](developers-guide/runmultinode.md) * [Deploy contracts using Truffle](developers-guide/deploy-contract-using-truffle.md) * [Deploy contracts using Remix](developers-guide/deploy-contract-using-remix.md) * [Test using MetaMask](developers-guide/test-using-metamask.md) diff --git a/developers-guide/intro.md b/developers-guide/intro.md index 835147b..12e82a1 100644 --- a/developers-guide/intro.md +++ b/developers-guide/intro.md @@ -1,6 +1,6 @@ # Introduction -Currently, there are no toolkits dedicatedly designed for smartBCH. Please use the tools from Ethereum's ecosystem \(Remix, truffle, waffle, ganache, etc\) to develop the source code and compile the EVM bytecode. After the DApp works fine on ganache, you can start testing it with smartbchd \(the executable of smartBCH's full node client\), which can [start a single node private testnet](runsinglenode.md). +Currently, there are no toolkits dedicatedly designed for smartBCH. Please use the tools from Ethereum's ecosystem \(Remix, truffle, waffle, ganache, etc\) to develop the source code and compile the EVM bytecode. After the DApp works fine on ganache, you can start testing it with smartbchd \(the executable of smartBCH's full node client\), which can [start a single node private testnet](runsinglenode.md), or a [multi-node testnet](runmultinode.md) Through a compatible Web3 API, smartbchd interacts with the wallets \(such as MetaMask\) and DApp's backend, just as an infura node does. We try our best to make it behave the same as infura for compatibility, but there are still missing features and bugs.