mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
63ac2471aa
Since the Polkadot and Kusama runtimes are no longer in the repo, the relevant systems parachains runtimes also need to be removed. More context [here](https://github.com/paritytech/polkadot-sdk/issues/603) and [here](https://github.com/paritytech/polkadot-sdk/pull/1731). Removes the following: - `asset-hub-kusama` and `asset-hub-polkadot` - `bridge-hub-kusama` and `bridge-hub-polkadot` - `collectives-polkadot` - `glutton-kusama` Partially solves #603 and adds to #1731.
26 lines
517 B
TOML
26 lines
517 B
TOML
[relaychain]
|
|
default_image = "parity/polkadot:latest"
|
|
default_command = "polkadot"
|
|
chain = "rococo-local"
|
|
|
|
[[relaychain.nodes]]
|
|
name = "alice"
|
|
validator = true
|
|
|
|
[[relaychain.nodes]]
|
|
name = "bob"
|
|
validator = true
|
|
|
|
[[parachains]]
|
|
id = 2000
|
|
cumulus_based = true
|
|
chain = "asset-hub-rococo-local"
|
|
|
|
# run charlie as parachain collator
|
|
[[parachains.collators]]
|
|
name = "charlie"
|
|
validator = true
|
|
image = "parity/polkadot-parachain:latest"
|
|
command = "polkadot-parachain"
|
|
args = ["--force-authoring"]
|