-
Notifications
You must be signed in to change notification settings - Fork 387
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Description - Adds the endurance USDC warp deploy so it's a relayer app context - Adds Velodrome contracts, contracts were found from their private fork / in tg with them https://github.com/velodrome-finance/superchain-contracts-private/tree/main/deployment-addresses - Adds Aave contracts, contracts were found by poking around https://app.aave.com/governance/v3/proposal/?proposalId=92, which led to https://github.com/bgd-labs/aave-delivery-infrastructure?tab=readme-ov-file#deployed-addresses and seeing which contracts were sending/receiving messages in our explorer. They don't have a typical router setup -- some messaging is unidirectional. The sending address is more static than the receiving address, so I've set the matching list to be based off the sender to make configuration simpler. https://github.com/bgd-labs/aave-delivery-infrastructure?tab=readme-ov-file#deployed-addresses is the source of truth for these addresses ### Drive-by changes - Forces a warp ID to be picked in the warp monitor flow ### Related issues <!-- - Fixes #[issue number here] --> ### Backward compatibility <!-- Are these changes backward compatible? Are there any infrastructure implications, e.g. changes that would prohibit deploying older commits using this infra tooling? Yes/No --> ### Testing <!-- What kind of testing have these changes undergone? None/Manual/Unit Tests -->
- Loading branch information
Showing
18 changed files
with
152 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3e366eae1d49da4270695b157d7af00bb761156a | ||
82013508db45dcd55b44d2721414d26817686c8f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
typescript/infra/config/environments/mainnet3/misc-artifacts/aave-sender-addresses.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"ethereum": { | ||
"sender": "0xEd42a7D8559a463722Ca4beD50E0Cc05a386b0e1" | ||
}, | ||
"polygon": { | ||
"sender": "0xF6B99959F0b5e79E1CC7062E12aF632CEb18eF0d" | ||
}, | ||
"avalanche": { | ||
"sender": "0x27FC7D54C893dA63C0AE6d57e1B2B13A70690928" | ||
}, | ||
"arbitrum": { | ||
"sender": "0xCbFB78a3Eeaa611b826E37c80E4126c8787D29f0" | ||
}, | ||
"optimism": { | ||
"sender": "0x48A9FE90bce5EEd790f3F4Ce192d1C0B351fd4Ca" | ||
}, | ||
"bsc": { | ||
"sender": "0x9d33ee6543C9b2C8c183b8fb58fB089266cffA19" | ||
}, | ||
"base": { | ||
"sender": "0x529467C76f234F2bD359d7ecF7c660A2846b04e2" | ||
}, | ||
"metis": { | ||
"sender": "0x6fDaFb26915ABD6065a1E1501a37Ac438D877f70" | ||
}, | ||
"gnosis": { | ||
"sender": "0x8Dc5310fc9D3D7D1Bb3D1F686899c8F082316c9F" | ||
}, | ||
"scroll": { | ||
"sender": "0x03073D3F4769f6b6604d616238fD6c636C99AD0A" | ||
}, | ||
"polygonzkevm": { | ||
"sender": "0xed7e0874526B9BB9E36C7e9472ed7ed324CEeE3B" | ||
}, | ||
"celo": { | ||
"sender": "0x4A5f4b29C0407E5Feb323305e121f563c7bC4d79" | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
...ript/infra/config/environments/mainnet3/misc-artifacts/velo-message-module-addresses.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"optimism": { | ||
"router": "0xF385603a12Be8b7B885222329c581FDD1C30071D" | ||
}, | ||
"mode": { | ||
"router": "0xF385603a12Be8b7B885222329c581FDD1C30071D" | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
...script/infra/config/environments/mainnet3/misc-artifacts/velo-token-bridge-addresses.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"optimism": { | ||
"router": "0xA7287a56C01ac8Baaf8e7B662bDB41b10889C7A6" | ||
}, | ||
"mode": { | ||
"router": "0xA7287a56C01ac8Baaf8e7B662bDB41b10889C7A6" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters