Skip to content

Instantly share code, notes, and snippets.

@brunopgalvao
Created March 8, 2022 17:22
Show Gist options
  • Save brunopgalvao/03ff7cd6ead2d2bfcef64a8e63892e82 to your computer and use it in GitHub Desktop.
Save brunopgalvao/03ff7cd6ead2d2bfcef64a8e63892e82 to your computer and use it in GitHub Desktop.
polkadot-launch config with debugging
{
"relaychain": {
"bin": "./bin/polkadot",
"chain": "rococo-local",
"nodes": [
{
"name": "alice",
"wsPort": 9944,
"port": 30444
},
{
"name": "bob",
"wsPort": 9955,
"port": 30555
},
{
"name": "charlie",
"wsPort": 9966,
"port": 30666
},
{
"name": "dave",
"wsPort": 9977,
"port": 30777
}
],
"genesis": {
"runtime": {
"runtime_genesis_config": {
"configuration": {
"config": {
"validation_upgrade_frequency": 10,
"validation_upgrade_delay": 10
}
}
}
}
}
},
"parachains": [
{
"bin": "./bin/polkadot-collator-1000",
"chain": "statemine-dev",
"balance": "1000000000000000000000",
"nodes": [
{
"wsPort": 9988,
"port": 31200,
"name": "alice",
"flags": ["-lruntime=debug", "-lcumulus-collator=trace,cumulus-network=trace,cumulus-consensus=trace", "--", "--execution=wasm"]
},
{
"wsPort": 9989,
"port": 31201,
"name": "bob",
"flags": ["--", "--execution=wasm"]
}
]
},
{
"bin": "./bin/polkadot-collator-1001",
"id": "1001",
"balance": "1000000000000000000000",
"nodes": [
{
"wsPort": 9999,
"port": 31300,
"name": "alice",
"flags": ["--", "--execution=wasm"]
}
]
}
],
"simpleParachains": [],
"hrmpChannels": [],
"types": {},
"finalization": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment