Local Development Network Setup
This guide walks through how to deploy a local blockchain instance for software development and testing purposes. Alternatively, developers can also develop and test on Anvil Testnet.
1. Prerequisites
i) Install Golang
#first command needs to be run as root, rest as your normal user
wget https://go.dev/dl/go1.18.3.linux-amd64.tar.gz
sudo su
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.18.3.linux-amd64.tar.gz
#exit root now
exit
#add to path. For more permanent you should add this line to bottom of your ~/.profile
export PATH=$PATH:/usr/local/go/bin
#check go version
go versionii) Install Rust
iii) Install System Specific Dependencies
2. Build Required Binaries
3. Install Python3 and toml-cli
4. Run Devnet

i) What's in devnet?
Name
Description
ii) How to control devnet?

5. Devnet URLs and Ports
URL
Purpose
6. Troubleshoot
Last updated
Was this helpful?