Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions network_params.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ contracts_addresses:
taiko_l2: 0x1670010000000000000000000000000000010001
l2_suggested_fee_recipient: 0x8943545177806ED17B9F23F0a21ee5948eCaa776
preconf_router: 0x1788a5D023bac58bAF55a92153192a6568E42BAD
taiko_wrapper: 0x57718C9cE2CcC1D7a4a136ebECA892c8Dd9F67c7
preconf_whitelist: 0x3D7F46607b02EAd1Cd1d09A86B76885730d3De0F
avs_directory: 0xBf549F50fdbbD7Eb73ce88985AA107eEC0955f4c
strategy_manager: 0xe21c9cfea094aAbE99C96D56281a00876F97258a
Expand Down
1 change: 1 addition & 0 deletions src/package_io/input_parser.star
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ def input_parser(plan, input_args):
l2_suggested_fee_recipient=result["contracts_addresses"]["l2_suggested_fee_recipient"],
preconf_whitelist=result["contracts_addresses"]["preconf_whitelist"],
preconf_router=result["contracts_addresses"]["preconf_router"],
taiko_wrapper=result["contracts_addresses"]["taiko_wrapper"],
avs_directory=result["contracts_addresses"]["avs_directory"],
slasher=result["contracts_addresses"]["slasher"],
strategy_manager=result["contracts_addresses"]["strategy_manager"],
Expand Down
1 change: 1 addition & 0 deletions src/package_io/sanity_check.star
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ SUBCATEGORY_PARAMS = {
"l2_suggested_fee_recipient",
"preconf_whitelist",
"preconf_router",
"taiko_wrapper",
"avs_directory",
"slasher",
"service_manager",
Expand Down
1 change: 1 addition & 0 deletions src/preconf_avs/avs_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ def launch(
"TAIKO_ANCHOR_ADDRESS": contracts_addresses.taiko_l2,
"PRECONF_WHITELIST_ADDRESS": contracts_addresses.preconf_whitelist,
"PRECONF_ROUTER_ADDRESS": contracts_addresses.preconf_router,
"TAIKO_WRAPPER_ADDRESS": contracts_addresses.taiko_wrapper,
"TAIKO_CHAIN_ID": "167001",
"L1_CHAIN_ID": l1_chain_id,
"VALIDATOR_BLS_PRIVATEKEY": first_validator_bls_private_key,
Expand Down
Loading