Skip to content

Commit

Permalink
chore: Implement calamari parachain for polkadot package
Browse files Browse the repository at this point in the history
  • Loading branch information
shanithkk committed Oct 27, 2023
1 parent 332135d commit 21d06b4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions parachain/manta.star
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,19 @@ def manta_run(plan,args):
)
)

def calamari_run(plan,args):

exec_command = [ "bin/sh","-c","/usr/local/bin/manta --chain=calamari-local --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 = "mantanetwork/manta:latest",
files={
"/app":"output"
},
ports = {
"parachain" : PortSpec(9944, transport_protocol="TCP"),
},
entrypoint=exec_command
)
)

0 comments on commit 21d06b4

Please sign in to comment.