diff --git a/src/contracts/contract_deployer.star b/src/contracts/contract_deployer.star index 68c1e5aae..9679418fe 100644 --- a/src/contracts/contract_deployer.star +++ b/src/contracts/contract_deployer.star @@ -176,6 +176,9 @@ def _build_chain_intent( "sequencerFeeVaultRecipient": read_chain_cmd( "sequencerFeeVaultRecipient", chain_id ), + "operatorFeeVaultRecipient": read_chain_cmd( + "operatorFeeVaultRecipient", chain_id + ), "roles": { "batcher": read_chain_cmd("batcher", chain_id), "challenger": read_chain_cmd("challenger", chain_id), diff --git a/static_files/scripts/fund.sh b/static_files/scripts/fund.sh index 8f311d4d6..3878a3e23 100644 --- a/static_files/scripts/fund.sh +++ b/static_files/scripts/fund.sh @@ -10,7 +10,7 @@ nonce=$(cast nonce "$addr") deployer_addr=$(cast wallet address "$DEPLOYER_PRIVATE_KEY") mnemonic="test test test test test test test test test test test junk" -roles=("l2ProxyAdmin" "l1ProxyAdmin" "baseFeeVaultRecipient" "l1FeeVaultRecipient" "sequencerFeeVaultRecipient" "systemConfigOwner") +roles=("l2ProxyAdmin" "l1ProxyAdmin" "baseFeeVaultRecipient" "l1FeeVaultRecipient" "sequencerFeeVaultRecipient" "operatorFeeVaultRecipient" "systemConfigOwner") funded_roles=("proposer" "batcher" "sequencer" "challenger") IFS=',';read -r -a chain_ids <<< "$1"