Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GHO CCIP 1.5 Maintenance Upgrade #15

Closed
wants to merge 28 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
faf2023
feat: install aave-ccip at latest commit on aave/ccip#18
DhairyaSethi Oct 18, 2024
488d846
chore: upd remappings, lib/aave-helpers, .assets
DhairyaSethi Oct 18, 2024
1927921
new: add proposal for eth & arb
DhairyaSethi Oct 18, 2024
9cc5769
fix: arb test supply locked invariant
DhairyaSethi Oct 18, 2024
0ed5033
Merge branch 'main' into new/ccip_1_5_maintenance
DhairyaSethi Oct 21, 2024
58e177d
fix: rename, add discussion link
DhairyaSethi Oct 21, 2024
a3310b8
upd: aave-ccip module
DhairyaSethi Oct 28, 2024
a78018d
feat: add proxy pool deployments
DhairyaSethi Oct 28, 2024
f962303
feat: add e2e tests
DhairyaSethi Oct 28, 2024
38a1159
chore: fix license, explicit senders for expectEmit
DhairyaSethi Oct 28, 2024
f199681
ci: override rpc url in secrets
DhairyaSethi Oct 28, 2024
7b2376b
test: proxy pool can off ramp
DhairyaSethi Oct 28, 2024
d4d438e
chore: reorder deps
DhairyaSethi Oct 28, 2024
fc6a51c
nit: utilize existing ierc20 import, style guide, use arb assets for …
DhairyaSethi Oct 29, 2024
f64be60
feat: add rate limit, use gho fascilitator for tests
DhairyaSethi Oct 30, 2024
af02c9e
feat: set in bound rate limit as well
DhairyaSethi Oct 30, 2024
9507080
chore: cleanup
DhairyaSethi Oct 30, 2024
1f15974
test: check proxy initialized version
DhairyaSethi Oct 30, 2024
3954cb7
chore: inBetween => inFlight"
DhairyaSethi Oct 30, 2024
9abb6d3
chore: test name consistency
DhairyaSethi Oct 30, 2024
ced148d
test: dynamically fetch dest gas amt
DhairyaSethi Oct 30, 2024
b1da849
test: execMsg post migration using legacy off ramp
DhairyaSethi Oct 30, 2024
bf4f3e5
test: ccip steward can disable rate limit
DhairyaSethi Oct 30, 2024
a525136
chore: cleanup
DhairyaSethi Oct 30, 2024
be370f6
doc: add comment for fetching all offramps, use RISK_COUNCIL for clarity
DhairyaSethi Oct 31, 2024
8f151e2
test: ownership transfer after migration
DhairyaSethi Oct 31, 2024
00d8306
chore: rm _readRiskAdmin, fix config
DhairyaSethi Nov 1, 2024
870aed7
Merge branch 'main' into new/ccip_1_5_maintenance
DhairyaSethi Nov 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ contract AaveV3E2E_GHOCCIP150Upgrade_20241021_InFlightCCIPMigration is
_validateConfig({migrated: false});
}

function test_sendFlowInFlightCCIPMigrationFromEth() public {
function test_SendFlowInFlightCCIPMigrationFromEth() public {
// ETH => ARB, ccipSend 1.4; CCIP migration, Destination executeMessage
{
vm.selectFork(l1.c.forkId);
Expand Down Expand Up @@ -782,7 +782,7 @@ contract AaveV3E2E_GHOCCIP150Upgrade_20241021_InFlightCCIPMigration is
}
}

function test_sendFlowInFlightCCIPMigrationFromArb() public {
function test_SendFlowInFlightCCIPMigrationFromArb() public {
// ARB => ETH, ccipSend 1.4; CCIP migration, Destination executeMessage
{
vm.selectFork(l2.c.forkId);
Expand Down Expand Up @@ -819,7 +819,7 @@ contract AaveV3E2E_GHOCCIP150Upgrade_20241021_InFlightCCIPMigration is
assertEq(l2.c.token.balanceOf(alice), 0);

// CCIP Migration
_mockCCIPMigration(l1.c, l1.c);
_mockCCIPMigration(l1.c, l2.c);
miguelmtzinf marked this conversation as resolved.
Show resolved Hide resolved
_mockCCIPMigration(l2.c, l1.c);

vm.selectFork(l1.c.forkId);
Expand Down
Loading