RareLink Node

October 21, 2020 ยท View on GitHub

This is the implementation of RareLink Node. It is still in development and not ready for use.

Once it connects as a parachain to Polkadot, it will act as a bridge between the Polkadot and the Ethereum networks.

It consists of the following parts:(in development)

Setup

Setup instructions can be found at the Substrate Developer Hub.

Build

Once the development environment is set up, build the node template. This command will build the Wasm and native code:

cargo build --release

Run

Single Node Development Chain

Purge any existing dev chain state:

./target/release/rarelink-node purge-chain --dev

Start a dev chain:

./target/release/rarelink-node --dev

Or, start a dev chain with detailed logging:

RUST_LOG=debug RUST_BACKTRACE=1 ./target/release/rarelink-node -lruntime=debug --dev

Multi-Node Local Testnet

If you want to see the multi-node consensus algorithm in action, refer to our Start a Private Network tutorial.