The above will provide interactive guidance to create parachain.
If interactive guidance is not desired than one can proceed with:
# Create a minimal parachainpopnewparachainmy-appchain
Templates
Pop CLI supports several parachain templates, to use a specific one use the flag --template:
# Create an assets parachainpopnewparachainmy-appchainpop--templateassets# Create a contracts parachainpopnewparachainmy-appchainpop--templatecontracts# Create a evm parachainpopnewparachainmy-appchainpop--templateevm
You can see a full list of provider templates be running pop new parachain --help
Some examples are:
# Get Parity's pallet-contracts enabled parachain templatepopnewparachainmy-appchainparity--templatecpt# Get Parity's evm compatible parachain templatepopnewparachainmy-appchainparity--templatefpt
Customize
For Pop templates, you can also customize your parachain by providing config options for the token symbol (as it appears in the chain metadata), token decimals, and the initial endowment for developer accounts. Here's how:
# Create a minimal parachain with "DOT" as the token symbol, 6 token decimals, and 1 billion tokens per dev accountpopnewparachainmy-appchain--symbolDOT--decimals6--endowment1_000_000_000