Skip to content

Commit

Permalink
chore: wip - deploy pless node with cdk
Browse files Browse the repository at this point in the history
  • Loading branch information
leovct committed Mar 20, 2024
1 parent 5f18c4d commit ec80077
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions main.star
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ ethereum_package = import_module(
zkevm_databases_package = import_module("./lib/databases.star")
zkevm_node_package = import_module("./lib/node.star")
zkevm_prover_package = import_module("./lib/prover.star")
zkevm_permissionless_node_package = import_module("./permissionless-node.star")

CONTRACTS_IMAGE = "node:20-bookworm"
CONTRACTS_BRANCH = "develop"
Expand Down Expand Up @@ -265,6 +266,15 @@ def run(plan, args):
aggregator_keystore_artifact,
)

# TODO: Start default pless node
permissionless_args = args
permissionless_args["deployment_suffix"] = "-pless-001"
permissionless_args["genesis_artifact"] = genesis_artifact

#permissionless_args["trusted_sequencer_node_uri"] = "zkevm-node-sequencer-001:6900"
#permissionless_args["zkevm_aggregator_host"] = "zkevm-node-aggregator-001"
zkevm_permissionless_node_package.run(plan, args)

# Start bridge
plan.add_service(
name="zkevm-bridge-service" + args["deployment_suffix"],
Expand Down

0 comments on commit ec80077

Please sign in to comment.