Local Pendulum chain setup
Before running the test chain locally you need to be run the relay chain!
Prerequisites
git clone https://github.com/pendulum-chain/pendulum.gitcargo build --releaseReserving a para ID
Leasing a slot for the parachain on the relay chain
# Generate a plain chain spec of your parachain
./target/release/pendulum-collator build-spec --disable-default-bootnode > rococo-local-parachain-plain.json// --snip--
"para_id": 2000, // <--- your already registered ID
// --snip--
"parachainInfo": {
"parachainId": 2000 // <--- your already registered ID
},
// --snip--Run parachain collator
Interacting with the parachain
Last updated
Was this helpful?