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"); }