-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from GenerationSoftware/gen-1922-test-moonwel…
…l-metamorpho-vaults-on-base test moonwell metamorpho vaults on base
- Loading branch information
Showing
3 changed files
with
209 additions
and
0 deletions.
There are no files selected for viewing
76 changes: 76 additions & 0 deletions
76
test/integration/morpho-vaults/MorphoGauntletUsdcEthereum.t.sol
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,76 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.24; | ||
|
||
import { BaseIntegration, IERC20, IERC4626 } from "../BaseIntegration.t.sol"; | ||
|
||
interface IMorpho { | ||
function market(bytes32 id) external view returns (Market memory m); | ||
} | ||
|
||
struct Market { | ||
uint128 totalSupplyAssets; | ||
uint128 totalSupplyShares; | ||
uint128 totalBorrowAssets; | ||
uint128 totalBorrowShares; | ||
uint128 lastUpdate; | ||
uint128 fee; | ||
} | ||
|
||
contract MorphoGauntletUsdcEthereumIntegrationTest is BaseIntegration { | ||
uint256 fork; | ||
uint256 forkBlock = 20678002; | ||
uint256 forkBlockTimestamp = 1725462323; | ||
|
||
address internal _asset = address(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48); | ||
address internal _assetWhale = address(0x4B16c5dE96EB2117bBE5fd171E4d203624B014aa); | ||
address internal _yieldVault = address(0x8eB67A509616cd6A7c1B3c8C21D48FF57df3d458); | ||
address internal _morpho = address(0xBBBBBbbBBb9cC5e90e3b3Af64bdAF62C37EEFFCb); | ||
bytes32 internal _assetMarketId = bytes32(0x54efdee08e272e929034a8f26f7ca34b1ebe364b275391169b28c6d7db24dbc8); | ||
|
||
/* ============ setup ============ */ | ||
|
||
function setUpUnderlyingAsset() public virtual override returns (IERC20 asset, uint8 decimals, uint256 approxAssetUsdExchangeRate) { | ||
return (IERC20(_asset), 6, 1e18); | ||
} | ||
|
||
function setUpYieldVault() public virtual override returns (IERC4626) { | ||
return IERC4626(_yieldVault); | ||
} | ||
|
||
function setUpFork() public virtual override { | ||
fork = vm.createFork(vm.rpcUrl("mainnet"), forkBlock); | ||
vm.selectFork(fork); | ||
vm.warp(forkBlockTimestamp); | ||
} | ||
|
||
function beforeSetup() public virtual override { | ||
lowGasPriceEstimate = 0.1 gwei; | ||
} | ||
|
||
function afterSetup() public virtual override { } | ||
|
||
/* ============ helpers to override ============ */ | ||
|
||
/// @dev The max amount of assets than can be dealt. | ||
function maxDeal() public virtual override returns (uint256) { | ||
return underlyingAsset.balanceOf(_assetWhale); | ||
} | ||
|
||
/// @dev May revert if the amount requested exceeds the amount available to deal. | ||
function dealAssets(address to, uint256 amount) public virtual override prankception(_assetWhale) { | ||
underlyingAsset.transfer(to, amount); | ||
} | ||
|
||
/// @dev Accrues yield by letting some time pass | ||
function _accrueYield() internal virtual override { | ||
vm.warp(block.timestamp + 1 days); | ||
} | ||
|
||
/// @dev Simulates loss by mocking the total assets on the market | ||
function _simulateLoss() internal virtual override prankception(_yieldVault) { | ||
Market memory _marketData = IMorpho(_morpho).market(_assetMarketId); | ||
_marketData.totalSupplyAssets = _marketData.totalSupplyAssets / 2; | ||
vm.mockCall(_morpho, abi.encodeWithSelector(IMorpho.market.selector), abi.encode(_marketData)); | ||
} | ||
|
||
} |
74 changes: 74 additions & 0 deletions
74
test/integration/morpho-vaults/MorphoGauntletWethPrimeEthereum.t.sol
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,74 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.24; | ||
|
||
import { BaseIntegration, IERC20, IERC4626 } from "../BaseIntegration.t.sol"; | ||
|
||
interface IMorpho { | ||
function market(bytes32 id) external view returns (Market memory m); | ||
} | ||
|
||
struct Market { | ||
uint128 totalSupplyAssets; | ||
uint128 totalSupplyShares; | ||
uint128 totalBorrowAssets; | ||
uint128 totalBorrowShares; | ||
uint128 lastUpdate; | ||
uint128 fee; | ||
} | ||
|
||
contract MorphoGauntletWethPrimeEthereumIntegrationTest is BaseIntegration { | ||
uint256 fork; | ||
uint256 forkBlock = 20678002; | ||
uint256 forkBlockTimestamp = 1725462323; | ||
|
||
address internal _asset = address(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); | ||
address internal _assetWhale = address(0xF04a5cC80B1E94C69B48f5ee68a08CD2F09A7c3E); | ||
address internal _yieldVault = address(0x2371e134e3455e0593363cBF89d3b6cf53740618); | ||
address internal _morpho = address(0xBBBBBbbBBb9cC5e90e3b3Af64bdAF62C37EEFFCb); | ||
bytes32 internal _assetMarketId = bytes32(0xc54d7acf14de29e0e5527cabd7a576506870346a78a11a6762e2cca66322ec41); | ||
|
||
/* ============ setup ============ */ | ||
|
||
function setUpUnderlyingAsset() public virtual override returns (IERC20 asset, uint8 decimals, uint256 approxAssetUsdExchangeRate) { | ||
return (IERC20(_asset), 18, 2500e18); | ||
} | ||
|
||
function setUpYieldVault() public virtual override returns (IERC4626) { | ||
return IERC4626(_yieldVault); | ||
} | ||
|
||
function setUpFork() public virtual override { | ||
fork = vm.createFork(vm.rpcUrl("mainnet"), forkBlock); | ||
vm.selectFork(fork); | ||
vm.warp(forkBlockTimestamp); | ||
} | ||
|
||
function beforeSetup() public virtual override { | ||
lowGasPriceEstimate = 0.1 gwei; | ||
} | ||
|
||
function afterSetup() public virtual override { } | ||
|
||
/* ============ helpers to override ============ */ | ||
|
||
/// @dev The max amount of assets than can be dealt. | ||
function maxDeal() public virtual override returns (uint256) { | ||
return underlyingAsset.balanceOf(_assetWhale); | ||
} | ||
|
||
/// @dev May revert if the amount requested exceeds the amount available to deal. | ||
function dealAssets(address to, uint256 amount) public virtual override prankception(_assetWhale) { | ||
underlyingAsset.transfer(to, amount); | ||
} | ||
|
||
/// @dev Accrues yield by letting some time pass | ||
function _accrueYield() internal virtual override { | ||
vm.warp(block.timestamp + 1 days); | ||
} | ||
|
||
/// @dev Simulates loss by sending yield vault tokens out of the prize vault | ||
function _simulateLoss() internal virtual override prankception(address(prizeVault)) { | ||
yieldVault.transfer(_assetWhale, yieldVault.balanceOf(address(prizeVault)) / 2); | ||
} | ||
|
||
} |
59 changes: 59 additions & 0 deletions
59
test/integration/morpho-vaults/MorphoMoonwellUsdcBase.t.sol
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,59 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.24; | ||
|
||
import { BaseIntegration, IERC20, IERC4626 } from "../BaseIntegration.t.sol"; | ||
|
||
contract MorphoMoonwellUsdcBaseIntegrationTest is BaseIntegration { | ||
uint256 fork; | ||
uint256 forkBlock = 19338195; | ||
uint256 forkBlockTimestamp = 1725465737; | ||
|
||
address internal _asset = address(0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913); | ||
address internal _assetWhale = address(0x3304E22DDaa22bCdC5fCa2269b418046aE7b566A); | ||
address internal _yieldVault = address(0xc1256Ae5FF1cf2719D4937adb3bbCCab2E00A2Ca); | ||
|
||
/* ============ setup ============ */ | ||
|
||
function setUpUnderlyingAsset() public virtual override returns (IERC20 asset, uint8 decimals, uint256 approxAssetUsdExchangeRate) { | ||
return (IERC20(_asset), 6, 1e18); | ||
} | ||
|
||
function setUpYieldVault() public virtual override returns (IERC4626) { | ||
return IERC4626(_yieldVault); | ||
} | ||
|
||
function setUpFork() public virtual override { | ||
fork = vm.createFork(vm.rpcUrl("base"), forkBlock); | ||
vm.selectFork(fork); | ||
vm.warp(forkBlockTimestamp); | ||
} | ||
|
||
function beforeSetup() public virtual override { | ||
lowGasPriceEstimate = 0.05 gwei; | ||
} | ||
|
||
function afterSetup() public virtual override { } | ||
|
||
/* ============ helpers to override ============ */ | ||
|
||
/// @dev The max amount of assets than can be dealt. | ||
function maxDeal() public virtual override returns (uint256) { | ||
return underlyingAsset.balanceOf(_assetWhale); | ||
} | ||
|
||
/// @dev May revert if the amount requested exceeds the amount available to deal. | ||
function dealAssets(address to, uint256 amount) public virtual override prankception(_assetWhale) { | ||
underlyingAsset.transfer(to, amount); | ||
} | ||
|
||
/// @dev Accrues yield by letting some time pass | ||
function _accrueYield() internal virtual override { | ||
vm.warp(block.timestamp + 1 days); | ||
} | ||
|
||
/// @dev Simulates loss by sending yield vault tokens out of the prize vault | ||
function _simulateLoss() internal virtual override prankception(address(prizeVault)) { | ||
yieldVault.transfer(_assetWhale, yieldVault.balanceOf(address(prizeVault)) / 2); | ||
} | ||
|
||
} |