Skip to content

Commit

Permalink
feat: Base mainnet support
Browse files Browse the repository at this point in the history
  • Loading branch information
CruzMolina authored Jan 12, 2024
1 parent 4ce820b commit 1c835c7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/BatchScript.sol
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,9 @@ abstract contract BatchScript is Script, DelegatePrank {
} else if (chainId == 5) {
SAFE_API_BASE_URL = "https://safe-transaction-goerli.safe.global/api/v1/safes/";
SAFE_MULTISEND_ADDRESS = 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761;
} else if (chainId == 8453) {
SAFE_API_BASE_URL = "https://safe-transaction-base.safe.global/api/v1/safes/";
SAFE_MULTISEND_ADDRESS = 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761;
} else if (chainId == 42161) {
SAFE_API_BASE_URL = "https://safe-transaction-arbitrum.safe.global/api/v1/safes/";
SAFE_MULTISEND_ADDRESS = 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761;
Expand Down

0 comments on commit 1c835c7

Please sign in to comment.