Skip to content

Commit

Permalink
chore: Implement manta 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 3c70d4d commit 332135d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions parachain/manta.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
def manta_run(plan,args):

exec_command = [ "bin/sh","-c","/usr/local/bin/manta --chain=manta-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 332135d

Please sign in to comment.