A Blockchain node for the Nodle Parachain to connect and secure the next trillion things.
Built on Substrate.
Syncing Nodle's Parachain (codename: eden
) is done easily via:
cargo run --bin nodle-parachain --release -- --chain eden
There are a few more chains available, such as eden-testing
or dev
.
cargo build
cargo test --all
cargo install
Assuming that polkadot
is in /usr/local/bin
and that you installed polkadot-launch
you can simply use this command:
cargo build --release -p nodle-parachain && polkadot-launch launch.json
- Build the image:
docker build -t nodle/chain -f ./Dockerfile .
. - Run it:
docker run -v ~/.local/path_to_parachain_data_dir:/data -p 9944:9944 -p 9933:9933 -p30333:30333 -it nodle/chain --chain=eden-testing --base-path=/data --rpc-methods=safe --rpc-cors all --rpc-external -- --rpc-external
.