Kollectyve Network Blockchain node based on the Polkadot SDK Solochain Template.
Depending on your operating system and Rust version, there might be additional packages required to compile this node. Check the Install instructions for your platform for the most common dependencies. Alternatively, you can use one of the alternative installation options.
Use the following command to build the node without launching it:
cargo build --releaseAfter you build the project, you can use the following command to explore its parameters and subcommands:
./target/release/kollectyve-node -hYou can generate and view the Rust Docs for this project with this command:
cargo +nightly doc --openThe following command starts a single-node development chain that doesn't persist state:
./target/release/kollectyve-node --devTo purge the development chain's state, run the following command:
./target/release/kollectyve-node purge-chain --devTo start the development chain with detailed logging, run the following command:
RUST_BACKTRACE=1 ./target/release/kollectyve-node -ldebug --devDevelopment chains:
- Maintain state in a
tmpfolder while the node is running. - Use the Alice and Bob accounts as default validator authorities.
- Use the Alice account as the default
sudoaccount. - Are preconfigured with a genesis state (
/node/src/chain_spec.rs) that includes several pre-funded development accounts.
After you start the node locally, you can interact with it using the hosted version of the Polkadot/Substrate Portal front-end by connecting to the local node endpoint.