Launch a Known Chain
With Pop CLI you can quickly spin up a supported chain without needing to prepare network configuration files.
A supported chain currently refers to one of the system chains. Pop CLI automatically fetches the required binaries and chain-spec generators so you can launch in seconds. Support for additional chains will be added in the future.
Example Usage
Spin up Paseo with Asset Hub:
pop up paseo -p asset-hubRun Kusama on port 8833 with Asset Hub chain assigned to 9944:
pop up kusama --port 8833 --parachain asset-hub:9944 -r stable2412-4Launch Polkadot with Asset Hub and a specific ParaId:
pop up polkadot --port 8833 --parachain asset-hub#3395:9977 -r stable2412-4Custom Network Configurations
You can still provide a full network configuration file if needed. The pop up network command now accepts a positional path argument, eliminating the need for --file/-f:
touch paseo-local.toml[relaychain]
chain = "paseo-local"
[relaychain.genesis_overrides.sudo]
key = "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY" # Alice
[[relaychain.nodes]]
name = "alice"
rpc_port = 57731
validator = true
[[relaychain.nodes]]
name = "bob"
validator = true
[[relaychain.nodes]]
name = "charlie"
validator = trueFor more details on network configuration files, check the Zombienet documentation
Run the network:
pop up network ./paseo-local.toml --verboseLearning Resources
🧑🏫 To learn about System Chains website is a good starting point.
⭕ Learn more about PassetHub (the temporary AssetHub testnet) here.
🧑🔧 For technical documentation of Paseo Network, here.
Need help?
Ask on Polkadot Stack Exchange (tag it pop) or drop by our Telegram. We're here to help!
Last updated
Was this helpful?