Skip to content

Commit

Permalink
Merge pull request #9 from CruzMolina/patch-1
Browse files Browse the repository at this point in the history
Feat: Base mainnet support
  • Loading branch information
ind-igo authored Sep 4, 2024
2 parents 33ef967 + 1c835c7 commit 6821120
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 @@ -105,6 +105,9 @@ abstract contract BatchScript is Script {
} 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 6821120

Please sign in to comment.