Skip to content
Draft
Changes from all commits
Commits
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
26 changes: 26 additions & 0 deletions test/sonic/ERC4626BeefyUsdcAave.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity ^0.8.24;

import "forge-std/Test.sol";

import { IERC4626 } from "@openzeppelin/contracts/interfaces/IERC4626.sol";

import { ERC4626WrapperBaseTest } from "../ERC4626WrapperBase.t.sol";

contract ERC4626BeefyUsdcAave is ERC4626WrapperBaseTest {
function setUp() public override {
ERC4626WrapperBaseTest.setUp();
}

function setUpForkTestVariables() internal override {
network = "sonic";
overrideBlockNumber = 17711097;

// Beefy USDC to Aave
wrapper = IERC4626(0x00476804bcC4024057E5EbC9e8Eb74d641a6b665);
// Donor of USDC.e
underlyingDonor = 0x4E216C15697C1392fE59e1014B009505E05810Df;
amountToDonate = 1e6 * 1e6;
}
}
Loading