Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: implement kurtosis package for local setup of pendulum parachain #18

Merged
merged 6 commits into from
Oct 30, 2023
Merged
28 changes: 28 additions & 0 deletions parachain/pendulum.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
def run_pendulum(plan):
exec_command = [
"--chain=dev",
"--collator",
"--rpc-external",
"--rpc-cors=all",
"--rpc-methods=unsafe",
"--tmp",
"--",
"--wasm-execution=compiled",
"--chain=/app/rococo-local.json"
]
pendulum_service_config = ServiceConfig(
image = "pendulumchain/pendulum-collator:latest",
files = {
"/app": "configs",
},
ports = {
"9944": PortSpec(9944, transport_protocol = "TCP"),
"9933": PortSpec(9933, transport_protocol = "TCP"),
},
public_ports = {
"9944": PortSpec(9432, transport_protocol = "TCP"),
"9933": PortSpec(9431, transport_protocol = "TCP"),
},
cmd = exec_command,
)
plan.add_service(name = "pendulum-node", config = pendulum_service_config)