Portalverse is a decentralized cloud gaming and rendering network for immersive metaverses where everyone can access at any time, from any device and anywhere.
- Portalverse Pallets is a set of Substrate pallets of Portalverse.
- Octopus Network powers us.
First, complete the basic Rust setup instructions.
Use Rust's native cargo
command to build and launch the template node:
cargo run --release -- --dev --enable-offchain-indexing true
The cargo run
command will perform an initial build. Use the following command to build the node
without launching it:
cargo build --release
Once the project has been built, the following command can be used to explore all parameters and subcommands:
./target/release/appchain-barnacle -h
The provided cargo run
command will launch a temporary node and its state will be discarded after
you terminate the process. After the project has been built, there are other ways to launch the
node.
This command will start the single-node development chain with non-persistent state:
./target/release/appchain-barnacle --dev --enable-offchain-indexing true
Purge the development chain's state:
./target/release/appchain-barnacle purge-chain --dev
Start the development chain with detailed logging:
RUST_BACKTRACE=1 ./target/release/appchain-barnacle -ldebug --dev --enable-offchain-indexing true
Once the node template is running locally, you can connect it with Polkadot-JS Apps front-end to interact with your chain. Click here connecting the Apps to your local node template.