From 929533f470ac1da3a848b5eb9595cb9fdb696183 Mon Sep 17 00:00:00 2001 From: Maxime Date: Tue, 28 Oct 2025 18:36:41 +0000 Subject: [PATCH] fix: use multicallsendonly instead of multicallsend --- src/BatchScript.sol | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/BatchScript.sol b/src/BatchScript.sol index fee681b..768d6f8 100644 --- a/src/BatchScript.sol +++ b/src/BatchScript.sol @@ -101,19 +101,19 @@ abstract contract BatchScript is Script { // Set the Safe API base URL and multisend address based on chain if (chainId == 1) { SAFE_API_BASE_URL = "https://safe-transaction-mainnet.safe.global/api/v1/safes/"; - SAFE_MULTISEND_ADDRESS = 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761; + SAFE_MULTISEND_ADDRESS = 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D; } else if (chainId == 5) { SAFE_API_BASE_URL = "https://safe-transaction-goerli.safe.global/api/v1/safes/"; - SAFE_MULTISEND_ADDRESS = 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761; + SAFE_MULTISEND_ADDRESS = 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D; } else if (chainId == 8453) { SAFE_API_BASE_URL = "https://safe-transaction-base.safe.global/api/v1/safes/"; - SAFE_MULTISEND_ADDRESS = 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761; + SAFE_MULTISEND_ADDRESS = 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D; } else if (chainId == 42161) { SAFE_API_BASE_URL = "https://safe-transaction-arbitrum.safe.global/api/v1/safes/"; - SAFE_MULTISEND_ADDRESS = 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761; + SAFE_MULTISEND_ADDRESS = 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D; } else if (chainId == 43114) { SAFE_API_BASE_URL = "https://safe-transaction-avalanche.safe.global/api/v1/safes/"; - SAFE_MULTISEND_ADDRESS = 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761; + SAFE_MULTISEND_ADDRESS = 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D; } else { revert("Unsupported chain"); }