Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into DIVE-208-Localnet-set…
Browse files Browse the repository at this point in the history
…up-for-Litmus-Kusama
  • Loading branch information
shanithkk committed Oct 31, 2023
2 parents 354ccdb + 42bdf39 commit 1770766
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions parachain/moonbeam.star
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ def run_moonbeam(plan):
"--rpc-cors=all",
"--rpc-methods=unsafe",
"--tmp",
"--unsafe-rpc-external",
]
moonbeam_service_config = ServiceConfig(
image = "moonbeamfoundation/moonbeam:sha-32933811",
Expand All @@ -23,3 +24,24 @@ def run_moonbeam(plan):
cmd = exec_command,
)
plan.add_service(name = "acala-node", config = moonbeam_service_config)

def run_moonriver(plan, args):
exec_command = [
"--chain=dev",
"--collator",
"--rpc-external",
"--rpc-cors=all",
"--rpc-methods=unsafe",
"--tmp",
"--unsafe-rpc-external",
]
plan.add_service(name = "moonriver-node", config = ServiceConfig(
image = "moonbeamfoundation/moonbeam:sha-519bd694",
files = {
"/app": "configs",
},
ports = {
"9944": PortSpec(9944, transport_protocol = "TCP"),
},
cmd = exec_command,
))

0 comments on commit 1770766

Please sign in to comment.