-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into DIVE-231-Testnet-setu…
…p-for-Ajuna-Network-Polkadot
- Loading branch information
Showing
11 changed files
with
52,982 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
def run_acala(plan): | ||
|
||
exec_command = [ | ||
"--chain=acala", | ||
"--collator", | ||
"--rpc-cors=all", | ||
"--rpc-port=9933", | ||
"--rpc-methods=unsafe", | ||
"--unsafe-rpc-external", | ||
"--tmp", | ||
"--execution=wasm" | ||
] | ||
|
||
acala_service_config = ServiceConfig( | ||
image = "acala/acala-node:latest", | ||
files = { | ||
"/app": "configs", | ||
}, | ||
ports = { | ||
"rpc": PortSpec(9933, transport_protocol = "TCP"), | ||
}, | ||
cmd = exec_command, | ||
entrypoint= ["/usr/local/bin/acala"] | ||
) | ||
plan.add_service(name = "acala-node", config = acala_service_config) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
def run_bifrost_kusama(plan): | ||
exec_command = [ | ||
"--base-path=/data", | ||
"--chain=/app/bifrost-kusama.json", | ||
"--ws-external", | ||
"--rpc-external", | ||
"--rpc-cors=all", | ||
"--name=parachain-2001-0", | ||
"--collator", | ||
"--rpc-methods=unsafe", | ||
"--force-authoring", | ||
"--execution=wasm", | ||
] | ||
plan.add_service( | ||
name = "bifrost", | ||
config = ServiceConfig( | ||
image = "bifrostnetwork/bifrost:bifrost-v0.9.66", | ||
files = { | ||
"/app": "configs", | ||
}, | ||
ports = { | ||
"ws": PortSpec(9944, transport_protocol = "TCP"), | ||
}, | ||
cmd = exec_command, | ||
entrypoint = ["/usr/local/bin/bifrost"], | ||
), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
def run_kintsungi(plan): | ||
|
||
exec_command = [ | ||
"--chain=/app/kintsugi.json", | ||
"--wasm-execution=compiled", | ||
"--force-authoring", | ||
"--port=30333", | ||
"--rpc-port=9944", | ||
"--rpc-external", | ||
"--rpc-cors=all", | ||
"--rpc-methods=Unsafe", | ||
"--unsafe-ws-external" | ||
] | ||
service_details = plan.add_service( | ||
name="kintsungi", | ||
config= ServiceConfig( | ||
image = "interlayhq/interbtc:latest", | ||
files={ | ||
"/app":"configs" | ||
}, | ||
ports = { | ||
"ws" : PortSpec(9944, transport_protocol="TCP"), | ||
}, | ||
cmd=exec_command, | ||
entrypoint= ["/usr/local/bin/interbtc-parachain"] | ||
) | ||
) | ||
|
||
return service_details |
Large diffs are not rendered by default.
Oops, something went wrong.
52,182 changes: 52,182 additions & 0 deletions
52,182
parachain/static_files/configs/bifrost-kusama.json
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
def run_altair(plan): | ||
exec_command = [ | ||
"--chain=catalyst", | ||
"--rpc-port=9933", | ||
"--rpc-external", | ||
"--rpc-cors=all", | ||
"--rpc-methods=unsafe", | ||
"--unsafe-ws-external", | ||
"--execution=wasm", | ||
"--tmp", | ||
"--", | ||
"--chain=rococo" | ||
] | ||
altair_service_config = ServiceConfig( | ||
image = "centrifugeio/centrifuge-chain:test-main-latest", | ||
files = { | ||
"/app": "configs", | ||
}, | ||
ports = { | ||
"ws": PortSpec(9944, transport_protocol = "TCP"), | ||
"rpc": PortSpec(9933, transport_protocol = "TCP"), | ||
}, | ||
public_ports = { | ||
"ws": PortSpec(9432, transport_protocol = "TCP"), | ||
"rpc": PortSpec(9431, transport_protocol = "TCP"), | ||
}, | ||
cmd = exec_command, | ||
entrypoint = ["/usr/local/bin/centrifuge-chain"] | ||
) | ||
plan.add_service(name = "altair-node", config = altair_service_config) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
def run_bifrost(plan): | ||
exec_command = [ | ||
"--chain /specs/bifrost-testnet.json", | ||
"--port=9944", | ||
"--chain=/app/bifrost-k-rococo.json", | ||
"--port=30333", | ||
"--rpc-port=9933", | ||
"--rpc-cors=all", | ||
"--rpc-external", | ||
] | ||
|
||
service_config = ServiceConfig( | ||
image = "thebifrost/bifrost-node:latest", | ||
image = "bifrostnetwork/bifrost:bifrost-v0.9.66", | ||
files = { | ||
"/app": "configs", | ||
}, | ||
ports = { | ||
"rpc": PortSpec(9944, transport_protocol = "TCP"), | ||
"ws": PortSpec(9933, transport_protocol = "TCP"), | ||
}, | ||
entrypoint = exec_command, | ||
cmd = exec_command, | ||
entrypoint =["/usr/local/bin/bifrost"] | ||
) | ||
|
||
plan.add_service(name = "bifrost-node", service_config = service_config) | ||
plan.add_service(name="bifrost-node", config = service_config) |