mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 02:51:01 +00:00
6007549589
* change dir names * cargo toml updates * fix crate imports for build * change chain spec names and PR review rule * update cli to accept asset-hub * find/replace benchmark commands * integration tests * bridges docs * more integration tests * AuraId * other statemint tidying * rename statemint mod * chain spec mod * rename e2e test dirs * one more Runtime::Statemine * benchmark westmint * rename chain spec name and id * rename chain spec files * more tidying in scripts/docs/tests * rename old dir if exists * Force people to manually do the move. (Safer as there could be additional considerations with their setup) * review touchups * more renaming * Update polkadot-parachain/src/command.rs Co-authored-by: Bastian Köcher <git@kchr.de> * better error message * do not break on-chain spec_name * log info message that path has been renamed * better penpal docs --------- Co-authored-by: gilescope <gilescope@gmail.com> Co-authored-by: Bastian Köcher <git@kchr.de> Co-authored-by: parity-processbot <>
105 lines
3.0 KiB
TOML
105 lines
3.0 KiB
TOML
[settings]
|
|
node_spawn_timeout = 240
|
|
|
|
[relaychain]
|
|
default_command = "{{POLKADOT_BINARY_PATH}}"
|
|
default_args = [ "-lparachain=debug,xcm=trace" ]
|
|
chain = "rococo-local"
|
|
|
|
[[relaychain.nodes]]
|
|
name = "alice-validator"
|
|
validator = true
|
|
rpc_port = 9932
|
|
ws_port = 9942
|
|
extra_args = ["--no-mdns --bootnodes {{'bob-validator'|zombie('multiAddress')}}"]
|
|
|
|
[[relaychain.nodes]]
|
|
name = "bob-validator"
|
|
validator = true
|
|
rpc_port = 9933
|
|
ws_port = 9943
|
|
extra_args = ["--no-mdns --bootnodes {{'alice-validator'|zombie('multiAddress')}}"]
|
|
|
|
[[relaychain.nodes]]
|
|
name = "charlie-validator"
|
|
validator = true
|
|
rpc_port = 9934
|
|
ws_port = 9944
|
|
extra_args = ["--no-mdns --bootnodes {{'alice-validator'|zombie('multiAddress')}}"]
|
|
|
|
[[parachains]]
|
|
id = 1013
|
|
chain = "bridge-hub-rococo-local"
|
|
cumulus_based = true
|
|
|
|
# run alice as parachain collator
|
|
[[parachains.collators]]
|
|
name = "alice-collator"
|
|
validator = true
|
|
command = "{{POLKADOT_PARACHAIN_BINARY_PATH}}"
|
|
rpc_port = 8933
|
|
ws_port = 8943
|
|
args = [
|
|
"-lparachain=debug,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'|zombie('multiAddress')}}",
|
|
"-- --port 41333 --rpc-port 48933 --ws-port 48943 --no-mdns", "--bootnodes {{'alice-validator'|zombie('multiAddress')}}"
|
|
]
|
|
|
|
# run bob as parachain collator
|
|
[[parachains.collators]]
|
|
name = "bob-collator"
|
|
validator = true
|
|
command = "{{POLKADOT_PARACHAIN_BINARY_PATH}}"
|
|
rpc_port = 8934
|
|
ws_port = 8944
|
|
args = [
|
|
"-lparachain=trace,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'|zombie('multiAddress')}}",
|
|
"-- --port 41334 --rpc-port 48934 --ws-port 48944 --no-mdns", "--bootnodes {{'bob-validator'|zombie('multiAddress')}}"
|
|
]
|
|
|
|
[[parachains]]
|
|
id = 1000
|
|
chain = "asset-hub-kusama-local"
|
|
cumulus_based = true
|
|
|
|
[[parachains.collators]]
|
|
name = "rockmine-collator1"
|
|
rpc_port = 9911
|
|
ws_port = 9910
|
|
command = "{{POLKADOT_PARACHAIN_BINARY_PATH_FOR_ROCKMINE}}"
|
|
args = [
|
|
"-lparachain=debug,xcm=trace,runtime::bridge-transfer=trace",
|
|
]
|
|
extra_args = [
|
|
"--no-mdns", "--bootnodes {{'rockmine-collator2'|zombie('multiAddress')}}",
|
|
"-- --port 51333 --rpc-port 58933 --ws-port 58943 --no-mdns", "--bootnodes {{'alice-validator'|zombie('multiAddress')}}"
|
|
]
|
|
|
|
[[parachains.collators]]
|
|
name = "rockmine-collator2"
|
|
command = "{{POLKADOT_PARACHAIN_BINARY_PATH_FOR_ROCKMINE}}"
|
|
args = [
|
|
"-lparachain=debug,xcm=trace,runtime::bridge-transfer=trace",
|
|
]
|
|
extra_args = [
|
|
"--no-mdns", "--bootnodes {{'rockmine-collator1'|zombie('multiAddress')}}",
|
|
"-- --port 51433 --rpc-port 58833 --ws-port 58843 --no-mdns", "--bootnodes {{'alice-validator'|zombie('multiAddress')}}"
|
|
]
|
|
|
|
[[hrmp_channels]]
|
|
sender = 1000
|
|
recipient = 1013
|
|
max_capacity = 4
|
|
max_message_size = 524288
|
|
|
|
[[hrmp_channels]]
|
|
sender = 1013
|
|
recipient = 1000
|
|
max_capacity = 4
|
|
max_message_size = 524288
|