Skip to content

Commit

Permalink
feat: implement kurtosis package for bifrost-polkadot mainnet node setup
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiyana committed Nov 8, 2023
1 parent d42553d commit 4650d7e
Show file tree
Hide file tree
Showing 3 changed files with 52,307 additions and 0 deletions.
27 changes: 27 additions & 0 deletions parachain/mainnet-setup/bifrost.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
def run_bifrost_polkadot(plan):
exec_command = [
"--base-path=/data",
"--chain=/app/bifrost-polkadot.json",
"--ws-external",
"--rpc-external",
"--rpc-cors=all",
"--name=parachain-2001-0",
"--collator",
"--rpc-methods=unsafe",
"--force-authoring",
"--execution=wasm"
]
plan.add_service(
name = "bifrost",
config = ServiceConfig(
image = "bifrostnetwork/bifrost:bifrost-v0.9.66",
files = {
"/app": "configs",
},
ports = {
"ws": PortSpec(9944, transport_protocol = "TCP"),
},
cmd = exec_command,
entrypoint = ["/usr/local/bin/bifrost"],
),
)
Loading

0 comments on commit 4650d7e

Please sign in to comment.