File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed
Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ DEPLOY_INTERNAL_BOOTNODE=false
2323CREATE_ETH_DEVNET = false
2424CREATE_ROLLUP_CONTRACTS = false
2525VERIFY_CONTRACTS = false
26+ REDEPLOY_ROLLUP_CONTRACTS = false
2627
2728USE_NETWORK_CONFIG = true
28- PROVER_REPLICAS = 1
29- PROVER_AGENTS_PER_PROVER = 2
29+ PROVER_REPLICAS = 2
3030PROVER_AGENT_PROOF_TYPES = ' ["PUBLIC_VM"]'
3131REAL_VERIFIER = true
3232FISHERMAN_MODE = true
Original file line number Diff line number Diff line change @@ -16,8 +16,14 @@ LABS_INFRA_MNEMONIC=REPLACE_WITH_GCP_SECRET
1616ROLLUP_DEPLOYMENT_PRIVATE_KEY = REPLACE_WITH_GCP_SECRET
1717OTEL_COLLECTOR_ENDPOINT = REPLACE_WITH_GCP_SECRET
1818
19- CREATE_ROLLUP_CONTRACTS = true
19+ SNAPSHOT_BUCKET_DIRECTORY = ${ SNAPSHOT_BUCKET_DIRECTORY:-devnet }
20+ R2_ACCESS_KEY_ID = REPLACE_WITH_GCP_SECRET
21+ R2_SECRET_ACCESS_KEY = REPLACE_WITH_GCP_SECRET
22+
23+ CREATE_ROLLUP_CONTRACTS = false
2024VERIFY_CONTRACTS = false
25+ REDEPLOY_ROLLUP_CONTRACTS = false
26+ USE_NETWORK_CONFIG = true
2127
2228DEPLOY_INTERNAL_BOOTNODE = false
2329
Original file line number Diff line number Diff line change 341341terraform -chdir=" ${DEPLOY_ROLLUP_CONTRACTS_DIR} " init -reconfigure > /dev/null
342342EXISTING_REGISTRY=$( terraform -chdir=" ${DEPLOY_ROLLUP_CONTRACTS_DIR} " output -raw registry_address 2> /dev/null | grep -E ' ^0x[a-fA-F0-9]{40}$' || true)
343343
344- if [[ -n " ${EXISTING_REGISTRY} " && " ${REDEPLOY_ROLLUP_CONTRACTS} " != " true" ]]; then
344+ if [[ ( -n " ${EXISTING_REGISTRY} " || " ${USE_NETWORK_CONFIG :- true} " == " true " ) && " ${REDEPLOY_ROLLUP_CONTRACTS} " != " true" ]]; then
345345 log " Contracts already deployed (registry=${EXISTING_REGISTRY} ), skipping deployment"
346346else
347347 if [[ " ${REDEPLOY_ROLLUP_CONTRACTS} " == " true" ]]; then
You can’t perform that action at this time.
0 commit comments