From f1c90db6b89d9b080c2405eaea0d78832e5d59e0 Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Tue, 17 Sep 2024 10:38:44 +0200 Subject: [PATCH 01/16] cleanup --- Makefile | 2 +- scripts/test-dssspell-forge.sh | 4 +- src/DssSpell.sol | 433 +----------------- src/DssSpell.t.sol | 276 +---------- src/dependencies/01-usds/UsdsInit.sol | 61 --- src/dependencies/01-usds/UsdsInstance.sol | 24 - src/dependencies/02-susds/SUsdsInit.sol | 71 --- src/dependencies/02-susds/SUsdsInstance.sol | 22 - src/dependencies/03-sky/SkyInit.sol | 57 --- src/dependencies/03-sky/SkyInstance.sol | 22 - .../UniV2PoolMigratorInit.sol | 97 ---- src/dependencies/05-flapper/FlapperInit.sol | 211 --------- .../05-flapper/SplitterInstance.sol | 22 - .../06-farm/StakingRewardsInit.sol | 48 -- src/dependencies/06-farm/VestInit.sol | 53 --- .../06-farm/VestedRewardsDistributionInit.sol | 30 -- .../06-farm/phase-1b/Usds01PreFarmingInit.sol | 66 --- .../06-farm/phase-1b/UsdsSkyFarmingInit.sol | 124 ----- .../VestedRewardsDistributionJobInit.sol | 82 ---- src/test/config.sol | 10 +- 20 files changed, 15 insertions(+), 1700 deletions(-) delete mode 100644 src/dependencies/01-usds/UsdsInit.sol delete mode 100644 src/dependencies/01-usds/UsdsInstance.sol delete mode 100644 src/dependencies/02-susds/SUsdsInit.sol delete mode 100644 src/dependencies/02-susds/SUsdsInstance.sol delete mode 100644 src/dependencies/03-sky/SkyInit.sol delete mode 100644 src/dependencies/03-sky/SkyInstance.sol delete mode 100644 src/dependencies/04-univ2-pool-migrator/UniV2PoolMigratorInit.sol delete mode 100644 src/dependencies/05-flapper/FlapperInit.sol delete mode 100644 src/dependencies/05-flapper/SplitterInstance.sol delete mode 100644 src/dependencies/06-farm/StakingRewardsInit.sol delete mode 100644 src/dependencies/06-farm/VestInit.sol delete mode 100644 src/dependencies/06-farm/VestedRewardsDistributionInit.sol delete mode 100644 src/dependencies/06-farm/phase-1b/Usds01PreFarmingInit.sol delete mode 100644 src/dependencies/06-farm/phase-1b/UsdsSkyFarmingInit.sol delete mode 100644 src/dependencies/07-cron/VestedRewardsDistributionJobInit.sol diff --git a/Makefile b/Makefile index f34cd84a3..1e2ff795e 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ all :; DAPP_LIBRARIES=' lib/dss-exec-lib/src/DssExecLib.sol:DssExecLib:$(shell cat DssExecLib.address)' \ - DAPP_BUILD_OPTIMIZE=1 DAPP_BUILD_OPTIMIZE_RUNS=1 \ + DAPP_BUILD_OPTIMIZE=0 DAPP_BUILD_OPTIMIZE_RUNS=200 \ DAPP_REMAPPINGS=$$(cat remappings.txt) \ dapp --use solc:0.8.16 build clean :; forge clean diff --git a/scripts/test-dssspell-forge.sh b/scripts/test-dssspell-forge.sh index 9cf03ca97..d4d82c483 100755 --- a/scripts/test-dssspell-forge.sh +++ b/scripts/test-dssspell-forge.sh @@ -19,8 +19,8 @@ done DSS_EXEC_LIB=$(< DssExecLib.address) echo "Using DssExecLib at: $DSS_EXEC_LIB" export FOUNDRY_LIBRARIES="lib/dss-exec-lib/src/DssExecLib.sol:DssExecLib:$DSS_EXEC_LIB" -export FOUNDRY_OPTIMIZER=true -export FOUNDRY_OPTIMIZER_RUNS=1 +export FOUNDRY_OPTIMIZER=false +export FOUNDRY_OPTIMIZER_RUNS=200 export FOUNDRY_ROOT_CHAINID=1 TEST_ARGS='' diff --git a/src/DssSpell.sol b/src/DssSpell.sol index 924131616..7b4714b6b 100644 --- a/src/DssSpell.sol +++ b/src/DssSpell.sol @@ -16,126 +16,15 @@ pragma solidity 0.8.16; -// import "dss-exec-lib/DssExec.sol"; +import "dss-exec-lib/DssExec.sol"; import "dss-exec-lib/DssAction.sol"; -import { MCD, DssInstance } from "dss-test/MCD.sol"; - -import { UsdsInit } from "./dependencies/01-usds/UsdsInit.sol"; -import { UsdsInstance } from "./dependencies/01-usds/UsdsInstance.sol"; - -import { SUsdsInit, SUsdsConfig } from "./dependencies/02-susds/SUsdsInit.sol"; -import { SUsdsInstance } from "./dependencies/02-susds/SUsdsInstance.sol"; - -import { SkyInit } from "./dependencies/03-sky/SkyInit.sol"; -import { SkyInstance } from "./dependencies/03-sky/SkyInstance.sol"; - -import { UniV2PoolMigratorInit } from "./dependencies/04-univ2-pool-migrator/UniV2PoolMigratorInit.sol"; - -import { FlapperInit, SplitterConfig, FlapperUniV2Config } from "./dependencies/05-flapper/FlapperInit.sol"; -import { SplitterInstance } from "./dependencies/05-flapper/SplitterInstance.sol"; - -import { UsdsSkyFarmingInit, UsdsSkyFarmingInitParams } from "./dependencies/06-farm/phase-1b/UsdsSkyFarmingInit.sol"; -import { Usds01PreFarmingInit, Usds01PreFarmingInitParams } from "./dependencies/06-farm/phase-1b/Usds01PreFarmingInit.sol"; - -import { - VestedRewardsDistributionJobInit, - VestedRewardsDistributionJobInitConfig, - VestedRewardsDistributionJobSetDistConfig -} from "./dependencies/07-cron/VestedRewardsDistributionJobInit.sol"; - -interface PauseLike { - function delay() external view returns (uint256); - function exec(address, bytes32, bytes calldata, uint256) external returns (bytes memory); - function plot(address, bytes32, bytes calldata, uint256) external; - function setDelay(uint256) external; -} - -interface ChainlogLike { - function getAddress(bytes32) external view returns (address); -} - -interface SpellActionLike { - function officeHours() external view returns (bool); - function description() external view returns (string memory); - function nextCastTime(uint256) external view returns (uint256); -} - -interface VestedRewardsDistributionLike { - function distribute() external returns (uint256 amount); -} - -contract DssExec { - ChainlogLike constant public chainlog = ChainlogLike(0xdA0Ab1e0017DEbCd72Be8599041a2aa3bA7e740F); - uint256 public eta; - bytes public sig; - bool public done; - bytes32 immutable public tag; - address immutable public action; - uint256 immutable public expiration; - PauseLike immutable public pause; - - // 2024-09-17T12:00:00 UTC - uint256 constant internal SEP_17_2024_NOON_UTC = 1726574400; - uint256 constant public MIN_ETA = SEP_17_2024_NOON_UTC; - - // Provides a descriptive tag for bot consumption - // This should be modified weekly to provide a summary of the actions - // Hash: seth keccak -- "$(wget https:// -q -O - 2>/dev/null)" - function description() external view returns (string memory) { - return SpellActionLike(action).description(); - } - - function officeHours() external view returns (bool) { - return SpellActionLike(action).officeHours(); - } - - function nextCastTime() external view returns (uint256 castTime) { - return SpellActionLike(action).nextCastTime(eta); - } - - // @param _description A string description of the spell - // @param _expiration The timestamp this spell will expire. (Ex. block.timestamp + 30 days) - // @param _spellAction The address of the spell action - constructor(uint256 _expiration, address _spellAction) { - pause = PauseLike(chainlog.getAddress("MCD_PAUSE")); - expiration = _expiration; - action = _spellAction; - - sig = abi.encodeWithSignature("execute()"); - bytes32 _tag; // Required for assembly access - address _action = _spellAction; // Required for assembly access - assembly { _tag := extcodehash(_action) } - tag = _tag; - } - - function schedule() public { - require(block.timestamp <= expiration, "This contract has expired"); - require(eta == 0, "This spell has already been scheduled"); - // ---------- Set earliest execution date September 17, 12:00 UTC ---------- - // Forum: https://forum.makerdao.com/t/sky-protocol-launch-season-token-and-product-launch-parameter-proposal/25031 - // Poll: https://vote.makerdao.com/polling/QmTySKwi - // Note: In case the spell is scheduled later than planned, we have to switch back to the regular logic to respect GSM delay enforced by MCD_PAUSE - eta = _max(block.timestamp + PauseLike(pause).delay(), MIN_ETA); - pause.plot(action, tag, sig, eta); - } - - function cast() public { - require(!done, "spell-already-cast"); - done = true; - pause.exec(action, tag, sig, eta); - } - - function _max(uint256 a, uint256 b) internal pure returns (uint256) { - return a > b ? a : b; - } -} contract DssSpellAction is DssAction { // Provides a descriptive tag for bot consumption // This should be modified weekly to provide a summary of the actions - // Hash: cast keccak -- "$(wget 'https://raw.githubusercontent.com/makerdao/community/4911c55070a1f40998da1caba08bda37d6c615bb/governance/votes/Executive%20vote%20-%20September%2013%2C%202024.md' -q -O - 2>/dev/null)" + // Hash: cast keccak -- "$(wget 'TODO' -q -O - 2>/dev/null)" string public constant override description = - "2024-09-13 MakerDAO Executive Spell | Hash: 0xdf8af8066b5e0a90668ab343a1244624c58a30b568ff9113dbc82a22a77d0cf6"; + "2024-09-26 MakerDAO Executive Spell | Hash: TODO"; // Set office hours according to the summary function officeHours() public pure override returns (bool) { @@ -153,324 +42,8 @@ contract DssSpellAction is DssAction { // https://ipfs.io/ipfs/QmVp4mhhbwWGTfbh2BzwQB9eiBrQBKiqcPRZCaAxNUaar6 // // uint256 internal constant X_PCT_RATE = ; - uint256 internal constant SIX_PT_TWO_FIVE_PCT_RATE = 1000000001922394148741344865; - - // ---------- Math ---------- - uint256 internal constant THOUSAND = 10**3; - uint256 internal constant MILLION = 10**6; - uint256 internal constant WAD = 10**18; - uint256 internal constant RAD = 10**45; - - // ---------- Phase 1b Addresses ---------- - - address internal constant USDS = 0xdC035D45d973E3EC169d2276DDab16f1e407384F; - address internal constant USDS_IMP = 0x1923DfeE706A8E78157416C29cBCCFDe7cdF4102; - address internal constant USDS_JOIN = 0x3C0f895007CA717Aa01c8693e59DF1e8C3777FEB; - address internal constant DAI_USDS = 0x3225737a9Bbb6473CB4a45b7244ACa2BeFdB276A; - address internal constant SUSDS = 0xa3931d71877C0E7a3148CB7Eb4463524FEc27fbD; - address internal constant SUSDS_IMP = 0x4e7991e5C547ce825BdEb665EE14a3274f9F61e0; - address internal constant SKY = 0x56072C95FAA701256059aa122697B133aDEd9279; - address internal constant MKR_SKY = 0xBDcFCA946b6CDd965f99a839e4435Bcdc1bc470B; - address internal constant UNIV2DAIMKR = 0x517F9dD285e75b599234F7221227339478d0FcC8; - address internal constant UNIV2USDSSKY = 0x2621CC0B3F3c079c1Db0E80794AA24976F0b9e3c; - address internal constant MCD_SPLIT = 0xBF7111F13386d23cb2Fba5A538107A73f6872bCF; - address internal constant SPLITTER_MOM = 0xF51a075d468dE7dE3599C1Dc47F5C42d02C9230e; - address internal constant MCD_FLAP = 0xc5A9CaeBA70D6974cBDFb28120C3611Dd9910355; - address internal constant FLAP_SKY_ORACLE = 0x38e8c1D443f546Dc014D7756ec63116161CB7B25; - address internal constant MCD_VEST_SKY = 0xB313Eab3FdE99B2bB4bA9750C2DDFBe2729d1cE9; - address internal constant REWARDS_USDS_SKY = 0x0650CAF159C5A49f711e8169D4336ECB9b950275; - address internal constant REWARDS_DIST_USDS_SKY = 0x2F0C88e935Db5A60DDA73b0B4EAEef55883896d9; - address internal constant REWARDS_USDS_01 = 0x10ab606B067C9C461d8893c47C7512472E19e2Ce; - address internal constant CRON_REWARDS_DIST_JOB = 0x6464C34A02DD155dd0c630CE233DD6e21C24F9A5; - address internal constant WRAPPER_USDS_LITE_PSM_USDC_A = 0xA188EEC8F81263234dA3622A406892F3D630f98c; - - // ---------- MCD Addresses ---------- - address internal immutable MCD_PAUSE = DssExecLib.getChangelogAddress("MCD_PAUSE"); function actions() public override { - - // Do not authorize ESM in any new contracts - // Note: no action needed - - // Note: load the Maker Protocol contracts depencencies - DssInstance memory dss = MCD.loadFromChainlog(DssExecLib.LOG); - - // ---------- New Tokens Init ---------- - // Forum: https://forum.makerdao.com/t/sky-protocol-launch-season-token-and-product-launch-parameter-proposal/25031 - // Poll: https://vote.makerdao.com/polling/QmTySKwi - - // Init USDS by calling UsdsInit.init with the following parameters: - UsdsInit.init( - // Note: Maker Protocol contracts dependencies - dss, - UsdsInstance({ - // Init USDS with usds parameter being 0xdC035D45d973E3EC169d2276DDab16f1e407384F - usds: USDS, - // Init USDS with usdsImp parameter being 0x1923DfeE706A8E78157416C29cBCCFDe7cdF4102 - usdsImp: USDS_IMP, - // Init USDS with UsdsJoin parameter being 0x3C0f895007CA717Aa01c8693e59DF1e8C3777FEB - usdsJoin: USDS_JOIN, - // Init USDS with DaiUsds parameter being 0x3225737a9Bbb6473CB4a45b7244ACa2BeFdB276A - daiUsds: DAI_USDS - }) - ); - - // Add usds to chainlog with key "USDS" via the UsdsInit.init function - - // Add usdsImp to chainlog under the key "USDS_IMP" via the UsdsInit.init function - - // Add UsdsJoin to chainlog under the key "USDS_JOIN" via the UsdsInit.init function - - // Add DaiUsds to chainlog under the key "DAI_USDS" via the UsdsInit.init function - - // The usdsJoin Adapter will be authorized in the usds contract by calling rely via the UsdsInit.init function - - // Note: the instructions above are executed through UsdsInit.init() - - // Init sUSDS by calling SUsdsInit.init with the following parameters: - SUsdsInit.init( - // Note: Maker Protocol contracts dependencies - dss, - SUsdsInstance({ - // Init sUSDS with sUsds parameter being 0xa3931d71877C0E7a3148CB7Eb4463524FEc27fbD - sUsds: SUSDS, - // Init sUSDS with sUsdsImp parameter being 0x4e7991e5C547ce825BdEb665EE14a3274f9F61e0 - sUsdsImp: SUSDS_IMP - }), - SUsdsConfig({ - // Init sUSDS with usdsJoin parameter being 0x3C0f895007CA717Aa01c8693e59DF1e8C3777FEB - usdsJoin: USDS_JOIN, - // Init sUSDS with usds parameter being 0xdC035D45d973E3EC169d2276DDab16f1e407384F - usds: USDS, - // Init sUSDS with ssr parameter being 6.25% - ssr: SIX_PT_TWO_FIVE_PCT_RATE - }) - ); - - // Add sUsds to chainlog under the key "SUSDS" via the SUsdsInit.init function - - // Add sUsdsImp to chainlog under the key "SUSDS_IMP" via the SUsdsInit.init function - - // sUSDS will be authorized to access the vat by calling rely via the SUsdsInit.init function - - // Note: the instructions above are executed through SUsdsInit.init() - - // Init SKY by calling SkyInit.init with the following parameters: - SkyInit.init( - // Note: Maker Protocol contracts dependencies - dss, - SkyInstance({ - // Init SKY with sky parameter being 0x56072C95FAA701256059aa122697B133aDEd9279 - sky: SKY, - // Init SKY with mkrSky parameter being 0xBDcFCA946b6CDd965f99a839e4435Bcdc1bc470B - mkrSky: MKR_SKY - }), - // Init SKY with rate parameter being 24,000 - 24_000 - ); - - // Add sky to chainlog under the key "SKY" via the SkyInit.init function - - // Add mkrSky to chainlog under the key "MKR_SKY" via the SkyInit.init function - - // The mkrSky contract will be authorized in the sky contract by calling rely via the SkyInit.init function - - // The mkrSky contract will be authorized in the MkrAuthority contract by calling rely via the SkyInit.init function - - // Note: the instructions above are executed through SkyInit.init() - - // ---------- Pool Migration and Flapper Init ---------- - // Forum: https://forum.makerdao.com/t/sky-protocol-launch-season-token-and-product-launch-parameter-proposal/25031 - // Poll: https://vote.makerdao.com/polling/QmTySKwi - - // Migrate full DAI/MKR UniswapV2 liquidity into USDS/SKY by calling UniV2PoolMigratorInit.init with the following parameters: - UniV2PoolMigratorInit.init( - // Note: Maker Protocol contracts dependencies - dss, - // Migrate liquidity to the new pool with pairDaiMkr parameter being 0x517F9dD285e75b599234F7221227339478d0FcC8 - UNIV2DAIMKR, - // Migrate liquidity to the new pool with pairUsdsSky parameter being 0x2621CC0B3F3c079c1Db0E80794AA24976F0b9e3c - UNIV2USDSSKY - ); - - // Init Splitter by calling FlapperInit.initSplitter with the following parameters: - FlapperInit.initSplitter( - // Note: Maker Protocol contracts dependencies - dss, - SplitterInstance({ - // Init Splitter with splitter parameter being 0xBF7111F13386d23cb2Fba5A538107A73f6872bCF - splitter: MCD_SPLIT, - // Init Splitter with mom parameter being 0xF51a075d468dE7dE3599C1Dc47F5C42d02C9230e - mom: SPLITTER_MOM - }), - SplitterConfig({ - // Init Splitter with hump parameter being 55M DAI - hump: 55 * MILLION * RAD, - // Init Splitter with bump parameter being 65,000 DAI/USDS - bump: 65 * THOUSAND * RAD, - // Init Splitter with hop parameter being 10,249 seconds - hop: 10_249, - // Init Splitter with burn parameter being 100% (1 * WAD) - burn: 1 * WAD, - // Init Splitter with usdsJoin parameter being 0x3C0f895007CA717Aa01c8693e59DF1e8C3777FEB - usdsJoin: USDS_JOIN, - // Init Splitter with splitterChainlogKey parameter being MCD_SPLIT - splitterChainlogKey: "MCD_SPLIT", - // Init Splitter with prevMomChainlogKey parameter being FLAPPER_MOM - prevMomChainlogKey: "FLAPPER_MOM", - // Init Splitter with momChainlogKey parameter being SPLITTER_MOM - momChainlogKey: "SPLITTER_MOM" - }) - ); - - // The flapper variable in the vow will be changed by the splitter address by calling file via the initSplitter function - - // Note: the instructions above are executed through FlapperInit.initSplitter() - - // Init new Flapper by calling FlapperInit.initFlapperUniV2 with the following parameters: - FlapperInit.initFlapperUniV2( - // Note: Maker Protocol contracts dependencies - dss, - // Init new Flapper with flapper_ parameter being 0xc5A9CaeBA70D6974cBDFb28120C3611Dd9910355 - MCD_FLAP, - FlapperUniV2Config({ - // Init new Flapper with want parameter being 98% (98 * WAD / 100) - want: 98 * WAD / 100, - // Init new Flapper with pip parameter being 0x38e8c1D443f546Dc014D7756ec63116161CB7B25 - pip: FLAP_SKY_ORACLE, - // Init new Flapper with pair parameter being 0x2621CC0B3F3c079c1Db0E80794AA24976F0b9e3c - pair: UNIV2USDSSKY, - // Init new Flapper with usds parameter being 0xdC035D45d973E3EC169d2276DDab16f1e407384F - usds: USDS, - // Init new Flapper with splitter parameter being 0xBF7111F13386d23cb2Fba5A538107A73f6872bCF - splitter: MCD_SPLIT, - // Init new Flapper with prevChainlogKey parameter being MCD_FLAP - prevChainlogKey: "MCD_FLAP", - // Init new Flapper with chainlogKey parameter being MCD_FLAP - chainlogKey: "MCD_FLAP" - }) - ); - - // Init new Oracle by calling FlapperInit.initOracleWrapper with the following parameters: - FlapperInit.initOracleWrapper( - // Note: Maker Protocol contracts dependencies - dss, - // Init new Oracle with wrapper_ parameter being 0x38e8c1D443f546Dc014D7756ec63116161CB7B25 - FLAP_SKY_ORACLE, - // Init new Oracle with divisor parameter being 24,000 - 24_000, - // Init new Oracle with clKey parameter being FLAP_SKY_ORACLE - "FLAP_SKY_ORACLE" - ); - - // Authorize wrapper to read MKR oracle price - - // Note: the instructions above are executed through FlapperInit.initOracleWrapper() - - // ---------- Setup DssVestMintable for SKY ---------- - // Forum: https://forum.makerdao.com/t/sky-protocol-launch-season-token-and-product-launch-parameter-proposal/25031 - // Poll: https://vote.makerdao.com/polling/QmTySKwi - - // Authorize DssVestMintable on SKY by calling DssExecLib.authorize with the following parameters: - // Authorize DssVestMintable on SKY with _base parameter being 0x56072C95FAA701256059aa122697B133aDEd9279 - // Authorize DssVestMintable on SKY with _ward parameter being 0xB313Eab3FdE99B2bB4bA9750C2DDFBe2729d1cE9 - DssExecLib.authorize(SKY, MCD_VEST_SKY); - - // Set DssVestMintable max rate (cap) by calling DssExecLib.setValue with the following parameters: - // Set DssVestMintable max rate (cap) with _base parameter being 0xB313Eab3FdE99B2bB4bA9750C2DDFBe2729d1cE9 - // Set DssVestMintable max rate (cap) with _what parameter being "cap" - // Set DssVestMintable max rate (cap) with _amt parameter being 799,999,999.999999999985808000 Sky per year (800M * WAD / 365 days ) - DssExecLib.setValue(MCD_VEST_SKY, "cap", 800 * MILLION * WAD / 365 days); - - // Add DssVestMintable to Chainlog by calling DssExecLib.setChangelogAddress with the following parameters: - // Add DssVestMintable to Chainlog with _key parameter being MCD_VEST_SKY - // Add DssVestMintable to Chainlog with _val parameter being 0xB313Eab3FdE99B2bB4bA9750C2DDFBe2729d1cE9 - DssExecLib.setChangelogAddress("MCD_VEST_SKY", MCD_VEST_SKY); - - // ---------- USDS => SKY Farm Setup ---------- - - // Init USDS -> SKY rewards by calling UsdsSkyFarmingInit.init with the following parameters: - UsdsSkyFarmingInit.init(UsdsSkyFarmingInitParams({ - // Init USDS -> SKY rewards with usds parameter being 0xdC035D45d973E3EC169d2276DDab16f1e407384F - usds: USDS, - // Init USDS -> SKY rewards with sky parameter being 0x56072C95FAA701256059aa122697B133aDEd9279 - sky: SKY, - // Init USDS -> SKY rewards with rewards parameter being 0x0650CAF159C5A49f711e8169D4336ECB9b950275 - rewards: REWARDS_USDS_SKY, - // Init USDS -> SKY rewards with rewardsKey parameter being REWARDS_USDS_SKY - rewardsKey: "REWARDS_USDS_SKY", - // Init USDS -> SKY rewards with dist parameter being 0x2F0C88e935Db5A60DDA73b0B4EAEef55883896d9 - dist: REWARDS_DIST_USDS_SKY, - // Init USDS -> SKY rewards with distKey parameter being REWARDS_DIST_USDS_SKY - distKey: "REWARDS_DIST_USDS_SKY", - // Init USDS -> SKY rewards with vest parameter being 0xB313Eab3FdE99B2bB4bA9750C2DDFBe2729d1cE9 - vest: MCD_VEST_SKY, - // Init USDS -> SKY rewards with vestTot parameter being 600M * WAD - vestTot: 600 * MILLION * WAD, - // Init USDS -> SKY rewards with vestBgn parameter being block.timestamp - 7 days - vestBgn: block.timestamp - 7 days, - // Init USDS -> SKY rewards with vestTau parameter being 365 days - 1 - vestTau: 365 days - 1 - })); - - // Call distribute() in VestedRewardsDistribution contract in the spell execution - VestedRewardsDistributionLike(REWARDS_DIST_USDS_SKY).distribute(); - - // SKY Vesting Stream | from 'block.timestamp - 7 days' for '365 days - 1' | 600M * WAD SKY | 0x2F0C88e935Db5A60DDA73b0B4EAEef55883896d9 - - // Note: the instructions above are executed through UsdsSkyFarmingInit.init() - - // Initialize the new cron job by calling VestedRewardsDistributionJobInit.init with the following parameters: - VestedRewardsDistributionJobInit.init( - // Initialize cron job with job parameter being 0x6464C34A02DD155dd0c630CE233DD6e21C24F9A5 - CRON_REWARDS_DIST_JOB, - VestedRewardsDistributionJobInitConfig({ - // Initialize cron job with cfg.jobKey parameter being CRON_REWARDS_DIST_JOB - jobKey: "CRON_REWARDS_DIST_JOB" - }) - ); - - // Add VestedRewardsDistribution to the new cron job by calling VestedRewardsDistributionJobInit.setDist with the following parameters: - VestedRewardsDistributionJobInit.setDist( - // Add VestedRewardsDistribution to the new cron job with job parameter being 0x6464C34A02DD155dd0c630CE233DD6e21C24F9A5 - CRON_REWARDS_DIST_JOB, - VestedRewardsDistributionJobSetDistConfig({ - // Add VestedRewardsDistribution to the new cron job with cfg.dist parameter being 0x2F0C88e935Db5A60DDA73b0B4EAEef55883896d9 - dist: REWARDS_DIST_USDS_SKY, - // Add VestedRewardsDistribution to the new cron job with cfg.interval parameter being 7 days - 1 hours - interval: 7 days - 1 hours - }) - ); - - // ---------- USDS => 01 Farm Setup ---------- - // Forum: https://forum.makerdao.com/t/sky-protocol-launch-season-token-and-product-launch-parameter-proposal/25031 - // Poll: https://vote.makerdao.com/polling/QmTySKwi - - // Init Rewards-01 by calling Usds01PreFarmingInit.init with the following parameters: - Usds01PreFarmingInit.init(Usds01PreFarmingInitParams({ - // Init Rewards-01 with usds parameter being 0xdC035D45d973E3EC169d2276DDab16f1e407384F - usds: USDS, - // Init Rewards-01 with rewards parameter being 0x10ab606B067C9C461d8893c47C7512472E19e2Ce - rewards: REWARDS_USDS_01, - // Init Rewards-01 with rewardsKey parameter being REWARDS_USDS_01 - rewardsKey: "REWARDS_USDS_01" - })); - - // ---------- MISC ---------- - // Forum: https://forum.makerdao.com/t/sky-protocol-launch-season-token-and-product-launch-parameter-proposal/25031 - // Poll: https://vote.makerdao.com/polling/QmTySKwi - - // Add LitePsmWrapper to the Chainlog by calling DssExecLib.setChangelogAddress with the following parameters: - // Add LitePsmWrapper to the Chainlog with _key parameter being WRAPPER_USDS_LITE_PSM_USDC_A - // Add LitePsmWrapper to the Chainlog with _val parameter being 0xA188EEC8F81263234dA3622A406892F3D630f98c - DssExecLib.setChangelogAddress("WRAPPER_USDS_LITE_PSM_USDC_A", WRAPPER_USDS_LITE_PSM_USDC_A); - - // Update GSM Delay - // Reduce GSM Delay by 14 hours, from 30 hours to 16 hours by calling MCD_PAUSE.setDelay - PauseLike(MCD_PAUSE).setDelay(16 hours); - - // Note: bump chainlog version due to new modules being onboarded - DssExecLib.setChangelogVersion("1.18.0"); } } diff --git a/src/DssSpell.t.sol b/src/DssSpell.t.sol index d6617b210..bacc1cbb6 100644 --- a/src/DssSpell.t.sol +++ b/src/DssSpell.t.sol @@ -108,7 +108,7 @@ contract DssSpellTest is DssSpellTestBase { _testCastOnTime(); } - function testNextCastTime() public skipped { + function testNextCastTime() public { _testNextCastTime(); } @@ -249,7 +249,7 @@ contract DssSpellTest is DssSpellTestBase { //assertEq(OsmAbstract(0xF15993A5C5BE496b8e1c9657Fd2233b579Cd3Bc6).wards(ORACLE_WALLET01), 1); } - function testRemoveChainlogValues() public { // add the `skipped` modifier to skip + function testRemoveChainlogValues() public skipped { // add the `skipped` modifier to skip string[1] memory removedKeys = [ "FLAPPER_MOM" ]; @@ -450,7 +450,7 @@ contract DssSpellTest is DssSpellTestBase { _checkVestMkr(streams); } - function testVestSKY() public { // add the `skipped` modifier to skip + function testVestSKY() public skipped { // add the `skipped` modifier to skip // Provide human-readable names for timestamps // uint256 DEC_01_2023 = 1701385200; @@ -640,7 +640,7 @@ contract DssSpellTest is DssSpellTestBase { } } - function testNewCronJobs() public { // add the `skipped` modifier to skip + function testNewCronJobs() public skipped { // add the `skipped` modifier to skip SequencerLike seq = SequencerLike(addr.addr("CRON_SEQUENCER")); address[1] memory newJobs = [ addr.addr("CRON_REWARDS_DIST_JOB") @@ -886,272 +886,4 @@ contract DssSpellTest is DssSpellTestBase { } // SPELL-SPECIFIC TESTS GO BELOW - - uint256 constant MIN_ETA = 1726574400; // 2024-09-17T12:00:00Z - - function testNextCastTimeMinEta() public { - // Spell obtains approval for execution before MIN_ETA - { - uint256 before = vm.snapshot(); - - vm.warp(1606161600); // Nov 23, 20 UTC - could be any date far enough in the past - _vote(address(spell)); - spell.schedule(); - - assertEq(spell.nextCastTime(), MIN_ETA, "testNextCastTimeMinEta/min-eta-not-enforced"); - - vm.revertTo(before); - } - - // Spell obtains approval for execution after MIN_ETA - { - uint256 before = vm.snapshot(); - - vm.warp(MIN_ETA); // As we move closer to MIN_ETA, GSM delay is still applicable - _vote(address(spell)); - spell.schedule(); - - assertEq(spell.nextCastTime(), MIN_ETA + pause.delay(), "testNextCastTimeMinEta/gsm-delay-not-enforced"); - - vm.revertTo(before); - } - } - - function testUniV2PoolMigration() public { - PairLike daiMkr = PairLike(addr.addr("UNIV2DAIMKR")); - PairLike usdsSky = PairLike(addr.addr("UNIV2USDSSKY")); - - uint256 pbalanceDaiMkr = daiMkr.balanceOf(address(pauseProxy)); - uint256 pbalanceUsdsSky = usdsSky.balanceOf(address(pauseProxy)); - - assertGt(pbalanceDaiMkr, 0, "before: testPoolMigration/invalid-dai-mkr-balance"); - assertEq(pbalanceUsdsSky, 0, "before: testPoolMigration/invalid-usds-sky-balance"); - - uint256 pbalanceDai = dai.balanceOf(address(daiMkr)) * pbalanceDaiMkr / daiMkr.totalSupply(); - uint256 pbalanceMkr = gov.balanceOf(address(daiMkr)) * pbalanceDaiMkr / daiMkr.totalSupply(); - - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - - uint256 balanceDaiMkr = daiMkr.balanceOf(address(pauseProxy)); - uint256 balanceUsdsSky = usdsSky.balanceOf(address(pauseProxy)); - - assertEq(balanceDaiMkr, 0, "after: testPoolMigration/invalid-dai-mkr-balance"); - // 10**3 == UniswapV2Pair MINIMUM_LIQUIDITY => https://github.com/Uniswap/v2-core/blob/ee547b17853e71ed4e0101ccfd52e70d5acded58/contracts/UniswapV2Pair.sol#L121 - assertEq(balanceUsdsSky, usdsSky.totalSupply() - 10**3, "after: testPoolMigration/invalid-usds-sky-balance"); - - assertEq(usds.balanceOf(address(usdsSky)), pbalanceDai, "after: testPoolMigration/invalid-usds-balance"); - assertEq(sky.balanceOf(address(usdsSky)), pbalanceMkr * 24_000, "after: testPoolMigration/invalid-usds-balance"); - } - - function testUsdsSkyRewards() public { - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - - StakingRewardsLike rewards = StakingRewardsLike(addr.addr("REWARDS_USDS_SKY")); - VestedRewardsDistributionLike dist = VestedRewardsDistributionLike(addr.addr("REWARDS_DIST_USDS_SKY")); - - // Sanity checks - assertEq(rewards.rewardsDistribution(), address(dist), "testUsdsSkyRewards/rewards-rewards-dist-mismatch"); - assertEq(rewards.stakingToken(), address(usds), "testUsdsSkyRewards/rewards-staking-token-mismatch"); - assertEq(rewards.rewardsToken(), address(sky), "testUsdsSkyRewards/rewards-rewards-token-mismatch"); - - assertTrue(vestSky.valid(dist.vestId()), "testUsdsSkyRewards/invalid-dist-vest-id"); - - assertEq(dist.dssVest(), address(vestSky), "testUsdsSkyRewards/dist-vest-mismatch"); - assertEq(dist.stakingRewards(), address(rewards), "testUsdsSkyRewards/dist-rewards-mismatch"); - assertEq(dist.lastDistributedAt(), block.timestamp, "testUsdsSkyRewards/dist-distribute-not-called-in-spell"); - - // Check if users can stake and get rewards - { - uint256 before = vm.snapshot(); - - uint256 stakingWad = 100_000 * WAD; - _giveTokens(address(usds), stakingWad); - usds.approve(address(rewards), stakingWad); - rewards.stake(stakingWad); - assertEq(rewards.balanceOf(address(this)), stakingWad, "testUsdsSkyRewards/rewards-invalid-staked-balance"); - - uint256 pbalance = sky.balanceOf(address(this)); - skip(7 days); - rewards.getReward(); - assertGt(sky.balanceOf(address(this)), pbalance); - - vm.revertTo(before); - } - - // Check if distribute can be called again in the future - { - uint256 before = vm.snapshot(); - - uint256 pbalance = sky.balanceOf(address(rewards)); - skip(7 days); - dist.distribute(); - assertGt(sky.balanceOf(address(rewards)), pbalance, "testUsdsSkyRewards/distribute-no-increase-balance"); - - vm.revertTo(before); - } - } - - function testUsds01Rewards() public { - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - - StakingRewardsLike rewards = StakingRewardsLike(addr.addr("REWARDS_USDS_01")); - - // Sanity checks - assertEq(rewards.rewardsDistribution(), address(0), "testUsds01Rewards/rewards-invalid-rewards-dist"); - assertEq(rewards.stakingToken(), address(usds), "testUsds01Rewards/rewards-staking-token-mismatch"); - assertEq(rewards.rewardsToken(), address(0), "testUsds01Rewards/rewards-invalid-rewards-token"); - - - // Check if users can stake - { - uint256 before = vm.snapshot(); - - uint256 stakingWad = 100_000 * WAD; - _giveTokens(address(usds), stakingWad); - usds.approve(address(rewards), stakingWad); - rewards.stake(stakingWad); - assertEq(rewards.balanceOf(address(this)), stakingWad, "testUsds01Rewards/rewards-invalid-staked-balance"); - - vm.revertTo(before); - } - } - - function testVestedRewardsDistributionJob() public { - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - - SequencerLike seq = SequencerLike(addr.addr("CRON_SEQUENCER")); - CronJobLike job = CronJobLike(addr.addr("CRON_REWARDS_DIST_JOB")); - VestedRewardsDistributionLike distUsdsSky = VestedRewardsDistributionLike(addr.addr("REWARDS_DIST_USDS_SKY")); - - uint256 blkt = block.timestamp; - - // Since distribute() was called in the spell, initially the job is not due for execution... - { - // `workable()` is allowed to modify state in this job, so we need to make sure to revert its effects. - uint256 before = vm.snapshot(); - - // ... even 1 second before the desired interval, it would not be due - skip(7 days - 1 hours - 1); - // sanity check - assertFalse(blkt == block.timestamp); - - (bool ok, ) = job.workable(seq.getMaster()); - assertFalse(ok, "testVestedRewardsDistributionJob/unexpected-due-job"); - - vm.revertTo(before); - } - - // sanity check: vm.revertTo() restores previous block.timestamp - assertTrue(blkt == block.timestamp); - // ... as we move to the next due date, the job can execute - skip(7 days - 1 hours); - - { - // `workable()` is allowed to modify state in this job, so we need to make sure to revert its effects. - uint256 before = vm.snapshot(); - - (bool ok, bytes memory out) = job.workable(seq.getMaster()); - assertTrue(ok, "testVestedRewardsDistributionJob/missing-due-job"); - (address dist) = abi.decode(out, (address)); - assertEq(dist, address(distUsdsSky), "testVestedRewardsDistributionJob/invalid-dist-returned"); - - vm.revertTo(before); - } - - uint256 plastDistributed = distUsdsSky.lastDistributedAt(); - job.work(seq.getMaster(), abi.encode(address(distUsdsSky))); - assertGt(distUsdsSky.lastDistributedAt(), plastDistributed, "testVestedRewardsDistributionJob/missing-distribution"); - } - - function testUsdsPsmWrapper() public { - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - - UsdsPsmWrapperLike wrapper = UsdsPsmWrapperLike(addr.addr("WRAPPER_USDS_LITE_PSM_USDC_A")); - LitePsmLike litePsm = LitePsmLike(wrapper.psm()); - - assertEq(address(litePsm), addr.addr("MCD_LITE_PSM_USDC_A"), "testUsdsPsmWrapper/psm-mismatch"); - assertEq(wrapper.gem(), litePsm.gem(), "testUsdsPsmWrapper/gem-mismatch"); - assertEq(wrapper.ilk(), litePsm.ilk(), "testUsdsPsmWrapper/ilk-mismatch"); - assertEq(wrapper.dai(), addr.addr("USDS"), "testUsdsPsmWrapper/invalid-dai-alias-usds"); - assertEq(wrapper.usds(), addr.addr("USDS"), "testUsdsPsmWrapper/invalid-usds"); - assertEq(wrapper.usdsJoin(), addr.addr("USDS_JOIN"), "testUsdsPsmWrapper/invalid-usds"); - - // Arbitrary amount of TOKEN to test PSM sellGem and buyGem with (in whole units) - // `amount` is the amount of _TOKEN_ we are selling/buying (NOT measured in USDS) - uint256 amount = 100_000; - // Amount should be more than 10,000 as `tin` and `tout` are basis point measurements - require(amount >= 10_000, "checkLitePsmIlkIntegration/amount-too-low-for-precision-checks"); - - GemAbstract token = GemAbstract(wrapper.gem()); - // Approvals - token.approve(address(wrapper), type(uint256).max); - usds.approve(address(wrapper), type(uint256).max); - - uint256 snapshot = vm.snapshot(); - - // Sell TOKEN _to_ the PSM for USDS - { - uint256 sellWadOut = amount * WAD; // Scale to USDS decimals (18) for USDS balance check - sellWadOut -= sellWadOut * litePsm.tin() / WAD; // Subtract `tin` fee (was deducted by PSM) - - uint256 sellAmt = amount * WAD / _to18ConversionFactor(litePsm); - _giveTokens(address(token), sellAmt); - wrapper.sellGem(address(this), sellAmt); - - assertEq(token.balanceOf(address(this)), 0, "testUsdsPsmWrapper/invalid-sellGem-gem-balance"); - assertEq(usds.balanceOf(address(this)), sellWadOut, "testUsdsPsmWrapper/sellGem-usds-balance"); - - vm.revertTo(snapshot); - } - - // Buy TOKEN _from_ the PSM for USDS - { - uint256 buyWadIn = amount * WAD; // Scale to USDS decimals (18) for USDS balance check - buyWadIn += buyWadIn * litePsm.tout() / WAD; // Add `tout` fee (was included by PSM) - - uint256 buyAmt = amount * WAD / _to18ConversionFactor(litePsm); - _giveTokens(address(usds), buyWadIn); - wrapper.buyGem(address(this), buyAmt); - - assertEq(token.balanceOf(address(this)), buyAmt, "testUsdsPsmWrapper/invalid-buyGem-gem-balance"); - assertEq(usds.balanceOf(address(this)), 0, "testUsdsPsmWrapper/buyGem-usds-balance"); - - vm.revertTo(snapshot); - } - } - - function testNewAuthorizations() public { - assertEq(WardsAbstract(address(usds)).wards(addr.addr("USDS_JOIN")), 0, "before: testNewAuthorizations/usds-join-already-ward-usds"); - assertEq(WardsAbstract(address(sky)).wards(addr.addr("MKR_SKY")), 0, "before: testNewAuthorizations/mkr-sky-already-ward-sky"); - assertEq(WardsAbstract(gov.authority()).wards(addr.addr("MKR_SKY")), 0, "before: testNewAuthorizations/mkr-sky-already-ward-mkr-authority"); - assertEq(WardsAbstract(address(sky)).wards(addr.addr("MCD_VEST_SKY")), 0, "TestError/mcd-vest-sky-already-ward-sky"); - assertEq(WardsAbstract(address(vat)).wards(addr.addr("SUSDS")), 0, "before: testNewAuthorizations/susds-already-ward-vat"); - assertEq(WardsAbstract(address(flap)).wards(addr.addr("MCD_SPLIT")), 0, "before: testNewAuthorizations/splitter-already-ward-flapper"); - assertEq(WardsAbstract(address(split)).wards(addr.addr("SPLITTER_MOM")), 0, "before: testNewAuthorizations/splitter-mom-already-ward-splitter"); - assertEq(WardsAbstract(address(split)).wards(addr.addr("MCD_VOW")), 0, "before: testNewAuthorizations/vow-already-ward-splitter"); - - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - - assertEq(WardsAbstract(address(usds)).wards(addr.addr("USDS_JOIN")), 1, "after: testNewAuthorizations/usds-join-not-ward-usds"); - assertEq(WardsAbstract(address(sky)).wards(addr.addr("MKR_SKY")), 1, "after: testNewAuthorizations/mkr-sky-not-ward-sky"); - assertEq(WardsAbstract(gov.authority()).wards(addr.addr("MKR_SKY")), 1, "after: testNewAuthorizations/mkr-sky-not-ward-mkr-authority"); - assertEq(WardsAbstract(address(sky)).wards(addr.addr("MCD_VEST_SKY")), 1, "TestError/mcd-vest-sky-not-ward-sky"); - assertEq(WardsAbstract(address(vat)).wards(addr.addr("SUSDS")), 1, "after: testNewAuthorizations/susds-not-ward-vat"); - assertEq(WardsAbstract(address(flap)).wards(addr.addr("MCD_SPLIT")), 1, "after: testNewAuthorizations/splitter-not-ward-flapper"); - assertEq(WardsAbstract(address(split)).wards(addr.addr("SPLITTER_MOM")), 1, "after: testNewAuthorizations/splitter-mom-not-ward-splitter"); - assertEq(WardsAbstract(address(split)).wards(addr.addr("MCD_VOW")), 1, "after: testNewAuthorizations/vow-not-ward-splitter"); - - } } diff --git a/src/dependencies/01-usds/UsdsInit.sol b/src/dependencies/01-usds/UsdsInit.sol deleted file mode 100644 index 694ca11ea..000000000 --- a/src/dependencies/01-usds/UsdsInit.sol +++ /dev/null @@ -1,61 +0,0 @@ -// SPDX-FileCopyrightText: © 2023 Dai Foundation -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity >=0.8.0; - -import { DssInstance } from "dss-test/MCD.sol"; -import { UsdsInstance } from "./UsdsInstance.sol"; - -interface UsdsLike { - function rely(address) external; - function version() external view returns (string memory); - function getImplementation() external view returns (address); -} - -interface UsdsJoinLike { - function usds() external view returns (address); - function vat() external view returns (address); -} - -interface DaiUsdsLike { - function daiJoin() external view returns (address); - function usdsJoin() external view returns (address); -} - -library UsdsInit { - - function init( - DssInstance memory dss, - UsdsInstance memory instance - ) internal { - require(keccak256(bytes(UsdsLike(instance.usds).version())) == keccak256("1"), "UsdsInit/version-does-not-match"); - require(UsdsLike(instance.usds).getImplementation() == instance.usdsImp, "UsdsInit/imp-does-not-match"); - - require(UsdsJoinLike(instance.usdsJoin).vat() == address(dss.vat), "UsdsInit/vat-does-not-match"); - require(UsdsJoinLike(instance.usdsJoin).usds() == instance.usds, "UsdsInit/usds-does-not-match"); - - address daiJoin = dss.chainlog.getAddress("MCD_JOIN_DAI"); - require(DaiUsdsLike(instance.daiUsds).daiJoin() == daiJoin, "UsdsInit/daiJoin-does-not-match"); - require(DaiUsdsLike(instance.daiUsds).usdsJoin() == instance.usdsJoin, "UsdsInit/usdsJoin-does-not-match"); - - UsdsLike(instance.usds).rely(instance.usdsJoin); - - dss.chainlog.setAddress("USDS", instance.usds); - dss.chainlog.setAddress("USDS_IMP", instance.usdsImp); - dss.chainlog.setAddress("USDS_JOIN", instance.usdsJoin); - dss.chainlog.setAddress("DAI_USDS", instance.daiUsds); - } -} diff --git a/src/dependencies/01-usds/UsdsInstance.sol b/src/dependencies/01-usds/UsdsInstance.sol deleted file mode 100644 index ddf7a1cd7..000000000 --- a/src/dependencies/01-usds/UsdsInstance.sol +++ /dev/null @@ -1,24 +0,0 @@ -// SPDX-FileCopyrightText: © 2023 Dai Foundation -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity >=0.8.0; - -struct UsdsInstance { - address usds; - address usdsImp; - address usdsJoin; - address daiUsds; -} diff --git a/src/dependencies/02-susds/SUsdsInit.sol b/src/dependencies/02-susds/SUsdsInit.sol deleted file mode 100644 index 10f14247c..000000000 --- a/src/dependencies/02-susds/SUsdsInit.sol +++ /dev/null @@ -1,71 +0,0 @@ -// SPDX-FileCopyrightText: © 2023 Dai Foundation -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity >=0.8.0; - -import { DssInstance } from "dss-test/MCD.sol"; -import { SUsdsInstance } from "./SUsdsInstance.sol"; - -interface SUsdsLike { - function version() external view returns (string memory); - function getImplementation() external view returns (address); - function usdsJoin() external view returns (address); - function vat() external view returns (address); - function usds() external view returns (address); - function vow() external view returns (address); - function file(bytes32, uint256) external; - function drip() external returns (uint256); -} - -interface UsdsJoinLike { - function usds() external view returns (address); -} - -struct SUsdsConfig { - address usdsJoin; - address usds; - uint256 ssr; -} - -library SUsdsInit { - - uint256 constant internal RAY = 10**27; - uint256 constant internal RATES_ONE_HUNDRED_PCT = 1000000021979553151239153027; - - function init( - DssInstance memory dss, - SUsdsInstance memory instance, - SUsdsConfig memory cfg - ) internal { - require(keccak256(abi.encodePacked(SUsdsLike(instance.sUsds).version())) == keccak256(abi.encodePacked("1")), "SUsdsInit/version-does-not-match"); - require(SUsdsLike(instance.sUsds).getImplementation() == instance.sUsdsImp, "SUsdsInit/imp-does-not-match"); - - require(SUsdsLike(instance.sUsds).vat() == address(dss.vat), "SUsdsInit/vat-does-not-match"); - require(SUsdsLike(instance.sUsds).usdsJoin() == cfg.usdsJoin, "SUsdsInit/usdsJoin-does-not-match"); - require(SUsdsLike(instance.sUsds).usds() == cfg.usds, "SUsdsInit/usds-does-not-match"); - require(SUsdsLike(instance.sUsds).vow() == address(dss.vow), "SUsdsInit/vow-does-not-match"); - - require(cfg.ssr >= RAY && cfg.ssr <= RATES_ONE_HUNDRED_PCT, "SUsdsInit/ssr-out-of-boundaries"); - - dss.vat.rely(instance.sUsds); - - SUsdsLike(instance.sUsds).drip(); - SUsdsLike(instance.sUsds).file("ssr", cfg.ssr); - - dss.chainlog.setAddress("SUSDS", instance.sUsds); - dss.chainlog.setAddress("SUSDS_IMP", instance.sUsdsImp); - } -} diff --git a/src/dependencies/02-susds/SUsdsInstance.sol b/src/dependencies/02-susds/SUsdsInstance.sol deleted file mode 100644 index d7d0a89e8..000000000 --- a/src/dependencies/02-susds/SUsdsInstance.sol +++ /dev/null @@ -1,22 +0,0 @@ -// SPDX-FileCopyrightText: © 2023 Dai Foundation -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity >=0.8.0; - -struct SUsdsInstance { - address sUsds; - address sUsdsImp; -} diff --git a/src/dependencies/03-sky/SkyInit.sol b/src/dependencies/03-sky/SkyInit.sol deleted file mode 100644 index 90dae83cf..000000000 --- a/src/dependencies/03-sky/SkyInit.sol +++ /dev/null @@ -1,57 +0,0 @@ -// SPDX-FileCopyrightText: © 2023 Dai Foundation -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity >=0.8.0; - -import { DssInstance } from "dss-test/MCD.sol"; -import { SkyInstance } from "./SkyInstance.sol"; - -interface SkyLike { - function rely(address) external; -} - -interface MkrSkyLike { - function mkr() external view returns (address); - function sky() external view returns (address); - function rate() external view returns (uint256); -} - -interface MkrLike { - function authority() external view returns (address); -} - -interface MkrAuthorityLike { - function rely(address) external; -} - -library SkyInit { - function init( - DssInstance memory dss, - SkyInstance memory instance, - uint256 rate - ) internal { - address mkr = dss.chainlog.getAddress("MCD_GOV"); - require(MkrSkyLike(instance.mkrSky).mkr() == mkr, "SkyInit/mkr-does-not-match"); - require(MkrSkyLike(instance.mkrSky).sky() == instance.sky, "SkyInit/sky-does-not-match"); - require(MkrSkyLike(instance.mkrSky).rate() == rate, "SkyInit/rate-does-not-match"); - - SkyLike(instance.sky).rely(instance.mkrSky); - MkrAuthorityLike(MkrLike(mkr).authority()).rely(instance.mkrSky); - - dss.chainlog.setAddress("SKY", instance.sky); - dss.chainlog.setAddress("MKR_SKY", instance.mkrSky); - } -} diff --git a/src/dependencies/03-sky/SkyInstance.sol b/src/dependencies/03-sky/SkyInstance.sol deleted file mode 100644 index b724cdef0..000000000 --- a/src/dependencies/03-sky/SkyInstance.sol +++ /dev/null @@ -1,22 +0,0 @@ -// SPDX-FileCopyrightText: © 2023 Dai Foundation -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity >=0.8.0; - -struct SkyInstance { - address sky; - address mkrSky; -} diff --git a/src/dependencies/04-univ2-pool-migrator/UniV2PoolMigratorInit.sol b/src/dependencies/04-univ2-pool-migrator/UniV2PoolMigratorInit.sol deleted file mode 100644 index 8b28fec6d..000000000 --- a/src/dependencies/04-univ2-pool-migrator/UniV2PoolMigratorInit.sol +++ /dev/null @@ -1,97 +0,0 @@ -// SPDX-FileCopyrightText: © 2023 Dai Foundation -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity >=0.8.0; - -import { DssInstance } from "dss-test/MCD.sol"; - -interface GemLike { - function balanceOf(address) external view returns (uint256); - function totalSupply() external view returns (uint256); - function approve(address, uint256) external; - function transfer(address, uint256) external; -} - -interface PoolLike { - function mint(address) external; - function burn(address) external; - function getReserves() external view returns (uint112, uint112, uint32); -} - -interface DaiUsdsLike { - function daiToUsds(address, uint256) external; -} - -interface MkrSkyLike { - function mkrToSky(address, uint256) external; -} - -interface PipLike { - function read() external view returns (bytes32); - function kiss(address) external; - function diss(address) external; -} - -library UniV2PoolMigratorInit { - function init( - DssInstance memory dss, - address pairDaiMkr, - address pairUsdsSky - ) internal { - // Using pProxy instead of address(this) as otherwise won't work in tests, in real execution should be same address - address pProxy = dss.chainlog.getAddress("MCD_PAUSE_PROXY"); - - require(GemLike(pairUsdsSky).totalSupply() == 0, "UniV2PoolMigratorInit/sanity-check-1-failed"); - - // Sanity check for Uniswap vs oracle price. This is completely unnecessary but acts as a separate safety layer. - { - PipLike mkrPip = PipLike(dss.chainlog.getAddress("PIP_MKR")); - mkrPip.kiss(pProxy); - uint256 pipPrice = uint256(mkrPip.read()); // Assume par is 1 - mkrPip.diss(pProxy); - - (uint256 daiReserve, uint256 mkrReserve, ) = PoolLike(pairDaiMkr).getReserves(); - uint256 uniPrice = daiReserve * 1e18 / mkrReserve; - - require( - uniPrice < pipPrice * 102 / 100 && uniPrice > pipPrice * 98 / 100, - "UniV2PoolMigratorInit/sanity-check-2-failed" - ); - } - - GemLike dai = GemLike(dss.chainlog.getAddress("MCD_DAI")); - GemLike mkr = GemLike(dss.chainlog.getAddress("MCD_GOV")); - - uint256 daiAmtPrev = dai.balanceOf(pProxy); - uint256 mkrAmtPrev = mkr.balanceOf(pProxy); - - GemLike(pairDaiMkr).transfer(pairDaiMkr, GemLike(pairDaiMkr).balanceOf(pProxy)); - PoolLike(pairDaiMkr).burn(pProxy); - - DaiUsdsLike daiUsds = DaiUsdsLike(dss.chainlog.getAddress("DAI_USDS")); - MkrSkyLike mkrSky = MkrSkyLike(dss.chainlog.getAddress("MKR_SKY")); - - uint256 daiAmt = dai.balanceOf(pProxy) - daiAmtPrev; - uint256 mkrAmt = mkr.balanceOf(pProxy) - mkrAmtPrev; - dai.approve(address(daiUsds), daiAmt); - mkr.approve(address(mkrSky), mkrAmt); - daiUsds.daiToUsds(pairUsdsSky, daiAmt); - mkrSky.mkrToSky(pairUsdsSky, mkrAmt); - PoolLike(pairUsdsSky).mint(pProxy); - - require(GemLike(pairUsdsSky).balanceOf(pProxy) > 0, "UniV2PoolMigratorInit/sanity-check-3-failed"); - } -} diff --git a/src/dependencies/05-flapper/FlapperInit.sol b/src/dependencies/05-flapper/FlapperInit.sol deleted file mode 100644 index 4d7475efe..000000000 --- a/src/dependencies/05-flapper/FlapperInit.sol +++ /dev/null @@ -1,211 +0,0 @@ -// SPDX-FileCopyrightText: © 2023 Dai Foundation -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity >=0.8.0; - -import { DssInstance } from "dss-test/MCD.sol"; -import { SplitterInstance } from "./SplitterInstance.sol"; - -interface FlapperUniV2Like { - function pip() external view returns (address); - function spotter() external view returns (address); - function usds() external view returns (address); - function gem() external view returns (address); - function receiver() external view returns (address); - function pair() external view returns (address); - function rely(address) external; - function file(bytes32, uint256) external; - function file(bytes32, address) external; -} - -interface SplitterMomLike { - function splitter() external view returns (address); - function setAuthority(address) external; -} - -interface OracleWrapperLike { - function pip() external view returns (address); - function divisor() external view returns (uint256); -} - -interface PipLike { - function kiss(address) external; -} - -interface PairLike { - function token0() external view returns (address); - function token1() external view returns (address); -} - -interface UsdsJoinLike { - function dai() external view returns (address); // TODO: Replace when new join is ready by the new getter -} - -interface SplitterLike { - function live() external view returns (uint256); - function vat() external view returns (address); - function usdsJoin() external view returns (address); - function hop() external view returns (uint256); - function rely(address) external; - function file(bytes32, uint256) external; - function file(bytes32, address) external; -} - -interface FarmLike { - function rewardsToken() external view returns (address); - function setRewardsDistribution(address) external; - function setRewardsDuration(uint256) external; -} - -struct FlapperUniV2Config { - uint256 want; - address pip; - address pair; - address usds; - address splitter; - bytes32 prevChainlogKey; - bytes32 chainlogKey; -} - -struct FarmConfig { - address splitter; - address usdsJoin; - uint256 hop; - bytes32 prevChainlogKey; - bytes32 chainlogKey; -} - -struct SplitterConfig { - uint256 hump; - uint256 bump; - uint256 hop; - uint256 burn; - address usdsJoin; - bytes32 splitterChainlogKey; - bytes32 prevMomChainlogKey; - bytes32 momChainlogKey; -} - -library FlapperInit { - uint256 constant WAD = 10 ** 18; - uint256 constant RAY = 10 ** 27; - - function initFlapperUniV2( - DssInstance memory dss, - address flapper_, - FlapperUniV2Config memory cfg - ) internal { - FlapperUniV2Like flapper = FlapperUniV2Like(flapper_); - - // Sanity checks - require(flapper.spotter() == address(dss.spotter), "Flapper spotter mismatch"); - require(flapper.usds() == cfg.usds, "Flapper usds mismatch"); - require(flapper.pair() == cfg.pair, "Flapper pair mismatch"); - require(flapper.receiver() == dss.chainlog.getAddress("MCD_PAUSE_PROXY"), "Flapper receiver mismatch"); - - PairLike pair = PairLike(flapper.pair()); - (address pairUsds, address pairGem) = pair.token0() == cfg.usds ? (pair.token0(), pair.token1()) - : (pair.token1(), pair.token0()); - require(pairUsds == cfg.usds, "Usds mismatch"); - require(pairGem == flapper.gem(), "Gem mismatch"); - - require(cfg.want >= WAD * 90 / 100, "want too low"); - - flapper.file("want", cfg.want); - flapper.file("pip", cfg.pip); - flapper.rely(cfg.splitter); - - SplitterLike(cfg.splitter).file("flapper", flapper_); - - if (cfg.prevChainlogKey != bytes32(0)) dss.chainlog.removeAddress(cfg.prevChainlogKey); - dss.chainlog.setAddress(cfg.chainlogKey, flapper_); - } - - function initDirectOracle(address flapper) internal { - PipLike(FlapperUniV2Like(flapper).pip()).kiss(flapper); - } - - function initOracleWrapper( - DssInstance memory dss, - address wrapper_, - uint256 divisor, - bytes32 clKey - ) internal { - OracleWrapperLike wrapper = OracleWrapperLike(wrapper_); - require(wrapper.divisor() == divisor, "Wrapper divisor mismatch"); // Sanity check - PipLike(wrapper.pip()).kiss(wrapper_); - dss.chainlog.setAddress(clKey, wrapper_); - } - - function setFarm( - DssInstance memory dss, - address farm_, - FarmConfig memory cfg - ) internal { - FarmLike farm = FarmLike(farm_); - SplitterLike splitter = SplitterLike(cfg.splitter); - - require(farm.rewardsToken() == UsdsJoinLike(cfg.usdsJoin).dai(), "Farm rewards not usds"); - // Staking token is checked in the Lockstake script - - // The following two checks enforce the initSplitter function has to be called first - require(cfg.hop >= 5 minutes, "hop too low"); - require(cfg.hop == splitter.hop(), "hop mismatch"); - - splitter.file("farm", farm_); - - farm.setRewardsDistribution(cfg.splitter); - farm.setRewardsDuration(cfg.hop); - - if (cfg.prevChainlogKey != bytes32(0)) dss.chainlog.removeAddress(cfg.prevChainlogKey); - dss.chainlog.setAddress(cfg.chainlogKey, farm_); - } - - function initSplitter( - DssInstance memory dss, - SplitterInstance memory splitterInstance, - SplitterConfig memory cfg - ) internal { - SplitterLike splitter = SplitterLike(splitterInstance.splitter); - SplitterMomLike mom = SplitterMomLike(splitterInstance.mom); - - // Sanity checks - require(splitter.live() == 1, "Splitter not live"); - require(splitter.vat() == address(dss.vat), "Splitter vat mismatch"); - require(splitter.usdsJoin() == cfg.usdsJoin, "Splitter usdsJoin mismatch"); - require(mom.splitter() == splitterInstance.splitter, "Mom splitter mismatch"); - - require(cfg.hump > 0, "hump too low"); - require(cfg.bump % RAY == 0, "bump not multiple of RAY"); - require(cfg.hop >= 5 minutes, "hop too low"); - require(cfg.burn <= WAD, "burn too high"); - - splitter.file("hop", cfg.hop); - splitter.file("burn", cfg.burn); - splitter.rely(address(mom)); - splitter.rely(address(dss.vow)); - - dss.vow.file("flapper", splitterInstance.splitter); - dss.vow.file("hump", cfg.hump); - dss.vow.file("bump", cfg.bump); - - mom.setAuthority(dss.chainlog.getAddress("MCD_ADM")); - - dss.chainlog.setAddress(cfg.splitterChainlogKey, splitterInstance.splitter); - if (cfg.prevMomChainlogKey != bytes32(0)) dss.chainlog.removeAddress(cfg.prevMomChainlogKey); - dss.chainlog.setAddress(cfg.momChainlogKey, address(mom)); - } -} diff --git a/src/dependencies/05-flapper/SplitterInstance.sol b/src/dependencies/05-flapper/SplitterInstance.sol deleted file mode 100644 index bb61fb721..000000000 --- a/src/dependencies/05-flapper/SplitterInstance.sol +++ /dev/null @@ -1,22 +0,0 @@ -// SPDX-FileCopyrightText: © 2023 Dai Foundation -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity >=0.8.0; - -struct SplitterInstance { - address splitter; - address mom; -} diff --git a/src/dependencies/06-farm/StakingRewardsInit.sol b/src/dependencies/06-farm/StakingRewardsInit.sol deleted file mode 100644 index 3e10a2887..000000000 --- a/src/dependencies/06-farm/StakingRewardsInit.sol +++ /dev/null @@ -1,48 +0,0 @@ -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity ^0.8.16; - -struct StakingRewardsInitParams { - address dist; -} - -struct StakingRewardsNominateNewOwnerParams { - address newOwner; -} - -library StakingRewardsInit { - function init(address rewards, StakingRewardsInitParams memory p) internal { - StakingRewardsLike(rewards).setRewardsDistribution(p.dist); - } - - /// @dev `StakingRewards` ownership transfer is a 2-step process: nominate + acceptance. - function nominateNewOwner(address rewards, StakingRewardsNominateNewOwnerParams memory p) internal { - StakingRewardsLike(rewards).nominateNewOwner(p.newOwner); - } - - /// @dev `StakingRewards` ownership transfer requires the new owner to explicitly accept it. - function acceptOwnership(address rewards) internal { - StakingRewardsLike(rewards).acceptOwnership(); - } -} - -interface StakingRewardsLike { - function setRewardsDistribution(address _rewardsDistribution) external; - - function acceptOwnership() external; - - function nominateNewOwner(address _owner) external; -} diff --git a/src/dependencies/06-farm/VestInit.sol b/src/dependencies/06-farm/VestInit.sol deleted file mode 100644 index 4e8a216ff..000000000 --- a/src/dependencies/06-farm/VestInit.sol +++ /dev/null @@ -1,53 +0,0 @@ -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity ^0.8.16; - -struct VestCreateParams { - address usr; - uint256 tot; - uint256 bgn; - uint256 tau; - uint256 eta; -} - -/// @dev Handles vesting stream creation. Assumes `DssVest` parameters are initialized somewhere else. -library VestInit { - function create(address vest, VestCreateParams memory p) internal returns (uint256 vestId) { - vestId = DssVestLike(vest).create( - p.usr, - p.tot, - p.bgn, - p.tau, - p.eta, - address(0) // mgr - ); - - DssVestLike(vest).restrict(vestId); - } -} - -interface DssVestLike { - function create( - address _usr, - uint256 _tot, - uint256 _bgn, - uint256 _tau, - uint256 _eta, - address _mgr - ) external returns (uint256 id); - - function restrict(uint256 _id) external; -} diff --git a/src/dependencies/06-farm/VestedRewardsDistributionInit.sol b/src/dependencies/06-farm/VestedRewardsDistributionInit.sol deleted file mode 100644 index 2026b97c1..000000000 --- a/src/dependencies/06-farm/VestedRewardsDistributionInit.sol +++ /dev/null @@ -1,30 +0,0 @@ -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity ^0.8.16; - -struct VestedRewardsDistributionInitParams { - uint256 vestId; -} - -library VestedRewardsDistributionInit { - function init(address dist, VestedRewardsDistributionInitParams memory p) internal { - VestedRewardsDistributionLike(dist).file("vestId", p.vestId); - } -} - -interface VestedRewardsDistributionLike { - function file(bytes32 what, uint256 data) external; -} diff --git a/src/dependencies/06-farm/phase-1b/Usds01PreFarmingInit.sol b/src/dependencies/06-farm/phase-1b/Usds01PreFarmingInit.sol deleted file mode 100644 index 8a2e3d36a..000000000 --- a/src/dependencies/06-farm/phase-1b/Usds01PreFarmingInit.sol +++ /dev/null @@ -1,66 +0,0 @@ -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity ^0.8.16; - -struct Usds01PreFarmingInitParams { - address usds; - address rewards; - bytes32 rewardsKey; // Chainlog key -} - -library Usds01PreFarmingInit { - ChainlogLike internal constant chainlog = ChainlogLike(0xdA0Ab1e0017DEbCd72Be8599041a2aa3bA7e740F); - - function init(Usds01PreFarmingInitParams memory p) internal { - require( - StakingRewardsLike(p.rewards).stakingToken() == p.usds, - "Usds01PreFarmingInit/rewards-staking-token-mismatch" - ); - require( - StakingRewardsLike(p.rewards).rewardsToken() == address(0), - "Usds01PreFarmingInit/invalid-rewards-token" - ); - require(StakingRewardsLike(p.rewards).rewardRate() == 0, "Usds01PreFarmingInit/reward-rate-not-zero"); - require( - StakingRewardsLike(p.rewards).rewardsDistribution() == address(0), - "Usds01PreFarmingInit/rewards-distribution-already-set" - ); - require( - StakingRewardsLike(p.rewards).owner() == chainlog.getAddress("MCD_PAUSE_PROXY"), - "Usds01PreFarmingInit/invalid-owner" - ); - - chainlog.setAddress(p.rewardsKey, p.rewards); - } -} - -interface StakingRewardsLike { - function owner() external view returns (address); - - function rewardRate() external view returns (uint256); - - function rewardsDistribution() external view returns (address); - - function rewardsToken() external view returns (address); - - function stakingToken() external view returns (address); -} - -interface ChainlogLike { - function getAddress(bytes32 key) external view returns (address); - - function setAddress(bytes32 key, address addr) external; -} diff --git a/src/dependencies/06-farm/phase-1b/UsdsSkyFarmingInit.sol b/src/dependencies/06-farm/phase-1b/UsdsSkyFarmingInit.sol deleted file mode 100644 index 591c052a8..000000000 --- a/src/dependencies/06-farm/phase-1b/UsdsSkyFarmingInit.sol +++ /dev/null @@ -1,124 +0,0 @@ -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity ^0.8.16; - -import {StakingRewardsInit, StakingRewardsInitParams} from "../StakingRewardsInit.sol"; -import {VestedRewardsDistributionInit, VestedRewardsDistributionInitParams} from "../VestedRewardsDistributionInit.sol"; -import {VestInit, VestCreateParams} from "../VestInit.sol"; - -struct UsdsSkyFarmingInitParams { - address usds; - address sky; - address rewards; - bytes32 rewardsKey; // Chainlog key - address dist; - bytes32 distKey; // Chainlog key - address vest; - uint256 vestTot; - uint256 vestBgn; - uint256 vestTau; -} - -struct UsdsSkyFarmingInitResult { - uint256 vestId; -} - -library UsdsSkyFarmingInit { - ChainlogLike internal constant chainlog = ChainlogLike(0xdA0Ab1e0017DEbCd72Be8599041a2aa3bA7e740F); - - function init(UsdsSkyFarmingInitParams memory p) internal returns (UsdsSkyFarmingInitResult memory r) { - require(DssVestWithGemLike(p.vest).gem() == p.sky, "UsdsSkyFarmingInit/vest-gem-mismatch"); - - require( - StakingRewardsLike(p.rewards).stakingToken() == p.usds, - "UsdsSkyFarmingInit/rewards-staking-token-mismatch" - ); - require( - StakingRewardsLike(p.rewards).rewardsToken() == p.sky, - "UsdsSkyFarmingInit/rewards-rewards-token-mismatch" - ); - require(StakingRewardsLike(p.rewards).rewardRate() == 0, "UsdsSkyFarmingInit/reward-rate-not-zero"); - require( - StakingRewardsLike(p.rewards).rewardsDistribution() == address(0), - "UsdsSkyFarmingInit/rewards-distribution-already-set" - ); - require( - StakingRewardsLike(p.rewards).owner() == chainlog.getAddress("MCD_PAUSE_PROXY"), - "UsdsSkyFarmingInit/invalid-owner" - ); - - require(VestedRewardsDistributionLike(p.dist).gem() == p.sky, "UsdsSkyFarmingInit/dist-gem-mismatch"); - require(VestedRewardsDistributionLike(p.dist).dssVest() == p.vest, "UsdsSkyFarmingInit/dist-dss-vest-mismatch"); - require( - VestedRewardsDistributionLike(p.dist).stakingRewards() == p.rewards, - "UsdsSkyFarmingInit/dist-staking-rewards-mismatch" - ); - - // `vest` is expected to be an instance of `DssVestMintable`. - // Check if minting rights on `sky` were granted to `vest`. - require(WardsLike(p.sky).wards(p.vest) == 1, "UsdsSkyFarmingInit/missing-sky-rely-vest"); - // Set `dist` with `rewardsDistribution` role in `rewards`. - StakingRewardsInit.init(p.rewards, StakingRewardsInitParams({dist: p.dist})); - - // Create the proper vesting stream for rewards distribution. - uint256 vestId = VestInit.create( - p.vest, - VestCreateParams({usr: p.dist, tot: p.vestTot, bgn: p.vestBgn, tau: p.vestTau, eta: 0}) - ); - - // Set the `vestId` in `dist` - VestedRewardsDistributionInit.init(p.dist, VestedRewardsDistributionInitParams({vestId: vestId})); - - r.vestId = vestId; - - chainlog.setAddress(p.rewardsKey, p.rewards); - chainlog.setAddress(p.distKey, p.dist); - } -} - -interface WardsLike { - function wards(address who) external view returns (uint256); -} - -interface DssVestWithGemLike { - function gem() external view returns (address); -} - -interface StakingRewardsLike { - function owner() external view returns (address); - - function rewardRate() external view returns (uint256); - - function rewardsDistribution() external view returns (address); - - function rewardsToken() external view returns (address); - - function stakingToken() external view returns (address); -} - -interface VestedRewardsDistributionLike { - function dssVest() external view returns (address); - - function gem() external view returns (address); - - function stakingRewards() external view returns (address); -} - -interface ChainlogLike { - function getAddress(bytes32 key) external view returns (address); - - function setAddress(bytes32 key, address addr) external; -} diff --git a/src/dependencies/07-cron/VestedRewardsDistributionJobInit.sol b/src/dependencies/07-cron/VestedRewardsDistributionJobInit.sol deleted file mode 100644 index 396cb4cf3..000000000 --- a/src/dependencies/07-cron/VestedRewardsDistributionJobInit.sol +++ /dev/null @@ -1,82 +0,0 @@ -// SPDX-FileCopyrightText: © 2023 Dai Foundation -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . -pragma solidity ^0.8.13; - -struct VestedRewardsDistributionJobInitConfig { - bytes32 jobKey; // Chainlog key -} - -struct VestedRewardsDistributionJobDeinitConfig { - bytes32 jobKey; // Chainlog key -} - -struct VestedRewardsDistributionJobSetDistConfig { - address dist; - uint256 interval; -} - -struct VestedRewardsDistributionJobRemDistConfig { - address dist; -} - -library VestedRewardsDistributionJobInit { - ChainlogLike internal constant chainlog = ChainlogLike(0xdA0Ab1e0017DEbCd72Be8599041a2aa3bA7e740F); - - function init(address job, VestedRewardsDistributionJobInitConfig memory cfg) internal { - SequencerLike sequencer = SequencerLike(chainlog.getAddress("CRON_SEQUENCER")); - require( - VestedRewardsDistributionJobLike(job).sequencer() == address(sequencer), - "VestedRewardsDistributionJobInit/invalid-sequencer" - ); - sequencer.addJob(job); - chainlog.setAddress(cfg.jobKey, job); - } - - function deinit(address job, VestedRewardsDistributionJobDeinitConfig memory cfg) internal { - SequencerLike sequencer = SequencerLike(chainlog.getAddress("CRON_SEQUENCER")); - require( - VestedRewardsDistributionJobLike(job).sequencer() == address(sequencer), - "VestedRewardsDistributionJobInit/invalid-sequencer" - ); - sequencer.removeJob(job); - chainlog.removeAddress(cfg.jobKey); - } - - function setDist(address job, VestedRewardsDistributionJobSetDistConfig memory cfg) internal { - VestedRewardsDistributionJobLike(job).set(cfg.dist, cfg.interval); - } - - function remDist(address job, VestedRewardsDistributionJobRemDistConfig memory cfg) internal { - VestedRewardsDistributionJobLike(job).rem(cfg.dist); - } -} - -interface VestedRewardsDistributionJobLike { - function sequencer() external view returns (address); - function set(address dist, uint256 interval) external; - function rem(address dist) external; -} - -interface ChainlogLike { - function getAddress(bytes32 key) external view returns (address); - function removeAddress(bytes32 key) external; - function setAddress(bytes32 key, address val) external; -} - -interface SequencerLike { - function addJob(address job) external; - function removeJob(address job) external; -} diff --git a/src/test/config.sol b/src/test/config.sol index e52facea9..6984a5865 100644 --- a/src/test/config.sol +++ b/src/test/config.sol @@ -96,16 +96,16 @@ contract Config { function setValues(address chief) public { // Add spells if there is a need to test prior to their cast() functions // being called on-chain. They will be executed in order from index 0. - address[] memory prevSpells = new address[](0); - // prevSpells[0] = address(0); + address[] memory prevSpells = new address[](1); + prevSpells[0] = address(0x70254BD530684CF4a6323F51098FA39AAE6130b6); // // Values for spell-specific parameters // spellValues = SpellValues({ - deployed_spell: address(0x70254BD530684CF4a6323F51098FA39AAE6130b6), // populate with deployed spell if deployed - deployed_spell_created: 1726224359, // use `make deploy-info tx=` to obtain the timestamp - deployed_spell_block: 20741186, // use `make deploy-info tx=` to obtain the block number + deployed_spell: address(0), // populate with deployed spell if deployed + deployed_spell_created: 0, // use `make deploy-info tx=` to obtain the timestamp + deployed_spell_block: 0, // use `make deploy-info tx=` to obtain the block number previous_spells: prevSpells, // older spells to ensure are executed first office_hours_enabled: false, // true if officehours is expected to be enabled in the spell expiration_threshold: 30 days // Amount of time before spell expires From 53d419a53e819673b467d3e9f6904ea066758b48 Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Tue, 17 Sep 2024 11:16:32 +0200 Subject: [PATCH 02/16] remove unused interfaces --- src/DssSpell.t.sol | 39 --------------------------------------- 1 file changed, 39 deletions(-) diff --git a/src/DssSpell.t.sol b/src/DssSpell.t.sol index bacc1cbb6..35111e365 100644 --- a/src/DssSpell.t.sol +++ b/src/DssSpell.t.sol @@ -44,51 +44,12 @@ interface SpellActionLike { function dao_resolutions() external view returns (string memory); } -interface UsdsPsmWrapperLike { - function buyGem(address usr, uint256 gemAmt) external returns (uint256 usdsInWad); - function dai() external view returns (address); - function gem() external view returns (address); - function ilk() external view returns (bytes32); - function psm() external view returns (address); - function sellGem(address usr, uint256 gemAmt) external returns (uint256 usdsOutWad); - function usds() external view returns (address); - function usdsJoin() external view returns (address); -} - -interface PairLike { - function balanceOf(address usr) external view returns (uint256); - function totalSupply() external view returns (uint256); -} - -interface VestedRewardsDistributionLike { - function distribute() external returns (uint256 amount); - function dssVest() external view returns (address); - function lastDistributedAt() external view returns (uint256); - function stakingRewards() external view returns (address); - function vestId() external view returns (uint256); -} - -interface StakingRewardsLike { - function balanceOf(address account) external view returns (uint256); - function getReward() external; - function rewardsDistribution() external view returns (address); - function rewardsToken() external view returns (address); - function stake(uint256 amount) external; - function stakingToken() external view returns (address); -} - interface SequencerLike { function getMaster() external view returns (bytes32); function hasJob(address job) external view returns (bool); } -interface CronJobLike { - function work(bytes32 network, bytes memory args) external; - function workable(bytes32 network) external returns (bool, bytes memory); -} - - contract DssSpellTest is DssSpellTestBase { string config; RootDomain rootDomain; From e4a3e740c9adeebd52953be13c7162f007c4b4ca Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Thu, 19 Sep 2024 10:40:38 +0200 Subject: [PATCH 03/16] add dss-direct-deposit dependencies --- .../dss-direct-deposit/D3MCoreInstance.sol | 22 + .../dss-direct-deposit/D3MInit.sol | 420 ++++++++++++++++++ .../dss-direct-deposit/D3MInstance.sol | 23 + 3 files changed, 465 insertions(+) create mode 100644 src/dependencies/dss-direct-deposit/D3MCoreInstance.sol create mode 100644 src/dependencies/dss-direct-deposit/D3MInit.sol create mode 100644 src/dependencies/dss-direct-deposit/D3MInstance.sol diff --git a/src/dependencies/dss-direct-deposit/D3MCoreInstance.sol b/src/dependencies/dss-direct-deposit/D3MCoreInstance.sol new file mode 100644 index 000000000..a9a4a9ae2 --- /dev/null +++ b/src/dependencies/dss-direct-deposit/D3MCoreInstance.sol @@ -0,0 +1,22 @@ +// SPDX-FileCopyrightText: © 2022 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity >=0.8.0; + +struct D3MCoreInstance { + address hub; + address mom; +} diff --git a/src/dependencies/dss-direct-deposit/D3MInit.sol b/src/dependencies/dss-direct-deposit/D3MInit.sol new file mode 100644 index 000000000..fe86ceebc --- /dev/null +++ b/src/dependencies/dss-direct-deposit/D3MInit.sol @@ -0,0 +1,420 @@ +// SPDX-FileCopyrightText: © 2022 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity >=0.8.0; + +import "dss-interfaces/dss/DssAutoLineAbstract.sol"; +import "dss-interfaces/dss/IlkRegistryAbstract.sol"; +import "dss-interfaces/utils/WardsAbstract.sol"; +import "dss-interfaces/ERC/GemAbstract.sol"; +import { DssInstance } from "dss-test/MCD.sol"; +import { ScriptTools } from "dss-test/ScriptTools.sol"; + +import { D3MInstance } from "./D3MInstance.sol"; +import { D3MCoreInstance } from "./D3MCoreInstance.sol"; + +interface D3MAavePoolLike { + function hub() external view returns (address); + function dai() external view returns (address); + function ilk() external view returns (bytes32); + function vat() external view returns (address); + function file(bytes32, address) external; + function adai() external view returns (address); + function stableDebt() external view returns (address); + function variableDebt() external view returns (address); +} + +interface D3MAaveUSDSPoolLike { + function hub() external view returns (address); + function dai() external view returns (address); + function ilk() external view returns (bytes32); + function vat() external view returns (address); + function file(bytes32, address) external; + function ausds() external view returns (address); + function usdsJoin() external view returns (address); + function usds() external view returns (address); + function daiJoin() external view returns (address); + function stableDebt() external view returns (address); + function variableDebt() external view returns (address); +} + +interface D3MAaveRateTargetPlanLike { + function rely(address) external; + function file(bytes32, uint256) external; + function adai() external view returns (address); + function stableDebt() external view returns (address); + function variableDebt() external view returns (address); + function tack() external view returns (address); + function adaiRevision() external view returns (uint256); +} + +interface D3MAaveBufferPlanLike { + function file(bytes32, uint256) external; + function adai() external view returns (address); +} + +interface ADaiLike { + function ATOKEN_REVISION() external view returns (uint256); +} + +interface D3MCompoundPoolLike { + function hub() external view returns (address); + function dai() external view returns (address); + function ilk() external view returns (bytes32); + function vat() external view returns (address); + function file(bytes32, address) external; + function cDai() external view returns (address); + function comptroller() external view returns (address); + function comp() external view returns (address); +} + +interface D3MCompoundRateTargetPlanLike { + function rely(address) external; + function file(bytes32, uint256) external; + function tacks(address) external view returns (uint256); + function delegates(address) external view returns (uint256); + function cDai() external view returns (address); +} + +interface CDaiLike { + function interestRateModel() external view returns (address); + function implementation() external view returns (address); +} + +interface D3M4626PoolLike { + function hub() external view returns (address); + function dai() external view returns (address); + function ilk() external view returns (bytes32); + function vat() external view returns (address); + function vault() external view returns (address); +} + +interface D3MOperatorPlanLike { + function file(bytes32, address) external; +} + +interface D3MOracleLike { + function vat() external view returns (address); + function ilk() external view returns (bytes32); + function file(bytes32, address) external; +} + +interface D3MHubLike { + function vat() external view returns (address); + function daiJoin() external view returns (address); + function file(bytes32, address) external; + function file(bytes32, bytes32, address) external; + function file(bytes32, bytes32, uint256) external; +} + +interface D3MMomLike { + function setAuthority(address) external; +} + +interface RedeemableLike { + function redeemable() external view returns (address); +} + +struct D3MCommonConfig { + address hub; + address mom; + bytes32 ilk; + bool existingIlk; + uint256 maxLine; + uint256 gap; + uint256 ttl; + uint256 tau; +} + +struct D3MAavePoolConfig { + address king; + address adai; + address stableDebt; + address variableDebt; +} + +struct D3MAaveUSDSPoolConfig { + address king; + address ausds; + address usdsJoin; + address usds; + address stableDebt; + address variableDebt; +} + +struct D3MAaveRateTargetPlanConfig { + uint256 bar; + address adai; + address stableDebt; + address variableDebt; + address tack; + uint256 adaiRevision; +} + +struct D3MAaveBufferPlanConfig { + uint256 buffer; + address adai; +} + +struct D3MCompoundPoolConfig { + address king; + address cdai; + address comptroller; + address comp; +} + +struct D3MCompoundRateTargetPlanConfig { + uint256 barb; + address cdai; + address tack; + address delegate; +} + +struct D3M4626PoolConfig { + address vault; +} + +struct D3MOperatorPlanConfig { + address operator; +} + +// Init a D3M instance +library D3MInit { + + function initCore( + DssInstance memory dss, + D3MCoreInstance memory d3mCore + ) internal { + D3MHubLike hub = D3MHubLike(d3mCore.hub); + D3MMomLike mom = D3MMomLike(d3mCore.mom); + + // Sanity checks + require(hub.vat() == address(dss.vat), "Hub vat mismatch"); + require(hub.daiJoin() == address(dss.daiJoin), "Hub daiJoin mismatch"); + + hub.file("vow", address(dss.vow)); + hub.file("end", address(dss.end)); + + mom.setAuthority(dss.chainlog.getAddress("MCD_ADM")); + + dss.vat.rely(address(hub)); + + dss.chainlog.setAddress("DIRECT_HUB", address(hub)); + dss.chainlog.setAddress("DIRECT_MOM", address(mom)); + } + + function initCommon( + DssInstance memory dss, + D3MInstance memory d3m, + D3MCommonConfig memory cfg + ) internal { + bytes32 ilk = cfg.ilk; + D3MHubLike hub = D3MHubLike(cfg.hub); + D3MOracleLike oracle = D3MOracleLike(d3m.oracle); + + // Sanity checks + require(oracle.vat() == address(dss.vat), "Oracle vat mismatch"); + require(oracle.ilk() == ilk, "Oracle ilk mismatch"); + + WardsAbstract(d3m.plan).rely(cfg.mom); + + hub.file(ilk, "pool", d3m.pool); + hub.file(ilk, "plan", d3m.plan); + hub.file(ilk, "tau", cfg.tau); + + oracle.file("hub", address(hub)); + + dss.spotter.file(ilk, "pip", address(oracle)); + dss.spotter.file(ilk, "mat", 10 ** 27); // 100% as a RAY + uint256 previousIlkLine; + if (cfg.existingIlk) { + (,,, previousIlkLine,) = dss.vat.ilks(ilk); + } else { + dss.vat.init(ilk); + dss.jug.init(ilk); + } + dss.vat.file(ilk, "line", cfg.gap); + dss.vat.file("Line", dss.vat.Line() + cfg.gap - previousIlkLine); + DssAutoLineAbstract(dss.chainlog.getAddress("MCD_IAM_AUTO_LINE")).setIlk( + ilk, + cfg.maxLine, + cfg.gap, + cfg.ttl + ); + dss.spotter.poke(ilk); + + GemAbstract gem = GemAbstract(RedeemableLike(d3m.pool).redeemable()); + IlkRegistryAbstract(dss.chainlog.getAddress("ILK_REGISTRY")).put( + ilk, + address(hub), + address(gem), + gem.decimals(), + 4, // ilk registry class for D3Ms + address(oracle), + address(0), + gem.name(), + gem.symbol() + ); + + string memory clPrefix = ScriptTools.ilkToChainlogFormat(ilk); + dss.chainlog.setAddress(ScriptTools.stringToBytes32(string(abi.encodePacked(clPrefix, "_POOL"))), d3m.pool); + dss.chainlog.setAddress(ScriptTools.stringToBytes32(string(abi.encodePacked(clPrefix, "_PLAN"))), d3m.plan); + dss.chainlog.setAddress(ScriptTools.stringToBytes32(string(abi.encodePacked(clPrefix, "_ORACLE"))), d3m.oracle); + } + + /** + * @dev This works for V2 and V3 pool adapters. + */ + function initAavePool( + DssInstance memory dss, + D3MInstance memory d3m, + D3MCommonConfig memory cfg, + D3MAavePoolConfig memory aaveCfg + ) internal { + D3MAavePoolLike pool = D3MAavePoolLike(d3m.pool); + + // Sanity checks + require(pool.hub() == cfg.hub, "Pool hub mismatch"); + require(pool.ilk() == cfg.ilk, "Pool ilk mismatch"); + require(pool.vat() == address(dss.vat), "Pool vat mismatch"); + require(pool.dai() == address(dss.dai), "Pool dai mismatch"); + require(pool.adai() == aaveCfg.adai, "Pool adai mismatch"); + require(pool.stableDebt() == aaveCfg.stableDebt, "Pool stableDebt mismatch"); + require(pool.variableDebt() == aaveCfg.variableDebt, "Pool variableDebt mismatch"); + + pool.file("king", aaveCfg.king); + } + + function initAaveUSDSPool( + DssInstance memory dss, + D3MInstance memory d3m, + D3MCommonConfig memory cfg, + D3MAaveUSDSPoolConfig memory aaveCfg + ) internal { + D3MAaveUSDSPoolLike pool = D3MAaveUSDSPoolLike(d3m.pool); + + // Sanity checks + require(pool.hub() == cfg.hub, "Pool hub mismatch"); + require(pool.ilk() == cfg.ilk, "Pool ilk mismatch"); + require(pool.vat() == address(dss.vat), "Pool vat mismatch"); + require(pool.usdsJoin() == aaveCfg.usdsJoin, "Pool usdsJoin mismatch"); + require(pool.usds() == aaveCfg.usds, "Pool usds mismatch"); + require(pool.daiJoin() == address(dss.daiJoin), "Pool daiJoin mismatch"); + require(pool.dai() == address(dss.dai), "Pool dai mismatch"); + require(pool.ausds() == aaveCfg.ausds, "Pool ausds mismatch"); + require(pool.stableDebt() == aaveCfg.stableDebt, "Pool stableDebt mismatch"); + require(pool.variableDebt() == aaveCfg.variableDebt, "Pool variableDebt mismatch"); + + pool.file("king", aaveCfg.king); + } + + function initCompoundPool( + DssInstance memory dss, + D3MInstance memory d3m, + D3MCommonConfig memory cfg, + D3MCompoundPoolConfig memory compoundCfg + ) internal { + D3MCompoundPoolLike pool = D3MCompoundPoolLike(d3m.pool); + + // Sanity checks + require(pool.hub() == cfg.hub, "Pool hub mismatch"); + require(pool.ilk() == cfg.ilk, "Pool ilk mismatch"); + require(pool.vat() == address(dss.vat), "Pool vat mismatch"); + require(pool.dai() == address(dss.dai), "Pool dai mismatch"); + require(pool.comptroller() == compoundCfg.comptroller, "Pool comptroller mismatch"); + require(pool.comp() == compoundCfg.comp, "Pool comp mismatch"); + require(pool.cDai() == compoundCfg.cdai, "Pool cDai mismatch"); + + pool.file("king", compoundCfg.king); + } + + /** + * @dev Initialize a 4626 pool. + */ + function init4626Pool( + DssInstance memory dss, + D3MInstance memory d3m, + D3MCommonConfig memory cfg, + D3M4626PoolConfig memory erc4626Cfg + ) internal view { + D3M4626PoolLike pool = D3M4626PoolLike(d3m.pool); + + // Sanity checks + require(pool.hub() == cfg.hub, "Pool hub mismatch"); + require(pool.ilk() == cfg.ilk, "Pool ilk mismatch"); + require(pool.vat() == address(dss.vat), "Pool vat mismatch"); + require(pool.dai() == address(dss.dai), "Pool dai mismatch"); + require(pool.vault() == erc4626Cfg.vault, "Pool vault mismatch"); + } + + function initAaveRateTargetPlan( + D3MInstance memory d3m, + D3MAaveRateTargetPlanConfig memory aaveCfg + ) internal { + D3MAaveRateTargetPlanLike plan = D3MAaveRateTargetPlanLike(d3m.plan); + ADaiLike adai = ADaiLike(aaveCfg.adai); + + // Sanity checks + require(plan.adai() == address(adai), "Plan adai mismatch"); + require(plan.stableDebt() == aaveCfg.stableDebt, "Plan stableDebt mismatch"); + require(plan.variableDebt() == aaveCfg.variableDebt, "Plan variableDebt mismatch"); + require(plan.tack() == aaveCfg.tack, "Plan tack mismatch"); + require(plan.adaiRevision() == aaveCfg.adaiRevision, "Plan adaiRevision mismatch"); + require(adai.ATOKEN_REVISION() == aaveCfg.adaiRevision, "ADai adaiRevision mismatch"); + + plan.file("bar", aaveCfg.bar); + } + + function initAaveBufferPlan( + D3MInstance memory d3m, + D3MAaveBufferPlanConfig memory aaveCfg + ) internal { + D3MAaveBufferPlanLike plan = D3MAaveBufferPlanLike(d3m.plan); + ADaiLike adai = ADaiLike(aaveCfg.adai); + + // Sanity checks + require(plan.adai() == address(adai), "Plan adai mismatch"); + + plan.file("buffer", aaveCfg.buffer); + } + + function initCompoundRateTargetPlan( + D3MInstance memory d3m, + D3MCompoundRateTargetPlanConfig memory compoundCfg + ) internal { + D3MCompoundRateTargetPlanLike plan = D3MCompoundRateTargetPlanLike(d3m.plan); + CDaiLike cdai = CDaiLike(compoundCfg.cdai); + + // Sanity checks + require(plan.tacks(compoundCfg.tack) == 1, "Plan tack mismatch"); + require(cdai.interestRateModel() == compoundCfg.tack, "CDai tack mismatch"); + require(plan.delegates(compoundCfg.delegate) == 1, "Plan delegate mismatch"); + require(cdai.implementation() == compoundCfg.delegate, "CDai delegate mismatch"); + require(plan.cDai() == address(cdai), "Plan cDai mismatch"); + + plan.file("barb", compoundCfg.barb); + } + + function initOperatorPlan( + D3MInstance memory d3m, + D3MOperatorPlanConfig memory operatorCfg + ) internal { + D3MOperatorPlanLike plan = D3MOperatorPlanLike(d3m.plan); + + plan.file("operator", operatorCfg.operator); + } + +} diff --git a/src/dependencies/dss-direct-deposit/D3MInstance.sol b/src/dependencies/dss-direct-deposit/D3MInstance.sol new file mode 100644 index 000000000..eb3ed5cad --- /dev/null +++ b/src/dependencies/dss-direct-deposit/D3MInstance.sol @@ -0,0 +1,23 @@ +// SPDX-FileCopyrightText: © 2022 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity >=0.8.0; + +struct D3MInstance { + address plan; + address pool; + address oracle; +} From eb77768f520479ef6aa1d6dc1a8e74eafcd04e2f Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Mon, 23 Sep 2024 10:13:43 +0200 Subject: [PATCH 04/16] add SBE Updates --- src/DssSpell.sol | 77 +++++++ src/dependencies/dss-flappers/FlapperInit.sol | 211 ++++++++++++++++++ .../dss-flappers/SplitterInstance.sol | 22 ++ src/test/addresses_mainnet.sol | 4 +- src/test/config.sol | 6 +- 5 files changed, 315 insertions(+), 5 deletions(-) create mode 100644 src/dependencies/dss-flappers/FlapperInit.sol create mode 100644 src/dependencies/dss-flappers/SplitterInstance.sol diff --git a/src/DssSpell.sol b/src/DssSpell.sol index 7b4714b6b..723abb417 100644 --- a/src/DssSpell.sol +++ b/src/DssSpell.sol @@ -19,6 +19,11 @@ pragma solidity 0.8.16; import "dss-exec-lib/DssExec.sol"; import "dss-exec-lib/DssAction.sol"; +import { DssInstance, MCD } from "dss-test/MCD.sol"; + +// Note: source code matches https://github.com/makerdao/dss-flappers/blob/95431f3d4da66babf81c6e1138bd05f5ddc5e516/deploy/FlapperInit.sol +import { FlapperInit, FlapperUniV2Config } from "src/dependencies/dss-flappers/FlapperInit.sol"; + contract DssSpellAction is DssAction { // Provides a descriptive tag for bot consumption // This should be modified weekly to provide a summary of the actions @@ -43,7 +48,79 @@ contract DssSpellAction is DssAction { // // uint256 internal constant X_PCT_RATE = ; + // ---------- Math ---------- + uint256 internal constant WAD = 10 ** 18; + uint256 internal constant RAD = 10 ** 45; + + // ---------- Addesses ---------- + address internal immutable USDS = DssExecLib.getChangelogAddress("USDS"); + address internal immutable MCD_SPLIT = DssExecLib.getChangelogAddress("MCD_SPLIT"); + address internal immutable MCD_VOW = DssExecLib.getChangelogAddress("MCD_VOW"); + address internal constant UNIV2USDSSKY = 0x2621CC0B3F3c079c1Db0E80794AA24976F0b9e3c; + address internal constant SWAP_ONLY_FLAPPER = 0x374D9c3d5134052Bc558F432Afa1df6575f07407; + address internal constant SWAP_ONLY_FLAP_SKY_ORACLE = 0x61A12E5b1d5E9CC1302a32f0df1B5451DE6AE437; + function actions() public override { + // Note: DssInstance is required by multiple init libraries below + DssInstance memory dss = MCD.loadFromChainlog(DssExecLib.LOG); + + // ---------- SBE Updates ---------- + // Forum: https://forum.makerdao.com/t/smart-burn-engine-transaction-analysis-and-parameter-reconfiguration-update-9/25078 + // Poll: https://vote.makerdao.com/polling/QmSxswGN + + // Increase hop by 1386 seconds from 10249 seconds to 11635 seconds + DssExecLib.setValue(MCD_SPLIT, "hop", 11_635); + + // Decrease bump by 40000 USDS from 65000 USDS to 25000 USDS + DssExecLib.setValue(MCD_VOW, "bump", 25_000 * RAD); + + FlapperInit.initFlapperUniV2( + // Note: DssInstance is required by the init library + dss, + + // Update flapper in splitter from FlapperUniV2 (0x0c10Ae443cCB4604435Ba63DA80CCc63311615Bc) to FlapperUniV2SwapOnly (0x374D9c3d5134052Bc558F432Afa1df6575f07407) + SWAP_ONLY_FLAPPER, + + FlapperUniV2Config({ + // Set want parameter to 0.98 * WAD + want: 98 * WAD / 100, + + // Update pip to SWAP_ONLY_FLAP_SKY_ORACLE (0x61A12E5b1d5E9CC1302a32f0df1B5451DE6AE437) + pip: SWAP_ONLY_FLAP_SKY_ORACLE, + + // Set pair parameter to USDS/SKY UniV2 (0x2621CC0B3F3c079c1Db0E80794AA24976F0b9e3c) + pair: UNIV2USDSSKY, + + // Note: USDS address is required by the init library + usds: USDS, + + // Note: Splitter address is required by the init library + splitter: MCD_SPLIT, + + // Note: This is set to 0 to save gas, since chainlog key doesn't need to be changed + prevChainlogKey: bytes32(0), + + // Update chainlog value for MCD_FLAP to FlapperUniV2SwapOnly (0x374D9c3d5134052Bc558F432Afa1df6575f07407) + chainlogKey: "MCD_FLAP" + }) + ); + + FlapperInit.initOracleWrapper( + // Note: DssInstance is required by the init library + dss, + + // TODO: add instruction + SWAP_ONLY_FLAP_SKY_ORACLE, + + // Note: this value is a sanity check to ensure the new oracle correctly operates with SKY + 24_000, + + // TODO: add instruction + "FLAP_SKY_ORACLE" + ); + + // Note: bump chainlog minor version due to the new flapper contract + DssExecLib.setChangelogVersion("1.19.0"); } } diff --git a/src/dependencies/dss-flappers/FlapperInit.sol b/src/dependencies/dss-flappers/FlapperInit.sol new file mode 100644 index 000000000..4d7475efe --- /dev/null +++ b/src/dependencies/dss-flappers/FlapperInit.sol @@ -0,0 +1,211 @@ +// SPDX-FileCopyrightText: © 2023 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity >=0.8.0; + +import { DssInstance } from "dss-test/MCD.sol"; +import { SplitterInstance } from "./SplitterInstance.sol"; + +interface FlapperUniV2Like { + function pip() external view returns (address); + function spotter() external view returns (address); + function usds() external view returns (address); + function gem() external view returns (address); + function receiver() external view returns (address); + function pair() external view returns (address); + function rely(address) external; + function file(bytes32, uint256) external; + function file(bytes32, address) external; +} + +interface SplitterMomLike { + function splitter() external view returns (address); + function setAuthority(address) external; +} + +interface OracleWrapperLike { + function pip() external view returns (address); + function divisor() external view returns (uint256); +} + +interface PipLike { + function kiss(address) external; +} + +interface PairLike { + function token0() external view returns (address); + function token1() external view returns (address); +} + +interface UsdsJoinLike { + function dai() external view returns (address); // TODO: Replace when new join is ready by the new getter +} + +interface SplitterLike { + function live() external view returns (uint256); + function vat() external view returns (address); + function usdsJoin() external view returns (address); + function hop() external view returns (uint256); + function rely(address) external; + function file(bytes32, uint256) external; + function file(bytes32, address) external; +} + +interface FarmLike { + function rewardsToken() external view returns (address); + function setRewardsDistribution(address) external; + function setRewardsDuration(uint256) external; +} + +struct FlapperUniV2Config { + uint256 want; + address pip; + address pair; + address usds; + address splitter; + bytes32 prevChainlogKey; + bytes32 chainlogKey; +} + +struct FarmConfig { + address splitter; + address usdsJoin; + uint256 hop; + bytes32 prevChainlogKey; + bytes32 chainlogKey; +} + +struct SplitterConfig { + uint256 hump; + uint256 bump; + uint256 hop; + uint256 burn; + address usdsJoin; + bytes32 splitterChainlogKey; + bytes32 prevMomChainlogKey; + bytes32 momChainlogKey; +} + +library FlapperInit { + uint256 constant WAD = 10 ** 18; + uint256 constant RAY = 10 ** 27; + + function initFlapperUniV2( + DssInstance memory dss, + address flapper_, + FlapperUniV2Config memory cfg + ) internal { + FlapperUniV2Like flapper = FlapperUniV2Like(flapper_); + + // Sanity checks + require(flapper.spotter() == address(dss.spotter), "Flapper spotter mismatch"); + require(flapper.usds() == cfg.usds, "Flapper usds mismatch"); + require(flapper.pair() == cfg.pair, "Flapper pair mismatch"); + require(flapper.receiver() == dss.chainlog.getAddress("MCD_PAUSE_PROXY"), "Flapper receiver mismatch"); + + PairLike pair = PairLike(flapper.pair()); + (address pairUsds, address pairGem) = pair.token0() == cfg.usds ? (pair.token0(), pair.token1()) + : (pair.token1(), pair.token0()); + require(pairUsds == cfg.usds, "Usds mismatch"); + require(pairGem == flapper.gem(), "Gem mismatch"); + + require(cfg.want >= WAD * 90 / 100, "want too low"); + + flapper.file("want", cfg.want); + flapper.file("pip", cfg.pip); + flapper.rely(cfg.splitter); + + SplitterLike(cfg.splitter).file("flapper", flapper_); + + if (cfg.prevChainlogKey != bytes32(0)) dss.chainlog.removeAddress(cfg.prevChainlogKey); + dss.chainlog.setAddress(cfg.chainlogKey, flapper_); + } + + function initDirectOracle(address flapper) internal { + PipLike(FlapperUniV2Like(flapper).pip()).kiss(flapper); + } + + function initOracleWrapper( + DssInstance memory dss, + address wrapper_, + uint256 divisor, + bytes32 clKey + ) internal { + OracleWrapperLike wrapper = OracleWrapperLike(wrapper_); + require(wrapper.divisor() == divisor, "Wrapper divisor mismatch"); // Sanity check + PipLike(wrapper.pip()).kiss(wrapper_); + dss.chainlog.setAddress(clKey, wrapper_); + } + + function setFarm( + DssInstance memory dss, + address farm_, + FarmConfig memory cfg + ) internal { + FarmLike farm = FarmLike(farm_); + SplitterLike splitter = SplitterLike(cfg.splitter); + + require(farm.rewardsToken() == UsdsJoinLike(cfg.usdsJoin).dai(), "Farm rewards not usds"); + // Staking token is checked in the Lockstake script + + // The following two checks enforce the initSplitter function has to be called first + require(cfg.hop >= 5 minutes, "hop too low"); + require(cfg.hop == splitter.hop(), "hop mismatch"); + + splitter.file("farm", farm_); + + farm.setRewardsDistribution(cfg.splitter); + farm.setRewardsDuration(cfg.hop); + + if (cfg.prevChainlogKey != bytes32(0)) dss.chainlog.removeAddress(cfg.prevChainlogKey); + dss.chainlog.setAddress(cfg.chainlogKey, farm_); + } + + function initSplitter( + DssInstance memory dss, + SplitterInstance memory splitterInstance, + SplitterConfig memory cfg + ) internal { + SplitterLike splitter = SplitterLike(splitterInstance.splitter); + SplitterMomLike mom = SplitterMomLike(splitterInstance.mom); + + // Sanity checks + require(splitter.live() == 1, "Splitter not live"); + require(splitter.vat() == address(dss.vat), "Splitter vat mismatch"); + require(splitter.usdsJoin() == cfg.usdsJoin, "Splitter usdsJoin mismatch"); + require(mom.splitter() == splitterInstance.splitter, "Mom splitter mismatch"); + + require(cfg.hump > 0, "hump too low"); + require(cfg.bump % RAY == 0, "bump not multiple of RAY"); + require(cfg.hop >= 5 minutes, "hop too low"); + require(cfg.burn <= WAD, "burn too high"); + + splitter.file("hop", cfg.hop); + splitter.file("burn", cfg.burn); + splitter.rely(address(mom)); + splitter.rely(address(dss.vow)); + + dss.vow.file("flapper", splitterInstance.splitter); + dss.vow.file("hump", cfg.hump); + dss.vow.file("bump", cfg.bump); + + mom.setAuthority(dss.chainlog.getAddress("MCD_ADM")); + + dss.chainlog.setAddress(cfg.splitterChainlogKey, splitterInstance.splitter); + if (cfg.prevMomChainlogKey != bytes32(0)) dss.chainlog.removeAddress(cfg.prevMomChainlogKey); + dss.chainlog.setAddress(cfg.momChainlogKey, address(mom)); + } +} diff --git a/src/dependencies/dss-flappers/SplitterInstance.sol b/src/dependencies/dss-flappers/SplitterInstance.sol new file mode 100644 index 000000000..bb61fb721 --- /dev/null +++ b/src/dependencies/dss-flappers/SplitterInstance.sol @@ -0,0 +1,22 @@ +// SPDX-FileCopyrightText: © 2023 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity >=0.8.0; + +struct SplitterInstance { + address splitter; + address mom; +} diff --git a/src/test/addresses_mainnet.sol b/src/test/addresses_mainnet.sol index a3281b98e..3ce947bb9 100644 --- a/src/test/addresses_mainnet.sol +++ b/src/test/addresses_mainnet.sol @@ -501,8 +501,8 @@ contract Addresses { addr["UNIV2USDSSKY"] = 0x2621CC0B3F3c079c1Db0E80794AA24976F0b9e3c; addr["MCD_SPLIT"] = 0xBF7111F13386d23cb2Fba5A538107A73f6872bCF; addr["SPLITTER_MOM"] = 0xF51a075d468dE7dE3599C1Dc47F5C42d02C9230e; - addr["MCD_FLAP"] = 0xc5A9CaeBA70D6974cBDFb28120C3611Dd9910355; - addr["FLAP_SKY_ORACLE"] = 0x38e8c1D443f546Dc014D7756ec63116161CB7B25; + addr["MCD_FLAP"] = 0x374D9c3d5134052Bc558F432Afa1df6575f07407; + addr["FLAP_SKY_ORACLE"] = 0x61A12E5b1d5E9CC1302a32f0df1B5451DE6AE437; addr["MCD_VEST_SKY"] = 0xB313Eab3FdE99B2bB4bA9750C2DDFBe2729d1cE9; addr["REWARDS_USDS_SKY"] = 0x0650CAF159C5A49f711e8169D4336ECB9b950275; addr["REWARDS_DIST_USDS_SKY"] = 0x2F0C88e935Db5A60DDA73b0B4EAEef55883896d9; diff --git a/src/test/config.sol b/src/test/config.sol index 6984a5865..226a38d24 100644 --- a/src/test/config.sol +++ b/src/test/config.sol @@ -121,10 +121,10 @@ contract Config { afterSpell.vow_wait = 156 hours; // In seconds afterSpell.vow_dump = 250; // In whole Dai units afterSpell.vow_sump = 50 * THOUSAND; // In whole Dai units - afterSpell.vow_bump = 65 * THOUSAND; // In whole Dai units + afterSpell.vow_bump = 25 * THOUSAND; // In whole Dai units afterSpell.vow_hump_min = 55 * MILLION; // In whole Dai units afterSpell.vow_hump_max = 55 * MILLION; // In whole Dai units - afterSpell.split_hop = 10_249 seconds; // In seconds + afterSpell.split_hop = 11_635 seconds; // In seconds afterSpell.split_burn = 100_00; // In basis points afterSpell.flap_want = 9800; // In basis points afterSpell.dog_Hole = 150 * MILLION; // In whole Dai units @@ -141,7 +141,7 @@ contract Config { afterSpell.vest_sky_cap = 800 * MILLION * WAD / 365 days; // In WAD SKY per second afterSpell.sky_mkr_rate = 24_000; // In whole SKY/MKR units afterSpell.ilk_count = 66; // Num expected in system - afterSpell.chainlog_version = "1.18.0"; // String expected in system + afterSpell.chainlog_version = "1.19.0"; // String expected in system // // Values for all collateral From 5da4e5cf964ef4f70b81b7393462fa4d592e7a00 Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Mon, 23 Sep 2024 18:59:47 +0200 Subject: [PATCH 05/16] remove dss-direct-deposit dependencies --- .../dss-direct-deposit/D3MCoreInstance.sol | 22 - .../dss-direct-deposit/D3MInit.sol | 420 ------------------ .../dss-direct-deposit/D3MInstance.sol | 23 - 3 files changed, 465 deletions(-) delete mode 100644 src/dependencies/dss-direct-deposit/D3MCoreInstance.sol delete mode 100644 src/dependencies/dss-direct-deposit/D3MInit.sol delete mode 100644 src/dependencies/dss-direct-deposit/D3MInstance.sol diff --git a/src/dependencies/dss-direct-deposit/D3MCoreInstance.sol b/src/dependencies/dss-direct-deposit/D3MCoreInstance.sol deleted file mode 100644 index a9a4a9ae2..000000000 --- a/src/dependencies/dss-direct-deposit/D3MCoreInstance.sol +++ /dev/null @@ -1,22 +0,0 @@ -// SPDX-FileCopyrightText: © 2022 Dai Foundation -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity >=0.8.0; - -struct D3MCoreInstance { - address hub; - address mom; -} diff --git a/src/dependencies/dss-direct-deposit/D3MInit.sol b/src/dependencies/dss-direct-deposit/D3MInit.sol deleted file mode 100644 index fe86ceebc..000000000 --- a/src/dependencies/dss-direct-deposit/D3MInit.sol +++ /dev/null @@ -1,420 +0,0 @@ -// SPDX-FileCopyrightText: © 2022 Dai Foundation -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity >=0.8.0; - -import "dss-interfaces/dss/DssAutoLineAbstract.sol"; -import "dss-interfaces/dss/IlkRegistryAbstract.sol"; -import "dss-interfaces/utils/WardsAbstract.sol"; -import "dss-interfaces/ERC/GemAbstract.sol"; -import { DssInstance } from "dss-test/MCD.sol"; -import { ScriptTools } from "dss-test/ScriptTools.sol"; - -import { D3MInstance } from "./D3MInstance.sol"; -import { D3MCoreInstance } from "./D3MCoreInstance.sol"; - -interface D3MAavePoolLike { - function hub() external view returns (address); - function dai() external view returns (address); - function ilk() external view returns (bytes32); - function vat() external view returns (address); - function file(bytes32, address) external; - function adai() external view returns (address); - function stableDebt() external view returns (address); - function variableDebt() external view returns (address); -} - -interface D3MAaveUSDSPoolLike { - function hub() external view returns (address); - function dai() external view returns (address); - function ilk() external view returns (bytes32); - function vat() external view returns (address); - function file(bytes32, address) external; - function ausds() external view returns (address); - function usdsJoin() external view returns (address); - function usds() external view returns (address); - function daiJoin() external view returns (address); - function stableDebt() external view returns (address); - function variableDebt() external view returns (address); -} - -interface D3MAaveRateTargetPlanLike { - function rely(address) external; - function file(bytes32, uint256) external; - function adai() external view returns (address); - function stableDebt() external view returns (address); - function variableDebt() external view returns (address); - function tack() external view returns (address); - function adaiRevision() external view returns (uint256); -} - -interface D3MAaveBufferPlanLike { - function file(bytes32, uint256) external; - function adai() external view returns (address); -} - -interface ADaiLike { - function ATOKEN_REVISION() external view returns (uint256); -} - -interface D3MCompoundPoolLike { - function hub() external view returns (address); - function dai() external view returns (address); - function ilk() external view returns (bytes32); - function vat() external view returns (address); - function file(bytes32, address) external; - function cDai() external view returns (address); - function comptroller() external view returns (address); - function comp() external view returns (address); -} - -interface D3MCompoundRateTargetPlanLike { - function rely(address) external; - function file(bytes32, uint256) external; - function tacks(address) external view returns (uint256); - function delegates(address) external view returns (uint256); - function cDai() external view returns (address); -} - -interface CDaiLike { - function interestRateModel() external view returns (address); - function implementation() external view returns (address); -} - -interface D3M4626PoolLike { - function hub() external view returns (address); - function dai() external view returns (address); - function ilk() external view returns (bytes32); - function vat() external view returns (address); - function vault() external view returns (address); -} - -interface D3MOperatorPlanLike { - function file(bytes32, address) external; -} - -interface D3MOracleLike { - function vat() external view returns (address); - function ilk() external view returns (bytes32); - function file(bytes32, address) external; -} - -interface D3MHubLike { - function vat() external view returns (address); - function daiJoin() external view returns (address); - function file(bytes32, address) external; - function file(bytes32, bytes32, address) external; - function file(bytes32, bytes32, uint256) external; -} - -interface D3MMomLike { - function setAuthority(address) external; -} - -interface RedeemableLike { - function redeemable() external view returns (address); -} - -struct D3MCommonConfig { - address hub; - address mom; - bytes32 ilk; - bool existingIlk; - uint256 maxLine; - uint256 gap; - uint256 ttl; - uint256 tau; -} - -struct D3MAavePoolConfig { - address king; - address adai; - address stableDebt; - address variableDebt; -} - -struct D3MAaveUSDSPoolConfig { - address king; - address ausds; - address usdsJoin; - address usds; - address stableDebt; - address variableDebt; -} - -struct D3MAaveRateTargetPlanConfig { - uint256 bar; - address adai; - address stableDebt; - address variableDebt; - address tack; - uint256 adaiRevision; -} - -struct D3MAaveBufferPlanConfig { - uint256 buffer; - address adai; -} - -struct D3MCompoundPoolConfig { - address king; - address cdai; - address comptroller; - address comp; -} - -struct D3MCompoundRateTargetPlanConfig { - uint256 barb; - address cdai; - address tack; - address delegate; -} - -struct D3M4626PoolConfig { - address vault; -} - -struct D3MOperatorPlanConfig { - address operator; -} - -// Init a D3M instance -library D3MInit { - - function initCore( - DssInstance memory dss, - D3MCoreInstance memory d3mCore - ) internal { - D3MHubLike hub = D3MHubLike(d3mCore.hub); - D3MMomLike mom = D3MMomLike(d3mCore.mom); - - // Sanity checks - require(hub.vat() == address(dss.vat), "Hub vat mismatch"); - require(hub.daiJoin() == address(dss.daiJoin), "Hub daiJoin mismatch"); - - hub.file("vow", address(dss.vow)); - hub.file("end", address(dss.end)); - - mom.setAuthority(dss.chainlog.getAddress("MCD_ADM")); - - dss.vat.rely(address(hub)); - - dss.chainlog.setAddress("DIRECT_HUB", address(hub)); - dss.chainlog.setAddress("DIRECT_MOM", address(mom)); - } - - function initCommon( - DssInstance memory dss, - D3MInstance memory d3m, - D3MCommonConfig memory cfg - ) internal { - bytes32 ilk = cfg.ilk; - D3MHubLike hub = D3MHubLike(cfg.hub); - D3MOracleLike oracle = D3MOracleLike(d3m.oracle); - - // Sanity checks - require(oracle.vat() == address(dss.vat), "Oracle vat mismatch"); - require(oracle.ilk() == ilk, "Oracle ilk mismatch"); - - WardsAbstract(d3m.plan).rely(cfg.mom); - - hub.file(ilk, "pool", d3m.pool); - hub.file(ilk, "plan", d3m.plan); - hub.file(ilk, "tau", cfg.tau); - - oracle.file("hub", address(hub)); - - dss.spotter.file(ilk, "pip", address(oracle)); - dss.spotter.file(ilk, "mat", 10 ** 27); // 100% as a RAY - uint256 previousIlkLine; - if (cfg.existingIlk) { - (,,, previousIlkLine,) = dss.vat.ilks(ilk); - } else { - dss.vat.init(ilk); - dss.jug.init(ilk); - } - dss.vat.file(ilk, "line", cfg.gap); - dss.vat.file("Line", dss.vat.Line() + cfg.gap - previousIlkLine); - DssAutoLineAbstract(dss.chainlog.getAddress("MCD_IAM_AUTO_LINE")).setIlk( - ilk, - cfg.maxLine, - cfg.gap, - cfg.ttl - ); - dss.spotter.poke(ilk); - - GemAbstract gem = GemAbstract(RedeemableLike(d3m.pool).redeemable()); - IlkRegistryAbstract(dss.chainlog.getAddress("ILK_REGISTRY")).put( - ilk, - address(hub), - address(gem), - gem.decimals(), - 4, // ilk registry class for D3Ms - address(oracle), - address(0), - gem.name(), - gem.symbol() - ); - - string memory clPrefix = ScriptTools.ilkToChainlogFormat(ilk); - dss.chainlog.setAddress(ScriptTools.stringToBytes32(string(abi.encodePacked(clPrefix, "_POOL"))), d3m.pool); - dss.chainlog.setAddress(ScriptTools.stringToBytes32(string(abi.encodePacked(clPrefix, "_PLAN"))), d3m.plan); - dss.chainlog.setAddress(ScriptTools.stringToBytes32(string(abi.encodePacked(clPrefix, "_ORACLE"))), d3m.oracle); - } - - /** - * @dev This works for V2 and V3 pool adapters. - */ - function initAavePool( - DssInstance memory dss, - D3MInstance memory d3m, - D3MCommonConfig memory cfg, - D3MAavePoolConfig memory aaveCfg - ) internal { - D3MAavePoolLike pool = D3MAavePoolLike(d3m.pool); - - // Sanity checks - require(pool.hub() == cfg.hub, "Pool hub mismatch"); - require(pool.ilk() == cfg.ilk, "Pool ilk mismatch"); - require(pool.vat() == address(dss.vat), "Pool vat mismatch"); - require(pool.dai() == address(dss.dai), "Pool dai mismatch"); - require(pool.adai() == aaveCfg.adai, "Pool adai mismatch"); - require(pool.stableDebt() == aaveCfg.stableDebt, "Pool stableDebt mismatch"); - require(pool.variableDebt() == aaveCfg.variableDebt, "Pool variableDebt mismatch"); - - pool.file("king", aaveCfg.king); - } - - function initAaveUSDSPool( - DssInstance memory dss, - D3MInstance memory d3m, - D3MCommonConfig memory cfg, - D3MAaveUSDSPoolConfig memory aaveCfg - ) internal { - D3MAaveUSDSPoolLike pool = D3MAaveUSDSPoolLike(d3m.pool); - - // Sanity checks - require(pool.hub() == cfg.hub, "Pool hub mismatch"); - require(pool.ilk() == cfg.ilk, "Pool ilk mismatch"); - require(pool.vat() == address(dss.vat), "Pool vat mismatch"); - require(pool.usdsJoin() == aaveCfg.usdsJoin, "Pool usdsJoin mismatch"); - require(pool.usds() == aaveCfg.usds, "Pool usds mismatch"); - require(pool.daiJoin() == address(dss.daiJoin), "Pool daiJoin mismatch"); - require(pool.dai() == address(dss.dai), "Pool dai mismatch"); - require(pool.ausds() == aaveCfg.ausds, "Pool ausds mismatch"); - require(pool.stableDebt() == aaveCfg.stableDebt, "Pool stableDebt mismatch"); - require(pool.variableDebt() == aaveCfg.variableDebt, "Pool variableDebt mismatch"); - - pool.file("king", aaveCfg.king); - } - - function initCompoundPool( - DssInstance memory dss, - D3MInstance memory d3m, - D3MCommonConfig memory cfg, - D3MCompoundPoolConfig memory compoundCfg - ) internal { - D3MCompoundPoolLike pool = D3MCompoundPoolLike(d3m.pool); - - // Sanity checks - require(pool.hub() == cfg.hub, "Pool hub mismatch"); - require(pool.ilk() == cfg.ilk, "Pool ilk mismatch"); - require(pool.vat() == address(dss.vat), "Pool vat mismatch"); - require(pool.dai() == address(dss.dai), "Pool dai mismatch"); - require(pool.comptroller() == compoundCfg.comptroller, "Pool comptroller mismatch"); - require(pool.comp() == compoundCfg.comp, "Pool comp mismatch"); - require(pool.cDai() == compoundCfg.cdai, "Pool cDai mismatch"); - - pool.file("king", compoundCfg.king); - } - - /** - * @dev Initialize a 4626 pool. - */ - function init4626Pool( - DssInstance memory dss, - D3MInstance memory d3m, - D3MCommonConfig memory cfg, - D3M4626PoolConfig memory erc4626Cfg - ) internal view { - D3M4626PoolLike pool = D3M4626PoolLike(d3m.pool); - - // Sanity checks - require(pool.hub() == cfg.hub, "Pool hub mismatch"); - require(pool.ilk() == cfg.ilk, "Pool ilk mismatch"); - require(pool.vat() == address(dss.vat), "Pool vat mismatch"); - require(pool.dai() == address(dss.dai), "Pool dai mismatch"); - require(pool.vault() == erc4626Cfg.vault, "Pool vault mismatch"); - } - - function initAaveRateTargetPlan( - D3MInstance memory d3m, - D3MAaveRateTargetPlanConfig memory aaveCfg - ) internal { - D3MAaveRateTargetPlanLike plan = D3MAaveRateTargetPlanLike(d3m.plan); - ADaiLike adai = ADaiLike(aaveCfg.adai); - - // Sanity checks - require(plan.adai() == address(adai), "Plan adai mismatch"); - require(plan.stableDebt() == aaveCfg.stableDebt, "Plan stableDebt mismatch"); - require(plan.variableDebt() == aaveCfg.variableDebt, "Plan variableDebt mismatch"); - require(plan.tack() == aaveCfg.tack, "Plan tack mismatch"); - require(plan.adaiRevision() == aaveCfg.adaiRevision, "Plan adaiRevision mismatch"); - require(adai.ATOKEN_REVISION() == aaveCfg.adaiRevision, "ADai adaiRevision mismatch"); - - plan.file("bar", aaveCfg.bar); - } - - function initAaveBufferPlan( - D3MInstance memory d3m, - D3MAaveBufferPlanConfig memory aaveCfg - ) internal { - D3MAaveBufferPlanLike plan = D3MAaveBufferPlanLike(d3m.plan); - ADaiLike adai = ADaiLike(aaveCfg.adai); - - // Sanity checks - require(plan.adai() == address(adai), "Plan adai mismatch"); - - plan.file("buffer", aaveCfg.buffer); - } - - function initCompoundRateTargetPlan( - D3MInstance memory d3m, - D3MCompoundRateTargetPlanConfig memory compoundCfg - ) internal { - D3MCompoundRateTargetPlanLike plan = D3MCompoundRateTargetPlanLike(d3m.plan); - CDaiLike cdai = CDaiLike(compoundCfg.cdai); - - // Sanity checks - require(plan.tacks(compoundCfg.tack) == 1, "Plan tack mismatch"); - require(cdai.interestRateModel() == compoundCfg.tack, "CDai tack mismatch"); - require(plan.delegates(compoundCfg.delegate) == 1, "Plan delegate mismatch"); - require(cdai.implementation() == compoundCfg.delegate, "CDai delegate mismatch"); - require(plan.cDai() == address(cdai), "Plan cDai mismatch"); - - plan.file("barb", compoundCfg.barb); - } - - function initOperatorPlan( - D3MInstance memory d3m, - D3MOperatorPlanConfig memory operatorCfg - ) internal { - D3MOperatorPlanLike plan = D3MOperatorPlanLike(d3m.plan); - - plan.file("operator", operatorCfg.operator); - } - -} diff --git a/src/dependencies/dss-direct-deposit/D3MInstance.sol b/src/dependencies/dss-direct-deposit/D3MInstance.sol deleted file mode 100644 index eb3ed5cad..000000000 --- a/src/dependencies/dss-direct-deposit/D3MInstance.sol +++ /dev/null @@ -1,23 +0,0 @@ -// SPDX-FileCopyrightText: © 2022 Dai Foundation -// SPDX-License-Identifier: AGPL-3.0-or-later -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - -pragma solidity >=0.8.0; - -struct D3MInstance { - address plan; - address pool; - address oracle; -} From 4c75f88b73a212a5515a7ef5bf986e7b2afdd687 Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Mon, 23 Sep 2024 19:00:17 +0200 Subject: [PATCH 06/16] add spell content --- src/DssSpell.sol | 170 +++++++++++++++++++++++++++++++++------- src/DssSpell.t.base.sol | 6 +- src/DssSpell.t.sol | 4 +- src/test/config.sol | 6 +- 4 files changed, 152 insertions(+), 34 deletions(-) diff --git a/src/DssSpell.sol b/src/DssSpell.sol index 723abb417..c466003c8 100644 --- a/src/DssSpell.sol +++ b/src/DssSpell.sol @@ -18,22 +18,34 @@ pragma solidity 0.8.16; import "dss-exec-lib/DssExec.sol"; import "dss-exec-lib/DssAction.sol"; - +import { GemAbstract } from "dss-interfaces/ERC/GemAbstract.sol"; import { DssInstance, MCD } from "dss-test/MCD.sol"; // Note: source code matches https://github.com/makerdao/dss-flappers/blob/95431f3d4da66babf81c6e1138bd05f5ddc5e516/deploy/FlapperInit.sol import { FlapperInit, FlapperUniV2Config } from "src/dependencies/dss-flappers/FlapperInit.sol"; +interface MkrSkyLike { + function mkrToSky(address usr, uint256 mkrAmt) external; +} + +interface DaiUsdsLike { + function daiToUsds(address usr, uint256 wad) external; +} + +interface ProxyLike { + function exec(address target, bytes calldata args) external payable returns (bytes memory out); +} + contract DssSpellAction is DssAction { // Provides a descriptive tag for bot consumption // This should be modified weekly to provide a summary of the actions // Hash: cast keccak -- "$(wget 'TODO' -q -O - 2>/dev/null)" string public constant override description = - "2024-09-26 MakerDAO Executive Spell | Hash: TODO"; + "2024-09-27 MakerDAO Executive Spell | Hash: TODO"; // Set office hours according to the summary function officeHours() public pure override returns (bool) { - return false; + return true; } // ---------- Rates ---------- @@ -49,10 +61,16 @@ contract DssSpellAction is DssAction { // uint256 internal constant X_PCT_RATE = ; // ---------- Math ---------- - uint256 internal constant WAD = 10 ** 18; - uint256 internal constant RAD = 10 ** 45; - - // ---------- Addesses ---------- + uint256 internal constant WAD = 10 ** 18; + uint256 internal constant RAD = 10 ** 45; + + // ---------- Contracts ---------- + GemAbstract internal immutable MKR = GemAbstract(DssExecLib.mkr()); + GemAbstract internal immutable DAI = GemAbstract(DssExecLib.dai()); + GemAbstract internal immutable SKY = GemAbstract(DssExecLib.getChangelogAddress("SKY")); + address internal immutable MCD_PAUSE_PROXY = DssExecLib.pauseProxy(); + address internal immutable MKR_SKY = DssExecLib.getChangelogAddress("MKR_SKY"); + address internal immutable DAI_USDS = DssExecLib.getChangelogAddress("DAI_USDS"); address internal immutable USDS = DssExecLib.getChangelogAddress("USDS"); address internal immutable MCD_SPLIT = DssExecLib.getChangelogAddress("MCD_SPLIT"); address internal immutable MCD_VOW = DssExecLib.getChangelogAddress("MCD_VOW"); @@ -60,67 +78,165 @@ contract DssSpellAction is DssAction { address internal constant SWAP_ONLY_FLAPPER = 0x374D9c3d5134052Bc558F432Afa1df6575f07407; address internal constant SWAP_ONLY_FLAP_SKY_ORACLE = 0x61A12E5b1d5E9CC1302a32f0df1B5451DE6AE437; - function actions() public override { - // Note: DssInstance is required by multiple init libraries below - DssInstance memory dss = MCD.loadFromChainlog(DssExecLib.LOG); + // ---------- Wallets ---------- + address internal constant BLUE = 0xb6C09680D822F162449cdFB8248a7D3FC26Ec9Bf; + address internal constant CLOAKY = 0x869b6d5d8FA7f4FFdaCA4D23FFE0735c5eD1F818; + address internal constant CLOAKY_KOHLA_2 = 0x73dFC091Ad77c03F2809204fCF03C0b9dccf8c7a; + address internal constant CLOAKY_ENNOIA = 0xA7364a1738D0bB7D1911318Ca3FB3779A8A58D7b; + address internal constant JULIACHANG = 0x252abAEe2F4f4b8D39E5F12b163eDFb7fac7AED7; + address internal constant BYTERON = 0xc2982e72D060cab2387Dba96b846acb8c96EfF66; + address internal constant ROCKY = 0xC31637BDA32a0811E39456A59022D2C386cb2C85; + address internal constant BONAPUBLICA = 0x167c1a762B08D7e78dbF8f24e5C3f1Ab415021D3; + address internal constant SOLANA_BOOTSTRAPPING = 0xD8507ef0A59f37d15B5D7b630FA6EEa40CE4AFdD; + + // ---------- Spark Proxy Spell ---------- + // Spark Proxy: https://github.com/marsfoundation/sparklend-deployments/blob/bba4c57d54deb6a14490b897c12a949aa035a99b/script/output/1/primary-sce-latest.json#L2 + address internal constant SPARK_PROXY = 0x3300f198988e4C9C63F75dF86De36421f06af8c4; + address internal constant SPARK_SPELL = 0xc80621140bEe6A105C180Ae7cb0a084c2409C738; + function actions() public override { // ---------- SBE Updates ---------- // Forum: https://forum.makerdao.com/t/smart-burn-engine-transaction-analysis-and-parameter-reconfiguration-update-9/25078 // Poll: https://vote.makerdao.com/polling/QmSxswGN - // Increase hop by 1386 seconds from 10249 seconds to 11635 seconds - DssExecLib.setValue(MCD_SPLIT, "hop", 11_635); - - // Decrease bump by 40000 USDS from 65000 USDS to 25000 USDS - DssExecLib.setValue(MCD_VOW, "bump", 25_000 * RAD); + // Note: DssInstance is required by multiple init calls below + DssInstance memory dss = MCD.loadFromChainlog(DssExecLib.LOG); + // Init new Flapper by calling FlapperInit.initFlapperUniV2 with the following parameters: FlapperInit.initFlapperUniV2( + // Note: DssInstance is required by the init library dss, - // Update flapper in splitter from FlapperUniV2 (0x0c10Ae443cCB4604435Ba63DA80CCc63311615Bc) to FlapperUniV2SwapOnly (0x374D9c3d5134052Bc558F432Afa1df6575f07407) + // Init new Flapper with flapper_: FlapperUniV2SwapOnly (0x374D9c3d5134052Bc558F432Afa1df6575f07407) SWAP_ONLY_FLAPPER, FlapperUniV2Config({ - // Set want parameter to 0.98 * WAD + + // Init new Flapper with want: 0.98 * WAD want: 98 * WAD / 100, - // Update pip to SWAP_ONLY_FLAP_SKY_ORACLE (0x61A12E5b1d5E9CC1302a32f0df1B5451DE6AE437) + // Init new Flapper with pip: SWAP_ONLY_FLAP_SKY_ORACLE (0x61A12E5b1d5E9CC1302a32f0df1B5451DE6AE437) pip: SWAP_ONLY_FLAP_SKY_ORACLE, - // Set pair parameter to USDS/SKY UniV2 (0x2621CC0B3F3c079c1Db0E80794AA24976F0b9e3c) + // Init new Flapper with pair: PAIR_USDS_SKY (0x2621CC0B3F3c079c1Db0E80794AA24976F0b9e3c) pair: UNIV2USDSSKY, - // Note: USDS address is required by the init library + // Init new Flapper with usds: dss.chainlog.getAddress("USDS") usds: USDS, - // Note: Splitter address is required by the init library + // Init new Flapper with splitter: dss.chainlog.getAddress("MCD_SPLIT") splitter: MCD_SPLIT, - // Note: This is set to 0 to save gas, since chainlog key doesn't need to be changed + // Init new Flapper with prevChainlogKey: bytes32(0) prevChainlogKey: bytes32(0), - // Update chainlog value for MCD_FLAP to FlapperUniV2SwapOnly (0x374D9c3d5134052Bc558F432Afa1df6575f07407) + // Init new Flapper with chainlogKey: "MCD_FLAP" chainlogKey: "MCD_FLAP" }) ); + // Init new OracleWrapper by calling FlapperInit.initOracleWrapper with the following parameters: FlapperInit.initOracleWrapper( // Note: DssInstance is required by the init library dss, - // TODO: add instruction + // Init new OracleWrapper with wrapper_: SWAP_ONLY_FLAP_SKY_ORACLE (0x61A12E5b1d5E9CC1302a32f0df1B5451DE6AE437) SWAP_ONLY_FLAP_SKY_ORACLE, - // Note: this value is a sanity check to ensure the new oracle correctly operates with SKY + // Init new OracleWrapper with divisor: 24,000 24_000, - // TODO: add instruction + // Init new OracleWrapper with clKey: "FLAP_SKY_ORACLE" "FLAP_SKY_ORACLE" ); - // Note: bump chainlog minor version due to the new flapper contract + // Increase vow.hop by 1386 seconds from 10249 seconds to 11635 seconds + DssExecLib.setValue(MCD_SPLIT, "hop", 11_635); + + // Decrease vow.bump by 40000 USDS from 65000 USDS to 25000 USDS + DssExecLib.setValue(MCD_VOW, "bump", 25_000 * RAD); + + // Note: bump minor chainlog version due to the new flapper contract DssExecLib.setChangelogVersion("1.19.0"); + + // ---------- Sky Ecosystem Liquidity Bootstrapping ---------- + // Forum: https://forum.makerdao.com/t/atlas-edit-weekly-cycle-proposal-week-of-2024-09-23/25179 + + // Transfer 10,000,000 DAI to the Pause Proxy from the Surplus Buffer + DssExecLib.sendPaymentFromSurplusBuffer(MCD_PAUSE_PROXY, 10_000_000); + + // Note: we have to approve DAI_USDS contract to convert DAI into USDS + DAI.approve(DAI_USDS, 10_000_000 * WAD); + + // Convert 10,000,000 DAI to USDS using DAI_USDS + // Note: this is done by the next line of code + + // Transfer 10,000,000 USDS from PauseProxy to 0xD8507ef0A59f37d15B5D7b630FA6EEa40CE4AFdD + DaiUsdsLike(DAI_USDS).daiToUsds(SOLANA_BOOTSTRAPPING, 10_000_000 * WAD); + + // Note: we have to approve MKR_SKY contract to convert MKR into SKY + MKR.approve(MKR_SKY, 13_334 * WAD); + + // Convert 13,334 MKR held in Pause Proxy to SKY (use MKR_SKY contract) + MkrSkyLike(MKR_SKY).mkrToSky(MCD_PAUSE_PROXY, 13_334 * WAD); + + // Transfer 320,000,000 SKY to 0xD8507ef0A59f37d15B5D7b630FA6EEa40CE4AFdD + SKY.transfer(SOLANA_BOOTSTRAPPING, 320_000_000 * WAD); + + // ---------- Aligned Delegate DAI Compensation ---------- + // Forum: https://forum.makerdao.com/t/august-2024-aligned-delegate-compensation/25165 + // Mip: https://mips.makerdao.com/mips/details/MIP101#2-6-3-aligned-delegate-budget-and-participation-requirements + + // BLUE - 54167 DAI - 0xb6c09680d822f162449cdfb8248a7d3fc26ec9bf + DssExecLib.sendPaymentFromSurplusBuffer(BLUE, 54_167); + + // Cloaky - 20417 DAI - 0x869b6d5d8FA7f4FFdaCA4D23FFE0735c5eD1F818 + DssExecLib.sendPaymentFromSurplusBuffer(CLOAKY, 20_417); + + // Kohla (Cloaky) - 10000 DAI - 0x73dFC091Ad77c03F2809204fCF03C0b9dccf8c7a + DssExecLib.sendPaymentFromSurplusBuffer(CLOAKY_KOHLA_2, 10_000); + + // Ennoia (Cloaky) - 10000 DAI - 0xA7364a1738D0bB7D1911318Ca3FB3779A8A58D7b + DssExecLib.sendPaymentFromSurplusBuffer(CLOAKY_ENNOIA, 10_000); + + // JuliaChang - 8333 DAI - 0x252abAEe2F4f4b8D39E5F12b163eDFb7fac7AED7 + DssExecLib.sendPaymentFromSurplusBuffer(JULIACHANG, 8_333); + + // Byteron - 8333 DAI - 0xc2982e72D060cab2387Dba96b846acb8c96EfF66 + DssExecLib.sendPaymentFromSurplusBuffer(BYTERON, 8_333); + + // Rocky - 8065 DAI - 0xC31637BDA32a0811E39456A59022D2C386cb2C85 + DssExecLib.sendPaymentFromSurplusBuffer(ROCKY, 8_065); + + // BONAPUBLICA - 5430 DAI - 0x167c1a762B08D7e78dbF8f24e5C3f1Ab415021D3 + DssExecLib.sendPaymentFromSurplusBuffer(BONAPUBLICA, 5_430); + + // ---------- Aligned Delegate MKR Compensation ---------- + // Forum: https://forum.makerdao.com/t/august-2024-aligned-delegate-compensation/25165 + // Mip: https://mips.makerdao.com/mips/details/MIP101#2-6-3-aligned-delegate-budget-and-participation-requirements + + // BLUE - 13.75 MKR - 0xb6c09680d822f162449cdfb8248a7d3fc26ec9bf + MKR.transfer(BONAPUBLICA, 13.75 ether); // Note: 'ether' is a keyword helper, only MKR is transferred here + + // Cloaky - 12.00 MKR - 0x869b6d5d8FA7f4FFdaCA4D23FFE0735c5eD1F818 + MKR.transfer(CLOAKY, 12.00 ether); // Note: 'ether' is a keyword helper, only MKR is transferred here + + // JuliaChang - 1.25 MKR - 0x252abAEe2F4f4b8D39E5F12b163eDFb7fac7AED7 + MKR.transfer(JULIACHANG, 1.25 ether); // Note: 'ether' is a keyword helper, only MKR is transferred here + + // Byteron - 1.25 MKR - 0xc2982e72D060cab2387Dba96b846acb8c96EfF66 + MKR.transfer(BYTERON, 1.25 ether); // Note: 'ether' is a keyword helper, only MKR is transferred here + + // Rocky - 1.21 MKR - 0xC31637BDA32a0811E39456A59022D2C386cb2C85 + MKR.transfer(ROCKY, 1.21 ether); // Note: 'ether' is a keyword helper, only MKR is transferred here + + // ---------- Spark Spell ---------- + // Forum: https://forum.makerdao.com/t/sep-12-2024-proposed-changes-to-spark-for-upcoming-spell/25076 + // Poll: https://vote.makerdao.com/polling/QmPFkXna + + // Execute Spark Proxy Spell at 0xc80621140bEe6A105C180Ae7cb0a084c2409C738 + ProxyLike(SPARK_PROXY).exec(SPARK_SPELL, abi.encodeWithSignature("execute()")); } } diff --git a/src/DssSpell.t.base.sol b/src/DssSpell.t.base.sol index 7ccf445b0..0a6134ef3 100644 --- a/src/DssSpell.t.base.sol +++ b/src/DssSpell.t.base.sol @@ -2593,9 +2593,11 @@ contract DssSpellTestBase is Config, DssTest { vow.flap(); - assertGt(pair.balanceOf(pauseProxy), pbalancePauseProxy, "TestError/Flapper/pair-pauseProxy-balance-no-increase"); + // TODO: fix the tests + // assertGt(pair.balanceOf(pauseProxy), pbalancePauseProxy, "TestError/Flapper/pair-pauseProxy-balance-no-increase"); + // assertEq(sky.balanceOf(address(pair)), preserveSky, "TestError/Flapper/unexpected-sky-pair-balance-change"); + assertEq(usds.balanceOf(address(pair)), preserveUsds + lotRad / RAY, "TestError/Flapper/invalid-usds-pair-balance-increase"); - assertEq(sky.balanceOf(address(pair)), preserveSky, "TestError/Flapper/unexpected-sky-pair-balance-change"); assertEq(pdaiVow - vat.dai(address(vow)), vow.bump(), "TestError/Flapper/invalid-vat-dai-vow-change"); assertEq(usds.balanceOf(address(flap)), 0, "TestError/Flapper/invalid-usds-balance"); assertEq(sky.balanceOf(address(flap)), 0, "TestError/Flapper/invalid-sky-balance"); diff --git a/src/DssSpell.t.sol b/src/DssSpell.t.sol index 35111e365..07744c9a8 100644 --- a/src/DssSpell.t.sol +++ b/src/DssSpell.t.sol @@ -828,9 +828,9 @@ contract DssSpellTest is DssSpellTestBase { } // SPARK TESTS - function testSparkSpellIsExecuted() public skipped { // add the `skipped` modifier to skip + function testSparkSpellIsExecuted() public { // add the `skipped` modifier to skip address SPARK_PROXY = addr.addr('SPARK_PROXY'); - address SPARK_SPELL = 0x668C84584Ef8EeEd6BFb4FFB2a4Fa03231F8b241; + address SPARK_SPELL = 0xc80621140bEe6A105C180Ae7cb0a084c2409C738; vm.expectCall( SPARK_PROXY, diff --git a/src/test/config.sol b/src/test/config.sol index 226a38d24..d6dff3c8b 100644 --- a/src/test/config.sol +++ b/src/test/config.sol @@ -96,8 +96,8 @@ contract Config { function setValues(address chief) public { // Add spells if there is a need to test prior to their cast() functions // being called on-chain. They will be executed in order from index 0. - address[] memory prevSpells = new address[](1); - prevSpells[0] = address(0x70254BD530684CF4a6323F51098FA39AAE6130b6); + address[] memory prevSpells = new address[](0); + // prevSpells[0] = address(); // // Values for spell-specific parameters @@ -107,7 +107,7 @@ contract Config { deployed_spell_created: 0, // use `make deploy-info tx=` to obtain the timestamp deployed_spell_block: 0, // use `make deploy-info tx=` to obtain the block number previous_spells: prevSpells, // older spells to ensure are executed first - office_hours_enabled: false, // true if officehours is expected to be enabled in the spell + office_hours_enabled: true, // true if officehours is expected to be enabled in the spell expiration_threshold: 30 days // Amount of time before spell expires }); From 9cf25c95cb3aa5bbfaefa5d1d0c1c6ab0dc8692e Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Tue, 24 Sep 2024 11:18:27 +0200 Subject: [PATCH 07/16] upgrade payments tests --- src/DssSpell.t.base.sol | 1 + src/DssSpell.t.sol | 173 +++++++++++++++++++++++++-------- src/test/addresses_wallets.sol | 3 + 3 files changed, 138 insertions(+), 39 deletions(-) diff --git a/src/DssSpell.t.base.sol b/src/DssSpell.t.base.sol index 0a6134ef3..24998225d 100644 --- a/src/DssSpell.t.base.sol +++ b/src/DssSpell.t.base.sol @@ -253,6 +253,7 @@ contract DssSpellTestBase is Config, DssTest { SUsdsLike susds = SUsdsLike( addr.addr("SUSDS")); UsdsJoinLike usdsJoin = UsdsJoinLike( addr.addr("USDS_JOIN")); DSTokenAbstract gov = DSTokenAbstract( addr.addr("MCD_GOV")); + DSTokenAbstract mkr = DSTokenAbstract( addr.addr("MCD_GOV")); GemAbstract sky = GemAbstract( addr.addr("SKY")); EndAbstract end = EndAbstract( addr.addr("MCD_END")); ESMAbstract esm = ESMAbstract( addr.addr("MCD_ESM")); diff --git a/src/DssSpell.t.sol b/src/DssSpell.t.sol index 07744c9a8..98876a419 100644 --- a/src/DssSpell.t.sol +++ b/src/DssSpell.t.sol @@ -522,82 +522,177 @@ contract DssSpellTest is DssSpellTestBase { } struct Payee { + address token; address addr; uint256 amount; } - function testDAIPayments() public skipped { // add the `skipped` modifier to skip - // For each payment, create a Payee object with - // the Payee address, - // the amount to be paid in whole Dai units + struct DaiUsdsAmounts { + uint256 dai; + uint256 usds; + } + + function testDaiAndUsdsPayments() public { // add the `skipped` modifier to skip + // For each payment, create a Payee object with: + // the address of the transferred token, + // the destination address, + // the amount to be paid (in whole units) // Initialize the array with the number of payees - Payee[1] memory payees = [ - Payee(wallets.addr("LAUNCH_PROJECT_FUNDING"), 9_535_993) + Payee[9] memory payees = [ + Payee(address(dai), wallets.addr("BLUE"), 54_167), + Payee(address(dai), wallets.addr("CLOAKY"), 20_417), + Payee(address(dai), wallets.addr("CLOAKY_KOHLA_2"), 10_000), + Payee(address(dai), wallets.addr("CLOAKY_ENNOIA"), 10_000), + Payee(address(dai), wallets.addr("JULIACHANG"), 8_333), + Payee(address(dai), wallets.addr("BYTERON"), 8_333), + Payee(address(dai), wallets.addr("ROCKY"), 8_065), + Payee(address(dai), wallets.addr("BONAPUBLICA"), 5_430), + Payee(address(usds), wallets.addr("SOLANA_BOOTSTRAPPING"), 10_000_000) ]; + // Fill the total values from exec sheet + DaiUsdsAmounts memory expectedTotalDiffs = DaiUsdsAmounts({ + dai: 124_745, + usds: 10_000_000 + }); - uint256 expectedSumPayments = 9_535_993; // Fill the number with the value from exec doc. - - uint256 prevBalance; - uint256 totAmount; - uint256[] memory prevAmounts = new uint256[](payees.length); - + // Calculate and save previous balances + DaiUsdsAmounts memory calculatedTotalDiffs; + DaiUsdsAmounts[] memory previousPayeeBalances = new DaiUsdsAmounts[](payees.length); for (uint256 i = 0; i < payees.length; i++) { - totAmount += payees[i].amount; - prevAmounts[i] = dai.balanceOf(payees[i].addr); - prevBalance += prevAmounts[i]; + if (payees[i].token == address(dai)) { + calculatedTotalDiffs.dai += payees[i].amount; + } else if (payees[i].token == address(usds)) { + calculatedTotalDiffs.usds += payees[i].amount; + } else { + revert('TestDaiAndUsdsPayments/unexpected-payee-token'); + } + previousPayeeBalances[i] = DaiUsdsAmounts({ + dai: dai.balanceOf(payees[i].addr), + usds: usds.balanceOf(payees[i].addr) + }); } + // Cast the spell _vote(address(spell)); spell.schedule(); vm.warp(spell.nextCastTime()); pot.drip(); uint256 prevSin = vat.sin(address(vow)); spell.cast(); - assertTrue(spell.done(), "TestError/spell-not-done"); + assertTrue(spell.done(), "TestDaiAndUsdsPayments/spell-not-done"); - assertEq(vat.sin(address(vow)) - prevSin, totAmount * RAD, "testPayments/vat-sin-mismatch"); - assertEq(vat.sin(address(vow)) - prevSin, expectedSumPayments * RAD, "testPaymentsSum/vat-sin-mismatch"); + // Check no undocumented payments were made + assertEq( + vat.sin(address(vow)) - prevSin, + (calculatedTotalDiffs.dai + calculatedTotalDiffs.usds) * RAD, + "TestDaiAndUsdsPayments/vat-sin-mismatch-calculated" + ); + assertEq( + vat.sin(address(vow)) - prevSin, + (expectedTotalDiffs.dai + expectedTotalDiffs.usds) * RAD, + "TestDaiAndUsdsPayments/vat-sin-mismatch-expected" + ); + // Check that payees received their payments for (uint256 i = 0; i < payees.length; i++) { - assertEq( - dai.balanceOf(payees[i].addr) - prevAmounts[i], - payees[i].amount * WAD - ); + if (payees[i].token == address(dai)) { + assertEq( + dai.balanceOf(payees[i].addr), + previousPayeeBalances[i].dai + payees[i].amount * WAD, + "TestDaiAndUsdsPayments/invalid-payee-dai-balance" + ); + } else if (payees[i].token == address(usds)) { + assertEq( + usds.balanceOf(payees[i].addr), + previousPayeeBalances[i].usds + payees[i].amount * WAD, + "TestDaiAndUsdsPayments/invalid-payee-usds-balance" + ); + } } } - function testMKRPayments() public skipped { // add the `skipped` modifier to skip - // For each payment, create a Payee object with - // the Payee address, + struct MkrSkyAmounts { + uint256 mkr; + uint256 sky; + } + + function testMrkAndSkyPayments() public { // add the `skipped` modifier to skip + // For each payment, create a Payee object with: + // the address of the transferred token, + // the destination address, // the amount to be paid // Initialize the array with the number of payees - Payee[1] memory payees = [ - Payee(wallets.addr("LAUNCH_PROJECT_FUNDING"), 2630.00 ether) // Note: ether is a keyword helper, only MKR is transferred here + Payee[6] memory payees = [ + Payee(address(mkr), wallets.addr("BONAPUBLICA"), 13.75 ether), // Note: ether is a keyword helper, only MKR is transferred here + Payee(address(mkr), wallets.addr("CLOAKY"), 12.00 ether), // Note: ether is a keyword helper, only MKR is transferred here + Payee(address(mkr), wallets.addr("JULIACHANG"), 1.25 ether), // Note: ether is a keyword helper, only MKR is transferred here + Payee(address(mkr), wallets.addr("BYTERON"), 1.25 ether), // Note: ether is a keyword helper, only MKR is transferred here + Payee(address(mkr), wallets.addr("ROCKY"), 1.21 ether), // Note: ether is a keyword helper, only MKR is transferred here + Payee(address(sky), wallets.addr("SOLANA_BOOTSTRAPPING"), 320_000_000 ether) // Note: ether is a keyword helper, only MKR is transferred here ]; - // Fill the value below with the value from exec doc - uint256 expectedSumPayments = 2630.00 ether; // Note: ether is a keyword helper, only MKR is transferred here + // Fill the total values from exec sheet + MkrSkyAmounts memory expectedTotalDiffs = MkrSkyAmounts({ + mkr: 29.46 ether, + sky: 320_000_000 ether + }); // Calculate and save previous balances - uint256 totalAmountToTransfer = 0; // Increment in the loop below - uint256[] memory prevBalances = new uint256[](payees.length); - uint256 prevMkrBalance = gov.balanceOf(address(pauseProxy)); + MkrSkyAmounts memory previousPauseProxyBalances = MkrSkyAmounts({ + mkr: mkr.balanceOf(address(pauseProxy)), + sky: sky.balanceOf(address(pauseProxy)) + }); + MkrSkyAmounts memory calculatedTotalDiffs; + MkrSkyAmounts[] memory previousPayeeBalances = new MkrSkyAmounts[](payees.length); for (uint256 i = 0; i < payees.length; i++) { - totalAmountToTransfer += payees[i].amount; - prevBalances[i] = gov.balanceOf(payees[i].addr); + if (payees[i].token == address(mkr)) { + calculatedTotalDiffs.mkr += payees[i].amount; + } else if (payees[i].token == address(sky)) { + calculatedTotalDiffs.sky += payees[i].amount; + } else { + revert('TestMrkAndSkyPayments/unexpected-payee-token'); + } + previousPayeeBalances[i] = MkrSkyAmounts({ + mkr: mkr.balanceOf(payees[i].addr), + sky: sky.balanceOf(payees[i].addr) + }); } // Cast the spell _vote(address(spell)); _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); + assertTrue(spell.done(), "TestMrkAndSkyPayments/spell-not-done"); - // Check that pause proxy balance has decreased - assertEq(gov.balanceOf(address(pauseProxy)), prevMkrBalance - totalAmountToTransfer, "testMKRPayments/invalid-total"); - assertEq(gov.balanceOf(address(pauseProxy)), prevMkrBalance - expectedSumPayments, "testMKRPayments/invalid-sum"); + // Check no undocumented payments were made + MkrSkyAmounts memory actualPauseProxyDiff = MkrSkyAmounts({ + mkr: previousPauseProxyBalances.mkr - mkr.balanceOf(address(pauseProxy)), + sky: sky.balanceOf(address(pauseProxy)) - previousPauseProxyBalances.sky // Note: we expect Sky balance to increase + }); + assertLe( + actualPauseProxyDiff.mkr - (calculatedTotalDiffs.mkr + calculatedTotalDiffs.sky / afterSpell.sky_mkr_rate) - actualPauseProxyDiff.sky / afterSpell.sky_mkr_rate, + 1, // This is to account for rounding errors when converting Sky back to Mkr + "TestMrkAndSkyPayments/invalid-total" + ); + assertLe( + actualPauseProxyDiff.mkr - (expectedTotalDiffs.mkr + expectedTotalDiffs.sky / afterSpell.sky_mkr_rate) - actualPauseProxyDiff.sky / afterSpell.sky_mkr_rate, + 1, // This is to account for rounding errors when converting Sky back to Mkr + "TestMrkAndSkyPayments/invalid-total" + ); // Check that payees received their payments for (uint256 i = 0; i < payees.length; i++) { - assertEq(gov.balanceOf(payees[i].addr) - prevBalances[i], payees[i].amount, "testMKRPayments/invalid-balance"); + if (payees[i].token == address(mkr)) { + assertEq( + mkr.balanceOf(payees[i].addr), + previousPayeeBalances[i].mkr + payees[i].amount, + "TestMrkAndSkyPayments/invalid-payee-mkr-balance" + ); + } else if (payees[i].token == address(sky)) { + assertEq( + sky.balanceOf(payees[i].addr), + previousPayeeBalances[i].sky + payees[i].amount, + "TestMrkAndSkyPayments/invalid-payee-sky-balance" + ); + } } } diff --git a/src/test/addresses_wallets.sol b/src/test/addresses_wallets.sol index 592df728a..ae38c1bbc 100644 --- a/src/test/addresses_wallets.sol +++ b/src/test/addresses_wallets.sol @@ -147,6 +147,9 @@ contract Wallets { // Accessibility Scope addr["LAUNCH_PROJECT_FUNDING"] = 0x3C5142F28567E6a0F172fd0BaaF1f2847f49D02F; + // Sky Ecosystem Liquidity Bootstrapping + addr["SOLANA_BOOTSTRAPPING"] = 0xD8507ef0A59f37d15B5D7b630FA6EEa40CE4AFdD; + // Vest Managers addr["PULLUP_LABS_VEST_MGR"] = 0x9B6213D350A4AFbda2361b6572A07C90c22002F1; From d9261690b56f533a06744dce3f88fd373b737edd Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Tue, 24 Sep 2024 11:43:03 +0200 Subject: [PATCH 08/16] merge payments tests into a single one --- src/DssSpell.t.sol | 201 +++++++++++++++++++-------------------------- 1 file changed, 85 insertions(+), 116 deletions(-) diff --git a/src/DssSpell.t.sol b/src/DssSpell.t.sol index 98876a419..9705805f7 100644 --- a/src/DssSpell.t.sol +++ b/src/DssSpell.t.sol @@ -527,171 +527,140 @@ contract DssSpellTest is DssSpellTestBase { uint256 amount; } - struct DaiUsdsAmounts { + struct PaymentAmounts { uint256 dai; uint256 usds; - } - - function testDaiAndUsdsPayments() public { // add the `skipped` modifier to skip - // For each payment, create a Payee object with: - // the address of the transferred token, - // the destination address, - // the amount to be paid (in whole units) - // Initialize the array with the number of payees - Payee[9] memory payees = [ - Payee(address(dai), wallets.addr("BLUE"), 54_167), - Payee(address(dai), wallets.addr("CLOAKY"), 20_417), - Payee(address(dai), wallets.addr("CLOAKY_KOHLA_2"), 10_000), - Payee(address(dai), wallets.addr("CLOAKY_ENNOIA"), 10_000), - Payee(address(dai), wallets.addr("JULIACHANG"), 8_333), - Payee(address(dai), wallets.addr("BYTERON"), 8_333), - Payee(address(dai), wallets.addr("ROCKY"), 8_065), - Payee(address(dai), wallets.addr("BONAPUBLICA"), 5_430), - Payee(address(usds), wallets.addr("SOLANA_BOOTSTRAPPING"), 10_000_000) - ]; - // Fill the total values from exec sheet - DaiUsdsAmounts memory expectedTotalDiffs = DaiUsdsAmounts({ - dai: 124_745, - usds: 10_000_000 - }); - - // Calculate and save previous balances - DaiUsdsAmounts memory calculatedTotalDiffs; - DaiUsdsAmounts[] memory previousPayeeBalances = new DaiUsdsAmounts[](payees.length); - for (uint256 i = 0; i < payees.length; i++) { - if (payees[i].token == address(dai)) { - calculatedTotalDiffs.dai += payees[i].amount; - } else if (payees[i].token == address(usds)) { - calculatedTotalDiffs.usds += payees[i].amount; - } else { - revert('TestDaiAndUsdsPayments/unexpected-payee-token'); - } - previousPayeeBalances[i] = DaiUsdsAmounts({ - dai: dai.balanceOf(payees[i].addr), - usds: usds.balanceOf(payees[i].addr) - }); - } - - // Cast the spell - _vote(address(spell)); - spell.schedule(); - vm.warp(spell.nextCastTime()); - pot.drip(); - uint256 prevSin = vat.sin(address(vow)); - spell.cast(); - assertTrue(spell.done(), "TestDaiAndUsdsPayments/spell-not-done"); - - // Check no undocumented payments were made - assertEq( - vat.sin(address(vow)) - prevSin, - (calculatedTotalDiffs.dai + calculatedTotalDiffs.usds) * RAD, - "TestDaiAndUsdsPayments/vat-sin-mismatch-calculated" - ); - assertEq( - vat.sin(address(vow)) - prevSin, - (expectedTotalDiffs.dai + expectedTotalDiffs.usds) * RAD, - "TestDaiAndUsdsPayments/vat-sin-mismatch-expected" - ); - - // Check that payees received their payments - for (uint256 i = 0; i < payees.length; i++) { - if (payees[i].token == address(dai)) { - assertEq( - dai.balanceOf(payees[i].addr), - previousPayeeBalances[i].dai + payees[i].amount * WAD, - "TestDaiAndUsdsPayments/invalid-payee-dai-balance" - ); - } else if (payees[i].token == address(usds)) { - assertEq( - usds.balanceOf(payees[i].addr), - previousPayeeBalances[i].usds + payees[i].amount * WAD, - "TestDaiAndUsdsPayments/invalid-payee-usds-balance" - ); - } - } - } - - struct MkrSkyAmounts { uint256 mkr; uint256 sky; } - function testMrkAndSkyPayments() public { // add the `skipped` modifier to skip + function testPayments() public { // add the `skipped` modifier to skip // For each payment, create a Payee object with: // the address of the transferred token, // the destination address, // the amount to be paid // Initialize the array with the number of payees - Payee[6] memory payees = [ - Payee(address(mkr), wallets.addr("BONAPUBLICA"), 13.75 ether), // Note: ether is a keyword helper, only MKR is transferred here - Payee(address(mkr), wallets.addr("CLOAKY"), 12.00 ether), // Note: ether is a keyword helper, only MKR is transferred here - Payee(address(mkr), wallets.addr("JULIACHANG"), 1.25 ether), // Note: ether is a keyword helper, only MKR is transferred here - Payee(address(mkr), wallets.addr("BYTERON"), 1.25 ether), // Note: ether is a keyword helper, only MKR is transferred here - Payee(address(mkr), wallets.addr("ROCKY"), 1.21 ether), // Note: ether is a keyword helper, only MKR is transferred here - Payee(address(sky), wallets.addr("SOLANA_BOOTSTRAPPING"), 320_000_000 ether) // Note: ether is a keyword helper, only MKR is transferred here + Payee[15] memory payees = [ + Payee(address(dai), wallets.addr("BLUE"), 54_167 * WAD), + Payee(address(dai), wallets.addr("CLOAKY"), 20_417 * WAD), + Payee(address(dai), wallets.addr("CLOAKY_KOHLA_2"), 10_000 * WAD), + Payee(address(dai), wallets.addr("CLOAKY_ENNOIA"), 10_000 * WAD), + Payee(address(dai), wallets.addr("JULIACHANG"), 8_333 * WAD), + Payee(address(dai), wallets.addr("BYTERON"), 8_333 * WAD), + Payee(address(dai), wallets.addr("ROCKY"), 8_065 * WAD), + Payee(address(dai), wallets.addr("BONAPUBLICA"), 5_430 * WAD), + Payee(address(usds), wallets.addr("SOLANA_BOOTSTRAPPING"), 10_000_000 * WAD), + Payee(address(mkr), wallets.addr("BONAPUBLICA"), 13.75 ether), // Note: ether is only a keyword helper + Payee(address(mkr), wallets.addr("CLOAKY"), 12.00 ether), // Note: ether is only a keyword helper + Payee(address(mkr), wallets.addr("JULIACHANG"), 1.25 ether), // Note: ether is only a keyword helper + Payee(address(mkr), wallets.addr("BYTERON"), 1.25 ether), // Note: ether is only a keyword helper + Payee(address(mkr), wallets.addr("ROCKY"), 1.21 ether), // Note: ether is only a keyword helper + Payee(address(sky), wallets.addr("SOLANA_BOOTSTRAPPING"), 320_000_000 ether) // Note: ether is only a keyword helper ]; // Fill the total values from exec sheet - MkrSkyAmounts memory expectedTotalDiffs = MkrSkyAmounts({ + PaymentAmounts memory expectedTotalDiff = PaymentAmounts({ + dai: 124_745 * WAD, + usds: 10_000_000 * WAD, mkr: 29.46 ether, sky: 320_000_000 ether }); + // Vote, schedule and warp, but not yet cast (to get correct surplus balance) + _vote(address(spell)); + spell.schedule(); + vm.warp(spell.nextCastTime()); + pot.drip(); + // Calculate and save previous balances - MkrSkyAmounts memory previousPauseProxyBalances = MkrSkyAmounts({ + PaymentAmounts memory previousTotalBalance = PaymentAmounts({ + dai: vat.sin(address(vow)), + usds: usds.balanceOf(address(pauseProxy)), mkr: mkr.balanceOf(address(pauseProxy)), sky: sky.balanceOf(address(pauseProxy)) }); - MkrSkyAmounts memory calculatedTotalDiffs; - MkrSkyAmounts[] memory previousPayeeBalances = new MkrSkyAmounts[](payees.length); + PaymentAmounts memory calculatedTotalDiff; + PaymentAmounts[] memory previousPayeeBalances = new PaymentAmounts[](payees.length); for (uint256 i = 0; i < payees.length; i++) { - if (payees[i].token == address(mkr)) { - calculatedTotalDiffs.mkr += payees[i].amount; + if (payees[i].token == address(dai)) { + calculatedTotalDiff.dai += payees[i].amount; + } else if (payees[i].token == address(usds)) { + calculatedTotalDiff.usds += payees[i].amount; + } else if (payees[i].token == address(mkr)) { + calculatedTotalDiff.mkr += payees[i].amount; } else if (payees[i].token == address(sky)) { - calculatedTotalDiffs.sky += payees[i].amount; + calculatedTotalDiff.sky += payees[i].amount; } else { - revert('TestMrkAndSkyPayments/unexpected-payee-token'); + revert('TestPayments/unexpected-payee-token'); } - previousPayeeBalances[i] = MkrSkyAmounts({ + previousPayeeBalances[i] = PaymentAmounts({ + dai: dai.balanceOf(payees[i].addr), + usds: usds.balanceOf(payees[i].addr), mkr: mkr.balanceOf(payees[i].addr), sky: sky.balanceOf(payees[i].addr) }); } - // Cast the spell - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestMrkAndSkyPayments/spell-not-done"); - - // Check no undocumented payments were made - MkrSkyAmounts memory actualPauseProxyDiff = MkrSkyAmounts({ - mkr: previousPauseProxyBalances.mkr - mkr.balanceOf(address(pauseProxy)), - sky: sky.balanceOf(address(pauseProxy)) - previousPauseProxyBalances.sky // Note: we expect Sky balance to increase + // Cast spell + spell.cast(); + assertTrue(spell.done(), "TestPayments/spell-not-done"); + + // Check no other transfers were made + PaymentAmounts memory actualBalanceDiff = PaymentAmounts({ + dai: vat.sin(address(vow)) - previousTotalBalance.dai, // We expect debt to increase + usds: previousTotalBalance.usds - usds.balanceOf(address(pauseProxy)), + mkr: previousTotalBalance.mkr - mkr.balanceOf(address(pauseProxy)), + sky: sky.balanceOf(address(pauseProxy)) - previousTotalBalance.sky // We expect Sky balance to increase }); + assertEq(actualBalanceDiff.usds, 0, "TestPayments/unexpected-usds-balance-change"); + assertEq( + actualBalanceDiff.dai, + (calculatedTotalDiff.dai + calculatedTotalDiff.usds) * RAY, + "TestPayments/vat-sin-mismatch-calculated" + ); + assertEq( + actualBalanceDiff.dai, + (expectedTotalDiff.dai + expectedTotalDiff.usds) * RAY, + "TestPayments/vat-sin-mismatch-expected" + ); assertLe( - actualPauseProxyDiff.mkr - (calculatedTotalDiffs.mkr + calculatedTotalDiffs.sky / afterSpell.sky_mkr_rate) - actualPauseProxyDiff.sky / afterSpell.sky_mkr_rate, + actualBalanceDiff.mkr - (calculatedTotalDiff.mkr + calculatedTotalDiff.sky / afterSpell.sky_mkr_rate) - actualBalanceDiff.sky / afterSpell.sky_mkr_rate, 1, // This is to account for rounding errors when converting Sky back to Mkr - "TestMrkAndSkyPayments/invalid-total" + "TestPayments/invalid-total" ); assertLe( - actualPauseProxyDiff.mkr - (expectedTotalDiffs.mkr + expectedTotalDiffs.sky / afterSpell.sky_mkr_rate) - actualPauseProxyDiff.sky / afterSpell.sky_mkr_rate, + actualBalanceDiff.mkr - (expectedTotalDiff.mkr + expectedTotalDiff.sky / afterSpell.sky_mkr_rate) - actualBalanceDiff.sky / afterSpell.sky_mkr_rate, 1, // This is to account for rounding errors when converting Sky back to Mkr - "TestMrkAndSkyPayments/invalid-total" + "TestPayments/invalid-total" ); // Check that payees received their payments for (uint256 i = 0; i < payees.length; i++) { - if (payees[i].token == address(mkr)) { + if (payees[i].token == address(dai)) { + assertEq( + dai.balanceOf(payees[i].addr), + previousPayeeBalances[i].dai + payees[i].amount, + "TestPayments/invalid-payee-dai-balance" + ); + } else if (payees[i].token == address(usds)) { + assertEq( + usds.balanceOf(payees[i].addr), + previousPayeeBalances[i].usds + payees[i].amount, + "TestPayments/invalid-payee-usds-balance" + ); + } else if (payees[i].token == address(mkr)) { assertEq( mkr.balanceOf(payees[i].addr), previousPayeeBalances[i].mkr + payees[i].amount, - "TestMrkAndSkyPayments/invalid-payee-mkr-balance" + "TestPayments/invalid-payee-mkr-balance" ); } else if (payees[i].token == address(sky)) { assertEq( sky.balanceOf(payees[i].addr), previousPayeeBalances[i].sky + payees[i].amount, - "TestMrkAndSkyPayments/invalid-payee-sky-balance" + "TestPayments/invalid-payee-sky-balance" ); + } else { + revert('TestPayments/unexpected-payee-token'); } } } From c4cb8bc27ff03b318a016383d7e3807d1b92505b Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Tue, 24 Sep 2024 13:49:29 +0200 Subject: [PATCH 09/16] test coverage for the new flapper and sky oracle --- src/DssSpell.sol | 4 ++-- src/DssSpell.t.base.sol | 8 +++----- src/DssSpell.t.sol | 24 ++++++++++++++++++++++++ 3 files changed, 29 insertions(+), 7 deletions(-) diff --git a/src/DssSpell.sol b/src/DssSpell.sol index c466003c8..9e7a73e75 100644 --- a/src/DssSpell.sol +++ b/src/DssSpell.sol @@ -39,9 +39,9 @@ interface ProxyLike { contract DssSpellAction is DssAction { // Provides a descriptive tag for bot consumption // This should be modified weekly to provide a summary of the actions - // Hash: cast keccak -- "$(wget 'TODO' -q -O - 2>/dev/null)" + // Hash: cast keccak -- "$(wget 'https://raw.githubusercontent.com/makerdao/community/8aff80b3462461352120c9dc79598dc6dc617bdf/governance/votes/Executive%20Vote%20-%20September%2027%2C%202024.md' -q -O - 2>/dev/null)" string public constant override description = - "2024-09-27 MakerDAO Executive Spell | Hash: TODO"; + "2024-09-27 MakerDAO Executive Spell | Hash: 0x29461f373c49e25adfb11412908a06dc50d0817c8de117d189881057b71ad2a6"; // Set office hours according to the summary function officeHours() public pure override returns (bool) { diff --git a/src/DssSpell.t.base.sol b/src/DssSpell.t.base.sol index 24998225d..91815e94c 100644 --- a/src/DssSpell.t.base.sol +++ b/src/DssSpell.t.base.sol @@ -2580,7 +2580,7 @@ contract DssSpellTestBase is Config, DssTest { uint256 lotRad = vow.bump() * split.burn() / WAD; uint256 payWad = (vow.bump() - lotRad) / RAY; - uint256 pbalancePauseProxy = pair.balanceOf(pauseProxy); + uint256 pskyBalancePauseProxy = sky.balanceOf(pauseProxy); uint256 pdaiVow = vat.dai(address(vow)); uint256 preserveUsds = usds.balanceOf(address(pair)); uint256 preserveSky = sky.balanceOf(address(pair)); @@ -2594,10 +2594,8 @@ contract DssSpellTestBase is Config, DssTest { vow.flap(); - // TODO: fix the tests - // assertGt(pair.balanceOf(pauseProxy), pbalancePauseProxy, "TestError/Flapper/pair-pauseProxy-balance-no-increase"); - // assertEq(sky.balanceOf(address(pair)), preserveSky, "TestError/Flapper/unexpected-sky-pair-balance-change"); - + assertGt(sky.balanceOf(pauseProxy), pskyBalancePauseProxy, "TestError/Flapper/unexpected-sky-pause-proxy-balance-change"); + assertLt(sky.balanceOf(address(pair)), preserveSky, "TestError/Flapper/unexpected-sky-pair-balance-change"); assertEq(usds.balanceOf(address(pair)), preserveUsds + lotRad / RAY, "TestError/Flapper/invalid-usds-pair-balance-increase"); assertEq(pdaiVow - vat.dai(address(vow)), vow.bump(), "TestError/Flapper/invalid-vat-dai-vow-change"); assertEq(usds.balanceOf(address(flap)), 0, "TestError/Flapper/invalid-usds-balance"); diff --git a/src/DssSpell.t.sol b/src/DssSpell.t.sol index 9705805f7..571ee3e89 100644 --- a/src/DssSpell.t.sol +++ b/src/DssSpell.t.sol @@ -911,4 +911,28 @@ contract DssSpellTest is DssSpellTestBase { } // SPELL-SPECIFIC TESTS GO BELOW + + function testFlapperChange() public { + assertNotEq(split.flapper(), addr.addr("MCD_FLAP"), "testFlapperChange/incorrect-previous-split-flapper-address"); + assertEq(WardsAbstract(addr.addr("MCD_FLAP")).wards(addr.addr("MCD_SPLIT")), 0, "testFlapperChange/flapper-already-in-splitter-wards"); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + assertEq(split.flapper(), addr.addr("MCD_FLAP"), "testFlapperChange/incorrect-split-flapper-address"); + assertEq(WardsAbstract(addr.addr("MCD_FLAP")).wards(addr.addr("MCD_SPLIT")), 1, "testFlapperChange/flapper-not-in-splitter-wards"); + } + + function testSkyOracleChange() public { + assertNotEq(flap.pip(), addr.addr("FLAP_SKY_ORACLE"), "testFlapperChange/incorrect-previous-flapper-pip-address"); + assertEq(OsmAbstract(addr.addr("PIP_MKR")).bud(addr.addr("FLAP_SKY_ORACLE")), 0, "testNewAuthorizations/sky-oracle-already-in-mkr-oracle-buds"); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + assertEq(flap.pip(), addr.addr("FLAP_SKY_ORACLE"), "testFlapperChange/incorrect-flapper-pip-address"); + assertEq(OsmAbstract(addr.addr("PIP_MKR")).bud(addr.addr("FLAP_SKY_ORACLE")), 1, "testNewAuthorizations/sky-oracle-not-in-mkr-oracle-buds"); + } } From 6f17e737ce05363c4baaf0b1a3a57dcc6b12d19c Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Tue, 24 Sep 2024 13:59:32 +0200 Subject: [PATCH 10/16] typos --- src/DssSpell.t.base.sol | 4 ++-- src/test/config.sol | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/DssSpell.t.base.sol b/src/DssSpell.t.base.sol index 91815e94c..e9377220e 100644 --- a/src/DssSpell.t.base.sol +++ b/src/DssSpell.t.base.sol @@ -2594,8 +2594,8 @@ contract DssSpellTestBase is Config, DssTest { vow.flap(); - assertGt(sky.balanceOf(pauseProxy), pskyBalancePauseProxy, "TestError/Flapper/unexpected-sky-pause-proxy-balance-change"); - assertLt(sky.balanceOf(address(pair)), preserveSky, "TestError/Flapper/unexpected-sky-pair-balance-change"); + assertGt(sky.balanceOf(pauseProxy), pskyBalancePauseProxy, "TestError/Flapper/unexpected-sky-pause-proxy-balance"); + assertLt(sky.balanceOf(address(pair)), preserveSky, "TestError/Flapper/unexpected-sky-pair-balance"); assertEq(usds.balanceOf(address(pair)), preserveUsds + lotRad / RAY, "TestError/Flapper/invalid-usds-pair-balance-increase"); assertEq(pdaiVow - vat.dai(address(vow)), vow.bump(), "TestError/Flapper/invalid-vat-dai-vow-change"); assertEq(usds.balanceOf(address(flap)), 0, "TestError/Flapper/invalid-usds-balance"); diff --git a/src/test/config.sol b/src/test/config.sol index d6dff3c8b..c19080a3b 100644 --- a/src/test/config.sol +++ b/src/test/config.sol @@ -97,7 +97,7 @@ contract Config { // Add spells if there is a need to test prior to their cast() functions // being called on-chain. They will be executed in order from index 0. address[] memory prevSpells = new address[](0); - // prevSpells[0] = address(); + // prevSpells[0] = address(0); // // Values for spell-specific parameters From 73f130bff075c052a47f7f39329630f2bad0b6eb Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Tue, 24 Sep 2024 14:07:26 +0200 Subject: [PATCH 11/16] cleanup testPayments --- src/DssSpell.t.sol | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/src/DssSpell.t.sol b/src/DssSpell.t.sol index 571ee3e89..9307eed12 100644 --- a/src/DssSpell.t.sol +++ b/src/DssSpell.t.sol @@ -529,8 +529,8 @@ contract DssSpellTest is DssSpellTestBase { struct PaymentAmounts { uint256 dai; - uint256 usds; uint256 mkr; + uint256 usds; uint256 sky; } @@ -549,20 +549,20 @@ contract DssSpellTest is DssSpellTestBase { Payee(address(dai), wallets.addr("BYTERON"), 8_333 * WAD), Payee(address(dai), wallets.addr("ROCKY"), 8_065 * WAD), Payee(address(dai), wallets.addr("BONAPUBLICA"), 5_430 * WAD), - Payee(address(usds), wallets.addr("SOLANA_BOOTSTRAPPING"), 10_000_000 * WAD), Payee(address(mkr), wallets.addr("BONAPUBLICA"), 13.75 ether), // Note: ether is only a keyword helper Payee(address(mkr), wallets.addr("CLOAKY"), 12.00 ether), // Note: ether is only a keyword helper Payee(address(mkr), wallets.addr("JULIACHANG"), 1.25 ether), // Note: ether is only a keyword helper Payee(address(mkr), wallets.addr("BYTERON"), 1.25 ether), // Note: ether is only a keyword helper Payee(address(mkr), wallets.addr("ROCKY"), 1.21 ether), // Note: ether is only a keyword helper - Payee(address(sky), wallets.addr("SOLANA_BOOTSTRAPPING"), 320_000_000 ether) // Note: ether is only a keyword helper + Payee(address(usds), wallets.addr("SOLANA_BOOTSTRAPPING"), 10_000_000 * WAD), + Payee(address(sky), wallets.addr("SOLANA_BOOTSTRAPPING"), 320_000_000 * WAD) ]; // Fill the total values from exec sheet PaymentAmounts memory expectedTotalDiff = PaymentAmounts({ dai: 124_745 * WAD, + mkr: 29.46 ether, // Note: ether is only a keyword helper usds: 10_000_000 * WAD, - mkr: 29.46 ether, - sky: 320_000_000 ether + sky: 320_000_000 * WAD }); // Vote, schedule and warp, but not yet cast (to get correct surplus balance) @@ -574,8 +574,8 @@ contract DssSpellTest is DssSpellTestBase { // Calculate and save previous balances PaymentAmounts memory previousTotalBalance = PaymentAmounts({ dai: vat.sin(address(vow)), - usds: usds.balanceOf(address(pauseProxy)), mkr: mkr.balanceOf(address(pauseProxy)), + usds: usds.balanceOf(address(pauseProxy)), sky: sky.balanceOf(address(pauseProxy)) }); PaymentAmounts memory calculatedTotalDiff; @@ -583,10 +583,10 @@ contract DssSpellTest is DssSpellTestBase { for (uint256 i = 0; i < payees.length; i++) { if (payees[i].token == address(dai)) { calculatedTotalDiff.dai += payees[i].amount; - } else if (payees[i].token == address(usds)) { - calculatedTotalDiff.usds += payees[i].amount; } else if (payees[i].token == address(mkr)) { calculatedTotalDiff.mkr += payees[i].amount; + } else if (payees[i].token == address(usds)) { + calculatedTotalDiff.usds += payees[i].amount; } else if (payees[i].token == address(sky)) { calculatedTotalDiff.sky += payees[i].amount; } else { @@ -594,8 +594,8 @@ contract DssSpellTest is DssSpellTestBase { } previousPayeeBalances[i] = PaymentAmounts({ dai: dai.balanceOf(payees[i].addr), - usds: usds.balanceOf(payees[i].addr), mkr: mkr.balanceOf(payees[i].addr), + usds: usds.balanceOf(payees[i].addr), sky: sky.balanceOf(payees[i].addr) }); } @@ -607,11 +607,10 @@ contract DssSpellTest is DssSpellTestBase { // Check no other transfers were made PaymentAmounts memory actualBalanceDiff = PaymentAmounts({ dai: vat.sin(address(vow)) - previousTotalBalance.dai, // We expect debt to increase - usds: previousTotalBalance.usds - usds.balanceOf(address(pauseProxy)), mkr: previousTotalBalance.mkr - mkr.balanceOf(address(pauseProxy)), + usds: previousTotalBalance.usds - usds.balanceOf(address(pauseProxy)), sky: sky.balanceOf(address(pauseProxy)) - previousTotalBalance.sky // We expect Sky balance to increase }); - assertEq(actualBalanceDiff.usds, 0, "TestPayments/unexpected-usds-balance-change"); assertEq( actualBalanceDiff.dai, (calculatedTotalDiff.dai + calculatedTotalDiff.usds) * RAY, @@ -624,14 +623,15 @@ contract DssSpellTest is DssSpellTestBase { ); assertLe( actualBalanceDiff.mkr - (calculatedTotalDiff.mkr + calculatedTotalDiff.sky / afterSpell.sky_mkr_rate) - actualBalanceDiff.sky / afterSpell.sky_mkr_rate, - 1, // This is to account for rounding errors when converting Sky back to Mkr + 1, // To account for rounding errors when converting Sky back to Mkr "TestPayments/invalid-total" ); assertLe( actualBalanceDiff.mkr - (expectedTotalDiff.mkr + expectedTotalDiff.sky / afterSpell.sky_mkr_rate) - actualBalanceDiff.sky / afterSpell.sky_mkr_rate, - 1, // This is to account for rounding errors when converting Sky back to Mkr + 1, // To account for rounding errors when converting Sky back to Mkr "TestPayments/invalid-total" ); + assertEq(actualBalanceDiff.usds, 0, "TestPayments/unexpected-usds-balance-change"); // Check that payees received their payments for (uint256 i = 0; i < payees.length; i++) { @@ -641,18 +641,18 @@ contract DssSpellTest is DssSpellTestBase { previousPayeeBalances[i].dai + payees[i].amount, "TestPayments/invalid-payee-dai-balance" ); - } else if (payees[i].token == address(usds)) { - assertEq( - usds.balanceOf(payees[i].addr), - previousPayeeBalances[i].usds + payees[i].amount, - "TestPayments/invalid-payee-usds-balance" - ); } else if (payees[i].token == address(mkr)) { assertEq( mkr.balanceOf(payees[i].addr), previousPayeeBalances[i].mkr + payees[i].amount, "TestPayments/invalid-payee-mkr-balance" ); + } else if (payees[i].token == address(usds)) { + assertEq( + usds.balanceOf(payees[i].addr), + previousPayeeBalances[i].usds + payees[i].amount, + "TestPayments/invalid-payee-usds-balance" + ); } else if (payees[i].token == address(sky)) { assertEq( sky.balanceOf(payees[i].addr), From 073b304cc3ef6dbafef7140643b7e9ede3dcc812 Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Tue, 24 Sep 2024 17:30:52 +0200 Subject: [PATCH 12/16] update instructions to match exec sheet --- src/DssSpell.sol | 29 ++++++++++++++++------------- src/DssSpell.t.sol | 4 ++-- src/test/addresses_wallets.sol | 2 +- 3 files changed, 19 insertions(+), 16 deletions(-) diff --git a/src/DssSpell.sol b/src/DssSpell.sol index 9e7a73e75..71ef3ddb0 100644 --- a/src/DssSpell.sol +++ b/src/DssSpell.sol @@ -79,15 +79,15 @@ contract DssSpellAction is DssAction { address internal constant SWAP_ONLY_FLAP_SKY_ORACLE = 0x61A12E5b1d5E9CC1302a32f0df1B5451DE6AE437; // ---------- Wallets ---------- - address internal constant BLUE = 0xb6C09680D822F162449cdFB8248a7D3FC26Ec9Bf; - address internal constant CLOAKY = 0x869b6d5d8FA7f4FFdaCA4D23FFE0735c5eD1F818; - address internal constant CLOAKY_KOHLA_2 = 0x73dFC091Ad77c03F2809204fCF03C0b9dccf8c7a; - address internal constant CLOAKY_ENNOIA = 0xA7364a1738D0bB7D1911318Ca3FB3779A8A58D7b; - address internal constant JULIACHANG = 0x252abAEe2F4f4b8D39E5F12b163eDFb7fac7AED7; - address internal constant BYTERON = 0xc2982e72D060cab2387Dba96b846acb8c96EfF66; - address internal constant ROCKY = 0xC31637BDA32a0811E39456A59022D2C386cb2C85; - address internal constant BONAPUBLICA = 0x167c1a762B08D7e78dbF8f24e5C3f1Ab415021D3; - address internal constant SOLANA_BOOTSTRAPPING = 0xD8507ef0A59f37d15B5D7b630FA6EEa40CE4AFdD; + address internal constant BLUE = 0xb6C09680D822F162449cdFB8248a7D3FC26Ec9Bf; + address internal constant CLOAKY = 0x869b6d5d8FA7f4FFdaCA4D23FFE0735c5eD1F818; + address internal constant CLOAKY_KOHLA_2 = 0x73dFC091Ad77c03F2809204fCF03C0b9dccf8c7a; + address internal constant CLOAKY_ENNOIA = 0xA7364a1738D0bB7D1911318Ca3FB3779A8A58D7b; + address internal constant JULIACHANG = 0x252abAEe2F4f4b8D39E5F12b163eDFb7fac7AED7; + address internal constant BYTERON = 0xc2982e72D060cab2387Dba96b846acb8c96EfF66; + address internal constant ROCKY = 0xC31637BDA32a0811E39456A59022D2C386cb2C85; + address internal constant BONAPUBLICA = 0x167c1a762B08D7e78dbF8f24e5C3f1Ab415021D3; + address internal constant LIQUIDITY_BOOTSTRAPPING = 0xD8507ef0A59f37d15B5D7b630FA6EEa40CE4AFdD; // ---------- Spark Proxy Spell ---------- // Spark Proxy: https://github.com/marsfoundation/sparklend-deployments/blob/bba4c57d54deb6a14490b897c12a949aa035a99b/script/output/1/primary-sce-latest.json#L2 @@ -151,6 +151,8 @@ contract DssSpellAction is DssAction { "FLAP_SKY_ORACLE" ); + // Additional Actions + // Increase vow.hop by 1386 seconds from 10249 seconds to 11635 seconds DssExecLib.setValue(MCD_SPLIT, "hop", 11_635); @@ -162,6 +164,7 @@ contract DssSpellAction is DssAction { // ---------- Sky Ecosystem Liquidity Bootstrapping ---------- // Forum: https://forum.makerdao.com/t/atlas-edit-weekly-cycle-proposal-week-of-2024-09-23/25179 + // Poll: https://vote.makerdao.com/polling/QmfYzKTh // Transfer 10,000,000 DAI to the Pause Proxy from the Surplus Buffer DssExecLib.sendPaymentFromSurplusBuffer(MCD_PAUSE_PROXY, 10_000_000); @@ -173,7 +176,7 @@ contract DssSpellAction is DssAction { // Note: this is done by the next line of code // Transfer 10,000,000 USDS from PauseProxy to 0xD8507ef0A59f37d15B5D7b630FA6EEa40CE4AFdD - DaiUsdsLike(DAI_USDS).daiToUsds(SOLANA_BOOTSTRAPPING, 10_000_000 * WAD); + DaiUsdsLike(DAI_USDS).daiToUsds(LIQUIDITY_BOOTSTRAPPING, 10_000_000 * WAD); // Note: we have to approve MKR_SKY contract to convert MKR into SKY MKR.approve(MKR_SKY, 13_334 * WAD); @@ -182,13 +185,13 @@ contract DssSpellAction is DssAction { MkrSkyLike(MKR_SKY).mkrToSky(MCD_PAUSE_PROXY, 13_334 * WAD); // Transfer 320,000,000 SKY to 0xD8507ef0A59f37d15B5D7b630FA6EEa40CE4AFdD - SKY.transfer(SOLANA_BOOTSTRAPPING, 320_000_000 * WAD); + SKY.transfer(LIQUIDITY_BOOTSTRAPPING, 320_000_000 * WAD); // ---------- Aligned Delegate DAI Compensation ---------- // Forum: https://forum.makerdao.com/t/august-2024-aligned-delegate-compensation/25165 // Mip: https://mips.makerdao.com/mips/details/MIP101#2-6-3-aligned-delegate-budget-and-participation-requirements - // BLUE - 54167 DAI - 0xb6c09680d822f162449cdfb8248a7d3fc26ec9bf + // BLUE - 54167 DAI - 0xb6C09680D822F162449cdFB8248a7D3FC26Ec9Bf DssExecLib.sendPaymentFromSurplusBuffer(BLUE, 54_167); // Cloaky - 20417 DAI - 0x869b6d5d8FA7f4FFdaCA4D23FFE0735c5eD1F818 @@ -216,7 +219,7 @@ contract DssSpellAction is DssAction { // Forum: https://forum.makerdao.com/t/august-2024-aligned-delegate-compensation/25165 // Mip: https://mips.makerdao.com/mips/details/MIP101#2-6-3-aligned-delegate-budget-and-participation-requirements - // BLUE - 13.75 MKR - 0xb6c09680d822f162449cdfb8248a7d3fc26ec9bf + // BLUE - 13.75 MKR - 0xb6C09680D822F162449cdFB8248a7D3FC26Ec9Bf MKR.transfer(BONAPUBLICA, 13.75 ether); // Note: 'ether' is a keyword helper, only MKR is transferred here // Cloaky - 12.00 MKR - 0x869b6d5d8FA7f4FFdaCA4D23FFE0735c5eD1F818 diff --git a/src/DssSpell.t.sol b/src/DssSpell.t.sol index 9307eed12..2f04be787 100644 --- a/src/DssSpell.t.sol +++ b/src/DssSpell.t.sol @@ -554,8 +554,8 @@ contract DssSpellTest is DssSpellTestBase { Payee(address(mkr), wallets.addr("JULIACHANG"), 1.25 ether), // Note: ether is only a keyword helper Payee(address(mkr), wallets.addr("BYTERON"), 1.25 ether), // Note: ether is only a keyword helper Payee(address(mkr), wallets.addr("ROCKY"), 1.21 ether), // Note: ether is only a keyword helper - Payee(address(usds), wallets.addr("SOLANA_BOOTSTRAPPING"), 10_000_000 * WAD), - Payee(address(sky), wallets.addr("SOLANA_BOOTSTRAPPING"), 320_000_000 * WAD) + Payee(address(usds), wallets.addr("LIQUIDITY_BOOTSTRAPPING"), 10_000_000 * WAD), + Payee(address(sky), wallets.addr("LIQUIDITY_BOOTSTRAPPING"), 320_000_000 * WAD) ]; // Fill the total values from exec sheet PaymentAmounts memory expectedTotalDiff = PaymentAmounts({ diff --git a/src/test/addresses_wallets.sol b/src/test/addresses_wallets.sol index ae38c1bbc..41220ce1b 100644 --- a/src/test/addresses_wallets.sol +++ b/src/test/addresses_wallets.sol @@ -148,7 +148,7 @@ contract Wallets { addr["LAUNCH_PROJECT_FUNDING"] = 0x3C5142F28567E6a0F172fd0BaaF1f2847f49D02F; // Sky Ecosystem Liquidity Bootstrapping - addr["SOLANA_BOOTSTRAPPING"] = 0xD8507ef0A59f37d15B5D7b630FA6EEa40CE4AFdD; + addr["LIQUIDITY_BOOTSTRAPPING"] = 0xD8507ef0A59f37d15B5D7b630FA6EEa40CE4AFdD; // Vest Managers addr["PULLUP_LABS_VEST_MGR"] = 0x9B6213D350A4AFbda2361b6572A07C90c22002F1; From 14f22c1bb55ff52a8f60f9b398594969cebe4781 Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Wed, 25 Sep 2024 21:57:38 +0200 Subject: [PATCH 13/16] fix payment --- src/DssSpell.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DssSpell.sol b/src/DssSpell.sol index 71ef3ddb0..18ea962b0 100644 --- a/src/DssSpell.sol +++ b/src/DssSpell.sol @@ -220,7 +220,7 @@ contract DssSpellAction is DssAction { // Mip: https://mips.makerdao.com/mips/details/MIP101#2-6-3-aligned-delegate-budget-and-participation-requirements // BLUE - 13.75 MKR - 0xb6C09680D822F162449cdFB8248a7D3FC26Ec9Bf - MKR.transfer(BONAPUBLICA, 13.75 ether); // Note: 'ether' is a keyword helper, only MKR is transferred here + MKR.transfer(BLUE, 13.75 ether); // Note: 'ether' is a keyword helper, only MKR is transferred here // Cloaky - 12.00 MKR - 0x869b6d5d8FA7f4FFdaCA4D23FFE0735c5eD1F818 MKR.transfer(CLOAKY, 12.00 ether); // Note: 'ether' is a keyword helper, only MKR is transferred here From b08901aabf2e5086dcdbec15ed992ae5b4fd3973 Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Wed, 25 Sep 2024 22:06:11 +0200 Subject: [PATCH 14/16] fix test --- src/DssSpell.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DssSpell.t.sol b/src/DssSpell.t.sol index 2f04be787..a1cdf044c 100644 --- a/src/DssSpell.t.sol +++ b/src/DssSpell.t.sol @@ -549,7 +549,7 @@ contract DssSpellTest is DssSpellTestBase { Payee(address(dai), wallets.addr("BYTERON"), 8_333 * WAD), Payee(address(dai), wallets.addr("ROCKY"), 8_065 * WAD), Payee(address(dai), wallets.addr("BONAPUBLICA"), 5_430 * WAD), - Payee(address(mkr), wallets.addr("BONAPUBLICA"), 13.75 ether), // Note: ether is only a keyword helper + Payee(address(mkr), wallets.addr("BLUE"), 13.75 ether), // Note: ether is only a keyword helper Payee(address(mkr), wallets.addr("CLOAKY"), 12.00 ether), // Note: ether is only a keyword helper Payee(address(mkr), wallets.addr("JULIACHANG"), 1.25 ether), // Note: ether is only a keyword helper Payee(address(mkr), wallets.addr("BYTERON"), 1.25 ether), // Note: ether is only a keyword helper From a12c2c5a12305bd61d0eaff4e344c59f1f8df07b Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Thu, 26 Sep 2024 15:03:25 +0200 Subject: [PATCH 15/16] add deployed spell info --- src/test/config.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/config.sol b/src/test/config.sol index c19080a3b..9481b1d98 100644 --- a/src/test/config.sol +++ b/src/test/config.sol @@ -103,9 +103,9 @@ contract Config { // Values for spell-specific parameters // spellValues = SpellValues({ - deployed_spell: address(0), // populate with deployed spell if deployed - deployed_spell_created: 0, // use `make deploy-info tx=` to obtain the timestamp - deployed_spell_block: 0, // use `make deploy-info tx=` to obtain the block number + deployed_spell: address(0x6e17A15427eD7A411e7d55e53C13c8cE655c35C9), // populate with deployed spell if deployed + deployed_spell_created: 1727355491, // use `make deploy-info tx=` to obtain the timestamp + deployed_spell_block: 20834938, // use `make deploy-info tx=` to obtain the block number previous_spells: prevSpells, // older spells to ensure are executed first office_hours_enabled: true, // true if officehours is expected to be enabled in the spell expiration_threshold: 30 days // Amount of time before spell expires From 2110546c6c758224e0a48d148310b0f55430a031 Mon Sep 17 00:00:00 2001 From: SidestreamColdMelon Date: Thu, 26 Sep 2024 15:24:22 +0200 Subject: [PATCH 16/16] spell archived --- archive/2024-09-27-DssSpell/DssSpell.sol | 248 ++ .../2024-09-27-DssSpell/DssSpell.t.base.sol | 2770 +++++++++++++++++ archive/2024-09-27-DssSpell/DssSpell.t.sol | 938 ++++++ .../dependencies/dss-flappers/FlapperInit.sol | 211 ++ .../dss-flappers/SplitterInstance.sol | 22 + .../test/addresses_deployers.sol | 63 + .../test/addresses_mainnet.sol | 513 +++ .../test/addresses_wallets.sol | 197 ++ archive/2024-09-27-DssSpell/test/config.sol | 1801 +++++++++++ archive/2024-09-27-DssSpell/test/rates.sol | 472 +++ .../2024-09-27-DssSpell/test/starknet.t.sol | 242 ++ 11 files changed, 7477 insertions(+) create mode 100644 archive/2024-09-27-DssSpell/DssSpell.sol create mode 100644 archive/2024-09-27-DssSpell/DssSpell.t.base.sol create mode 100644 archive/2024-09-27-DssSpell/DssSpell.t.sol create mode 100644 archive/2024-09-27-DssSpell/dependencies/dss-flappers/FlapperInit.sol create mode 100644 archive/2024-09-27-DssSpell/dependencies/dss-flappers/SplitterInstance.sol create mode 100644 archive/2024-09-27-DssSpell/test/addresses_deployers.sol create mode 100644 archive/2024-09-27-DssSpell/test/addresses_mainnet.sol create mode 100644 archive/2024-09-27-DssSpell/test/addresses_wallets.sol create mode 100644 archive/2024-09-27-DssSpell/test/config.sol create mode 100644 archive/2024-09-27-DssSpell/test/rates.sol create mode 100644 archive/2024-09-27-DssSpell/test/starknet.t.sol diff --git a/archive/2024-09-27-DssSpell/DssSpell.sol b/archive/2024-09-27-DssSpell/DssSpell.sol new file mode 100644 index 000000000..18ea962b0 --- /dev/null +++ b/archive/2024-09-27-DssSpell/DssSpell.sol @@ -0,0 +1,248 @@ +// SPDX-FileCopyrightText: © 2020 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity 0.8.16; + +import "dss-exec-lib/DssExec.sol"; +import "dss-exec-lib/DssAction.sol"; +import { GemAbstract } from "dss-interfaces/ERC/GemAbstract.sol"; +import { DssInstance, MCD } from "dss-test/MCD.sol"; + +// Note: source code matches https://github.com/makerdao/dss-flappers/blob/95431f3d4da66babf81c6e1138bd05f5ddc5e516/deploy/FlapperInit.sol +import { FlapperInit, FlapperUniV2Config } from "src/dependencies/dss-flappers/FlapperInit.sol"; + +interface MkrSkyLike { + function mkrToSky(address usr, uint256 mkrAmt) external; +} + +interface DaiUsdsLike { + function daiToUsds(address usr, uint256 wad) external; +} + +interface ProxyLike { + function exec(address target, bytes calldata args) external payable returns (bytes memory out); +} + +contract DssSpellAction is DssAction { + // Provides a descriptive tag for bot consumption + // This should be modified weekly to provide a summary of the actions + // Hash: cast keccak -- "$(wget 'https://raw.githubusercontent.com/makerdao/community/8aff80b3462461352120c9dc79598dc6dc617bdf/governance/votes/Executive%20Vote%20-%20September%2027%2C%202024.md' -q -O - 2>/dev/null)" + string public constant override description = + "2024-09-27 MakerDAO Executive Spell | Hash: 0x29461f373c49e25adfb11412908a06dc50d0817c8de117d189881057b71ad2a6"; + + // Set office hours according to the summary + function officeHours() public pure override returns (bool) { + return true; + } + + // ---------- Rates ---------- + // Many of the settings that change weekly rely on the rate accumulator + // described at https://docs.makerdao.com/smart-contract-modules/rates-module + // To check this yourself, use the following rate calculation (example 8%): + // + // $ bc -l <<< 'scale=27; e( l(1.08)/(60 * 60 * 24 * 365) )' + // + // A table of rates can be found at + // https://ipfs.io/ipfs/QmVp4mhhbwWGTfbh2BzwQB9eiBrQBKiqcPRZCaAxNUaar6 + // + // uint256 internal constant X_PCT_RATE = ; + + // ---------- Math ---------- + uint256 internal constant WAD = 10 ** 18; + uint256 internal constant RAD = 10 ** 45; + + // ---------- Contracts ---------- + GemAbstract internal immutable MKR = GemAbstract(DssExecLib.mkr()); + GemAbstract internal immutable DAI = GemAbstract(DssExecLib.dai()); + GemAbstract internal immutable SKY = GemAbstract(DssExecLib.getChangelogAddress("SKY")); + address internal immutable MCD_PAUSE_PROXY = DssExecLib.pauseProxy(); + address internal immutable MKR_SKY = DssExecLib.getChangelogAddress("MKR_SKY"); + address internal immutable DAI_USDS = DssExecLib.getChangelogAddress("DAI_USDS"); + address internal immutable USDS = DssExecLib.getChangelogAddress("USDS"); + address internal immutable MCD_SPLIT = DssExecLib.getChangelogAddress("MCD_SPLIT"); + address internal immutable MCD_VOW = DssExecLib.getChangelogAddress("MCD_VOW"); + address internal constant UNIV2USDSSKY = 0x2621CC0B3F3c079c1Db0E80794AA24976F0b9e3c; + address internal constant SWAP_ONLY_FLAPPER = 0x374D9c3d5134052Bc558F432Afa1df6575f07407; + address internal constant SWAP_ONLY_FLAP_SKY_ORACLE = 0x61A12E5b1d5E9CC1302a32f0df1B5451DE6AE437; + + // ---------- Wallets ---------- + address internal constant BLUE = 0xb6C09680D822F162449cdFB8248a7D3FC26Ec9Bf; + address internal constant CLOAKY = 0x869b6d5d8FA7f4FFdaCA4D23FFE0735c5eD1F818; + address internal constant CLOAKY_KOHLA_2 = 0x73dFC091Ad77c03F2809204fCF03C0b9dccf8c7a; + address internal constant CLOAKY_ENNOIA = 0xA7364a1738D0bB7D1911318Ca3FB3779A8A58D7b; + address internal constant JULIACHANG = 0x252abAEe2F4f4b8D39E5F12b163eDFb7fac7AED7; + address internal constant BYTERON = 0xc2982e72D060cab2387Dba96b846acb8c96EfF66; + address internal constant ROCKY = 0xC31637BDA32a0811E39456A59022D2C386cb2C85; + address internal constant BONAPUBLICA = 0x167c1a762B08D7e78dbF8f24e5C3f1Ab415021D3; + address internal constant LIQUIDITY_BOOTSTRAPPING = 0xD8507ef0A59f37d15B5D7b630FA6EEa40CE4AFdD; + + // ---------- Spark Proxy Spell ---------- + // Spark Proxy: https://github.com/marsfoundation/sparklend-deployments/blob/bba4c57d54deb6a14490b897c12a949aa035a99b/script/output/1/primary-sce-latest.json#L2 + address internal constant SPARK_PROXY = 0x3300f198988e4C9C63F75dF86De36421f06af8c4; + address internal constant SPARK_SPELL = 0xc80621140bEe6A105C180Ae7cb0a084c2409C738; + + function actions() public override { + // ---------- SBE Updates ---------- + // Forum: https://forum.makerdao.com/t/smart-burn-engine-transaction-analysis-and-parameter-reconfiguration-update-9/25078 + // Poll: https://vote.makerdao.com/polling/QmSxswGN + + // Note: DssInstance is required by multiple init calls below + DssInstance memory dss = MCD.loadFromChainlog(DssExecLib.LOG); + + // Init new Flapper by calling FlapperInit.initFlapperUniV2 with the following parameters: + FlapperInit.initFlapperUniV2( + + // Note: DssInstance is required by the init library + dss, + + // Init new Flapper with flapper_: FlapperUniV2SwapOnly (0x374D9c3d5134052Bc558F432Afa1df6575f07407) + SWAP_ONLY_FLAPPER, + + FlapperUniV2Config({ + + // Init new Flapper with want: 0.98 * WAD + want: 98 * WAD / 100, + + // Init new Flapper with pip: SWAP_ONLY_FLAP_SKY_ORACLE (0x61A12E5b1d5E9CC1302a32f0df1B5451DE6AE437) + pip: SWAP_ONLY_FLAP_SKY_ORACLE, + + // Init new Flapper with pair: PAIR_USDS_SKY (0x2621CC0B3F3c079c1Db0E80794AA24976F0b9e3c) + pair: UNIV2USDSSKY, + + // Init new Flapper with usds: dss.chainlog.getAddress("USDS") + usds: USDS, + + // Init new Flapper with splitter: dss.chainlog.getAddress("MCD_SPLIT") + splitter: MCD_SPLIT, + + // Init new Flapper with prevChainlogKey: bytes32(0) + prevChainlogKey: bytes32(0), + + // Init new Flapper with chainlogKey: "MCD_FLAP" + chainlogKey: "MCD_FLAP" + }) + ); + + // Init new OracleWrapper by calling FlapperInit.initOracleWrapper with the following parameters: + FlapperInit.initOracleWrapper( + // Note: DssInstance is required by the init library + dss, + + // Init new OracleWrapper with wrapper_: SWAP_ONLY_FLAP_SKY_ORACLE (0x61A12E5b1d5E9CC1302a32f0df1B5451DE6AE437) + SWAP_ONLY_FLAP_SKY_ORACLE, + + // Init new OracleWrapper with divisor: 24,000 + 24_000, + + // Init new OracleWrapper with clKey: "FLAP_SKY_ORACLE" + "FLAP_SKY_ORACLE" + ); + + // Additional Actions + + // Increase vow.hop by 1386 seconds from 10249 seconds to 11635 seconds + DssExecLib.setValue(MCD_SPLIT, "hop", 11_635); + + // Decrease vow.bump by 40000 USDS from 65000 USDS to 25000 USDS + DssExecLib.setValue(MCD_VOW, "bump", 25_000 * RAD); + + // Note: bump minor chainlog version due to the new flapper contract + DssExecLib.setChangelogVersion("1.19.0"); + + // ---------- Sky Ecosystem Liquidity Bootstrapping ---------- + // Forum: https://forum.makerdao.com/t/atlas-edit-weekly-cycle-proposal-week-of-2024-09-23/25179 + // Poll: https://vote.makerdao.com/polling/QmfYzKTh + + // Transfer 10,000,000 DAI to the Pause Proxy from the Surplus Buffer + DssExecLib.sendPaymentFromSurplusBuffer(MCD_PAUSE_PROXY, 10_000_000); + + // Note: we have to approve DAI_USDS contract to convert DAI into USDS + DAI.approve(DAI_USDS, 10_000_000 * WAD); + + // Convert 10,000,000 DAI to USDS using DAI_USDS + // Note: this is done by the next line of code + + // Transfer 10,000,000 USDS from PauseProxy to 0xD8507ef0A59f37d15B5D7b630FA6EEa40CE4AFdD + DaiUsdsLike(DAI_USDS).daiToUsds(LIQUIDITY_BOOTSTRAPPING, 10_000_000 * WAD); + + // Note: we have to approve MKR_SKY contract to convert MKR into SKY + MKR.approve(MKR_SKY, 13_334 * WAD); + + // Convert 13,334 MKR held in Pause Proxy to SKY (use MKR_SKY contract) + MkrSkyLike(MKR_SKY).mkrToSky(MCD_PAUSE_PROXY, 13_334 * WAD); + + // Transfer 320,000,000 SKY to 0xD8507ef0A59f37d15B5D7b630FA6EEa40CE4AFdD + SKY.transfer(LIQUIDITY_BOOTSTRAPPING, 320_000_000 * WAD); + + // ---------- Aligned Delegate DAI Compensation ---------- + // Forum: https://forum.makerdao.com/t/august-2024-aligned-delegate-compensation/25165 + // Mip: https://mips.makerdao.com/mips/details/MIP101#2-6-3-aligned-delegate-budget-and-participation-requirements + + // BLUE - 54167 DAI - 0xb6C09680D822F162449cdFB8248a7D3FC26Ec9Bf + DssExecLib.sendPaymentFromSurplusBuffer(BLUE, 54_167); + + // Cloaky - 20417 DAI - 0x869b6d5d8FA7f4FFdaCA4D23FFE0735c5eD1F818 + DssExecLib.sendPaymentFromSurplusBuffer(CLOAKY, 20_417); + + // Kohla (Cloaky) - 10000 DAI - 0x73dFC091Ad77c03F2809204fCF03C0b9dccf8c7a + DssExecLib.sendPaymentFromSurplusBuffer(CLOAKY_KOHLA_2, 10_000); + + // Ennoia (Cloaky) - 10000 DAI - 0xA7364a1738D0bB7D1911318Ca3FB3779A8A58D7b + DssExecLib.sendPaymentFromSurplusBuffer(CLOAKY_ENNOIA, 10_000); + + // JuliaChang - 8333 DAI - 0x252abAEe2F4f4b8D39E5F12b163eDFb7fac7AED7 + DssExecLib.sendPaymentFromSurplusBuffer(JULIACHANG, 8_333); + + // Byteron - 8333 DAI - 0xc2982e72D060cab2387Dba96b846acb8c96EfF66 + DssExecLib.sendPaymentFromSurplusBuffer(BYTERON, 8_333); + + // Rocky - 8065 DAI - 0xC31637BDA32a0811E39456A59022D2C386cb2C85 + DssExecLib.sendPaymentFromSurplusBuffer(ROCKY, 8_065); + + // BONAPUBLICA - 5430 DAI - 0x167c1a762B08D7e78dbF8f24e5C3f1Ab415021D3 + DssExecLib.sendPaymentFromSurplusBuffer(BONAPUBLICA, 5_430); + + // ---------- Aligned Delegate MKR Compensation ---------- + // Forum: https://forum.makerdao.com/t/august-2024-aligned-delegate-compensation/25165 + // Mip: https://mips.makerdao.com/mips/details/MIP101#2-6-3-aligned-delegate-budget-and-participation-requirements + + // BLUE - 13.75 MKR - 0xb6C09680D822F162449cdFB8248a7D3FC26Ec9Bf + MKR.transfer(BLUE, 13.75 ether); // Note: 'ether' is a keyword helper, only MKR is transferred here + + // Cloaky - 12.00 MKR - 0x869b6d5d8FA7f4FFdaCA4D23FFE0735c5eD1F818 + MKR.transfer(CLOAKY, 12.00 ether); // Note: 'ether' is a keyword helper, only MKR is transferred here + + // JuliaChang - 1.25 MKR - 0x252abAEe2F4f4b8D39E5F12b163eDFb7fac7AED7 + MKR.transfer(JULIACHANG, 1.25 ether); // Note: 'ether' is a keyword helper, only MKR is transferred here + + // Byteron - 1.25 MKR - 0xc2982e72D060cab2387Dba96b846acb8c96EfF66 + MKR.transfer(BYTERON, 1.25 ether); // Note: 'ether' is a keyword helper, only MKR is transferred here + + // Rocky - 1.21 MKR - 0xC31637BDA32a0811E39456A59022D2C386cb2C85 + MKR.transfer(ROCKY, 1.21 ether); // Note: 'ether' is a keyword helper, only MKR is transferred here + + // ---------- Spark Spell ---------- + // Forum: https://forum.makerdao.com/t/sep-12-2024-proposed-changes-to-spark-for-upcoming-spell/25076 + // Poll: https://vote.makerdao.com/polling/QmPFkXna + + // Execute Spark Proxy Spell at 0xc80621140bEe6A105C180Ae7cb0a084c2409C738 + ProxyLike(SPARK_PROXY).exec(SPARK_SPELL, abi.encodeWithSignature("execute()")); + } +} + +contract DssSpell is DssExec { + constructor() DssExec(block.timestamp + 30 days, address(new DssSpellAction())) {} +} diff --git a/archive/2024-09-27-DssSpell/DssSpell.t.base.sol b/archive/2024-09-27-DssSpell/DssSpell.t.base.sol new file mode 100644 index 000000000..e9377220e --- /dev/null +++ b/archive/2024-09-27-DssSpell/DssSpell.t.base.sol @@ -0,0 +1,2770 @@ +// SPDX-FileCopyrightText: © 2020 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity 0.8.16; + +import "dss-interfaces/Interfaces.sol"; +import {DssTest, GodMode} from "dss-test/DssTest.sol"; +import {stdStorage, StdStorage} from "forge-std/Test.sol"; + +import "./test/rates.sol"; +import "./test/addresses_mainnet.sol"; +import "./test/addresses_deployers.sol"; +import "./test/addresses_wallets.sol"; +import "./test/config.sol"; + +import {DssSpell} from "./DssSpell.sol"; + +struct TeleportGUID { + bytes32 sourceDomain; + bytes32 targetDomain; + bytes32 receiver; + bytes32 operator; + uint128 amount; + uint80 nonce; + uint48 timestamp; +} + +interface DirectDepositLike is GemJoinAbstract { + function file(bytes32, uint256) external; + function exec() external; + function tau() external view returns (uint256); + function tic() external view returns (uint256); + function bar() external view returns (uint256); + function king() external view returns (address); +} + +interface AaveDirectDepositLike is DirectDepositLike { + function adai() external view returns (address); +} + +interface CropperLike { + function getOrCreateProxy(address usr) external returns (address urp); + function join(address crop, address usr, uint256 val) external; + function exit(address crop, address usr, uint256 val) external; + function frob(bytes32 ilk, address u, address v, address w, int256 dink, int256 dart) external; +} + +interface CropJoinLike { + function wards(address) external view returns (uint256); + function gem() external view returns (address); + function bonus() external view returns (address); +} + +interface CurveLPOsmLike is LPOsmAbstract { + function orbs(uint256) external view returns (address); +} + +interface TeleportJoinLike { + function wards(address) external view returns (uint256); + function fees(bytes32) external view returns (address); + function line(bytes32) external view returns (uint256); + function debt(bytes32) external view returns (int256); + function vow() external view returns (address); + function vat() external view returns (address); + function daiJoin() external view returns (address); + function ilk() external view returns (bytes32); + function domain() external view returns (bytes32); +} + +interface TeleportFeeLike { + function fee() external view returns (uint256); + function ttl() external view returns (uint256); +} + +interface TeleportOracleAuthLike { + function wards(address) external view returns (uint256); + function signers(address) external view returns (uint256); + function teleportJoin() external view returns (address); + function threshold() external view returns (uint256); + function addSigners(address[] calldata) external; + function getSignHash(TeleportGUID calldata) external pure returns (bytes32); + function requestMint( + TeleportGUID calldata, + bytes calldata, + uint256, + uint256 + ) external returns (uint256, uint256); +} + +interface TeleportRouterLike { + function wards(address) external view returns (uint256); + function file(bytes32, bytes32, address) external; + function gateways(bytes32) external view returns (address); + function domains(address) external view returns (bytes32); + function numDomains() external view returns (uint256); + function dai() external view returns (address); + function requestMint( + TeleportGUID calldata, + uint256, + uint256 + ) external returns (uint256, uint256); + function settle(bytes32, uint256) external; +} + +interface TeleportBridgeLike { + function l1Escrow() external view returns (address); + function l1TeleportRouter() external view returns (address); + function l1Token() external view returns (address); +} + +interface OptimismTeleportBridgeLike is TeleportBridgeLike { + function l2TeleportGateway() external view returns (address); + function messenger() external view returns (address); +} + +interface ArbitrumTeleportBridgeLike is TeleportBridgeLike { + function l2TeleportGateway() external view returns (address); + function inbox() external view returns (address); +} + +interface StarknetTeleportBridgeLike { + function l2TeleportGateway() external view returns (uint256); + function starkNet() external view returns (address); +} + +interface RwaLiquidationLike { + function ilks(bytes32) external view returns (string memory, address, uint48, uint48); +} + +interface AuthorityLike { + function authority() external view returns (address); +} + +interface SplitterMomLike { + function authority() external view returns (address); + function stop() external; +} + +// TODO: add full interfaces to dss-interfaces and remove from here +interface FlapUniV2Like { + function gem() external view returns (address); + function pair() external view returns (address); + function pip() external view returns (address); + function want() external view returns (uint256); +} + +// TODO: add full interfaces to dss-interfaces and remove from here +interface SplitLike { + function burn() external view returns (uint256); + function farm() external view returns (address); + function flapper() external view returns (address); + function hop() external view returns (uint256); +} + +interface FlapOracleLike { + function read() external view returns (bytes32); +} + +// TODO: add full interfaces to dss-interfaces and remove from here +interface UsdsJoinLike is DaiJoinAbstract {} + +interface SUsdsLike { + function allowance(address, address) external view returns (uint256); + function approve(address spender, uint256 value) external returns (bool); + function asset() external view returns (address); + function balanceOf(address) external view returns (uint256); + function chi() external view returns (uint192); + function convertToAssets(uint256 shares) external view returns (uint256); + function convertToShares(uint256 assets) external view returns (uint256); + function deposit(uint256 assets, address receiver) external returns (uint256 shares); + function drip() external returns (uint256 nChi); + function redeem(uint256 shares, address receiver, address owner) external returns (uint256 assets); + function rho() external view returns (uint64); + function ssr() external view returns (uint256); +} + +interface DaiUsdsLike { + function daiToUsds(address usr, uint256 wad) external; + function usdsToDai(address usr, uint256 wad) external; +} + +interface MkrSkyLike { + function mkrToSky(address usr, uint256 mkrAmt) external; + function skyToMkr(address usr, uint256 skyAmt) external; +} + +interface LitePsmLike { + function bud(address) external view returns (uint256); + function buf() external view returns (uint256); + function buyGem(address usr, uint256 gemAmt) external returns (uint256 daiInWad); + function buyGemNoFee(address usr, uint256 gemAmt) external returns (uint256 daiInWad); + function chug() external returns (uint256 wad); + function cut() external view returns (uint256 wad); + function daiJoin() external view returns (address); + function file(bytes32 what, uint256 data) external; + function fill() external returns (uint256 wad); + function gem() external view returns (address); + function gemJoin() external view returns (address); + function gush() external view returns (uint256 wad); + function ilk() external view returns (bytes32); + function kiss(address usr) external; + function pocket() external view returns (address); + function rush() external view returns (uint256 wad); + function sellGem(address usr, uint256 gemAmt) external returns (uint256 daiOutWad); + function sellGemNoFee(address usr, uint256 gemAmt) external returns (uint256 daiOutWad); + function tin() external view returns (uint256); + function to18ConversionFactor() external view returns (uint256); + function tout() external view returns (uint256); + function trim() external returns (uint256 wad); + function vow() external view returns (address); + function wards(address) external view returns (uint256); +} + +interface LitePsmMomLike is AuthorityLike { + function halt(address, uint8) external; +} + +contract DssSpellTestBase is Config, DssTest { + using stdStorage for StdStorage; + + Rates rates = new Rates(); + Addresses addr = new Addresses(); + Deployers deployers = new Deployers(); + Wallets wallets = new Wallets(); + + // ADDRESSES + ChainlogAbstract chainLog = ChainlogAbstract( addr.addr("CHANGELOG")); + DSPauseAbstract pause = DSPauseAbstract( addr.addr("MCD_PAUSE")); + address pauseProxy = addr.addr("MCD_PAUSE_PROXY"); + DSChiefAbstract chief = DSChiefAbstract( addr.addr("MCD_ADM")); + VatAbstract vat = VatAbstract( addr.addr("MCD_VAT")); + VowAbstract vow = VowAbstract( addr.addr("MCD_VOW")); + DogAbstract dog = DogAbstract( addr.addr("MCD_DOG")); + PotAbstract pot = PotAbstract( addr.addr("MCD_POT")); + JugAbstract jug = JugAbstract( addr.addr("MCD_JUG")); + SpotAbstract spotter = SpotAbstract( addr.addr("MCD_SPOT")); + DaiAbstract dai = DaiAbstract( addr.addr("MCD_DAI")); + DaiJoinAbstract daiJoin = DaiJoinAbstract( addr.addr("MCD_JOIN_DAI")); + GemAbstract usds = GemAbstract( addr.addr("USDS")); + SUsdsLike susds = SUsdsLike( addr.addr("SUSDS")); + UsdsJoinLike usdsJoin = UsdsJoinLike( addr.addr("USDS_JOIN")); + DSTokenAbstract gov = DSTokenAbstract( addr.addr("MCD_GOV")); + DSTokenAbstract mkr = DSTokenAbstract( addr.addr("MCD_GOV")); + GemAbstract sky = GemAbstract( addr.addr("SKY")); + EndAbstract end = EndAbstract( addr.addr("MCD_END")); + ESMAbstract esm = ESMAbstract( addr.addr("MCD_ESM")); + CureAbstract cure = CureAbstract( addr.addr("MCD_CURE")); + IlkRegistryAbstract reg = IlkRegistryAbstract(addr.addr("ILK_REGISTRY")); + SplitLike split = SplitLike( addr.addr("MCD_SPLIT")); + FlapUniV2Like flap = FlapUniV2Like( addr.addr("MCD_FLAP")); + CropperLike cropper = CropperLike( addr.addr("MCD_CROPPER")); + + OsmMomAbstract osmMom = OsmMomAbstract( addr.addr("OSM_MOM")); + ClipperMomAbstract clipMom = ClipperMomAbstract( addr.addr("CLIPPER_MOM")); + AuthorityLike d3mMom = AuthorityLike( addr.addr("DIRECT_MOM")); + AuthorityLike lineMom = AuthorityLike( addr.addr("LINE_MOM")); + AuthorityLike litePsmMom = AuthorityLike( addr.addr("LITE_PSM_MOM")); + SplitterMomLike splitterMom = SplitterMomLike( addr.addr("SPLITTER_MOM")); + DssAutoLineAbstract autoLine = DssAutoLineAbstract(addr.addr("MCD_IAM_AUTO_LINE")); + LerpFactoryAbstract lerpFactory = LerpFactoryAbstract(addr.addr("LERP_FAB")); + VestAbstract vestDai = VestAbstract( addr.addr("MCD_VEST_DAI")); + VestAbstract vestMkr = VestAbstract( addr.addr("MCD_VEST_MKR_TREASURY")); + VestAbstract vestSky = VestAbstract( addr.addr("MCD_VEST_SKY")); + RwaLiquidationLike liquidationOracle = RwaLiquidationLike( addr.addr("MIP21_LIQUIDATION_ORACLE")); + + DssSpell spell; + + event Debug(uint256 index, uint256 val); + event Debug(uint256 index, address addr); + event Debug(uint256 index, bytes32 what); + + function _rmul(uint256 x, uint256 y) internal pure returns (uint256 z) { + z = (x * y + RAY / 2) / RAY; + } + + // not provided in DSMath + function _rpow(uint256 x, uint256 n, uint256 b) internal pure returns (uint256 z) { + assembly { + switch x case 0 {switch n case 0 {z := b} default {z := 0}} + default { + switch mod(n, 2) case 0 { z := b } default { z := x } + let half := div(b, 2) // for rounding. + for { n := div(n, 2) } n { n := div(n,2) } { + let xx := mul(x, x) + if iszero(eq(div(xx, x), x)) { revert(0,0) } + let xxRound := add(xx, half) + if lt(xxRound, xx) { revert(0,0) } + x := div(xxRound, b) + if mod(n,2) { + let zx := mul(z, x) + if and(iszero(iszero(x)), iszero(eq(div(zx, x), z))) { revert(0,0) } + let zxRound := add(zx, half) + if lt(zxRound, zx) { revert(0,0) } + z := div(zxRound, b) + } + } + } + } + } + + function _divup(uint256 x, uint256 y) internal pure returns (uint256 z) { + unchecked { + z = x != 0 ? ((x - 1) / y) + 1 : 0; + } + } + + // not provided in DSTest + function _assertEqApprox(uint256 _a, uint256 _b, uint256 _tolerance) internal { + uint256 a = _a; + uint256 b = _b; + if (a < b) { + uint256 tmp = a; + a = b; + b = tmp; + } + if (a - b > _tolerance) { + emit log_bytes32("Error: Wrong `uint' value"); + emit log_named_uint(" Expected", _b); + emit log_named_uint(" Actual", _a); + fail(); + } + } + + function _cmpStr(string memory a, string memory b) internal pure returns (bool) { + return (keccak256(abi.encodePacked((a))) == keccak256(abi.encodePacked((b)))); + } + + function _concat(string memory a, string memory b) internal pure returns (string memory) { + return string.concat(a, b); + } + + function _concat(string memory a, bytes32 b) internal pure returns (string memory) { + return string.concat(a, _bytes32ToString(b)); + } + + function _bytes32ToString(bytes32 _bytes32) internal pure returns (string memory) { + uint256 charCount = 0; + while(charCount < 32 && _bytes32[charCount] != 0) { + charCount++; + } + bytes memory bytesArray = new bytes(charCount); + for (uint256 i = 0; i < charCount; i++) { + bytesArray[i] = _bytes32[i]; + } + return string(bytesArray); + } + + function _stringToBytes32(string memory source) internal pure returns (bytes32 result) { + assembly { + result := mload(add(source, 32)) + } + } + + /** + * @dev Add this modifier to a test to skip it. + * It will still show in the test report, but with a `[SKIP]` label added to it. + * This is meant to be used for tests that need to be enabled/disabled on-demand. + */ + modifier skipped() { + vm.skip(true); + _; + } + + modifier skippedWhenDeployed() { + if (spellValues.deployed_spell != address(0)) { + vm.skip(true); + } + _; + } + + modifier skippedWhenNotDeployed() { + if (spellValues.deployed_spell == address(0)) { + vm.skip(true); + } + _; + } + + // 10^-5 (tenth of a basis point) as a RAY + uint256 TOLERANCE = 10 ** 22; + + function _yearlyYield(uint256 duty) internal pure returns (uint256) { + return _rpow(duty, (365 * 24 * 60 * 60), RAY); + } + + function _expectedRate(uint256 percentValue) internal pure returns (uint256) { + return (10000 + percentValue) * (10 ** 23); + } + + function _diffCalc( + uint256 expectedRate_, + uint256 yearlyYield_ + ) internal pure returns (uint256) { + return (expectedRate_ > yearlyYield_) ? + expectedRate_ - yearlyYield_ : yearlyYield_ - expectedRate_; + } + + function _castPreviousSpell() internal { + address[] memory prevSpells = spellValues.previous_spells; + + // warp and cast previous spells so values are up-to-date to test against + for (uint256 i; i < prevSpells.length; i++) { + DssSpell prevSpell = DssSpell(prevSpells[i]); + if (prevSpell != DssSpell(address(0)) && !prevSpell.done()) { + if (prevSpell.eta() == 0) { + _vote(address(prevSpell)); + _scheduleWaitAndCast(address(prevSpell)); + } + else { + // jump to nextCastTime to be a little more forgiving on the spell execution time + vm.warp(prevSpell.nextCastTime()); + prevSpell.cast(); + } + } + } + } + + function setUp() public { + setValues(address(chief)); + _castPreviousSpell(); + + spellValues.deployed_spell_created = spellValues.deployed_spell != address(0) + ? spellValues.deployed_spell_created + : block.timestamp; + spell = spellValues.deployed_spell != address(0) + ? DssSpell(spellValues.deployed_spell) + : new DssSpell(); + + if (spellValues.deployed_spell_block != 0 && spell.eta() != 0) { + // if we have a deployed spell in the config + // we want to roll our fork to the block where it was deployed + // this means the test suite will continue to accurately pass/fail + // even if mainnet has already scheduled/cast the spell + vm.makePersistent(address(rates)); + vm.makePersistent(address(addr)); + vm.makePersistent(address(deployers)); + vm.makePersistent(address(wallets)); + vm.rollFork(spellValues.deployed_spell_block); + + // Reset `eta` to `0`, otherwise the tests will fail with "This spell has already been scheduled". + // This is a workaround for the issue described here: + // @see { https://github.com/foundry-rs/foundry/issues/5739 } + vm.store( + address(spell), + bytes32(0), + bytes32(0) + ); + } + } + + function _vote(address spell_) internal { + if (chief.hat() != spell_) { + _giveTokens(address(gov), 999999999999 ether); + gov.approve(address(chief), type(uint256).max); + chief.lock(999999999999 ether); + + address[] memory slate = new address[](1); + + assertFalse(DssSpell(spell_).done(), "TestError/spell-done-before-vote"); + + slate[0] = spell_; + + chief.vote(slate); + chief.lift(spell_); + } + assertEq(chief.hat(), spell_); + } + + function _scheduleWaitAndCast(address spell_) internal { + DssSpell(spell_).schedule(); + + vm.warp(DssSpell(spell_).nextCastTime()); + + DssSpell(spell_).cast(); + } + + function _checkSystemValues(SystemValues storage values) internal { + // dsr + uint256 expectedDSRRate = rates.rates(values.pot_dsr); + // make sure dsr is less than 100% APR + // bc -l <<< 'scale=27; e( l(2.00)/(60 * 60 * 24 * 365) )' + // 1000000021979553151239153027 + assertEq(pot.dsr(), expectedDSRRate, "TestError/pot-dsr-expected-value"); + assertTrue( + pot.dsr() >= RAY && pot.dsr() < 1000000021979553151239153027, + "TestError/pot-dsr-range" + ); + assertTrue( + _diffCalc(_expectedRate(values.pot_dsr), _yearlyYield(expectedDSRRate)) <= TOLERANCE, + "TestError/pot-dsr-rates-table" + ); + + // ssr + uint256 expectedSSRRate = rates.rates(values.susds_ssr); + // make sure dsr is less than 100% APR + // bc -l <<< 'scale=27; e( l(2.00)/(60 * 60 * 24 * 365) )' + // 1000000021979553151239153027 + assertEq(susds.ssr(), expectedSSRRate, "TestError/susds-ssr-expected-value"); + assertTrue( + susds.ssr() >= RAY && susds.ssr() < 1000000021979553151239153027, + "TestError/susds-ssr-range" + ); + assertTrue( + _diffCalc(_expectedRate(values.susds_ssr), _yearlyYield(expectedSSRRate)) <= TOLERANCE, + "TestError/susds-ssr-rates-table" + ); + // SSR should always be higher than or equal to DSR + assertGe(expectedSSRRate, expectedDSRRate, "TestError/ssr-lower-than-dsr"); + + { + // Line values in RAD + assertTrue( + (vat.Line() >= RAD && vat.Line() < 100 * BILLION * RAD) || + vat.Line() == 0, + "TestError/vat-Line-range" + ); + } + + // Pause delay + assertEq(pause.delay(), values.pause_delay, "TestError/pause-delay"); + + // wait + assertEq(vow.wait(), values.vow_wait, "TestError/vow-wait"); + { + // dump values in WAD + uint256 normalizedDump = values.vow_dump * WAD; + assertEq(vow.dump(), normalizedDump, "TestError/vow-dump"); + assertTrue( + (vow.dump() >= WAD && vow.dump() < 2 * THOUSAND * WAD) || + vow.dump() == 0, + "TestError/vow-dump-range" + ); + } + { + // sump values in RAD + uint256 normalizedSump = values.vow_sump * RAD; + assertEq(vow.sump(), normalizedSump, "TestError/vow-sump"); + assertTrue( + (vow.sump() >= RAD && vow.sump() < 500 * THOUSAND * RAD) || + vow.sump() == 0, + "TestError/vow-sump-range" + ); + } + { + // bump values in RAD + uint256 normalizedBump = values.vow_bump * RAD; + assertEq(vow.bump(), normalizedBump, "TestError/vow-bump"); + assertTrue( + (vow.bump() >= RAD && vow.bump() < 100 * THOUSAND * RAD) || + vow.bump() == 0, + "TestError/vow-bump-range" + ); + } + { + // hump values in RAD + uint256 normalizedHumpMin = values.vow_hump_min * RAD; + uint256 normalizedHumpMax = values.vow_hump_max * RAD; + assertTrue(vow.hump() >= normalizedHumpMin && vow.hump() <= normalizedHumpMax, "TestError/vow-hump-min-max"); + assertTrue( + (vow.hump() >= RAD && vow.hump() < 1 * BILLION * RAD) || + vow.hump() == 0, + "TestError/vow-hump-range" + ); + } + + // Hole value in RAD + { + uint256 normalizedHole = values.dog_Hole * RAD; + assertEq(dog.Hole(), normalizedHole, "TestError/dog-Hole"); + assertTrue(dog.Hole() >= MILLION * RAD && dog.Hole() <= 200 * MILLION * RAD, "TestError/dog-Hole-range"); + } + + // ESM min in WAD + { + uint256 normalizedMin = values.esm_min * WAD; + assertEq(esm.min(), normalizedMin, "TestError/esm-min"); + assertTrue(esm.min() > WAD && esm.min() < 400 * THOUSAND * WAD, "TestError/esm-min-range"); + } + + // check Pause authority + assertEq(pause.authority(), values.pause_authority, "TestError/pause-authority"); + + // check OsmMom authority + assertEq(osmMom.authority(), values.osm_mom_authority, "TestError/osmMom-authority"); + + // check ClipperMom authority + assertEq(clipMom.authority(), values.clipper_mom_authority, "TestError/clipperMom-authority"); + + // check D3MMom authority + assertEq(d3mMom.authority(), values.d3m_mom_authority, "TestError/d3mMom-authority"); + + // check LineMom authority + assertEq(lineMom.authority(), values.line_mom_authority, "TestError/lineMom-authority"); + + // check LitePsmMom authority + assertEq(litePsmMom.authority(), values.lite_psm_mom_authority, "TestError/linePsmMom-authority"); + + // check SplitterMom authority + assertEq(splitterMom.authority(), values.splitter_mom_authority, "TestError/splitterMom-authority"); + + // check number of ilks + assertEq(reg.count(), values.ilk_count, "TestError/ilks-count"); + + // split + { + // check split hop and sanity checks + assertEq(split.hop(), values.split_hop, "TestError/split-hop"); + assertTrue(split.hop() > 0 && split.hop() < 86400, "TestError/split-hop-range"); // gt 0 && lt 1 day + // check burn value + uint256 normalizedTestBurn = values.split_burn * 10**14; + assertEq(split.burn(), normalizedTestBurn, "TestError/split-burn"); + assertTrue(split.burn() >= 50 * WAD / 100 && split.burn() <= 1 * WAD, "TestError/split-burn-range"); // gte 50% and lte 100% + } + + // flap + { + // check want value + uint256 normalizedTestWant = values.flap_want * 10**14; + assertEq(flap.want(), normalizedTestWant, "TestError/flap-want"); + assertTrue(flap.want() >= 90 * WAD / 100 && flap.want() <= 110 * WAD / 100, "TestError/flap-want-range"); // gte 90% and lte 110% + } + + // vest + { + assertEq(vestDai.cap(), values.vest_dai_cap, "TestError/vest-dai-cap"); + assertEq(vestMkr.cap(), values.vest_mkr_cap, "TestError/vest-mkr-cap"); + assertEq(vestSky.cap(), values.vest_sky_cap, "TestError/vest-sky-cap"); + } + + assertEq(vat.wards(pauseProxy), uint256(1), "TestError/pause-proxy-deauthed-on-vat"); + + // transferrable vest + // check mkr allowance + _checkTransferrableVestMkrAllowance(); + } + + function _checkCollateralValues(SystemValues storage values) internal { + // Using an array to work around stack depth limitations. + // sums[0] : sum of all lines + // sums[1] : sum over ilks of (line - Art * rate)--i.e. debt that could be drawn at any time + uint256[] memory sums = new uint256[](2); + bytes32[] memory ilks = reg.list(); + for(uint256 i = 0; i < ilks.length; i++) { + bytes32 ilk = ilks[i]; + (uint256 duty,) = jug.ilks(ilk); + + assertEq(duty, rates.rates(values.collaterals[ilk].pct), _concat("TestError/jug-duty-", ilk)); + // make sure duty is less than 1000% APR + // bc -l <<< 'scale=27; e( l(10.00)/(60 * 60 * 24 * 365) )' + // 1000000073014496989316680335 + assertTrue(duty >= RAY && duty < 1000000073014496989316680335, _concat("TestError/jug-duty-range-", ilk)); // gt 0 and lt 1000% + assertTrue( + _diffCalc(_expectedRate(values.collaterals[ilk].pct), _yearlyYield(rates.rates(values.collaterals[ilk].pct))) <= TOLERANCE, + _concat("TestError/rates-", ilk) + ); + assertTrue(values.collaterals[ilk].pct < THOUSAND * THOUSAND, _concat("TestError/pct-max-", ilk)); // check value lt 1000% + { + uint256 line; + uint256 dust; + { + uint256 Art; + uint256 rate; + (Art, rate,, line, dust) = vat.ilks(ilk); + if (Art * rate < line) { + sums[1] += line - Art * rate; + } + } + // Convert whole Dai units to expected RAD + uint256 normalizedTestLine = values.collaterals[ilk].line * RAD; + sums[0] += line; + (uint256 aL_line, uint256 aL_gap, uint256 aL_ttl,,) = autoLine.ilks(ilk); + if (!values.collaterals[ilk].aL_enabled) { + assertTrue(aL_line == 0, _concat("TestError/al-Line-not-zero-", ilk)); + assertEq(line, normalizedTestLine, _concat("TestError/vat-line-", ilk)); + assertTrue((line >= RAD && line < 10 * BILLION * RAD) || line == 0, _concat("TestError/vat-line-range-", ilk)); // eq 0 or gt eq 1 RAD and lt 10B + } else { + assertTrue(aL_line > 0, _concat("TestError/al-Line-is-zero-", ilk)); + assertEq(aL_line, values.collaterals[ilk].aL_line * RAD, _concat("TestError/al-line-", ilk)); + assertEq(aL_gap, values.collaterals[ilk].aL_gap * RAD, _concat("TestError/al-gap-", ilk)); + assertEq(aL_ttl, values.collaterals[ilk].aL_ttl, _concat("TestError/al-ttl-", ilk)); + assertTrue((aL_line >= RAD && aL_line < 20 * BILLION * RAD) || aL_line == 0, _concat("TestError/al-line-range-", ilk)); // eq 0 or gt eq 1 RAD and lt 10B + } + uint256 normalizedTestDust = values.collaterals[ilk].dust * RAD; + assertEq(dust, normalizedTestDust, _concat("TestError/vat-dust-", ilk)); + assertTrue((dust >= RAD && dust <= 100 * THOUSAND * RAD) || dust == 0, _concat("TestError/vat-dust-range-", ilk)); // eq 0 or gt eq 1 and lte 100k + } + + { + (address pip, uint256 mat) = spotter.ilks(ilk); + if (pip != address(0)) { + // Convert BP to system expected value + uint256 normalizedTestMat = (values.collaterals[ilk].mat * 10**23); + if (values.collaterals[ilk].offboarding) { + assertTrue(mat <= normalizedTestMat, _concat("TestError/vat-lerping-mat-", ilk)); + assertTrue(mat >= RAY && mat <= 300 * RAY, _concat("TestError/vat-mat-range-", ilk)); // cr gt 100% and lt 30000% + } else { + assertEq(mat, normalizedTestMat, _concat("TestError/vat-mat-", ilk)); + assertTrue(mat >= RAY && mat < 10 * RAY, _concat("TestError/vat-mat-range-", ilk)); // cr gt 100% and lt 1000% + } + } + } + + if (values.collaterals[ilk].liqType == "flip") { + // NOTE: MCD_CAT has been scuttled in the spell on 2023-09-13 + revert("TestError/flip-deprecated"); + } + if (values.collaterals[ilk].liqType == "clip") { + { + assertEq(reg.class(ilk), 1, _concat("TestError/reg-class-", ilk)); + (bool ok, bytes memory val) = reg.xlip(ilk).call(abi.encodeWithSignature("dog()")); + assertTrue(ok, _concat("TestError/reg-xlip-dog-", ilk)); + assertEq(abi.decode(val, (address)), address(dog), _concat("TestError/reg-xlip-dog-", ilk)); + } + { + (, uint256 chop, uint256 hole,) = dog.ilks(ilk); + // Convert BP to system expected value + uint256 normalizedTestChop = (values.collaterals[ilk].chop * 10**14) + WAD; + assertEq(chop, normalizedTestChop, _concat("TestError/dog-chop-", ilk)); + // make sure chop is less than 100% + assertTrue(chop >= WAD && chop < 2 * WAD, _concat("TestError/dog-chop-range-", ilk)); // penalty gt eq 0% and lt 100% + + // Convert whole Dai units to expected RAD + uint256 normalizedTesthole = values.collaterals[ilk].dog_hole * RAD; + assertEq(hole, normalizedTesthole, _concat("TestError/dog-hole-", ilk)); + assertTrue(hole == 0 || hole >= RAD && hole <= 100 * MILLION * RAD, _concat("TestError/dog-hole-range-", ilk)); + } + (address clipper,,,) = dog.ilks(ilk); + assertTrue(clipper != address(0), _concat("TestError/invalid-clip-address-", ilk)); + ClipAbstract clip = ClipAbstract(clipper); + { + // Convert BP to system expected value + uint256 normalizedTestBuf = values.collaterals[ilk].clip_buf * 10**23; + assertEq(uint256(clip.buf()), normalizedTestBuf, _concat("TestError/clip-buf-", ilk)); + assertTrue(clip.buf() >= RAY && clip.buf() <= 2 * RAY, _concat("TestError/clip-buf-range-", ilk)); // gte 0% and lte 100% + assertEq(uint256(clip.tail()), values.collaterals[ilk].clip_tail, _concat("TestError/clip-tail-", ilk)); + if (ilk == "TUSD-A") { // long tail liquidation + assertTrue(clip.tail() >= 1200 && clip.tail() <= 30 days, _concat("TestError/TUSD-clip-tail-range-", ilk)); // gt eq 20 minutes and lt eq 30 days + } else { + assertTrue(clip.tail() >= 1200 && clip.tail() <= 12 hours, _concat("TestError/clip-tail-range-", ilk)); // gt eq 20 minutes and lt eq 12 hours + } + uint256 normalizedTestCusp = (values.collaterals[ilk].clip_cusp) * 10**23; + assertEq(uint256(clip.cusp()), normalizedTestCusp, _concat("TestError/clip-cusp-", ilk)); + assertTrue(clip.cusp() >= RAY / 10 && clip.cusp() < RAY, _concat("TestError/clip-cusp-range-", ilk)); // gte 10% and lt 100% + assertTrue(_rmul(clip.buf(), clip.cusp()) <= RAY, _concat("TestError/clip-buf-cusp-limit-", ilk)); + uint256 normalizedTestChip = (values.collaterals[ilk].clip_chip) * 10**14; + assertEq(uint256(clip.chip()), normalizedTestChip, _concat("TestError/clip-chip-", ilk)); + assertTrue(clip.chip() < 1 * WAD / 100, _concat("TestError/clip-chip-range-", ilk)); // lt 1% + uint256 normalizedTestTip = values.collaterals[ilk].clip_tip * RAD; + assertEq(uint256(clip.tip()), normalizedTestTip, _concat("TestError/clip-tip-", ilk)); + assertTrue(clip.tip() == 0 || clip.tip() >= RAD && clip.tip() <= 500 * RAD, _concat("TestError/clip-tip-range-", ilk)); + + assertEq(clip.wards(address(clipMom)), values.collaterals[ilk].clipper_mom, _concat("TestError/clip-clipperMom-auth-", ilk)); + + assertEq(clipMom.tolerance(address(clip)), values.collaterals[ilk].cm_tolerance * RAY / 10000, _concat("TestError/clipperMom-tolerance-", ilk)); + + if (values.collaterals[ilk].liqOn) { + assertEq(clip.stopped(), 0, _concat("TestError/clip-liqOn-", ilk)); + } else { + assertTrue(clip.stopped() > 0, _concat("TestError/clip-liqOn-", ilk)); + } + + assertEq(clip.wards(address(end)), 1, _concat("TestError/clip-end-auth-", ilk)); + assertEq(clip.wards(address(pauseProxy)), 1, _concat("TestError/clip-pause-proxy-auth-", ilk)); // Check pause_proxy ward + } + { + (bool exists, bytes memory value) = clip.calc().call(abi.encodeWithSignature("tau()")); + assertEq(exists ? abi.decode(value, (uint256)) : 0, values.collaterals[ilk].calc_tau, _concat("TestError/calc-tau-", ilk)); + (exists, value) = clip.calc().call(abi.encodeWithSignature("step()")); + assertEq(exists ? abi.decode(value, (uint256)) : 0, values.collaterals[ilk].calc_step, _concat("TestError/calc-step-", ilk)); + if (exists) { + assertTrue(abi.decode(value, (uint256)) > 0, _concat("TestError/calc-step-is-zero-", ilk)); + } + (exists, value) = clip.calc().call(abi.encodeWithSignature("cut()")); + uint256 normalizedTestCut = values.collaterals[ilk].calc_cut * 10**23; + assertEq(exists ? abi.decode(value, (uint256)) : 0, normalizedTestCut, _concat("TestError/calc-cut-", ilk)); + if (exists) { + assertTrue(abi.decode(value, (uint256)) > 0 && abi.decode(value, (uint256)) < RAY, _concat("TestError/calc-cut-range-", ilk)); + } + } + { + uint256 normalizedTestChop = (values.collaterals[ilk].chop * 10**14) + WAD; + uint256 _chost = (values.collaterals[ilk].dust * RAD) * normalizedTestChop / WAD; + assertEq(clip.chost(), _chost, _concat("TestError/calc-chost-incorrect-", ilk)); // Ensure clip.upchost() is called when dust changes + } + } + if (reg.class(ilk) < 3) { + { + GemJoinAbstract join = GemJoinAbstract(reg.join(ilk)); + assertEq(join.wards(address(pauseProxy)), 1, _concat("TestError/join-pause-proxy-auth-", ilk)); // Check pause_proxy ward + } + } + } + // Require that debt + (debt that could be drawn) does not exceed Line. + // TODO: consider a buffer for fee accrual + assertTrue(vat.debt() + sums[1] <= vat.Line(), "TestError/vat-Line-1"); + + // Enforce the global Line also falls between (sum of lines) + offset and (sum of lines) + 2*offset. + assertTrue(sums[0] + values.line_offset * RAD <= vat.Line(), "TestError/vat-Line-2"); + assertTrue(sums[0] + 2 * values.line_offset * RAD >= vat.Line(), "TestError/vat-Line-3"); + + // TODO: have a discussion about how we want to manage the global Line going forward. + } + + function _getOSMPrice(address pip) internal returns (uint256) { + // vm.load is to pull the price from the LP Oracle storage bypassing the whitelist + uint256 price = uint256(vm.load( + pip, + bytes32(uint256(3)) + )) & type(uint128).max; // Price is in the second half of the 32-byte storage slot + + // Price is bounded in the spot by around 10^23 + // Give a 10^9 buffer for price appreciation over time + // Note: This currently can't be hit due to the uint112, but we want to backstop + // once the PIP uint256 size is increased + assertTrue(price <= (10 ** 14) * WAD); + + return price; + } + + function _getUNIV2LPPrice(address pip) internal returns (uint256) { + // vm.load is to pull the price from the LP Oracle storage bypassing the whitelist + uint256 price = uint256(vm.load( + pip, + bytes32(uint256(3)) + )) & type(uint128).max; // Price is in the second half of the 32-byte storage slot + + // Price is bounded in the spot by around 10^23 + // Give a 10^9 buffer for price appreciation over time + // Note: This currently can't be hit due to the uint112, but we want to backstop + // once the PIP uint256 size is increased + assertTrue(price <= (10 ** 14) * WAD); + + return price; + } + + function _giveTokens(address token, uint256 amount) internal { + if (token == addr.addr("GUSD")) { + _giveTokensGUSD(token, amount); + return; + } + + GodMode.setBalance(token, address(this), amount); + } + + function _giveTokensGUSD(address _token, uint256 amount) internal { + DSTokenAbstract token = DSTokenAbstract(_token); + + if (token.balanceOf(address(this)) == amount) return; + + // Special exception GUSD has its storage in a separate contract + address STORE = 0xc42B14e49744538e3C239f8ae48A1Eaaf35e68a0; + + // Edge case - balance is already set for some reason + if (token.balanceOf(address(this)) == amount) return; + + for (uint256 i = 0; i < 200; i++) { + // Scan the storage for the balance storage slot + bytes32 prevValue = vm.load( + STORE, + keccak256(abi.encode(address(this), uint256(i))) + ); + vm.store( + STORE, + keccak256(abi.encode(address(this), uint256(i))), + bytes32(amount) + ); + if (token.balanceOf(address(this)) == amount) { + // Found it + return; + } else { + // Keep going after restoring the original value + vm.store( + STORE, + keccak256(abi.encode(address(this), uint256(i))), + prevValue + ); + } + } + + // We have failed if we reach here + assertTrue(false, "TestError/GiveTokens-slot-not-found"); + } + + function _checkIlkIntegration( + bytes32 _ilk, + GemJoinAbstract join, + ClipAbstract clip, + address pip, + bool _isOSM, + bool _checkLiquidations, + bool _transferFee + ) internal { + GemAbstract token = GemAbstract(join.gem()); + + if (_isOSM) OsmAbstract(pip).poke(); + vm.warp(block.timestamp + 3601); + if (_isOSM) OsmAbstract(pip).poke(); + spotter.poke(_ilk); + + // Authorization + assertEq(join.wards(pauseProxy), 1, _concat("TestError/checkIlkIntegration-pauseProxy-not-auth-on-join-", _ilk)); + assertEq(vat.wards(address(join)), 1, _concat("TestError/checkIlkIntegration-join-not-auth-on-vat-", _ilk)); + assertEq(vat.wards(address(clip)), 1, _concat("TestError/checkIlkIntegration-clip-not-auth-on-vat-", _ilk)); + assertEq(dog.wards(address(clip)), 1, _concat("TestError/checkIlkIntegration-clip-not-auth-on-dog-", _ilk)); + assertEq(clip.wards(address(dog)), 1, _concat("TestError/checkIlkIntegration-dog-not-auth-on-clip-", _ilk)); + assertEq(clip.wards(address(end)), 1, _concat("TestError/checkIlkIntegration-end-not-auth-on-clip-", _ilk)); + assertEq(clip.wards(address(clipMom)), 1, _concat("TestError/checkIlkIntegration-clipMom-not-auth-on-clip-", _ilk)); + assertEq(clip.wards(address(esm)), 1, _concat("TestError/checkIlkIntegration-esm-not-auth-on-clip-", _ilk)); + if (_isOSM) { + assertEq(OsmAbstract(pip).wards(address(osmMom)), 1, _concat("TestError/checkIlkIntegration-osmMom-not-auth-on-pip-", _ilk)); + assertEq(OsmAbstract(pip).bud(address(spotter)), 1, _concat("TestError/checkIlkIntegration-spot-not-bud-on-pip-", _ilk)); + assertEq(OsmAbstract(pip).bud(address(clip)), 1, _concat("TestError/checkIlkIntegration-spot-not-bud-on-pip-", _ilk)); + assertEq(OsmAbstract(pip).bud(address(clipMom)), 1, _concat("TestError/checkIlkIntegration-spot-not-bud-on-pip-", _ilk)); + assertEq(OsmAbstract(pip).bud(address(end)), 1, _concat("TestError/checkIlkIntegration-spot-not-bud-on-pip-", _ilk)); + assertEq(MedianAbstract(OsmAbstract(pip).src()).bud(pip), 1, _concat("TestError/checkIlkIntegration-pip-not-bud-on-osm-", _ilk)); + assertEq(OsmMomAbstract(osmMom).osms(_ilk), pip, _concat("TestError/checkIlkIntegration-pip-not-bud-on-osmMom-", _ilk)); + } + + (,,,, uint256 dust) = vat.ilks(_ilk); + dust /= RAY; + uint256 amount = 4 * dust * 10 ** uint256(token.decimals()) / (_isOSM ? _getOSMPrice(pip) : uint256(DSValueAbstract(pip).read())); + uint256 amount18 = token.decimals() == 18 ? amount : amount * 10**(18 - uint256(token.decimals())); + _giveTokens(address(token), amount); + + assertEq(token.balanceOf(address(this)), amount); + assertEq(vat.gem(_ilk, address(this)), 0); + token.approve(address(join), amount); + join.join(address(this), amount); + assertEq(token.balanceOf(address(this)), 0); + if (_transferFee) { + amount = vat.gem(_ilk, address(this)); + assertTrue(amount > 0); + } + assertEq(vat.gem(_ilk, address(this)), amount18); + + // Tick the fees forward so that art != dai in wad units + vm.warp(block.timestamp + 1); + jug.drip(_ilk); + + // Deposit collateral, generate DAI + (,uint256 rate,,uint256 line,) = vat.ilks(_ilk); + + assertEq(vat.dai(address(this)), 0); + // Set max line to ensure we can create a new position + _setIlkLine(_ilk, type(uint256).max); + vat.frob(_ilk, address(this), address(this), address(this), int256(amount18), int256(_divup(RAY * dust, rate))); + // Revert ilk line to proceed with testing + _setIlkLine(_ilk, line); + assertEq(vat.gem(_ilk, address(this)), 0); + assertTrue(vat.dai(address(this)) >= dust * RAY); + assertTrue(vat.dai(address(this)) <= (dust + 1) * RAY); + + // Payback DAI, withdraw collateral + vat.frob(_ilk, address(this), address(this), address(this), -int256(amount18), -int256(_divup(RAY * dust, rate))); + assertEq(vat.gem(_ilk, address(this)), amount18); + assertEq(vat.dai(address(this)), 0); + + // Withdraw from adapter + join.exit(address(this), amount); + if (_transferFee) { + amount = token.balanceOf(address(this)); + } + assertEq(token.balanceOf(address(this)), amount); + assertEq(vat.gem(_ilk, address(this)), 0); + + // Generate new DAI to force a liquidation + token.approve(address(join), amount); + join.join(address(this), amount); + if (_transferFee) { + amount = vat.gem(_ilk, address(this)); + } + // dart max amount of DAI + (,,uint256 spot,,) = vat.ilks(_ilk); + + // Set max line to ensure we can draw dai + _setIlkLine(_ilk, type(uint256).max); + vat.frob(_ilk, address(this), address(this), address(this), int256(amount18), int256(amount18 * spot / rate)); + // Revert ilk line to proceed with testing + _setIlkLine(_ilk, line); + + vm.warp(block.timestamp + 1); + jug.drip(_ilk); + assertEq(clip.kicks(), 0); + if (_checkLiquidations) { + if (_getIlkDuty(_ilk) == rates.rates(0)) { + // Rates wont accrue if 0, raise the mat to make the vault unsafe + _setIlkMat(_ilk, 100000 * RAY); + vm.warp(block.timestamp + 10 days); + spotter.poke(_ilk); + } + dog.bark(_ilk, address(this), address(this)); + assertEq(clip.kicks(), 1); + } + + // Dump all dai for next run + vat.move(address(this), address(0x0), vat.dai(address(this))); + } + + function _checkIlkClipper( + bytes32 ilk, + GemJoinAbstract join, + ClipAbstract clipper, + address calc, + OsmAbstract pip, + uint256 ilkAmt + ) internal { + + // Contracts set + assertEq(dog.vat(), address(vat)); + assertEq(dog.vow(), address(vow)); + { + (address clip,,,) = dog.ilks(ilk); + assertEq(clip, address(clipper)); + } + assertEq(clipper.ilk(), ilk); + assertEq(clipper.vat(), address(vat)); + assertEq(clipper.vow(), address(vow)); + assertEq(clipper.dog(), address(dog)); + assertEq(clipper.spotter(), address(spotter)); + assertEq(clipper.calc(), calc); + + // Authorization + assertEq(vat.wards(address(clipper)) , 1); + assertEq(dog.wards(address(clipper)) , 1); + assertEq(clipper.wards(address(dog)) , 1); + assertEq(clipper.wards(address(end)) , 1); + assertEq(clipper.wards(address(clipMom)), 1); + assertEq(clipper.wards(address(esm)), 1); + + try pip.bud(address(spotter)) returns (uint256 bud) { + assertEq(bud, 1); + } catch {} + try pip.bud(address(clipper)) returns (uint256 bud) { + assertEq(bud, 1); + } catch {} + try pip.bud(address(clipMom)) returns (uint256 bud) { + assertEq(bud, 1); + } catch {} + try pip.bud(address(end)) returns (uint256 bud) { + assertEq(bud, 1); + } catch {} + + // Force max Hole + vm.store( + address(dog), + bytes32(uint256(4)), + bytes32(type(uint256).max) + ); + + // Initially this test assume that's we are using freshly deployed Cliiper contract without any past auctions + if (clipper.kicks() > 0) { + // Cleanup clipper auction counter + vm.store( + address(clipper), + bytes32(uint256(10)), + bytes32(uint256(0)) + ); + + assertEq(clipper.kicks(), 0); + } + + // ----------------------- Check Clipper works and bids can be made ----------------------- + + { + GemAbstract token = GemAbstract(join.gem()); + uint256 tknAmt = ilkAmt / 10 ** (18 - join.dec()); + _giveTokens(address(token), tknAmt); + assertEq(token.balanceOf(address(this)), tknAmt); + + // Join to adapter + assertEq(vat.gem(ilk, address(this)), 0); + assertEq(token.allowance(address(this), address(join)), 0); + token.approve(address(join), tknAmt); + join.join(address(this), tknAmt); + assertEq(token.balanceOf(address(this)), 0); + assertEq(vat.gem(ilk, address(this)), ilkAmt); + } + + { + // Generate new DAI to force a liquidation + uint256 rate; + int256 art; + uint256 spot; + uint256 line; + (,rate, spot, line,) = vat.ilks(ilk); + art = int256(ilkAmt * spot / rate); + + // dart max amount of DAI + _setIlkLine(ilk, type(uint256).max); + vat.frob(ilk, address(this), address(this), address(this), int256(ilkAmt), art); + _setIlkLine(ilk, line); + _setIlkMat(ilk, 100000 * RAY); + vm.warp(block.timestamp + 10 days); + spotter.poke(ilk); + assertEq(clipper.kicks(), 0); + dog.bark(ilk, address(this), address(this)); + assertEq(clipper.kicks(), 1); + + (, rate,,,) = vat.ilks(ilk); + uint256 debt = rate * uint256(art) * dog.chop(ilk) / WAD; + vm.store( + address(vat), + keccak256(abi.encode(address(this), uint256(5))), + bytes32(debt) + ); + assertEq(vat.dai(address(this)), debt); + assertEq(vat.gem(ilk, address(this)), 0); + + vm.warp(block.timestamp + 20 minutes); + (, uint256 tab, uint256 lot, address usr,, uint256 top) = clipper.sales(1); + + assertEq(usr, address(this)); + assertEq(tab, debt); + assertEq(lot, ilkAmt); + assertTrue(lot * top > tab); // There is enough collateral to cover the debt at current price + + vat.hope(address(clipper)); + clipper.take(1, lot, top, address(this), bytes("")); + } + + { + (, uint256 tab, uint256 lot, address usr,,) = clipper.sales(1); + assertEq(usr, address(0)); + assertEq(tab, 0); + assertEq(lot, 0); + assertEq(vat.dai(address(this)), 0); + assertEq(vat.gem(ilk, address(this)), ilkAmt); // What was purchased + returned back as it is the owner of the vault + } + } + + function _checkUNILPIntegration( + bytes32 _ilk, + GemJoinAbstract join, + ClipAbstract clip, + LPOsmAbstract pip, + address _medianizer1, + address _medianizer2, + bool _isMedian1, + bool _isMedian2, + bool _checkLiquidations + ) internal { + GemAbstract token = GemAbstract(join.gem()); + + pip.poke(); + vm.warp(block.timestamp + 3601); + pip.poke(); + spotter.poke(_ilk); + + // Check medianizer sources + assertEq(pip.src(), address(token)); + assertEq(pip.orb0(), _medianizer1); + assertEq(pip.orb1(), _medianizer2); + + // Authorization + assertEq(join.wards(pauseProxy), 1); + assertEq(vat.wards(address(join)), 1); + assertEq(clip.wards(address(end)), 1); + assertEq(pip.wards(address(osmMom)), 1); + assertEq(pip.bud(address(spotter)), 1); + assertEq(pip.bud(address(end)), 1); + if (_isMedian1) assertEq(MedianAbstract(_medianizer1).bud(address(pip)), 1); + if (_isMedian2) assertEq(MedianAbstract(_medianizer2).bud(address(pip)), 1); + + (,,,, uint256 dust) = vat.ilks(_ilk); + dust /= RAY; + uint256 amount = 2 * dust * WAD / _getUNIV2LPPrice(address(pip)); + _giveTokens(address(token), amount); + + assertEq(token.balanceOf(address(this)), amount); + assertEq(vat.gem(_ilk, address(this)), 0); + token.approve(address(join), amount); + join.join(address(this), amount); + assertEq(token.balanceOf(address(this)), 0); + assertEq(vat.gem(_ilk, address(this)), amount); + + // Tick the fees forward so that art != dai in wad units + vm.warp(block.timestamp + 1); + jug.drip(_ilk); + + // Deposit collateral, generate DAI + (,uint256 rate,,,) = vat.ilks(_ilk); + assertEq(vat.dai(address(this)), 0); + vat.frob(_ilk, address(this), address(this), address(this), int256(amount), int256(_divup(RAY * dust, rate))); + assertEq(vat.gem(_ilk, address(this)), 0); + assertTrue(vat.dai(address(this)) >= dust * RAY && vat.dai(address(this)) <= (dust + 1) * RAY); + + // Payback DAI, withdraw collateral + vat.frob(_ilk, address(this), address(this), address(this), -int256(amount), -int256(_divup(RAY * dust, rate))); + assertEq(vat.gem(_ilk, address(this)), amount); + assertEq(vat.dai(address(this)), 0); + + // Withdraw from adapter + join.exit(address(this), amount); + assertEq(token.balanceOf(address(this)), amount); + assertEq(vat.gem(_ilk, address(this)), 0); + + // Generate new DAI to force a liquidation + token.approve(address(join), amount); + join.join(address(this), amount); + // dart max amount of DAI + (,,uint256 spot,,) = vat.ilks(_ilk); + vat.frob(_ilk, address(this), address(this), address(this), int256(amount), int256(amount * spot / rate)); + vm.warp(block.timestamp + 1); + jug.drip(_ilk); + assertEq(clip.kicks(), 0); + if (_checkLiquidations) { + dog.bark(_ilk, address(this), address(this)); + assertEq(clip.kicks(), 1); + } + + // Dump all dai for next run + vat.move(address(this), address(0x0), vat.dai(address(this))); + } + + function _checkPsmIlkIntegration( + bytes32 _ilk, + GemJoinAbstract join, + ClipAbstract clip, + address pip, + PsmAbstract psm, + uint256 tinBps, + uint256 toutBps + ) internal { + uint256 tin = tinBps * WAD / 100_00; + uint256 tout = toutBps * WAD / 100_00; + GemAbstract token = GemAbstract(join.gem()); + + // Check PIP is set (ilk exists) + assertTrue(pip != address(0)); + + // Update price (poke spotter) + spotter.poke(_ilk); + + // Authorization (check wards) + assertEq(join.wards(pauseProxy), 1); + assertEq(join.wards(address(psm)), 1); + assertEq(psm.wards(pauseProxy), 1); + assertEq(vat.wards(address(join)), 1); + assertEq(clip.wards(address(end)), 1); + + // Check tin / tout values of PSM + assertEq(psm.tin(), tin, _concat("Incorrect-tin-", _ilk)); + assertEq(psm.tout(), tout, _concat("Incorrect-tout-", _ilk)); + + // Arbitrary amount of TOKEN to test PSM sellGem and buyGem with (in whole units) + // `amount` is the amount of _TOKEN_ we are selling/buying (NOT measured in Dai) + uint256 amount = 100_000; + // Amount should be more than 10,000 as `tin` and `tout` are basis point measurements + require(amount >= 10_000, "checkPsmIlkIntegration/amount-too-low-for-precision-checks"); + + // Increase line where necessary to allow for coverage for both `buyGem` and `sellGem` + { + // Get the Art (current debt) and line (debt ceiling) for this PSM + (uint256 Art ,,, uint256 line,) = vat.ilks(_ilk); + // Normalize values to whole units so we can compare them + Art = Art / WAD; // `rate` is 1 * RAY for all PSMs + line = line / RAD; + + // If not enough room below line (e.g. Maxed out PSM) + if(Art + amount > line){ + _setIlkLine(_ilk, (Art + amount + 1) * RAD); // Increase `line` to `Art`+`amount` + } + } + + // Scale up `amount` to the correct Gem decimals value (buyGem and sellGem both use Gem decimals for precision) + amount = amount * WAD / _to18ConversionFactor(psm); + _giveTokens(address(token), amount); + + // Approvals + token.approve(address(join), amount); + dai.approve(address(psm), type(uint256).max); + + // Sell TOKEN _to_ the PSM for DAI (increases debt) + psm.sellGem(address(this), amount); + + amount = amount * (10 ** (18 - uint256(token.decimals()))); // Scale to Dai decimals (18) for Dai balance check + amount -= amount * tin / WAD; // Subtract `tin` fee (was deducted by PSM) + + assertEq(token.balanceOf(address(this)), 0, _concat("PSM.sellGem-token-balance-", _ilk)); + assertEq(dai.balanceOf(address(this)), amount, _concat("PSM.sellGem-dai-balance-", _ilk)); + + // For `sellGem` we had `amount` TOKENS, so there is no issue calling it + // For `buyGem` we have `amount` Dai, but `buyGem` takes `gemAmt` as TOKENS + // So we need to calculate the `gemAmt` of TOKEN we want to buy (i.e. subtract `tout` in advance) + amount -= _divup(amount * tout, WAD); // Subtract `tout` fee (i.e. convert to `gemAmt`) + amount = amount / (10 ** (18 - uint256(token.decimals()))); // Scale to Gem decimals for `buyGem()` + + // Buy TOKEN _from_ the PSM for DAI (decreases debt) + psm.buyGem(address(this), amount); + + // There may be some Dai dust left over depending on tout and decimals + // This should always be less than some dust limit + assertTrue(dai.balanceOf(address(this)) < 1 * WAD); // TODO lower this + assertEq(token.balanceOf(address(this)), amount, _concat("PSM.buyGem-token-balance-", _ilk)); + + // Dump all dai for next run + dai.transfer(address(0x0), dai.balanceOf(address(this))); + } + + struct LitePsmIlkIntegrationParams { + bytes32 ilk; + address pip; + address litePsm; + address pocket; + uint256 bufUnits; // `buf` as whole units + uint256 tinBps; // tin as bps + uint256 toutBps; // tout as bps + } + + function _checkLitePsmIlkIntegration(LitePsmIlkIntegrationParams memory p) internal { + uint256 tin = p.tinBps * WAD / 100_00; + uint256 tout = p.toutBps * WAD / 100_00; + LitePsmLike litePsm = LitePsmLike(p.litePsm); + GemAbstract token = GemAbstract(litePsm.gem()); + + // Authorization (check wards) + assertEq(litePsm.wards(address(pauseProxy)), 1, _concat("checkLitePsmIlkIntegration/pauseProxy-not-ward-", p.ilk)); + // pauseProxy can execute swaps with no fees + assertEq(litePsm.bud(address(pauseProxy)), 1, _concat("checkLitePsmIlkIntegration/pauseProxy-not-bud-", p.ilk)); + + // litePsm params are properly set + assertEq(litePsm.vow(), address(vow), _concat("checkLitePsmIlkIntegration/incorrect-vow-", p.ilk)); + assertEq(litePsm.daiJoin(), address(daiJoin), _concat("checkLitePsmIlkIntegration/incorrect-daiJoin-", p.ilk)); + assertEq(litePsm.pocket(), p.pocket, _concat("checkLitePsmIlkIntegration/incorrect-pocket-", p.ilk)); + assertEq(litePsm.buf(), p.bufUnits * WAD, _concat("checkLitePsmIlkIntegration/incorrect-buf-", p.ilk)); + assertEq(litePsm.tin(), tin, _concat("checkLitePsmIlkIntegration/incorrect-tin-", p.ilk)); + assertEq(litePsm.tout(), tout, _concat("checkLitePsmIlkIntegration/incorrect-tout-", p.ilk)); + + // Vat is properly initialized + { + // litePsm is given "unlimited" ink + (uint256 ink, ) = vat.urns(p.ilk, address(litePsm)); + assertEq(ink, type(uint256).max / RAY, _concat("checkLitePsmIlkIntegration/incorrect-vat-ink-", p.ilk)); + } + + // Spotter is properly initialized + { + (address pip,) = spotter.ilks(p.ilk); + assertEq(pip, p.pip, _concat("checkLitePsmIlkIntegration/incorrect-spot-pip-", p.ilk)); + } + + // Update price (poke spotter) + spotter.poke(p.ilk); + + // New PSM info is added to IlkRegistry + { + ( + string memory name, + string memory symbol, + uint256 _class, + uint256 decimals, + address gem, + address pip, + address gemJoin, + address clip + ) = reg.info(p.ilk); + + assertEq(name, token.name(), "checkLitePsmIlkIntegration/incorrect-reg-name"); + assertEq(symbol, token.symbol(), "checkLitePsmIlkIntegration/incorrect-reg-symbol"); + assertEq(_class, 6, "checkLitePsmIlkIntegration/incorrect-reg-class"); // REG_CLASS_JOINLESS + assertEq(decimals, token.decimals(), "checkLitePsmIlkIntegration/incorrect-reg-dec"); + assertEq(gem, address(token), "checkLitePsmIlkIntegration/incorrect-reg-gem"); + assertEq(pip, p.pip, "checkLitePsmIlkIntegration/incorrect-reg-pip"); + assertEq(gemJoin, address(0), "checkLitePsmIlkIntegration/incorrect-reg-gemJoin"); + assertEq(clip, address(0), "checkLitePsmIlkIntegration/incorrect-reg-xlip"); + } + + // ------ Test swap flows ------ + + // Arbitrary amount of TOKEN to test PSM sellGem and buyGem with (in whole units) + // `amount` is the amount of _TOKEN_ we are selling/buying (NOT measured in Dai) + uint256 amount = 100_000; + // Amount should be more than 10,000 as `tin` and `tout` are basis point measurements + require(amount >= 10_000, "checkLitePsmIlkIntegration/amount-too-low-for-precision-checks"); + + // Increase line where necessary to allow for coverage for both `buyGem` and `sellGem` + { + // Get the Art (current debt) and line (debt ceiling) for this PSM + (uint256 Art ,,, uint256 line,) = vat.ilks(p.ilk); + // Normalize values to whole units so we can compare them + Art = Art / WAD; // `rate` is 1 * RAY for all PSMs + line = line / RAD; + + // If not enough room below line (e.g. Maxed out PSM) + if (Art + amount > line) { + _setIlkLine(p.ilk, (Art + amount + 1) * RAD); // Increase `line` to `Art`+`amount` + } + + // If required, add pre-minted Dai to litePsm + if (litePsm.rush() > 0) { + litePsm.fill(); + } + } + + // Allow the test contract to sell or buy gems with no fees + GodMode.setWard(address(litePsm), address(this), 1); + litePsm.kiss(address(this)); + + // Approvals + token.approve(address(litePsm), type(uint256).max); + dai.approve(address(litePsm), type(uint256).max); + + // Scale up `amount` to the correct Gem decimals value (buyGem and sellGem both use Gem decimals for precision) + uint256 snapshot = vm.snapshot(); + + // Sell TOKEN _to_ the PSM for DAI (increases debt) + { + uint256 sellWadOut = amount * WAD; // Scale to Dai decimals (18) for Dai balance check + sellWadOut -= sellWadOut * tin / WAD; // Subtract `tin` fee (was deducted by PSM) + + uint256 sellAmt = amount * WAD / _to18ConversionFactor(litePsm); + _giveTokens(address(token), sellAmt); + litePsm.sellGem(address(this), sellAmt); + + assertEq(token.balanceOf(address(this)), 0, _concat("checkLitePsmIlkIntegration/sellGem-token-balance-", p.ilk)); + assertEq(dai.balanceOf(address(this)), sellWadOut, _concat("checkLitePsmIlkIntegration/sellGem-dai-balance-", p.ilk)); + + vm.revertTo(snapshot); + } + + // Sell TOKEN _to_ the PSM for DAI with no fees (increases debt) + { + litePsm.file("tin", 0.01 ether); // Force fee + uint256 sellWadOut = amount * WAD; // Scale to Dai decimals (18) for Dai balance check + + uint256 sellAmt = amount * WAD / _to18ConversionFactor(litePsm); + _giveTokens(address(token), sellAmt); + litePsm.sellGemNoFee(address(this), sellAmt); + + assertEq(token.balanceOf(address(this)), 0, _concat("checkLitePsmIlkIntegration/sellGemNoFee-token-balance-", p.ilk)); + assertEq(dai.balanceOf(address(this)), sellWadOut, _concat("checkLitePsmIlkIntegration/sellGemNoFee-dai-balance-", p.ilk)); + + vm.revertTo(snapshot); + } + + // For `sellGem` we had `amount` TOKENS, so there is no issue calling it + // For `buyGem` we have `amount` Dai, but `buyGem` takes `gemAmt` as TOKENS + // So we need to calculate the `gemAmt` of TOKEN we want to buy (i.e. subtract `tout` in advance) + + // Buy TOKEN _from_ the PSM for DAI (decreases debt) + { + uint256 buyWadIn = amount * WAD; // Scale to Dai decimals (18) for Dai balance check + buyWadIn += _divup(buyWadIn * tout, WAD); // Add `tout` fee + _giveTokens(address(dai), buyWadIn); // Mints Dai into the test contract + + uint256 buyAmt = amount * WAD / _to18ConversionFactor(litePsm); // Scale to Gem decimals for `buyGem()` + litePsm.buyGem(address(this), buyAmt); + + // There may be some Dai dust left over depending on tout and decimals + // This should always be less than some dust limit + assertLe(dai.balanceOf(address(this)), tout, _concat("checkLitePsmIlkIntegration/buyGem-dai-balance-", p.ilk)); + assertEq(token.balanceOf(address(this)), buyAmt, _concat("checkLitePsmIlkIntegration/buyGem-token-balance-", p.ilk)); + + vm.revertTo(snapshot); + } + + // Buy TOKEN _from_ the PSM for DAI with no fees (decreases debt) + { + litePsm.file("tout", 0.01 ether); // Force fee + + uint256 buyWadIn = amount * WAD; // Scale to Dai decimals (18) for Dai balance check + _giveTokens(address(dai), buyWadIn); // Mints Dai into the test contract + + uint256 buyAmt = amount * WAD / _to18ConversionFactor(litePsm); // Scale to Gem decimals for `buyGem()` + litePsm.buyGemNoFee(address(this), buyAmt); + + // There may be some Dai dust left over depending on tout and decimals + // This should always be less than some dust limit + assertLe(dai.balanceOf(address(this)), tout, _concat("checkLitePsmIlkIntegration/buyGemNoFee-dai-balance-", p.ilk)); + assertEq(token.balanceOf(address(this)), buyAmt, _concat("checkLitePsmIlkIntegration/buyGemNoFee-token-balance-", p.ilk)); + + vm.revertTo(snapshot); + } + + // ----- LitePsmMom can halt swaps ----- + + // LitePsmMom can halt litePSM + assertEq(litePsm.wards(address(litePsmMom)), 1, _concat("checkLitePsmIlkIntegration/litePsmMom-not-ward-", p.ilk)); + + // Gives the hat to the test contract, so it can invoke LitePsmMom + vm.store(address(chief), bytes32(uint256(0x0c)) /* `hat` slot */, bytes32(uint256(uint160(address(this))))); + LitePsmMomLike(address(litePsmMom)).halt(address(litePsm), 2 /* = BOTH */); + + assertEq(litePsm.tin(), type(uint256).max, _concat("checkLitePsmIlkIntegration/mom-halt-invalid-tin-", p.ilk)); + assertEq(litePsm.tout(), type(uint256).max, _concat("checkLitePsmIlkIntegration/mom-halt-invalid-tout-", p.ilk)); + } + + function _to18ConversionFactor(LitePsmLike litePsm) internal view returns (uint256) { + return litePsm.to18ConversionFactor(); + } + + function _to18ConversionFactor(PsmAbstract psm) internal view returns (uint256) { + return 10 ** (18 - GemJoinAbstract(psm.gemJoin()).dec()); + } + + function _checkDirectIlkIntegration( + bytes32 _ilk, + DirectDepositLike join, + ClipAbstract clip, + address pip, + uint256 bar, + uint256 tau + ) internal { + GemAbstract token = GemAbstract(join.gem()); + assertTrue(pip != address(0)); + + spotter.poke(_ilk); + + // Authorization + assertEq(join.wards(pauseProxy), 1); + assertEq(vat.wards(address(join)), 1); + assertEq(clip.wards(address(end)), 1); + assertEq(join.wards(address(esm)), 1); // Required in case of gov. attack + assertEq(join.wards(addr.addr("DIRECT_MOM")), 1); // Zero-delay shutdown for Aave gov. attack + + // Check the bar/tau/king are set correctly + assertEq(join.bar(), bar); + assertEq(join.tau(), tau); + assertEq(join.king(), pauseProxy); + + // Set the target bar to be super low to max out the debt ceiling + GodMode.setWard(address(join), address(this), 1); + join.file("bar", 1 * RAY / 10000); // 0.01% + join.deny(address(this)); + join.exec(); + + // Module should be maxed out + (,,, uint256 line,) = vat.ilks(_ilk); + (uint256 ink, uint256 art) = vat.urns(_ilk, address(join)); + assertEq(ink*RAY, line); + assertEq(art*RAY, line); + assertGe(token.balanceOf(address(join)), ink - 1); // Allow for small rounding error + + // Disable the module + GodMode.setWard(address(join), address(this), 1); + join.file("bar", 0); + join.deny(address(this)); + join.exec(); + + // Module should clear out + (ink, art) = vat.urns(_ilk, address(join)); + assertLe(ink, 1); + assertLe(art, 1); + assertEq(token.balanceOf(address(join)), 0); + + assertEq(join.tic(), 0); + } + + function _getSignatures(bytes32 signHash) internal returns (bytes memory signatures, address[] memory signers) { + // seeds chosen s.t. corresponding addresses are in ascending order + uint8[30] memory seeds = [8,10,6,2,9,15,14,20,7,29,24,13,12,25,16,26,21,22,0,18,17,27,3,28,23,19,4,5,1,11]; + uint256 numSigners = seeds.length; + signers = new address[](numSigners); + for(uint256 i; i < numSigners; i++) { + uint256 sk = uint256(keccak256(abi.encode(seeds[i]))); + signers[i] = vm.addr(sk); + (uint8 v, bytes32 r, bytes32 s) = vm.sign(sk, signHash); + signatures = abi.encodePacked(signatures, r, s, v); + } + assertEq(signatures.length, numSigners * 65); + } + + function _oracleAuthRequestMint( + bytes32 sourceDomain, + bytes32 targetDomain, + uint256 toMint, + uint256 expectedFee + ) internal { + TeleportOracleAuthLike oracleAuth = TeleportOracleAuthLike(addr.addr("MCD_ORACLE_AUTH_TELEPORT_FW_A")); + GodMode.setWard(address(oracleAuth), address(this), 1); + (bytes memory signatures, address[] memory signers) = _getSignatures(oracleAuth.getSignHash(TeleportGUID({ + sourceDomain: sourceDomain, + targetDomain: targetDomain, + receiver: bytes32(uint256(uint160(address(this)))), + operator: bytes32(0), + amount: uint128(toMint), + nonce: 1, + timestamp: uint48(block.timestamp) + }))); + oracleAuth.addSigners(signers); + oracleAuth.requestMint(TeleportGUID({ + sourceDomain: sourceDomain, + targetDomain: targetDomain, + receiver: bytes32(uint256(uint160(address(this)))), + operator: bytes32(0), + amount: uint128(toMint), + nonce: 1, + timestamp: uint48(block.timestamp) + }), signatures, expectedFee, 0); + } + + function _checkTeleportFWIntegration( + bytes32 sourceDomain, + bytes32 targetDomain, + uint256 line, + address gateway, + address fee, + address escrow, + uint256 toMint, + uint256 expectedFee, + uint256 expectedTtl + ) internal { + TeleportJoinLike join = TeleportJoinLike(addr.addr("MCD_JOIN_TELEPORT_FW_A")); + TeleportRouterLike router = TeleportRouterLike(addr.addr("MCD_ROUTER_TELEPORT_FW_A")); + + // Sanity checks + assertEq(join.line(sourceDomain), line); + assertEq(join.fees(sourceDomain), address(fee)); + assertEq(dai.allowance(escrow, gateway), type(uint256).max); + assertEq(dai.allowance(gateway, address(router)), type(uint256).max); + assertEq(TeleportFeeLike(fee).fee(), expectedFee); + assertEq(TeleportFeeLike(fee).ttl(), expectedTtl); + assertEq(router.gateways(sourceDomain), gateway); + assertEq(router.domains(gateway), sourceDomain); + assertEq(TeleportBridgeLike(gateway).l1Escrow(), escrow); + assertEq(TeleportBridgeLike(gateway).l1TeleportRouter(), address(router)); + assertEq(TeleportBridgeLike(gateway).l1Token(), address(dai)); + + { + // NOTE: We are calling the router directly because the bridge code is minimal and unique to each domain + // This tests the slow path via the router + vm.startPrank(gateway); + router.requestMint(TeleportGUID({ + sourceDomain: sourceDomain, + targetDomain: targetDomain, + receiver: bytes32(uint256(uint160(address(this)))), + operator: bytes32(0), + amount: uint128(toMint), + nonce: 0, + timestamp: uint48(block.timestamp - TeleportFeeLike(fee).ttl()) + }), 0, 0); + vm.stopPrank(); + assertEq(dai.balanceOf(address(this)), toMint); + assertEq(join.debt(sourceDomain), int256(toMint)); + } + + // Check oracle auth mint -- add custom signatures to test + uint256 _fee = toMint * expectedFee / WAD; + { + uint256 prevDai = vat.dai(address(vow)); + _oracleAuthRequestMint(sourceDomain, targetDomain, toMint, expectedFee); + assertEq(dai.balanceOf(address(this)), toMint * 2 - _fee); + assertEq(join.debt(sourceDomain), int256(toMint * 2)); + assertEq(vat.dai(address(vow)) - prevDai, _fee * RAY); + } + + // Check settle + dai.transfer(gateway, toMint * 2 - _fee); + vm.startPrank(gateway); + router.settle(targetDomain, toMint * 2 - _fee); + vm.stopPrank(); + assertEq(dai.balanceOf(gateway), 0); + assertEq(join.debt(sourceDomain), int256(_fee)); + } + + function _checkCureLoadTeleport( + bytes32 sourceDomain, + bytes32 targetDomain, + uint256 toMint, + uint256 expectedFee, + uint256 expectedTell, + bool cage + ) internal { + TeleportJoinLike join = TeleportJoinLike(addr.addr("MCD_JOIN_TELEPORT_FW_A")); + + // Oracle auth mint -- add custom signatures to test + _oracleAuthRequestMint(sourceDomain, targetDomain, toMint, expectedFee); + assertEq(join.debt(sourceDomain), int256(toMint)); + + // Emulate Global Settlement + if (cage) { + assertEq(cure.live(), 1); + vm.store( + address(cure), + keccak256(abi.encode(address(this), uint256(0))), + bytes32(uint256(1)) + ); + cure.cage(); + assertEq(cure.tell(), 0); + } + assertEq(cure.live(), 0); + + // Check cure tells the teleport source correctly + cure.load(address(join)); + assertEq(cure.tell(), expectedTell); + } + + struct VestStream { + uint256 id; + address usr; + uint256 bgn; + uint256 clf; + uint256 fin; + uint256 tau; + address mgr; + uint256 res; + uint256 tot; + uint256 rxd; + } + + function _checkVestDai(VestStream[] memory _ss) internal { + uint256 prevStreamCount = vestDai.ids(); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + // Check that all streams added in this spell are tested + assertEq(vestDai.ids(), prevStreamCount + _ss.length, "testVestDai/not-all-streams-tested"); + + for (uint256 i = 0; i < _ss.length; i++) { + _checkVestStream("testVestDai", vestDai, address(dai), _ss[i]); + } + } + + function _checkVestMkr(VestStream[] memory _ss) internal { + uint256 prevStreamCount = vestMkr.ids(); + uint256 prevAllowance = gov.allowance(pauseProxy, address(vestMkr)); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + // Check allowance was increased according to the streams + uint256 sumTot = 0; + uint256 sumRxd = 0; + for (uint256 i = 0; i < _ss.length; i++) { + sumTot = sumTot + _ss[i].tot; + sumRxd = sumRxd + _ss[i].rxd; + } + assertEq(gov.allowance(pauseProxy, address(vestMkr)), prevAllowance + sumTot - sumRxd, "testVestMkr/invalid-allowance"); + + // Check that all streams added in this spell are tested + assertEq(vestMkr.ids(), prevStreamCount + _ss.length, "testVestMrk/not-all-streams-tested"); + + for (uint256 i = 0; i < _ss.length; i++) { + _checkVestStream("testVestMkr", vestMkr, address(gov), _ss[i]); + } + } + + function _checkTransferrableVestMkrAllowance() internal { + uint256 vestableAmt; + + for(uint256 i = 1; i <= vestMkr.ids(); i++) { + if (vestMkr.valid(i)) { + (,,,,,,uint128 tot, uint128 rxd) = vestMkr.awards(i); + vestableAmt = vestableAmt + (tot - rxd); + } + } + + uint256 allowance = gov.allowance(pauseProxy, address(vestMkr)); + assertGe(allowance, vestableAmt, "TestError/insufficient-gov-transferrable-vest-mkr-allowance"); + } + + + function _checkVestSky(VestStream[] memory _ss) internal { + uint256 prevStreamCount = vestSky.ids(); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + // Check that all streams added in this spell are tested + assertEq(vestSky.ids(), prevStreamCount + _ss.length, "testVestSky/not-all-streams-tested"); + + for (uint256 i = 0; i < _ss.length; i++) { + _checkVestStream("testVestSky", vestSky, address(sky), _ss[i]); + } + } + + function _checkVestStream( + string memory _errPrefix, + VestAbstract _vest, + address _token, + VestStream memory _s + ) internal { + assertEq(_vest.usr(_s.id), _s.usr, _concat(_errPrefix, string("/usr"))); + assertEq(_vest.bgn(_s.id), _s.bgn, _concat(_errPrefix, string("/bgn"))); + assertEq(_vest.clf(_s.id), _s.clf, _concat(_errPrefix, string("/clf"))); + assertEq(_vest.fin(_s.id), _s.fin, _concat(_errPrefix, string("/fin"))); + assertEq(_vest.fin(_s.id), _s.bgn + _s.tau, _concat(_errPrefix, string("/fin (bgn + tau)"))); + assertEq(_vest.mgr(_s.id), _s.mgr, _concat(_errPrefix, string("/mgr"))); + assertEq(_vest.res(_s.id), _s.res, _concat(_errPrefix, string("/res"))); + assertEq(_vest.tot(_s.id), _s.tot, _concat(_errPrefix, string("/tot"))); + assertEq(_vest.rxd(_s.id), _s.rxd, _concat(_errPrefix, string("/rxd"))); + + GemAbstract token = GemAbstract(_token); + + { + uint256 before = vm.snapshot(); + + // Check each new stream is payable in the future + uint256 pbalance = token.balanceOf(_s.usr); + GodMode.setWard(address(_vest), address(this), 1); + _vest.unrestrict(_s.id); + + vm.warp(_s.fin); + _vest.vest(_s.id); + assertEq( + token.balanceOf(_s.usr), + pbalance + _s.tot - _s.rxd, + _concat(_errPrefix, string("/invalid-received-amount")) + ); + + vm.revertTo(before); + } + } + + function _getIlkMat(bytes32 _ilk) internal view returns (uint256 mat) { + (, mat) = spotter.ilks(_ilk); + } + + function _getIlkDuty(bytes32 _ilk) internal view returns (uint256 duty) { + (duty,) = jug.ilks(_ilk); + } + + function _setIlkMat(bytes32 ilk, uint256 amount) internal { + vm.store( + address(spotter), + bytes32(uint256(keccak256(abi.encode(ilk, uint256(1)))) + 1), + bytes32(amount) + ); + assertEq(_getIlkMat(ilk), amount, _concat("TestError/setIlkMat-", ilk)); + } + + function _setIlkRate(bytes32 ilk, uint256 amount) internal { + vm.store( + address(vat), + bytes32(uint256(keccak256(abi.encode(ilk, uint256(2)))) + 1), + bytes32(amount) + ); + (,uint256 rate,,,) = vat.ilks(ilk); + assertEq(rate, amount, _concat("TestError/setIlkRate-", ilk)); + } + + function _setIlkLine(bytes32 ilk, uint256 amount) internal { + vm.store( + address(vat), + bytes32(uint256(keccak256(abi.encode(ilk, uint256(2)))) + 3), + bytes32(amount) + ); + (,,,uint256 line,) = vat.ilks(ilk); + assertEq(line, amount, _concat("TestError/setIlkLine-", ilk)); + } + + function _checkIlkLerpOffboarding(bytes32 _ilk, bytes32 _lerp, uint256 _startMat, uint256 _endMat) internal { + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + LerpAbstract lerp = LerpAbstract(lerpFactory.lerps(_lerp)); + + vm.warp(block.timestamp + lerp.duration() / 2); + assertEq(_getIlkMat(_ilk), _startMat * RAY / 100); + lerp.tick(); + _assertEqApprox(_getIlkMat(_ilk), ((_startMat + _endMat) / 2) * RAY / 100, RAY / 100); + + vm.warp(block.timestamp + lerp.duration()); + lerp.tick(); + assertEq(_getIlkMat(_ilk), _endMat * RAY / 100); + } + + function _checkIlkLerpIncreaseMatOffboarding(bytes32 _ilk, bytes32 _oldLerp, bytes32 _newLerp, uint256 _newEndMat) internal { + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + LerpFactoryAbstract OLD_LERP_FAB = LerpFactoryAbstract(0x00B416da876fe42dd02813da435Cc030F0d72434); + LerpAbstract oldLerp = LerpAbstract(OLD_LERP_FAB.lerps(_oldLerp)); + + uint256 t = (block.timestamp - oldLerp.startTime()) * WAD / oldLerp.duration(); + uint256 tickMat = oldLerp.end() * t / WAD + oldLerp.start() - oldLerp.start() * t / WAD; + assertEq(_getIlkMat(_ilk), tickMat); + assertEq(spotter.wards(address(oldLerp)), 0); + + LerpAbstract newLerp = LerpAbstract(lerpFactory.lerps(_newLerp)); + + vm.warp(block.timestamp + newLerp.duration() / 2); + assertEq(_getIlkMat(_ilk), tickMat); + newLerp.tick(); + _assertEqApprox(_getIlkMat(_ilk), (tickMat + _newEndMat * RAY / 100) / 2, RAY / 100); + + vm.warp(block.timestamp + newLerp.duration()); + newLerp.tick(); + assertEq(_getIlkMat(_ilk), _newEndMat * RAY / 100); + } + + function _getExtcodesize(address target) internal view returns (uint256 exsize) { + assembly { + exsize := extcodesize(target) + } + } + + function _getBytecodeMetadataLength(address a) internal view returns (uint256 length) { + // The Solidity compiler encodes the metadata length in the last two bytes of the contract bytecode. + assembly { + let ptr := mload(0x40) + let size := extcodesize(a) + if iszero(lt(size, 2)) { + extcodecopy(a, ptr, sub(size, 2), 2) + length := mload(ptr) + length := shr(240, length) + length := add(length, 2) // the two bytes used to specify the length are not counted in the length + } + // We'll return zero if the bytecode is shorter than two bytes. + } + } + + /** + * @dev Checks if the deployer of a contract has not kept `wards` access to the contract. + * Notice that it depends on `deployers` being kept up-to-date. + */ + function _checkWards(address _addr, string memory contractName) internal { + for (uint256 i = 0; i < deployers.count(); i ++) { + address deployer = deployers.addr(i); + (bool ok, bytes memory data) = _addr.call(abi.encodeWithSignature("wards(address)", deployer)); + if (!ok || data.length != 32) return; + + uint256 ward = abi.decode(data, (uint256)); + if (ward > 0) { + emit log_named_address(" Deployer Address", deployer); + emit log_named_string(" Affected Contract", contractName); + fail("Error: Bad Auth"); + } + } + } + + /** + * @dev Same as `_checkWards`, but for OSMs' underlying Median contracts. + */ + function _checkOsmSrcWards(address _addr, string memory contractName) internal { + (bool ok, bytes memory data) = _addr.call(abi.encodeWithSignature("src()")); + if (!ok || data.length != 32) return; + + address source = abi.decode(data, (address)); + string memory sourceName = _concat("src of ", contractName); + _checkWards(source, sourceName); + } + + /** + * @notice Checks if the the deployer of a contract the chainlog has not kept `wards` access to it. + * @dev Reverts if `key` is not in the chainlog. + */ + function _checkAuth(bytes32 key) internal { + address _addr = chainLog.getAddress(key); + string memory contractName = _bytes32ToString(key); + + _checkWards(_addr, contractName); + _checkOsmSrcWards(_addr, contractName); + } + + function _checkRWADocUpdate(bytes32 ilk, string memory currentDoc, string memory newDoc) internal { + (string memory doc, address pip, uint48 tau, uint48 toc) = liquidationOracle.ilks(ilk); + + assertEq(doc, currentDoc, _concat("TestError/bad-old-document-for-", ilk)); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + (string memory docNew, address pipNew, uint48 tauNew, uint48 tocNew) = liquidationOracle.ilks(ilk); + + assertEq(docNew, newDoc, _concat("TestError/bad-new-document-for-", ilk)); + assertEq(pip, pipNew, _concat("TestError/pip-is-not-the-same-for-", ilk)); + assertTrue(tau == tauNew, _concat("TestError/tau-is-not-the-same-for-", ilk)); + assertTrue(toc == tocNew, _concat("TestError/toc-is-not-the-same-for", ilk)); + } + + function _testGeneral() internal { + string memory description = new DssSpell().description(); + assertTrue(bytes(description).length > 0, "TestError/spell-description-length"); + // DS-Test can't handle strings directly, so cast to a bytes32. + assertEq(_stringToBytes32(spell.description()), + _stringToBytes32(description), "TestError/spell-description"); + + if(address(spell) != address(spellValues.deployed_spell)) { + assertEq(spell.expiration(), block.timestamp + spellValues.expiration_threshold, "TestError/spell-expiration"); + } else { + assertEq(spell.expiration(), spellValues.deployed_spell_created + spellValues.expiration_threshold, "TestError/spell-expiration"); + } + + assertTrue(spell.officeHours() == spellValues.office_hours_enabled, "TestError/spell-office-hours"); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + _checkSystemValues(afterSpell); + + _checkCollateralValues(afterSpell); + } + + function _testOfficeHours() internal { + assertEq(spell.officeHours(), spellValues.office_hours_enabled, "TestError/office-hours-mismatch"); + + // Only relevant if office hours are enabled + if (spell.officeHours()) { + + _vote(address(spell)); + spell.schedule(); + + uint256 afterSchedule = vm.snapshot(); + + // Cast in the wrong day + { + uint256 castTime = block.timestamp + pause.delay(); + uint256 day = (castTime / 1 days + 3) % 7; + if (day < 5) { + castTime += 5 days - day * 86400; + } + + // Original revert reason is swallowed and "ds-pause-delegatecall-error" reason is given, + // so it's not worth bothering to check the revert reason. + vm.expectRevert(); + vm.warp(castTime); + spell.cast(); + } + + vm.revertTo(afterSchedule); + + // Cast too early in the day + + { + uint256 castTime = block.timestamp + pause.delay() + 24 hours; + uint256 hour = castTime / 1 hours % 24; + if (hour >= 14) { + castTime -= hour * 3600 - 13 hours; + } + + vm.expectRevert(); + vm.warp(castTime); + spell.cast(); + } + + vm.revertTo(afterSchedule); + + // Cast too late in the day + + { + uint256 castTime = block.timestamp + pause.delay(); + uint256 hour = castTime / 1 hours % 24; + if (hour < 21) { + castTime += 21 hours - hour * 3600; + } + + vm.expectRevert(); + vm.warp(castTime); + spell.cast(); + } + + } + } + + function _testCastOnTime() internal { + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + } + + function _testCastCost() internal { + _vote(address(spell)); + spell.schedule(); + + _castPreviousSpell(); + vm.warp(spell.nextCastTime()); + uint256 startGas = gasleft(); + spell.cast(); + uint256 endGas = gasleft(); + uint256 totalGas = startGas - endGas; + + assertTrue(spell.done(), "TestError/spell-not-done"); + // Fail if cast is too expensive + assertLe(totalGas, 15 * MILLION, "TestError/spell-cast-cost-too-high"); + } + + function _testDeployCost() internal { + uint256 startGas = gasleft(); + new DssSpell(); + uint256 endGas = gasleft(); + uint256 totalGas = startGas - endGas; + + // Warn if deploy exceeds block target size + if (totalGas > 15 * MILLION) { + emit log("Warn: deploy gas exceeds average block target"); + emit log_named_uint(" deploy gas", totalGas); + emit log_named_uint(" block target", 15 * MILLION); + } + + // Fail if deploy is too expensive + assertLe(totalGas, 30 * MILLION, "TestError/spell-deploy-cost-too-high"); + } + + // Fail when contract code size exceeds 24576 bytes (a limit introduced in Spurious Dragon). + // This contract may not be deployable. + // Consider enabling the optimizer (with a low "runs" value!), + // turning off revert strings, or using libraries. + function _testContractSize() internal { + uint256 _sizeSpell; + address _spellAddr = address(spell); + assembly { + _sizeSpell := extcodesize(_spellAddr) + } + assertLe(_sizeSpell, 24576, "testContractSize/DssSpell-exceeds-max-contract-size"); + + uint256 _sizeAction; + address _actionAddr = spell.action(); + assembly { + _sizeAction := extcodesize(_actionAddr) + } + assertLe(_sizeAction, 24576, "testContractSize/DssSpellAction-exceeds-max-contract-size"); + + } + + // The specific date doesn't matter that much since function is checking for difference between warps + function _testNextCastTime() internal { + vm.warp(1606161600); // Nov 23, 20 UTC (could be cast Nov 26) + + _vote(address(spell)); + spell.schedule(); + + uint256 monday_1400_UTC = 1606744800; // Nov 30, 2020 + uint256 monday_2100_UTC = 1606770000; // Nov 30, 2020 + + // Day tests + vm.warp(monday_1400_UTC); // Monday, 14:00 UTC + assertEq(spell.nextCastTime(), monday_1400_UTC); // Monday, 14:00 UTC + + if (spell.officeHours()) { + vm.warp(monday_1400_UTC - 1 days); // Sunday, 14:00 UTC + assertEq(spell.nextCastTime(), monday_1400_UTC); // Monday, 14:00 UTC + + vm.warp(monday_1400_UTC - 2 days); // Saturday, 14:00 UTC + assertEq(spell.nextCastTime(), monday_1400_UTC); // Monday, 14:00 UTC + + vm.warp(monday_1400_UTC - 3 days); // Friday, 14:00 UTC + assertEq(spell.nextCastTime(), monday_1400_UTC - 3 days); // Able to cast + + vm.warp(monday_2100_UTC); // Monday, 21:00 UTC + assertEq(spell.nextCastTime(), monday_1400_UTC + 1 days); // Tuesday, 14:00 UTC + + vm.warp(monday_2100_UTC - 1 days); // Sunday, 21:00 UTC + assertEq(spell.nextCastTime(), monday_1400_UTC); // Monday, 14:00 UTC + + vm.warp(monday_2100_UTC - 2 days); // Saturday, 21:00 UTC + assertEq(spell.nextCastTime(), monday_1400_UTC); // Monday, 14:00 UTC + + vm.warp(monday_2100_UTC - 3 days); // Friday, 21:00 UTC + assertEq(spell.nextCastTime(), monday_1400_UTC); // Monday, 14:00 UTC + + // Time tests + uint256 castTime; + + for(uint256 i = 0; i < 5; i++) { + castTime = monday_1400_UTC + i * 1 days; // Next day at 14:00 UTC + vm.warp(castTime - 1 seconds); // 13:59:59 UTC + assertEq(spell.nextCastTime(), castTime); + + vm.warp(castTime + 7 hours + 1 seconds); // 21:00:01 UTC + if (i < 4) { + assertEq(spell.nextCastTime(), monday_1400_UTC + (i + 1) * 1 days); // Next day at 14:00 UTC + } else { + assertEq(spell.nextCastTime(), monday_1400_UTC + 7 days); // Next monday at 14:00 UTC (friday case) + } + } + } + } + + function _testRevertIfNotScheduled() internal { + vm.expectRevert(); + spell.nextCastTime(); + } + + function _testUseEta() internal { + vm.warp(1606161600); // Nov 23, 20 UTC (could be cast Nov 26) + + _vote(address(spell)); + spell.schedule(); + + uint256 castTime = spell.nextCastTime(); + assertGe(castTime, spell.eta()); + } + + // Verifies that the bytecode of the action of the spell used for testing + // matches what we'd expect. + // + // Not a complete replacement for Etherscan verification, unfortunately. + // This is because the DssSpell bytecode is non-deterministic because it + // deploys the action in its constructor and incorporates the action + // address as an immutable variable--but the action address depends on the + // address of the DssSpell which depends on the address+nonce of the + // deploying address. If we had a way to simulate a contract creation by + // an arbitrary address+nonce, we could verify the bytecode of the DssSpell + // instead. + // + // Vacuous until the deployed_spell value is non-zero. + function _testBytecodeMatches() internal { + // The DssSpell bytecode is non-deterministic, compare only code size + DssSpell expectedSpell = new DssSpell(); + assertEq(_getExtcodesize(address(spell)), _getExtcodesize(address(expectedSpell)), "TestError/spell-codesize"); + + // The SpellAction bytecode can be compared after chopping off the metada + address expectedAction = expectedSpell.action(); + address actualAction = spell.action(); + uint256 expectedBytecodeSize; + uint256 actualBytecodeSize; + assembly { + expectedBytecodeSize := extcodesize(expectedAction) + actualBytecodeSize := extcodesize(actualAction) + } + + uint256 metadataLength = _getBytecodeMetadataLength(expectedAction); + assertTrue(metadataLength <= expectedBytecodeSize, "TestError/metadata-length-gt-expected-bytecode-size"); + expectedBytecodeSize -= metadataLength; + + metadataLength = _getBytecodeMetadataLength(actualAction); + assertTrue(metadataLength <= actualBytecodeSize, "TestError/metadata-length-gt-actual-bytecode-size"); + actualBytecodeSize -= metadataLength; + + assertEq(actualBytecodeSize, expectedBytecodeSize, "TestError/bytecode-size-mismatch"); + uint256 size = actualBytecodeSize; + uint256 expectedHash; + uint256 actualHash; + assembly { + let ptr := mload(0x40) + + extcodecopy(expectedAction, ptr, 0, size) + expectedHash := keccak256(ptr, size) + + extcodecopy(actualAction, ptr, 0, size) + actualHash := keccak256(ptr, size) + } + assertEq(actualHash, expectedHash, "TestError/bytecode-hash-mismatch"); + } + + struct ChainlogCache { + bytes32 versionHash; + bytes32 contentHash; + uint256 count; + bytes32[] keys; + address[] values; + } + + /** + * @dev Checks the integrity of the chainlog. + * This test case is able to catch the following spell issues: + + * 1. Modifications without version bumping: + * a. Removing a key. + * b. Updating a key. + * c. Adding a key. + * d. Removing a key and adding it back (this can change the order of the list). + * 2. Version bumping without modifications. + * 3. Dangling wards on new or updated keys. + * + * When adding or updating a key, the test will automatically check for dangling wards if applicable. + * Notice that when a key is removed, if it is not the last one, there is a side-effect of moving + * the last key to the position of the removed one (well-known Solidity iterability pattern). + * This will generate a false-positive that will cause the test to re-check wards for the moved key. + */ + function _testChainlogIntegrity() internal { + ChainlogCache memory cacheBefore = ChainlogCache({ + count: chainLog.count(), + keys: chainLog.list(), + versionHash: keccak256(abi.encodePacked("")), + contentHash: keccak256(abi.encode(new bytes32[](0), new address[](0))), + values: new address[](0) + }); + + cacheBefore.values = new address[](cacheBefore.count); + for(uint256 i = 0; i < cacheBefore.count; i++) { + cacheBefore.values[i] = chainLog.getAddress(cacheBefore.keys[i]); + } + + cacheBefore.versionHash = keccak256(abi.encodePacked(chainLog.version())); + // Using `abi.encode` to prevent ambiguous encoding + cacheBefore.contentHash = keccak256(abi.encode(cacheBefore.keys, cacheBefore.values)); + + ////////////////////////////////////////// + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + ////////////////////////////////////////// + + ChainlogCache memory cacheAfter = ChainlogCache({ + count: chainLog.count(), + keys: chainLog.list(), + versionHash: keccak256(abi.encodePacked("")), + contentHash: keccak256(abi.encode(new bytes32[](0), new address[](0))), + values: new address[](0) + }); + + cacheAfter.values = new address[](cacheAfter.count); + for(uint256 i = 0; i < cacheAfter.count; i++) { + cacheAfter.values[i] = chainLog.getAddress(cacheAfter.keys[i]); + } + + cacheAfter.versionHash = keccak256(abi.encodePacked(chainLog.version())); + // Using `abi.encode` to prevent ambiguous encoding + cacheAfter.contentHash = keccak256(abi.encode(cacheAfter.keys, cacheAfter.values)); + + ////////////////////////////////////////// + + // If neither the version or the content have changed, there is nothing to test + if (cacheAfter.versionHash == cacheBefore.versionHash && cacheAfter.contentHash == cacheBefore.contentHash) { + vm.skip(true); + } + + // If the version is the same, the content should not have changed + if (cacheAfter.versionHash == cacheBefore.versionHash) { + assertEq(cacheBefore.count, cacheAfter.count, "TestError/chainlog-version-not-updated-length-change"); + + // Add explicit check otherwise this would fail with an array-out-of-bounds error, + // since Foundry does not halt the execution when an assertion fails. + if (cacheBefore.count == cacheAfter.count) { + // Fail if the chainlog is the same size, but EITHER: + // 1. The value for a specific key changed + // 2. The order of keys changed + for (uint256 i = 0; i < cacheAfter.count; i++) { + assertEq( + cacheBefore.values[i], + cacheAfter.values[i], + _concat( + "TestError/chainlog-version-not-updated-value-change: ", + _concat( + _concat("+ ", cacheAfter.keys[i]), + _concat(" | - ", cacheBefore.keys[i]) + ) + ) + ); + } + } + } else { + // If the version changed, the content should have changed + assertTrue(cacheAfter.contentHash != cacheBefore.contentHash, "TestError/chainlog-version-updated-no-content-change"); + } + + // If the content has changed, we look into the diff + if (cacheAfter.contentHash != cacheBefore.contentHash) { + // If the content changed, the version should have changed + assertTrue(cacheAfter.versionHash != cacheBefore.versionHash, "TestError/chainlog-content-updated-no-version-change"); + + uint256 diffCount; + // Iteration must stop at the shorter array length + uint256 maxIters = cacheAfter.count > cacheBefore.count ? cacheBefore.count : cacheAfter.count; + + // Look for changes in existing keys + for (uint256 i = 0; i < maxIters; i++) { + if (cacheAfter.keys[i] != cacheBefore.keys[i]) { + // Change in order + diffCount += 1; + } else if (cacheAfter.values[i] != cacheBefore.values[i]) { + // Change in value + diffCount += 1; + } + } + + // Account for new keys + // Notice: we don't care about removed keys + if (cacheAfter.count > cacheBefore.count) { + diffCount += (cacheAfter.count - cacheBefore.count); + } + + //////////////////////////////////////// + + bytes32[] memory diffKeys = new bytes32[](diffCount); + uint256 j = 0; + + for (uint256 i = 0; i < maxIters; i++) { + if (cacheAfter.keys[i] != cacheBefore.keys[i]) { + // Mark keys whose order has changed + diffKeys[j++] = cacheAfter.keys[i]; + } else if (cacheAfter.values[i] != cacheBefore.values[i]) { + // Mark changed values + diffKeys[j++] = cacheAfter.keys[i]; + } + } + + // Mark new keys + if (cacheAfter.count > cacheBefore.count) { + for (uint256 i = cacheBefore.count; i < cacheAfter.count; i++) { + diffKeys[j++] = cacheAfter.keys[i]; + } + } + + for (uint256 i = 0; i < diffKeys.length; i++) { + _checkAuth(diffKeys[i]); + } + } + } + + // Validate addresses in test harness match chainlog + function _testChainlogValues() internal { + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + bytes32[] memory keys = chainLog.list(); + for (uint256 i = 0; i < keys.length; i++) { + assertEq( + chainLog.getAddress(keys[i]), + addr.addr(keys[i]), + _concat("TestError/chainlog-vs-harness-key-mismatch: ", keys[i]) + ); + } + + assertEq(chainLog.version(), afterSpell.chainlog_version, "TestError/chainlog-version-mismatch"); + } + + function _checkCropCRVLPIntegration( + bytes32 _ilk, + CropJoinLike join, + ClipAbstract clip, + CurveLPOsmLike pip, + address _medianizer1, + address _medianizer2, + bool _isMedian1, + bool _isMedian2, + bool _checkLiquidations + ) public { + pip.poke(); + vm.warp(block.timestamp + 3601); + pip.poke(); + spotter.poke(_ilk); + + // Check medianizer sources + assertEq(pip.orbs(0), _medianizer1); + assertEq(pip.orbs(1), _medianizer2); + + // Contracts set + { + (address _clip,,,) = dog.ilks(_ilk); + assertEq(_clip, address(clip)); + } + assertEq(clip.ilk(), _ilk); + assertEq(clip.vat(), address(vat)); + assertEq(clip.vow(), address(vow)); + assertEq(clip.dog(), address(dog)); + assertEq(clip.spotter(), address(spotter)); + + // Authorization + assertEq(join.wards(pauseProxy), 1); + assertEq(vat.wards(address(join)), 1); + assertEq(vat.wards(address(clip)), 1); + assertEq(dog.wards(address(clip)), 1); + assertEq(clip.wards(address(dog)), 1); + assertEq(clip.wards(address(end)), 1); + assertEq(clip.wards(address(clipMom)), 1); + assertEq(clip.wards(address(esm)), 1); + assertEq(pip.wards(address(osmMom)), 1); + assertEq(pip.bud(address(spotter)), 1); + assertEq(pip.bud(address(end)), 1); + assertEq(pip.bud(address(clip)), 1); + assertEq(pip.bud(address(clipMom)), 1); + if (_isMedian1) assertEq(MedianAbstract(_medianizer1).bud(address(pip)), 1); + if (_isMedian2) assertEq(MedianAbstract(_medianizer2).bud(address(pip)), 1); + + (,,,, uint256 dust) = vat.ilks(_ilk); + uint256 amount = 2 * dust / (_getUNIV2LPPrice(address(pip)) * 1e9); + _giveTokens(address(join.gem()), amount); + + assertEq(GemAbstract(join.gem()).balanceOf(address(this)), amount); + assertEq(vat.gem(_ilk, cropper.getOrCreateProxy(address(this))), 0); + GemAbstract(join.gem()).approve(address(cropper), amount); + cropper.join(address(join), address(this), amount); + assertEq(GemAbstract(join.gem()).balanceOf(address(this)), 0); + assertEq(vat.gem(_ilk, cropper.getOrCreateProxy(address(this))), amount); + + // Tick the fees forward so that art != dai in wad units + vm.warp(block.timestamp + 1); + jug.drip(_ilk); + + // Check that we got rewards from the time increment above + assertEq(GemAbstract(join.bonus()).balanceOf(address(this)), 0); + cropper.join(address(join), address(this), 0); + // NOTE: LDO rewards are shutting off on Friday so this will fail (bad timing), but they plan to extend + //assertGt(GemAbstract(join.bonus()).balanceOf(address(this)), 0); + + // Deposit collateral, generate DAI + (,uint256 rate,,,) = vat.ilks(_ilk); + assertEq(vat.dai(address(this)), 0); + cropper.frob(_ilk, address(this), address(this), address(this), int256(amount), int256(_divup(dust, rate))); + assertEq(vat.gem(_ilk, cropper.getOrCreateProxy(address(this))), 0); + assertTrue(vat.dai(address(this)) >= dust && vat.dai(address(this)) <= dust + RAY); + + // Payback DAI, withdraw collateral + vat.hope(address(cropper)); // Need to grant the cropper permission to remove dai + cropper.frob(_ilk, address(this), address(this), address(this), -int256(amount), -int256(_divup(dust, rate))); + assertEq(vat.gem(_ilk, cropper.getOrCreateProxy(address(this))), amount); + assertEq(vat.dai(address(this)), 0); + + // Withdraw from adapter + cropper.exit(address(join), address(this), amount); + assertEq(GemAbstract(join.gem()).balanceOf(address(this)), amount); + assertEq(vat.gem(_ilk, cropper.getOrCreateProxy(address(this))), 0); + + if (_checkLiquidations) { + // Generate new DAI to force a liquidation + GemAbstract(join.gem()).approve(address(cropper), amount); + cropper.join(address(join), address(this), amount); + // dart max amount of DAI + { // Stack too deep + (,,uint256 spot,,) = vat.ilks(_ilk); + cropper.frob(_ilk, address(this), address(this), address(this), int256(amount), int256(amount * spot / rate)); + } + vm.warp(block.timestamp + 1); + jug.drip(_ilk); + assertEq(clip.kicks(), 0); + + // Kick off the liquidation + dog.bark(_ilk, cropper.getOrCreateProxy(address(this)), address(this)); + assertEq(clip.kicks(), 1); + + // Complete the liquidation + vat.hope(address(clip)); + (, uint256 tab,,,,) = clip.sales(1); + vm.store( + address(vat), + keccak256(abi.encode(address(this), uint256(5))), + bytes32(tab) + ); + assertEq(vat.dai(address(this)), tab); + assertEq(vat.gem(_ilk, cropper.getOrCreateProxy(address(this))), 0); + clip.take(1, type(uint256).max, type(uint256).max, address(this), ""); + assertEq(vat.gem(_ilk, cropper.getOrCreateProxy(address(this))), amount); + } + + // Dump all dai for next run + vat.move(address(this), address(0x0), vat.dai(address(this))); + } + + function _testSplitter() internal { + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done()); + + assertEq(vow.flapper(), address(split), "TestError/invalid-vow-flapper"); + assertEq(split.flapper(), address(flap), "TestError/invalid-split-flapper"); + assertEq(flap.gem(), address(sky), "TestError/invalid-flapper-gem"); + assertEq(flap.pip(), addr.addr("FLAP_SKY_ORACLE"), "TestError/invalid-flapper-pip"); + assertEq(flap.pair(), addr.addr("UNIV2USDSSKY"), "TestError/invalid-flapper-pair"); + + // Check splitter and flapper + { + // Leave surplus buffer ready to be flapped + vow.heal(vat.sin(address(vow)) - (vow.Sin() + vow.Ash())); + // Ensure flapping is possible + stdstore + .target(address(vat)) + .sig("dai(address)") + .with_key(address(vow)) + .checked_write(vat.sin(address(vow)) + vow.bump() + vow.hump()); + + GemAbstract pair = GemAbstract(addr.addr("UNIV2USDSSKY")); + FlapOracleLike pip = FlapOracleLike(flap.pip()); + + vm.prank(address(flap)); + uint256 price = uint256(pip.read()); + + // Ensure there is enough liquidity + uint256 usdsWad = 150_000_000 * WAD; + GodMode.setBalance(address(usds), address(pair), usdsWad); + // Ensure price is within the tolerane (flap.want() + delta (1 p.p.)) + uint256 skyWad = usdsWad * (flap.want() + 10**16) / price; + GodMode.setBalance(address(sky), address(pair), skyWad); + + uint256 lotRad = vow.bump() * split.burn() / WAD; + uint256 payWad = (vow.bump() - lotRad) / RAY; + + uint256 pskyBalancePauseProxy = sky.balanceOf(pauseProxy); + uint256 pdaiVow = vat.dai(address(vow)); + uint256 preserveUsds = usds.balanceOf(address(pair)); + uint256 preserveSky = sky.balanceOf(address(pair)); + + uint256 pbalanceUsdsFarm; + // Checking the farm balance is only relevant if split.burn() < 100% + if (split.burn() < 1 * WAD) { + pbalanceUsdsFarm = usds.balanceOf(split.farm()); + assertFalse(split.farm() == address(0), "TestError/Splitter/missing-farm"); + } + + vow.flap(); + + assertGt(sky.balanceOf(pauseProxy), pskyBalancePauseProxy, "TestError/Flapper/unexpected-sky-pause-proxy-balance"); + assertLt(sky.balanceOf(address(pair)), preserveSky, "TestError/Flapper/unexpected-sky-pair-balance"); + assertEq(usds.balanceOf(address(pair)), preserveUsds + lotRad / RAY, "TestError/Flapper/invalid-usds-pair-balance-increase"); + assertEq(pdaiVow - vat.dai(address(vow)), vow.bump(), "TestError/Flapper/invalid-vat-dai-vow-change"); + assertEq(usds.balanceOf(address(flap)), 0, "TestError/Flapper/invalid-usds-balance"); + assertEq(sky.balanceOf(address(flap)), 0, "TestError/Flapper/invalid-sky-balance"); + + if (split.burn() < 1 * WAD) { + assertEq(usds.balanceOf(split.farm()), pbalanceUsdsFarm + payWad, "TestError/Splitter/invalid-farm-balance"); + } + } + + // Check Mom can increase hop + { + // The check for the configured value is already done in `_checkSystemValues()` + assertLt(split.hop(), type(uint256).max, "TestError/SplitterMom/already-stopped"); + vm.prank(chief.hat()); + splitterMom.stop(); + assertEq(split.hop(), type(uint256).max, "TestError/SplitterMom/not-stopped"); + } + } + + function _testSystemTokens() internal { + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done()); + + // USDS + { + // USDS is upgradeable, so we need to ensure the implementation contract address is correct. + assertEq(_imp(address(usds)), addr.addr("USDS_IMP"), "TestError/USDS/invalid-usds-implementation"); + } + + // Converter: Dai <-> USDS + { + DaiUsdsLike daiUsds = DaiUsdsLike(addr.addr("DAI_USDS")); + address daiHolder = address(0x42); + deal(address(dai), daiHolder, 1_000 * WAD); + address usdsHolder = address(0x65); + deal(address(usds), usdsHolder, 1_000 * WAD); + + + // Dai -> USDS conversion + { + uint256 before = vm.snapshot(); + + uint256 pdaiBalance = dai.balanceOf(daiHolder); + uint256 pusdsBalance = usds.balanceOf(usdsHolder); + + vm.startPrank(daiHolder); + dai.approve(address(daiUsds), type(uint256).max); + daiUsds.daiToUsds(usdsHolder, pdaiBalance); + vm.stopPrank(); + + uint256 expectedUsdsBalance = pusdsBalance + pdaiBalance; + + assertEq(dai.balanceOf(daiHolder), 0, "TestError/Dai/bad-dai-to-usds-conversion"); + assertEq(usds.balanceOf(usdsHolder), expectedUsdsBalance, "TestError/Usds/bad-dai-to-usds-conversion"); + + vm.revertTo(before); + } + + // USDS -> Dai conversion + { + uint256 before = vm.snapshot(); + + uint256 pusdsBalance = usds.balanceOf(usdsHolder); + uint256 pdaiBalance = dai.balanceOf(daiHolder); + + vm.startPrank(usdsHolder); + usds.approve(address(daiUsds), type(uint256).max); + daiUsds.usdsToDai(daiHolder, pusdsBalance); + vm.stopPrank(); + + uint256 expectedDaiBalance = pdaiBalance + pusdsBalance; + + assertEq(usds.balanceOf(usdsHolder), 0, "TestError/USDS/bad-usds-to-dai-conversion"); + assertEq(dai.balanceOf(daiHolder), expectedDaiBalance, "TestError/Dai/bad-usds-to-dai-conversion"); + + vm.revertTo(before); + } + } + + // Converter: MKR <-> SKY + { + MkrSkyLike mkrSky = MkrSkyLike(addr.addr("MKR_SKY")); + address mkrHolder = address(0x42); + deal(address(gov), mkrHolder, 1_000 * WAD); + address skyHolder = address(0x65); + deal(address(sky), skyHolder, 1_000 * WAD * afterSpell.sky_mkr_rate); + + + // MKR -> SKY conversion + { + uint256 before = vm.snapshot(); + + uint256 pmkrBalance = gov.balanceOf(mkrHolder); + uint256 pskyBalance = sky.balanceOf(skyHolder); + + vm.startPrank(mkrHolder); + gov.approve(address(mkrSky), type(uint256).max); + mkrSky.mkrToSky(skyHolder, pmkrBalance); + vm.stopPrank(); + + uint256 expectedSkyBalance = pskyBalance + (pmkrBalance * afterSpell.sky_mkr_rate); + + assertEq(gov.balanceOf(mkrHolder), 0, "TestError/MKR/bad-mkr-to-sky-conversion"); + assertEq(sky.balanceOf(skyHolder), expectedSkyBalance, "TestError/Sky/bad-mkr-to-sky-conversion"); + + vm.revertTo(before); + } + + // SKY -> MKR conversion + { + uint256 before = vm.snapshot(); + + uint256 pskyBalance = sky.balanceOf(skyHolder); + uint256 pmkrBalance = gov.balanceOf(mkrHolder); + + vm.startPrank(skyHolder); + sky.approve(address(mkrSky), type(uint256).max); + mkrSky.skyToMkr(mkrHolder, pskyBalance); + vm.stopPrank(); + + uint256 expectedMkrBalance = pmkrBalance + (pskyBalance / afterSpell.sky_mkr_rate); + + assertEq(sky.balanceOf(skyHolder), 0, "TestError/SKY/bad-sky-to-mkr-conversion"); + assertEq(gov.balanceOf(mkrHolder), expectedMkrBalance, "TestError/Mkr/bad-sky-to-mkr-conversion"); + + vm.revertTo(before); + } + } + + // sUSDS + { + // sUSDS is upgradeable, so we need to ensure the implementation contract address is correct. + assertEq(_imp(address(susds)), addr.addr("SUSDS_IMP"), "TestError/sUSDS/invalid-susds-implementation"); + assertEq(susds.asset(), address(usds), "TestError/sUSDS/invalid-susds-asset"); + + // Ensure rate accumulator is up-to-date + susds.drip(); + // Ensure the test contract has some tokens + _giveTokens(address(usds), 1_000 * WAD); + usds.approve(address(susds), type(uint256).max); + + uint256 pchi = susds.chi(); + uint256 passets = usds.balanceOf(address(this)); + + uint256 shares = susds.deposit(passets, address(this)); + assertLe(shares, passets, "TestError/sUSDS/invalid-shares"); + + uint256 interval = 365 days; + skip(interval); + susds.drip(); + + uint256 chi = susds.chi(); + uint256 expectedChi = _rpow(rates.rates(afterSpell.susds_ssr), interval, RAY) * pchi / RAY; + uint256 assets = susds.redeem(shares, address(this), address(this)); + + // Allow a 0.01% rounding error + assertApproxEqRel(chi, expectedChi, 10**14, "TestError/sUSDS/invalid-chi"); + assertGt(assets, passets, "TestError/sUSDS/invalid-redeem-assets"); + assertEq(assets, usds.balanceOf(address(this)), "TestError/sUSDS/invalid-balance-after-redeem"); + } + } + + // Obtained as `bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1)` + bytes32 constant EIP1967_IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; + + /// @dev Returns the implementation of upgradeable contracts following EIP1697 + function _imp(address _tgt) internal view returns (address) { + return address(uint160(uint256(vm.load(_tgt, EIP1967_IMPLEMENTATION_SLOT)))); + } +} diff --git a/archive/2024-09-27-DssSpell/DssSpell.t.sol b/archive/2024-09-27-DssSpell/DssSpell.t.sol new file mode 100644 index 000000000..a1cdf044c --- /dev/null +++ b/archive/2024-09-27-DssSpell/DssSpell.t.sol @@ -0,0 +1,938 @@ +// SPDX-FileCopyrightText: © 2020 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity 0.8.16; + +import "./DssSpell.t.base.sol"; +import {ScriptTools} from "dss-test/DssTest.sol"; + +import {RootDomain} from "dss-test/domains/RootDomain.sol"; +import {OptimismDomain} from "dss-test/domains/OptimismDomain.sol"; +import {ArbitrumDomain} from "dss-test/domains/ArbitrumDomain.sol"; + +interface L2Spell { + function dstDomain() external returns (bytes32); + function gateway() external returns (address); +} + +interface L2Gateway { + function validDomains(bytes32) external returns (uint256); +} + +interface BridgeLike { + function l2TeleportGateway() external view returns (address); +} + +interface ProxyLike { + function exec(address target, bytes calldata args) external payable returns (bytes memory out); +} + +interface SpellActionLike { + function dao_resolutions() external view returns (string memory); +} + +interface SequencerLike { + function getMaster() external view returns (bytes32); + function hasJob(address job) external view returns (bool); +} + + +contract DssSpellTest is DssSpellTestBase { + string config; + RootDomain rootDomain; + OptimismDomain optimismDomain; + ArbitrumDomain arbitrumDomain; + + // DO NOT TOUCH THE FOLLOWING TESTS, THEY SHOULD BE RUN ON EVERY SPELL + function testGeneral() public { + _testGeneral(); + } + + function testOfficeHours() public { + _testOfficeHours(); + } + + function testCastOnTime() public { + _testCastOnTime(); + } + + function testNextCastTime() public { + _testNextCastTime(); + } + + function testRevertIfNotScheduled() public { + _testRevertIfNotScheduled(); + } + + function testUseEta() public { + _testUseEta(); + } + + function testContractSize() public skippedWhenDeployed { + _testContractSize(); + } + + function testDeployCost() public skippedWhenDeployed { + _testDeployCost(); + } + + function testBytecodeMatches() public skippedWhenNotDeployed { + _testBytecodeMatches(); + } + + function testCastCost() public { + _testCastCost(); + } + + function testChainlogIntegrity() public { + _testChainlogIntegrity(); + } + + function testChainlogValues() public { + _testChainlogValues(); + } + + function testSplitter() public { + _testSplitter(); + } + + function testSystemTokens() public { + _testSystemTokens(); + } + + // Leave this test public (for now) as this is acting like a config test + function testPSMs() public { + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + bytes32 _ilk; + + // USDC + _ilk = "PSM-USDC-A"; + assertEq(addr.addr("MCD_JOIN_PSM_USDC_A"), reg.join(_ilk)); + assertEq(addr.addr("MCD_CLIP_PSM_USDC_A"), reg.xlip(_ilk)); + assertEq(addr.addr("PIP_USDC"), reg.pip(_ilk)); + assertEq(addr.addr("MCD_PSM_USDC_A"), chainLog.getAddress("MCD_PSM_USDC_A")); + _checkPsmIlkIntegration( + _ilk, + GemJoinAbstract(addr.addr("MCD_JOIN_PSM_USDC_A")), + ClipAbstract(addr.addr("MCD_CLIP_PSM_USDC_A")), + addr.addr("PIP_USDC"), + PsmAbstract(addr.addr("MCD_PSM_USDC_A")), + 1, // tin + 1 // tout + ); + + // GUSD + _ilk = "PSM-GUSD-A"; + assertEq(addr.addr("MCD_JOIN_PSM_GUSD_A"), reg.join(_ilk)); + assertEq(addr.addr("MCD_CLIP_PSM_GUSD_A"), reg.xlip(_ilk)); + assertEq(addr.addr("PIP_GUSD"), reg.pip(_ilk)); + assertEq(addr.addr("MCD_PSM_GUSD_A"), chainLog.getAddress("MCD_PSM_GUSD_A")); + _checkPsmIlkIntegration( + _ilk, + GemJoinAbstract(addr.addr("MCD_JOIN_PSM_GUSD_A")), + ClipAbstract(addr.addr("MCD_CLIP_PSM_GUSD_A")), + addr.addr("PIP_GUSD"), + PsmAbstract(addr.addr("MCD_PSM_GUSD_A")), + 0, // tin + 0 // tout + ); + + // USDP + _ilk = "PSM-PAX-A"; + assertEq(addr.addr("MCD_JOIN_PSM_PAX_A"), reg.join(_ilk)); + assertEq(addr.addr("MCD_CLIP_PSM_PAX_A"), reg.xlip(_ilk)); + assertEq(addr.addr("PIP_PAX"), reg.pip(_ilk)); + assertEq(addr.addr("MCD_PSM_PAX_A"), chainLog.getAddress("MCD_PSM_PAX_A")); + _checkPsmIlkIntegration( + _ilk, + GemJoinAbstract(addr.addr("MCD_JOIN_PSM_PAX_A")), + ClipAbstract(addr.addr("MCD_CLIP_PSM_PAX_A")), + addr.addr("PIP_PAX"), + PsmAbstract(addr.addr("MCD_PSM_PAX_A")), + 0, // tin + 0 // tout + ); + } + + function testLitePSMs() public { + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + bytes32 _ilk; + + // USDC + _ilk = "LITE-PSM-USDC-A"; + assertEq(addr.addr("PIP_USDC"), reg.pip(_ilk)); + assertEq(addr.addr("MCD_LITE_PSM_USDC_A"), chainLog.getAddress("MCD_LITE_PSM_USDC_A")); + _checkLitePsmIlkIntegration( + LitePsmIlkIntegrationParams({ + ilk: _ilk, + pip: addr.addr("PIP_USDC"), + litePsm: addr.addr("MCD_LITE_PSM_USDC_A"), + pocket: addr.addr("MCD_LITE_PSM_USDC_A_POCKET"), + bufUnits: 200_000_000, + tinBps: 0, + toutBps: 0 + }) + ); + } + + // END OF TESTS THAT SHOULD BE RUN ON EVERY SPELL + + // TESTS BELOW CAN BE ENABLED/DISABLED ON DEMAND + + function testOracleList() public skipped { // TODO: check if this test can be removed for good. + // address ORACLE_WALLET01 = 0x4D6fbF888c374D7964D56144dE0C0cFBd49750D3; + + //assertEq(OsmAbstract(0xF15993A5C5BE496b8e1c9657Fd2233b579Cd3Bc6).wards(ORACLE_WALLET01), 0); + + //_vote(address(spell)); + //_scheduleWaitAndCast(address(spell)); + //assertTrue(spell.done()); + + //assertEq(OsmAbstract(0xF15993A5C5BE496b8e1c9657Fd2233b579Cd3Bc6).wards(ORACLE_WALLET01), 1); + } + + function testRemoveChainlogValues() public skipped { // add the `skipped` modifier to skip + string[1] memory removedKeys = [ + "FLAPPER_MOM" + ]; + + for (uint256 i = 0; i < removedKeys.length; i++) { + try chainLog.getAddress(_stringToBytes32(removedKeys[i])) { + } catch Error(string memory errmsg) { + if (_cmpStr(errmsg, "dss-chain-log/invalid-key")) { + fail(_concat("TestError/key-to-remove-does-not-exist: ", removedKeys[i])); + } else { + fail(errmsg); + } + } + } + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + for (uint256 i = 0; i < removedKeys.length; i++) { + try chainLog.getAddress(_stringToBytes32(removedKeys[i])) { + fail(_concat("TestError/key-not-removed: ", removedKeys[i])); + } catch Error(string memory errmsg) { + assertTrue( + _cmpStr(errmsg, "dss-chain-log/invalid-key"), + _concat("TestError/key-not-removed: ", removedKeys[i]) + ); + } catch { + fail(_concat("TestError/unknown-reason: ", removedKeys[i])); + } + } + } + + function testCollateralIntegrations() public skipped { // add the `skipped` modifier to skip + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + // Insert new collateral tests here + _checkIlkIntegration( + "GNO-A", + GemJoinAbstract(addr.addr("MCD_JOIN_GNO_A")), + ClipAbstract(addr.addr("MCD_CLIP_GNO_A")), + addr.addr("PIP_GNO"), + true, /* _isOSM */ + true, /* _checkLiquidations */ + false /* _transferFee */ + ); + } + + function testIlkClipper() public skipped { // add the `skipped` modifier to skip + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + _checkIlkClipper( + "RETH-A", + GemJoinAbstract(addr.addr("MCD_JOIN_RETH_A")), + ClipAbstract(addr.addr("MCD_CLIP_RETH_A")), + addr.addr("MCD_CLIP_CALC_RETH_A"), + OsmAbstract(addr.addr("PIP_RETH")), + 1_000 * WAD + ); + } + + function testLerpSurplusBuffer() public skipped { // add the `skipped` modifier to skip + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + // Insert new SB lerp tests here + + LerpAbstract lerp = LerpAbstract(lerpFactory.lerps("NAME")); + + uint256 duration = 210 days; + vm.warp(block.timestamp + duration / 2); + assertEq(vow.hump(), 60 * MILLION * RAD); + lerp.tick(); + assertEq(vow.hump(), 75 * MILLION * RAD); + vm.warp(block.timestamp + duration / 2); + lerp.tick(); + assertEq(vow.hump(), 90 * MILLION * RAD); + assertTrue(lerp.done()); + } + + function testNewIlkRegistryValues() public skipped { // add the `skipped` modifier to skip + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + // Insert new ilk registry values tests here + _checkIlkIntegration( + "TOKEN-X", + GemJoinAbstract(addr.addr("MCD_JOIN_TOKEN_X")), + ClipAbstract(addr.addr("MCD_CLIP_TOKEN_X")), + addr.addr("PIP_TOKEN"), + true, + true, + false + ); + } + + function testEsmAuth() public skipped { // add the `skipped` modifier to skip + string[1] memory esmAuthorisedContractKeys = [ + "MCD_LITE_PSM_USDC_A_IN_CDT_JAR" + ]; + + for (uint256 i = 0; i < esmAuthorisedContractKeys.length; i++) { + assertEq( + WardsAbstract(addr.addr(_stringToBytes32(esmAuthorisedContractKeys[i]))).wards(address(esm)), + 0, + _concat("TestError/esm-is-ward-before-spell: ", esmAuthorisedContractKeys[i]) + ); + } + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + for (uint256 i = 0; i < esmAuthorisedContractKeys.length; i++) { + assertEq( + WardsAbstract(addr.addr(_stringToBytes32(esmAuthorisedContractKeys[i]))).wards(address(esm)), + 1, + _concat("TestError/esm-is-not-ward-after-spell: ", esmAuthorisedContractKeys[i]) + ); + } + } + + function testOSMs() public skipped { // add the `skipped` modifier to skip + address READER = address(0); + + // Track OSM authorizations here + assertEq(OsmAbstract(addr.addr("PIP_TOKEN")).bud(READER), 0); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + assertEq(OsmAbstract(addr.addr("PIP_TOKEN")).bud(READER), 1); + } + + function testMedianizers() public skipped { // add the `skipped` modifier to skip + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + // Track Median authorizations here + address SET_TOKEN = address(0); + address TOKENUSD_MED = OsmAbstract(addr.addr("PIP_TOKEN")).src(); + assertEq(MedianAbstract(TOKENUSD_MED).bud(SET_TOKEN), 1); + } + + function testVestDAI() public skipped { // add the `skipped` modifier to skip + // Provide human-readable names for timestamps + uint256 DEC_01_2023 = 1701385200; + uint256 NOV_30_2024 = 1733007599; + + // For each new stream, provide Stream object + // and initialize the array with the corrent number of new streams + VestStream[] memory streams = new VestStream[](1); + streams[0] = VestStream({ + id: 38, + usr: wallets.addr("ECOSYSTEM_FACILITATOR"), + bgn: DEC_01_2023, + clf: DEC_01_2023, + fin: NOV_30_2024, + tau: 366 days, + mgr: address(0), + res: 1, + tot: 504_000 * WAD, + rxd: 0 + }); + + _checkVestDai(streams); + } + + function testVestMKR() public skipped { // add the `skipped` modifier to skip + // Provide human-readable names for timestamps + uint256 DEC_01_2023 = 1701385200; + uint256 NOV_30_2024 = 1733007599; + + // For each new stream, provide Stream object + // and initialize the array with the corrent number of new streams + VestStream[] memory streams = new VestStream[](1); + streams[0] = VestStream({ + id: 44, + usr: wallets.addr("ECOSYSTEM_FACILITATOR"), + bgn: DEC_01_2023, + clf: DEC_01_2023, + fin: NOV_30_2024, + tau: 366 days, + mgr: address(0), + res: 1, + tot: 216 * WAD, + rxd: 0 + }); + + _checkVestMkr(streams); + } + + function testVestSKY() public skipped { // add the `skipped` modifier to skip + // Provide human-readable names for timestamps + // uint256 DEC_01_2023 = 1701385200; + + // For each new stream, provide Stream object + // and initialize the array with the corrent number of new streams + VestStream[] memory streams = new VestStream[](1); + + // This stream is configured in relative to the spell casting time. + { + uint256 before = vm.snapshot(); + _vote(address(spell)); + spell.schedule(); + vm.warp(spell.nextCastTime()); + + streams[0] = VestStream({ + id: 1, + usr: addr.addr("REWARDS_DIST_USDS_SKY"), + bgn: block.timestamp - 7 days, + clf: block.timestamp - 7 days, + fin: block.timestamp - 7 days + 365 days - 1, + tau: 365 days - 1, + mgr: address(0), + res: 1, + tot: 600_000_000 * WAD, + // Note: the accumulated vested amount is claimed during the spell (`REWARDS_DIST_USDS_SKY.distribute()`) + rxd: 600_000_000 * WAD * 7 days / (365 days - 1) + }); + + vm.revertTo(before); + } + + _checkVestSky(streams); + } + + struct Yank { + uint256 streamId; + address addr; + uint256 finPlanned; + } + + function testYankDAI() public skipped { // add the `skipped` modifier to skip + // Provide human-readable names for timestamps + uint256 FEB_29_2024 = 1709251199; + uint256 MAR_31_2024 = 1711929599; + + // For each yanked stream, provide Yank object with: + // the stream id + // the address of the stream + // the planned fin of the stream (via variable defined above) + // Initialize the array with the corrent number of yanks + Yank[2] memory yanks = [ + Yank(20, wallets.addr("BA_LABS"), FEB_29_2024), + Yank(21, wallets.addr("BA_LABS"), MAR_31_2024) + ]; + + // Test stream id matches `addr` and `fin` + VestAbstract vest = VestAbstract(addr.addr("MCD_VEST_DAI")); // or "MCD_VEST_DAI_LEGACY" + for (uint256 i = 0; i < yanks.length; i++) { + assertEq(vest.usr(yanks[i].streamId), yanks[i].addr, "testYankDAI/unexpected-address"); + assertEq(vest.fin(yanks[i].streamId), yanks[i].finPlanned, "testYankDAI/unexpected-fin-date"); + } + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + for (uint256 i = 0; i < yanks.length; i++) { + // Test stream.fin is set to the current block after the spell + assertEq(vest.fin(yanks[i].streamId), block.timestamp, "testYankDAI/steam-not-yanked"); + } + } + + function testYankMKR() public skipped { // add the `skipped` modifier to skip + // Provide human-readable names for timestamps + uint256 MAR_31_2024 = 1711929599; + + // For each yanked stream, provide Yank object with: + // the stream id + // the address of the stream + // the planned fin of the stream (via variable defined above) + // Initialize the array with the corrent number of yanks + Yank[1] memory yanks = [ + Yank(35, wallets.addr("BA_LABS"), MAR_31_2024) + ]; + + // Test stream id matches `addr` and `fin` + VestAbstract vestTreasury = VestAbstract(addr.addr("MCD_VEST_MKR_TREASURY")); + for (uint256 i = 0; i < yanks.length; i++) { + assertEq(vestTreasury.usr(yanks[i].streamId), yanks[i].addr, "testYankMKR/unexpected-address"); + assertEq(vestTreasury.fin(yanks[i].streamId), yanks[i].finPlanned, "testYankMKR/unexpected-fin-date"); + } + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + for (uint256 i = 0; i < yanks.length; i++) { + // Test stream.fin is set to the current block after the spell + assertEq(vestTreasury.fin(yanks[i].streamId), block.timestamp, "testYankMKR/steam-not-yanked"); + + // Give admin powers to test contract address and make the vesting unrestricted for testing + GodMode.setWard(address(vestTreasury), address(this), 1); + + // Test vest can still be called, making stream "invalid" and not changing `fin` timestamp + vestTreasury.unrestrict(yanks[i].streamId); + vestTreasury.vest(yanks[i].streamId); + assertTrue(!vestTreasury.valid(yanks[i].streamId)); + assertEq(vestTreasury.fin(yanks[i].streamId), block.timestamp, "testYankMKR/steam-fin-changed"); + } + } + + struct Payee { + address token; + address addr; + uint256 amount; + } + + struct PaymentAmounts { + uint256 dai; + uint256 mkr; + uint256 usds; + uint256 sky; + } + + function testPayments() public { // add the `skipped` modifier to skip + // For each payment, create a Payee object with: + // the address of the transferred token, + // the destination address, + // the amount to be paid + // Initialize the array with the number of payees + Payee[15] memory payees = [ + Payee(address(dai), wallets.addr("BLUE"), 54_167 * WAD), + Payee(address(dai), wallets.addr("CLOAKY"), 20_417 * WAD), + Payee(address(dai), wallets.addr("CLOAKY_KOHLA_2"), 10_000 * WAD), + Payee(address(dai), wallets.addr("CLOAKY_ENNOIA"), 10_000 * WAD), + Payee(address(dai), wallets.addr("JULIACHANG"), 8_333 * WAD), + Payee(address(dai), wallets.addr("BYTERON"), 8_333 * WAD), + Payee(address(dai), wallets.addr("ROCKY"), 8_065 * WAD), + Payee(address(dai), wallets.addr("BONAPUBLICA"), 5_430 * WAD), + Payee(address(mkr), wallets.addr("BLUE"), 13.75 ether), // Note: ether is only a keyword helper + Payee(address(mkr), wallets.addr("CLOAKY"), 12.00 ether), // Note: ether is only a keyword helper + Payee(address(mkr), wallets.addr("JULIACHANG"), 1.25 ether), // Note: ether is only a keyword helper + Payee(address(mkr), wallets.addr("BYTERON"), 1.25 ether), // Note: ether is only a keyword helper + Payee(address(mkr), wallets.addr("ROCKY"), 1.21 ether), // Note: ether is only a keyword helper + Payee(address(usds), wallets.addr("LIQUIDITY_BOOTSTRAPPING"), 10_000_000 * WAD), + Payee(address(sky), wallets.addr("LIQUIDITY_BOOTSTRAPPING"), 320_000_000 * WAD) + ]; + // Fill the total values from exec sheet + PaymentAmounts memory expectedTotalDiff = PaymentAmounts({ + dai: 124_745 * WAD, + mkr: 29.46 ether, // Note: ether is only a keyword helper + usds: 10_000_000 * WAD, + sky: 320_000_000 * WAD + }); + + // Vote, schedule and warp, but not yet cast (to get correct surplus balance) + _vote(address(spell)); + spell.schedule(); + vm.warp(spell.nextCastTime()); + pot.drip(); + + // Calculate and save previous balances + PaymentAmounts memory previousTotalBalance = PaymentAmounts({ + dai: vat.sin(address(vow)), + mkr: mkr.balanceOf(address(pauseProxy)), + usds: usds.balanceOf(address(pauseProxy)), + sky: sky.balanceOf(address(pauseProxy)) + }); + PaymentAmounts memory calculatedTotalDiff; + PaymentAmounts[] memory previousPayeeBalances = new PaymentAmounts[](payees.length); + for (uint256 i = 0; i < payees.length; i++) { + if (payees[i].token == address(dai)) { + calculatedTotalDiff.dai += payees[i].amount; + } else if (payees[i].token == address(mkr)) { + calculatedTotalDiff.mkr += payees[i].amount; + } else if (payees[i].token == address(usds)) { + calculatedTotalDiff.usds += payees[i].amount; + } else if (payees[i].token == address(sky)) { + calculatedTotalDiff.sky += payees[i].amount; + } else { + revert('TestPayments/unexpected-payee-token'); + } + previousPayeeBalances[i] = PaymentAmounts({ + dai: dai.balanceOf(payees[i].addr), + mkr: mkr.balanceOf(payees[i].addr), + usds: usds.balanceOf(payees[i].addr), + sky: sky.balanceOf(payees[i].addr) + }); + } + + // Cast spell + spell.cast(); + assertTrue(spell.done(), "TestPayments/spell-not-done"); + + // Check no other transfers were made + PaymentAmounts memory actualBalanceDiff = PaymentAmounts({ + dai: vat.sin(address(vow)) - previousTotalBalance.dai, // We expect debt to increase + mkr: previousTotalBalance.mkr - mkr.balanceOf(address(pauseProxy)), + usds: previousTotalBalance.usds - usds.balanceOf(address(pauseProxy)), + sky: sky.balanceOf(address(pauseProxy)) - previousTotalBalance.sky // We expect Sky balance to increase + }); + assertEq( + actualBalanceDiff.dai, + (calculatedTotalDiff.dai + calculatedTotalDiff.usds) * RAY, + "TestPayments/vat-sin-mismatch-calculated" + ); + assertEq( + actualBalanceDiff.dai, + (expectedTotalDiff.dai + expectedTotalDiff.usds) * RAY, + "TestPayments/vat-sin-mismatch-expected" + ); + assertLe( + actualBalanceDiff.mkr - (calculatedTotalDiff.mkr + calculatedTotalDiff.sky / afterSpell.sky_mkr_rate) - actualBalanceDiff.sky / afterSpell.sky_mkr_rate, + 1, // To account for rounding errors when converting Sky back to Mkr + "TestPayments/invalid-total" + ); + assertLe( + actualBalanceDiff.mkr - (expectedTotalDiff.mkr + expectedTotalDiff.sky / afterSpell.sky_mkr_rate) - actualBalanceDiff.sky / afterSpell.sky_mkr_rate, + 1, // To account for rounding errors when converting Sky back to Mkr + "TestPayments/invalid-total" + ); + assertEq(actualBalanceDiff.usds, 0, "TestPayments/unexpected-usds-balance-change"); + + // Check that payees received their payments + for (uint256 i = 0; i < payees.length; i++) { + if (payees[i].token == address(dai)) { + assertEq( + dai.balanceOf(payees[i].addr), + previousPayeeBalances[i].dai + payees[i].amount, + "TestPayments/invalid-payee-dai-balance" + ); + } else if (payees[i].token == address(mkr)) { + assertEq( + mkr.balanceOf(payees[i].addr), + previousPayeeBalances[i].mkr + payees[i].amount, + "TestPayments/invalid-payee-mkr-balance" + ); + } else if (payees[i].token == address(usds)) { + assertEq( + usds.balanceOf(payees[i].addr), + previousPayeeBalances[i].usds + payees[i].amount, + "TestPayments/invalid-payee-usds-balance" + ); + } else if (payees[i].token == address(sky)) { + assertEq( + sky.balanceOf(payees[i].addr), + previousPayeeBalances[i].sky + payees[i].amount, + "TestPayments/invalid-payee-sky-balance" + ); + } else { + revert('TestPayments/unexpected-payee-token'); + } + } + } + + function testNewCronJobs() public skipped { // add the `skipped` modifier to skip + SequencerLike seq = SequencerLike(addr.addr("CRON_SEQUENCER")); + address[1] memory newJobs = [ + addr.addr("CRON_REWARDS_DIST_JOB") + ]; + + for (uint256 i = 0; i < newJobs.length; i++) { + assertFalse(seq.hasJob(newJobs[i]), "TestError/cron-job-already-in-sequencer"); + } + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + for (uint256 i = 0; i < newJobs.length; i++) { + assertTrue(seq.hasJob(newJobs[i]), "TestError/cron-job-not-added-to-sequencer"); + } + } + + function _setupRootDomain() internal { + vm.makePersistent(address(spell), address(spell.action()), address(addr)); + + string memory root = string.concat(vm.projectRoot(), "/lib/dss-test"); + config = ScriptTools.readInput(root, "integration"); + + rootDomain = new RootDomain(config, getRelativeChain("mainnet")); + } + + function testL2OptimismSpell() public skipped { // TODO: check if this test can be removed for good. + address l2TeleportGateway = BridgeLike( + chainLog.getAddress("OPTIMISM_TELEPORT_BRIDGE") + ).l2TeleportGateway(); + + _setupRootDomain(); + + optimismDomain = new OptimismDomain(config, getRelativeChain("optimism"), rootDomain); + optimismDomain.selectFork(); + + // Check that the L2 Optimism Spell is there and configured + L2Spell optimismSpell = L2Spell(0x9495632F53Cc16324d2FcFCdD4EB59fb88dDab12); + + L2Gateway optimismGateway = L2Gateway(optimismSpell.gateway()); + assertEq(address(optimismGateway), l2TeleportGateway, "l2-optimism-wrong-gateway"); + + bytes32 optDstDomain = optimismSpell.dstDomain(); + assertEq(optDstDomain, bytes32("ETH-MAIN-A"), "l2-optimism-wrong-dst-domain"); + + // Validate pre-spell optimism state + assertEq(optimismGateway.validDomains(optDstDomain), 1, "l2-optimism-invalid-dst-domain"); + // Cast the L1 Spell + rootDomain.selectFork(); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + // switch to Optimism domain and relay the spell from L1 + // the `true` keeps us on Optimism rather than `rootDomain.selectFork() + optimismDomain.relayFromHost(true); + + // Validate post-spell state + assertEq(optimismGateway.validDomains(optDstDomain), 0, "l2-optimism-invalid-dst-domain"); + } + + function testL2ArbitrumSpell() public skipped { // TODO: check if this test can be removed for good. + // Ensure the Arbitrum Gov Relay has some ETH to pay for the Arbitrum spell + assertGt(chainLog.getAddress("ARBITRUM_GOV_RELAY").balance, 0); + + address l2TeleportGateway = BridgeLike( + chainLog.getAddress("ARBITRUM_TELEPORT_BRIDGE") + ).l2TeleportGateway(); + + _setupRootDomain(); + + arbitrumDomain = new ArbitrumDomain(config, getRelativeChain("arbitrum_one"), rootDomain); + arbitrumDomain.selectFork(); + + // Check that the L2 Arbitrum Spell is there and configured + L2Spell arbitrumSpell = L2Spell(0x852CCBB823D73b3e35f68AD6b14e29B02360FD3d); + + L2Gateway arbitrumGateway = L2Gateway(arbitrumSpell.gateway()); + assertEq(address(arbitrumGateway), l2TeleportGateway, "l2-arbitrum-wrong-gateway"); + + bytes32 arbDstDomain = arbitrumSpell.dstDomain(); + assertEq(arbDstDomain, bytes32("ETH-MAIN-A"), "l2-arbitrum-wrong-dst-domain"); + + // Validate pre-spell arbitrum state + assertEq(arbitrumGateway.validDomains(arbDstDomain), 1, "l2-arbitrum-invalid-dst-domain"); + + // Cast the L1 Spell + rootDomain.selectFork(); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + // switch to Arbitrum domain and relay the spell from L1 + // the `true` keeps us on Arbitrum rather than `rootDomain.selectFork() + arbitrumDomain.relayFromHost(true); + + // Validate post-spell state + assertEq(arbitrumGateway.validDomains(arbDstDomain), 0, "l2-arbitrum-invalid-dst-domain"); + } + + function testOffboardings() public skipped { // add the `skipped` modifier to skip + uint256 Art; + (Art,,,,) = vat.ilks("USDC-A"); + assertGt(Art, 0); + (Art,,,,) = vat.ilks("PAXUSD-A"); + assertGt(Art, 0); + (Art,,,,) = vat.ilks("GUSD-A"); + assertGt(Art, 0); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + DssCdpManagerAbstract cdpManager = DssCdpManagerAbstract(addr.addr("CDP_MANAGER")); + + dog.bark("USDC-A", cdpManager.urns(14981), address(0)); + dog.bark("USDC-A", 0x936d9045E7407aBE8acdBaF34EAe4023B44cEfE2, address(0)); + dog.bark("USDC-A", cdpManager.urns(10791), address(0)); + dog.bark("USDC-A", cdpManager.urns(9529), address(0)); + dog.bark("USDC-A", cdpManager.urns(7062), address(0)); + dog.bark("USDC-A", cdpManager.urns(13008), address(0)); + dog.bark("USDC-A", cdpManager.urns(18152), address(0)); + dog.bark("USDC-A", cdpManager.urns(15504), address(0)); + dog.bark("USDC-A", cdpManager.urns(17116), address(0)); + dog.bark("USDC-A", cdpManager.urns(20087), address(0)); + dog.bark("USDC-A", cdpManager.urns(21551), address(0)); + dog.bark("USDC-A", cdpManager.urns(12964), address(0)); + dog.bark("USDC-A", cdpManager.urns(7361), address(0)); + dog.bark("USDC-A", cdpManager.urns(12588), address(0)); + dog.bark("USDC-A", cdpManager.urns(13641), address(0)); + dog.bark("USDC-A", cdpManager.urns(18786), address(0)); + dog.bark("USDC-A", cdpManager.urns(14676), address(0)); + dog.bark("USDC-A", cdpManager.urns(20189), address(0)); + dog.bark("USDC-A", cdpManager.urns(15149), address(0)); + dog.bark("USDC-A", cdpManager.urns(7976), address(0)); + dog.bark("USDC-A", cdpManager.urns(16639), address(0)); + dog.bark("USDC-A", cdpManager.urns(8724), address(0)); + dog.bark("USDC-A", cdpManager.urns(7170), address(0)); + dog.bark("USDC-A", cdpManager.urns(7337), address(0)); + dog.bark("USDC-A", cdpManager.urns(14142), address(0)); + dog.bark("USDC-A", cdpManager.urns(12753), address(0)); + dog.bark("USDC-A", cdpManager.urns(9579), address(0)); + dog.bark("USDC-A", cdpManager.urns(14628), address(0)); + dog.bark("USDC-A", cdpManager.urns(15288), address(0)); + dog.bark("USDC-A", cdpManager.urns(16139), address(0)); + dog.bark("USDC-A", cdpManager.urns(12287), address(0)); + dog.bark("USDC-A", cdpManager.urns(11908), address(0)); + dog.bark("USDC-A", cdpManager.urns(8829), address(0)); + dog.bark("USDC-A", cdpManager.urns(7925), address(0)); + dog.bark("USDC-A", cdpManager.urns(10430), address(0)); + dog.bark("USDC-A", cdpManager.urns(11122), address(0)); + dog.bark("USDC-A", cdpManager.urns(12663), address(0)); + dog.bark("USDC-A", cdpManager.urns(9027), address(0)); + dog.bark("USDC-A", cdpManager.urns(8006), address(0)); + dog.bark("USDC-A", cdpManager.urns(12693), address(0)); + dog.bark("USDC-A", cdpManager.urns(7079), address(0)); + dog.bark("USDC-A", cdpManager.urns(12220), address(0)); + dog.bark("USDC-A", cdpManager.urns(8636), address(0)); + dog.bark("USDC-A", cdpManager.urns(8643), address(0)); + dog.bark("USDC-A", cdpManager.urns(6992), address(0)); + dog.bark("USDC-A", cdpManager.urns(7083), address(0)); + dog.bark("USDC-A", cdpManager.urns(7102), address(0)); + dog.bark("USDC-A", cdpManager.urns(7124), address(0)); + dog.bark("USDC-A", cdpManager.urns(7328), address(0)); + dog.bark("USDC-A", cdpManager.urns(8053), address(0)); + dog.bark("USDC-A", cdpManager.urns(12246), address(0)); + dog.bark("USDC-A", cdpManager.urns(7829), address(0)); + dog.bark("USDC-A", cdpManager.urns(8486), address(0)); + dog.bark("USDC-A", cdpManager.urns(8677), address(0)); + dog.bark("USDC-A", cdpManager.urns(8700), address(0)); + dog.bark("USDC-A", cdpManager.urns(9139), address(0)); + dog.bark("USDC-A", cdpManager.urns(9240), address(0)); + dog.bark("USDC-A", cdpManager.urns(9250), address(0)); + dog.bark("USDC-A", cdpManager.urns(9144), address(0)); + dog.bark("USDC-A", cdpManager.urns(9568), address(0)); + dog.bark("USDC-A", cdpManager.urns(10773), address(0)); + dog.bark("USDC-A", cdpManager.urns(11404), address(0)); + dog.bark("USDC-A", cdpManager.urns(11609), address(0)); + dog.bark("USDC-A", cdpManager.urns(11856), address(0)); + dog.bark("USDC-A", cdpManager.urns(12355), address(0)); + dog.bark("USDC-A", cdpManager.urns(12778), address(0)); + dog.bark("USDC-A", cdpManager.urns(12632), address(0)); + dog.bark("USDC-A", cdpManager.urns(12747), address(0)); + dog.bark("USDC-A", cdpManager.urns(12679), address(0)); + + dog.bark("PAXUSD-A", cdpManager.urns(14896), address(0)); + + vm.store( + address(dog), + bytes32(uint256(keccak256(abi.encode(bytes32("GUSD-A"), uint256(1)))) + 2), + bytes32(type(uint256).max) + ); // Remove GUSD-A hole limit to reach the objective of the testing 0 debt after all barks + dog.bark("GUSD-A", cdpManager.urns(24382), address(0)); + dog.bark("GUSD-A", cdpManager.urns(23939), address(0)); + dog.bark("GUSD-A", cdpManager.urns(25398), address(0)); + + (Art,,,,) = vat.ilks("USDC-A"); + assertEq(Art, 0, "USDC-A Art is not 0"); + (Art,,,,) = vat.ilks("PAXUSD-A"); + assertEq(Art, 0, "PAXUSD-A Art is not 0"); + (Art,,,,) = vat.ilks("GUSD-A"); + assertEq(Art, 0, "GUSD-A Art is not 0"); + } + + function testDaoResolutions() public skipped { // add the `skipped` modifier to skip + // For each resolution, add IPFS hash as item to the resolutions array + // Initialize the array with the number of resolutions + string[1] memory resolutions = [ + "QmaYKt61v6aCTNTYjuHm1Wjpe6JWBzCW2ZHR4XDEJhjm1R" + ]; + + string memory comma_separated_resolutions = ""; + for (uint256 i = 0; i < resolutions.length; i++) { + comma_separated_resolutions = string.concat(comma_separated_resolutions, resolutions[i]); + if (i + 1 < resolutions.length) { + comma_separated_resolutions = string.concat(comma_separated_resolutions, ","); + } + } + + assertEq(SpellActionLike(spell.action()).dao_resolutions(), comma_separated_resolutions, "dao_resolutions/invalid-format"); + } + + // SPARK TESTS + function testSparkSpellIsExecuted() public { // add the `skipped` modifier to skip + address SPARK_PROXY = addr.addr('SPARK_PROXY'); + address SPARK_SPELL = 0xc80621140bEe6A105C180Ae7cb0a084c2409C738; + + vm.expectCall( + SPARK_PROXY, + /* value = */ 0, + abi.encodeCall( + ProxyLike(SPARK_PROXY).exec, + (SPARK_SPELL, abi.encodeWithSignature("execute()")) + ) + ); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + } + + // SPELL-SPECIFIC TESTS GO BELOW + + function testFlapperChange() public { + assertNotEq(split.flapper(), addr.addr("MCD_FLAP"), "testFlapperChange/incorrect-previous-split-flapper-address"); + assertEq(WardsAbstract(addr.addr("MCD_FLAP")).wards(addr.addr("MCD_SPLIT")), 0, "testFlapperChange/flapper-already-in-splitter-wards"); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + assertEq(split.flapper(), addr.addr("MCD_FLAP"), "testFlapperChange/incorrect-split-flapper-address"); + assertEq(WardsAbstract(addr.addr("MCD_FLAP")).wards(addr.addr("MCD_SPLIT")), 1, "testFlapperChange/flapper-not-in-splitter-wards"); + } + + function testSkyOracleChange() public { + assertNotEq(flap.pip(), addr.addr("FLAP_SKY_ORACLE"), "testFlapperChange/incorrect-previous-flapper-pip-address"); + assertEq(OsmAbstract(addr.addr("PIP_MKR")).bud(addr.addr("FLAP_SKY_ORACLE")), 0, "testNewAuthorizations/sky-oracle-already-in-mkr-oracle-buds"); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + assertEq(flap.pip(), addr.addr("FLAP_SKY_ORACLE"), "testFlapperChange/incorrect-flapper-pip-address"); + assertEq(OsmAbstract(addr.addr("PIP_MKR")).bud(addr.addr("FLAP_SKY_ORACLE")), 1, "testNewAuthorizations/sky-oracle-not-in-mkr-oracle-buds"); + } +} diff --git a/archive/2024-09-27-DssSpell/dependencies/dss-flappers/FlapperInit.sol b/archive/2024-09-27-DssSpell/dependencies/dss-flappers/FlapperInit.sol new file mode 100644 index 000000000..4d7475efe --- /dev/null +++ b/archive/2024-09-27-DssSpell/dependencies/dss-flappers/FlapperInit.sol @@ -0,0 +1,211 @@ +// SPDX-FileCopyrightText: © 2023 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity >=0.8.0; + +import { DssInstance } from "dss-test/MCD.sol"; +import { SplitterInstance } from "./SplitterInstance.sol"; + +interface FlapperUniV2Like { + function pip() external view returns (address); + function spotter() external view returns (address); + function usds() external view returns (address); + function gem() external view returns (address); + function receiver() external view returns (address); + function pair() external view returns (address); + function rely(address) external; + function file(bytes32, uint256) external; + function file(bytes32, address) external; +} + +interface SplitterMomLike { + function splitter() external view returns (address); + function setAuthority(address) external; +} + +interface OracleWrapperLike { + function pip() external view returns (address); + function divisor() external view returns (uint256); +} + +interface PipLike { + function kiss(address) external; +} + +interface PairLike { + function token0() external view returns (address); + function token1() external view returns (address); +} + +interface UsdsJoinLike { + function dai() external view returns (address); // TODO: Replace when new join is ready by the new getter +} + +interface SplitterLike { + function live() external view returns (uint256); + function vat() external view returns (address); + function usdsJoin() external view returns (address); + function hop() external view returns (uint256); + function rely(address) external; + function file(bytes32, uint256) external; + function file(bytes32, address) external; +} + +interface FarmLike { + function rewardsToken() external view returns (address); + function setRewardsDistribution(address) external; + function setRewardsDuration(uint256) external; +} + +struct FlapperUniV2Config { + uint256 want; + address pip; + address pair; + address usds; + address splitter; + bytes32 prevChainlogKey; + bytes32 chainlogKey; +} + +struct FarmConfig { + address splitter; + address usdsJoin; + uint256 hop; + bytes32 prevChainlogKey; + bytes32 chainlogKey; +} + +struct SplitterConfig { + uint256 hump; + uint256 bump; + uint256 hop; + uint256 burn; + address usdsJoin; + bytes32 splitterChainlogKey; + bytes32 prevMomChainlogKey; + bytes32 momChainlogKey; +} + +library FlapperInit { + uint256 constant WAD = 10 ** 18; + uint256 constant RAY = 10 ** 27; + + function initFlapperUniV2( + DssInstance memory dss, + address flapper_, + FlapperUniV2Config memory cfg + ) internal { + FlapperUniV2Like flapper = FlapperUniV2Like(flapper_); + + // Sanity checks + require(flapper.spotter() == address(dss.spotter), "Flapper spotter mismatch"); + require(flapper.usds() == cfg.usds, "Flapper usds mismatch"); + require(flapper.pair() == cfg.pair, "Flapper pair mismatch"); + require(flapper.receiver() == dss.chainlog.getAddress("MCD_PAUSE_PROXY"), "Flapper receiver mismatch"); + + PairLike pair = PairLike(flapper.pair()); + (address pairUsds, address pairGem) = pair.token0() == cfg.usds ? (pair.token0(), pair.token1()) + : (pair.token1(), pair.token0()); + require(pairUsds == cfg.usds, "Usds mismatch"); + require(pairGem == flapper.gem(), "Gem mismatch"); + + require(cfg.want >= WAD * 90 / 100, "want too low"); + + flapper.file("want", cfg.want); + flapper.file("pip", cfg.pip); + flapper.rely(cfg.splitter); + + SplitterLike(cfg.splitter).file("flapper", flapper_); + + if (cfg.prevChainlogKey != bytes32(0)) dss.chainlog.removeAddress(cfg.prevChainlogKey); + dss.chainlog.setAddress(cfg.chainlogKey, flapper_); + } + + function initDirectOracle(address flapper) internal { + PipLike(FlapperUniV2Like(flapper).pip()).kiss(flapper); + } + + function initOracleWrapper( + DssInstance memory dss, + address wrapper_, + uint256 divisor, + bytes32 clKey + ) internal { + OracleWrapperLike wrapper = OracleWrapperLike(wrapper_); + require(wrapper.divisor() == divisor, "Wrapper divisor mismatch"); // Sanity check + PipLike(wrapper.pip()).kiss(wrapper_); + dss.chainlog.setAddress(clKey, wrapper_); + } + + function setFarm( + DssInstance memory dss, + address farm_, + FarmConfig memory cfg + ) internal { + FarmLike farm = FarmLike(farm_); + SplitterLike splitter = SplitterLike(cfg.splitter); + + require(farm.rewardsToken() == UsdsJoinLike(cfg.usdsJoin).dai(), "Farm rewards not usds"); + // Staking token is checked in the Lockstake script + + // The following two checks enforce the initSplitter function has to be called first + require(cfg.hop >= 5 minutes, "hop too low"); + require(cfg.hop == splitter.hop(), "hop mismatch"); + + splitter.file("farm", farm_); + + farm.setRewardsDistribution(cfg.splitter); + farm.setRewardsDuration(cfg.hop); + + if (cfg.prevChainlogKey != bytes32(0)) dss.chainlog.removeAddress(cfg.prevChainlogKey); + dss.chainlog.setAddress(cfg.chainlogKey, farm_); + } + + function initSplitter( + DssInstance memory dss, + SplitterInstance memory splitterInstance, + SplitterConfig memory cfg + ) internal { + SplitterLike splitter = SplitterLike(splitterInstance.splitter); + SplitterMomLike mom = SplitterMomLike(splitterInstance.mom); + + // Sanity checks + require(splitter.live() == 1, "Splitter not live"); + require(splitter.vat() == address(dss.vat), "Splitter vat mismatch"); + require(splitter.usdsJoin() == cfg.usdsJoin, "Splitter usdsJoin mismatch"); + require(mom.splitter() == splitterInstance.splitter, "Mom splitter mismatch"); + + require(cfg.hump > 0, "hump too low"); + require(cfg.bump % RAY == 0, "bump not multiple of RAY"); + require(cfg.hop >= 5 minutes, "hop too low"); + require(cfg.burn <= WAD, "burn too high"); + + splitter.file("hop", cfg.hop); + splitter.file("burn", cfg.burn); + splitter.rely(address(mom)); + splitter.rely(address(dss.vow)); + + dss.vow.file("flapper", splitterInstance.splitter); + dss.vow.file("hump", cfg.hump); + dss.vow.file("bump", cfg.bump); + + mom.setAuthority(dss.chainlog.getAddress("MCD_ADM")); + + dss.chainlog.setAddress(cfg.splitterChainlogKey, splitterInstance.splitter); + if (cfg.prevMomChainlogKey != bytes32(0)) dss.chainlog.removeAddress(cfg.prevMomChainlogKey); + dss.chainlog.setAddress(cfg.momChainlogKey, address(mom)); + } +} diff --git a/archive/2024-09-27-DssSpell/dependencies/dss-flappers/SplitterInstance.sol b/archive/2024-09-27-DssSpell/dependencies/dss-flappers/SplitterInstance.sol new file mode 100644 index 000000000..bb61fb721 --- /dev/null +++ b/archive/2024-09-27-DssSpell/dependencies/dss-flappers/SplitterInstance.sol @@ -0,0 +1,22 @@ +// SPDX-FileCopyrightText: © 2023 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity >=0.8.0; + +struct SplitterInstance { + address splitter; + address mom; +} diff --git a/archive/2024-09-27-DssSpell/test/addresses_deployers.sol b/archive/2024-09-27-DssSpell/test/addresses_deployers.sol new file mode 100644 index 000000000..e3ef915a1 --- /dev/null +++ b/archive/2024-09-27-DssSpell/test/addresses_deployers.sol @@ -0,0 +1,63 @@ +// SPDX-FileCopyrightText: © 2021 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity 0.8.16; + +contract Deployers { + + address[] public addr; + + constructor() { + addr = [ + 0xdDb108893104dE4E1C6d0E47c42237dB4E617ACc, + 0xDa0FaB05039809e63C5D068c897c3e602fA97457, + 0xda0fab060e6cc7b1C0AA105d29Bd50D71f036711, + 0xDA0FaB0700A4389F6E6679aBAb1692B4601ce9bf, + 0x0048d6225D1F3eA4385627eFDC5B4709Cab4A21c, + 0xd200790f62c8da69973e61d4936cfE4f356ccD07, + 0x92723e0bF280942B98bf2d1e832Bde9A3Bd2F2c2, // Chainlog Deployer + 0xdA0C0de01d90A5933692Edf03c7cE946C7c50445, // Old PE + 0xDa0c0De020F80d43dde58c2653aa73d28Df1fBe1, // Old PE + 0xC1E6d8136441FC66612Df3584007f7CB68765e5D, // PE + 0xa22A61c233d7242728b4255420063c92fc1AEBb9, // PE + 0x4D6fbF888c374D7964D56144dE0C0cFBd49750D3, // Oracles + 0x1f42e41A34B71606FcC60b4e624243b365D99745, // Oracles + 0x075da589886BA445d7c7e81c472059dE7AE65250, // Used for Optimism & Arbitrum bridge contracts + 0x7f06941997C7778E7B734fE55f7353f554B06d7d, // Starknet + 0xb27B6fa77D7FBf3C1BD34B0f7DA59b39D3DB0f7e, // CES + 0x39aBD7819E5632Fa06D2ECBba45Dca5c90687EE3, // Oracles from 2022-10-26 + 0x45Ea4FADf8Db54DF5a96774167547893e0b4D6A5, // CES from 2022-10-26 + 0x5C82d7Eafd66d7f5edC2b844860BfD93C3B0474f, // CES from 2022-12-09 + 0x34DBF275E1Df79D1fC7bf6a37feC56A8b1057490, // Sidestream from 2023-05-17 + 0xd1236a6A111879d9862f8374BA15344b6B233Fbd, // Phoenix Labs from 2023-05-24 + 0xfaAD873aDF27bE64D6E27D40Cf2AF0037d39b2eA, // Deployer of FlapperUniv2 + 0xa44E7F0cEfbdA0aEb5fdf6228acA9b9F069CC1F1, // Dewiz from 2024-01-12 + 0x548DAc55f260AA4631F589Cb2fe72b5E9E4C93Dc, // EG_01 + 0x4Ec216c476175a236BD70026b984D4adECa0cfb8, // EG_02 + 0xEAB682cfE848FE2b42DA69a2591369EF589e8F27, // EG_03 + 0x54eAde20f7DD1A67624626A3DB9408185eD0039e, // EG_04 + 0x4E65a603a9170fa572E276D1B70D6295D433bAc5, // EG_05 + 0xD6ec7a1b1f4c42C5208fF68b2436Fab8CC593fB7 // EG_06 + // 0x02416B99202081F6b90851e35682Ca90D547054c. // Deployer for Spark 2023-08-02 + // 0x4953BAe71F6F06b717F7A99DdBe08Cb991412d4D. // Deployer for Spark 2023-08-30 + // 0x04a733f946C0aD8E2773d9A3891A8CCeD900a0F8. // Deployer for Spark 2023-09-13 + ]; + } + + function count() external view returns (uint256) { + return addr.length; + } +} diff --git a/archive/2024-09-27-DssSpell/test/addresses_mainnet.sol b/archive/2024-09-27-DssSpell/test/addresses_mainnet.sol new file mode 100644 index 000000000..3ce947bb9 --- /dev/null +++ b/archive/2024-09-27-DssSpell/test/addresses_mainnet.sol @@ -0,0 +1,513 @@ +// SPDX-FileCopyrightText: © 2020 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity 0.8.16; + +contract Addresses { + + mapping (bytes32 => address) public addr; + + constructor() { + addr["CHANGELOG"] = 0xdA0Ab1e0017DEbCd72Be8599041a2aa3bA7e740F; + addr["MULTICALL"] = 0x5e227AD1969Ea493B43F840cfF78d08a6fc17796; + addr["FAUCET"] = 0x0000000000000000000000000000000000000000; + addr["MCD_DEPLOY"] = 0xbaa65281c2FA2baAcb2cb550BA051525A480D3F4; + addr["JOIN_FAB"] = 0xf1738d22140783707Ca71CB3746e0dc7Bf2b0264; + addr["CLIP_FAB"] = 0x0716F25fBaAae9b63803917b6125c10c313dF663; + addr["CALC_FAB"] = 0xE1820A2780193d74939CcA104087CADd6c1aA13A; + addr["LERP_FAB"] = 0x9175561733D138326FDeA86CdFdF53e92b588276; + addr["MCD_GOV"] = 0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2; + addr["GOV_GUARD"] = 0x6eEB68B2C7A918f36B78E2DB80dcF279236DDFb8; + addr["MCD_ADM"] = 0x0a3f6849f78076aefaDf113F5BED87720274dDC0; + addr["VOTE_PROXY_FACTORY"] = 0x6FCD258af181B3221073A96dD90D1f7AE7eEc408; + addr["VOTE_DELEGATE_PROXY_FACTORY"] = 0xD897F108670903D1d6070fcf818f9db3615AF272; + addr["MCD_VAT"] = 0x35D1b3F3D7966A1DFe207aa4514C12a259A0492B; + addr["MCD_JUG"] = 0x19c0976f590D67707E62397C87829d896Dc0f1F1; + addr["MCD_DOG"] = 0x135954d155898D42C90D2a57824C690e0c7BEf1B; + addr["MCD_VOW"] = 0xA950524441892A31ebddF91d3cEEFa04Bf454466; + addr["MCD_JOIN_DAI"] = 0x9759A6Ac90977b93B58547b4A71c78317f391A28; + addr["MCD_FLOP"] = 0xA41B6EF151E06da0e34B009B86E828308986736D; + addr["MCD_PAUSE"] = 0xbE286431454714F511008713973d3B053A2d38f3; + addr["MCD_PAUSE_PROXY"] = 0xBE8E3e3618f7474F8cB1d074A26afFef007E98FB; + addr["MCD_GOV_ACTIONS"] = 0x4F5f0933158569c026d617337614d00Ee6589B6E; + addr["MCD_DAI"] = 0x6B175474E89094C44Da98b954EedeAC495271d0F; + addr["MCD_SPOT"] = 0x65C79fcB50Ca1594B025960e539eD7A9a6D434A3; + addr["MCD_POT"] = 0x197E90f9FAD81970bA7976f33CbD77088E5D7cf7; + addr["MCD_END"] = 0x0e2e8F1D1326A4B9633D96222Ce399c708B19c28; + addr["MCD_CURE"] = 0x0085c9feAb2335447E1F4DC9bf3593a8e28bdfc7; + addr["MCD_ESM"] = 0x09e05fF6142F2f9de8B6B65855A1d56B6cfE4c58; + addr["PROXY_ACTIONS"] = 0x82ecD135Dce65Fbc6DbdD0e4237E0AF93FFD5038; + addr["PROXY_ACTIONS_END"] = 0x7AfF9FC9faD225e3c88cDA06BC56d8Aca774bC57; + addr["PROXY_ACTIONS_DSR"] = 0x07ee93aEEa0a36FfF2A9B95dd22Bd6049EE54f26; + addr["CDP_MANAGER"] = 0x5ef30b9986345249bc32d8928B7ee64DE9435E39; + addr["DSR_MANAGER"] = 0x373238337Bfe1146fb49989fc222523f83081dDb; + addr["GET_CDPS"] = 0x36a724Bd100c39f0Ea4D3A20F7097eE01A8Ff573; + addr["ILK_REGISTRY"] = 0x5a464C28D19848f44199D003BeF5ecc87d090F87; + addr["OSM_MOM"] = 0x76416A4d5190d071bfed309861527431304aA14f; + addr["CLIPPER_MOM"] = 0x79FBDF16b366DFb14F66cE4Ac2815Ca7296405A0; + addr["LINE_MOM"] = 0x9c257e5Aaf73d964aEBc2140CA38078988fB0C10; + addr["PROXY_FACTORY"] = 0xA26e15C895EFc0616177B7c1e7270A4C7D51C997; + addr["PROXY_REGISTRY"] = 0x4678f0a6958e4D2Bc4F1BAF7Bc52E8F3564f3fE4; + addr["MCD_VEST_DAI"] = 0xa4c22f0e25C6630B2017979AcF1f865e94695C4b; + addr["MCD_VEST_DAI_LEGACY"] = 0x2Cc583c0AaCDaC9e23CB601fDA8F1A0c56Cdcb71; + addr["MCD_VEST_MKR"] = 0x0fC8D4f2151453ca0cA56f07359049c8f07997Bd; + addr["MCD_VEST_MKR_TREASURY"] = 0x6D635c8d08a1eA2F1687a5E46b666949c977B7dd; + addr["MCD_FLASH"] = 0x60744434d6339a6B27d73d9Eda62b6F66a0a04FA; + addr["MCD_FLASH_LEGACY"] = 0x1EB4CF3A948E7D72A198fe073cCb8C7a948cD853; + addr["FLASH_KILLER"] = 0x07a4BaAEFA236A649880009B5a2B862097D9a1cD; + addr["PROXY_ACTIONS_CROPPER"] = 0xa2f69F8B9B341CFE9BfBb3aaB5fe116C89C95bAF; + addr["PROXY_ACTIONS_END_CROPPER"] = 0x38f7C166B5B22906f04D8471E241151BA45d97Af; + addr["CDP_REGISTRY"] = 0xBe0274664Ca7A68d6b5dF826FB3CcB7c620bADF3; + addr["MCD_CROPPER"] = 0x8377CD01a5834a6EaD3b7efb482f678f2092b77e; + addr["MCD_CROPPER_IMP"] = 0xaFB21A0e9669cdbA539a4c91Bf6B94c5F013c0DE; + addr["PIP_MKR"] = 0xdbBe5e9B1dAa91430cF0772fCEbe53F6c6f137DF; + addr["ETH"] = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; + addr["PIP_ETH"] = 0x81FE72B5A8d1A857d176C3E7d5Bd2679A9B85763; + addr["MCD_JOIN_ETH_A"] = 0x2F0b23f53734252Bda2277357e97e1517d6B042A; + addr["MCD_FLIP_ETH_A"] = 0xF32836B9E1f47a0515c6Ec431592D5EbC276407f; + addr["MCD_CLIP_ETH_A"] = 0xc67963a226eddd77B91aD8c421630A1b0AdFF270; + addr["MCD_CLIP_CALC_ETH_A"] = 0x7d9f92DAa9254Bbd1f479DBE5058f74C2381A898; + addr["MCD_JOIN_ETH_B"] = 0x08638eF1A205bE6762A8b935F5da9b700Cf7322c; + addr["MCD_FLIP_ETH_B"] = 0xD499d71bE9e9E5D236A07ac562F7B6CeacCa624c; + addr["MCD_CLIP_ETH_B"] = 0x71eb894330e8a4b96b8d6056962e7F116F50e06F; + addr["MCD_CLIP_CALC_ETH_B"] = 0x19E26067c4a69B9534adf97ED8f986c49179dE18; + addr["MCD_JOIN_ETH_C"] = 0xF04a5cC80B1E94C69B48f5ee68a08CD2F09A7c3E; + addr["MCD_FLIP_ETH_C"] = 0x7A67901A68243241EBf66beEB0e7b5395582BF17; + addr["MCD_CLIP_ETH_C"] = 0xc2b12567523e3f3CBd9931492b91fe65b240bc47; + addr["MCD_CLIP_CALC_ETH_C"] = 0x1c4fC274D12b2e1BBDF97795193D3148fCDa6108; + addr["BAT"] = 0x0D8775F648430679A709E98d2b0Cb6250d2887EF; + addr["PIP_BAT"] = 0xB4eb54AF9Cc7882DF0121d26c5b97E802915ABe6; + addr["MCD_JOIN_BAT_A"] = 0x3D0B1912B66114d4096F48A8CEe3A56C231772cA; + addr["MCD_FLIP_BAT_A"] = 0xF7C569B2B271354179AaCC9fF1e42390983110BA; + addr["MCD_CLIP_BAT_A"] = 0x3D22e6f643e2F4c563fD9db22b229Cbb0Cd570fb; + addr["MCD_CLIP_CALC_BAT_A"] = 0x2e118153D304a0d9C5838D5FCb70CEfCbEc81DC2; + addr["USDC"] = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; + addr["PIP_USDC"] = 0x77b68899b99b686F415d074278a9a16b336085A0; + addr["MCD_JOIN_USDC_A"] = 0xA191e578a6736167326d05c119CE0c90849E84B7; + addr["MCD_FLIP_USDC_A"] = 0xbe359e53038E41a1ffA47DAE39645756C80e557a; + addr["MCD_CLIP_USDC_A"] = 0x046b1A5718da6A226D912cFd306BA19980772908; + addr["MCD_CLIP_CALC_USDC_A"] = 0x00A0F90666c6Cd3E615cF8459A47e89A08817602; + addr["MCD_JOIN_USDC_B"] = 0x2600004fd1585f7270756DDc88aD9cfA10dD0428; + addr["MCD_FLIP_USDC_B"] = 0x77282aD36aADAfC16bCA42c865c674F108c4a616; + addr["MCD_CLIP_USDC_B"] = 0x5590F23358Fe17361d7E4E4f91219145D8cCfCb3; + addr["MCD_CLIP_CALC_USDC_B"] = 0xD6FE411284b92d309F79e502Dd905D7A3b02F561; + addr["MCD_JOIN_PSM_USDC_A"] = 0x0A59649758aa4d66E25f08Dd01271e891fe52199; + addr["MCD_FLIP_PSM_USDC_A"] = 0x507420100393b1Dc2e8b4C8d0F8A13B56268AC99; + addr["MCD_CLIP_PSM_USDC_A"] = 0x66609b4799fd7cE12BA799AD01094aBD13d5014D; + addr["MCD_CLIP_CALC_PSM_USDC_A"] = 0xbeE028b5Fa9eb0aDAC5eeF7E5B13383172b91A4E; + addr["MCD_PSM_USDC_A"] = 0x89B78CfA322F6C5dE0aBcEecab66Aee45393cC5A; + addr["MCD_LITE_PSM_USDC_A"] = 0xf6e72Db5454dd049d0788e411b06CfAF16853042; + addr["MCD_LITE_PSM_USDC_A_POCKET"] = 0x37305B1cD40574E4C5Ce33f8e8306Be057fD7341; + addr["MCD_LITE_PSM_USDC_A_JAR"] = 0x69cA348Bd928A158ADe7aa193C133f315803b06e; + addr["MCD_LITE_PSM_USDC_A_IN_CDT_JAR"] = 0x5eeB3D8D60B06a44f6124a84EeE7ec0bB747BE6d; + addr["LITE_PSM_MOM"] = 0x467b32b0407Ad764f56304420Cddaa563bDab425; + addr["WBTC"] = 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599; + addr["PIP_WBTC"] = 0xf185d0682d50819263941e5f4EacC763CC5C6C42; + addr["MCD_JOIN_WBTC_A"] = 0xBF72Da2Bd84c5170618Fbe5914B0ECA9638d5eb5; + addr["MCD_FLIP_WBTC_A"] = 0x58CD24ac7322890382eE45A3E4F903a5B22Ee930; + addr["MCD_CLIP_WBTC_A"] = 0x0227b54AdbFAEec5f1eD1dFa11f54dcff9076e2C; + addr["MCD_CLIP_CALC_WBTC_A"] = 0x5f4CEa97ca1030C6Bd38429c8a0De7Cd4981C70A; + addr["MCD_JOIN_WBTC_B"] = 0xfA8c996e158B80D77FbD0082BB437556A65B96E0; + addr["MCD_CLIP_WBTC_B"] = 0xe30663C6f83A06eDeE6273d72274AE24f1084a22; + addr["MCD_CLIP_CALC_WBTC_B"] = 0xeb911E99D7ADD1350DC39d84D60835BA9B287D96; + addr["MCD_JOIN_WBTC_C"] = 0x7f62f9592b823331E012D3c5DdF2A7714CfB9de2; + addr["MCD_CLIP_WBTC_C"] = 0x39F29773Dcb94A32529d0612C6706C49622161D1; + addr["MCD_CLIP_CALC_WBTC_C"] = 0x4fa2A328E7f69D023fE83454133c273bF5ACD435; + addr["TUSD"] = 0x0000000000085d4780B73119b644AE5ecd22b376; + addr["PIP_TUSD"] = 0xeE13831ca96d191B688A670D47173694ba98f1e5; + addr["MCD_JOIN_TUSD_A"] = 0x4454aF7C8bb9463203b66C816220D41ED7837f44; + addr["MCD_FLIP_TUSD_A"] = 0x9E4b213C4defbce7564F2Ac20B6E3bF40954C440; + addr["MCD_CLIP_TUSD_A"] = 0x0F6f88f8A4b918584E3539182793a0C276097f44; + addr["MCD_CLIP_CALC_TUSD_A"] = 0x9B207AfAAAD1ae300Ea659e71306a7Bd6D81C160; + addr["ZRX"] = 0xE41d2489571d322189246DaFA5ebDe1F4699F498; + addr["PIP_ZRX"] = 0x7382c066801E7Acb2299aC8562847B9883f5CD3c; + addr["MCD_JOIN_ZRX_A"] = 0xc7e8Cd72BDEe38865b4F5615956eF47ce1a7e5D0; + addr["MCD_FLIP_ZRX_A"] = 0xa4341cAf9F9F098ecb20fb2CeE2a0b8C78A18118; + addr["MCD_CLIP_ZRX_A"] = 0xdc90d461E148552387f3aB3EBEE0Bdc58Aa16375; + addr["MCD_CLIP_CALC_ZRX_A"] = 0xebe5e9D77b9DBBA8907A197f4c2aB00A81fb0C4e; + addr["KNC"] = 0xdd974D5C2e2928deA5F71b9825b8b646686BD200; + addr["PIP_KNC"] = 0xf36B79BD4C0904A5F350F1e4f776B81208c13069; + addr["MCD_JOIN_KNC_A"] = 0x475F1a89C1ED844A08E8f6C50A00228b5E59E4A9; + addr["MCD_FLIP_KNC_A"] = 0x57B01F1B3C59e2C0bdfF3EC9563B71EEc99a3f2f; + addr["MCD_CLIP_KNC_A"] = 0x006Aa3eB5E666D8E006aa647D4afAB212555Ddea; + addr["MCD_CLIP_CALC_KNC_A"] = 0x82c41e2ADE28C066a5D3A1E3f5B444a4075C1584; + addr["MANA"] = 0x0F5D2fB29fb7d3CFeE444a200298f468908cC942; + addr["PIP_MANA"] = 0x8067259EA630601f319FccE477977E55C6078C13; + addr["MCD_JOIN_MANA_A"] = 0xA6EA3b9C04b8a38Ff5e224E7c3D6937ca44C0ef9; + addr["MCD_FLIP_MANA_A"] = 0x0a1D75B4f49BA80724a214599574080CD6B68357; + addr["MCD_CLIP_MANA_A"] = 0xF5C8176E1eB0915359E46DEd16E52C071Bb435c0; + addr["MCD_CLIP_CALC_MANA_A"] = 0xABbCd14FeDbb2D39038327055D9e615e178Fd64D; + addr["USDT"] = 0xdAC17F958D2ee523a2206206994597C13D831ec7; + addr["PIP_USDT"] = 0x7a5918670B0C390aD25f7beE908c1ACc2d314A3C; + addr["MCD_JOIN_USDT_A"] = 0x0Ac6A1D74E84C2dF9063bDDc31699FF2a2BB22A2; + addr["MCD_FLIP_USDT_A"] = 0x667F41d0fDcE1945eE0f56A79dd6c142E37fCC26; + addr["MCD_CLIP_USDT_A"] = 0xFC9D6Dd08BEE324A5A8B557d2854B9c36c2AeC5d; + addr["MCD_CLIP_CALC_USDT_A"] = 0x1Cf3DE6D570291CDB88229E70037d1705d5be748; + addr["PAXUSD"] = 0x8E870D67F660D95d5be530380D0eC0bd388289E1; + addr["PAX"] = 0x8E870D67F660D95d5be530380D0eC0bd388289E1; + addr["PIP_PAXUSD"] = 0x043B963E1B2214eC90046167Ea29C2c8bDD7c0eC; + addr["PIP_PAX"] = 0x043B963E1B2214eC90046167Ea29C2c8bDD7c0eC; + addr["MCD_JOIN_PAXUSD_A"] = 0x7e62B7E279DFC78DEB656E34D6a435cC08a44666; + addr["MCD_FLIP_PAXUSD_A"] = 0x52D5D1C05CC79Fc24A629Cb24cB06C5BE5d766E7; + addr["MCD_CLIP_PAXUSD_A"] = 0xBCb396Cd139D1116BD89562B49b9D1d6c25378B0; + addr["MCD_CLIP_CALC_PAXUSD_A"] = 0xA2a4aeFEd398661B0a873d3782DA121c194a0201; + addr["MCD_JOIN_PSM_PAX_A"] = 0x7bbd8cA5e413bCa521C2c80D8d1908616894Cf21; + addr["MCD_CLIP_PSM_PAX_A"] = 0x5322a3551bc6a1b39d5D142e5e38Dc5B4bc5B3d2; + addr["MCD_CLIP_CALC_PSM_PAX_A"] = 0xC19eAc21A4FccdD30812F5fF5FebFbD6817b7593; + addr["MCD_PSM_PAX_A"] = 0x961Ae24a1Ceba861D1FDf723794f6024Dc5485Cf; + addr["COMP"] = 0xc00e94Cb662C3520282E6f5717214004A7f26888; + addr["PIP_COMP"] = 0xBED0879953E633135a48a157718Aa791AC0108E4; + addr["MCD_JOIN_COMP_A"] = 0xBEa7cDfB4b49EC154Ae1c0D731E4DC773A3265aA; + addr["MCD_FLIP_COMP_A"] = 0x524826F84cB3A19B6593370a5889A58c00554739; + addr["MCD_CLIP_COMP_A"] = 0x2Bb690931407DCA7ecE84753EA931ffd304f0F38; + addr["MCD_CLIP_CALC_COMP_A"] = 0x1f546560EAa70985d962f1562B65D4B182341a63; + addr["LRC"] = 0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD; + addr["PIP_LRC"] = 0x9eb923339c24c40Bef2f4AF4961742AA7C23EF3a; + addr["MCD_JOIN_LRC_A"] = 0x6C186404A7A238D3d6027C0299D1822c1cf5d8f1; + addr["MCD_FLIP_LRC_A"] = 0x7FdDc36dcdC435D8F54FDCB3748adcbBF70f3dAC; + addr["MCD_CLIP_LRC_A"] = 0x81C5CDf4817DBf75C7F08B8A1cdaB05c9B3f70F7; + addr["MCD_CLIP_CALC_LRC_A"] = 0x6856CCA4c881CAf29B6563bA046C7Bb73121fb9d; + addr["LINK"] = 0x514910771AF9Ca656af840dff83E8264EcF986CA; + addr["PIP_LINK"] = 0x9B0C694C6939b5EA9584e9b61C7815E8d97D9cC7; + addr["MCD_JOIN_LINK_A"] = 0xdFccAf8fDbD2F4805C174f856a317765B49E4a50; + addr["MCD_FLIP_LINK_A"] = 0xB907EEdD63a30A3381E6D898e5815Ee8c9fd2c85; + addr["MCD_CLIP_LINK_A"] = 0x832Dd5f17B30078a5E46Fdb8130A68cBc4a74dC0; + addr["MCD_CLIP_CALC_LINK_A"] = 0x7B1696677107E48B152e9Bf400293e98B7D86Eb1; + addr["BAL"] = 0xba100000625a3754423978a60c9317c58a424e3D; + addr["PIP_BAL"] = 0x3ff860c0F28D69F392543A16A397D0dAe85D16dE; + addr["MCD_JOIN_BAL_A"] = 0x4a03Aa7fb3973d8f0221B466EefB53D0aC195f55; + addr["MCD_FLIP_BAL_A"] = 0xb2b9bd446eE5e58036D2876fce62b7Ab7334583e; + addr["MCD_CLIP_BAL_A"] = 0x6AAc067bb903E633A422dE7BE9355E62B3CE0378; + addr["MCD_CLIP_CALC_BAL_A"] = 0x79564a41508DA86721eDaDac07A590b5A51B2c01; + addr["YFI"] = 0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e; + addr["PIP_YFI"] = 0x5F122465bCf86F45922036970Be6DD7F58820214; + addr["MCD_JOIN_YFI_A"] = 0x3ff33d9162aD47660083D7DC4bC02Fb231c81677; + addr["MCD_FLIP_YFI_A"] = 0xEe4C9C36257afB8098059a4763A374a4ECFE28A7; + addr["MCD_CLIP_YFI_A"] = 0x9daCc11dcD0aa13386D295eAeeBBd38130897E6f; + addr["MCD_CLIP_CALC_YFI_A"] = 0x1f206d7916Fd3B1b5B0Ce53d5Cab11FCebc124DA; + addr["GUSD"] = 0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd; + addr["PIP_GUSD"] = 0xf45Ae69CcA1b9B043dAE2C83A5B65Bc605BEc5F5; + addr["MCD_JOIN_GUSD_A"] = 0xe29A14bcDeA40d83675aa43B72dF07f649738C8b; + addr["MCD_FLIP_GUSD_A"] = 0xCAa8D152A8b98229fB77A213BE16b234cA4f612f; + addr["MCD_CLIP_GUSD_A"] = 0xa47D68b9dB0A0361284fA04BA40623fcBd1a263E; + addr["MCD_CLIP_CALC_GUSD_A"] = 0xC287E4e9017259f3b21C86A0Ef7840243eC3f4d6; + addr["MCD_JOIN_PSM_GUSD_A"] = 0x79A0FA989fb7ADf1F8e80C93ee605Ebb94F7c6A5; + addr["MCD_CLIP_PSM_GUSD_A"] = 0xf93CC3a50f450ED245e003BFecc8A6Ec1732b0b2; + addr["MCD_CLIP_CALC_PSM_GUSD_A"] = 0x7f67a68a0ED74Ea89A82eD9F243C159ed43a502a; + addr["MCD_PSM_GUSD_A"] = 0x204659B2Fd2aD5723975c362Ce2230Fba11d3900; + addr["MCD_PSM_GUSD_A_JAR"] = 0xf2E7a5B83525c3017383dEEd19Bb05Fe34a62C27; + addr["MCD_PSM_GUSD_A_INPUT_CONDUIT_JAR"] = 0x6934218d8B3E9ffCABEE8cd80F4c1C4167Afa638; + addr["MCD_PSM_PAX_A_JAR"] = 0x8bF8b5C58bb57Ee9C97D0FEA773eeE042B10a787; + addr["MCD_PSM_PAX_A_INPUT_CONDUIT_JAR"] = 0xDa276Ab5F1505965e0B6cD1B6da2A18CcBB29515; + addr["UNI"] = 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984; + addr["PIP_UNI"] = 0xf363c7e351C96b910b92b45d34190650df4aE8e7; + addr["MCD_JOIN_UNI_A"] = 0x3BC3A58b4FC1CbE7e98bB4aB7c99535e8bA9b8F1; + addr["MCD_FLIP_UNI_A"] = 0xF5b8cD9dB5a0EC031304A7B815010aa7761BD426; + addr["MCD_CLIP_UNI_A"] = 0x3713F83Ee6D138Ce191294C131148176015bC29a; + addr["MCD_CLIP_CALC_UNI_A"] = 0xeA7FE6610e6708E2AFFA202948cA19ace3F580AE; + addr["RENBTC"] = 0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D; + addr["PIP_RENBTC"] = 0xf185d0682d50819263941e5f4EacC763CC5C6C42; + addr["MCD_JOIN_RENBTC_A"] = 0xFD5608515A47C37afbA68960c1916b79af9491D0; + addr["MCD_FLIP_RENBTC_A"] = 0x30BC6eBC27372e50606880a36B279240c0bA0758; + addr["MCD_CLIP_RENBTC_A"] = 0x834719BEa8da68c46484E001143bDDe29370a6A3; + addr["MCD_CLIP_CALC_RENBTC_A"] = 0xcC89F368aad8D424d3e759c1525065e56019a0F4; + addr["AAVE"] = 0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9; + addr["PIP_AAVE"] = 0x8Df8f06DC2dE0434db40dcBb32a82A104218754c; + addr["MCD_JOIN_AAVE_A"] = 0x24e459F61cEAa7b1cE70Dbaea938940A7c5aD46e; + addr["MCD_FLIP_AAVE_A"] = 0x16e1b844094c885a37509a8f76c533B5fbFED13a; + addr["MCD_CLIP_AAVE_A"] = 0x8723b74F598DE2ea49747de5896f9034CC09349e; + addr["MCD_CLIP_CALC_AAVE_A"] = 0x76024a8EfFCFE270e089964a562Ece6ea5f3a14C; + addr["MATIC"] = 0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0; + addr["PIP_MATIC"] = 0x8874964279302e6d4e523Fb1789981C39a1034Ba; + addr["MCD_JOIN_MATIC_A"] = 0x885f16e177d45fC9e7C87e1DA9fd47A9cfcE8E13; + addr["MCD_CLIP_MATIC_A"] = 0x29342F530ed6120BDB219D602DaFD584676293d1; + addr["MCD_CLIP_CALC_MATIC_A"] = 0xdF8C347B06a31c6ED11f8213C2366348BFea68dB; + addr["STETH"] = 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84; + addr["WSTETH"] = 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0; + addr["PIP_WSTETH"] = 0xFe7a2aC0B945f12089aEEB6eCebf4F384D9f043F; + addr["MCD_JOIN_WSTETH_A"] = 0x10CD5fbe1b404B7E19Ef964B63939907bdaf42E2; + addr["MCD_CLIP_WSTETH_A"] = 0x49A33A28C4C7D9576ab28898F4C9ac7e52EA457A; + addr["MCD_CLIP_CALC_WSTETH_A"] = 0x15282b886675cc1Ce04590148f456428E87eaf13; + addr["MCD_JOIN_WSTETH_B"] = 0x248cCBf4864221fC0E840F29BB042ad5bFC89B5c; + addr["MCD_CLIP_WSTETH_B"] = 0x3ea60191b7d5990a3544B6Ef79983fD67e85494A; + addr["MCD_CLIP_CALC_WSTETH_B"] = 0x95098b29F579dbEb5c198Db6F30E28F7f3955Fbb; + addr["UNIV2DAIETH"] = 0xA478c2975Ab1Ea89e8196811F51A7B7Ade33eB11; + addr["PIP_UNIV2DAIETH"] = 0xFc8137E1a45BAF0030563EC4F0F851bd36a85b7D; + addr["MCD_JOIN_UNIV2DAIETH_A"] = 0x2502F65D77cA13f183850b5f9272270454094A08; + addr["MCD_FLIP_UNIV2DAIETH_A"] = 0x57dfd99f45747DD55C1c432Db4aEa07FBd5d2B5c; + addr["MCD_CLIP_UNIV2DAIETH_A"] = 0x9F6981bA5c77211A34B76c6385c0f6FA10414035; + addr["MCD_CLIP_CALC_UNIV2DAIETH_A"] = 0xf738C272D648Cc4565EaFb43c0C5B35BbA3bf29d; + addr["MCD_IAM_AUTO_LINE"] = 0xC7Bdd1F2B16447dcf3dE045C4a039A60EC2f0ba3; + addr["PROXY_PAUSE_ACTIONS"] = 0x6bda13D43B7EDd6CAfE1f70fB98b5d40f61A1370; + addr["PROXY_DEPLOYER"] = 0x1b93556AB8dcCEF01Cd7823C617a6d340f53Fb58; + addr["UNIV2WBTCETH"] = 0xBb2b8038a1640196FbE3e38816F3e67Cba72D940; + addr["MCD_JOIN_UNIV2WBTCETH_A"] = 0xDc26C9b7a8fe4F5dF648E314eC3E6Dc3694e6Dd2; + addr["MCD_FLIP_UNIV2WBTCETH_A"] = 0xbc95e8904d879F371Ac6B749727a0EAfDCd2ACB6; + addr["MCD_CLIP_UNIV2WBTCETH_A"] = 0xb15afaB996904170f87a64Fe42db0b64a6F75d24; + addr["MCD_CLIP_CALC_UNIV2WBTCETH_A"] = 0xC94ee71e909DbE08d63aA9e6EFbc9976751601B4; + addr["PIP_UNIV2WBTCETH"] = 0x8400D2EDb8B97f780356Ef602b1BdBc082c2aD07; + addr["UNIV2USDCETH"] = 0xB4e16d0168e52d35CaCD2c6185b44281Ec28C9Dc; + addr["MCD_JOIN_UNIV2USDCETH_A"] = 0x03Ae53B33FeeAc1222C3f372f32D37Ba95f0F099; + addr["MCD_FLIP_UNIV2USDCETH_A"] = 0x48d2C08b93E57701C8ae8974Fc4ADd725222B0BB; + addr["MCD_CLIP_UNIV2USDCETH_A"] = 0x93AE03815BAF1F19d7F18D9116E4b637cc32A131; + addr["MCD_CLIP_CALC_UNIV2USDCETH_A"] = 0x022ff40643e8b94C43f0a1E54f51EF6D070AcbC4; + addr["PIP_UNIV2USDCETH"] = 0xf751f24DD9cfAd885984D1bA68860F558D21E52A; + addr["UNIV2DAIUSDC"] = 0xAE461cA67B15dc8dc81CE7615e0320dA1A9aB8D5; + addr["MCD_JOIN_UNIV2DAIUSDC_A"] = 0xA81598667AC561986b70ae11bBE2dd5348ed4327; + addr["MCD_FLIP_UNIV2DAIUSDC_A"] = 0x4a613f79a250D522DdB53904D87b8f442EA94496; + addr["MCD_CLIP_UNIV2DAIUSDC_A"] = 0x9B3310708af333f6F379FA42a5d09CBAA10ab309; + addr["MCD_CLIP_CALC_UNIV2DAIUSDC_A"] = 0xbEF2ab2aA5CC780A03bccf22AD3320c8CF35af6A; + addr["PIP_UNIV2DAIUSDC"] = 0x25D03C2C928ADE19ff9f4FFECc07d991d0df054B; + addr["UNIV2ETHUSDT"] = 0x0d4a11d5EEaaC28EC3F61d100daF4d40471f1852; + addr["MCD_JOIN_UNIV2ETHUSDT_A"] = 0x4aAD139a88D2dd5e7410b408593208523a3a891d; + addr["MCD_FLIP_UNIV2ETHUSDT_A"] = 0x118d5051e70F9EaF3B4a6a11F765185A2Ca0802E; + addr["MCD_CLIP_UNIV2ETHUSDT_A"] = 0x2aC4C9b49051275AcB4C43Ec973082388D015D48; + addr["MCD_CLIP_CALC_UNIV2ETHUSDT_A"] = 0xA475582E3D6Ec35091EaE81da3b423C1B27fa029; + addr["PIP_UNIV2ETHUSDT"] = 0x5f6dD5B421B8d92c59dC6D907C9271b1DBFE3016; + addr["UNIV2LINKETH"] = 0xa2107FA5B38d9bbd2C461D6EDf11B11A50F6b974; + addr["MCD_JOIN_UNIV2LINKETH_A"] = 0xDae88bDe1FB38cF39B6A02b595930A3449e593A6; + addr["MCD_FLIP_UNIV2LINKETH_A"] = 0xb79f818E3c73FCA387845f892356224CA75eac4b; + addr["MCD_CLIP_UNIV2LINKETH_A"] = 0x6aa0520354d1b84e1C6ABFE64a708939529b619e; + addr["MCD_CLIP_CALC_UNIV2LINKETH_A"] = 0x8aCeC2d937a4A4cAF42565aFbbb05ac242134F14; + addr["PIP_UNIV2LINKETH"] = 0xd7d31e62AE5bfC3bfaa24Eda33e8c32D31a1746F; + addr["UNIV2UNIETH"] = 0xd3d2E2692501A5c9Ca623199D38826e513033a17; + addr["MCD_JOIN_UNIV2UNIETH_A"] = 0xf11a98339FE1CdE648e8D1463310CE3ccC3d7cC1; + addr["MCD_FLIP_UNIV2UNIETH_A"] = 0xe5ED7da0483e291485011D5372F3BF46235EB277; + addr["MCD_CLIP_UNIV2UNIETH_A"] = 0xb0ece6F5542A4577E2f1Be491A937Ccbbec8479e; + addr["MCD_CLIP_CALC_UNIV2UNIETH_A"] = 0xad609Ed16157014EF955C94553E40e94A09049f0; + addr["PIP_UNIV2UNIETH"] = 0x8462A88f50122782Cc96108F476deDB12248f931; + addr["UNIV2WBTCDAI"] = 0x231B7589426Ffe1b75405526fC32aC09D44364c4; + addr["MCD_JOIN_UNIV2WBTCDAI_A"] = 0xD40798267795Cbf3aeEA8E9F8DCbdBA9b5281fcC; + addr["MCD_FLIP_UNIV2WBTCDAI_A"] = 0x172200d12D09C2698Dd918d347155fE6692f5662; + addr["MCD_CLIP_UNIV2WBTCDAI_A"] = 0x4fC53a57262B87ABDa61d6d0DB2bE7E9BE68F6b8; + addr["MCD_CLIP_CALC_UNIV2WBTCDAI_A"] = 0x863AEa7D2c4BF2B5Aa191B057240b6Dc29F532eB; + addr["PIP_UNIV2WBTCDAI"] = 0x5bB72127a196392cf4aC00Cf57aB278394d24e55; + addr["UNIV2AAVEETH"] = 0xDFC14d2Af169B0D36C4EFF567Ada9b2E0CAE044f; + addr["MCD_JOIN_UNIV2AAVEETH_A"] = 0x42AFd448Df7d96291551f1eFE1A590101afB1DfF; + addr["MCD_FLIP_UNIV2AAVEETH_A"] = 0x20D298ca96bf8c2000203B911908DbDc1a8Bac58; + addr["MCD_CLIP_UNIV2AAVEETH_A"] = 0x854b252BA15eaFA4d1609D3B98e00cc10084Ec55; + addr["MCD_CLIP_CALC_UNIV2AAVEETH_A"] = 0x5396e541E1F648EC03faf338389045F1D7691960; + addr["PIP_UNIV2AAVEETH"] = 0x32d8416e8538Ac36272c44b0cd962cD7E0198489; + addr["UNIV2DAIUSDT"] = 0xB20bd5D04BE54f870D5C0d3cA85d82b34B836405; + addr["MCD_JOIN_UNIV2DAIUSDT_A"] = 0xAf034D882169328CAf43b823a4083dABC7EEE0F4; + addr["MCD_FLIP_UNIV2DAIUSDT_A"] = 0xD32f8B8aDbE331eC0CfADa9cfDbc537619622cFe; + addr["MCD_CLIP_UNIV2DAIUSDT_A"] = 0xe4B82Be84391b9e7c56a1fC821f47569B364dd4a; + addr["MCD_CLIP_CALC_UNIV2DAIUSDT_A"] = 0x4E88cE740F6bEa31C2b14134F6C5eB2a63104fcF; + addr["PIP_UNIV2DAIUSDT"] = 0x9A1CD705dc7ac64B50777BcEcA3529E58B1292F1; + addr["MIP21_LIQUIDATION_ORACLE"] = 0x88f88Bb9E66241B73B84f3A6E197FbBa487b1E30; + addr["RWA_TOKEN_FAB"] = 0x2B3a4c18705e99bC29b22222dA7E10b643658552; + addr["RWA001"] = 0x10b2aA5D77Aa6484886d8e244f0686aB319a270d; + addr["PIP_RWA001"] = 0x76A9f30B45F4ebFD60Ce8a1c6e963b1605f7cB6d; + addr["MCD_JOIN_RWA001_A"] = 0x476b81c12Dc71EDfad1F64B9E07CaA60F4b156E2; + addr["RWA001_A_URN"] = 0xa3342059BcDcFA57a13b12a35eD4BBE59B873005; + addr["RWA001_A_INPUT_CONDUIT"] = 0x486C85e2bb9801d14f6A8fdb78F5108a0fd932f2; + addr["RWA001_A_OUTPUT_CONDUIT"] = 0xb3eFb912e1cbC0B26FC17388Dd433Cecd2206C3d; + addr["RWA002"] = 0xAAA760c2027817169D7C8DB0DC61A2fb4c19AC23; + addr["PIP_RWA002"] = 0xd2473237E20Bd52F8E7cE0FD79403A6a82fbAEC8; + addr["MCD_JOIN_RWA002_A"] = 0xe72C7e90bc26c11d45dBeE736F0acf57fC5B7152; + addr["RWA002_A_URN"] = 0x225B3da5BE762Ee52B182157E67BeA0b31968163; + addr["RWA002_A_INPUT_CONDUIT"] = 0x2474F297214E5d96Ba4C81986A9F0e5C260f445D; + addr["RWA002_A_OUTPUT_CONDUIT"] = 0x2474F297214E5d96Ba4C81986A9F0e5C260f445D; + addr["RWA003"] = 0x07F0A80aD7AeB7BfB7f139EA71B3C8f7E17156B9; + addr["PIP_RWA003"] = 0xDeF7E88447F7D129420FC881B2a854ABB52B73B8; + addr["MCD_JOIN_RWA003_A"] = 0x1Fe789BBac5b141bdD795A3Bc5E12Af29dDB4b86; + addr["RWA003_A_URN"] = 0x7bF825718e7C388c3be16CFe9982539A7455540F; + addr["RWA003_A_INPUT_CONDUIT"] = 0x2A9798c6F165B6D60Cfb923Fe5BFD6f338695D9B; + addr["RWA003_A_OUTPUT_CONDUIT"] = 0x2A9798c6F165B6D60Cfb923Fe5BFD6f338695D9B; + addr["RWA004"] = 0x873F2101047A62F84456E3B2B13df2287925D3F9; + addr["PIP_RWA004"] = 0x5eEE1F3d14850332A75324514CcbD2DBC8Bbc566; + addr["MCD_JOIN_RWA004_A"] = 0xD50a8e9369140539D1c2D113c4dC1e659c6242eB; + addr["RWA004_A_URN"] = 0xeF1699548717aa4Cf47aD738316280b56814C821; + addr["RWA004_A_INPUT_CONDUIT"] = 0xe1ed3F588A98bF8a3744f4BF74Fd8540e81AdE3f; + addr["RWA004_A_OUTPUT_CONDUIT"] = 0xe1ed3F588A98bF8a3744f4BF74Fd8540e81AdE3f; + addr["RWA005"] = 0x6DB236515E90fC831D146f5829407746EDdc5296; + addr["PIP_RWA005"] = 0x8E6039C558738eb136833aB50271ae065c700d2B; + addr["MCD_JOIN_RWA005_A"] = 0xA4fD373b93aD8e054970A3d6cd4Fd4C31D08192e; + addr["RWA005_A_URN"] = 0xc40907545C57dB30F01a1c2acB242C7c7ACB2B90; + addr["RWA005_A_INPUT_CONDUIT"] = 0x5b702e1fEF3F556cbe219eE697D7f170A236cc66; + addr["RWA005_A_OUTPUT_CONDUIT"] = 0x5b702e1fEF3F556cbe219eE697D7f170A236cc66; + addr["RWA006"] = 0x4EE03cfBF6E784c462839f5954d60f7C2B60b113; + addr["PIP_RWA006"] = 0xB8AeCF04Fdf22Ef6C0c6b6536896e1F2870C41D3; + addr["MCD_JOIN_RWA006_A"] = 0x5E11E34b6745FeBa9449Ae53c185413d6EdC66BE; + addr["RWA006_A_URN"] = 0x0C185bf5388DdfDB288F4D875265d456D18FD9Cb; + addr["RWA006_A_INPUT_CONDUIT"] = 0x8Fe38D1E4293181273E2e323e4c16e0D1d4861e3; + addr["RWA006_A_OUTPUT_CONDUIT"] = 0x8Fe38D1E4293181273E2e323e4c16e0D1d4861e3; + addr["RWA007"] = 0x078fb926b041a816FaccEd3614Cf1E4bc3C723bD; + addr["PIP_RWA007"] = 0x7bb4BcA758c4006998a2769776D9E4E6D86e0Dab; + addr["MCD_JOIN_RWA007_A"] = 0x476aaD14F42469989EFad0b7A31f07b795FF0621; + addr["RWA007_A_URN"] = 0x481bA2d2e86a1c41427893899B5B0cEae41c6726; + addr["RWA007_A_JAR"] = 0xef1B095F700BE471981aae025f92B03091c3AD47; + addr["RWA007_A_INPUT_CONDUIT"] = 0x58f5e979eF74b60a9e5F955553ab8e0e65ba89c9; + addr["RWA007_A_JAR_INPUT_CONDUIT"] = 0xc8bb4e2B249703640e89265e2Ae7c9D5eA2aF742; + addr["RWA007_A_OUTPUT_CONDUIT"] = 0x701C3a384c613157bf473152844f368F2d6EF191; + addr["RWA007_A_OPERATOR"] = 0x94cfBF071f8be325A5821bFeAe00eEbE9CE7c279; + addr["RWA007_A_COINBASE_CUSTODY"] = 0xC3acf3B96E46Aa35dBD2aA3BD12D23c11295E774; + addr["RWA008"] = 0xb9737098b50d7c536b6416dAeB32879444F59fCA; + addr["PIP_RWA008"] = 0x2623dE50D8A6FdC2f0D583327142210b8b464bfd; + addr["MCD_JOIN_RWA008_A"] = 0x56eDD5067d89D4E65Bf956c49eAF054e6Ff0b262; + addr["RWA008_A_URN"] = 0x495215cabc630830071F80263a908E8826a66121; + addr["RWA008_A_INPUT_CONDUIT"] = 0xa397a23dDA051186F202C67148c90683c413383C; + addr["RWA008_A_OUTPUT_CONDUIT"] = 0x21CF5Ad1311788D762f9035829f81B9f54610F0C; + addr["RWA009"] = 0x8b9734bbaA628bFC0c9f323ba08Ed184e5b88Da2; + addr["PIP_RWA009"] = 0xdc7D370A089797Fe9556A2b0400496eBb3a61E44; + addr["MCD_JOIN_RWA009_A"] = 0xEe0FC514280f09083a32AE906cCbD2FAc4c680FA; + addr["RWA009_A_URN"] = 0x1818EE501cd28e01E058E7C283E178E9e04a1e79; + addr["RWA009_A_JAR"] = 0x6C6d4Be2223B5d202263515351034861dD9aFdb6; + addr["RWA009_A_OUTPUT_CONDUIT"] = 0x508D982e13263Fc8e1b5A4E6bf59b335202e36b4; + addr["RWA009_A_INPUT_CONDUIT_URN_USDC"] = 0x08012Ec53A7fAbf6F33318dfb93C1289886eBBE1; + addr["RWA010"] = 0x20C72C1fdd589C4Aaa8d9fF56a43F3B17BA129f8; + addr["PIP_RWA010"] = 0xfBAa6a09A39D485a5Be9F5ebfe09C602E63b21EF; + addr["MCD_JOIN_RWA010_A"] = 0xde2828c3F7B2161cF2a1711edc36c73C56EA72aE; + addr["RWA010_A_URN"] = 0x4866d5d24CdC6cc094423717663b2D3343d4EFF9; + addr["RWA010_A_OUTPUT_CONDUIT"] = 0x1F5C294EF3Ff2d2Da30ea9EDAd490C28096C91dF; + addr["RWA010_A_INPUT_CONDUIT"] = 0x1F5C294EF3Ff2d2Da30ea9EDAd490C28096C91dF; + addr["RWA011"] = 0x0b126F85285d1786F52FC911AfFaaf0d9253e37a; + addr["PIP_RWA011"] = 0x8bDC64d73da9631C962C4932a391CB78065ce7a9; + addr["MCD_JOIN_RWA011_A"] = 0x9048cb84F46e94Ff312DcC50f131191c399D9bC3; + addr["RWA011_A_URN"] = 0x32C9bBA0841F2557C10d3f0d30092f138251aFE6; + addr["RWA011_A_OUTPUT_CONDUIT"] = 0x8e74e529049bB135CF72276C1845f5bD779749b0; + addr["RWA011_A_INPUT_CONDUIT"] = 0x8e74e529049bB135CF72276C1845f5bD779749b0; + addr["RWA012"] = 0x3c7f1379B5ac286eB3636668dEAe71EaA5f7518c; + addr["PIP_RWA012"] = 0x4FA7c611bD25DA38bC929C2A67290FbE49DDFF56; + addr["MCD_JOIN_RWA012_A"] = 0x75646F68B8c5d8F415891F7204978Efb81ec6410; + addr["RWA012_A_URN"] = 0xB22E9DBF60a5b47c8B2D0D6469548F3C2D036B7E; + addr["RWA012_A_OUTPUT_CONDUIT"] = 0x795b917eBe0a812D406ae0f99D71caf36C307e21; + addr["RWA012_A_INPUT_CONDUIT"] = 0x795b917eBe0a812D406ae0f99D71caf36C307e21; + addr["RWA013"] = 0xD6C7FD4392D328e4a8f8bC50F4128B64f4dB2d4C; + addr["PIP_RWA013"] = 0x69Cf63ed6eD57Ad129bF67EB726Ae1bd293edbB0; + addr["MCD_JOIN_RWA013_A"] = 0x779D0fD012815D4239BAf75140e6B2971BEd5113; + addr["RWA013_A_URN"] = 0x9C170dd80Ee2CA5bfDdF00cbE93e8faB2D05bA6D; + addr["RWA013_A_OUTPUT_CONDUIT"] = 0x615984F33604011Fcd76E9b89803Be3816276E61; + addr["RWA013_A_INPUT_CONDUIT"] = 0x615984F33604011Fcd76E9b89803Be3816276E61; + addr["RWA014"] = 0x75dCa04C4aCC1FfB0AEF940e5b49e2C17416008a; + addr["PIP_RWA014"] = 0xfeDAB3d532Af95b10F064c73bebEF68a0d0A5f36; + addr["MCD_JOIN_RWA014_A"] = 0xAd722E51569EF41861fFf5e11942a8E07c7C309e; + addr["RWA014_A_URN"] = 0xf082566Ac42566cF7B392C8e58116a27eEdcBe63; + addr["RWA014_A_JAR"] = 0x71eC6d5Ee95B12062139311CA1fE8FD698Cbe0Cf; + addr["RWA014_A_INPUT_CONDUIT_URN"] = 0x6B86bA08Bd7796464cEa758061Ac173D0268cf49; + addr["RWA014_A_INPUT_CONDUIT_JAR"] = 0x391470cD3D8307AdC051d878A95Fa9459F800Dbc; + addr["RWA014_A_OUTPUT_CONDUIT"] = 0xD7cBDFdE553DE2063caAfBF230Be135e5DbB5064; + addr["RWA014_A_OPERATOR"] = 0x3064D13712338Ee0E092b66Afb3B054F0b7779CB; + addr["RWA014_A_COINBASE_CUSTODY"] = 0x2E5F1f08EBC01d6136c95a40e19D4c64C0be772c; + addr["RWA015"] = 0xf5E5E706EfC841BeD1D24460Cd04028075cDbfdE; + addr["PIP_RWA015"] = 0xDa28e04514E718271b37c9F36fbaf45b4BF42dF4; + addr["MCD_JOIN_RWA015_A"] = 0x8938988f7B368f74bEBdd3dcd8D6A3bd18C15C0b; + addr["RWA015_A_URN"] = 0xebFDaa143827FD0fc9C6637c3604B75Bbcfb7284; + addr["RWA015_A_JAR"] = 0xc27C3D3130563C1171feCC4F76C217Db603997cf; + addr["RWA015_A_INPUT_CONDUIT_URN_USDC"] = 0xe08cb5E24862eA86328295D5E5c08972203C20D8; + addr["RWA015_A_INPUT_CONDUIT_JAR_USDC"] = 0xB9373C557f3aE8cDdD068c1644ED226CfB18A997; + addr["RWA015_A_INPUT_CONDUIT_URN_GUSD"] = 0xAB80C37cB5b21238D975c2Cea46e0F12b3d84B06; + addr["RWA015_A_INPUT_CONDUIT_JAR_GUSD"] = 0x13C31b41E671401c7BC2bbd44eF33B6E9eaa1E7F; + addr["RWA015_A_INPUT_CONDUIT_URN_PAX"] = 0x4f7f76f31CE6Bb20809aaCE30EfD75217Fbfc217; + addr["RWA015_A_INPUT_CONDUIT_JAR_PAX"] = 0x79Fc3810735959db3C6D4fc64F7F7b5Ce48d1CEc; + addr["RWA015_A_OUTPUT_CONDUIT"] = 0x1E86CB085f249772f7e7443631a87c6BDba2aCEb; + addr["RWA015_A_OPERATOR"] = 0x23a10f09Fac6CCDbfb6d9f0215C795F9591D7476; + addr["RWA015_A_CUSTODY"] = 0x65729807485F6f7695AF863d97D62140B7d69d83; + addr["RWA015_A_CUSTODY_2"] = 0x6759610547a36E9597Ef452aa0B9cace91291a2f; + addr["GUNIV3DAIUSDC1"] = 0xAbDDAfB225e10B90D798bB8A886238Fb835e2053; + addr["PIP_GUNIV3DAIUSDC1"] = 0x7F6d78CC0040c87943a0e0c140De3F77a273bd58; + addr["MCD_JOIN_GUNIV3DAIUSDC1_A"] = 0xbFD445A97e7459b0eBb34cfbd3245750Dba4d7a4; + addr["MCD_CLIP_GUNIV3DAIUSDC1_A"] = 0x5048c5Cd3102026472f8914557A1FD35c8Dc6c9e; + addr["MCD_CLIP_CALC_GUNIV3DAIUSDC1_A"] = 0x25B17065b94e3fDcD97d94A2DA29E7F77105aDd7; + addr["MCD_JOIN_TELEPORT_FW_A"] = 0x41Ca7a7Aa2Be78Cf7CB80C0F4a9bdfBC96e81815; + addr["MCD_ROUTER_TELEPORT_FW_A"] = 0xeEf8B35eD538b6Ef7DbA82236377aDE4204e5115; + addr["MCD_ORACLE_AUTH_TELEPORT_FW_A"] = 0x324a895625E7AE38Fc7A6ae91a71e7E937Caa7e6; + addr["STARKNET_TELEPORT_BRIDGE"] = 0x95D8367B74ef8C5d014ff19C212109E243748e28; + addr["STARKNET_TELEPORT_FEE"] = 0x2123159d2178f07E3899d9d22aad2Fb177B59C48; + addr["STARKNET_DAI_BRIDGE"] = 0x9F96fE0633eE838D0298E8b8980E6716bE81388d; + addr["STARKNET_DAI_BRIDGE_LEGACY"] = 0x659a00c33263d9254Fed382dE81349426C795BB6; + addr["STARKNET_ESCROW"] = 0x0437465dfb5B79726e35F08559B0cBea55bb585C; + addr["STARKNET_ESCROW_MOM"] = 0xc238E3D63DfD677Fa0FA9985576f0945C581A266; + addr["STARKNET_GOV_RELAY"] = 0x2385C60D2756Ed8CA001817fC37FDa216d7466c0; + addr["STARKNET_GOV_RELAY_LEGACY"] = 0x9eed6763BA8D89574af1478748a7FDF8C5236fE0; + addr["STARKNET_CORE"] = 0xc662c410C0ECf747543f5bA90660f6ABeBD9C8c4; + addr["OPTIMISM_TELEPORT_BRIDGE"] = 0x920347f49a9dbe50865EB6161C3B2774AC046A7F; + addr["OPTIMISM_TELEPORT_FEE"] = 0xA7C088AAD64512Eff242901E33a516f2381b8823; + addr["OPTIMISM_DAI_BRIDGE"] = 0x10E6593CDda8c58a1d0f14C5164B376352a55f2F; + addr["OPTIMISM_ESCROW"] = 0x467194771dAe2967Aef3ECbEDD3Bf9a310C76C65; + addr["OPTIMISM_GOV_RELAY"] = 0x09B354CDA89203BB7B3131CC728dFa06ab09Ae2F; + addr["ARBITRUM_TELEPORT_BRIDGE"] = 0x22218359E78bC34E532B653198894B639AC3ed72; + addr["ARBITRUM_TELEPORT_FEE"] = 0xA7C088AAD64512Eff242901E33a516f2381b8823; + addr["ARBITRUM_DAI_BRIDGE"] = 0xD3B5b60020504bc3489D6949d545893982BA3011; + addr["ARBITRUM_ESCROW"] = 0xA10c7CE4b876998858b1a9E12b10092229539400; + addr["ARBITRUM_GOV_RELAY"] = 0x9ba25c289e351779E0D481Ba37489317c34A899d; + addr["ADAI"] = 0x028171bCA77440897B824Ca71D1c56caC55b68A3; + addr["PIP_ADAI"] = 0x6A858592fC4cBdf432Fc9A1Bc8A0422B99330bdF; + addr["GUNIV3DAIUSDC2"] = 0x50379f632ca68D36E50cfBC8F78fe16bd1499d1e; + addr["PIP_GUNIV3DAIUSDC2"] = 0xcCBa43231aC6eceBd1278B90c3a44711a00F4e93; + addr["MCD_JOIN_GUNIV3DAIUSDC2_A"] = 0xA7e4dDde3cBcEf122851A7C8F7A55f23c0Daf335; + addr["MCD_CLIP_GUNIV3DAIUSDC2_A"] = 0xB55da3d3100C4eBF9De755b6DdC24BF209f6cc06; + addr["MCD_CLIP_CALC_GUNIV3DAIUSDC2_A"] = 0xef051Ca2A2d809ba47ee0FC8caaEd06E3D832225; + addr["CRVV1ETHSTETH"] = 0x06325440D014e39736583c165C2963BA99fAf14E; + addr["PIP_CRVV1ETHSTETH"] = 0xEa508F82728927454bd3ce853171b0e2705880D4; + addr["MCD_JOIN_CRVV1ETHSTETH_A"] = 0x82D8bfDB61404C796385f251654F6d7e92092b5D; + addr["MCD_CLIP_CRVV1ETHSTETH_A"] = 0x1926862F899410BfC19FeFb8A3C69C7Aed22463a; + addr["MCD_CLIP_CALC_CRVV1ETHSTETH_A"] = 0x8a4780acABadcae1a297b2eAe5DeEbd7d50DEeB8; + addr["RETH"] = 0xae78736Cd615f374D3085123A210448E74Fc6393; + addr["PIP_RETH"] = 0xeE7F0b350aA119b3d05DC733a4621a81972f7D47; + addr["MCD_JOIN_RETH_A"] = 0xC6424e862f1462281B0a5FAc078e4b63006bDEBF; + addr["MCD_CLIP_RETH_A"] = 0x27CA5E525ea473eD52Ea9423CD08cCc081d96a98; + addr["MCD_CLIP_CALC_RETH_A"] = 0xc59B62AFC96cf9737F717B5e5815070C0f154396; + addr["DIRECT_HUB"] = 0x12F36cdEA3A28C35aC8C6Cc71D9265c17C74A27F; + addr["DIRECT_MOM"] = 0x1AB3145E281c01a1597c8c62F9f060E8e3E02fAB; + addr["DIRECT_COMPV2_DAI_POOL"] = 0x621fE4Fde2617ea8FFadE08D0FF5A862aD287EC2; + addr["DIRECT_COMPV2_DAI_PLAN"] = 0xD0eA20f9f9e64A3582d569c8745DaCD746274AEe; + addr["DIRECT_COMPV2_DAI_ORACLE"] = 0x0e2bf18273c953B54FE0a9dEC5429E67851D9468; + addr["DIRECT_AAVEV2_DAI_POOL"] = 0x66aE0574Eb28B92c82569b293B856BB99f80F040; + addr["DIRECT_AAVEV2_DAI_PLAN"] = 0x5846Aee09298f8F3aB5D837d540232d19e5d5813; + addr["DIRECT_AAVEV2_DAI_ORACLE"] = 0x634051fbA31829E245C616e79E289f89c8B851c2; + addr["DIRECT_SPARK_DAI_POOL"] = 0xAfA2DD8a0594B2B24B59de405Da9338C4Ce23437; + addr["DIRECT_SPARK_DAI_PLAN"] = 0x104FaDbb7e17db1A685bBa61007DfB015206a4D2; + addr["DIRECT_SPARK_DAI_ORACLE"] = 0xCBD53B683722F82Dc82EBa7916065532980d4833; + addr["DIRECT_SPARK_MORPHO_DAI_PLAN"] = 0x374b5f915aaED790CBdd341E6f406910d648fD39; + addr["DIRECT_SPARK_MORPHO_DAI_POOL"] = 0x9C259F14E5d9F35A0434cD3C4abbbcaA2f1f7f7E; + addr["DIRECT_SPARK_MORPHO_DAI_ORACLE"] = 0xA5AA14DEE8c8204e424A55776E53bfff413b02Af; + addr["GNO"] = 0x6810e776880C02933D47DB1b9fc05908e5386b96; + addr["PIP_GNO"] = 0xd800ca44fFABecd159c7889c3bf64a217361AEc8; + addr["MCD_JOIN_GNO_A"] = 0x7bD3f01e24E0f0838788bC8f573CEA43A80CaBB5; + addr["MCD_CLIP_GNO_A"] = 0xd9e758bd239e5d568f44D0A748633f6a8d52CBbb; + addr["MCD_CLIP_CALC_GNO_A"] = 0x17b6D0e4237ea7F880aF5F58257cd232a04171D9; + addr["SPARK_PROXY"] = 0x3300f198988e4C9C63F75dF86De36421f06af8c4; + addr["CRON_SEQUENCER"] = 0x238b4E35dAed6100C6162fAE4510261f88996EC9; + addr["CRON_AUTOLINE_JOB"] = 0x67AD4000e73579B9725eE3A149F85C4Af0A61361; + addr["CRON_LERP_JOB"] = 0x8F8f2FC1F0380B9Ff4fE5c3142d0811aC89E32fB; + addr["CRON_D3M_JOB"] = 0x2Ea4aDE144485895B923466B4521F5ebC03a0AeF; + addr["CRON_CLIPPER_MOM_JOB"] = 0x7E93C4f61C8E8874e7366cDbfeFF934Ed089f9fF; + addr["CRON_ORACLE_JOB"] = 0xe717Ec34b2707fc8c226b34be5eae8482d06ED03; + addr["CRON_FLAP_JOB"] = 0xc32506E9bB590971671b649d9B8e18CB6260559F; + addr["CRON_LITE_PSM_JOB"] = 0x0C86162ba3E507592fC8282b07cF18c7F902C401; + addr["USDS"] = 0xdC035D45d973E3EC169d2276DDab16f1e407384F; + addr["USDS_IMP"] = 0x1923DfeE706A8E78157416C29cBCCFDe7cdF4102; + addr["USDS_JOIN"] = 0x3C0f895007CA717Aa01c8693e59DF1e8C3777FEB; + addr["DAI_USDS"] = 0x3225737a9Bbb6473CB4a45b7244ACa2BeFdB276A; + addr["SUSDS"] = 0xa3931d71877C0E7a3148CB7Eb4463524FEc27fbD; + addr["SUSDS_IMP"] = 0x4e7991e5C547ce825BdEb665EE14a3274f9F61e0; + addr["SKY"] = 0x56072C95FAA701256059aa122697B133aDEd9279; + addr["MKR_SKY"] = 0xBDcFCA946b6CDd965f99a839e4435Bcdc1bc470B; + addr["UNIV2DAIMKR"] = 0x517F9dD285e75b599234F7221227339478d0FcC8; + addr["UNIV2USDSSKY"] = 0x2621CC0B3F3c079c1Db0E80794AA24976F0b9e3c; + addr["MCD_SPLIT"] = 0xBF7111F13386d23cb2Fba5A538107A73f6872bCF; + addr["SPLITTER_MOM"] = 0xF51a075d468dE7dE3599C1Dc47F5C42d02C9230e; + addr["MCD_FLAP"] = 0x374D9c3d5134052Bc558F432Afa1df6575f07407; + addr["FLAP_SKY_ORACLE"] = 0x61A12E5b1d5E9CC1302a32f0df1B5451DE6AE437; + addr["MCD_VEST_SKY"] = 0xB313Eab3FdE99B2bB4bA9750C2DDFBe2729d1cE9; + addr["REWARDS_USDS_SKY"] = 0x0650CAF159C5A49f711e8169D4336ECB9b950275; + addr["REWARDS_DIST_USDS_SKY"] = 0x2F0C88e935Db5A60DDA73b0B4EAEef55883896d9; + addr["REWARDS_USDS_01"] = 0x10ab606B067C9C461d8893c47C7512472E19e2Ce; + addr["CRON_REWARDS_DIST_JOB"] = 0x6464C34A02DD155dd0c630CE233DD6e21C24F9A5; + addr["WRAPPER_USDS_LITE_PSM_USDC_A"] = 0xA188EEC8F81263234dA3622A406892F3D630f98c; + } +} diff --git a/archive/2024-09-27-DssSpell/test/addresses_wallets.sol b/archive/2024-09-27-DssSpell/test/addresses_wallets.sol new file mode 100644 index 000000000..41220ce1b --- /dev/null +++ b/archive/2024-09-27-DssSpell/test/addresses_wallets.sol @@ -0,0 +1,197 @@ +// SPDX-FileCopyrightText: © 2021 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity 0.8.16; + +contract Wallets { + + mapping (bytes32 => address) public addr; + + constructor() { + + // Core Units + addr["CES_WALLET"] = 0x25307aB59Cd5d8b4E2C01218262Ddf6a89Ff86da; + addr["CES_OP_WALLET"] = 0xD740882B8616B50d0B317fDFf17Ec3f4f853F44f; + addr["COM_WALLET"] = 0x1eE3ECa7aEF17D1e74eD7C447CcBA61aC76aDbA9; + addr["COM_EF_WALLET"] = 0x99E1696A680c0D9f426Be20400E468089E7FDB0f; + addr["DAIF_WALLET"] = 0x34D8d61050Ef9D2B48Ab00e6dc8A8CA6581c5d63; + addr["DAIF_RESERVE_WALLET"] = 0x5F5c328732c9E52DfCb81067b8bA56459b33921f; + addr["DECO_WALLET"] = 0xF482D1031E5b172D42B2DAA1b6e5Cbf6519596f7; + addr["DIN_WALLET"] = 0x7327Aed0Ddf75391098e8753512D8aEc8D740a1F; + addr["DUX_WALLET"] = 0x5A994D8428CCEbCC153863CCdA9D2Be6352f89ad; + addr["EVENTS_WALLET"] = 0x3D274fbAc29C92D2F624483495C0113B44dBE7d2; + addr["GRO_WALLET"] = 0x7800C137A645c07132886539217ce192b9F0528e; + addr["IS_WALLET"] = 0xd1F2eEf8576736C1EbA36920B957cd2aF07280F4; + addr["ORA_WALLET"] = 0x2d09B7b95f3F312ba6dDfB77bA6971786c5b50Cf; + addr["ORA_GAS"] = 0x2B6180b413511ce6e3DA967Ec503b2Cc19B78Db6; + addr["ORA_GAS_EMERGENCY"] = 0x1A5B692029b157df517b7d21a32c8490b8692b0f; + addr["PE_WALLET"] = 0xe2c16c308b843eD02B09156388Cb240cEd58C01c; + addr["RISK_WALLET"] = 0xb386Bc4e8bAE87c3F67ae94Da36F385C100a370a; + addr["RISK_WALLET_VEST"] = 0x5d67d5B1fC7EF4bfF31967bE2D2d7b9323c1521c; + addr["RWF_WALLET"] = 0x96d7b01Cc25B141520C717fa369844d34FF116ec; + addr["SES_WALLET"] = 0x87AcDD9208f73bFc9207e1f6F0fDE906bcA95cc6; + addr["SF01_WALLET"] = 0x4Af6f22d454581bF31B2473Ebe25F5C6F55E028D; + addr["SH_WALLET"] = 0x955993Df48b0458A01cfB5fd7DF5F5DCa6443550; + addr["SH_MULTISIG"] = 0xc657aC882Fb2D6CcF521801da39e910F8519508d; + addr["SNE_WALLET"] = 0x6D348f18c88D45243705D4fdEeB6538c6a9191F1; + addr["SIDESTREAM_WALLET"] = 0xb1f950a51516a697E103aaa69E152d839182f6Fe; + + // Recognized Delegates + addr["ACREINVEST"] = 0x5b9C98e8A3D9Db6cd4B4B4C1F92D0A551D06F00D; + addr["FEEDBLACKLOOPS"] = 0x80882f2A36d49fC46C3c654F7f9cB9a2Bf0423e1; + addr["FIELDTECHNOLOGIES"] = 0x0988E41C02915Fe1beFA78c556f946E5F20ffBD3; + addr["FLIPFLOPFLAP"] = 0x688d508f3a6B0a377e266405A1583B3316f9A2B3; + addr["GFXLABS"] = 0xa6e8772af29b29B9202a073f8E36f447689BEef6; + addr["JUSTINCASE"] = 0xE070c2dCfcf6C6409202A8a210f71D51dbAe9473; + addr["MAKERMAN"] = 0x9AC6A6B24bCd789Fa59A175c0514f33255e1e6D0; + addr["COLDIRON"] = 0x6634e3555DBF4B149c5AEC99D579A2469015AEca; + addr["MONETSUPPLY"] = 0x4Bd73eeE3d0568Bb7C52DFCad7AD5d47Fff5E2CF; + addr["STABLELAB"] = 0x3B91eBDfBC4B78d778f62632a4004804AC5d2DB0; + addr["FLIPSIDE"] = 0x1ef753934C40a72a60EaB12A68B6f8854439AA78; + addr["PENNBLOCKCHAIN"] = 0x2165D41aF0d8d5034b9c266597c1A415FA0253bd; + addr["CHRISBLEC"] = 0xa3f0AbB4Ba74512b5a736C5759446e9B50FDA170; + addr["BLOCKCHAINCOLUMBIA"] = 0xdC1F98682F4F8a5c6d54F345F448437b83f5E432; + addr["MHONKASALOTEEMULAU"] = 0x97Fb39171ACd7C82c439b6158EA2F71D26ba383d; + addr["LLAMA"] = 0xA519a7cE7B24333055781133B13532AEabfAC81b; + addr["CODEKNIGHT"] = 0xf6006d4cF95d6CB2CD1E24AC215D5BF3bca81e7D; + addr["FRONTIERRESEARCH"] = 0xA2d55b89654079987CF3985aEff5A7Bd44DA15A8; + addr["LBSBLOCKCHAIN"] = 0xB83b3e9C8E3393889Afb272D354A7a3Bd1Fbcf5C; + addr["ONESTONE"] = 0x4eFb12d515801eCfa3Be456B5F348D3CD68f9E8a; + addr["PVL"] = 0x6ebB1A9031177208A4CA50164206BF2Fa5ff7416; + addr["CALBLOCKCHAIN"] = 0x7AE109A63ff4DC852e063a673b40BED85D22E585; + addr["CONSENSYS"] = 0xE78658A8acfE982Fde841abb008e57e6545e38b3; + addr["HKUSTEPI"] = 0x2dA0d746938Efa28C7DC093b1da286b3D8bAC34a; + + // AVCs + addr["IAMMEEOH"] = 0x47f7A5d8D27f259582097E1eE59a07a816982AE9; + addr["ACREDAOS"] = 0xBF9226345F601150F64Ea4fEaAE7E40530763cbd; + addr["SPACEXPONENTIAL"] = 0xFF8eEB643C5bfDf6A925f2a5F9aDC9198AF07b78; + addr["RES"] = 0x8c5c8d76372954922400e4654AF7694e158AB784; + addr["LDF"] = 0xC322E8Ec33e9b0a34c7cD185C616087D9842ad50; + addr["OPENSKY"] = 0x8e67eE3BbEb1743dc63093Af493f67C3c23C6f04; + addr["OPENSKY_2"] = 0xf44f97f4113759E0a57756bE49C0655d490Cf19F; + addr["DAVIDPHELPS"] = 0xd56e3E325133EFEd6B1687C88571b8a91e517ab0; + addr["SEEDLATAMETH"] = 0x0087a081a9B430fd8f688c6ac5dD24421BfB060D; + addr["SEEDLATAMETH_2"] = 0xd43b89621fFd48A8A51704f85fd0C87CbC0EB299; + addr["STABLELAB_2"] = 0xbDE65cf2352ed1Dde959f290E973d0fC5cEDFD08; + addr["FLIPSIDEGOV"] = 0x300901243d6CB2E74c10f8aB4cc89a39cC222a29; + addr["DAI_VINCI"] = 0x9ee47F0f82F1A6F45C4E1D25Ce95C321D8C8356a; + addr["HARMONY_2"] = 0xE20A2e231215e9b7Aa308463F1A7490b2ECE55D3; + addr["FHOMONEYETH"] = 0xdbD5651F71ce83d1f0eD275aC456241890a53C74; + addr["ROOT"] = 0xC74392777443a11Dc26Ce8A3D934370514F38A91; + + // MIP-63 Keeper Network + addr["GELATO_VEST_STREAMING"] = 0x478c7Ce3e1df09130f8D65a23AD80e05b352af62; + addr["GELATO_PAYMENT_ADAPTER"] = 0x0B5a34D084b6A5ae4361de033d1e6255623b41eD; + addr["GELATO_TREASURY"] = 0xbfDC6b9944B7EFdb1e2Bc9D55ae9424a2a55b206; + addr["KEEP3R_VEST_STREAMING"] = 0x37b375e3D418fbECba6b283e704F840AB32f3b3C; + addr["KEEP3R_VEST_STREAMING_LEGACY"] = 0xc6A048550C9553F8Ac20fbdeB06f114c27ECcabb; + addr["KEEP3R_PAYMENT_ADAPTER"] = 0xaeFed819b6657B3960A8515863abe0529Dfc444A; + addr["KEEP3R_TREASURY"] = 0x4DfC6DA2089b0dfCF04788b341197146Ea97f743; + addr["CHAINLINK_AUTOMATION"] = 0x5E9dfc5fe95A0754084fB235D58752274314924b; + addr["CHAINLINK_PAYMENT_ADAPTER"] = 0xfB5e1D841BDA584Af789bDFABe3c6419140EC065; + addr["CHAINLINK_TREASURY"] = 0xBE1cE564574377Acb17C2b7628E4F6dd38067a55; + addr["TECHOPS_VEST_STREAMING"] = 0x5A6007d17302238D63aB21407FF600a67765f982; + + // ETH Amsterdam Event SPF + addr["ETH_AMSTERDAM"] = 0xF34ac684BA2734039772f0C0d77bc2545e819212; + + // Phoenix Labs SPF + addr["PHOENIX_LABS"] = 0xD9847E6b1314f0327F320E43B51ca0AaAD6FF509; + + // Ambassador Program Pilot Multisig + addr["AMBASSADOR_WALLET"] = 0xF411d823a48D18B32e608274Df16a9957fE33E45; + + // Legal Domain Work + addr["BIBTA_WALLET"] = 0x173d85CD1754daD73cfc673944D9C8BF11A01D3F; + addr["MIP65_WALLET"] = 0x29408abeCe474C85a12ce15B05efBB6A1e8587fe; + addr["BLOCKTOWER_WALLET"] = 0x117786ad59BC2f13cf25B2359eAa521acB0aDCD9; + addr["BLOCKTOWER_WALLET_2"] = 0xc4dB894A11B1eACE4CDb794d0753A3cB7A633767; + addr["AAVE_V3_TREASURY"] = 0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c; + + // Responsible Facilitators + addr["GOV_ALPHA"] = 0x01D26f8c5cC009868A4BF66E268c17B057fF7A73; + addr["TECH"] = 0x2dC0420A736D1F40893B9481D8968E4D7424bC0B; + addr["STEAKHOUSE"] = 0xf737C76D2B358619f7ef696cf3F94548fEcec379; + addr["BA_LABS"] = 0xDfe08A40054685E205Ed527014899d1EDe49B892; + addr["JANSKY"] = 0xf3F868534FAD48EF5a228Fe78669cf242745a755; + addr["VOTEWIZARD"] = 0x9E72629dF4fcaA2c2F5813FbbDc55064345431b1; + addr["ECOSYSTEM_FACILITATOR"] = 0xFCa6e196c2ad557E64D9397e283C2AFe57344b75; + + // Ecosystem Actors + addr["PHOENIX_LABS_2"] = 0x115F76A98C2268DaE6c1421eb6B08e4e1dF525dA; + addr["VIRIDIAN_STREAM"] = 0xbB8AA212267477C3dbfF6643E497919ec2E3dEC9; + addr["VIRIDIAN_TRANSFER"] = 0xA1E62c6321eEd0ECFcF2f382c8c82FD940D83c07; + addr["DEWIZ"] = 0xD8665628742cf54BBBB3b00B15d7E7a838a1b53a; + addr["SIDESTREAM"] = 0x87EcaaACEd3A02A37e7075dc45D3fEb49867d135; + addr["PULLUP_LABS"] = 0x42aD911c75d25E21727E45eCa2A9d999D5A7f94c; + addr["CHRONICLE_LABS"] = 0x68D0ca2d5Ac777F6A9b0d1be44332BB3d5981C2f; + addr["JETSTREAM"] = 0xF478A08C41ad06E8D957d5e6B6Bcde7452cEE962; + + // Ecosystem Scope + addr["ECOSYSTEM_SCOPE_WALLET"] = 0x6E51E0b5813152880C1389E3e860e69E06aD04D9; + + // Accessibility Scope + addr["LAUNCH_PROJECT_FUNDING"] = 0x3C5142F28567E6a0F172fd0BaaF1f2847f49D02F; + + // Sky Ecosystem Liquidity Bootstrapping + addr["LIQUIDITY_BOOTSTRAPPING"] = 0xD8507ef0A59f37d15B5D7b630FA6EEa40CE4AFdD; + + // Vest Managers + addr["PULLUP_LABS_VEST_MGR"] = 0x9B6213D350A4AFbda2361b6572A07C90c22002F1; + + // Constitutional Delegates + addr["DEFENSOR"] = 0x9542b441d65B6BF4dDdd3d4D2a66D8dCB9EE07a9; + addr["BONAPUBLICA"] = 0x167c1a762B08D7e78dbF8f24e5C3f1Ab415021D3; + addr["GFXLABS_2"] = 0x9B68c14e936104e9a7a24c712BEecdc220002984; + addr["QGOV"] = 0xB0524D8707F76c681901b782372EbeD2d4bA28a6; + addr["TRUENAME"] = 0x612F7924c367575a0Edf21333D96b15F1B345A5d; + addr["VIGILANT"] = 0x2474937cB55500601BCCE9f4cb0A0A72Dc226F61; + addr["FLIPFLOPFLAP_2"] = 0x3d9751EFd857662f2B007A881e05CfD1D7833484; + addr["PBG"] = 0x8D4df847dB7FfE0B46AF084fE031F7691C6478c2; + addr["UPMAKER"] = 0xbB819DF169670DC71A16F58F55956FE642cc6BcD; + addr["WBC"] = 0xeBcE83e491947aDB1396Ee7E55d3c81414fB0D47; + addr["LIBERTAS"] = 0xE1eBfFa01883EF2b4A9f59b587fFf1a5B44dbb2f; + addr["BANDHAR"] = 0xE83B6a503A94a5b764CCF00667689B3a522ABc21; + addr["PALC"] = 0x78Deac4F87BD8007b9cb56B8d53889ed5374e83A; + addr["HARMONY"] = 0xF4704Aa4Ad22cAA2A3Dd7A7C529B4C32f7A421F2; + addr["NAVIGATOR"] = 0x11406a9CC2e37425F15f920F494A51133ac93072; + addr["JAG"] = 0x58D1ec57E4294E4fe650D1CB12b96AE34349556f; + addr["CLOAKY"] = 0x869b6d5d8FA7f4FFdaCA4D23FFE0735c5eD1F818; + addr["SKYNET"] = 0xd4d1A446cD5976a11bd32D3e815A9F85FED2F9F3; + addr["BLUE"] = 0xb6C09680D822F162449cdFB8248a7D3FC26Ec9Bf; + addr["PIPKIN"] = 0x0E661eFE390aE39f90a58b04CF891044e56DEDB7; + addr["JULIACHANG"] = 0x252abAEe2F4f4b8D39E5F12b163eDFb7fac7AED7; + addr["BYTERON"] = 0xc2982e72D060cab2387Dba96b846acb8c96EfF66; + addr["ROCKY"] = 0xC31637BDA32a0811E39456A59022D2C386cb2C85; + addr["CLOAKY_KOHLA"] = 0xA9D43465B43ab95050140668c87A2106C73CA811; + addr["CLOAKY_ENNOIA"] = 0xA7364a1738D0bB7D1911318Ca3FB3779A8A58D7b; + addr["CLOAKY_KOHLA_2"] = 0x73dFC091Ad77c03F2809204fCF03C0b9dccf8c7a; + + // Protocol Engineering Scope + addr["GOV_SECURITY_ENGINEERING"] = 0x569fAD613887ddd8c1815b56A00005BCA7FDa9C0; + addr["MULTICHAIN_ENGINEERING"] = 0x868B44e8191A2574334deB8E7efA38910df941FA; + + // Whistleblower Bounty + addr["VENICE_TREE"] = 0xCDDd2A697d472d1e8a0B1B188646c756d097b058; + addr["COMPACTER"] = 0xbbd4bC3FE72691663c6ffE984Bcdb6C6E6b3a8Dd; + + // Bug Bounty + addr["IMMUNEFI_COMISSION"] = 0x7119f398b6C06095c6E8964C1f58e7C1BAa79E18; + addr["IMMUNEFI_USER_PAYOUT_2024_05_16"] = 0xa24EC79bdF03bB325F36878573B13AedFEd0717f; + addr["IMMUNEFI_USER_PAYOUT_2024_08_08"] = 0xA4a6B5f005cBd2eD38f49ac496d86d3528C7a1aa; + } +} diff --git a/archive/2024-09-27-DssSpell/test/config.sol b/archive/2024-09-27-DssSpell/test/config.sol new file mode 100644 index 000000000..9481b1d98 --- /dev/null +++ b/archive/2024-09-27-DssSpell/test/config.sol @@ -0,0 +1,1801 @@ +// SPDX-FileCopyrightText: © 2020 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity 0.8.16; + +contract Config { + + struct SpellValues { + address deployed_spell; + uint256 deployed_spell_created; + uint256 deployed_spell_block; + address[] previous_spells; + bool office_hours_enabled; + uint256 expiration_threshold; + } + + struct SystemValues { + uint256 line_offset; + uint256 pot_dsr; + uint256 susds_ssr; + uint256 pause_delay; + uint256 vow_wait; + uint256 vow_dump; + uint256 vow_sump; + uint256 vow_bump; + uint256 vow_hump_min; + uint256 vow_hump_max; + uint256 split_hop; + uint256 split_burn; + uint256 flap_want; + uint256 dog_Hole; + uint256 esm_min; + address pause_authority; + address osm_mom_authority; + address clipper_mom_authority; + address d3m_mom_authority; + address line_mom_authority; + address lite_psm_mom_authority; + address splitter_mom_authority; + uint256 vest_dai_cap; + uint256 vest_mkr_cap; + uint256 vest_sky_cap; + uint256 sky_mkr_rate; + uint256 ilk_count; + string chainlog_version; + mapping (bytes32 => CollateralValues) collaterals; + } + + struct CollateralValues { + bool aL_enabled; + uint256 aL_line; + uint256 aL_gap; + uint256 aL_ttl; + uint256 line; + uint256 dust; + uint256 pct; + uint256 mat; + bytes32 liqType; + bool liqOn; + uint256 chop; + uint256 dog_hole; + uint256 clip_buf; + uint256 clip_tail; + uint256 clip_cusp; + uint256 clip_chip; + uint256 clip_tip; + uint256 clipper_mom; + uint256 cm_tolerance; + uint256 calc_tau; + uint256 calc_step; + uint256 calc_cut; + bool offboarding; + } + + uint256 constant private THOUSAND = 10 ** 3; + uint256 constant private MILLION = 10 ** 6; + uint256 constant private BILLION = 10 ** 9; + uint256 constant private WAD = 10 ** 18; + + SpellValues spellValues; + SystemValues afterSpell; + + function setValues(address chief) public { + // Add spells if there is a need to test prior to their cast() functions + // being called on-chain. They will be executed in order from index 0. + address[] memory prevSpells = new address[](0); + // prevSpells[0] = address(0); + + // + // Values for spell-specific parameters + // + spellValues = SpellValues({ + deployed_spell: address(0x6e17A15427eD7A411e7d55e53C13c8cE655c35C9), // populate with deployed spell if deployed + deployed_spell_created: 1727355491, // use `make deploy-info tx=` to obtain the timestamp + deployed_spell_block: 20834938, // use `make deploy-info tx=` to obtain the block number + previous_spells: prevSpells, // older spells to ensure are executed first + office_hours_enabled: true, // true if officehours is expected to be enabled in the spell + expiration_threshold: 30 days // Amount of time before spell expires + }); + + // + // Values for all system configuration changes + // + afterSpell.line_offset = 680 * MILLION; // Offset between the global line against the sum of local lines + afterSpell.pot_dsr = 6_00; // In basis points + afterSpell.susds_ssr = 6_25; // In basis points + afterSpell.pause_delay = 16 hours; // In seconds + afterSpell.vow_wait = 156 hours; // In seconds + afterSpell.vow_dump = 250; // In whole Dai units + afterSpell.vow_sump = 50 * THOUSAND; // In whole Dai units + afterSpell.vow_bump = 25 * THOUSAND; // In whole Dai units + afterSpell.vow_hump_min = 55 * MILLION; // In whole Dai units + afterSpell.vow_hump_max = 55 * MILLION; // In whole Dai units + afterSpell.split_hop = 11_635 seconds; // In seconds + afterSpell.split_burn = 100_00; // In basis points + afterSpell.flap_want = 9800; // In basis points + afterSpell.dog_Hole = 150 * MILLION; // In whole Dai units + afterSpell.esm_min = 300 * THOUSAND; // In whole MKR units + afterSpell.pause_authority = chief; // Pause authority + afterSpell.osm_mom_authority = chief; // OsmMom authority + afterSpell.clipper_mom_authority = chief; // ClipperMom authority + afterSpell.d3m_mom_authority = chief; // D3MMom authority + afterSpell.line_mom_authority = chief; // LineMom authority + afterSpell.lite_psm_mom_authority = chief; // LitePsmMom authority + afterSpell.splitter_mom_authority = chief; // SplitterMom authority + afterSpell.vest_dai_cap = 1 * MILLION * WAD / 30 days; // In WAD Dai per second + afterSpell.vest_mkr_cap = 2_220 * WAD / 365 days; // In WAD MKR per second + afterSpell.vest_sky_cap = 800 * MILLION * WAD / 365 days; // In WAD SKY per second + afterSpell.sky_mkr_rate = 24_000; // In whole SKY/MKR units + afterSpell.ilk_count = 66; // Num expected in system + afterSpell.chainlog_version = "1.19.0"; // String expected in system + + // + // Values for all collateral + // Update when adding or modifying Collateral Values + // + afterSpell.collaterals["ETH-A"] = CollateralValues({ + aL_enabled: true, // DssAutoLine is enabled? + aL_line: 15 * BILLION, // In whole Dai units + aL_gap: 150 * MILLION, // In whole Dai units + aL_ttl: 6 hours, // In seconds + line: 0, // In whole Dai units // Not checked here as there is auto line + dust: 7_500, // In whole Dai units + pct: 6_25, // In basis points + mat: 14500, // In basis points + liqType: "clip", // "" or "flip" or "clip" + liqOn: true, // If liquidations are enabled + chop: 1300, // In basis points + dog_hole: 40 * MILLION, // In whole Dai units + clip_buf: 110_00, // In basis points + clip_tail: 7_200, // In seconds, do not use the 'seconds' keyword + clip_cusp: 45_00, // In basis points + clip_chip: 10, // In basis points + clip_tip: 250, // In whole Dai units + clipper_mom: 1, // 1 if circuit breaker enabled + cm_tolerance: 5000, // In basis points + calc_tau: 0, // In seconds + calc_step: 90, // In seconds + calc_cut: 9900, // In basis points + offboarding: false // If mat is being offboarded + }); + afterSpell.collaterals["ETH-B"] = CollateralValues({ + aL_enabled: true, + aL_line: 250 * MILLION, + aL_gap: 20 * MILLION, + aL_ttl: 6 hours, + line: 0, + dust: 25 * THOUSAND, + pct: 6_75, + mat: 13000, + liqType: "clip", + liqOn: true, + chop: 1300, + dog_hole: 15 * MILLION, + clip_buf: 110_00, + clip_tail: 4_800, + clip_cusp: 45_00, + clip_chip: 10, + clip_tip: 250, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 60, + calc_cut: 9900, + offboarding: false + }); + afterSpell.collaterals["ETH-C"] = CollateralValues({ + aL_enabled: true, + aL_line: 2 * BILLION, + aL_gap: 100 * MILLION, + aL_ttl: 8 hours, + line: 0, + dust: 3_500, + pct: 6_00, + mat: 17000, + liqType: "clip", + liqOn: true, + chop: 1300, + dog_hole: 35 * MILLION, + clip_buf: 110_00, + clip_tail: 7_200, + clip_cusp: 45_00, + clip_chip: 10, + clip_tip: 250, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: false + }); + afterSpell.collaterals["BAT-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 10 * THOUSAND, + pct: 400, + mat: 1120000, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 1 * MILLION + 500 * THOUSAND, + clip_buf: 13000, + clip_tail: 140 minutes, + clip_cusp: 4000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["USDC-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 15 * THOUSAND, + pct: 0, + mat: 150000, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 20_000_000, + clip_buf: 100_00, + clip_tail: 720 minutes, + clip_cusp: 99_00, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 9500, + calc_tau: 4_320_000, + calc_step: 0, + calc_cut: 0, + offboarding: true + }); + afterSpell.collaterals["USDC-B"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 10 * THOUSAND, + pct: 5000, + mat: 12000, + liqType: "clip", + liqOn: false, + chop: 1300, + dog_hole: 0, + clip_buf: 10500, + clip_tail: 220 minutes, + clip_cusp: 9000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 0, + cm_tolerance: 9500, + calc_tau: 0, + calc_step: 120, + calc_cut: 9990, + offboarding: false + }); + afterSpell.collaterals["WBTC-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 7_500, + pct: 7_75, + mat: 14500, + liqType: "clip", + liqOn: true, + chop: 1300, + dog_hole: 10 * MILLION, + clip_buf: 110_00, + clip_tail: 7_200, + clip_cusp: 45_00, + clip_chip: 10, + clip_tip: 250, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: false + }); + afterSpell.collaterals["WBTC-B"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 25 * THOUSAND, + pct: 8_25, + mat: 13000, + liqType: "clip", + liqOn: true, + chop: 1300, + dog_hole: 5 * MILLION, + clip_buf: 110_00, + clip_tail: 4_800, + clip_cusp: 45_00, + clip_chip: 10, + clip_tip: 250, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 60, + calc_cut: 9900, + offboarding: false + }); + afterSpell.collaterals["WBTC-C"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 3_500, + pct: 7_50, + mat: 17500, + liqType: "clip", + liqOn: true, + chop: 1300, + dog_hole: 10 * MILLION, + clip_buf: 110_00, + clip_tail: 7_200, + clip_cusp: 45_00, + clip_chip: 10, + clip_tip: 250, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: false + }); + afterSpell.collaterals["TUSD-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 15 * THOUSAND, + pct: 0, + mat: 15000, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 5 * MILLION, + clip_buf: 10000, + clip_tail: 120 hours, + clip_cusp: 9800, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 9500, + calc_tau: 250 days, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["KNC-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 10 * THOUSAND, + pct: 500, + mat: 500000, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 500 * THOUSAND, + clip_buf: 13000, + clip_tail: 140 minutes, + clip_cusp: 4000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["ZRX-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 10 * THOUSAND, + pct: 400, + mat: 550000, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 1 * MILLION, + clip_buf: 13000, + clip_tail: 140 minutes, + clip_cusp: 4000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["MANA-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 15 * THOUSAND, + pct: 5000, + mat: 17500, + liqType: "clip", + liqOn: true, + chop: 3000, + dog_hole: 1 * MILLION, + clip_buf: 120_00, + clip_tail: 140 minutes, + clip_cusp: 40_00, + clip_chip: 10, + clip_tip: 250, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: false + }); + afterSpell.collaterals["USDT-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 10 * THOUSAND, + pct: 800, + mat: 30000, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 15_000, + clip_buf: 10500, + clip_tail: 220 minutes, + clip_cusp: 9000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 1, + cm_tolerance: 9500, + calc_tau: 0, + calc_step: 120, + calc_cut: 9990, + offboarding: false + }); + afterSpell.collaterals["PAXUSD-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 15 * THOUSAND, + pct: 0, + mat: 150000, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 3_000_000, + clip_buf: 100_00, + clip_tail: 720 minutes, + clip_cusp: 99_00, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 9500, + calc_tau: 4_320_000, + calc_step: 0, + calc_cut: 0, + offboarding: true + }); + afterSpell.collaterals["COMP-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 10 * THOUSAND, + pct: 100, + mat: 200000, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 2 * MILLION, + clip_buf: 13000, + clip_tail: 140 minutes, + clip_cusp: 4000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["LRC-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 10 * THOUSAND, + pct: 400, + mat: 2430000, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 500 * THOUSAND, + clip_buf: 13000, + clip_tail: 140 minutes, + clip_cusp: 4000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["LINK-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 15 * THOUSAND, + pct: 250, + mat: 10000_00, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 3 * MILLION, + clip_buf: 120_00, + clip_tail: 140 minutes, + clip_cusp: 40_00, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["BAL-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 10 * THOUSAND, + pct: 100, + mat: 230000, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 3 * MILLION, + clip_buf: 13000, + clip_tail: 140 minutes, + clip_cusp: 4000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["YFI-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 15 * THOUSAND, + pct: 150, + mat: 10000_00, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 1 * MILLION, + clip_buf: 130_00, + clip_tail: 140 minutes, + clip_cusp: 40_00, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["GUSD-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 15 * THOUSAND, + pct: 100, + mat: 150000, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 300_000, + clip_buf: 100_00, + clip_tail: 720 minutes, + clip_cusp: 99_00, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 9500, + calc_tau: 4_320_000, + calc_step: 0, + calc_cut: 0, + offboarding: true + }); + afterSpell.collaterals["UNI-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 15 * THOUSAND, + pct: 300, + mat: 1300_00, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 5 * MILLION, + clip_buf: 13000, + clip_tail: 140 minutes, + clip_cusp: 4000, + clip_chip: 10, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["RENBTC-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 15 * THOUSAND, + pct: 225, + mat: 5000_00, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 350 * THOUSAND, + clip_buf: 120_00, + clip_tail: 140 minutes, + clip_cusp: 40_00, + clip_chip: 10, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["AAVE-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 10 * THOUSAND, + pct: 100, + mat: 210000, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 5 * MILLION, + clip_buf: 13000, + clip_tail: 140 minutes, + clip_cusp: 4000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["UNIV2DAIETH-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 60 * THOUSAND, + pct: 100, + mat: 2000_00, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 5 * MILLION, + clip_buf: 11500, + clip_tail: 215 minutes, + clip_cusp: 6000, + clip_chip: 10, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 7000, + calc_tau: 0, + calc_step: 125, + calc_cut: 9950, + offboarding: true + }); + afterSpell.collaterals["PSM-USDC-A"] = CollateralValues({ + aL_enabled: true, + aL_line: 2_500 * MILLION, + aL_gap: 200 * MILLION, + aL_ttl: 12 hours, + line: 0, + dust: 0, + pct: 0, + mat: 10000, + liqType: "clip", + liqOn: false, + chop: 1300, + dog_hole: 0, + clip_buf: 10500, + clip_tail: 220 minutes, + clip_cusp: 9000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 0, + cm_tolerance: 9500, + calc_tau: 0, + calc_step: 120, + calc_cut: 9990, + offboarding: false + }); + afterSpell.collaterals["LITE-PSM-USDC-A"] = CollateralValues({ + aL_enabled: true, + aL_line: 7_500 * MILLION, + aL_gap: 200 * MILLION, + aL_ttl: 12 hours, + line: 0, + dust: 0, + pct: 0, + mat: 100_00, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["UNIV2WBTCETH-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 25 * THOUSAND, + pct: 200, + mat: 2400_00, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 5 * MILLION, + clip_buf: 13000, + clip_tail: 200 minutes, + clip_cusp: 4000, + clip_chip: 10, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 130, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["UNIV2USDCETH-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 60 * THOUSAND, + pct: 150, + mat: 10000_00, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 5 * MILLION, + clip_buf: 11500, + clip_tail: 215 minutes, + clip_cusp: 6000, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 7000, + calc_tau: 0, + calc_step: 125, + calc_cut: 9950, + offboarding: true + }); + afterSpell.collaterals["UNIV2DAIUSDC-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 15 * THOUSAND, + pct: 2, + mat: 10200, + liqType: "clip", + liqOn: false, + chop: 1300, + dog_hole: 0, + clip_buf: 10500, + clip_tail: 220 minutes, + clip_cusp: 9000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 0, + cm_tolerance: 9500, + calc_tau: 0, + calc_step: 120, + calc_cut: 9990, + offboarding: false + }); + afterSpell.collaterals["UNIV2ETHUSDT-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 10 * THOUSAND, + pct: 200, + mat: 14000, + liqType: "clip", + liqOn: true, + chop: 1300, + dog_hole: 5 * MILLION, + clip_buf: 11500, + clip_tail: 215 minutes, + clip_cusp: 6000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 1, + cm_tolerance: 7000, + calc_tau: 0, + calc_step: 125, + calc_cut: 9950, + offboarding: false + }); + afterSpell.collaterals["UNIV2LINKETH-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 10 * THOUSAND, + pct: 300, + mat: 160000, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 3 * MILLION, + clip_buf: 13000, + clip_tail: 200 minutes, + clip_cusp: 4000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 130, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["UNIV2UNIETH-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 25 * THOUSAND, + pct: 400, + mat: 16000, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 3 * MILLION, + clip_buf: 13000, + clip_tail: 200 minutes, + clip_cusp: 4000, + clip_chip: 10, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 130, + calc_cut: 9900, + offboarding: false + }); + afterSpell.collaterals["UNIV2WBTCDAI-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 60 * THOUSAND, + pct: 0, + mat: 800_00, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 5 * MILLION, + clip_buf: 11500, + clip_tail: 215 minutes, + clip_cusp: 6000, + clip_chip: 10, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 7000, + calc_tau: 0, + calc_step: 125, + calc_cut: 9950, + offboarding: true + }); + afterSpell.collaterals["UNIV2AAVEETH-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 10 * THOUSAND, + pct: 300, + mat: 40000, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 3 * MILLION, + clip_buf: 13000, + clip_tail: 200 minutes, + clip_cusp: 4000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 130, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["UNIV2DAIUSDT-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 10 * THOUSAND, + pct: 200, + mat: 12500, + liqType: "clip", + liqOn: true, + chop: 1300, + dog_hole: 5 * MILLION, + clip_buf: 10500, + clip_tail: 220 minutes, + clip_cusp: 9000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 1, + cm_tolerance: 9500, + calc_tau: 0, + calc_step: 120, + calc_cut: 9990, + offboarding: false + }); + afterSpell.collaterals["RWA001-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 15 * MILLION, + dust: 0, + pct: 900, + mat: 10000, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["RWA002-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 50 * MILLION, + dust: 0, + pct: 7_00, + mat: 100_00, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["RWA003-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0 * MILLION, + aL_gap: 0 * MILLION, + aL_ttl: 0, + line: 0, + dust: 0, + pct: 600, + mat: 10500, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["RWA004-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0 * MILLION, + aL_gap: 0 * MILLION, + aL_ttl: 0, + line: 0, + dust: 0, + pct: 700, + mat: 11000, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["RWA005-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0 * MILLION, + aL_gap: 0 * MILLION, + aL_ttl: 0, + line: 0, + dust: 0, + pct: 450, + mat: 10500, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["RWA006-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0 * MILLION, + aL_gap: 0 * MILLION, + aL_ttl: 0, + line: 0 * MILLION, + dust: 0, + pct: 200, + mat: 10000, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["RWA007-A"] = CollateralValues({ + aL_enabled: true, + aL_line: 3 * BILLION, + aL_gap: 50 * MILLION, + aL_ttl: 24 hours, + line: 0, + dust: 0, + pct: 0, + mat: 10000, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["RWA008-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 0, + pct: 5, + mat: 10000, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["RWA009-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 100_000_000, + dust: 0, + pct: 0, + mat: 10000, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["RWA010-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 0, + pct: 4_00, + mat: 100_00, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["RWA011-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 0, + pct: 4_00, + mat: 100_00, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["RWA012-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 80_000_000, + dust: 0, + pct: 4_00, + mat: 100_00, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["RWA013-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 70_000_000, + dust: 0, + pct: 4_00, + mat: 100_00, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["RWA014-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 1_500 * MILLION, + dust: 0, + pct: 0, + mat: 100_00, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["RWA015-A"] = CollateralValues({ + aL_enabled: true, + aL_line: 3_000_000_000, + aL_gap: 50_000_000, + aL_ttl: 24 hours, + line: 0, + dust: 0, + pct: 0, + mat: 100_00, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["MATIC-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 15 * THOUSAND, + pct: 300, + mat: 10000_00, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 3 * MILLION, + clip_buf: 120_00, + clip_tail: 140 minutes, + clip_cusp: 40_00, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["PSM-PAX-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 0, + pct: 0, + mat: 10000, + liqType: "clip", + liqOn: false, + chop: 1300, + dog_hole: 0, + clip_buf: 10500, + clip_tail: 220 minutes, + clip_cusp: 9000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 0, + cm_tolerance: 9500, + calc_tau: 0, + calc_step: 120, + calc_cut: 9990, + offboarding: true + }); + afterSpell.collaterals["GUNIV3DAIUSDC1-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 15 * THOUSAND, + pct: 2, + mat: 10200, + liqType: "clip", + liqOn: false, + chop: 1300, + dog_hole: 5 * MILLION, + clip_buf: 10500, + clip_tail: 220 minutes, + clip_cusp: 9000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 0, + cm_tolerance: 9500, + calc_tau: 0, + calc_step: 120, + calc_cut: 9990, + offboarding: false + }); + afterSpell.collaterals["WSTETH-A"] = CollateralValues({ + aL_enabled: true, + aL_line: 750 * MILLION, + aL_gap: 30 * MILLION, + aL_ttl: 12 hours, + line: 0, + dust: 7_500, + pct: 7_25, + mat: 150_00, + liqType: "clip", + liqOn: true, + chop: 1300, + dog_hole: 30 * MILLION, + clip_buf: 110_00, + clip_tail: 7_200, + clip_cusp: 45_00, + clip_chip: 10, + clip_tip: 250, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: false + }); + afterSpell.collaterals["WSTETH-B"] = CollateralValues({ + aL_enabled: true, + aL_line: 1 * BILLION, + aL_gap: 45 * MILLION, + aL_ttl: 12 hours, + line: 0, + dust: 3_500, + pct: 7_00, + mat: 175_00, + liqType: "clip", + liqOn: true, + chop: 1300, + dog_hole: 20 * MILLION, + clip_buf: 110_00, + clip_tail: 7_200, + clip_cusp: 45_00, + clip_chip: 10, + clip_tip: 250, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: false + }); + afterSpell.collaterals["DIRECT-AAVEV2-DAI"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 0, + pct: 0, + mat: 10000, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["DIRECT-COMPV2-DAI"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 0, + pct: 0, + mat: 10000, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["PSM-GUSD-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 0, + pct: 0, + mat: 10000, + liqType: "clip", + liqOn: false, + chop: 1300, + dog_hole: 0, + clip_buf: 10500, + clip_tail: 220 minutes, + clip_cusp: 9000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 0, + cm_tolerance: 9500, + calc_tau: 0, + calc_step: 120, + calc_cut: 9990, + offboarding: false + }); + afterSpell.collaterals["GUNIV3DAIUSDC2-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 15 * THOUSAND, + pct: 6, + mat: 10200, + liqType: "clip", + liqOn: false, + chop: 1300, + dog_hole: 5 * MILLION, + clip_buf: 10500, + clip_tail: 220 minutes, + clip_cusp: 9000, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 0, + cm_tolerance: 9500, + calc_tau: 0, + calc_step: 120, + calc_cut: 9990, + offboarding: false + }); + afterSpell.collaterals["CRVV1ETHSTETH-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 25 * THOUSAND, + pct: 4_24, + mat: 10000_00, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 5 * MILLION, + clip_buf: 110_00, + clip_tail: 120 minutes, + clip_cusp: 45_00, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 5000, + calc_tau: 0, + calc_step: 90, + calc_cut: 9900, + offboarding: true + }); + afterSpell.collaterals["TELEPORT-FW-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 2_100_000, + dust: 0, + pct: 0, + mat: 0, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["RETH-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 7_500, + pct: 5_25, + mat: 10000_00, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 2 * MILLION, + clip_buf: 110_00, + clip_tail: 120 minutes, + clip_cusp: 45_00, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 1, + cm_tolerance: 50_00, + calc_tau: 0, + calc_step: 90, + calc_cut: 99_00, + offboarding: true + }); + afterSpell.collaterals["GNO-A"] = CollateralValues({ + aL_enabled: false, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 100 * THOUSAND, + pct: 4_90, + mat: 350_00, + liqType: "clip", + liqOn: true, + chop: 13_00, + dog_hole: 2 * MILLION, + clip_buf: 120_00, + clip_tail: 140 minutes, + clip_cusp: 25_00, + clip_chip: 10, + clip_tip: 250, + clipper_mom: 1, + cm_tolerance: 50_00, + calc_tau: 0, + calc_step: 60, + calc_cut: 99_00, + offboarding: false + }); + afterSpell.collaterals["DIRECT-SPARK-DAI"] = CollateralValues({ + aL_enabled: true, + aL_line: 2500 * MILLION, + aL_gap: 40 * MILLION, + aL_ttl: 24 hours, + line: 0, + dust: 0, + pct: 0, + mat: 10000, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + afterSpell.collaterals["DIRECT-SPARK-MORPHO-DAI"] = CollateralValues({ + aL_enabled: true, + aL_line: 1 * BILLION, + aL_gap: 100 * MILLION, + aL_ttl: 24 hours, + line: 0, + dust: 0, + pct: 0, + mat: 10000, + liqType: "", + liqOn: false, + chop: 0, + dog_hole: 0, + clip_buf: 0, + clip_tail: 0, + clip_cusp: 0, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 0, + calc_tau: 0, + calc_step: 0, + calc_cut: 0, + offboarding: false + }); + } +} diff --git a/archive/2024-09-27-DssSpell/test/rates.sol b/archive/2024-09-27-DssSpell/test/rates.sol new file mode 100644 index 000000000..3d20b1e22 --- /dev/null +++ b/archive/2024-09-27-DssSpell/test/rates.sol @@ -0,0 +1,472 @@ +// SPDX-FileCopyrightText: © 2020 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity 0.8.16; + +contract Rates { + + mapping (uint256 => uint256) public rates; + + constructor() { + rates[ 0] = 1000000000000000000000000000; + rates[ 1] = 1000000000003170820659990704; + rates[ 2] = 1000000000006341324285480111; + rates[ 5] = 1000000000015850933588756013; + rates[ 6] = 1000000000019020169709960675; + rates[ 10] = 1000000000031693947650284507; + rates[ 25] = 1000000000079175551708715274; + rates[ 50] = 1000000000158153903837946257; + rates[ 75] = 1000000000236936036262880196; + rates[ 100] = 1000000000315522921573372069; + rates[ 125] = 1000000000393915525145987602; + rates[ 150] = 1000000000472114805215157978; + rates[ 175] = 1000000000550121712943459312; + rates[ 200] = 1000000000627937192491029810; + rates[ 225] = 1000000000705562181084137268; + rates[ 250] = 1000000000782997609082909351; + rates[ 275] = 1000000000860244400048238898; + rates[ 300] = 1000000000937303470807876289; + rates[ 319] = 1000000000995743377573746041; + rates[ 325] = 1000000001014175731521720677; + rates[ 333] = 1000000001038735548426731741; + rates[ 344] = 1000000001072474267302354182; + rates[ 345] = 1000000001075539644270067964; + rates[ 349] = 1000000001087798189708544327; + rates[ 350] = 1000000001090862085746321732; + rates[ 358] = 1000000001115362602336059074; + rates[ 370] = 1000000001152077919467240095; + rates[ 374] = 1000000001164306917698440949; + rates[ 375] = 1000000001167363430498603315; + rates[ 394] = 1000000001225381266358479708; + rates[ 400] = 1000000001243680656318820312; + rates[ 408] = 1000000001268063427242299977; + rates[ 420] = 1000000001304602465690389263; + rates[ 424] = 1000000001316772794769098706; + rates[ 425] = 1000000001319814647332759691; + rates[ 450] = 1000000001395766281313196627; + rates[ 475] = 1000000001471536429740616381; + rates[ 490] = 1000000001516911765932351183; + rates[ 500] = 1000000001547125957863212448; + rates[ 525] = 1000000001622535724756171269; + rates[ 544] = 1000000001679727448331902751; + rates[ 550] = 1000000001697766583380253701; + rates[ 554] = 1000000001709786974743980088; + rates[ 555] = 1000000001712791360746325100; + rates[ 561] = 1000000001730811701469052906; + rates[ 569] = 1000000001754822903403114680; + rates[ 575] = 1000000001772819380639683201; + rates[ 579] = 1000000001784811360376128985; + rates[ 580] = 1000000001787808646832390371; + rates[ 586] = 1000000001805786418479434295; + rates[ 600] = 1000000001847694957439350562; + rates[ 616] = 1000000001895522707144698926; + rates[ 619] = 1000000001904482384730282575; + rates[ 625] = 1000000001922394148741344865; + rates[ 629] = 1000000001934329706253075715; + rates[ 630] = 1000000001937312893803622469; + rates[ 636] = 1000000001955206127822364746; + rates[ 640] = 1000000001967129343622160710; + rates[ 641] = 1000000001970109447195256751; + rates[ 643] = 1000000001976068814257775407; + rates[ 645] = 1000000001982027061559507021; + rates[ 649] = 1000000001993940198563273844; + rates[ 650] = 1000000001996917783620820123; + rates[ 665] = 1000000002041548040175924154; + rates[ 668] = 1000000002050466558600245373; + rates[ 670] = 1000000002056410844314321266; + rates[ 674] = 1000000002068296073857195778; + rates[ 675] = 1000000002071266685321207000; + rates[ 691] = 1000000002118758660201099744; + rates[ 700] = 1000000002145441671308778766; + rates[ 716] = 1000000002192822766493423465; + rates[ 718] = 1000000002198740428552847104; + rates[ 720] = 1000000002204656986467871801; + rates[ 724] = 1000000002216486791512316847; + rates[ 725] = 1000000002219443553326580536; + rates[ 750] = 1000000002293273137447730714; + rates[ 775] = 1000000002366931224128103346; + rates[ 800] = 1000000002440418608258400030; + rates[ 825] = 1000000002513736079215619839; + rates[ 850] = 1000000002586884420913935572; + rates[ 875] = 1000000002659864411854984565; + rates[ 900] = 1000000002732676825177582095; + rates[ 925] = 1000000002805322428706865331; + rates[ 950] = 1000000002877801985002875644; + rates[ 975] = 1000000002950116251408586949; + rates[ 1000] = 1000000003022265980097387650; + rates[ 1025] = 1000000003094251918120023627; + rates[ 1050] = 1000000003166074807451009595; + rates[ 1075] = 1000000003237735385034516037; + rates[ 1100] = 1000000003309234382829738808; + rates[ 1125] = 1000000003380572527855758393; + rates[ 1150] = 1000000003451750542235895695; + rates[ 1175] = 1000000003522769143241571114; + rates[ 1200] = 1000000003593629043335673582; + rates[ 1225] = 1000000003664330950215446102; + rates[ 1250] = 1000000003734875566854894261; + rates[ 1275] = 1000000003805263591546724039; + rates[ 1300] = 1000000003875495717943815211; + rates[ 1325] = 1000000003945572635100236468; + rates[ 1350] = 1000000004015495027511808328; + rates[ 1375] = 1000000004085263575156219812; + rates[ 1400] = 1000000004154878953532704765; + rates[ 1425] = 1000000004224341833701283597; + rates[ 1450] = 1000000004293652882321576158; + rates[ 1475] = 1000000004362812761691191350; + rates[ 1500] = 1000000004431822129783699001; + rates[ 1525] = 1000000004500681640286189459; + rates[ 1550] = 1000000004569391942636426248; + rates[ 1575] = 1000000004637953682059597074; + rates[ 1600] = 1000000004706367499604668374; + rates[ 1625] = 1000000004774634032180348552; + rates[ 1650] = 1000000004842753912590664903; + rates[ 1675] = 1000000004910727769570159235; + rates[ 1700] = 1000000004978556227818707070; + rates[ 1725] = 1000000005046239908035965222; + rates[ 1750] = 1000000005113779426955452540; + rates[ 1775] = 1000000005181175397378268462; + rates[ 1800] = 1000000005248428428206454010; + rates[ 1825] = 1000000005315539124475999751; + rates[ 1850] = 1000000005382508087389505206; + rates[ 1875] = 1000000005449335914348494113; + rates[ 1900] = 1000000005516023198985389892; + rates[ 1925] = 1000000005582570531195155575; + rates[ 1950] = 1000000005648978497166602432; + rates[ 1975] = 1000000005715247679413371444; + rates[ 2000] = 1000000005781378656804591712; + rates[ 2025] = 1000000005847372004595219844; + rates[ 2050] = 1000000005913228294456064283; + rates[ 2075] = 1000000005978948094503498507; + rates[ 2100] = 1000000006044531969328866955; + rates[ 2125] = 1000000006109980480027587488; + rates[ 2150] = 1000000006175294184227954125; + rates[ 2175] = 1000000006240473636119643770; + rates[ 2200] = 1000000006305519386481930552; + rates[ 2225] = 1000000006370431982711611382; + rates[ 2250] = 1000000006435211968850646270; + rates[ 2275] = 1000000006499859885613516871; + rates[ 2300] = 1000000006564376270414306730; + rates[ 2325] = 1000000006628761657393506584; + rates[ 2350] = 1000000006693016577444548094; + rates[ 2375] = 1000000006757141558240069277; + rates[ 2400] = 1000000006821137124257914908; + rates[ 2425] = 1000000006885003796806875073; + rates[ 2450] = 1000000006948742094052165050; + rates[ 2475] = 1000000007012352531040649627; + rates[ 2500] = 1000000007075835619725814915; + rates[ 2525] = 1000000007139191868992490695; + rates[ 2550] = 1000000007202421784681326287; + rates[ 2575] = 1000000007265525869613022867; + rates[ 2600] = 1000000007328504623612325153; + rates[ 2625] = 1000000007391358543531775311; + rates[ 2650] = 1000000007454088123275231904; + rates[ 2675] = 1000000007516693853821156670; + rates[ 2700] = 1000000007579176223245671878; + rates[ 2725] = 1000000007641535716745390957; + rates[ 2750] = 1000000007703772816660025079; + rates[ 2775] = 1000000007765888002494768329; + rates[ 2800] = 1000000007827881750942464045; + rates[ 2825] = 1000000007889754535905554913; + rates[ 2850] = 1000000007951506828517819323; + rates[ 2875] = 1000000008013139097165896490; + rates[ 2900] = 1000000008074651807510602798; + rates[ 2925] = 1000000008136045422508041783; + rates[ 2950] = 1000000008197320402430510158; + rates[ 2975] = 1000000008258477204887202245; + rates[ 3000] = 1000000008319516284844715115; + rates[ 3025] = 1000000008380438094647356774; + rates[ 3050] = 1000000008441243084037259619; + rates[ 3075] = 1000000008501931700174301437; + rates[ 3100] = 1000000008562504387655836125; + rates[ 3125] = 1000000008622961588536236324; + rates[ 3150] = 1000000008683303742346250114; + rates[ 3175] = 1000000008743531286112173869; + rates[ 3200] = 1000000008803644654374843395; + rates[ 3225] = 1000000008863644279208445392; + rates[ 3250] = 1000000008923530590239151272; + rates[ 3275] = 1000000008983304014663575373; + rates[ 3300] = 1000000009042964977267059505; + rates[ 3325] = 1000000009102513900441785827; + rates[ 3350] = 1000000009161951204204719966; + rates[ 3375] = 1000000009221277306215386279; + rates[ 3400] = 1000000009280492621793477151; + rates[ 3425] = 1000000009339597563936298181; + rates[ 3450] = 1000000009398592543336051086; + rates[ 3475] = 1000000009457477968396956129; + rates[ 3500] = 1000000009516254245252215861; + rates[ 3525] = 1000000009574921777780821942; + rates[ 3550] = 1000000009633480967624206760; + rates[ 3575] = 1000000009691932214202741592; + rates[ 3600] = 1000000009750275914732082986; + rates[ 3625] = 1000000009808512464239369028; + rates[ 3650] = 1000000009866642255579267166; + rates[ 3675] = 1000000009924665679449875210; + rates[ 3700] = 1000000009982583124408477109; + rates[ 3725] = 1000000010040394976887155106; + rates[ 3750] = 1000000010098101621208259840; + rates[ 3775] = 1000000010155703439599739931; + rates[ 3800] = 1000000010213200812210332586; + rates[ 3825] = 1000000010270594117124616733; + rates[ 3850] = 1000000010327883730377930177; + rates[ 3875] = 1000000010385070025971152244; + rates[ 3900] = 1000000010442153375885353361; + rates[ 3925] = 1000000010499134150096313024; + rates[ 3950] = 1000000010556012716588907553; + rates[ 3975] = 1000000010612789441371369043; + rates[ 4000] = 1000000010669464688489416886; + rates[ 4025] = 1000000010726038820040263233; + rates[ 4050] = 1000000010782512196186493739; + rates[ 4075] = 1000000010838885175169824929; + rates[ 4100] = 1000000010895158113324739488; + rates[ 4125] = 1000000010951331365092000772; + rates[ 4150] = 1000000011007405283032047846; + rates[ 4175] = 1000000011063380217838272275; + rates[ 4200] = 1000000011119256518350177948; + rates[ 4225] = 1000000011175034531566425160; + rates[ 4250] = 1000000011230714602657760176; + rates[ 4275] = 1000000011286297074979831462; + rates[ 4300] = 1000000011341782290085893805; + rates[ 4325] = 1000000011397170587739401474; + rates[ 4350] = 1000000011452462305926491579; + rates[ 4375] = 1000000011507657780868358802; + rates[ 4400] = 1000000011562757347033522598; + rates[ 4425] = 1000000011617761337149988016; + rates[ 4450] = 1000000011672670082217301219; + rates[ 4475] = 1000000011727483911518500818; + rates[ 4500] = 1000000011782203152631966084; + rates[ 4525] = 1000000011836828131443163102; + rates[ 4550] = 1000000011891359172156289942; + rates[ 4575] = 1000000011945796597305821848; + rates[ 4600] = 1000000012000140727767957524; + rates[ 4625] = 1000000012054391882771967477; + rates[ 4650] = 1000000012108550379911445472; + rates[ 4675] = 1000000012162616535155464050; + rates[ 4700] = 1000000012216590662859635112; + rates[ 4725] = 1000000012270473075777076530; + rates[ 4750] = 1000000012324264085069285747; + rates[ 4775] = 1000000012377964000316921287; + rates[ 4800] = 1000000012431573129530493155; + rates[ 4825] = 1000000012485091779160962996; + rates[ 4850] = 1000000012538520254110254976; + rates[ 4875] = 1000000012591858857741678240; + rates[ 4900] = 1000000012645107891890261872; + rates[ 4925] = 1000000012698267656873003228; + rates[ 4950] = 1000000012751338451499030498; + rates[ 4975] = 1000000012804320573079680371; + rates[ 5000] = 1000000012857214317438491659; + rates[ 5025] = 1000000012910019978921115695; + rates[ 5050] = 1000000012962737850405144363; + rates[ 5075] = 1000000013015368223309856554; + rates[ 5100] = 1000000013067911387605883890; + rates[ 5125] = 1000000013120367631824796485; + rates[ 5150] = 1000000013172737243068609553; + rates[ 5175] = 1000000013225020507019211652; + rates[ 5200] = 1000000013277217707947715318; + rates[ 5225] = 1000000013329329128723730871; + rates[ 5250] = 1000000013381355050824564143; + rates[ 5275] = 1000000013433295754344338876; + rates[ 5300] = 1000000013485151518003044532; + rates[ 5325] = 1000000013536922619155510237; + rates[ 5350] = 1000000013588609333800305597; + rates[ 5375] = 1000000013640211936588569081; + rates[ 5400] = 1000000013691730700832764691; + rates[ 5425] = 1000000013743165898515367617; + rates[ 5450] = 1000000013794517800297479554; + rates[ 5475] = 1000000013845786675527374380; + rates[ 5500] = 1000000013896972792248974855; + rates[ 5525] = 1000000013948076417210261020; + rates[ 5550] = 1000000013999097815871610946; + rates[ 5575] = 1000000014050037252414074493; + rates[ 5600] = 1000000014100894989747580713; + rates[ 5625] = 1000000014151671289519079548; + rates[ 5650] = 1000000014202366412120618444; + rates[ 5675] = 1000000014252980616697354502; + rates[ 5700] = 1000000014303514161155502800; + rates[ 5725] = 1000000014353967302170221464; + rates[ 5750] = 1000000014404340295193434124; + rates[ 5775] = 1000000014454633394461590334; + rates[ 5800] = 1000000014504846853003364537; + rates[ 5825] = 1000000014554980922647294184; + rates[ 5850] = 1000000014605035854029357558; + rates[ 5875] = 1000000014655011896600491882; + rates[ 5900] = 1000000014704909298634052283; + rates[ 5925] = 1000000014754728307233212158; + rates[ 5950] = 1000000014804469168338305494; + rates[ 5975] = 1000000014854132126734111701; + rates[ 6000] = 1000000014903717426057083481; + rates[ 6025] = 1000000014953225308802518272; + rates[ 6050] = 1000000015002656016331673799; + rates[ 6075] = 1000000015052009788878828253; + rates[ 6100] = 1000000015101286865558285606; + rates[ 6125] = 1000000015150487484371326590; + rates[ 6150] = 1000000015199611882213105818; + rates[ 6175] = 1000000015248660294879495575; + rates[ 6200] = 1000000015297632957073876761; + rates[ 6225] = 1000000015346530102413877471; + rates[ 6250] = 1000000015395351963438059699; + rates[ 6275] = 1000000015444098771612554646; + rates[ 6300] = 1000000015492770757337647112; + rates[ 6325] = 1000000015541368149954309419; + rates[ 6350] = 1000000015589891177750685357; + rates[ 6375] = 1000000015638340067968524580; + rates[ 6400] = 1000000015686715046809567945; + rates[ 6425] = 1000000015735016339441884188; + rates[ 6450] = 1000000015783244170006158447; + rates[ 6475] = 1000000015831398761621933006; + rates[ 6500] = 1000000015879480336393800741; + rates[ 6525] = 1000000015927489115417551681; + rates[ 6550] = 1000000015975425318786273105; + rates[ 6575] = 1000000016023289165596403599; + rates[ 6600] = 1000000016071080873953741499; + rates[ 6625] = 1000000016118800660979408115; + rates[ 6650] = 1000000016166448742815766155; + rates[ 6675] = 1000000016214025334632293755; + rates[ 6700] = 1000000016261530650631414500; + rates[ 6725] = 1000000016308964904054283846; + rates[ 6750] = 1000000016356328307186532328; + rates[ 6775] = 1000000016403621071363965932; + rates[ 6800] = 1000000016450843406978224029; + rates[ 6825] = 1000000016497995523482395247; + rates[ 6850] = 1000000016545077629396591637; + rates[ 6875] = 1000000016592089932313481533; + rates[ 6900] = 1000000016639032638903781446; + rates[ 6925] = 1000000016685905954921707380; + rates[ 6950] = 1000000016732710085210385903; + rates[ 6975] = 1000000016779445233707225354; + rates[ 7000] = 1000000016826111603449247521; + rates[ 7025] = 1000000016872709396578380147; + rates[ 7050] = 1000000016919238814346710603; + rates[ 7075] = 1000000016965700057121701072; + rates[ 7100] = 1000000017012093324391365593; + rates[ 7125] = 1000000017058418814769409273; + rates[ 7150] = 1000000017104676726000330021; + rates[ 7175] = 1000000017150867254964483131; + rates[ 7200] = 1000000017196990597683109018; + rates[ 7225] = 1000000017243046949323324453; + rates[ 7250] = 1000000017289036504203077600; + rates[ 7275] = 1000000017334959455796067168; + rates[ 7300] = 1000000017380815996736626004; + rates[ 7325] = 1000000017426606318824569415; + rates[ 7350] = 1000000017472330613030008543; + rates[ 7375] = 1000000017517989069498129080; + rates[ 7400] = 1000000017563581877553935633; + rates[ 7425] = 1000000017609109225706962029; + rates[ 7450] = 1000000017654571301655947851; + rates[ 7475] = 1000000017699968292293481503; + rates[ 7500] = 1000000017745300383710610088; + rates[ 7525] = 1000000017790567761201416374; + rates[ 7550] = 1000000017835770609267563142; + rates[ 7575] = 1000000017880909111622805195; + rates[ 7600] = 1000000017925983451197469286; + rates[ 7625] = 1000000017970993810142902264; + rates[ 7650] = 1000000018015940369835887686; + rates[ 7675] = 1000000018060823310883031179; + rates[ 7700] = 1000000018105642813125114801; + rates[ 7725] = 1000000018150399055641420686; + rates[ 7750] = 1000000018195092216754024201; + rates[ 7775] = 1000000018239722474032056911; + rates[ 7800] = 1000000018284290004295939569; + rates[ 7825] = 1000000018328794983621585414; + rates[ 7850] = 1000000018373237587344574003; + rates[ 7875] = 1000000018417617990064295840; + rates[ 7900] = 1000000018461936365648068049; + rates[ 7925] = 1000000018506192887235221305; + rates[ 7950] = 1000000018550387727241158310; + rates[ 7975] = 1000000018594521057361384012; + rates[ 8000] = 1000000018638593048575507813; + rates[ 8025] = 1000000018682603871151218019; + rates[ 8050] = 1000000018726553694648228732; + rates[ 8075] = 1000000018770442687922199432; + rates[ 8100] = 1000000018814271019128627481; + rates[ 8125] = 1000000018858038855726713746; + rates[ 8150] = 1000000018901746364483201594; + rates[ 8175] = 1000000018945393711476189463; + rates[ 8200] = 1000000018988981062098917230; + rates[ 8225] = 1000000019032508581063526585; + rates[ 8250] = 1000000019075976432404795643; + rates[ 8275] = 1000000019119384779483847985; + rates[ 8300] = 1000000019162733784991836346; + rates[ 8325] = 1000000019206023610953601168; + rates[ 8350] = 1000000019249254418731304205; + rates[ 8375] = 1000000019292426369028037391; + rates[ 8400] = 1000000019335539621891407188; + rates[ 8425] = 1000000019378594336717094581; + rates[ 8450] = 1000000019421590672252390959; + rates[ 8475] = 1000000019464528786599710033; + rates[ 8500] = 1000000019507408837220076029; + rates[ 8525] = 1000000019550230980936588320; + rates[ 8550] = 1000000019592995373937862689; + rates[ 8575] = 1000000019635702171781449432; + rates[ 8600] = 1000000019678351529397228463; + rates[ 8625] = 1000000019720943601090781625; + rates[ 8650] = 1000000019763478540546742376; + rates[ 8675] = 1000000019805956500832123050; + rates[ 8700] = 1000000019848377634399619849; + rates[ 8725] = 1000000019890742093090895767; + rates[ 8750] = 1000000019933050028139841613; + rates[ 8775] = 1000000019975301590175815296; + rates[ 8800] = 1000000020017496929226859581; + rates[ 8825] = 1000000020059636194722898437; + rates[ 8850] = 1000000020101719535498912200; + rates[ 8875] = 1000000020143747099798091677; + rates[ 8900] = 1000000020185719035274971385; + rates[ 8925] = 1000000020227635488998542076; + rates[ 8950] = 1000000020269496607455342719; + rates[ 8975] = 1000000020311302536552532106; + rates[ 9000] = 1000000020353053421620940223; + rates[ 9025] = 1000000020394749407418099573; + rates[ 9050] = 1000000020436390638131256590; + rates[ 9075] = 1000000020477977257380363298; + rates[ 9100] = 1000000020519509408221049399; + rates[ 9125] = 1000000020560987233147574896; + rates[ 9150] = 1000000020602410874095763456; + rates[ 9175] = 1000000020643780472445916617; + rates[ 9200] = 1000000020685096169025709028; + rates[ 9225] = 1000000020726358104113064837; + rates[ 9250] = 1000000020767566417439015395; + rates[ 9275] = 1000000020808721248190538424; + rates[ 9300] = 1000000020849822735013378765; + rates[ 9325] = 1000000020890871016014850891; + rates[ 9350] = 1000000020931866228766623286; + rates[ 9375] = 1000000020972808510307484860; + rates[ 9400] = 1000000021013697997146093523; + rates[ 9425] = 1000000021054534825263707061; + rates[ 9450] = 1000000021095319130116896449; + rates[ 9475] = 1000000021136051046640241741; + rates[ 9500] = 1000000021176730709249010667; + rates[ 9525] = 1000000021217358251841820063; + rates[ 9550] = 1000000021257933807803280285; + rates[ 9575] = 1000000021298457510006622716; + rates[ 9600] = 1000000021338929490816310513; + rates[ 9625] = 1000000021379349882090632705; + rates[ 9650] = 1000000021419718815184281790; + rates[ 9675] = 1000000021460036420950914938; + rates[ 9700] = 1000000021500302829745698932; + rates[ 9725] = 1000000021540518171427838973; + rates[ 9750] = 1000000021580682575363091474; + rates[ 9775] = 1000000021620796170426260951; + rates[ 9800] = 1000000021660859085003681151; + rates[ 9825] = 1000000021700871446995680519; + rates[ 9850] = 1000000021740833383819032127; + rates[ 9875] = 1000000021780745022409388199; + rates[ 9900] = 1000000021820606489223699321; + rates[ 9925] = 1000000021860417910242618463; + rates[ 9950] = 1000000021900179410972889943; + rates[ 9975] = 1000000021939891116449723415; + rates[10000] = 1000000021979553151239153027; + } + +} diff --git a/archive/2024-09-27-DssSpell/test/starknet.t.sol b/archive/2024-09-27-DssSpell/test/starknet.t.sol new file mode 100644 index 000000000..eacf71a5b --- /dev/null +++ b/archive/2024-09-27-DssSpell/test/starknet.t.sol @@ -0,0 +1,242 @@ +// SPDX-FileCopyrightText: © 2022 Dai Foundation +// SPDX-License-Identifier: AGPL-3.0-or-later +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +pragma solidity 0.8.16; + +import "../DssSpell.t.base.sol"; + +contract ConfigStarknet { + StarknetValues starknetValues; + + struct StarknetValues { + bytes32 l2_spell; + address core_implementation; + uint256 dai_bridge_isOpen; + uint256 dai_bridge_ceiling; + uint256 dai_bridge_maxDeposit; + uint256 l2_dai_bridge; + uint256 l2_gov_relay; + uint256 relay_selector; + } + + function setValues() public { + uint256 WAD = 10 ** 18; + + starknetValues = StarknetValues({ + l2_spell: 0, // Set to zero if no spell is set. + core_implementation: 0x47103A9b801eB6a63555897d399e4b7c1c8Eb5bC, // As of 2024-08-21 + dai_bridge_isOpen: 0, // 1 open, 0 closed + dai_bridge_ceiling: 5_000_000 * WAD, // wei + dai_bridge_maxDeposit: type(uint256).max, // wei + l2_dai_bridge: 0x075ac198e734e289a6892baa8dd14b21095f13bf8401900f5349d5569c3f6e60, + l2_gov_relay: 0x05f4d9b039f82e9a90125fb119ace0531f4936ff2a9a54a8598d49a4cd4bd6db, + relay_selector: 300224956480472355485152391090755024345070441743081995053718200325371913697 // Hardcoded in L1 gov relay, not public + }); + } +} + +interface StarknetEscrowMomLike { + function owner() external returns (address); + function authority() external returns (address); + function escrow() external returns (address); + function token() external returns (address); +} + +interface StarknetEscrowLike { + function wards(address) external returns(uint256); +} + +interface StarknetDaiBridgeLike { + function wards(address) external returns(uint256); + function isOpen() external returns (uint256); + function ceiling() external returns (uint256); + function maxDeposit() external returns (uint256); + function dai() external returns (address); + function starkNet() external returns (address); + function escrow() external returns (address); + function l2DaiBridge() external returns (uint256); +} + +interface StarknetGovRelayLike { + function wards(address) external returns (uint256); + function starkNet() external returns (address); + function l2GovernanceRelay() external returns (uint256); +} + +interface StarknetCoreLike { + function implementation() external returns (address); + function isNotFinalized() external returns (bool); + function l1ToL2Messages(bytes32) external returns (uint256); + function l1ToL2MessageNonce() external returns (uint256); +} + +interface DaiLike { + function allowance(address, address) external view returns (uint256); +} + +contract StarknetTests is DssSpellTestBase, ConfigStarknet { + + event LogMessageToL2( + address indexed fromAddress, + uint256 indexed toAddress, + uint256 indexed selector, + uint256[] payload, + uint256 nonce, + uint256 fee + ); + + constructor() { + setValues(); + } + + function testStarknet() public { + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done()); + + _checkStarknetEscrowMom(); + _checkStarknetEscrow(); + _checkStarknetDaiBridge(); + _checkStarknetGovRelay(); + _checkStarknetCore(); + } + + function testStarknetSpell() public { + + if (starknetValues.l2_spell != bytes32(0)) { + // Ensure the Pause Proxy has some ETH for the Starknet Spell + assertGt(pauseProxy.balance, 0); + _vote(address(spell)); + DssSpell(spell).schedule(); + + vm.warp(DssSpell(spell).nextCastTime()); + + vm.expectEmit(true, true, true, false, addr.addr("STARKNET_CORE")); + emit LogMessageToL2(addr.addr("STARKNET_GOV_RELAY"), starknetValues.l2_gov_relay, starknetValues.relay_selector, _payload(starknetValues.l2_spell), 0, 0); + DssSpell(spell).cast(); + + assertTrue(spell.done()); + + _checkStarknetMessage(starknetValues.l2_spell); + } + } + + function _checkStarknetEscrowMom() internal { + StarknetEscrowMomLike escrowMom = StarknetEscrowMomLike(addr.addr("STARKNET_ESCROW_MOM")); + + assertEq(escrowMom.owner(), addr.addr("MCD_PAUSE_PROXY"), "StarknetTest/pause-proxy-not-owner-on-escrow-mom"); + assertEq(escrowMom.authority(), addr.addr("MCD_ADM"), "StarknetTest/chief-not-authority-on-escrow-mom"); + assertEq(escrowMom.escrow(), addr.addr("STARKNET_ESCROW"), "StarknetTest/unexpected-escrow-on-escrow-mom"); + assertEq(escrowMom.token(), addr.addr("MCD_DAI"), "StarknetTest/unexpected-dai-on-escrow-mom"); + } + + function _checkStarknetEscrow() internal { + StarknetEscrowLike escrow = StarknetEscrowLike(addr.addr("STARKNET_ESCROW")); + + assertEq(escrow.wards(addr.addr("MCD_PAUSE_PROXY")), 1, "StarknetTest/pause-proxy-not-ward-on-escrow"); + assertEq(escrow.wards(addr.addr("MCD_ESM")), 1, "StarknetTest/esm-not-ward-on-escrow"); + assertEq(escrow.wards(addr.addr("STARKNET_ESCROW_MOM")), 1, "StarknetTest/escrow-mom-not-ward-on-escrow"); + + DaiLike dai = DaiLike(addr.addr("MCD_DAI")); + + assertEq(dai.allowance(addr.addr("STARKNET_ESCROW"), addr.addr("STARKNET_DAI_BRIDGE")), type(uint256).max, "StarknetTest/unexpected-escrow-allowance"); + assertEq(dai.allowance(addr.addr("STARKNET_ESCROW"), addr.addr("STARKNET_DAI_BRIDGE_LEGACY")), 0, "StarknetTest/unexpected-legacy-escrow-allowance"); + } + + function _checkStarknetDaiBridge() internal { + StarknetDaiBridgeLike daiBridge = StarknetDaiBridgeLike(addr.addr("STARKNET_DAI_BRIDGE")); + + assertEq(daiBridge.isOpen(), starknetValues.dai_bridge_isOpen, "StarknetTestError/dai-bridge-isOpen-unexpected"); + assertEq(daiBridge.ceiling(), starknetValues.dai_bridge_ceiling, "StarknetTestError/dai-bridge-ceiling-unexpected"); + assertEq(daiBridge.maxDeposit(), starknetValues.dai_bridge_maxDeposit, "StarknetTestError/dai-bridge-maxDeposit-unexpected"); + + assertEq(daiBridge.dai(), addr.addr("MCD_DAI"), "StarknetTest/dai-bridge-dai"); + assertEq(daiBridge.starkNet(), addr.addr("STARKNET_CORE"), "StarknetTest/dai-bridge-core"); + assertEq(daiBridge.escrow(), addr.addr("STARKNET_ESCROW"), "StarknetTest/dai-bridge-escrow"); + + assertEq(daiBridge.wards(addr.addr("MCD_PAUSE_PROXY")), 1, "StarknetTest/pause-proxy-not-ward-on-dai-bridge"); + assertEq(daiBridge.wards(addr.addr("MCD_ESM")), 1, "StarknetTest/esm-not-ward-on-dai-bridge"); + + assertEq(daiBridge.l2DaiBridge(), starknetValues.l2_dai_bridge, "StarknetTest/wrong-l2-dai-bridge-on-dai-bridge"); + } + + function _checkStarknetGovRelay() internal { + StarknetGovRelayLike govRelay = StarknetGovRelayLike(addr.addr("STARKNET_GOV_RELAY")); + + assertEq(govRelay.wards(addr.addr("MCD_PAUSE_PROXY")), 1, "StarknetTest/pause-proxy-not-ward-on-gov-relay"); + assertEq(govRelay.wards(addr.addr("MCD_ESM")), 1, "StarknetTest/esm-not-ward-on-gov-relay"); + + assertEq(govRelay.starkNet(), addr.addr("STARKNET_CORE"), "StarknetTest/unexpected-starknet-core-on-gov-relay"); + assertEq(govRelay.l2GovernanceRelay(), starknetValues.l2_gov_relay, "StarknetTest/unexpected-l2-gov-relay-on-gov-relay"); + } + + function _checkStarknetCore() internal { + StarknetCoreLike core = StarknetCoreLike(addr.addr("STARKNET_CORE")); + + // Checks to see that starknet core implementation matches core + // If the core implementation changes, inspect the new implementation for safety and update the config + // Note: message checks may fail if the message structure changes in the new implementation + assertEq(core.implementation(), starknetValues.core_implementation, _concat("StarknetTest/new-core-implementation-", bytes32(uint256(uint160(core.implementation()))))); + + assertTrue(core.isNotFinalized()); + } + + + function _checkStarknetMessage(bytes32 _spell) internal { + StarknetCoreLike core = StarknetCoreLike(addr.addr("STARKNET_CORE")); + + if (_spell != 0) { + + // Nonce increments each message, back up one + uint256 _nonce = core.l1ToL2MessageNonce() - 1; + + // Hash of message created by Starknet Core + bytes32 _message = _getL1ToL2MsgHash(addr.addr("STARKNET_GOV_RELAY"), starknetValues.l2_gov_relay, starknetValues.relay_selector, _payload(_spell), _nonce); + + // Assert message is scheduled, core returns 0 if not in message array + assertTrue(core.l1ToL2Messages(_message) > 0, "StarknetTest/SpellNotQueued"); + } + } + + function _payload(bytes32 _spell) internal pure returns (uint256[] memory) { + // Payload must be array + uint256[] memory payload_ = new uint256[](1); + payload_[0] = uint256(_spell); + return payload_; + } + + // Modified version of internal getL1ToL2MsgHash in Starknet Core implementation + function _getL1ToL2MsgHash( + address sender, + uint256 toAddress, + uint256 selector, + uint256[] memory payload, + uint256 nonce + ) internal pure returns (bytes32) { + return + keccak256( + abi.encodePacked( + uint256(uint160(sender)), + toAddress, + nonce, + selector, + payload.length, + payload + ) + ); + } +}