Skip to content

Commit

Permalink
Merge pull request #9 from HugoByte/DIVE-198-Localnet-setup-for-Kylin…
Browse files Browse the repository at this point in the history
…-Polkadot

feat: implement the kurtosis package to run kylin parachain local
  • Loading branch information
shreyasbhat0 authored Oct 30, 2023
2 parents f23a394 + b7e6e26 commit ca210b1
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions parachain/kylin.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
def run_kylin(plan, args):
exec_command = [
"--base-path=/kylin/data",
"--chain=dev",
"--ws-external",
"--rpc-external",
"--rpc-cors=all",
"--name=parachain-2010-0",
"--collator",
"--rpc-methods=unsafe",
"--force-authoring",
"--execution=wasm",
"--alice",
"--node-key=52194369e4c881e4157b74fd00dff4241e50b8100b823273e25c868a70e5cde8",
"--",
"--chain=/app/rococo-local.json",
"--execution=wasm",
]
plan.add_service(
name = "kylin",
config = ServiceConfig(
image = "kylinnetworks/kylin-collator:ro-v0.9.30",
files = {
"/app": "configs",
},
ports = {
"parachain": PortSpec(9944, transport_protocol = "TCP"),
},
cmd = exec_command,
),
)

0 comments on commit ca210b1

Please sign in to comment.