Skip to content

Commit

Permalink
Merge pull request #6 from HugoByte/DIVE-197-Localnet-setup-for-Inter…
Browse files Browse the repository at this point in the history
…lay-Polkadot

feat: implement the kurtosis package to run interlay parachain local
  • Loading branch information
shreyasbhat0 authored Oct 27, 2023
2 parents b974c3e + 611751a commit 3c70d4d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions parachain/interlay.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
def interrelay_run(plan,args):

exec_command = [ "bin/sh","-c","/usr/local/bin/interbtc-parachain --chain=dev --wasm-execution=compiled --force-authoring --port 30333 --rpc-port 9944 --rpc-external --rpc-cors all --rpc-methods=Unsafe -- --wasm-execution=compiled --chain=/app/rococo-local.json"]
parachain = plan.add_service(
name="interrelay",
config= ServiceConfig(
image = "interlayhq/interbtc:latest",
files={
"/app":"output"
},
ports = {
"parachain" : PortSpec(9944, transport_protocol="TCP"),
},
entrypoint=exec_command
)
)

0 comments on commit 3c70d4d

Please sign in to comment.