Skip to content

Commit

Permalink
For sibling chain test
Browse files Browse the repository at this point in the history
  • Loading branch information
yrong committed Feb 12, 2022
1 parent 131f2f2 commit d0024f4
Show file tree
Hide file tree
Showing 2 changed files with 206 additions and 0 deletions.
103 changes: 103 additions & 0 deletions scripts/bifrost-karura.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
{
"relaychain": {
"bin": "../polkadot/target/release/polkadot",
"chain": "rococo-local",
"nodes": [
{
"name": "alice",
"wsPort": 19944,
"port": 30444
},
{
"name": "bob",
"wsPort": 19955,
"port": 30555
},
{
"name": "charlie",
"wsPort": 19966,
"port": 30666
},
{
"name": "dave",
"wsPort": 19977,
"port": 30777
}
],
"genesis": {
"runtime": {
"runtime_genesis_config": {
"configuration": {
"config": {
"validation_upgrade_frequency": 1,
"validation_upgrade_delay": 10
}
}
}
}
}
},
"parachains": [
{
"bin": "../bifrost/target/release/bifrost",
"chain": "bifrost-local",
"nodes": [
{
"wsPort": 19988,
"port": 31200,
"name": "alice",
"flags": [
"--unsafe-ws-external",
"--unsafe-rpc-external",
"--rpc-external",
"--ws-external",
"--rpc-cors=all",
"--rpc-methods=Unsafe",
"--force-authoring",
"--",
"--execution=wasm"
]
}
]
},
{
"bin": "../Acala/target/release/acala",
"chain": "karura-dev",
"nodes": [
{
"wsPort": 19999,
"port": 31300,
"name": "alice",
"flags": [
"--unsafe-ws-external",
"--unsafe-rpc-external",
"--rpc-external",
"--ws-external",
"--rpc-cors=all",
"--rpc-methods=Unsafe",
"--force-authoring",
"--",
"--execution=wasm"
]
}
]
}
],
"simpleParachains": [],
"hrmpChannels": [
{
"sender": 2000,
"recipient": 2001,
"maxCapacity": 8,
"maxMessageSize": 512
},
{
"sender": 2001,
"recipient": 2000,
"maxCapacity": 8,
"maxMessageSize": 512
}
],
"types": {},
"finalization": false
}
103 changes: 103 additions & 0 deletions scripts/bifrost-statemine.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
{
"relaychain": {
"bin": "../polkadot/target/release/polkadot",
"chain": "rococo-local",
"nodes": [
{
"name": "alice",
"wsPort": 19944,
"port": 30444
},
{
"name": "bob",
"wsPort": 19955,
"port": 30555
},
{
"name": "charlie",
"wsPort": 19966,
"port": 30666
},
{
"name": "dave",
"wsPort": 19977,
"port": 30777
}
],
"genesis": {
"runtime": {
"runtime_genesis_config": {
"configuration": {
"config": {
"validation_upgrade_frequency": 1,
"validation_upgrade_delay": 10
}
}
}
}
}
},
"parachains": [
{
"bin": "../bifrost/target/release/bifrost",
"chain": "bifrost-local",
"nodes": [
{
"wsPort": 19988,
"port": 31200,
"name": "alice",
"flags": [
"--unsafe-ws-external",
"--unsafe-rpc-external",
"--rpc-external",
"--ws-external",
"--rpc-cors=all",
"--rpc-methods=Unsafe",
"--force-authoring",
"--",
"--execution=wasm"
]
}
]
},
{
"bin": "../cumulus/target/release/polkadot-collator",
"chain": "westmint-dev",
"nodes": [
{
"wsPort": 19999,
"port": 31300,
"name": "alice",
"flags": [
"--unsafe-ws-external",
"--unsafe-rpc-external",
"--rpc-external",
"--ws-external",
"--rpc-cors=all",
"--rpc-methods=Unsafe",
"--force-authoring",
"--",
"--execution=wasm"
]
}
]
}
],
"simpleParachains": [],
"hrmpChannels": [
{
"sender": 1000,
"recipient": 2001,
"maxCapacity": 8,
"maxMessageSize": 512
},
{
"sender": 2001,
"recipient": 1000,
"maxCapacity": 8,
"maxMessageSize": 512
}
],
"types": {},
"finalization": false
}

0 comments on commit d0024f4

Please sign in to comment.