Skip to content

Commit

Permalink
chore: upd upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
DhairyaSethi committed Jan 6, 2025
1 parent c6f2c6e commit 9dbf84e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ contract AaveV3Arbitrum_GHOBaseLaunch_20241223_Test is ProtocolV3TestBase {
error InvalidSourcePoolAddress(bytes);

function setUp() public {
vm.createSelectFork(vm.rpcUrl('arbitrum'), 291301479);
vm.createSelectFork(vm.rpcUrl('arbitrum'), 292550754);
_upgradeArbTo1_5_1();
proposal = new AaveV3Arbitrum_GHOBaseLaunch_20241223();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ contract AaveV3Base_GHOBaseListing_20241223_ListingPreRequisites is
test_listingFailsPreLaunch();
_executeLaunchAIP(); // deploys gho token, token pool & stewards

vm.expectRevert(bytes(Errors.FAILED_ACTION_EXECUTION)); // seed amount has not been bridged yet, reverts on pool.supply()
vm.expectRevert(bytes(Errors.FAILED_ACTION_EXECUTION)); // seed amount has not been bridged yet, reverts on _preExecute()
GovernanceV3Base.PAYLOADS_CONTROLLER.executePayload(payloadId);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ contract AaveV3Base_GHOBaseLaunch_20241223_Base is ProtocolV3TestBase {
event Minted(address indexed sender, address indexed recipient, uint256 amount);

function setUp() public virtual {
arb.c.forkId = vm.createFork(vm.rpcUrl('arbitrum'), 291301479);
arb.c.forkId = vm.createFork(vm.rpcUrl('arbitrum'), 292550754);
base.c.forkId = vm.createFork(vm.rpcUrl('base'), 24519153);
eth.c.forkId = vm.createFork(vm.rpcUrl('mainnet'), 21538729);
eth.c.forkId = vm.createFork(vm.rpcUrl('mainnet'), 21564756);

arb.c.tokenAdminRegistry = ITokenAdminRegistry(0x39AE1032cF4B334a1Ed41cdD0833bdD7c7E7751E);
arb.c.token = IGhoToken(AaveV3ArbitrumAssets.GHO_UNDERLYING);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ contract AaveV3Ethereum_GHOBaseLaunch_20241223_Test is ProtocolV3TestBase {
error InvalidSourcePoolAddress(bytes);

function setUp() public {
vm.createSelectFork(vm.rpcUrl('mainnet'), 21538729);
vm.createSelectFork(vm.rpcUrl('mainnet'), 21564756);
_upgradeEthTo1_5_1();
proposal = new AaveV3Ethereum_GHOBaseLaunch_20241223();

Expand Down
4 changes: 2 additions & 2 deletions src/20241223_Multi_GHOBaseLaunch/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export const config: ConfigFile = {
votingNetwork: 'POLYGON',
},
poolOptions: {
AaveV3Ethereum: {configs: {OTHERS: {}}, cache: {blockNumber: 21538729}},
AaveV3Arbitrum: {configs: {OTHERS: {}}, cache: {blockNumber: 291301479}},
AaveV3Ethereum: {configs: {OTHERS: {}}, cache: {blockNumber: 21564756}},
AaveV3Arbitrum: {configs: {OTHERS: {}}, cache: {blockNumber: 292550754}},
AaveV3Base: {
configs: {
ASSET_LISTING: [
Expand Down

0 comments on commit 9dbf84e

Please sign in to comment.