Setting Up a Node

Setting Up a Shadows Node

1. Building

Install Rust:

curl https://sh.rustup.rs -sSf | s

Make sure you have submodule.recurse set to true to make life with submodule easier.

git config --global submodule.recurse true

Install required tools and install git hooks:

make init

Build all native code:

make build

2. Run

You can start a development chain with

make run

3. Development

To type check:

make check

To purge old chain data:

make purge

To purge old chain data and run:

make restart

Last updated