mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 22:11:02 +00:00
1b1fab0da3
## Summary Asset bridging support for AssetHub**Rococo** <-> AssetHub**Wococo** was added [here](https://github.com/paritytech/polkadot-sdk/pull/1215), so now we aim to bridge AssetHub**Rococo** and AssetHub**Westend**. (And perhaps retire AssetHubWococo and the Wococo chains). ## Solution **bridge-hub-westend-runtime** - added new runtime as a copy of `bridge-hub-rococo-runtime` - added support for bridging to `BridgeHubRococo` - added tests and benchmarks **bridge-hub-rococo-runtime** - added support for bridging to `BridgeHubWestend` - added tests and benchmarks - internal refactoring by splitting bridge configuration per network, e.g., `bridge_to_whatevernetwork_config.rs`. **asset-hub-rococo-runtime** - added support for asset bridging to `AssetHubWestend` (allows to receive only WNDs) - added new xcm router for `Westend` - added tests and benchmarks **asset-hub-westend-runtime** - added support for asset bridging to `AssetHubRococo` (allows to receive only ROCs) - added new xcm router for `Rococo` - added tests and benchmarks ## Deployment All changes will be deployed as a part of https://github.com/paritytech/polkadot-sdk/issues/1988. ## TODO - [x] benchmarks for all pallet instances - [x] integration tests - [x] local run scripts Relates to: https://github.com/paritytech/parity-bridges-common/issues/2602 Relates to: https://github.com/paritytech/polkadot-sdk/issues/1988 --------- Co-authored-by: command-bot <> Co-authored-by: Adrian Catangiu <adrian@parity.io> Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com>
95 lines
2.2 KiB
TOML
95 lines
2.2 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-rococo-validator"
|
|
validator = true
|
|
rpc_port = 9932
|
|
ws_port = 9942
|
|
balance = 2000000000000
|
|
|
|
[[relaychain.nodes]]
|
|
name = "bob-rococo-validator"
|
|
validator = true
|
|
rpc_port = 9933
|
|
ws_port = 9943
|
|
balance = 2000000000000
|
|
|
|
[[relaychain.nodes]]
|
|
name = "charlie-rococo-validator"
|
|
validator = true
|
|
rpc_port = 9934
|
|
ws_port = 9944
|
|
balance = 2000000000000
|
|
|
|
[[parachains]]
|
|
id = 1013
|
|
chain = "bridge-hub-rococo-local"
|
|
cumulus_based = true
|
|
|
|
# run alice as parachain collator
|
|
[[parachains.collators]]
|
|
name = "bridge-hub-rococo-collator1"
|
|
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",
|
|
"--force-authoring",
|
|
"--", "--rpc-port 48933"
|
|
]
|
|
|
|
# run bob as parachain collator
|
|
[[parachains.collators]]
|
|
name = "bridge-hub-rococo-collator2"
|
|
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",
|
|
"--force-authoring",
|
|
"--", "--rpc-port 48934"
|
|
]
|
|
|
|
[[parachains]]
|
|
id = 1000
|
|
chain = "asset-hub-rococo-local"
|
|
cumulus_based = true
|
|
|
|
[[parachains.collators]]
|
|
name = "asset-hub-rococo-collator1"
|
|
rpc_port = 9911
|
|
ws_port = 9910
|
|
command = "{{POLKADOT_PARACHAIN_BINARY_PATH_FOR_ASSET_HUB_ROCOCO}}"
|
|
args = [
|
|
"-lparachain=debug,xcm=trace,runtime::bridge-transfer=trace",
|
|
"--", "--rpc-port 58933"
|
|
]
|
|
|
|
[[parachains.collators]]
|
|
name = "asset-hub-rococo-collator2"
|
|
command = "{{POLKADOT_PARACHAIN_BINARY_PATH_FOR_ASSET_HUB_ROCOCO}}"
|
|
args = [
|
|
"-lparachain=debug,xcm=trace,runtime::bridge-transfer=trace",
|
|
"--", "--rpc-port 58833"
|
|
]
|
|
|
|
#[[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
|