Skip to content

Commit

Permalink
Merge branch 'main' into DIVE-210-Localnet-setup-for-subzero-Kusama
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyasbhat0 authored Oct 31, 2023
2 parents d99f5dd + d72e409 commit 232d4fc
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parachain/ajuna.star
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ def run_ajuna(plan, args):
"ws": PortSpec(9944, transport_protocol = "TCP"),
},
cmd = exec_command,
),
)
)
)
30 changes: 30 additions & 0 deletions parachain/kintsungi.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
def run_kintsungi(plan,args):

exec_command = [
"--chain=dev",
"--wasm-execution=compiled",
"--force-authoring",
"--port 30333",
"--rpc-port 9944",
"--rpc-external",
"--rpc-cors all",
"--rpc-methods=Unsafe",
"--",
"--wasm-execution=compiled",
"--chain=/app/rococo-local.json"
]
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
)
)

return service_details
26 changes: 26 additions & 0 deletions parachain/robonomics.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
def run_robonomics(plan):
exec_command = [
"robonomics",
"--chain=dev",
"--collator",
"--rpc-external",
"--rpc-cors=all",
"--rpc-methods=unsafe",
"--unsafe-ws-external",
"--tmp",
"--",
"--chain=/app/rococo-local.json",
"--execution=wasm",
]
robonomics_service_config = ServiceConfig(
image = "robonomics/robonomics:latest",
files = {
"/app": "configs",
},
ports = {
"ws": PortSpec(9944, transport_protocol = "TCP"),
"tcp": PortSpec(9933, transport_protocol = "TCP"),
},
cmd = exec_command,
)
plan.add_service(name = "robonomics-node", config = robonomics_service_config)

0 comments on commit 232d4fc

Please sign in to comment.