Skip to content

Commit

Permalink
feat: implement kurtosis package for moonbeam mainnet node setup
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiyana committed Nov 9, 2023
1 parent 7ae93b3 commit 701ee18
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions parachain/mainnet-setup/moonbeam.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
def run_moonbeam(plan):
exec_command = [
"--chain=moonbeam",
"--collator",
"--rpc-external",
"--rpc-cors=all",
"--rpc-methods=unsafe",
"--unsafe-rpc-external",
]
moonbeam_service_config = ServiceConfig(
image = "moonbeamfoundation/moonbeam:sha-32933811",
files = {
"/app": "configs",
},
ports = {
"ws": PortSpec(9944, transport_protocol = "TCP"),
},
cmd = exec_command,
entrypoint = ["/moonbeam/moonbeam"]
)
plan.add_service(name = "acala-node", config = moonbeam_service_config)

0 comments on commit 701ee18

Please sign in to comment.