Skip to content

Commit

Permalink
feat: implement kurtosis package for acala testnet node
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiyana committed Nov 6, 2023
1 parent 9b7ce63 commit 7ea7ed5
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions parachain/testnet-setup/acala.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
def run_acala(plan):

exec_command = [
"--chain=mandala-latest",
"--collator",
"--rpc-cors=all",
"--rpc-port=9933",
"--rpc-methods=unsafe",
"--unsafe-rpc-external",
"--unsafe-ws-external",
"--tmp",
"--execution=wasm"
]

acala_service_config = ServiceConfig(
image = "acala/mandala-node:latest",
files = {
"/app": "configs",
},
ports = {
"ws": PortSpec(9944, transport_protocol = "TCP"),
"rpc": PortSpec(9933, transport_protocol = "TCP"),
},
cmd = exec_command,
entrypoint= ["/usr/local/bin/acala"]
)
plan.add_service(name = "acala-node", config = acala_service_config)

0 comments on commit 7ea7ed5

Please sign in to comment.