From 3315da61fddc094d2d34af428e94469b1f5e696e Mon Sep 17 00:00:00 2001 From: Shawn <44221603+shaspitz@users.noreply.github.com> Date: Sun, 28 Sep 2025 11:24:05 -0700 Subject: [PATCH 1/3] Update DeployStandardBridge.s.sol --- contracts/scripts/standard-bridge/DeployStandardBridge.s.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/scripts/standard-bridge/DeployStandardBridge.s.sol b/contracts/scripts/standard-bridge/DeployStandardBridge.s.sol index 351aff23c..c1239979e 100644 --- a/contracts/scripts/standard-bridge/DeployStandardBridge.s.sol +++ b/contracts/scripts/standard-bridge/DeployStandardBridge.s.sol @@ -32,7 +32,7 @@ contract BridgeBase is Script { uint256 public constant DEPLOYER_INITIAL_BALANCE = DEPLOYER_GENESIS_ALLOCATION - ORACLE_INITIAL_FUNDING_MEV_COMMIT_CHAIN; // Amount of ETH to initially fund the relayer account on L1. - uint256 public constant RELAYER_INITIAL_FUNDING_L1 = 1 ether; + uint256 public constant RELAYER_INITIAL_FUNDING_L1 = 0.1 ether; // Amount of ETH required by the contract deployer to initialize all bridge and core contract state, // AND initially fund the relayer, all on mev-commit chain. From 3836b5c79917535f5c80bae6d8cd903ace8eac94 Mon Sep 17 00:00:00 2001 From: Shawn <44221603+shaspitz@users.noreply.github.com> Date: Sun, 28 Sep 2025 11:58:04 -0700 Subject: [PATCH 2/3] also reduce zero fee addr requirements --- contracts/scripts/standard-bridge/DeployStandardBridge.s.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/scripts/standard-bridge/DeployStandardBridge.s.sol b/contracts/scripts/standard-bridge/DeployStandardBridge.s.sol index c1239979e..99e835e2c 100644 --- a/contracts/scripts/standard-bridge/DeployStandardBridge.s.sol +++ b/contracts/scripts/standard-bridge/DeployStandardBridge.s.sol @@ -17,12 +17,12 @@ contract BridgeBase is Script { // Amount of ETH to initially fund the relayer account on the mev-commit chain. // This should be high enough to cover the cost of enqueuing transactions as // long as the relayer account is a zero-fee account. - uint256 public constant RELAYER_INITIAL_FUNDING_MEV_COMMIT_CHAIN = 0.03 ether; + uint256 public constant RELAYER_INITIAL_FUNDING_MEV_COMMIT_CHAIN = 0.01 ether; // Amount of ETH to initially fund the oracle account on the mev-commit chain. // This should be high enough to cover the cost of enqueuing transactions as // long as the oracle account is a zero-fee account. - uint256 public constant ORACLE_INITIAL_FUNDING_MEV_COMMIT_CHAIN = 0.5 ether; + uint256 public constant ORACLE_INITIAL_FUNDING_MEV_COMMIT_CHAIN = 0.01 ether; // Amount of ETH which must be allocated only to the contract deployer on mev-commit chain genesis. uint256 public constant DEPLOYER_GENESIS_ALLOCATION = type(uint256).max - 500 ether; From 7f590c8542e73db5476c98792ef50f23466cdc89 Mon Sep 17 00:00:00 2001 From: Shawn <44221603+shaspitz@users.noreply.github.com> Date: Sun, 28 Sep 2025 12:00:18 -0700 Subject: [PATCH 3/3] Update DeployStandardBridge.s.sol --- contracts/scripts/standard-bridge/DeployStandardBridge.s.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/scripts/standard-bridge/DeployStandardBridge.s.sol b/contracts/scripts/standard-bridge/DeployStandardBridge.s.sol index 99e835e2c..77bff462c 100644 --- a/contracts/scripts/standard-bridge/DeployStandardBridge.s.sol +++ b/contracts/scripts/standard-bridge/DeployStandardBridge.s.sol @@ -17,12 +17,12 @@ contract BridgeBase is Script { // Amount of ETH to initially fund the relayer account on the mev-commit chain. // This should be high enough to cover the cost of enqueuing transactions as // long as the relayer account is a zero-fee account. - uint256 public constant RELAYER_INITIAL_FUNDING_MEV_COMMIT_CHAIN = 0.01 ether; + uint256 public constant RELAYER_INITIAL_FUNDING_MEV_COMMIT_CHAIN = 0.03 ether; // Amount of ETH to initially fund the oracle account on the mev-commit chain. // This should be high enough to cover the cost of enqueuing transactions as // long as the oracle account is a zero-fee account. - uint256 public constant ORACLE_INITIAL_FUNDING_MEV_COMMIT_CHAIN = 0.01 ether; + uint256 public constant ORACLE_INITIAL_FUNDING_MEV_COMMIT_CHAIN = 0.1 ether; // Amount of ETH which must be allocated only to the contract deployer on mev-commit chain genesis. uint256 public constant DEPLOYER_GENESIS_ALLOCATION = type(uint256).max - 500 ether;