mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
17b2e1b300
* Nits (merge before separatelly) * Small cosmetics for Rococo/Wococo bridge local run * Squashed 'bridges/' changes from 04b3dda6aa..5fc377ab34 5fc377ab34 Support for kusama-polkadot relaying (#2128) 01f4b7f1ba Fix clippy warnings (#2127) 696ff1c368 BHK/P alignments (#2115) 2a66aa3248 Small fixes (#2126) 7810f1a988 Cosmetics (#2124) daf250f69c Remove some `expect()` statements (#2123) 1c5fba8274 temporarily remove balance guard (#2121) 3d0e547361 Propagate message receival confirmation errors (#2116) 1c33143f07 Propagate message verification errors (#2114) b075b00910 Bump time from 0.3.20 to 0.3.21 51a3a51618 Bump serde from 1.0.160 to 1.0.162 da88d044a6 Bump clap from 4.2.5 to 4.2.7 cdca322cd6 Bump sysinfo from 0.28.4 to 0.29.0 git-subtree-dir: bridges git-subtree-split: 5fc377ab34f7dfd3293099c5feec49255e827812 * Fix * Allow to change storage constants (DeliveryReward, RequiredStakeForStakeAndSlash) + tests * Clippy * New SA for RO/WO * Squashed 'bridges/' changes from 5fc377ab34..0f6091d481 0f6091d481 Bump polkadot/substrate (#2134) 9233f0a337 Bump tokio from 1.28.0 to 1.28.1 a29c1caa93 Bump serde from 1.0.162 to 1.0.163 git-subtree-dir: bridges git-subtree-split: 0f6091d48184ebb4f75cb3089befa6b92cf37335
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 = "statemine-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
|