Files
pezkuwi-subxt/parachain-template/polkadot-launch/config.json
T
Alexander Theißen e5810bb5fd Remove redundant binary specification (#1303)
* Remove redundant binary specification

* Update polkadot-launch config

Co-authored-by: joepetrowski <joe@parity.io>
2022-06-17 19:32:39 +00:00

40 lines
588 B
JSON

{
"relaychain": {
"bin": "../../polkadot/target/release/polkadot",
"chain": "rococo-local",
"nodes": [
{
"name": "alice",
"wsPort": 9944,
"port": 30444
},
{
"name": "bob",
"wsPort": 9955,
"port": 30555
}
]
},
"parachains": [
{
"bin": "../target/release/polkadot-parachain",
"id": "200",
"balance": "1000000000000000000000",
"nodes": [
{
"wsPort": 9988,
"name": "alice",
"port": 31200,
"flags": [
"--force-authoring",
"--",
"--execution=wasm"
]
}
]
}
],
"types": {
}
}