Skip to content

Commit

Permalink
feat: use args for explorers
Browse files Browse the repository at this point in the history
Signed-off-by: Ji Hwan <[email protected]>
  • Loading branch information
jhkimqd committed Mar 22, 2024
1 parent 72b4ebe commit 4c007c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.star
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,8 @@ def run(plan, args):
"ETHEREUM_FORCE_UPDATE_GLOBAL_EXIT_ROOT": "true",
"ETHEREUM_PROOF_OF_EFFICIENCY_CONTRACT_ADDRESS": polygon_zkevm_address,
"ETHEREUM_ROLLUP_MANAGER_ADDRESS": rollup_manager_address,
"ETHEREUM_EXPLORER_URL": "https://sepolia.etherscan.io/",
"POLYGON_ZK_EVM_EXPLORER_URL": "https://sepolia.etherscan.io/",
"ETHEREUM_EXPLORER_URL": args["ethereum_explorer"],
"POLYGON_ZK_EVM_EXPLORER_URL": args["polygon_zkevm_explorer"],
"POLYGON_ZK_EVM_NETWORK_ID": "1",
"ENABLE_FIAT_EXCHANGE_RATES": "false",
"ENABLE_OUTDATED_NETWORK_MODAL": "false",
Expand Down
2 changes: 2 additions & 0 deletions params.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ l1_rpc_url: http://el-1-geth-lighthouse:8545
l1_ws_url: ws://el-1-geth-lighthouse:8546
# TODO: If we need to fund the aggregator, sequencer, and admin accounts for posting batches.. How much should we prefund??
l1_funding_amount: 100ether
ethereum_explorer: "https://sepolia.etherscan.io/"

# L2 configuration.
zkevm_deployment_salt: "0x0000000000000000000000000000000000000000000000000000000000000001"
Expand All @@ -123,6 +124,7 @@ zkevm_da_protocol: PolygonDataCommittee
zkevm_rollup_description: kurtosis devnet
zkevm_rollup_name: kurtosis-test
zkevm_rollup_real_verifier: false
polygon_zkevm_explorer: "https://sepolia.etherscan.io/"

# If this is true, we will automatically deploy an ERC20 contract on
# L1 to be used at the gasTokenAddress
Expand Down

0 comments on commit 4c007c3

Please sign in to comment.