mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
cd263ace19
* Correct BH readme * Zombienet renaming * TOC * Apply suggestions from code review Co-authored-by: Adrian Catangiu <adrian@parity.io> * Updated REAMDE.md * Alice -> Bob for e2e --------- Co-authored-by: Adrian Catangiu <adrian@parity.io> Co-authored-by: parity-processbot <>
105 lines
3.2 KiB
TOML
105 lines
3.2 KiB
TOML
[settings]
|
|
node_spawn_timeout = 240
|
|
|
|
[relaychain]
|
|
default_command = "{{POLKADOT_BINARY_PATH}}"
|
|
default_args = [ "-lparachain=debug,xcm=trace" ]
|
|
chain = "wococo-local"
|
|
|
|
[[relaychain.nodes]]
|
|
name = "alice-validator-wo"
|
|
validator = true
|
|
rpc_port = 9935
|
|
ws_port = 9945
|
|
extra_args = ["--no-mdns --bootnodes {{'bob-validator-wo'|zombie('multiAddress')}}"]
|
|
|
|
[[relaychain.nodes]]
|
|
name = "bob-validator-wo"
|
|
validator = true
|
|
rpc_port = 9936
|
|
ws_port = 9946
|
|
extra_args = ["--no-mdns --bootnodes {{'alice-validator-wo'|zombie('multiAddress')}}"]
|
|
|
|
[[relaychain.nodes]]
|
|
name = "charlie-validator-wo"
|
|
validator = true
|
|
rpc_port = 9937
|
|
ws_port = 9947
|
|
extra_args = ["--no-mdns --bootnodes {{'alice-validator-wo'|zombie('multiAddress')}}"]
|
|
|
|
[[parachains]]
|
|
id = 1014
|
|
chain = "bridge-hub-wococo-local"
|
|
cumulus_based = true
|
|
|
|
# run alice as parachain collator
|
|
[[parachains.collators]]
|
|
name = "alice-collator-wo"
|
|
validator = true
|
|
command = "{{POLKADOT_PARACHAIN_BINARY_PATH}}"
|
|
rpc_port = 8935
|
|
ws_port = 8945
|
|
args = [
|
|
"-lparachain=debug,runtime::mmr=info,substrate=info,runtime=info,runtime::bridge-hub=trace,runtime::bridge=trace,runtime::bridge-dispatch=trace,bridge=trace,runtime::bridge-messages=trace,xcm=trace",
|
|
]
|
|
extra_args = [
|
|
"--force-authoring", "--no-mdns", "--bootnodes {{'bob-collator-wo'|zombie('multiAddress')}}",
|
|
"-- --port 41335 --rpc-port 48935 --ws-port 48945 --no-mdns", "--bootnodes {{'alice-validator-wo'|zombie('multiAddress')}}"
|
|
]
|
|
|
|
# run bob as parachain collator
|
|
[[parachains.collators]]
|
|
name = "bob-collator-wo"
|
|
validator = true
|
|
command = "{{POLKADOT_PARACHAIN_BINARY_PATH}}"
|
|
rpc_port = 8936
|
|
ws_port = 8946
|
|
args = [
|
|
"-lparachain=trace,runtime::mmr=info,substrate=info,runtime=info,runtime::bridge-hub=trace,runtime::bridge=trace,runtime::bridge-dispatch=trace,bridge=trace,runtime::bridge-messages=trace,xcm=trace",
|
|
]
|
|
extra_args = [
|
|
"--force-authoring", "--no-mdns", "--bootnodes {{'alice-collator-wo'|zombie('multiAddress')}}",
|
|
"-- --port 41336 --rpc-port 48936 --ws-port 48946 --no-mdns", "--bootnodes {{'bob-validator-wo'|zombie('multiAddress')}}"
|
|
]
|
|
|
|
[[parachains]]
|
|
id = 1000
|
|
chain = "asset-hub-westend-local"
|
|
cumulus_based = true
|
|
|
|
[[parachains.collators]]
|
|
name = "wockmint-collator1"
|
|
rpc_port = 9011
|
|
ws_port = 9010
|
|
command = "{{POLKADOT_PARACHAIN_BINARY_PATH_FOR_ASSET_HUB_WOCOCO}}"
|
|
args = [
|
|
"-lparachain=debug,xcm=trace,runtime::bridge-transfer=trace",
|
|
]
|
|
extra_args = [
|
|
"--no-mdns", "--bootnodes {{'wockmint-collator2'|zombie('multiAddress')}}",
|
|
"-- --port 31333 --rpc-port 38933 --ws-port 38943 --no-mdns", "--bootnodes {{'alice-validator-wo'|zombie('multiAddress')}}"
|
|
]
|
|
|
|
[[parachains.collators]]
|
|
name = "wockmint-collator2"
|
|
command = "{{POLKADOT_PARACHAIN_BINARY_PATH_FOR_ASSET_HUB_WOCOCO}}"
|
|
args = [
|
|
"-lparachain=debug,xcm=trace,runtime::bridge-transfer=trace",
|
|
]
|
|
extra_args = [
|
|
"--no-mdns", "--bootnodes {{'wockmint-collator1'|zombie('multiAddress')}}",
|
|
"-- --port 31433 --rpc-port 38833 --ws-port 38843 --no-mdns", "--bootnodes {{'alice-validator-wo'|zombie('multiAddress')}}"
|
|
]
|
|
|
|
[[hrmp_channels]]
|
|
sender = 1000
|
|
recipient = 1014
|
|
max_capacity = 4
|
|
max_message_size = 524288
|
|
|
|
[[hrmp_channels]]
|
|
sender = 1014
|
|
recipient = 1000
|
|
max_capacity = 4
|
|
max_message_size = 524288
|