Skip to content

Commit

Permalink
Merge branch 'main' into DIVE-217-Testnet-setup-for-KILT-Spiritnet-Po…
Browse files Browse the repository at this point in the history
…lkadot
  • Loading branch information
shreyasbhat0 authored Nov 8, 2023
2 parents bb2fe81 + 51b9627 commit 00bdecb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions parachain/testnet-setup/pendulum.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
def run_pendulum(plan):
exec_command = [
"--chain=foucoco",
"--collator",
"--rpc-external",
"--rpc-cors=all",
"--rpc-methods=unsafe",
"--unsafe-ws-external",
"--tmp"
]
pendulum_service_config = ServiceConfig(
image = "pendulumchain/pendulum-collator:latest",
files = {
"/app": "configs",
},
ports = {
"ws": PortSpec(9944, transport_protocol = "TCP"),
"rpc": PortSpec(9933, transport_protocol = "TCP"),
},
cmd = exec_command,
entrypoint = ["/usr/local/bin/pendulum-collator"]
)
plan.add_service(name = "pendulum-node", config = pendulum_service_config)

0 comments on commit 00bdecb

Please sign in to comment.