Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into DIVE-231-Testnet-setu…
Browse files Browse the repository at this point in the history
…p-for-Ajuna-Network-Polkadot
  • Loading branch information
shanithkk committed Nov 9, 2023
2 parents a9e5d33 + e0f3a67 commit 7a6e893
Show file tree
Hide file tree
Showing 11 changed files with 52,982 additions and 5 deletions.
25 changes: 25 additions & 0 deletions parachain/mainnet-setup/acala.star
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)
27 changes: 27 additions & 0 deletions parachain/mainnet-setup/bifrost.star
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"],
),
)
29 changes: 29 additions & 0 deletions parachain/mainnet-setup/kintsugi.star
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
168 changes: 168 additions & 0 deletions parachain/static_files/configs/bifrost-k-rococo.json

Large diffs are not rendered by default.

52,182 changes: 52,182 additions & 0 deletions parachain/static_files/configs/bifrost-kusama.json

Large diffs are not rendered by default.

98 changes: 98 additions & 0 deletions parachain/static_files/configs/bifrost-polkadot.json

Large diffs are not rendered by default.

95 changes: 95 additions & 0 deletions parachain/static_files/configs/catalyst-spec.json

Large diffs are not rendered by default.

182 changes: 182 additions & 0 deletions parachain/static_files/configs/interlay.json

Large diffs are not rendered by default.

137 changes: 137 additions & 0 deletions parachain/static_files/configs/kintsugi.json

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions parachain/testnet-setup/altair.star
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)
14 changes: 9 additions & 5 deletions parachain/testnet-setup/bifrost.star
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)

0 comments on commit 7a6e893

Please sign in to comment.