mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 14:07:58 +00:00
f68e124a96
* Add simple example on how to spin up network. * Update readme * Remove unnecessary prefix * Improve folder structure * Add link to file * Fix paths in readme * Update README.md Co-authored-by: Bastian Köcher <git@kchr.de> Co-authored-by: Bastian Köcher <git@kchr.de>
26 lines
510 B
TOML
26 lines
510 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 = "statemine-local"
|
|
|
|
# run charlie as parachain collator
|
|
[[parachains.collators]]
|
|
name = "charlie"
|
|
validator = true
|
|
image = "parity/polkadot-parachain:latest"
|
|
command = "polkadot-parachain"
|
|
args = ["--force-authoring"]
|