The Relai Network substrate codebase.
Use the following command to build the node without launching it:
cargo build --releaseThe following command starts a single-node development chain that doesn't persist state:
./target/release/relai-network --devTo purge the development chain's state, run the following command:
./target/release/relai-network purge-chain --devTo start the development chain with detailed logging, run the following command:
RUST_BACKTRACE=1 ./target/release/relai-network -ldebug --devTo run unit test for futur-assets-reg and futur-creators-reg pallets
cargo test -p futur-assets-reg
and
cargo test -p futur-creatorss-reg
Or just run cargo test for all tests