diff --git a/archive/2025-11-13-DssSpell/DssSpell.sol b/archive/2025-11-13-DssSpell/DssSpell.sol new file mode 100644 index 00000000..869984db --- /dev/null +++ b/archive/2025-11-13-DssSpell/DssSpell.sol @@ -0,0 +1,229 @@ +// 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 {DssExecLib} from "dss-exec-lib/DssExecLib.sol"; +import {GemAbstract} from "dss-interfaces/ERC/GemAbstract.sol"; +// Note: code matches https://github.com/sky-ecosystem/wh-lz-migration/blob/17397879385d42521b0fe9783046b3cf25a9fec6/deploy/MigrationInit.sol +import {MigrationInit} from "src/dependencies/wh-lz-migration/MigrationInit.sol"; + +interface DaiUsdsLike { + function daiToUsds(address usr, uint256 wad) external; +} + +interface DssLitePsmLike { + function kiss(address usr) external; +} + +interface StarGuardLike { + function plot(address addr_, bytes32 tag_) external; +} + +interface ProxyLike { + function exec(address target, bytes calldata args) external payable returns (bytes memory out); +} + +abstract contract DssAction { + + using DssExecLib for *; + + // Modifier used to limit execution time when office hours is enabled + modifier limited { + require(DssExecLib.canCast(uint40(block.timestamp), officeHours()), "Outside office hours"); + _; + } + + // Office Hours defaults to true by default. + // To disable office hours, override this function and + // return false in the inherited action. + function officeHours() public view virtual returns (bool) { + return true; + } + + // DssExec calls execute. We limit this function subject to officeHours modifier. + function execute() external limited { + actions(); + } + + // DssAction developer must override `actions()` and place all actions to be called inside. + // The DssExec function will call this subject to the officeHours limiter + // By keeping this function public we allow simulations of `execute()` on the actions outside of the cast time. + function actions() public virtual; + + // 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 virtual returns (string memory); + + // Returns the next available cast time + function nextCastTime(uint256 eta) external virtual view returns (uint256 castTime) { + require(eta <= type(uint40).max); + castTime = DssExecLib.nextCastTime(uint40(eta), uint40(block.timestamp), officeHours()); + } +} + +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/sky-ecosystem/executive-votes/9c58a42c41808d17531aa56eeaa9bbe1799fd0f5/2025/executive-vote-2025-11-13-solana-bridge-migration.md' -q -O - 2>/dev/null)" + string public constant override description = "2025-11-13 MakerDAO Executive Spell | Hash: 0x7a6942eb60fdf913d4cca774b3413d4249e41c5972993843300edddafc97992e"; + + // Set office hours according to the summary + function officeHours() public pure override returns (bool) { + return true; + } + + // ---------- Set earliest execution date November 17, 14:00 UTC ---------- + + // Note: 2025-11-17 14:00:00 UTC + uint256 internal constant NOV_17_2025_14_00_UTC = 1763388000; + + // Note: Override nextCastTime to inform keepers about the earliest execution time + function nextCastTime(uint256 eta) external view override returns (uint256 castTime) { + require(eta <= type(uint40).max); + // Note: First calculate the standard office hours cast time + castTime = DssExecLib.nextCastTime(uint40(eta), uint40(block.timestamp), officeHours()); + // Note: Then ensure it's not before our minimum date + return castTime < NOV_17_2025_14_00_UTC ? NOV_17_2025_14_00_UTC : castTime; + } + + // ---------- 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 MILLION = 10 ** 6; + uint256 internal constant WAD = 10 ** 18; + + // ---------- Contracts ---------- + address internal immutable DAI = DssExecLib.dai(); + address internal immutable MCD_LITE_PSM_USDC_A = DssExecLib.getChangelogAddress("MCD_LITE_PSM_USDC_A"); + address internal immutable DAI_USDS = DssExecLib.getChangelogAddress("DAI_USDS"); + address internal constant NTT_MANAGER_IMP_V2 = 0xD4DD90bAC23E2a1470681E7cAfFD381FE44c3430; + address internal constant ALLOCATOR_OBEX_A_SUBPROXY = 0x8be042581f581E3620e29F213EA8b94afA1C8071; + address internal constant OBEX_ALM_PROXY = 0xb6dD7ae22C9922AFEe0642f9Ac13e58633f715A2; + + // ---------- Spark Spell ---------- + address internal immutable SPARK_STARGUARD = DssExecLib.getChangelogAddress("SPARK_STARGUARD"); + address internal constant SPARK_SPELL = 0x63Fa202a7020e8eE0837196783f0fB768CBFE2f1; + bytes32 internal constant SPARK_SPELL_HASH = 0x6e88f81cc72989a637f4b87592dcde2016272fbceb08a2af3b2effdb2d20c0fb; + + // ---------- Launch Agent 4 (Obex) Spell ---------- + address internal constant OBEX_SPELL = 0xF538909eDF14d2c23002C2b3882Ad60f79d61893; + + function actions() public override { + // ---------- Set earliest execution date November 17, 14:00 UTC ---------- + + require(block.timestamp >= NOV_17_2025_14_00_UTC, "Spell can only be cast after Nov 17, 2025, 14:00 UTC"); + + // ----- Solana Bridge Migration ----- + // Forum: https://forum.sky.money/t/atlas-edit-weekly-cycle-proposal-week-of-2025-11-03/27381 + // Poll: https://vote.sky.money/polling/Qmetv8fp + // Forum: https://forum.sky.money/t/solana-bridge-migration/27403 + + // Call MigrationInit.initMigrationStep0 with the following arguments: + MigrationInit.initMigrationStep0({ + // nttManagerImpV2: 0xD4DD90bAC23E2a1470681E7cAfFD381FE44c3430 + nttManagerImpV2: NTT_MANAGER_IMP_V2, + // maxFee expected to be 0 (unless Wormhole.messageFee() returns non-zero value) + maxFee: 0, + // payload: https://raw.githubusercontent.com/keel-fi/crosschain-gov-solana-spell-payloads/11baa180d4ad6c7579c69c8c0168e17cb73bb6ed/wh-program-upgrade-mainnet.txt + payload: hex"000000000000000047656e6572616c507572706f7365476f7665726e616e636502000106742d7ca523a03aaafe48abab02e47eb8aef53415cb603c47a3ccf864d86dc002a8f6914e88a1b0e210153ef763ae2b00c2b93d16c124d2c0537a10048000000007a821ac5164fa9b54fd93b54dba8215550b8fce868f52299169f6619867cac501000106856f43abf4aaa4a26b32ae8ea4cb8fadc8e02d267703fbd5f9dad85f6d00b300012d27f5131975fdaf20a5934c6e90f6d7c9bbde9fcf94c37b48c5a49c7f06aae2000105cab222188023f74394ecaee9daf397c11a2a672511adc34958c1d7bdb1c673000106a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a00000000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000000006f776e65720000000000000000000000000000000000000000000000000000000100000403000000" + }); + + // ----- Parameter Changes to Launch Agent 4 (Obex) ----- + // Forum: https://forum.sky.money/t/atlas-edit-weekly-cycle-proposal-week-of-2025-11-03/27381 + // Poll: https://vote.sky.money/polling/Qmetv8fp + + // Set the following DC-IAM Values for ALLOCATOR-OBEX-A: + DssExecLib.setIlkAutoLineParameters({ + _ilk: "ALLOCATOR-OBEX-A", + // Increase `gap` by 40 million USDS from 10 million USDS to 50 million + _gap: 50 * MILLION, + // Increase `maxLine` by 2.49 billion USDS from 10 million USDS to 2.5 billion USDS + _amount: 2500 * MILLION, + // Keep `ttl` unchanged at 86,400 seconds + _ttl: 86400 seconds + }); + + // ----- Genesis Capital Transfer To Launch Agent 4 ----- + // Forum: https://forum.sky.money/t/out-of-schedule-atlas-edit-proposal/27393 + // Poll: https://vote.sky.money/polling/QmYPMN4y + + // Obex Genesis Capital Allocation - 21000000 USDS - 0x8be042581f581E3620e29F213EA8b94afA1C8071 + _transferUsds(ALLOCATOR_OBEX_A_SUBPROXY, 21_000_000 * WAD); + + // ----- Whitelist Launch Agent 4 (Obex) ALMProxy on the LitePSM ----- + // Forum: https://forum.sky.money/t/proposed-changes-to-launch-agent-4-obex-for-upcoming-spell/27370 + // Poll: https://vote.sky.money/polling/Qmetv8fp + // Forum: https://forum.sky.money/t/atlas-edit-weekly-cycle-proposal-week-of-2025-11-03/27381 + + // Whitelist Launch Agent 4 (Obex) ALMProxy at 0xb6dD7ae22C9922AFEe0642f9Ac13e58633f715A2 on the LitePSM + DssLitePsmLike(MCD_LITE_PSM_USDC_A).kiss(OBEX_ALM_PROXY); + + // ----- Whitelist Spark Proxy Spell in Starguard ----- + // Forum: https://forum.sky.money/t/november-13-2025-proposed-changes-to-spark-for-upcoming-spell/27354 + // Forum: https://forum.sky.money/t/november-13-2025-proposed-changes-to-spark-for-upcoming-spell/27354/2 + // Forum: https://forum.sky.money/t/november-13-2025-proposed-changes-to-sparklend-for-upcoming-spell-2/27395 + // Forum: https://forum.sky.money/t/november-13-2025-proposed-changes-to-sparklend-for-upcoming-spell-2/27395/3 + // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0x4c705ab40a35c3c903adb87466bf563b00abc78b1d161034278d2acd74fb7621 + // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0xd7397d29254989ce4c5785f3c67a94de21018abc4e9a76b1e7fc359aec36e60a + // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0x785d3b23e63e3e6b6fb7927ca0bc529b2dc7b58d429102465e4ba8a36bc23fda + // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0xb31a1c997c3186943b57ce9f1528cb02c1dc5399dcdc151e60d136af46d5c126 + // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0xe697ded18a50e09618c6f34fb89cbb8358d84a4c40602928ae4b44a644b83dcf + // Atlas: https://sky-atlas.io/#A.6.1.1.1.2.6.1.2.1.2.3 + + // Whitelist the Spark Proxy Spell deployed to 0x63Fa202a7020e8eE0837196783f0fB768CBFE2f1 with codehash 0x6e88f81cc72989a637f4b87592dcde2016272fbceb08a2af3b2effdb2d20c0fb; direct execution: no in Spark Starguard + StarGuardLike(SPARK_STARGUARD).plot(SPARK_SPELL, SPARK_SPELL_HASH); + + // ----- Execute Launch Agent 4 (Obex) Proxy Spell ----- + // Forum: https://forum.sky.money/t/proposed-changes-to-launch-agent-4-obex-for-upcoming-spell/27370 + // Poll: https://vote.sky.money/polling/Qmetv8fp + + // Execute the Launch Agent 4 (Obex) Proxy Spell at 0xF538909eDF14d2c23002C2b3882Ad60f79d61893 + ProxyLike(ALLOCATOR_OBEX_A_SUBPROXY).exec(OBEX_SPELL, abi.encodeWithSignature("execute()")); + } + + // ---------- Helper Functions ---------- + + /// @notice Wraps the operations required to transfer USDS from the surplus buffer. + /// @param usr The USDS receiver. + /// @param wad The USDS amount in wad precision (10 ** 18). + function _transferUsds(address usr, uint256 wad) internal { + // Note: Enforce whole units to avoid rounding errors. + require(wad % WAD == 0, "transferUsds/non-integer-wad"); + // Note: DssExecLib currently only supports Dai transfers from the surplus buffer. + DssExecLib.sendPaymentFromSurplusBuffer(address(this), wad / WAD); + // Note: Approve DAI_USDS for the amount sent to be able to convert it. + GemAbstract(DAI).approve(DAI_USDS, wad); + // Note: Convert Dai to USDS for `usr`. + DaiUsdsLike(DAI_USDS).daiToUsds(usr, wad); + } +} + +contract DssSpell is DssExec { + constructor() DssExec(block.timestamp + 30 days, address(new DssSpellAction())) {} +} diff --git a/archive/2025-11-13-DssSpell/DssSpell.t.base.sol b/archive/2025-11-13-DssSpell/DssSpell.t.base.sol new file mode 100644 index 00000000..48ef1915 --- /dev/null +++ b/archive/2025-11-13-DssSpell/DssSpell.t.base.sol @@ -0,0 +1,4008 @@ +// 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 {Vm} from "forge-std/Vm.sol"; + +import "./test/rates.sol"; +import "./test/addresses_mainnet.sol"; +import "./test/addresses_base.sol"; +import "./test/addresses_unichain.sol"; +import "./test/addresses_optimism.sol"; +import "./test/addresses_arbitrum.sol"; +import "./test/addresses_deployers.sol"; +import "./test/addresses_wallets.sol"; +import "./test/config.sol"; + +import {DssSpell} from "./DssSpell.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"; + +struct TeleportGUID { + bytes32 sourceDomain; + bytes32 targetDomain; + bytes32 receiver; + bytes32 operator; + uint128 amount; + uint80 nonce; + uint48 timestamp; +} + +struct ParamChange { + bytes32 id; // Rate identifier (ilk, "DSR", or "SSR") + uint256 bps; // New rate value in bps +} + +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 file(bytes32, uint256) external; + function flapper() external view returns (address); + function hop() external view returns (uint256); + function wards(address) external view returns (uint256); +} + +interface KickerLike { + function flap() external; + function khump() external view returns (int256); + function kbump() external view returns (uint256); + function vat() external view returns (address); + function vow() external view returns (address); + function splitter() external view returns (address); + function file(bytes32, uint256) external; + function file(bytes32, int256) external; + function wards(address) 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 fee() external view returns (uint256); + function mkr() external view returns (address); + function rate() external view returns (uint256); + function sky() external view returns (address); + function take() external view returns (uint256); +} + +interface DssLitePsmLike { + 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; +} + +interface StakingRewardsLike { + function owner() external view returns (address); + function balanceOf(address) external view returns (uint256); + function earned(address) external view returns (uint256); + function stake(uint256 amount) external; + function withdraw(uint256 amount) external; + function notifyRewardAmount(uint256 reward) external; + function rewardPerToken() external view returns (uint256); + function rewardsDistribution() external view returns (address); + function rewardsDuration() external view returns (uint256); + function rewardsToken() external view returns (address); + function stakingToken() external view returns (address); + function lastUpdateTime() external view returns (uint256); + function getReward() external; + function totalSupply() external view returns (uint256); + function rewardRate() external view returns (uint256); + function periodFinish() external view returns (uint256); +} + +interface LockstakeEngineLike { + function addFarm(address farm) external; + function delFarm(address farm) external; + function deny(address usr) external; + function draw(address owner, uint256 index, address to, uint256 wad) external; + function farms(address farm) external view returns (uint8 farmStatus); + function fee() external view returns (uint256); + function file(bytes32 what, address data) external; + function free(address owner, uint256 index, address to, uint256 wad) external returns (uint256 freed); + function freeNoFee(address owner, uint256 index, address to, uint256 wad) external; + function getReward(address owner, uint256 index, address farm, address to) external returns (uint256 amt); + function hope(address owner, uint256 index, address usr) external; + function ilk() external view returns (bytes32); + function isUrnAuth(address owner, uint256 index, address usr) external view returns (bool ok); + function jug() external view returns (address); + function lock(address owner, uint256 index, uint256 wad, uint16 ref) external; + function lssky() external view returns (address); + function multicall(bytes[] memory data) external returns (bytes[] memory results); + function nope(address owner, uint256 index, address usr) external; + function onKick(address urn, uint256 wad) external; + function onRemove(address urn, uint256 sold, uint256 left) external; + function onTake(address urn, address who, uint256 wad) external; + function open(uint256 index) external returns (address urn); + function ownerUrns(address owner, uint256 index) external view returns (address urn); + function ownerUrnsCount(address owner) external view returns (uint256 count); + function rely(address usr) external; + function selectFarm(address owner, uint256 index, address farm, uint16 ref) external; + function selectVoteDelegate(address owner, uint256 index, address voteDelegate) external; + function sky() external view returns (address); + function urnAuctions(address urn) external view returns (uint256 auctionsCount); + function urnCan(address urn, address usr) external view returns (uint256 allowed); + function urnFarms(address urn) external view returns (address farm); + function urnImplementation() external view returns (address); + function urnOwners(address urn) external view returns (address owner); + function urnVoteDelegates(address urn) external view returns (address voteDelegate); + function usds() external view returns (address); + function usdsJoin() external view returns (address); + function vat() external view returns (address); + function voteDelegateFactory() external view returns (address); + function wards(address usr) external view returns (uint256 allowed); + function wipe(address owner, uint256 index, uint256 wad) external; + function wipeAll(address owner, uint256 index) external returns (uint256 wad); +} + +interface LockstakeClipperLike { + function vat() external view returns (address); + function dog() external view returns (address); + function vow() external view returns (address); + function calc() external view returns (address); + function spotter() external view returns (address); + function engine() external view returns (address); + function cuttee() external view returns (address); + function ilk() external view returns (bytes32); + function rely(address) external; + function file(bytes32, address) external; + function file(bytes32, uint256) external; + function upchost() external; + function sales(uint256) + external + view + returns (uint256 pos, uint256 tab, uint256 due, uint256 lot, uint256 tot, address usr, uint96 tic, uint256 top); + function stopped() external view returns (uint256); + function kicks() external view returns (uint256); + function tail() external view returns (uint256); + function buf() external view returns (uint256); + function cusp() external view returns (uint256); + function chip() external view returns (uint64); + function tip() external view returns (uint192); + function chost() external view returns (uint192); + function getStatus(uint256) external view returns (bool, uint256, uint256, uint256); + function take(uint256, uint256, uint256, address, bytes calldata) external; + function redo(uint256, address) external; + function yank(uint256) external; + function wards(address) external view returns (uint256); +} + +interface VoteDelegateFactoryLike { + function chief() external view returns (address); + function create() external returns (address voteDelegate); + function polling() external view returns (address); +} + +interface AllocatorVaultLike { + function buffer() external view returns (address); + function draw(uint256 wad) external; + function ilk() external view returns (bytes32); + function jug() external view returns (address); + function roles() external view returns (address); + function usdsJoin() external view returns (address); + function vat() external view returns (address); + function wards(address) external view returns (uint256); + function wipe(uint256 wad) external; +} + +interface AllocatorRegistryLike { + function buffers(bytes32) external view returns (address); +} + +interface AllocatorRolesLike { + function hasActionRole(bytes32 ilk, address target, bytes4 sig, uint8 role) external view returns (bool has); + function hasUserRole(bytes32 ilk, address who, uint8 role) external view returns (bool has); + function ilkAdmins(bytes32) external view returns (address); +} + +interface L1TokenBridgeLike { + function l1ToL2Token(address) external view returns (address); + function isOpen() external view returns (uint256); + function escrow() external view returns (address); + function otherBridge() external view returns (address); + function messenger() external view returns (address); + function version() external view returns (string memory); + function getImplementation() external view returns (address); + function bridgeERC20To( + address _localToken, + address _remoteToken, + address _to, + uint256 _amount, + uint32 _minGasLimit, + bytes memory _extraData + ) external; +} + +interface L2TokenBridgeLike { + function l1ToL2Token(address) external view returns (address); + function isOpen() external view returns (uint256); + function escrow() external view returns (address); + function otherBridge() external view returns (address); + function messenger() external view returns (address); + function version() external view returns (string memory); + function maxWithdraws(address) external view returns (uint256); + function getImplementation() external view returns (address); + function bridgeERC20To( + address _localToken, + address _remoteToken, + address _to, + uint256 _amount, + uint32 _minGasLimit, + bytes memory _extraData + ) external; +} + +interface L1TokenGatewayLike { + function counterpartGateway() external view returns (address); + function escrow() external view returns (address); + function getImplementation() external view returns (address); + function inbox() external view returns (address); + function isOpen() external view returns (uint256); + function l1Router() external view returns (address); + function l1ToL2Token(address) external view returns (address); + function outboundTransfer( + address l1Token, + address to, + uint256 amount, + uint256 maxGas, + uint256 gasPriceBid, + bytes memory data + ) external payable returns (bytes memory res); + function outboundTransferCustomRefund( + address l1Token, + address refundTo, + address to, + uint256 amount, + uint256 maxGas, + uint256 gasPriceBid, + bytes calldata data + ) external payable returns (bytes memory res); + function version() external view returns (string memory); +} + +interface L2TokenGatewayLike { + function counterpartGateway() external view returns (address); + function getImplementation() external view returns (address); + function isOpen() external view returns (uint256); + function maxWithdraws(address) external view returns (uint256); + function l2Router() external view returns (address); + function l1ToL2Token(address) external view returns (address); + function outboundTransfer( + address l1Token, + address to, + uint256 amount, + bytes memory data + ) external payable returns (bytes memory res); + function outboundTransfer( + address l1Token, + address to, + uint256 amount, + uint256 maxGas, + uint256 gasPriceBid, + bytes memory data + ) external payable returns (bytes memory res); + function version() external view returns (string memory); +} + +interface SPBEAMLike { + function wards(address) external view returns (uint256); + function tau() external view returns (uint64); + function buds(address) external view returns (uint256); + function cfgs(bytes32) external view returns (uint16 min, uint16 max, uint16 step); + function set(ParamChange[] memory updates) external; + function bad() external view returns (uint8); + function conv() external view returns (address); + function jug() external view returns (address); + function pot() external view returns (address); + function susds() external view returns (address); +} + +interface SPBEAMMomLike { + function halt(address spbeam) external; + function authority() external view returns (address); +} + +interface ConvLike { + function btor(uint256 bps) external view returns (uint256 ray); + function rtob(uint256 ray) external pure returns (uint256 bps); +} + +interface ChiefLike { + function free(uint256 wad) external; + function gov() external view returns (address); + function hat() external view returns (address); + function launch() external; + function launchThreshold() external view returns (uint256); + function lift(address whom) external; + function liftCooldown() external view returns (uint256); + function live() external view returns (uint256); + function lock(uint256 wad) external; + function maxYays() external view returns (uint256); + function vote(address[] memory yays) external returns (bytes32 slate); +} + +interface StusdsLike is WardsAbstract { + function chi() external view returns (uint192); + function rho() external view returns (uint64); + function str() external view returns (uint256); + function line() external view returns (uint256); + function cap() external view returns (uint256); + function totalAssets() external view returns (uint256); + function ilk() external view returns (bytes32); + function version() external view returns (string calldata); + function getImplementation() external view returns (address); + function totalSupply() external view returns (uint256); + function balanceOf(address) external view returns (uint256); + function deposit(uint256, address) external returns (uint256); + function withdraw(uint256, address, address) external returns (uint256); + function file(bytes32, uint256) external; +} + +interface StusdsRateSetterLike { + function tau() external view returns (uint64); + function maxLine() external view returns (uint256); + function maxCap() external view returns (uint256); + function strCfg() external view returns (uint16, uint16, uint16); + function dutyCfg() external view returns (uint16, uint16, uint16); + function buds(address) external view returns (uint256); + function set(uint256, uint256, uint256, uint256) external; +} + +interface OsmWrapperLike { + function osm() external view returns (address); +} + +interface StarGuardLike { + function spellData() external view returns (address addr, bytes32 tag, uint256 deadline); + function subProxy() external view returns (address); + function exec() external returns (address addr); + function prob() external view returns (bool); +} + +interface StarGuardJobLike { + function has(address starGuard) external view returns (bool); +} + +interface SubProxyLike { + function exec(address target, bytes calldata args) external payable returns (bytes memory out); +} + +contract DssSpellTestBase is Config, DssTest { + using stdStorage for StdStorage; + + Rates rates = new Rates(); + Addresses addr = new Addresses(); + BaseAddresses base = new BaseAddresses(); + UnichainAddresses unichain = new UnichainAddresses(); + OptimismAddresses optimism = new OptimismAddresses(); + ArbitrumAddresses arbitrum = new ArbitrumAddresses(); + 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 chiefLegacy = DSChiefAbstract( addr.addr("MCD_ADM_LEGACY")); + ChiefLike chief = ChiefLike( 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("MKR")); + GemAbstract sky = GemAbstract( addr.addr("SKY")); + GemAbstract spk = GemAbstract( addr.addr("SPK")); + MkrSkyLike mkrSky = MkrSkyLike( addr.addr("MKR_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")); + KickerLike kick = KickerLike( addr.addr("MCD_KICK")); + 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")); + AuthorityLike stusdsMom = AuthorityLike( addr.addr("STUSDS_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 vestUsds = VestAbstract( addr.addr("MCD_VEST_USDS")); + VestAbstract vestMkr = VestAbstract( addr.addr("MCD_VEST_MKR_TREASURY")); + VestAbstract vestSky = VestAbstract( addr.addr("MCD_VEST_SKY_TREASURY")); + VestAbstract vestSpk = VestAbstract( addr.addr("MCD_VEST_SPK_TREASURY")); + VestAbstract vestSkyMint = VestAbstract( addr.addr("MCD_VEST_SKY")); + RwaLiquidationLike liquidationOracle = RwaLiquidationLike( addr.addr("MIP21_LIQUIDATION_ORACLE")); + SPBEAMLike spbeam = SPBEAMLike( addr.addr("MCD_SPBEAM")); + SPBEAMMomLike spbeamMom = SPBEAMMomLike( addr.addr("SPBEAM_MOM")); + address voteDelegateFactory = addr.addr("VOTE_DELEGATE_FACTORY"); + StusdsRateSetterLike rateSetter = StusdsRateSetterLike(addr.addr("STUSDS_RATE_SETTER")); + StusdsLike stusds = StusdsLike( addr.addr("STUSDS")); + + DssSpell spell; + + string config; + RootDomain rootDomain; + OptimismDomain optimismDomain; + ArbitrumDomain arbitrumDomain; + OptimismDomain baseDomain; + OptimismDomain unichainDomain; + + 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 Converts a `uint256` to its ASCII `string` decimal representation. + */ + function _uintToString(uint256 value) internal pure returns (string memory) { + bytes16 HEX_DIGITS = "0123456789abcdef"; + unchecked { + uint256 length = _log10(value) + 1; + string memory buffer = new string(length); + uint256 ptr; + assembly ("memory-safe") { + ptr := add(add(buffer, 0x20), length) + } + while (true) { + ptr--; + assembly ("memory-safe") { + mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) + } + value /= 10; + if (value == 0) break; + } + return buffer; + } + } + + /** + * @dev Return the log in base 10 of a positive value rounded towards zero. + * Returns 0 if given 0. + */ + function _log10(uint256 value) internal pure returns (uint256) { + uint256 result = 0; + unchecked { + if (value >= 10 ** 64) { + value /= 10 ** 64; + result += 64; + } + if (value >= 10 ** 32) { + value /= 10 ** 32; + result += 32; + } + if (value >= 10 ** 16) { + value /= 10 ** 16; + result += 16; + } + if (value >= 10 ** 8) { + value /= 10 ** 8; + result += 8; + } + if (value >= 10 ** 4) { + value /= 10 ** 4; + result += 4; + } + if (value >= 10 ** 2) { + value /= 10 ** 2; + result += 2; + } + if (value >= 10 ** 1) { + result += 1; + } + } + return result; + } + + /** + * @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(); + _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) + ); + } + + // Temporary fix to the reverts of the Spark spells interacting with Aggor oracles, due to the cast time manipulation + // Example revert: https://dashboard.tenderly.co/explorer/vnet/eb97d953-4642-4778-938e-d70ee25e3f58/tx/0xe427414d07c28b64c076e809983cfdee3bfd680866ebc7c40349700f4a6160bd?trace=0.5.5.1.62.1.2.0.2.2.0.2.2 + _fixChronicleStaleness(0x24C392CDbF32Cf911B258981a66d5541d85269ce); // Chronicle_BTC_USD_3 + _fixChronicleStaleness(0x46ef0071b1E2fF6B42d36e5A177EA43Ae5917f4E); // Chronicle_ETH_USD_3 + } + + function _fixChronicleStaleness(address oracle) private { + bytes32 slot = bytes32(uint256(4)); // the slot of Chronicle `_pokeData` is 4 + bytes32 slotData = vm.load(oracle, slot); + uint256 price = uint256(slotData) & type(uint128).max; // price is the second half of a 256-bit slot + uint256 age = block.timestamp + 30 days; // extend age by a big margin + vm.store( + oracle, + slot, + bytes32((age << 128) | price) + ); + } + + function _vote(address spell_) internal { + if (chief.hat() != spell_) { + _giveTokens(address(sky), 999999999999 ether); + sky.approve(address(chief), type(uint256).max); + chief.lock(999999999999 ether); + address[] memory slate = new address[](1); + slate[0] = spell_; + chief.vote(slate); + chief.lift(spell_); + } + assertEq(chief.hat(), spell_, "TestError/spell-is-not-hat"); + } + + function _scheduleWaitAndCast(address spell_) internal { + DssSpell(spell_).schedule(); + + vm.warp(DssSpell(spell_).nextCastTime()); + + DssSpell(spell_).cast(); + } + + /** + * @dev Gets the current spell cast time. + * It MUST be called before the spell is cast, otherwise it will revert. + * @return spellCastTime + */ + function _getSpellCastTime() internal returns (uint256 spellCastTime) { + uint256 beforeVote = vm.snapshotState(); + + _vote(address(spell)); + spell.schedule(); + spellCastTime = spell.nextCastTime(); + + vm.revertToStateAndDelete(beforeVote); + } + + function _checkSystemValues(SystemValues storage values) internal { + // dsr + // make sure dsr is less than 100% APR + // bc -l <<< 'scale=27; e( l(2.00)/(60 * 60 * 24 * 365) )' + // 1000000021979553151239153027 + assertTrue( + pot.dsr() >= RAY && pot.dsr() < 1000000021979553151239153027, + "TestError/pot-dsr-range" + ); + + // check SPBEAM Values + (uint256 SP_min, uint256 SP_max, uint256 SP_step) = spbeam.cfgs("DSR"); + assertEq(SP_min, values.SP_dsr_min, "TestError/spbeam-dsr-min"); + assertEq(SP_max, values.SP_dsr_max, "TestError/spbeam-dsr-max"); + assertEq(SP_step, values.SP_dsr_step, "TestError/spbeam-dsr-step"); + + uint256 rtob_dsr = ConvLike(spbeam.conv()).rtob(pot.dsr()); + + assertLe(rtob_dsr, SP_max, "TestError/spbeam-dsr-exceeds-max"); + assertGe(rtob_dsr, SP_min, "TestError/spbeam-dsr-below-min"); + + // ssr + // make sure dsr is less than 100% APR + // bc -l <<< 'scale=27; e( l(2.00)/(60 * 60 * 24 * 365) )' + // 1000000021979553151239153027 + assertTrue( + susds.ssr() >= RAY && susds.ssr() < 1000000021979553151239153027, + "TestError/susds-ssr-range" + ); + + // check SPBEAM Values + (SP_min, SP_max, SP_step) = spbeam.cfgs("SSR"); + assertEq(SP_min, values.SP_ssr_min, "TestError/spbeam-ssr-min"); + assertEq(SP_max, values.SP_ssr_max, "TestError/spbeam-ssr-max"); + assertEq(SP_step, values.SP_ssr_step, "TestError/spbeam-ssr-step"); + + uint256 rtob_ssr = ConvLike(spbeam.conv()).rtob(susds.ssr()); + + assertLe(rtob_ssr, SP_max, "TestError/spbeam-ssr-exceeds-max"); + assertGe(rtob_ssr, SP_min, "TestError/spbeam-ssr-below-min"); + + // SSR should always be higher than or equal to DSR + assertGe(susds.ssr(), pot.dsr(), "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"); + + // Ensure there is enough time for the governance to unwind SBE LP tokens instead of starting a Flop auction + assertGe(vow.wait(), pause.delay() * 2, "TestError/vow-wait-too-short"); + + { + // 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 + if (values.vow_sump == type(uint256).max) { + assertEq(vow.sump(), type(uint256).max, "TestError/vow-sump"); + } else { + 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 + if (values.vow_hump_min == type(uint256).max && values.vow_hump_max == type(uint256).max) { + assertEq(vow.hump(), type(uint256).max, "TestError/vow-hump"); + } else { + 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"); + } + + // Check ESM min value + assertEq(esm.min(), values.esm_min, "TestError/esm-min"); + + // check Pause authority + assertEq(pause.authority(), addr.addr(values.pause_authority), "TestError/pause-authority"); + + // check OsmMom authority + assertEq(osmMom.authority(), addr.addr(values.osm_mom_authority), "TestError/osmMom-authority"); + + // check ClipperMom authority + assertEq(clipMom.authority(), addr.addr(values.clipper_mom_authority), "TestError/clipperMom-authority"); + + // check D3MMom authority + assertEq(d3mMom.authority(), addr.addr(values.d3m_mom_authority), "TestError/d3mMom-authority"); + + // check LineMom authority + assertEq(lineMom.authority(), addr.addr(values.line_mom_authority), "TestError/lineMom-authority"); + + // check LitePsmMom authority + assertEq(litePsmMom.authority(), addr.addr(values.lite_psm_mom_authority), "TestError/linePsmMom-authority"); + + // check SplitterMom authority + assertEq(splitterMom.authority(), addr.addr(values.splitter_mom_authority), "TestError/splitterMom-authority"); + + // check SPBEAMMom authority + assertEq(spbeamMom.authority(), addr.addr(values.spbeam_mom_authority), "TestError/spbeamMom-authority"); + + // check StusdsMom authority + assertEq(stusdsMom.authority(), addr.addr(values.stusds_mom_authority), "TestError/stusdsMom-auth"); + + // 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() >= 25 * WAD / 100 && split.burn() <= 1 * WAD, "TestError/split-burn-range"); // gte 25% and lte 100% + // check split.farm address to match config + address split_farm = addr.addr(values.split_farm); + assertEq(split.farm(), split_farm, "TestError/split-farm"); + // check farm rewards distribution and duration to match splitter + if (split_farm != address(0)) { + address rewardsDistribution = StakingRewardsLike(split_farm).rewardsDistribution(); + assertEq(rewardsDistribution, address(split), "TestError/farm-distribution"); + uint256 rewardsDuration = StakingRewardsLike(split_farm).rewardsDuration(); + assertEq(rewardsDuration, values.split_hop, "TestError/farm-duration-does-not-match-split-hop"); + } + } + + // 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(vestUsds.cap(), values.vest_usds_cap, "TestError/vest-usds-cap"); + assertEq(vestSky.cap(), values.vest_sky_cap, "TestError/vest-sky-cap"); + assertEq(vestSkyMint.cap(), values.vest_sky_mint_cap, "TestError/vest-sky-mint-cap"); + assertEq(vestSpk.cap(), values.vest_spk_cap, "TestError/vest-spk-cap"); + } + + assertEq(vat.wards(pauseProxy), uint256(1), "TestError/pause-proxy-deauthed-on-vat"); + + // transferrable vests + { + // check mkr allowance and balance + _checkTransferrableVestAllowanceAndBalance('mkr', GemAbstract(address(mkr)), vestMkr); + // check sky allowance and balance + _checkTransferrableVestAllowanceAndBalance('sky', sky, vestSky); + // check spk allowance and balance + _checkTransferrableVestAllowanceAndBalance('spk', spk, vestSpk); + } + + // stusds + { + assertEq(rateSetter.tau(), afterSpell.stusds_rate_setter_tau, "TestError/stusds-ratesetter-tau"); + assertEq(rateSetter.maxLine(), afterSpell.stusds_rate_setter_maxLine * RAD, "TestError/stusds-ratesetter-maxline"); + assertEq(rateSetter.maxCap(), afterSpell.stusds_rate_setter_maxCap * WAD, "TestError/stusds-ratesetter-maxcap"); + (uint16 minStr, uint16 maxStr, uint256 strStep) = rateSetter.strCfg(); + assertEq(minStr, afterSpell.stusds_rate_setter_minStr, "TestError/stusds-ratesetter-strcfg-minstr"); + assertEq(maxStr, afterSpell.stusds_rate_setter_maxStr, "TestError/stusds-ratesetter-strcfg-maxstr"); + assertEq(strStep, afterSpell.stusds_rate_setter_strStep, "TestError/stusds-ratesetter-strcfg-strstep"); + (uint16 minDuty, uint16 maxDuty, uint256 dutyStep) = rateSetter.dutyCfg(); + assertEq(afterSpell.stusds_rate_setter_minDuty, minDuty, "TestError/stusds-ratesetter-dutycfg-minduty"); + assertEq(maxDuty, afterSpell.stusds_rate_setter_maxDuty, "TestError/stusds-ratesetter-dutycfg-maxduty"); + assertEq(dutyStep, afterSpell.stusds_rate_setter_dutyStep, "TestError/stusds-ratesetter-dutycfg-dutystep"); + + uint256 str = stusds.str(); + assertLe(str, rates.rates(maxStr), "TestError/stusds-str-exceeds-ratesetter-max"); + assertGe(str, rates.rates(minStr), "TestError/stusds-str-exceeds-ratesetter-min"); + + assertLe(stusds.line(), rateSetter.maxLine(), "TestError/stusds-line-exceeds-ratesetter-maxline"); + assertLe(stusds.cap(), rateSetter.maxCap(), "TestError/stusds-cap-exceeds-ratesetter-maxcap"); + + for (uint256 i; i < afterSpell.stusds_rate_setter_buds.length; i++) { + assertEq(rateSetter.buds(afterSpell.stusds_rate_setter_buds[i]), 1, "TestError/stusds-ratesetter-buds"); + } + } + } + + 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); + + { + if (!values.collaterals[ilk].SP_enabled) { + assertEq(values.collaterals[ilk].SP_min, 0, _concat("TestError/spbeam-min-not-zero-", ilk)); + assertEq(values.collaterals[ilk].SP_max, 0, _concat("TestError/spbeam-max-not-zero-", ilk)); + assertEq(values.collaterals[ilk].SP_step, 0, _concat("TestError/spbeam-step-not-zero-", ilk)); + if (values.collaterals[ilk].um != UpdateMethod.STUSDS) { + assertEq(duty, rates.rates(values.collaterals[ilk].pct), _concat("TestError/jug-duty-", ilk)); + assertTrue( + _diffCalc(_expectedRate(values.collaterals[ilk].pct), _yearlyYield(rates.rates(values.collaterals[ilk].pct))) <= TOLERANCE, + _concat("TestError/rates-", ilk) + ); + } else { + assertEq(values.collaterals[ilk].pct, 0, _concat("TestError/stUsds/pct-not-zero-", ilk)); + + (uint16 minDuty, uint16 maxDuty,) = rateSetter.dutyCfg(); + assertLe(duty, rates.rates(maxDuty), _concat("TestError/stUsds/jug-duty-exceeds-ratesetter-max-", ilk)); + assertGe(duty, rates.rates(minDuty), _concat("TestError/stUsds/jug-duty-exceeds-ratesetter-min-", ilk)); + } + assertTrue(values.collaterals[ilk].pct < THOUSAND * THOUSAND, _concat("TestError/pct-max-", ilk)); // check value lt 1000% + } else { + assertEq(values.collaterals[ilk].pct, 0, _concat("TestError/spbeam-pct-not-zero-", ilk)); + (uint256 SP_min, uint256 SP_max, uint256 SP_step) = spbeam.cfgs(ilk); + assertEq(SP_min, values.collaterals[ilk].SP_min, _concat("TestError/spbeam-min-", ilk)); + assertEq(SP_max, values.collaterals[ilk].SP_max, _concat("TestError/spbeam-max-", ilk)); + assertEq(SP_step, values.collaterals[ilk].SP_step, _concat("TestError/spbeam-step-", ilk)); + uint256 rtob_duty = ConvLike(spbeam.conv()).rtob(duty); + assertGe(rtob_duty, SP_min, _concat("TestError/jug-duty-below-spbeam-min-", ilk)); + assertLe(rtob_duty, SP_max, _concat("TestError/jug-duty-exceeds-spbeam-max-", ilk)); + assertTrue(SP_max < THOUSAND * THOUSAND, _concat("TestError/spbeam-max-too-high-", ilk)); // check SPBEAM max lt 1000% + } + // 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% + } + + { + uint256 line; + uint256 dust; + { + uint256 Art; + uint256 rate; + (Art, rate,, line, dust) = vat.ilks(ilk); + if (Art * rate < line) { + sums[1] += line - Art * rate; + } + } + sums[0] += line; + (uint256 aL_line, uint256 aL_gap, uint256 aL_ttl,,) = autoLine.ilks(ilk); + if (values.collaterals[ilk].um == UpdateMethod.MANUAL) { + assertEq(aL_line, 0, _concat("TestError/Manual/al-Line-not-zero-", ilk)); + assertEq(line, values.collaterals[ilk].line * RAD, _concat("TestError/Manual/vat-line-", ilk)); + assertTrue((line >= RAD && line < 10 * BILLION * RAD) || line == 0, _concat("TestError/Manual/vat-line-range-", ilk)); // eq 0 or gt eq 1 RAD and lt 10B + } else if (values.collaterals[ilk].um == UpdateMethod.AUTOLINE) { + assertGt(aL_line, 0, _concat("TestError/al-Line-is-zero-", ilk)); + assertEq(aL_line, values.collaterals[ilk].aL_line * RAD, _concat("TestError/AutoLine/al-line-", ilk)); + assertEq(aL_gap, values.collaterals[ilk].aL_gap * RAD, _concat("TestError/AutoLine/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/AutoLine/al-line-range-", ilk)); // eq 0 or gt eq 1 RAD and lt 10B + } else { + assertEq(aL_line, 0, _concat("TestError/stUSDS/al-Line-not-zero-", ilk)); + assertLe(line, stusds.line(), _concat("TestError/stUSDS/vat-line", ilk)); + } + 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") { + { + assertTrue(reg.class(ilk) == 1 || reg.class(ilk) == 7, _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) == 7) { + // check correct clipper type is used for the reg.class 7 + address engine = LockstakeClipperLike(address(clip)).engine(); + assertNotEq(engine, address(0), _concat("TestError/clip-engine-is-not-set-", ilk)); + } + { + // Ensure liquidation penalty is always bigger than combined keeper incentives + (,,, uint256 line, uint256 dust) = vat.ilks(ilk); + if (line != 0 && clip.stopped() == 0) { + (, uint256 chop,,) = dog.ilks(ilk); + uint256 tab = dust * chop / WAD; + uint256 penaltyAmount = tab - dust; + uint256 incentiveAmount = uint256(clip.tip()) + (tab * uint256(clip.chip()) / WAD); + assertGe(penaltyAmount, incentiveAmount, _concat("TestError/too-low-dog-chop-", ilk)); + } + } + } + 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. + assertLe(sums[0] + values.line_offset * RAD, vat.Line(), "TestError/vat-Line-2"); + assertGe(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.prank(pauseProxy); + OsmAbstract(pip).kiss(address(this)); + return uint256(OsmAbstract(pip).read()); + } + + function _getUNIV2LPPrice(address pip) internal view 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 + assertLe(price, (10 ** 14) * WAD, "TestError/invalid-univ2lp-price"); + + 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); + // TODO: Uncomment after 2025-08-21 + // 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 + } + } + + struct LockstakeIlkParams { + bytes32 ilk; + uint256 fee; + address pip; + address lssky; + address engine; + address clip; + address calc; + address farm; + address rToken; + address rDistr; + uint256 rDur; + } + + function _checkLockstakeIlkIntegration( + LockstakeIlkParams memory p + ) internal { + LockstakeEngineLike engine = LockstakeEngineLike(p.engine); + StakingRewardsLike farm = StakingRewardsLike(p.farm); + address underlyingPip = OsmWrapperLike(p.pip).osm(); + + // Check relevant contracts are correctly configured + { + assertEq(dog.vat(), address(vat), "checkLockstakeIlkIntegration/invalid-dog-vat"); + assertEq(dog.vow(), address(vow), "checkLockstakeIlkIntegration/invalid-dog-vow"); + (address clip,,,) = dog.ilks(p.ilk); + assertEq(clip, p.clip, "checkLockstakeIlkIntegration/invalid-dog-clip"); + assertEq(engine.voteDelegateFactory(), voteDelegateFactory, "checkLockstakeIlkIntegration/invalid-engine-voteDelegateFactory"); + assertEq(engine.usdsJoin(), address(usdsJoin), "checkLockstakeIlkIntegration/invalid-engine-usdsJoin"); + assertEq(engine.ilk(), p.ilk, "checkLockstakeIlkIntegration/invalid-engine-ilk"); + assertEq(engine.lssky(), p.lssky, "checkLockstakeIlkIntegration/invalid-engine-lssky"); + assertEq(engine.jug(), address(jug), "checkLockstakeIlkIntegration/invalid-engine-jug"); + assertEq(engine.sky(), address(sky), "checkLockstakeIlkIntegration/invalid-engine-sky"); + assertEq(engine.fee(), p.fee * WAD / 100_00, "checkLockstakeIlkIntegration/invalid-fee"); + assertNotEq(p.farm, address(0), "checkLockstakeIlkIntegration/invalid-farm"); + assertEq(engine.farms(p.farm), 1, "checkLockstakeIlkIntegration/disabled-farm"); + assertEq(farm.owner(), address(pauseProxy), "checkLockstakeIlkIntegration/invalid-owner"); + assertEq(farm.stakingToken(), p.lssky, "checkLockstakeIlkIntegration/invalid-stakingToken"); + assertEq(farm.rewardsToken(), p.rToken, "checkLockstakeIlkIntegration/invalid-rewardsToken"); + assertEq(farm.rewardsDistribution(), p.rDistr, "checkLockstakeIlkIntegration/invalid-rewardsDistribution"); + assertEq(farm.rewardsDuration(), p.rDur, "checkLockstakeIlkIntegration/invalid-rewardsDuration"); + assertEq(ClipAbstract(p.clip).vat(), address(vat), "checkLockstakeIlkIntegration/invalid-clip-vat"); + assertEq(ClipAbstract(p.clip).spotter(), address(spotter), "checkLockstakeIlkIntegration/invalid-clip-spotter"); + assertEq(ClipAbstract(p.clip).dog(), address(dog), "checkLockstakeIlkIntegration/invalid-clip-dog"); + assertEq(ClipAbstract(p.clip).ilk(), p.ilk, "checkLockstakeIlkIntegration/invalid-clip-ilk"); + assertEq(ClipAbstract(p.clip).vow(), address(vow), "checkLockstakeIlkIntegration/invalid-clip-vow"); + assertEq(ClipAbstract(p.clip).calc(), p.calc, "checkLockstakeIlkIntegration/invalid-clip-calc"); + assertEq(LockstakeClipperLike(p.clip).engine(), p.engine, "checkLockstakeIlkIntegration/invalid-clip-engine"); + // TODO after 2025-05-15: enable liquidations + assertEq(LockstakeClipperLike(p.clip).stopped(), 3, "checkLockstakeIlkIntegration/invalid-clip-stopped"); + assertEq(osmMom.osms(p.ilk), underlyingPip, "checkLockstakeIlkIntegration/invalid-osmMom-pip"); + (address pip,) = spotter.ilks(p.ilk); + assertEq(pip, p.pip, "checkLockstakeIlkIntegration/invalid-spot-pip"); + } + // Check ilk registry values + { + ( + string memory name, + string memory symbol, + uint256 _class, + uint256 decimals, + address gem, + address pip, + address gemJoin, + address clip + ) = reg.info(p.ilk); + assertEq(name, GemAbstract(p.lssky).name(), "checkLockstakeIlkIntegration/incorrect-reg-name"); + assertEq(symbol, GemAbstract(p.lssky).symbol(), "checkLockstakeIlkIntegration/incorrect-reg-symbol"); + assertEq(_class, 7, "checkLockstakeIlkIntegration/incorrect-reg-class"); // REG_CLASS_JOINLESS + assertEq(decimals, GemAbstract(p.lssky).decimals(), "checkLockstakeIlkIntegration/incorrect-reg-decimals"); + assertEq(gem, address(sky), "checkLockstakeIlkIntegration/incorrect-reg-gem"); + assertEq(pip, p.pip, "checkLockstakeIlkIntegration/incorrect-reg-pip"); + assertEq(gemJoin, address(0), "checkLockstakeIlkIntegration/incorrect-reg-gemJoin"); + assertEq(clip, p.clip, "checkLockstakeIlkIntegration/incorrect-reg-clip"); + } + // Check required authorizations + { + assertEq(vat.wards(p.engine), 1, "checkLockstakeIlkIntegration/missing-auth-vat-engine"); + assertEq(vat.wards(p.clip), 1, "checkLockstakeIlkIntegration/missing-auth-vat-clip"); + assertEq(WardsAbstract(underlyingPip).wards(address(osmMom)), 1, "checkLockstakeIlkIntegration/missing-auth-pip-osmMom"); + assertEq(dog.wards(p.clip), 1, "checkLockstakeIlkIntegration/missing-auth-dog-clip"); + assertEq(WardsAbstract(p.lssky).wards(p.engine), 1, "checkLockstakeIlkIntegration/missing-auth-lssky-engine"); + assertEq(WardsAbstract(p.engine).wards(p.clip), 1, "checkLockstakeIlkIntegration/missing-auth-engine-clip"); + assertEq(WardsAbstract(p.clip).wards(address(dog)), 1, "checkLockstakeIlkIntegration/missing-auth-clip-dog"); + assertEq(WardsAbstract(p.clip).wards(address(end)), 1, "checkLockstakeIlkIntegration/missing-auth-clip-end"); + // TODO after 2025-05-15: rely clipMom and update error message + assertEq(WardsAbstract(p.clip).wards(address(clipMom)), 0, "checkLockstakeIlkIntegration/unexpected-auth-clip-clipMom"); + } + // Check required OSM buds + { + assertEq(OsmAbstract(p.pip).bud(address(spotter)), 1, "checkLockstakeIlkIntegration/missing-bud-spotter"); + assertEq(OsmAbstract(p.pip).bud(p.clip), 1, "checkLockstakeIlkIntegration/missing-bud-clip"); + assertEq(OsmAbstract(p.pip).bud(address(clipMom)), 1, "checkLockstakeIlkIntegration/missing-bud-clipMom"); + assertEq(OsmAbstract(p.pip).bud(address(end)), 1, "checkLockstakeIlkIntegration/missing-bud-end"); + } + // Prepare for liquidation + uint256 drawAmt; + uint256 lockAmt; + { + // Force max Hole + vm.store(address(dog), bytes32(uint256(4)), bytes32(type(uint256).max)); + // Reset auction count + if (ClipAbstract(p.clip).kicks() > 0) { + stdstore.target(p.clip).sig("kicks()").checked_write(uint256(0)); + assertEq(ClipAbstract(p.clip).kicks(), 0, "checkLockstakeIlkIntegration/unchanged-kicks"); + } + // Calculate lock and draw amounts + (,,,, uint256 dust) = vat.ilks(p.ilk); + drawAmt = dust / RAY; + lockAmt = drawAmt * WAD / _getOSMPrice(p.pip) * 10; + // Give tokens + _giveTokens(address(sky), lockAmt); + // Ensure there's enough room in the debt ceiling + _setIlkLine(p.ilk, drawAmt * RAD); + } + + uint256 snapshot = vm.snapshotState(); + // Check locking and freeing Sky + { + uint256 initialEngineBalance = sky.balanceOf(p.engine); + engine.open(0); + uint256 skyAmt = lockAmt; + assertEq(sky.balanceOf(address(this)), skyAmt, "checkLockstakeIlkIntegration/LockAndFreeSky/invalid-initial-balance"); + sky.approve(address(engine), skyAmt); + engine.lock(address(this), 0, skyAmt, 0); + assertEq(sky.balanceOf(p.engine), initialEngineBalance + lockAmt, "checkLockstakeIlkIntegration/LockAndFreeSky/invalid-locked-sky-balance"); + engine.free(address(this), 0, address(this), skyAmt); + uint256 exitFee = lockAmt * p.fee / 100_00; + assertGe(sky.balanceOf(address(this)), skyAmt - exitFee, "checkLockstakeIlkIntegration/LockAndFreeSky/invalid-unlocked-balance"); + vm.revertToState(snapshot); + } + // Check drawing and wiping + { + uint256 initialEngineBalance = sky.balanceOf(p.engine); + address urn = engine.open(0); + assertEq(sky.balanceOf(address(this)), lockAmt, "checkLockstakeIlkIntegration/DrawAndWipe/invalid-initial-balance"); + sky.approve(address(engine), lockAmt); + engine.lock(address(this), 0, lockAmt, 0); + assertEq(sky.balanceOf(p.engine), initialEngineBalance + lockAmt, "checkLockstakeIlkIntegration/DrawAndWipe/invalid-locked-sky-balance"); + engine.draw(address(this), 0, address(this), drawAmt); + assertEq(usds.balanceOf(address(this)), drawAmt, "checkLockstakeIlkIntegration/DrawAndWipe/invalid-usds-balance-after-draw"); + skip(10 days); + jug.drip(p.ilk); + (, uint256 art) = vat.urns(p.ilk, urn); + (, uint256 rate,,,) = vat.ilks(p.ilk); + uint256 wipeAmt = _divup(art * rate, RAY); + assertGt(wipeAmt, drawAmt + 1 /* +1 to exclude rounding up */, "checkLockstakeIlkIntegration/DrawAndWipe/invalid-wipe-after-draw"); + _giveTokens(address(usds), wipeAmt); + usds.approve(address(engine), wipeAmt); + engine.wipe(address(this), 0, wipeAmt); + assertEq(usds.balanceOf(address(this)), 0, "checkLockstakeIlkIntegration/DrawAndWipe/invalid-usds-balance-after-wipe"); + vm.revertToState(snapshot); + } + // Check farming and getting a reward + { + // Lock with selected farm + address urn = engine.open(0); + sky.approve(address(engine), lockAmt); + engine.selectFarm(address(this), 0, p.farm, 0); + engine.lock(address(this), 0, lockAmt, 0); + assertEq(GemAbstract(p.farm).balanceOf(urn), lockAmt, "checkLockstakeIlkIntegration/FarmAndGetReward/FarmAndGetReward/invalid-urn-farm-balance"); + // Deposit rewards into farm and notify + uint256 rewardAmt = 1_000_000 * WAD; + address rewardsToken = farm.rewardsToken(); + deal(rewardsToken, p.farm, GemAbstract(rewardsToken).balanceOf(p.farm) + rewardAmt, true); + vm.prank(farm.rewardsDistribution()); farm.notifyRewardAmount(rewardAmt); + // Claim rewards + address rewardsUser = address(this); + skip(farm.rewardsDuration()); + uint256 resultAmt = engine.getReward(address(this), 0, p.farm, rewardsUser); + assertGt(resultAmt, 0, "checkLockstakeIlkIntegration/FarmAndGetReward/no-reward-amt"); + assertGt(GemAbstract(rewardsToken).balanceOf(rewardsUser), 0, "checkLockstakeIlkIntegration/FarmAndGetReward/no-reward-balance"); + vm.revertToState(snapshot); + } + // Check liquidations + _checkLockstakeTake(p, lockAmt, drawAmt, false, false); vm.revertToState(snapshot); + _checkLockstakeTake(p, lockAmt, drawAmt, false, true); vm.revertToState(snapshot); + _checkLockstakeTake(p, lockAmt, drawAmt, true, false); vm.revertToState(snapshot); + _checkLockstakeTake(p, lockAmt, drawAmt, true, true); vm.revertToState(snapshot); + + vm.deleteStateSnapshots(); + } + + struct Sale { + uint256 pos; // Index in active array + uint256 tab; // Usds to raise [rad] + uint256 due; // Usds debt [rad] + uint256 lot; // collateral to sell [wad] + uint256 tot; // static registry of total collateral to sell [wad] + address usr; // Liquidated CDP + uint96 tic; // Auction start time + uint256 top; // Starting price [ray] + } + + struct LockstakeBalances { + uint256 chiefSky; + uint256 engineSky; + uint256 farmLssky; + uint256 vatGem; + } + + function _checkLockstakeTake( + LockstakeIlkParams memory p, + uint256 lockAmt, + uint256 drawAmt, + bool withDelegate, + bool withStaking + ) internal { + // Open vault + LockstakeEngineLike engine = LockstakeEngineLike(p.engine); + vm.prank(address(123)); address voteDelegate = VoteDelegateFactoryLike(voteDelegateFactory).create(); + assertNotEq(voteDelegate, address(0), "checkLockstakeTake/invalid-voteDelegate-address"); + address urn = engine.open(0); + LockstakeBalances memory initialBalances = LockstakeBalances({ + chiefSky: sky.balanceOf(address(chief)), + engineSky: sky.balanceOf(p.engine), + farmLssky: GemAbstract(p.lssky).balanceOf(p.farm), + vatGem: vat.gem(p.ilk, p.clip) + }); + + // Lock and draw + if (withDelegate) { + engine.selectVoteDelegate(address(this), 0, voteDelegate); + } + if (withStaking) { + engine.selectFarm(address(this), 0, address(p.farm), 0); + } + sky.approve(address(engine), lockAmt); + engine.lock(address(this), 0, lockAmt, 0); + engine.draw(address(this), 0, address(this), drawAmt); + if (withDelegate) { + assertEq(engine.urnVoteDelegates(urn), voteDelegate, "checkLockstakeTake/AfterLockDraw/withDelegate/invalid-voteDelegate-urn"); + assertEq(sky.balanceOf(address(chief)) - initialBalances.chiefSky, lockAmt, "checkLockstakeTake/AfterLockDraw/withDelegate/invalid-chief-sky-balance"); + assertEq(sky.balanceOf(p.engine), initialBalances.engineSky, "checkLockstakeTake/AfterLockDraw/withDelegate/invalid-engine-balance"); + } else { + assertEq(engine.urnVoteDelegates(urn), address(0), "checkLockstakeTake/AfterLockDraw/withoutDelegate/invalid-voteDelegate-urn"); + assertEq(sky.balanceOf(address(chief)), initialBalances.chiefSky, "checkLockstakeTake/AfterLockDraw/withoutDelegate/invalid-chief-sky-balance"); + assertEq(sky.balanceOf(p.engine), initialBalances.engineSky + lockAmt, "checkLockstakeTake/AfterLockDraw/withoutDelegate/invalid-engine-balance"); + } + if (withStaking) { + assertEq(GemAbstract(p.lssky).balanceOf(urn), 0, "checkLockstakeTake/AfterLockDraw/withStaking/invalid-urn-lsgem-balance"); + assertEq(GemAbstract(p.lssky).balanceOf(p.farm), initialBalances.farmLssky + lockAmt, "checkLockstakeTake/AfterLockDraw/withStaking/invalid-farm-lsgem-balance"); + assertEq(GemAbstract(p.farm).balanceOf(urn), lockAmt, "checkLockstakeTake/AfterLockDraw/withStaking/invalid-urn-farm-balance"); + } else { + assertEq(GemAbstract(p.lssky).balanceOf(urn), lockAmt, "checkLockstakeTake/AfterLockDraw/withoutStaking/invalid-urn-lsgem-balance"); + assertEq(GemAbstract(p.lssky).balanceOf(p.farm), initialBalances.farmLssky, "checkLockstakeTake/AfterLockDraw/withoutStaking/invalid-farm-lsgem-balance"); + assertEq(GemAbstract(p.farm).balanceOf(urn), 0, "checkLockstakeTake/AfterLockDraw/withoutStaking/invalid-urn-farm-balance"); + } + + _setIlkMat(p.ilk, 100_000 * RAY); + spotter.poke(p.ilk); + assertEq(ClipAbstract(p.clip).kicks(), 0, "checkLockstakeTake/non-0-kicks"); + assertEq(engine.urnAuctions(urn), 0, "checkLockstakeTake/non-0-actions"); + // Overwrite stopped to enable liquidations even if they are disabled at the moment. + stdstore.target(p.clip).sig("stopped()").checked_write(uint256(0)); + // Advance a block because it's not possible to lock and free in the same block on the new Chief. + skip(1); vm.roll(block.number + 1); + uint256 id = dog.bark(p.ilk, urn, address(this)); + assertEq(ClipAbstract(p.clip).kicks(), 1, "checkLockstakeTake/AfterBark/no-kicks"); + assertEq(engine.urnAuctions(urn), 1, "checkLockstakeTake/AfterBark/no-actions"); + Sale memory sale; + (sale.pos, sale.tab, sale.due, sale.lot, sale.tot, sale.usr, sale.tic, sale.top) = LockstakeClipperLike(p.clip).sales(id); + assertEq(sale.pos, 0, "checkLockstakeTake/AfterBark/invalid-sale.pos"); + assertGt(sale.tab, drawAmt * RAY, "checkLockstakeTake/AfterBark/invalid-sale.tab"); + assertGt(sale.due, drawAmt * RAY * WAD / dog.chop(p.ilk), "checkLockstakeTake/AfterBark/invalid-sale.due"); + assertEq(sale.lot, lockAmt, "checkLockstakeTake/AfterBark/invalid-sale.lot"); + assertEq(sale.tot, lockAmt, "checkLockstakeTake/AfterBark/invalid-sale.tot"); + assertEq(sale.usr, urn, "checkLockstakeTake/AfterBark/invalid-sale.usr"); + assertEq(sale.tic, block.timestamp, "checkLockstakeTake/AfterBark/invalid-sale.tic"); + assertEq(sale.top, _getOSMPrice(p.pip) * ClipAbstract(p.clip).buf() / WAD, "checkLockstakeTake/AfterBark/invalid-sale.top"); + assertEq(vat.gem(p.ilk, p.clip), initialBalances.vatGem + lockAmt, "checkLockstakeTake/AfterBark/invalid-vat-gem-clip"); + assertEq(sky.balanceOf(p.engine), initialBalances.engineSky + lockAmt, "checkLockstakeTake/AfterBark/invalid-engine-sky-balance"); + assertEq(GemAbstract(p.lssky).balanceOf(urn), 0, "checkLockstakeTake/AfterBark/invalid-urn-lsgem-balance"); + if (withDelegate) { + assertEq(sky.balanceOf(address(chief)), initialBalances.chiefSky, "checkLockstakeTake/AfterBark/withDelegate/invalid-chief-sky-balance"); + } + if (withStaking) { + assertEq(GemAbstract(p.lssky).balanceOf(p.farm), initialBalances.farmLssky, "checkLockstakeTake/AfterBark/withStaking/invalid-farm-lsgem-balance"); + assertEq(GemAbstract(p.farm).balanceOf(urn), 0, "checkLockstakeTake/AfterBark/withStaking/invalid-urn-farm-balance"); + } + + // Take auction + address buyer = address(888); + vm.prank(pauseProxy); vat.suck(address(0), buyer, sale.tab); + vm.prank(buyer); vat.hope(p.clip); + assertEq(sky.balanceOf(buyer), 0, "checkLockstakeTake/AfterBark/invalid-buyer-sky-balance"); + vm.prank(buyer); ClipAbstract(p.clip).take(id, lockAmt, type(uint256).max, buyer, ""); + assertGt(sky.balanceOf(buyer), 0, "checkLockstakeTake/AfterTake/invalid-buyer-sky-balance"); + (sale.pos, sale.tab,, sale.lot, sale.tot, sale.usr, sale.tic, sale.top) = LockstakeClipperLike(p.clip).sales(id); + assertEq(sale.pos, 0, "checkLockstakeTake/AfterTake/invalid-sale.pos"); + assertEq(sale.tab, 0, "checkLockstakeTake/AfterTake/invalid-sale.tab"); + assertEq(sale.lot, 0, "checkLockstakeTake/AfterTake/invalid-sale.lot"); + assertEq(sale.tot, 0, "checkLockstakeTake/AfterTake/invalid-sale.tot"); + assertEq(sale.usr, address(0), "checkLockstakeTake/AfterTake/invalid-sale.usr"); + assertEq(sale.tic, 0, "checkLockstakeTake/AfterTake/invalid-sale.tic"); + assertEq(sale.top, 0, "checkLockstakeTake/AfterTake/invalid-sale.top"); + assertEq(vat.gem(p.ilk, p.clip), initialBalances.vatGem, "checkLockstakeTake/AfterTake/invalid-vat.gem"); + if (withDelegate) { + assertEq(sky.balanceOf(address(chief)), initialBalances.chiefSky, "checkLockstakeTake/AfterTake/withDelegate/invalid-chief-sky-balance"); + } + if (withStaking) { + assertEq(GemAbstract(p.lssky).balanceOf(p.farm), initialBalances.farmLssky, "checkLockstakeTake/AfterTake/withStaking/invalid-lsgem-farm-balance"); + assertEq(GemAbstract(p.farm).balanceOf(urn), 0, "checkLockstakeTake/AfterTake/withStaking/invalid-farm-urn-balance"); + } + } + + 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 = 100 * 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); + + // Set max line to be able to create new vaults + vm.prank(pauseProxy); + vat.file(_ilk, "line", type(uint256).max); + + // 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))); + + // Take auction as a user + address randomUser = makeAddr("randomUser"); + (, uint256 tab,,,,) = clip.sales(clip.kicks()); + vm.store( // Ensure the user has enough DAI + address(vat), + keccak256(abi.encode(randomUser, uint256(5))), + bytes32(tab) + ); + assertEq(vat.dai(randomUser), tab); + vm.startPrank(randomUser); + vat.hope(address(clip)); + clip.take(clip.kicks(), type(uint256).max, type(uint256).max, address(this), ""); + vm.stopPrank(); + } + + 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; + DssLitePsmLike litePsm = DssLitePsmLike(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.snapshotState(); + + // 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.revertToState(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.revertToState(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.revertToState(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.revertToState(snapshot); + } + vm.deleteStateSnapshots(); + + // ----- 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 + stdstore + .target(address(chief)) + .sig("hat()") + .checked_write(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)); + } + + struct AllocatorIntegrationParams { + bytes32 ilk; + address pip; + address registry; + address roles; + address buffer; + address vault; + address allocatorProxy; + address owner; + } + + function _checkAllocatorIntegration(AllocatorIntegrationParams memory p) internal { + (, uint256 rate, uint256 spot,,) = vat.ilks(p.ilk); + assertEq(rate, RAY); + assertEq(spot, 10**18 * RAY * 10**9 / spotter.par()); + + (address pip,) = spotter.ilks(p.ilk); + assertEq(pip, p.pip); + + assertEq(vat.gem(p.ilk, p.vault), 0); + (uint256 ink, uint256 art) = vat.urns(p.ilk, p.vault); + assertEq(ink, 1_000_000_000_000 * WAD); + assertEq(art, 0); + + assertEq(AllocatorRegistryLike(p.registry).buffers(p.ilk), p.buffer); + assertEq(address(AllocatorVaultLike(p.vault).jug()), address(jug)); + + assertEq(usds.allowance(p.buffer, p.vault), type(uint256).max); + + assertEq(AllocatorRolesLike(p.roles).ilkAdmins(p.ilk), p.allocatorProxy); + + // Allocator Proxy is relied + assertEq(AllocatorVaultLike(p.vault).wards(p.allocatorProxy), 1); + assertEq(WardsAbstract(p.buffer).wards(p.allocatorProxy), 1); + + // When owner != allocatorProxy, owner should not be relied + if (p.owner != p.allocatorProxy) { + assertEq(AllocatorVaultLike(p.vault).wards(p.owner), 0); + assertEq(WardsAbstract(p.buffer).wards(p.owner), 0); + } + + assertEq(reg.join(p.ilk), address(0)); + assertEq(reg.gem(p.ilk), address(0)); + assertEq(reg.dec(p.ilk), 0); + assertEq(reg.class(p.ilk), 5); + assertEq(reg.pip(p.ilk), p.pip); + assertEq(reg.xlip(p.ilk), address(0)); + assertEq(reg.name(p.ilk), _bytes32ToString(p.ilk)); + assertEq(reg.symbol(p.ilk), _bytes32ToString(p.ilk)); + + // Draw & Wipe from Vault + vm.prank(address(p.allocatorProxy)); + AllocatorVaultLike(p.vault).draw(1_000 * WAD); + assertEq(usds.balanceOf(p.buffer), 1_000 * WAD); + + vm.warp(block.timestamp + 1); + jug.drip(p.ilk); + + vm.prank(address(p.allocatorProxy)); + AllocatorVaultLike(p.vault).wipe(1_000 * WAD); + assertEq(usds.balanceOf(p.buffer), 0); + } + + struct OpTokenBridgeParams { + address l2Bridge; + address l1Bridge; + address l1Escrow; + address[] tokens; + address[] l2Tokens; + uint256[] maxWithdrawals; + OptimismDomain domain; + } + + function _testOpTokenBridgeIntegration(OpTokenBridgeParams memory p) public { + for (uint i = 0; i < p.tokens.length; i ++) { + rootDomain.selectFork(); + + assertEq(GemAbstract(p.tokens[i]).allowance(p.l1Escrow, p.l1Bridge), type(uint256).max); + assertEq(L1TokenBridgeLike(p.l1Bridge).l1ToL2Token(p.tokens[i]), p.l2Tokens[i]); + + // switch to L2 domain and relay the spell from L1 + // the `true` keeps us on Base rather than `rootDomain.selectFork()` + p.domain.relayFromHost(true); + + // test L2 side of initBridges + assertEq(L2TokenBridgeLike(p.l2Bridge).l1ToL2Token(p.tokens[i]), p.l2Tokens[i]); + assertEq(L2TokenBridgeLike(p.l2Bridge).maxWithdraws(p.l2Tokens[i]), p.maxWithdrawals[i]); + + assertEq(WardsAbstract(p.l2Tokens[i]).wards(p.l2Bridge), 1); + + // ------- Test Deposit ------- + + rootDomain.selectFork(); + + deal(p.tokens[i], address(this), 100 ether); + assertEq(GemAbstract(p.tokens[i]).balanceOf(address(this)), 100 ether); + + GemAbstract(p.tokens[i]).approve(p.l1Bridge, 100 ether); + uint256 escrowBeforeBalance = GemAbstract(p.tokens[i]).balanceOf(p.l1Escrow); + + L1TokenBridgeLike(p.l1Bridge).bridgeERC20To( + p.tokens[i], + p.l2Tokens[i], + address(0xb0b), + 100 ether, + 1_000_000, + "" + ); + + assertEq(GemAbstract(p.tokens[i]).balanceOf(address(this)), 0); + assertEq(GemAbstract(p.tokens[i]).balanceOf(p.l1Escrow), escrowBeforeBalance + 100 ether); + + p.domain.relayFromHost(true); + + assertEq(GemAbstract(p.l2Tokens[i]).balanceOf(address(0xb0b)), 100 ether); + + // ------- Test Withdrawal ------- + + vm.startPrank(address(0xb0b)); + + GemAbstract(p.l2Tokens[i]).approve(p.l2Bridge, 100 ether); + + L2TokenBridgeLike(p.l2Bridge).bridgeERC20To( + p.l2Tokens[i], + p.tokens[i], + address(0xced), + 100 ether, + 1_000_000, + "" + ); + + vm.stopPrank(); + + assertEq(GemAbstract(p.l2Tokens[i]).balanceOf(address(0xb0b)), 0); + + p.domain.relayToHost(true); + + assertEq(GemAbstract(p.tokens[i]).balanceOf(address(0xced)), 100 ether); + } + } + + function _testArbitrumTokenGatewayIntegration( + L1TokenGatewayLike l1Gateway, + L2TokenGatewayLike l2Gateway, + address l1Escrow, + address[] memory l1Tokens, + address[] memory l2Tokens, + uint256[] memory maxWithdrawals + ) public { + for (uint i = 0; i < l1Tokens.length; i ++) { + rootDomain.selectFork(); + + // test L1 side of gateway init + assertEq(GemAbstract(l1Tokens[i]).allowance(l1Escrow, address(l1Gateway)), maxWithdrawals[i]); + assertEq(l1Gateway.l1ToL2Token(l1Tokens[i]), l2Tokens[i]); + + arbitrumDomain.selectFork(); + // test L2 side of gateway init + assertEq(l2Gateway.l1ToL2Token(l1Tokens[i]), l2Tokens[i]); + assertEq(l2Gateway.maxWithdraws(l2Tokens[i]), maxWithdrawals[i]); + + // ------- Test Deposit ------- + + rootDomain.selectFork(); + uint256 maxSubmissionCost = 0.1 ether; + uint256 maxGas = 1_000_000; + uint256 gasPriceBid = 1 gwei; + uint256 value = maxSubmissionCost + maxGas * gasPriceBid; + + deal(l1Tokens[i], address(this), 100 ether); + assertEq(GemAbstract(l1Tokens[i]).balanceOf(address(this)), 100 ether); + + GemAbstract(l1Tokens[i]).approve(address(l1Gateway), 100 ether); + uint256 escrowBeforeBalance = GemAbstract(l1Tokens[i]).balanceOf(l1Escrow); + + l1Gateway.outboundTransferCustomRefund{value: value}( + address(l1Tokens[i]), + address(0x7ef), + address(0xb0b), + 50 ether, + maxGas, + gasPriceBid, + abi.encode(maxSubmissionCost, "") + ); + l1Gateway.outboundTransfer{value: value}( + address(l1Tokens[i]), + address(0xb0b), + 50 ether, + maxGas, + gasPriceBid, + abi.encode(maxSubmissionCost, "") + ); + + assertEq(GemAbstract(l1Tokens[i]).balanceOf(l1Escrow), escrowBeforeBalance + 100 ether); + + arbitrumDomain.relayFromHost(true); + assertEq(GemAbstract(l2Tokens[i]).balanceOf(address(0xb0b)), 100 ether); + + // ------- Test Withdrawal ------- + + vm.startPrank(address(0xb0b)); + GemAbstract(l2Tokens[i]).approve(address(l2Gateway), 100 ether); + l2Gateway.outboundTransfer( + l1Tokens[i], + address(0xced), + 50 ether, + 0, + 0, + "" + ); + l2Gateway.outboundTransfer( + l1Tokens[i], + address(0xced), + 50 ether, + "" + ); + vm.stopPrank(); + + assertEq(GemAbstract(l2Tokens[i]).balanceOf(address(0xb0b)), 0); + + arbitrumDomain.relayToHost(true); + + assertEq(GemAbstract(l1Tokens[i]).balanceOf(address(0xced)), 100 ether); + } + } + + function _to18ConversionFactor(DssLitePsmLike 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 pure 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 VestInst { + VestAbstract vest; + GemAbstract gem; + string name; + bool isTransferrable; + } + + struct NewVestStream { + uint256 id; + address usr; + uint256 bgn; + uint256 clf; + uint256 fin; + uint256 tau; + address mgr; + uint256 res; + uint256 tot; + uint256 rxd; + } + + struct YankedVestStream { + uint256 id; + uint256 fin; + uint256 end; + } + + function _checkVest( + VestInst memory _vi, + NewVestStream[] memory _nss, + YankedVestStream[] memory _yss + ) internal { + uint256 prevStreamCount = _vi.vest.ids(); + uint256 prevAllowance; + int256 expectedAllowanceChange; + + if (_vi.isTransferrable) { + prevAllowance = _vi.gem.allowance(pauseProxy, address(_vi.vest)); + + + for(uint256 i; i < _yss.length; i++) { + uint256 tot = _vi.vest.tot(_yss[i].id); + uint256 rxd = _vi.vest.rxd(_yss[i].id); + expectedAllowanceChange = expectedAllowanceChange - int256(tot - rxd); + } + } + + for(uint256 i; i < _yss.length; i++) { + assertEq(_vi.vest.fin(_yss[i].id), _yss[i].fin, "TestError/Vest/fin-mismatch"); + } + + uint256 spellCastTime = _getSpellCastTime(); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + // Check that all streams added in this spell are tested + assertEq( + _vi.vest.ids(), + prevStreamCount + _nss.length, + string.concat("TestError/Vest/", _vi.name,"/not-all-streams-tested-") + ); + + if (_vi.isTransferrable) { + for(uint256 i; i < _nss.length; i++) { + uint256 tot = _nss[i].tot; + uint256 rxd = _nss[i].rxd; + expectedAllowanceChange = expectedAllowanceChange + int256(tot - rxd); + } + + uint256 expectedAllowance = uint256(int256(prevAllowance) + expectedAllowanceChange); + + assertEq( + _vi.gem.allowance(pauseProxy, address(_vi.vest)), + expectedAllowance, + string.concat("TestError/Vest/", _vi.name, "/insufficient-transferrable-vest-allowance-") + ); + } + + for (uint256 i = 0; i < _nss.length; i++) { + _checkNewVestStream(_vi, _nss[i]); + } + + for(uint256 i; i < _yss.length; i++) { + _checkYankedVestStream(_vi, _yss[i], spellCastTime); + } + } + + function _checkNewVestStream(VestInst memory _vi, NewVestStream memory _ns) internal { + assertEq(_vi.vest.usr(_ns.id), _ns.usr, string.concat("TestError/Vest/", _vi.name, "/", _uintToString(_ns.id), "/invalid-usr")); + assertEq(_vi.vest.bgn(_ns.id), _ns.bgn, string.concat("TestError/Vest/", _vi.name, "/", _uintToString(_ns.id), "/invalid-bgn")); + assertEq(_vi.vest.clf(_ns.id), _ns.clf, string.concat("TestError/Vest/", _vi.name, "/", _uintToString(_ns.id), "/invalid-clf")); + assertEq(_vi.vest.fin(_ns.id), _ns.fin, string.concat("TestError/Vest/", _vi.name, "/", _uintToString(_ns.id), "/invalid-fin")); + assertEq(_vi.vest.fin(_ns.id), _ns.bgn + _ns.tau, string.concat("TestError/Vest/", _vi.name, "/", _uintToString(_ns.id), "/invalid-fin (bgn + tau)")); + assertEq(_vi.vest.mgr(_ns.id), _ns.mgr, string.concat("TestError/Vest/", _vi.name, "/", _uintToString(_ns.id), "/invalid-mgr")); + assertEq(_vi.vest.res(_ns.id), _ns.res, string.concat("TestError/Vest/", _vi.name, "/", _uintToString(_ns.id), "/invalid-res")); + assertEq(_vi.vest.tot(_ns.id), _ns.tot, string.concat("TestError/Vest/", _vi.name, "/", _uintToString(_ns.id), "/invalid-tot")); + assertEq(_vi.vest.rxd(_ns.id), _ns.rxd, string.concat("TestError/Vest/", _vi.name, "/", _uintToString(_ns.id), "/invalid-rxd")); + + { + uint256 before = vm.snapshotState(); + + // Check each new stream is payable in the future + uint256 pbalance = _vi.gem.balanceOf(_ns.usr); + GodMode.setWard(address(_vi.vest), address(this), 1); + _vi.vest.unrestrict(_ns.id); + + vm.warp(_ns.fin); + + // Set balance of pauseProxy to the total amount of the stream to ensure the stream is payable + GodMode.setBalance(address(sky), pauseProxy, _ns.tot); + _vi.vest.vest(_ns.id); + assertEq( + _vi.gem.balanceOf(_ns.usr), + pbalance + _ns.tot - _ns.rxd, + string.concat("TestError/Vest/", _vi.name, ".", _uintToString(_ns.id), "/invalid-received-amount") + ); + + vm.revertToState(before); + } + + vm.deleteStateSnapshots(); + } + + function _checkYankedVestStream(VestInst memory _vi, YankedVestStream memory _ys, uint256 spellCastTime) internal view { + uint256 _fin = _ys.fin; + uint256 _end = _ys.end > spellCastTime ? _ys.end : spellCastTime; + + if (_end < _fin) { + assertEq(_vi.vest.fin(_ys.id), _end, "TestError/Vest/invalid-fin-after-cast (end < fin)"); + } else { + assertEq(_vi.vest.fin(_ys.id), _fin, "TestError/Vest/invalid-fin-after-cast (fin <= end)"); + } + + assertFalse(_vi.vest.valid(_ys.id), "TestError/Vest/stream-not-yanked-after-cast"); + } + + function _checkTransferrableVestAllowanceAndBalance( + string memory _errSuffix, + GemAbstract _gem, + VestAbstract vest + ) internal { + uint256 vestableAmt; + + for (uint256 i = 1; i <= vest.ids(); i++) { + if (vest.valid(i)) { + (,,,,,,uint128 tot, uint128 rxd) = vest.awards(i); + vestableAmt = vestableAmt + (tot - rxd); + } + } + + uint256 allowance = _gem.allowance(pauseProxy, address(vest)); + assertGe(allowance, vestableAmt, _concat(string("TestError/insufficient-transferrable-vest-allowance-"), _errSuffix)); + + uint256 balance = _gem.balanceOf(pauseProxy); + + // TODO: Change after 2025-08-21 + if (address(_gem) != address(sky)) { + assertGe(balance, vestableAmt, _concat(string("TestError/insufficient-transferrable-vest-balance-"), _errSuffix)); + } else { + // Note: SKY streams will operate out of buybacks, check that balance is sufficient for short term (20 days) + // Note: As discussed with GovOps, when the 2025-10-30 spell is executed, 500 million SKY will be transferred to the PauseProxy. + // TODO: This is a one-time transfer. Update in next spells. + GodMode.setBalance(address(sky), pauseProxy, balance +500_000_000 * WAD); + vm.warp(block.timestamp + 20 days); + + + uint256 requiredBalance; + for (uint256 i = 1; i <= vest.ids(); i++) { + if (vest.valid(i)) { + requiredBalance = requiredBalance + vest.unpaid(i); + } + } + + assertGe(_gem.balanceOf(pauseProxy), requiredBalance, _concat(string("TestError/insufficient-transferrable-vest-balance-for-20-days-"), _errSuffix)); + } + } + + 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); + revert("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.snapshotState(); + + // Cast in the wrong day + { + uint256 spellCastTime = block.timestamp + pause.delay(); + uint256 day = (spellCastTime / 1 days + 3) % 7; + if (day < 5) { + spellCastTime += 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(spellCastTime); + spell.cast(); + } + + vm.revertToState(afterSchedule); + + // Cast too early in the day + + { + uint256 spellCastTime = block.timestamp + pause.delay() + 24 hours; + uint256 hour = spellCastTime / 1 hours % 24; + if (hour >= 14) { + spellCastTime -= hour * 3600 - 13 hours; + } + + vm.expectRevert(); + vm.warp(spellCastTime); + spell.cast(); + } + + vm.revertToState(afterSchedule); + + // Cast too late in the day + + { + uint256 spellCastTime = block.timestamp + pause.delay(); + uint256 hour = spellCastTime / 1 hours % 24; + if (hour < 21) { + spellCastTime += 21 hours - hour * 3600; + } + + vm.expectRevert(); + vm.warp(spellCastTime); + spell.cast(); + } + + vm.deleteStateSnapshots(); + } + } + + 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, 20 * 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 view { + 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(1763150400); // 2025 Nov 14, 20 UTC (could be casted after pause_delay) + + _vote(address(spell)); + spell.schedule(); + + uint256 monday_1400_UTC = 1763388000; // 2025 Nov 17, 14 UTC + uint256 monday_2100_UTC = 1763413200; // 2025 Nov 17, 21 UTC + + // 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 + + // NOTE: skipped due to the custom min ETA logic in the current spell (2025-11-13) + // 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 spellCastTime; + + for(uint256 i = 0; i < 5; i++) { + spellCastTime = monday_1400_UTC + i * 1 days; // Next day at 14:00 UTC + vm.warp(spellCastTime - 1 seconds); // 13:59:59 UTC + assertEq(spell.nextCastTime(), spellCastTime); + + vm.warp(spellCastTime + 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 spellCastTime = spell.nextCastTime(); + assertGe(spellCastTime, 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); + assertLe(metadataLength, expectedBytecodeSize, "TestError/metadata-length-gt-expected-bytecode-size"); + expectedBytecodeSize -= metadataLength; + + metadataLength = _getBytecodeMetadataLength(actualAction); + assertLe(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(uint256(int256(vat.sin(address(vow))) + int256(kick.kbump()))); + + 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 tolerance (flap.want() + delta) + uint256 skyWad = usdsWad * (flap.want() + 10**16) / price; // +1% buffer over want + GodMode.setBalance(address(sky), address(pair), skyWad); + + uint256 lotRad = kick.kbump() * split.burn() / WAD; + + 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"); + } + + { + uint256 pskyBalancePauseProxy = sky.balanceOf(pauseProxy); + uint256 pdaiVow = vat.dai(address(vow)); + uint256 preserveUsds = usds.balanceOf(address(pair)); + uint256 preserveSky = sky.balanceOf(address(pair)); + uint256 preSin = vat.sin(address(vow)); + + kick.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(vat.dai(address(vow)), pdaiVow, "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"); + assertEq(vat.sin(address(vow)) - preSin, kick.kbump(), "TestError/Flapper/invalid-sin-increase"); + + if (split.burn() < 1 * WAD) { + uint256 payWad = (kick.kbump() - lotRad) / RAY; + 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.snapshotState(); + + 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.revertToState(before); + } + + // USDS -> Dai conversion + { + uint256 before = vm.snapshotState(); + + 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.revertToState(before); + } + } + + // Converter: MKR -> SKY + { + address mkrHolder = address(0x42); + deal(address(mkr), mkrHolder, 1_000 * WAD); + address skyHolder = address(0x65); + + // MKR -> SKY conversion + { + uint256 before = vm.snapshotState(); + + uint256 pmkrBalance = mkr.balanceOf(mkrHolder); + uint256 pskyBalance = sky.balanceOf(skyHolder); + + vm.startPrank(mkrHolder); + mkr.approve(address(mkrSky), type(uint256).max); + mkrSky.mkrToSky(skyHolder, pmkrBalance); + vm.stopPrank(); + + uint256 mkrSkyFee = mkrSky.fee(); + uint256 expectedSkyBalance = pskyBalance + ((pmkrBalance * afterSpell.sky_mkr_rate) - (pmkrBalance * afterSpell.sky_mkr_rate * mkrSkyFee / WAD)); + + assertEq(mkr.balanceOf(mkrHolder), 0, "TestError/MKR/bad-mkr-to-sky-conversion"); + assertEq(sky.balanceOf(skyHolder), expectedSkyBalance, "TestError/Sky/bad-mkr-to-sky-conversion"); + + vm.revertToState(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(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"); + } + + vm.deleteStateSnapshots(); + } + + function _testSPBEAMTauAndBudValues() internal { + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done()); + + { + assertEq(spbeam.tau(), afterSpell.SP_tau, "TestError/SPBEAM/invalid-tau"); + assertEq(spbeam.buds(afterSpell.SP_bud), 1, "TestError/SPBEAM/invalid-bud"); + } + } + + // 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)))); + } + + event Plot(address indexed addr, bytes32 tag, uint256 deadline); + event Exec(address indexed addr); + + function _testStarguardExecution( + bytes32 starGuardKey, + address primeAgentSpell, + bytes32 primeAgentSpellHash, + bool directExecutionEnabled + ) internal { + // Sanity check with passed parameters + { + bytes32 deployedSpellHash = primeAgentSpell.codehash; + assertEq(deployedSpellHash, primeAgentSpellHash, "TestError/PrimeAgentSpell/hash-mismatch"); + } + + // Get correct addresses from chainlog + address starGuardAddr = addr.addr(starGuardKey); + assertTrue(starGuardAddr != address(0), "TestError/PrimeAgentSpell/missing-starguard-address"); + StarGuardLike starGuard = StarGuardLike(starGuardAddr); + + address subProxy = starGuard.subProxy(); + + if (directExecutionEnabled) { + // Direct execution path + vm.expectCall( + subProxy, + /* value = */ 0, + abi.encodeCall( + SubProxyLike(subProxy).exec, + (primeAgentSpell, abi.encodeWithSignature("execute()")) + ) + ); + + vm.recordLogs(); + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/PrimeAgentSpell/spell-not-done"); + Vm.Log[] memory entries = vm.getRecordedLogs(); + for (uint256 i = 0; i < entries.length; i++) { + Vm.Log memory logEntry = entries[i]; + if (logEntry.topics[0] == keccak256("Plot(address,bytes32,uint256)")) { + revert("TestError/PrimeAgentSpell/plot-event-emitted-during-direct-execution"); + } + } + + // Ensure starGuard spell data is not updated to current PrimeAgentSpell + (address notUpdatedSpellAddr,,) = starGuard.spellData(); + assertNotEq(primeAgentSpell, notUpdatedSpellAddr, "TestError/PrimeAgentSpell/prime-agent-starguard-spell-updated"); + + // Exit test after direct execution check is done + return; + } + + // Indirect execution path + + // Sanity checks for starGuard configuration + StarGuardJobLike CRON_STARGUARD_JOB = StarGuardJobLike(addr.addr("CRON_STARGUARD_JOB")); + assertTrue( + CRON_STARGUARD_JOB.has(starGuardAddr), + "TestError/PrimeAgentSpell/starguard-not-registered-in-cronjob" + ); + + // PrimeAgentSpell compatibility check + (bool ok, ) = primeAgentSpell.staticcall(abi.encodeWithSignature("isExecutable()")); + assertTrue(ok, "TestError/PrimeAgentSpell/spell-does-not-support-isExecutable"); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/PrimeAgentSpell/spell-not-done"); + + (address spellAddr, bytes32 spellHash, uint256 deadline) = starGuard.spellData(); + + assertEq(primeAgentSpell, spellAddr, "TestError/PrimeAgentSpell/prime-agent-starguard-spell-not-updated"); + assertEq(primeAgentSpellHash, spellHash, "TestError/PrimeAgentSpell/prime-agent-starguard-spell-hash-mismatch"); + + // Try to execute the primeAgentSpell via starGuard before the deadline + while (block.timestamp <= deadline) { + if (!starGuard.prob()) { + skip(1 hours); + } else { + vm.expectEmit(true, false, false, false, address(starGuard)); + emit Exec(address(primeAgentSpell)); + address executed = starGuard.exec(); + assertEq(executed, primeAgentSpell, "StarGuard/exec-wrong-target"); + return; + } + } + revert("TestError/PrimeAgentSpell/spell-not-executable-before-deadline"); + } +} diff --git a/archive/2025-11-13-DssSpell/DssSpell.t.sol b/archive/2025-11-13-DssSpell/DssSpell.t.sol new file mode 100644 index 00000000..788e8334 --- /dev/null +++ b/archive/2025-11-13-DssSpell/DssSpell.t.sol @@ -0,0 +1,1489 @@ +// 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"; + +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 SpellActionLike { + function dao_resolutions() external view returns (string memory); +} + +interface SequencerLike { + function hasJob(address job) external view returns (bool); + function getMaster() external view returns (bytes32); +} + + interface NttManagerLike { + function token() external view returns (address); + function migrateLockedTokens(address) external; + function quoteDeliveryPrice( + uint16 recipientChain, + bytes memory transceiverInstructions + ) external view returns (uint256[] memory, uint256); +} + +interface WormholeLike { + function nextSequence(address) external view returns (uint64); + function messageFee() external view returns (uint256); +} + +contract DssSpellTest is DssSpellTestBase { + using stdStorage for StdStorage; + + // 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(); + } + + function testSPBEAMTauAndBudValues() public { + _testSPBEAMTauAndBudValues(); + } + + // Leave this test always enabled as it acts as 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")), + 0, // tin + 0 // 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 + ); + } + + // Leave this test always enabled as it acts as a config test + 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: 400_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 testRemovedChainlogKeys() public skipped { // add the `skipped` modifier to skip + string[43] memory removedKeys = [ + "PIP_MKR", + "PIP_AAVE", + "PIP_ADAI", + "PIP_BAL", + "PIP_BAT", + "PIP_COMP", + "PIP_CRVV1ETHSTETH", + "PIP_GNO", + "PIP_GUSD", + "PIP_KNC", + "PIP_LINK", + "PIP_LRC", + "PIP_MANA", + "PIP_MATIC", + "PIP_PAX", + "PIP_PAXUSD", + "PIP_RENBTC", + "PIP_RETH", + "PIP_RWA003", + "PIP_RWA006", + "PIP_RWA007", + "PIP_RWA008", + "PIP_RWA010", + "PIP_RWA011", + "PIP_RWA012", + "PIP_RWA013", + "PIP_RWA014", + "PIP_RWA015", + "PIP_TUSD", + "PIP_UNI", + "PIP_UNIV2AAVEETH", + "PIP_UNIV2DAIETH", + "PIP_UNIV2DAIUSDT", + "PIP_UNIV2ETHUSDT", + "PIP_UNIV2LINKETH", + "PIP_UNIV2UNIETH", + "PIP_UNIV2USDCETH", + "PIP_UNIV2WBTCDAI", + "PIP_UNIV2WBTCETH", + "PIP_USDC", + "PIP_USDT", + "PIP_YFI", + "PIP_ZRX" + ]; + + 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")) { + revert(_concat("TestError/key-to-remove-does-not-exist: ", removedKeys[i])); + } else { + revert(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])) { + revert(_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 { + revert(_concat("TestError/unknown-reason: ", removedKeys[i])); + } + } + } + + function testAddedChainlogKeys() public skipped { // add the `skipped` modifier to skip + string[6] memory addedKeys = [ + "MCD_KICK", + "REWARDS_LSSKY_SKY", + "REWARDS_DIST_LSSKY_SKY", + "SPARK_SUBPROXY", + "SPARK_STARGUARD", + "CRON_STARGUARD_JOB" + ]; + + for(uint256 i = 0; i < addedKeys.length; i++) { + vm.expectRevert("dss-chain-log/invalid-key"); + chainLog.getAddress(_stringToBytes32(addedKeys[i])); + } + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + for(uint256 i = 0; i < addedKeys.length; i++) { + assertEq( + chainLog.getAddress(_stringToBytes32(addedKeys[i])), + addr.addr(_stringToBytes32(addedKeys[i])), + string.concat(_concat("testNewChainlogKeys/chainlog-key-mismatch: ", addedKeys[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( + "UNIV2DAIUSDC-A", + GemJoinAbstract(addr.addr("MCD_JOIN_UNIV2DAIUSDC_A")), + ClipAbstract(addr.addr("MCD_CLIP_UNIV2DAIUSDC_A")), + addr.addr("MCD_CLIP_CALC_UNIV2DAIUSDC_A"), + OsmAbstract(addr.addr("PIP_UNIV2DAIUSDC")), + 1 * WAD + ); + } + + function testLockstakeIlkIntegration() public skipped { // add the `skipped` modifier to skip + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + _checkLockstakeIlkIntegration( + LockstakeIlkParams({ + ilk: "LSEV2-SKY-A", + fee: 0, + pip: addr.addr("LOCKSTAKE_ORACLE"), + lssky: addr.addr("LOCKSTAKE_SKY"), + engine: addr.addr("LOCKSTAKE_ENGINE"), + clip: addr.addr("LOCKSTAKE_CLIP"), + calc: addr.addr("LOCKSTAKE_CLIP_CALC"), + farm: addr.addr("REWARDS_LSSKY_SKY"), + rToken: addr.addr("SKY"), + rDistr: addr.addr("REWARDS_DIST_LSSKY_SKY"), + rDur: 7 days + }) + ); + } + + function testAllocatorIntegration() public skipped { // add the `skipped` modifier to skip + AllocatorIntegrationParams memory p = AllocatorIntegrationParams({ + ilk: "ALLOCATOR-OBEX-A", + pip: addr.addr("PIP_ALLOCATOR"), + registry: addr.addr("ALLOCATOR_REGISTRY"), + roles: addr.addr("ALLOCATOR_ROLES"), + buffer: addr.addr("ALLOCATOR_OBEX_A_BUFFER"), + vault: addr.addr("ALLOCATOR_OBEX_A_VAULT"), + allocatorProxy: addr.addr("ALLOCATOR_OBEX_A_SUBPROXY"), + owner: addr.addr("MCD_PAUSE_PROXY") + }); + + // Sanity checks + require(AllocatorVaultLike(p.vault).ilk() == p.ilk, "AllocatorInit/vault-ilk-mismatch"); + require(AllocatorVaultLike(p.vault).roles() == p.roles, "AllocatorInit/vault-roles-mismatch"); + require(AllocatorVaultLike(p.vault).buffer() == p.buffer, "AllocatorInit/vault-buffer-mismatch"); + require(AllocatorVaultLike(p.vault).vat() == address(vat), "AllocatorInit/vault-vat-mismatch"); + require(AllocatorVaultLike(p.vault).usdsJoin() == address(usdsJoin), "AllocatorInit/vault-usds-join-mismatch"); + require(AllocatorVaultLike(p.vault).wards(p.owner) == 1, "TestError/vault-owner-not-authed"); + require(WardsAbstract(p.buffer).wards(p.owner) == 1, "TestError/buffer-owner-not-authed"); + + if (p.owner != p.allocatorProxy) { + require(AllocatorVaultLike(p.vault).wards(p.allocatorProxy) == 0, "TestError/vault-allocator-proxy-authed-early"); + require(WardsAbstract(p.buffer).wards(p.allocatorProxy) == 0, "TestError/buffer-allocator-proxy-authed-early"); + } + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + _checkAllocatorIntegration(p); + + // Note: skipped for this onboarding as no operators are added + // Role and allowance checks - Specific to ALLOCATOR-BLOOM-A only + // address allocatorOperator = wallets.addr("BLOOM_OPERATOR"); + // assertEq(usds.allowance(p.buffer, allocatorOperator), type(uint256).max); + // assertTrue(AllocatorRolesLike(p.roles).hasActionRole("ALLOCATOR-BLOOM-A", p.vault, AllocatorVaultLike.draw.selector, 0)); + // assertTrue(AllocatorRolesLike(p.roles).hasActionRole("ALLOCATOR-BLOOM-A", p.vault, AllocatorVaultLike.wipe.selector, 0)); + + // The allocator proxy should be able to call draw() wipe() + vm.prank(p.allocatorProxy); + AllocatorVaultLike(p.vault).draw(1_000 * WAD); + assertEq(usds.balanceOf(p.buffer), 1_000 * WAD); + + vm.warp(block.timestamp + 1); + jug.drip(p.ilk); + + vm.prank(p.allocatorProxy); + AllocatorVaultLike(p.vault).wipe(1_000 * WAD); + assertEq(usds.balanceOf(p.buffer), 0); + } + + 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 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 testOsmReaders() public skipped { // add the `skipped` modifier to skip + address OSM = addr.addr("PIP_SKY"); + address[4] memory newReaders = [ + addr.addr("MCD_SPOT"), + addr.addr("LOCKSTAKE_CLIP"), + addr.addr("CLIPPER_MOM"), + addr.addr("MCD_END") + ]; + + for (uint256 i = 0; i < newReaders.length; i++) { + assertEq(OsmAbstract(OSM).bud(newReaders[i]), 0); + } + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + for (uint256 i = 0; i < newReaders.length; i++) { + assertEq(OsmAbstract(OSM).bud(newReaders[i]), 1); + } + } + + function testMedianReaders() public skipped { // add the `skipped` modifier to skip + address median = chainLog.getAddress("PIP_MKR"); // PIP_MKR before spell + address[1] memory newReaders = [ + addr.addr('PIP_MKR') // PIP_MKR after spell + ]; + + for (uint256 i = 0; i < newReaders.length; i++) { + assertEq(MedianAbstract(median).bud(newReaders[i]), 0); + } + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + for (uint256 i = 0; i < newReaders.length; i++) { + assertEq(MedianAbstract(median).bud(newReaders[i]), 1); + } + } + + struct Authorization { + bytes32 base; + bytes32 ward; + } + + function testNewAuthorizations() public skipped { // add the `skipped` modifier to skip + Authorization[5] memory newAuthorizations = [ + Authorization({ base: "MCD_VAT", ward: "STUSDS" }), + Authorization({ base: "STUSDS", ward: "STUSDS_MOM" }), + Authorization({ base: "STUSDS_RATE_SETTER", ward: "STUSDS_MOM" }), + Authorization({ base: "STUSDS", ward: "STUSDS_RATE_SETTER" }), + Authorization({ base: "STUSDS", ward: "LOCKSTAKE_CLIP" }) + ]; + + for (uint256 i = 0; i < newAuthorizations.length; i++) { + address base = addr.addr(newAuthorizations[i].base); + address ward = addr.addr(newAuthorizations[i].ward); + assertEq(WardsAbstract(base).wards(ward), 0, _concat("testNewAuthorizations/already-authorized-", newAuthorizations[i].base)); + } + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + for (uint256 i = 0; i < newAuthorizations.length; i++) { + address base = addr.addr(newAuthorizations[i].base); + address ward = addr.addr(newAuthorizations[i].ward); + assertEq(WardsAbstract(base).wards(ward), 1, _concat("testNewAuthorizations/not-authorized-", newAuthorizations[i].base)); + } + } + + function testVestDai() public skipped { // add the `skipped` modifier to skip + // Provide human-readable names for timestamps + uint256 OCT_01_2024 = 1727740800; + uint256 JAN_31_2025 = 1738367999; + + // For each new stream, provide Stream object and initialize the array with the current number of new streams + NewVestStream[] memory newStreams = new NewVestStream[](1); + newStreams[0] = NewVestStream({ + id: 39, + usr: wallets.addr("JANSKY"), + bgn: OCT_01_2024, + clf: OCT_01_2024, + fin: JAN_31_2025, + tau: 123 days - 1, + mgr: address(0), + res: 1, + tot: 168_000 * WAD, + rxd: 0 // Amount already claimed + }); + + // For each yanked stream, provide Stream object and initialize the array with the current number of yanked streams + YankedVestStream[] memory yankedStreams = new YankedVestStream[](0); + + _checkVest( + VestInst({vest: vestDai, gem: GemAbstract(address(dai)), name: "dai", isTransferrable: false}), + newStreams, + yankedStreams + ); + } + + function testVestMkr() public skipped { // add the `skipped` modifier to skip + // Provide human-readable names for timestamps + uint256 OCT_01_2024 = 1727740800; + uint256 JAN_31_2025 = 1738367999; + + // For each new stream, provide Stream object and initialize the array with the current number of new streams + NewVestStream[] memory newStreams = new NewVestStream[](1); + newStreams[0] = NewVestStream({ + id: 45, + usr: wallets.addr("JANSKY"), + bgn: OCT_01_2024, + clf: OCT_01_2024, + fin: JAN_31_2025, + tau: 123 days - 1, + mgr: address(0), + res: 1, + tot: 72 * WAD, + rxd: 0 // Amount already claimed + }); + + // For each yanked stream, provide Stream object and initialize the array with the current number of yanked streams + YankedVestStream[] memory yankedStreams = new YankedVestStream[](0); + + _checkVest( + VestInst({vest: vestMkr, gem: GemAbstract(address(mkr)), name: "mkr", isTransferrable: true}), + newStreams, + yankedStreams + ); + } + + function testVestUsds() public skipped { // add the `skipped` modifier to skip + // Provide human-readable names for timestamps + uint256 FEB_01_2025 = 1738368000; + uint256 DEC_31_2025 = 1767225599; + + // For each new stream, provide Stream object and initialize the array with the current number of new streams + NewVestStream[] memory newStreams = new NewVestStream[](3); + newStreams[0] = NewVestStream({ + id: 1, + usr: wallets.addr("VOTEWIZARD"), + bgn: FEB_01_2025, + clf: FEB_01_2025, + fin: DEC_31_2025, + tau: 334 days - 1, + mgr: address(0), + res: 1, + tot: 462_000 * WAD, + rxd: 0 // Amount already claimed + }); + newStreams[1] = NewVestStream({ + id: 2, + usr: wallets.addr("JANSKY"), + bgn: FEB_01_2025, + clf: FEB_01_2025, + fin: DEC_31_2025, + tau: 334 days - 1, + mgr: address(0), + res: 1, + tot: 462_000 * WAD, + rxd: 0 // Amount already claimed + }); + newStreams[2] = NewVestStream({ + id: 3, + usr: wallets.addr("ECOSYSTEM_FACILITATOR"), + bgn: FEB_01_2025, + clf: FEB_01_2025, + fin: DEC_31_2025, + tau: 334 days - 1, + mgr: address(0), + res: 1, + tot: 462_000 * WAD, + rxd: 0 // Amount already claimed + }); + + // For each yanked stream, provide Stream object and initialize the array with the current number of yanked streams + YankedVestStream[] memory yankedStreams = new YankedVestStream[](0); + + _checkVest( + VestInst({vest: vestUsds, gem: usds, name: "usds", isTransferrable: false}), + newStreams, + yankedStreams + ); + } + + function testVestSky() public skipped { // add the `skipped` modifier to skip + uint256 spellCastTime = _getSpellCastTime(); + + // Build expected new stream + NewVestStream[] memory newStreams = new NewVestStream[](1); + newStreams[0] = NewVestStream({ + id: 8, + usr: addr.addr("REWARDS_DIST_LSSKY_SKY"), + bgn: spellCastTime - 7 days, + clf: spellCastTime - 7 days, + fin: (spellCastTime - 7 days) + 180 days, + tau: 180 days, + mgr: address(0), + res: 1, + tot: 1_000_000_000 * WAD, + rxd: (7 days * 1_000_000_000 * WAD) / 180 days + }); + + // No yanked streams expected + YankedVestStream[] memory yankedStreams = new YankedVestStream[](0); + + _checkVest( + VestInst({vest: vestSky, gem: sky, name: "sky", isTransferrable: true}), + newStreams, + yankedStreams + ); + } + + function testVestSkyMint() public skipped { // add the `skipped` modifier to skip + // Provide human-readable names for timestamps + // uint256 DEC_01_2023 = 1701385200; + + uint256 spellCastTime = _getSpellCastTime(); + + // For each new stream, provide Stream object and initialize the array with the current number of new streams + NewVestStream[] memory newStreams = new NewVestStream[](1); + newStreams[0] = NewVestStream({ + id: 2, + usr: addr.addr("REWARDS_DIST_USDS_SKY"), + bgn: spellCastTime, + clf: spellCastTime, + fin: spellCastTime + 15_724_800 seconds, + tau: 15_724_800 seconds, + mgr: address(0), + res: 1, + tot: 160_000_000 * WAD, + rxd: 0 // Amount already claimed + }); + + // For each yanked stream, provide Stream object and initialize the array with the current number of yanked streams + YankedVestStream[] memory yankedStreams = new YankedVestStream[](0); + + _checkVest( + VestInst({vest: vestSkyMint, gem: sky, name: "skyMint", isTransferrable: false}), + newStreams, + yankedStreams + ); + } + + function testVestSpk() public skipped { // add the `skipped` modifier to skip + // Provide human-readable names for timestamps + uint256 spellCastTime = _getSpellCastTime(); + uint256 CAST_TIME_MINUS_7_DAYS = spellCastTime - 7 days; + uint256 BGN_PLUS_730_DAYS = CAST_TIME_MINUS_7_DAYS + 730 days; + + // For each new stream, provide Stream object and initialize the array with the current number of new streams + NewVestStream[] memory newStreams = new NewVestStream[](2); + + newStreams[0] = NewVestStream({ + id: 1, + usr: addr.addr("REWARDS_DIST_USDS_SPK"), + bgn: CAST_TIME_MINUS_7_DAYS, + clf: CAST_TIME_MINUS_7_DAYS, + fin: BGN_PLUS_730_DAYS, + tau: 730 days, + mgr: address(0), + res: 1, + tot: 2_275_000_000 * WAD, + rxd: 7 days * 2_275_000_000 * WAD / 730 days // Amount already claimed + }); + newStreams[1] = NewVestStream({ + id: 2, + usr: addr.addr("REWARDS_DIST_LSSKY_SPK"), + bgn: CAST_TIME_MINUS_7_DAYS, + clf: CAST_TIME_MINUS_7_DAYS, + fin: BGN_PLUS_730_DAYS, + tau: 730 days, + mgr: address(0), + res: 1, + tot: 975_000_000 * WAD, + rxd: 7 days * 975_000_000 * WAD / 730 days // Amount already claimed + }); + + // For each yanked stream, provide Stream object and initialize the array with the current number of yanked streams + YankedVestStream[] memory yankedStreams = new YankedVestStream[](0); + + _checkVest( + VestInst({vest: vestSpk, gem: spk, name: "spk", isTransferrable: true}), + newStreams, + yankedStreams + ); + } + + struct Payee { + address token; + address addr; + int256 amount; + } + + struct PaymentAmounts { + int256 dai; + int256 mkr; + int256 usds; + int256 sky; + } + + struct TreasuryAmounts { + int256 mkr; + int256 sky; + } + + function testPayments() public { // add the `skipped` modifier to skip + // Note: set to true when there are additional DAI/USDS operations (e.g. surplus buffer sweeps, SubDAO draw-downs) besides direct transfers + bool ignoreTotalSupplyDaiUsds = false; + bool ignoreTotalSupplyMkrSky = false; + + // 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(address(usds), addr.addr("ALLOCATOR_OBEX_A_SUBPROXY"), 21_000_000 ether) // Note: ether is only a keyword helper + ]; + + // Fill the total values from exec sheet + PaymentAmounts memory expectedTotalPayments = PaymentAmounts({ + dai: 0 ether, // Note: ether is only a keyword helper + mkr: 0 ether, // Note: ether is only a keyword helper + usds: 21_000_000 ether, // Note: ether is only a keyword helper + sky: 0 ether // Note: ether is only a keyword helper + }); + + // Fill the total values based on the source for the transfers above + TreasuryAmounts memory expectedTreasuryBalancesDiff = TreasuryAmounts({ + mkr: 0 ether, // Note: ether is only a keyword helper + sky: 0 ether // Note: ether is only a keyword helper + }); + + // 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 + uint256 previousSurplusBalance = vat.sin(address(vow)); + TreasuryAmounts memory previousTreasuryBalances = TreasuryAmounts({ + mkr: int256(mkr.balanceOf(pauseProxy)), + sky: int256(sky.balanceOf(pauseProxy)) + }); + PaymentAmounts memory previousTotalSupply = PaymentAmounts({ + dai: int256(dai.totalSupply()), + mkr: int256(mkr.totalSupply()), + usds: int256(usds.totalSupply()), + sky: int256(sky.totalSupply()) + }); + PaymentAmounts memory calculatedTotalPayments; + PaymentAmounts[] memory previousPayeeBalances = new PaymentAmounts[](payees.length); + + for (uint256 i = 0; i < payees.length; i++) { + if (payees[i].token == address(dai)) { + calculatedTotalPayments.dai += payees[i].amount; + } else if (payees[i].token == address(mkr)) { + calculatedTotalPayments.mkr += payees[i].amount; + } else if (payees[i].token == address(usds)) { + calculatedTotalPayments.usds += payees[i].amount; + } else if (payees[i].token == address(sky)) { + calculatedTotalPayments.sky += payees[i].amount; + } else { + revert('TestPayments/unexpected-payee-token'); + } + previousPayeeBalances[i] = PaymentAmounts({ + dai: int256(dai.balanceOf(payees[i].addr)), + mkr: int256(mkr.balanceOf(payees[i].addr)), + usds: int256(usds.balanceOf(payees[i].addr)), + sky: int256(sky.balanceOf(payees[i].addr)) + }); + } + + assertEq( + calculatedTotalPayments.dai, + expectedTotalPayments.dai, + "TestPayments/calculated-vs-expected-dai-total-mismatch" + ); + assertEq( + calculatedTotalPayments.usds, + expectedTotalPayments.usds, + "TestPayments/calculated-vs-expected-usds-total-mismatch" + ); + assertEq( + calculatedTotalPayments.mkr, + expectedTotalPayments.mkr, + "TestPayments/calculated-vs-expected-mkr-total-mismatch" + ); + assertEq( + calculatedTotalPayments.sky, + expectedTotalPayments.sky, + "TestPayments/calculated-vs-expected-sky-total-mismatch" + ); + + // Cast spell + spell.cast(); + assertTrue(spell.done(), "TestPayments/spell-not-done"); + + // Check calculated vs actual totals + PaymentAmounts memory totalSupplyDiff = PaymentAmounts({ + dai: int256(dai.totalSupply()) - previousTotalSupply.dai, + mkr: int256(mkr.totalSupply()) - previousTotalSupply.mkr, + usds: int256(usds.totalSupply()) - previousTotalSupply.usds, + sky: int256(sky.totalSupply()) - previousTotalSupply.sky + }); + + if (ignoreTotalSupplyDaiUsds == false) { + // Assume USDS or Dai payments are made form the surplus buffer, meaning new ERC-20 tokens are emitted + assertEq( + totalSupplyDiff.dai + totalSupplyDiff.usds, + calculatedTotalPayments.dai + calculatedTotalPayments.usds, + "TestPayments/invalid-dai-usds-total" + ); + // Check that dai/usds transfers modify surplus buffer + assertEq(vat.sin(address(vow)) - previousSurplusBalance, uint256(calculatedTotalPayments.dai + calculatedTotalPayments.usds) * RAY); + } + + TreasuryAmounts memory treasuryBalancesDiff = TreasuryAmounts({ + mkr: int256(mkr.balanceOf(pauseProxy)) - previousTreasuryBalances.mkr, + sky: int256(sky.balanceOf(pauseProxy)) - previousTreasuryBalances.sky + }); + if (ignoreTotalSupplyMkrSky == false) { + assertEq( + expectedTreasuryBalancesDiff.mkr, + treasuryBalancesDiff.mkr, + "TestPayments/actual-vs-expected-mkr-treasury-mismatch" + ); + + assertEq( + expectedTreasuryBalancesDiff.sky, + treasuryBalancesDiff.sky, + "TestPayments/actual-vs-expected-sky-treasury-mismatch" + ); + // Sky or MKR payments might come from token emission or from the treasury + assertEq( + (totalSupplyDiff.mkr - treasuryBalancesDiff.mkr) * int256(afterSpell.sky_mkr_rate) + + totalSupplyDiff.sky - treasuryBalancesDiff.sky, + calculatedTotalPayments.mkr * int256(afterSpell.sky_mkr_rate) + + calculatedTotalPayments.sky, + "TestPayments/invalid-mkr-sky-total" + ); + } + + // Check that payees received their payments + for (uint256 i = 0; i < payees.length; i++) { + if (payees[i].token == address(dai)) { + assertEq( + int256(dai.balanceOf(payees[i].addr)), + previousPayeeBalances[i].dai + payees[i].amount, + "TestPayments/invalid-payee-dai-balance" + ); + } else if (payees[i].token == address(mkr)) { + assertEq( + int256(mkr.balanceOf(payees[i].addr)), + previousPayeeBalances[i].mkr + payees[i].amount, + "TestPayments/invalid-payee-mkr-balance" + ); + } else if (payees[i].token == address(usds)) { + assertEq( + int256(usds.balanceOf(payees[i].addr)), + previousPayeeBalances[i].usds + payees[i].amount, + "TestPayments/invalid-payee-usds-balance" + ); + } else if (payees[i].token == address(sky)) { + assertEq( + int256(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_STARGUARD_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 { // replace `view` with 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 = [ + "bafkreidm3bqfiwv224m6w4zuabsiwqruy22sjfaxfvgx4kgcnu3wndxmva" + ]; + + 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"); + } + + struct AllocatorPayment { + address vault; + uint256 wad; + } + + struct MscIlkValues { + uint256 urnArt; + uint256 ilkArt; + } + + function _testExpectedMscValues(AllocatorPayment[2] memory payments, MscIlkValues[] memory expectedValues, uint256 expectedDaiVow) internal view { + for(uint256 i = 0; i < payments.length; i++) { + bytes32 ilk = AllocatorVaultLike(payments[i].vault).ilk(); + (, uint256 urnArt) = vat.urns(ilk, address(payments[i].vault)); + (uint256 ilkArt,,,,) = vat.ilks(ilk); + + assertEq(urnArt, expectedValues[i].urnArt, "MSC/invalid-urn-art"); + assertEq(ilkArt, expectedValues[i].ilkArt, "MSC/invalid-ilk-art"); + } + + uint256 daiVow = vat.dai(address(vow)); + + assertEq(daiVow, expectedDaiVow, "MSC/invalid-dai-value"); + } + + function testMonthlySettlementCycleInflows() public skipped { // add the `skipped` modifier to skip + address ALLOCATOR_BLOOM_A_VAULT = addr.addr("ALLOCATOR_BLOOM_A_VAULT"); + address ALLOCATOR_SPARK_A_VAULT = addr.addr("ALLOCATOR_SPARK_A_VAULT"); + + AllocatorPayment[2] memory payments = [ + AllocatorPayment(ALLOCATOR_SPARK_A_VAULT, 16_931_086 * WAD), + AllocatorPayment(ALLOCATOR_BLOOM_A_VAULT, 6_382_973 * WAD) + ]; + + uint256 expectedTotalAmount = 23_314_059 * WAD; + + MscIlkValues[] memory expectedValues = new MscIlkValues[](payments.length); + uint256 totalDtab = 0; + uint256 totalPayments = 0; + + uint256 before = vm.snapshotState(); + + for(uint256 i = 0; i < payments.length; i++) { + bytes32 ilk = AllocatorVaultLike(payments[i].vault).ilk(); + (, uint256 urnArt) = vat.urns(ilk, address(payments[i].vault)); + (uint256 ilkArt,,,,) = vat.ilks(ilk); + + uint256 rate = jug.drip(ilk); + uint256 dart = payments[i].wad > 0 ? ((payments[i].wad * RAY - 1) / rate) + 1 : 0; + + totalPayments += payments[i].wad; + totalDtab += dart * rate; + expectedValues[i] = MscIlkValues(urnArt + dart, ilkArt + dart); + } + assertEq(totalPayments, expectedTotalAmount, "MSC/invalid-total-amount"); + + uint256 expectedDaiVow = vat.dai(address(vow)) + totalDtab; + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + // Test with MCD_JUG.drip() having been called in the same block + _testExpectedMscValues(payments, expectedValues, expectedDaiVow); + + vm.revertToStateAndDelete(before); + + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + + // Test without prior MCD_JUG.drip() + _testExpectedMscValues(payments, expectedValues, expectedDaiVow); + } + + // Spark tests + function testSparkSpellIsExecuted() public { // add the `skipped` modifier to skip + _testStarguardExecution({ + starGuardKey: "SPARK_STARGUARD", + primeAgentSpell: 0x63Fa202a7020e8eE0837196783f0fB768CBFE2f1, // Insert Spark spell address + primeAgentSpellHash: 0x6e88f81cc72989a637f4b87592dcde2016272fbceb08a2af3b2effdb2d20c0fb, // Insert Spark spell hash + directExecutionEnabled: false // Set to true if the spark spell is executed directly from core spell + }); + } + + // Bloom/Grove tests + function testBloomSpellIsExecuted() public skipped { // add the `skipped` modifier to skip + address BLOOM_PROXY = addr.addr('ALLOCATOR_BLOOM_A_SUBPROXY'); + address BLOOM_SPELL = address(0x8b4A92f8375ef89165AeF4639E640e077d7C656b); // Insert Bloom spell address + + vm.expectCall( + BLOOM_PROXY, + /* value = */ 0, + abi.encodeCall( + SubProxyLike(BLOOM_PROXY).exec, + (BLOOM_SPELL, abi.encodeWithSignature("execute()")) + ) + ); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + } + + // Nova/Keel tests + function testNovaSpellIsExecuted() public skipped { // add the `skipped` modifier to skip + address NOVA_PROXY = addr.addr('ALLOCATOR_NOVA_A_SUBPROXY'); + address NOVA_SPELL = address(0x7ae136b7e677C6A9B909a0ef0a4E29f0a1c3c7fE); // Insert Nova spell address + + vm.expectCall( + NOVA_PROXY, + /* value = */ 0, + abi.encodeCall( + SubProxyLike(NOVA_PROXY).exec, + (NOVA_SPELL, abi.encodeWithSignature("execute()")) + ) + ); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + } + + // Obex tests + function testObexSpellIsExecuted() public { // add the `skipped` modifier to skip + address OBEX_PROXY = addr.addr('ALLOCATOR_OBEX_A_SUBPROXY'); + address OBEX_SPELL = address(0xF538909eDF14d2c23002C2b3882Ad60f79d61893); // Insert Obex spell address + + vm.expectCall( + OBEX_PROXY, + /* value = */ 0, + abi.encodeCall( + SubProxyLike(OBEX_PROXY).exec, + (OBEX_SPELL, abi.encodeWithSignature("execute()")) + ) + ); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/spell-not-done"); + } + + // SPELL-SPECIFIC TESTS GO BELOW + + // 2025-11-17 14:00:00 UTC + uint256 constant MIN_ETA = 1763388000; + + function testNextCastTimeMinEta() public { + // Spell obtains approval for execution before MIN_ETA + { + uint256 before = vm.snapshotState(); + + vm.warp(1748736000); // 2025-06-01 00:00:00 UTC - could be any date far enough in the past + _vote(address(spell)); + spell.schedule(); + + // Execute before MIN_ETA is not allowed + vm.warp(1763128800); // 2025-11-14 14:00:00 UTC + + // Try execute before MIN_ETA + // The error will be overwriten from PauseProxy + vm.expectRevert('ds-pause-delegatecall-error'); + spell.cast(); + + assertEq(spell.nextCastTime(), MIN_ETA, "testNextCastTimeMinEta/min-eta-not-enforced"); + + vm.revertToStateAndDelete(before); + } + + // Spell obtains approval for execution after MIN_ETA + { + uint256 before = vm.snapshotState(); + + vm.warp(MIN_ETA); // As we move closer to MIN_ETA, GSM delay is still applicable + _vote(address(spell)); + spell.schedule(); + + assertGe(spell.nextCastTime(), MIN_ETA + pause.delay(), "testNextCastTimeMinEta/gsm-delay-not-enforced"); + + vm.revertToStateAndDelete(before); + } + } + + event LogMessagePublished(address indexed sender, uint64 sequence, uint32 nonce, bytes payload, uint8 consistencyLevel); + event Upgraded(address indexed implementation); + + function testMigrationStep0() public { + WormholeLike wormholeCoreBridge = WormholeLike(0x98f3c9e6E3fAce36bAAd05FE09d375Ef1464288B); + NttManagerLike nttManager = NttManagerLike(0x7d4958454a3f520bDA8be764d06591B054B0bf33); + address transferWallet = makeAddr("transferWallet"); + + address nttManagerImpV2 = 0xD4DD90bAC23E2a1470681E7cAfFD381FE44c3430; + bytes memory payloadWhProgramUpgrade = hex"000000000000000047656e6572616c507572706f7365476f7665726e616e636502000106742d7ca523a03aaafe48abab02e47eb8aef53415cb603c47a3ccf864d86dc002a8f6914e88a1b0e210153ef763ae2b00c2b93d16c124d2c0537a10048000000007a821ac5164fa9b54fd93b54dba8215550b8fce868f52299169f6619867cac501000106856f43abf4aaa4a26b32ae8ea4cb8fadc8e02d267703fbd5f9dad85f6d00b300012d27f5131975fdaf20a5934c6e90f6d7c9bbde9fcf94c37b48c5a49c7f06aae2000105cab222188023f74394ecaee9daf397c11a2a672511adc34958c1d7bdb1c673000106a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a00000000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000000006f776e65720000000000000000000000000000000000000000000000000000000100000403000000"; + + uint16 solanaWormholeChainId = 1; // Defined in https://wormhole.com/docs/products/reference/chain-ids/ + address nttManagerToken = nttManager.token(); + uint8 tokenDecimals = GemAbstract(nttManagerToken).decimals(); + + // Prepare transfer wallet + vm.deal(transferWallet, 10 ether); // High enough to cover all the fees + GodMode.setBalance(nttManagerToken, address(transferWallet), 2 * 10 ** tokenDecimals); + vm.prank(transferWallet); + GemAbstract(nttManagerToken).approve(address(nttManager), 2 * 10 ** tokenDecimals); + + (, uint256 totalDeliveryPrice) = nttManager.quoteDeliveryPrice(solanaWormholeChainId, new bytes(1)); + + // Transfer is possible before upgrade + vm.prank(transferWallet); + (bool transferBeforeSpell,) = + address(nttManager).call{value: totalDeliveryPrice}( + abi.encodeWithSignature( + "transfer(uint256,uint16,bytes32)", + 1 * 10 ** tokenDecimals, + solanaWormholeChainId, + bytes32("solanaAddress") + ) + ); + assertTrue(transferBeforeSpell, "Test/MigrationStep0/transfer-call-should-succeed"); + + _vote(address(spell)); + + // _scheduleWaitAndCast run manually to capture the wormhole event + spell.schedule(); + vm.warp(spell.nextCastTime()); + + // Spell reverts when fee is bigger than 0 + vm.mockCall( + address(wormholeCoreBridge), + abi.encodeWithSelector(WormholeLike.messageFee.selector), + abi.encode(1) + ); + vm.expectRevert(); + spell.cast(); + vm.clearMockedCalls(); + + // NTT Manager implementation upgrade event + vm.expectEmit(true, true, true, true, address(nttManager)); + emit Upgraded(nttManagerImpV2); + + // Wormhole message sent event + vm.expectEmit(true, true, true, true, address(wormholeCoreBridge)); + emit LogMessagePublished(pauseProxy, wormholeCoreBridge.nextSequence(pauseProxy), 0, payloadWhProgramUpgrade, 202); + + spell.cast(); + + assertTrue(spell.done(), "TestError/spell-not-done"); + + // Transfer is not possible after upgrade + vm.prank(transferWallet); + (bool transferAfterSpell,) = + address(nttManager).call{value: totalDeliveryPrice}( + abi.encodeWithSignature( + "transfer(uint256,uint16,bytes32)", + 1 * 10 ** tokenDecimals, + solanaWormholeChainId, + bytes32("solanaAddress") + ) + ); + assertFalse(transferAfterSpell, "Test/MigrationStep0/transfer-call-should-fail"); + + // Test call migrateLockedTokens success + uint256 nttManagerBalance = usds.balanceOf(address(nttManager)); + uint256 pauseProxyBalance = usds.balanceOf(pauseProxy); + + vm.prank(pauseProxy); + nttManager.migrateLockedTokens(pauseProxy); + + assertEq(usds.balanceOf(address(nttManager)), 0, "Test/MigrationStep0/lockedTokens-balance-mismatch"); + assertEq(usds.balanceOf(pauseProxy), pauseProxyBalance + nttManagerBalance, "Test/MigrationStep0/migratedLockedTokens-balance-mismatch"); + } + + function testWhitelistObexALMProxy() public { + address almProxy = addr.addr("OBEX_ALM_PROXY"); + DssLitePsmLike psmUsdcA = DssLitePsmLike(addr.addr("MCD_LITE_PSM_USDC_A")); + GemAbstract usdc = GemAbstract(addr.addr("USDC")); + + // bud is 0 before kiss + assertEq(psmUsdcA.bud(almProxy), 0, "TestError/MCD_LITE_PSM_USDC_A/invalid-bud"); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done()); + + // bud is 1 after kiss + assertEq(psmUsdcA.bud(almProxy), 1, "TestError/MCD_LITE_PSM_USDC_A/invalid-bud"); + + // OBEX can call buyGemNoFee() on MCD_LITE_PSM_USDC_A + uint256 daiAmount = 1_000 * WAD; + uint256 usdcAmount = 1_000 * 10**6; + + // fund proxy + deal(address(dai), almProxy, daiAmount); + vm.startPrank(almProxy); + + // buy gem with no fee + dai.approve(address(psmUsdcA), daiAmount); + psmUsdcA.buyGemNoFee(almProxy, usdcAmount); + assertEq(usdc.balanceOf(almProxy), usdcAmount); + assertEq(dai.balanceOf(almProxy), 0); + + // now sell it back with no fee + usdc.approve(address(psmUsdcA), usdcAmount); + psmUsdcA.sellGemNoFee(almProxy, usdcAmount); + assertEq(usdc.balanceOf(almProxy), 0); + assertEq(dai.balanceOf(almProxy), daiAmount); + + vm.stopPrank(); + } +} diff --git a/archive/2025-11-13-DssSpell/dependencies/wh-lz-migration/MigrationInit.sol b/archive/2025-11-13-DssSpell/dependencies/wh-lz-migration/MigrationInit.sol new file mode 100644 index 00000000..abb62340 --- /dev/null +++ b/archive/2025-11-13-DssSpell/dependencies/wh-lz-migration/MigrationInit.sol @@ -0,0 +1,267 @@ +// SPDX-FileCopyrightText: © 2025 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; + +interface ChainlogLike { + function getAddress(bytes32) external view returns (address); +} + +interface NttManagerLike { + function token() external view returns (address); + function mode() external view returns (uint8); + function chainId() external view returns (uint16); + function rateLimitDuration() external view returns (uint64); + function upgrade(address) external; + function migrateLockedTokens(address) external; +} + +interface WormholeLike { + function messageFee() external view returns (uint256); + function publishMessage(uint32 nonce, bytes memory payload, uint8 consistencyLevel) external payable returns (uint64); +} + +interface OAppLike { + function owner() external view returns (address); + function endpoint() external view returns (address); + function peers(uint32) external view returns (bytes32); +} + +interface OFTAdapterLike is OAppLike { + struct RateLimitConfig { + uint32 eid; + uint48 window; + uint256 limit; + } + function token() external view returns (address); + function defaultFeeBps() external view returns (uint16); + function feeBps(uint32) external view returns (uint16, bool); + function paused() external view returns (bool); + function outboundRateLimits(uint32) external view returns (uint128, uint48, uint256, uint256); + function inboundRateLimits(uint32) external view returns (uint128, uint48, uint256, uint256); + function rateLimitAccountingType() external view returns (uint8); + function setRateLimits(RateLimitConfig[] calldata, RateLimitConfig[] calldata) external; +} + +interface EndpointLike { + function delegates(address) external view returns (address); +} + +library MigrationInit { + ChainlogLike constant LOG = ChainlogLike(0xdA0Ab1e0017DEbCd72Be8599041a2aa3bA7e740F); + + address constant WORMHOLE_CORE_BRIDGE = 0x98f3c9e6E3fAce36bAAd05FE09d375Ef1464288B; + address constant NTT_MANAGER = 0x7d4958454a3f520bDA8be764d06591B054B0bf33; + address constant ETH_LZ_ENDPOINT = 0x1a44076050125825900e736c501f859c50fE728c; + uint32 constant SOL_EID = 30168; + + function _publishWHMessage(address wormhole, uint256 fee, bytes memory payload) internal { + WormholeLike(wormhole).publishMessage{value: fee}({ + nonce: 0, + payload: payload, + consistencyLevel: 202 // "Finalized" (~19 minutes - see https://wormhole.com/docs/build/reference/consistency-levels/) + }); + } + + ////////////////////// + /////// Step 0 /////// + ////////////////////// + + function initMigrationStep0( + address nttManagerImpV2, + uint256 maxFee, + bytes memory payload, + address nttManager, + address wormhole + ) internal { + NttManagerLike mgr = NttManagerLike(nttManager); + NttManagerLike impV2 = NttManagerLike(nttManagerImpV2); + + // Sanity checks + require(impV2.token() == mgr.token(), "MigrationInit/token-mismatch"); + require(impV2.mode() == mgr.mode(), "MigrationInit/mode-mismatch"); + require(impV2.chainId() == mgr.chainId(), "MigrationInit/chain-id-mismatch"); + require(impV2.rateLimitDuration() == mgr.rateLimitDuration(), "MigrationInit/rl-dur-mismatch"); + + // Upgrade Ethereum NTT Manager + mgr.upgrade(nttManagerImpV2); + + // Upgrade Solana NTT Manager + uint256 fee = WormholeLike(wormhole).messageFee(); + require(fee <= maxFee, "MigrationInit/exceeds-max-fee"); + _publishWHMessage({ + wormhole: wormhole, + fee: fee, + payload: payload + }); + } + + function initMigrationStep0( + address nttManagerImpV2, + uint256 maxFee, + bytes memory payload + ) internal { + initMigrationStep0({ + nttManagerImpV2: nttManagerImpV2, + maxFee: maxFee, + payload: payload, + nttManager: NTT_MANAGER, + wormhole: WORMHOLE_CORE_BRIDGE + }); + } + + ////////////////////// + /////// Step 1 /////// + ////////////////////// + + function _sanityCheckOapp(address oapp, uint32 solEid, address owner, address endpoint, bytes32 peer) internal view { + OAppLike oapp_ = OAppLike(oapp); + // Note that the oapp's enforcedOptions are assumed to have been manually reviewed by Sky + require(oapp_.owner() == owner, "MigrationInit/owner-mismatch"); + require(oapp_.endpoint() == endpoint, "MigrationInit/endpoint-mismatch"); + require(oapp_.peers(solEid) == peer, "MigrationInit/peer-mismatch"); + require(EndpointLike(endpoint).delegates(oapp) == owner, "MigrationInit/delegate-mismatch"); + } + + function _sanityCheckOft(address oftAdapter, uint32 solEid, address token, uint8 rlAccountingType) internal view { + OFTAdapterLike oft = OFTAdapterLike(oftAdapter); + (uint16 feeBps, bool enabled) = oft.feeBps(solEid); + (,,,uint256 outLimit) = oft.outboundRateLimits(solEid); + (,,,uint256 inLimit) = oft.inboundRateLimits(solEid); + require(oft.token() == token, "MigrationInit/token-mismatch"); + require(oft.defaultFeeBps() == 0, "MigrationInit/incorrect-default-fee"); + require(feeBps == 0 && !enabled, "MigrationInit/incorrect-solana-fee"); + require(!oft.paused(), "MigrationInit/paused"); + require(outLimit == 0, "MigrationInit/outbound-rl-nonzero"); + require(inLimit == 0, "MigrationInit/inbound-rl-nonzero"); + require(oft.rateLimitAccountingType() == rlAccountingType , "MigrationInit/rl-accounting-mismatch"); + } + + struct RateLimitsParams { + uint48 outboundWindow; + uint256 outboundLimit; + uint48 inboundWindow; + uint256 inboundLimit; + uint8 rlAccountingType; + } + + struct MigrationStep1Params { + address oftAdapter; + bytes32 oftPeer; + address govOapp; + bytes32 govPeer; + RateLimitsParams rl; + uint256 maxFee; + bytes transferMintAuthPayload; + bytes transferFreezeAuthPayload; + bytes transferMetadataUpdateAuthPayload; + address nttManager; + address wormhole; + address owner; + address endpoint; + uint32 solEid; + } + + function initMigrationStep1( + MigrationStep1Params memory p + ) internal { + // Sanity checks + _sanityCheckOapp(p.oftAdapter, p.solEid, p.owner, p.endpoint, p.oftPeer); + _sanityCheckOapp(p.govOapp, p.solEid, p.owner, p.endpoint, p.govPeer); + _sanityCheckOft(p.oftAdapter, p.solEid, NttManagerLike(p.nttManager).token(), p.rl.rlAccountingType); + + // Migrated Locked Tokens + NttManagerLike(p.nttManager).migrateLockedTokens(p.oftAdapter); + + // Activate USDS Ethereum LZ Bridge + OFTAdapterLike.RateLimitConfig[] memory inboundCfg = new OFTAdapterLike.RateLimitConfig[](1); + OFTAdapterLike.RateLimitConfig[] memory outboundCfg = new OFTAdapterLike.RateLimitConfig[](1); + inboundCfg[0] = OFTAdapterLike.RateLimitConfig(p.solEid, p.rl.inboundWindow, p.rl.inboundLimit); + outboundCfg[0] = OFTAdapterLike.RateLimitConfig(p.solEid, p.rl.outboundWindow, p.rl.outboundLimit); + OFTAdapterLike(p.oftAdapter).setRateLimits(inboundCfg, outboundCfg); + + uint256 fee = WormholeLike(p.wormhole).messageFee(); + require(fee <= p.maxFee, "MigrationInit/exceeds-max-fee"); + + // Transfer Mint Authority + _publishWHMessage({ + wormhole: p.wormhole, + fee: fee, + payload: p.transferMintAuthPayload + }); + + // Transfer Freeze Authority + _publishWHMessage({ + wormhole: p.wormhole, + fee: fee, + payload: p.transferFreezeAuthPayload + }); + + // Transfer Metadata Update Authority + _publishWHMessage({ + wormhole: p.wormhole, + fee: fee, + payload: p.transferMetadataUpdateAuthPayload + }); + } + + function initMigrationStep1( + address oftAdapter, + bytes32 oftPeer, + address govOapp, + bytes32 govPeer, + RateLimitsParams memory rl, + uint256 maxFee, + bytes memory transferMintAuthPayload, + bytes memory transferFreezeAuthPayload, + bytes memory transferMetadataUpdateAuthPayload + ) internal { + MigrationStep1Params memory p = MigrationStep1Params({ + oftAdapter: oftAdapter, + oftPeer: oftPeer, + govOapp: govOapp, + govPeer: govPeer, + rl: rl, + maxFee: maxFee, + transferMintAuthPayload: transferMintAuthPayload, + transferFreezeAuthPayload: transferFreezeAuthPayload, + transferMetadataUpdateAuthPayload: transferMetadataUpdateAuthPayload, + nttManager: NTT_MANAGER, + wormhole: WORMHOLE_CORE_BRIDGE, + owner: LOG.getAddress("MCD_PAUSE_PROXY"), + endpoint: ETH_LZ_ENDPOINT, + solEid: SOL_EID + }); + initMigrationStep1(p); + } + + function initSusdsBridge( + address oftAdapter, + bytes32 oftPeer, + RateLimitsParams memory rl + ) internal { + // Sanity checks + _sanityCheckOapp(oftAdapter, SOL_EID, LOG.getAddress("MCD_PAUSE_PROXY"), ETH_LZ_ENDPOINT, oftPeer); + _sanityCheckOft(oftAdapter, SOL_EID, LOG.getAddress("SUSDS"), rl.rlAccountingType); + + // Activate sUSDS Ethereum LZ Bridge + OFTAdapterLike.RateLimitConfig[] memory inboundCfg = new OFTAdapterLike.RateLimitConfig[](1); + OFTAdapterLike.RateLimitConfig[] memory outboundCfg = new OFTAdapterLike.RateLimitConfig[](1); + inboundCfg[0] = OFTAdapterLike.RateLimitConfig(SOL_EID, rl.inboundWindow, rl.inboundLimit); + outboundCfg[0] = OFTAdapterLike.RateLimitConfig(SOL_EID, rl.outboundWindow, rl.outboundLimit); + OFTAdapterLike(oftAdapter).setRateLimits(inboundCfg, outboundCfg); + } +} diff --git a/archive/2025-11-13-DssSpell/test/addresses_arbitrum.sol b/archive/2025-11-13-DssSpell/test/addresses_arbitrum.sol new file mode 100644 index 00000000..2d1bba5f --- /dev/null +++ b/archive/2025-11-13-DssSpell/test/addresses_arbitrum.sol @@ -0,0 +1,31 @@ +// 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 ArbitrumAddresses { + + mapping (bytes32 => address) public addr; + constructor() { + addr["L2_USDS"] = 0x6491c05A82219b8D1479057361ff1654749b876b; + addr["L2_SUSDS"] = 0xdDb46999F8891663a8F2828d25298f70416d7610; + addr["L2_TOKEN_BRIDGE"] = 0x13F7F24CA959359a4D710D32c715D4bce273C793; + addr["L2_TOKEN_BRIDGE_IMP"] = 0xD404eD36D6976BdCad8ABbcCC9F09ef07e33A9A8; + addr["L2_TOKEN_BRIDGE_SPELL"] = 0x3D4357c3944F7A5b6a0B5b67B36588BA45D3f49D; + addr["L2_ROUTER"] = 0x5288c571Fd7aD117beA99bF60FE0846C4E84F933; + addr["L2_GOV_RELAY"] = 0x10E6593CDda8c58a1d0f14C5164B376352a55f2F; + } +} diff --git a/archive/2025-11-13-DssSpell/test/addresses_base.sol b/archive/2025-11-13-DssSpell/test/addresses_base.sol new file mode 100644 index 00000000..70a66c91 --- /dev/null +++ b/archive/2025-11-13-DssSpell/test/addresses_base.sol @@ -0,0 +1,32 @@ +// 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 BaseAddresses { + + mapping (bytes32 => address) public addr; + + constructor() { + addr["L2_BASE_TOKEN_BRIDGE"] = 0xee44cdb68D618d58F75d9fe0818B640BD7B8A7B7; + addr["L2_GOV_RELAY"] = 0xdD0BCc201C9E47c6F6eE68E4dB05b652Bb6aC255; + addr["L2_SPELL"] = 0x6f29C3A29A3F056A71FB0714551C8D3547268D62; + addr["L2_USDS"] = 0x820C137fa70C8691f0e44Dc420a5e53c168921Dc; + addr["L2_SUSDS"] = 0x5875eEE11Cf8398102FdAd704C9E96607675467a; + addr["L2_BASE_TOKEN_BRIDGE_IMP"] = 0x289A37BE5D6CCeF7A8f2b90535B3BB6bD3905f72; + addr["L2_MESSENGER"] = 0x4200000000000000000000000000000000000007; + } +} diff --git a/archive/2025-11-13-DssSpell/test/addresses_deployers.sol b/archive/2025-11-13-DssSpell/test/addresses_deployers.sol new file mode 100644 index 00000000..e42c35bc --- /dev/null +++ b/archive/2025-11-13-DssSpell/test/addresses_deployers.sol @@ -0,0 +1,67 @@ +// 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 + 0x89aAB8CAeEf8d25051cA6E534C6944e51f15DAd2, // Deployer for ALLOCATOR-NOVA-A, + 0xe3aeA2949A0b0F3BD4e897C577286766a9F4aed0, // Deployer for SPBEAM + 0x12E85B7a985283bbFf212A059e2D226397b78F95, // LZ deployer + 0x86865836187fD889B7AE65027056F3Fb43312018 // Deployer for OBEX_ALM_PROXY + ]; + } + + function count() external view returns (uint256) { + return addr.length; + } +} diff --git a/archive/2025-11-13-DssSpell/test/addresses_mainnet.sol b/archive/2025-11-13-DssSpell/test/addresses_mainnet.sol new file mode 100644 index 00000000..e029c0f2 --- /dev/null +++ b/archive/2025-11-13-DssSpell/test/addresses_mainnet.sol @@ -0,0 +1,597 @@ +// 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"] = 0x56072C95FAA701256059aa122697B133aDEd9279; + addr["MKR"] = 0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2; + addr["MKR_GUARD"] = 0x6eEB68B2C7A918f36B78E2DB80dcF279236DDFb8; + addr["MCD_ADM"] = 0x929d9A1435662357F54AdcF64DcEE4d6b867a6f9; + addr["MCD_ADM_LEGACY"] = 0x0a3f6849f78076aefaDf113F5BED87720274dDC0; + addr["VOTE_PROXY_FACTORY"] = 0x6FCD258af181B3221073A96dD90D1f7AE7eEc408; + addr["VOTE_DELEGATE_FACTORY_LEGACY"] = 0xC3D809E87A2C9da4F6d98fECea9135d834d6F5A0; + addr["VOTE_DELEGATE_FACTORY"] = 0x4Cf3DaeFA2683Cd18df00f7AFF5169C00a9EccD5; + 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_USDS"] = 0xc447a9745aDe9A44Bb9E37B7F6C92f9582544110; + 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"] = 0x4F94e33D0D74CfF5Ca0D3a66F1A650628551C56b; + 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_SPK_AAVE_LIDO_USDS_POOL"] = 0xbf674d0cD6841C1d7f9b8E809B967B3C5E867653; + addr["DIRECT_SPK_AAVE_LIDO_USDS_PLAN"] = 0xea2abB24bF40ac97746AFf6daCA0BBF885014b31; + addr["DIRECT_SPK_AAVE_LIDO_USDS_ORACLE"] = 0x9dB0EB29c2819f9AE0A91A6E6f644C35a7493E9b; + 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_SUBPROXY"] = 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"] = 0xE564C4E237f4D7e0130FdFf6ecC8a5E931C51494; + 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["PIP_SKY"] = 0x511485bBd96e7e3a056a8D1b84C5071071C52D6F; + addr["MKR_SKY_LEGACY"] = 0xBDcFCA946b6CDd965f99a839e4435Bcdc1bc470B; + addr["MKR_SKY"] = 0xA1Ea1bA18E88C381C724a75F23a130420C403f9a; + addr["UNIV2DAIMKR"] = 0x517F9dD285e75b599234F7221227339478d0FcC8; + addr["UNIV2USDSSKY"] = 0x2621CC0B3F3c079c1Db0E80794AA24976F0b9e3c; + addr["MCD_SPLIT"] = 0xBF7111F13386d23cb2Fba5A538107A73f6872bCF; + addr["SPLITTER_MOM"] = 0xF51a075d468dE7dE3599C1Dc47F5C42d02C9230e; + addr["MCD_FLAP"] = 0x374D9c3d5134052Bc558F432Afa1df6575f07407; + addr["FLAP_SKY_ORACLE"] = 0xc2ffbbDCCF1466Eb8968a846179191cb881eCdff; + addr["MCD_VEST_SKY"] = 0xB313Eab3FdE99B2bB4bA9750C2DDFBe2729d1cE9; + addr["MCD_VEST_SKY_TREASURY"] = 0x67eaDb3288cceDe034cE95b0511DCc65cf630bB6; + addr["REWARDS_USDS_SKY"] = 0x0650CAF159C5A49f711e8169D4336ECB9b950275; + addr["REWARDS_DIST_USDS_SKY"] = 0xC8d67Fcf101d3f89D0e1F3a2857485A84072a63F; + addr["REWARDS_USDS_01"] = 0x10ab606B067C9C461d8893c47C7512472E19e2Ce; + addr["REWARDS_LSMKR_USDS_LEGACY"] = 0x92282235a39bE957fF1f37619fD22A9aE5507CB1; + addr["REWARDS_LSSKY_USDS"] = 0x38E4254bD82ED5Ee97CD1C4278FAae748d998865; + addr["CRON_REWARDS_DIST_JOB"] = 0x6464C34A02DD155dd0c630CE233DD6e21C24F9A5; + addr["WRAPPER_USDS_LITE_PSM_USDC_A"] = 0xA188EEC8F81263234dA3622A406892F3D630f98c; + addr["LOCKSTAKE_MKR_OLD_V1"] = 0xb4e0e45e142101dC3Ed768bac219fC35EDBED295; + addr["LOCKSTAKE_ENGINE_OLD_V1"] = 0x2b16C07D5fD5cC701a0a871eae2aad6DA5fc8f12; + addr["LOCKSTAKE_CLIP_OLD_V1"] = 0xA85621D35cAf9Cf5C146D2376Ce553D7B78A6239; + addr["LOCKSTAKE_CLIP_CALC_OLD_V1"] = 0xf13cF3b39823CcfaE6C2354dA56416C80768474e; + addr["LOCKSTAKE_SKY"] = 0xf9A9cfD3229E985B91F99Bc866d42938044FFa1C; + addr["LOCKSTAKE_ENGINE"] = 0xCe01C90dE7FD1bcFa39e237FE6D8D9F569e8A6a3; + addr["LOCKSTAKE_CLIP"] = 0x836F56750517b1528B5078Cba4Ac4B94fBE4A399; + addr["LOCKSTAKE_CLIP_CALC"] = 0xB8f8c7caabFa320717E3e848948450e120F0D9BB; + addr["LOCKSTAKE_MIGRATOR"] = 0x473d777f608C3C24B441AB6bD4bBcA6b7F9AF90B; + addr["LOCKSTAKE_ORACLE"] = 0x0C13fF3DC02E85aC169c4099C09c9B388f2943Fd; + addr["BASE_GOV_RELAY"] = 0x1Ee0AE8A993F2f5abDB51EAF4AC2876202b65c3b; + addr["BASE_ESCROW"] = 0x7F311a4D48377030bD810395f4CCfC03bdbe9Ef3; + addr["BASE_TOKEN_BRIDGE"] = 0xA5874756416Fa632257eEA380CAbd2E87cED352A; + addr["BASE_TOKEN_BRIDGE_IMP"] = 0xaeFd31c2e593Dc971f9Cb42cBbD5d4AD7F1970b6; + addr["ALLOCATOR_ROLES"] = 0x9A865A710399cea85dbD9144b7a09C889e94E803; + addr["ALLOCATOR_REGISTRY"] = 0xCdCFA95343DA7821fdD01dc4d0AeDA958051bB3B; + addr["ALLOCATOR_SPARK_A_VAULT"] = 0x691a6c29e9e96dd897718305427Ad5D534db16BA; + addr["ALLOCATOR_SPARK_A_BUFFER"] = 0xc395D150e71378B47A1b8E9de0c1a83b75a08324; + addr["ALLOCATOR_NOVA_A_VAULT"] = 0xe4470DD3158F7A905cDeA07260551F72d4bB0e77; + addr["ALLOCATOR_NOVA_A_BUFFER"] = 0x065E5De3D3A08c9d14BF79Ce5A6d3D0E8794640c; + addr["ALLOCATOR_NOVA_A_SUBPROXY"] = 0x355CD90Ecb1b409Fdf8b64c4473C3B858dA2c310; + addr["PIP_ALLOCATOR"] = 0xc7B91C401C02B73CBdF424dFaaa60950d5040dB7; + addr["EMSP_CLIP_BREAKER_FAB"] = 0x867852D30bb3CB1411fB4e404FAE28EF742b1023; + addr["EMSP_DDM_DISABLE_FAB"] = 0x8BA0f6C4009Ea915706e1bCfB1d879E34587dC69; + addr["EMSP_LINE_WIPE_FAB"] = 0x8646F8778B58a0dF118FacEdf522181bA7277529; + addr["EMSP_OSM_STOP_FAB"] = 0x83211c74131bA2B3de7538f588f1c2f309e81eF0; + addr["EMSP_GLOBAL_CLIP_BREAKER"] = 0x828824dBC62Fba126C76E0Abe79AE28E5393C2cb; + addr["EMSP_GLOBAL_LINE_WIPE"] = 0x4B5f856B59448304585C2AA009802A16946DDb0f; + addr["EMSP_GLOBAL_OSM_STOP"] = 0x3021dEdB0bC677F43A23Fcd1dE91A07e5195BaE8; + addr["EMSP_LITE_PSM_HALT_FAB"] = 0xB261b73698F6dBC03cB1E998A3176bdD81C3514A; + addr["EMSP_SPLITTER_STOP"] = 0x12531afC02aC18a9597Cfe8a889b7B948243a60b; + addr["ARBITRUM_TOKEN_BRIDGE"] = 0x84b9700E28B23F873b82c1BEb23d86C091b6079E; + addr["ARBITRUM_TOKEN_BRIDGE_IMP"] = 0x12eDe82637d5507026D4CDb3515B4b022Ed157b1; + addr["ARBITRUM_ROUTER"] = 0x72Ce9c846789fdB6fC1f34aC4AD25Dd9ef7031ef; + addr["ARBITRUM_INBOX"] = 0x4Dbd4fc535Ac27206064B68FfCf827b0A60BAB3f; + addr["MCD_BLOW2"] = 0x81EFc7Dd25241acd8E5620F177E42F4857A02B79; + addr["ALLOCATOR_BLOOM_A_VAULT"] = 0x26512A41C8406800f21094a7a7A0f980f6e25d43; + addr["ALLOCATOR_BLOOM_A_BUFFER"] = 0x629aD4D779F46B8A1491D3f76f7E97Cb04D8b1Cd; + addr["ALLOCATOR_BLOOM_A_SUBPROXY"] = 0x1369f7b2b38c76B6478c0f0E66D94923421891Ba; + addr["SPBEAM_MOM"] = 0xf0C6e6Ec8B367cC483A411e595D3Ba0a816d37D0; + addr["MCD_SPBEAM"] = 0x36B072ed8AFE665E3Aa6DaBa79Decbec63752b22; + addr["EMSP_SPBEAM_HALT"] = 0xDECF4A7E4b9CAa3c3751D163866941a888618Ac0; + addr["MCD_PROTEGO"] = 0x5C9c3cb0490938c9234ABddeD37a191576ED8624; + addr["UNICHAIN_GOV_RELAY"] = 0xb383070Cf9F4f01C3a2cfD0ef6da4BC057b429b7; + addr["UNICHAIN_ESCROW"] = 0x1196F688C585D3E5C895Ef8954FFB0dCDAfc566A; + addr["UNICHAIN_TOKEN_BRIDGE"] = 0xDF0535a4C96c9Cd8921d8FeC92A7680b281681d2; + addr["UNICHAIN_TOKEN_BRIDGE_IMP"] = 0x8A925ccFd5F7f46332E2D719A916f8b4a643599F; + addr["OPTIMISM_TOKEN_BRIDGE"] = 0x3d25B7d486caE1810374d37A48BCf0963c9B8057; + addr["OPTIMISM_TOKEN_BRIDGE_IMP"] = 0xA50adBad34c1e9786979bD44220F8fd46e43A6B0; + addr["SPK"] = 0xc20059e0317DE91738d13af027DfC4a50781b066; + addr["MCD_VEST_SPK_TREASURY"] = 0xF9A2002b471f600A5484da5a735a2A053d377078; + addr["REWARDS_USDS_SPK"] = 0x173e314C7635B45322cd8Cb14f44b312e079F3af; + addr["REWARDS_DIST_USDS_SPK"] = 0x3959e23A63CA7ac12D658bb44F90cb1f7Ee4C02c; + addr["REWARDS_LSSKY_SPK"] = 0x99cBC0e4E6427F6939536eD24d1275B95ff77404; + addr["REWARDS_DIST_LSSKY_SPK"] = 0xa3Ee378BdD0b7DD403cEd3a0A65B2B389A2eaB7e; + addr["ENS"] = 0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72; + addr["STAAVE"] = 0x4da27a545c0c5B758a6BA100e3a049001de870f5; + addr["STUSDS"] = 0x99CD4Ec3f88A45940936F469E4bB72A2A701EEB9; + addr["STUSDS_IMP"] = 0x7A61B7adCFD493f7CF0F86dFCECB94b72c227F22; + addr["STUSDS_RATE_SETTER"] = 0x30784615252B13E1DbE2bDf598627eaC297Bf4C5; + addr["STUSDS_MOM"] = 0xf5DEe2CeDC5ADdd85597742445c0bf9b9cAfc699; + addr["ALLOCATOR_NOVA_A_SUBPROXY"] = 0x355CD90Ecb1b409Fdf8b64c4473C3B858dA2c310; + addr["NOVA_ALM_PROXY"] = 0xa5139956eC99aE2e51eA39d0b57C42B6D8db0758; + addr["ALLOCATOR_OBEX_A_VAULT"] = 0xF275110dFE7B80df66a762f968f59B70BABE2b29; + addr["ALLOCATOR_OBEX_A_BUFFER"] = 0x51E9681D7a05abFD33EfaFd43e5dd3Afc0093F1D; + addr["ALLOCATOR_OBEX_A_SUBPROXY"] = 0x8be042581f581E3620e29F213EA8b94afA1C8071; + addr["MCD_KICK"] = 0xD889477102e8C4A857b78Fcc2f134535176Ec1Fc; + addr["REWARDS_LSSKY_SKY"] = 0xB44C2Fb4181D7Cb06bdFf34A46FdFe4a259B40Fc; + addr["REWARDS_DIST_LSSKY_SKY"] = 0x675671A8756dDb69F7254AFB030865388Ef699Ee; + addr["SPARK_STARGUARD"] = 0x6605aa120fe8b656482903E7757BaBF56947E45E; + addr["CRON_STARGUARD_JOB"] = 0xB18d211fA69422a9A848B790C5B4a3957F7Aa44E; + addr["OBEX_ALM_PROXY"] = 0xb6dD7ae22C9922AFEe0642f9Ac13e58633f715A2; + } +} diff --git a/archive/2025-11-13-DssSpell/test/addresses_optimism.sol b/archive/2025-11-13-DssSpell/test/addresses_optimism.sol new file mode 100644 index 00000000..63542d43 --- /dev/null +++ b/archive/2025-11-13-DssSpell/test/addresses_optimism.sol @@ -0,0 +1,32 @@ +// 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 OptimismAddresses { + + mapping (bytes32 => address) public addr; + + constructor() { + addr["L2_OPTIMISM_GOV_RELAY"] = 0x10E6593CDda8c58a1d0f14C5164B376352a55f2F; + addr["L2_OPTIMISM_TOKEN_BRIDGE"] = 0x8F41DBF6b8498561Ce1d73AF16CD9C0d8eE20ba6; + addr["L2_OPTIMISM_TOKEN_BRIDGE_IMP"] = 0xc2702C859016db756149716cc4d2B7D7A436CF04; + addr["L2_OPTIMISM_USDS"] = 0x4F13a96EC5C4Cf34e442b46Bbd98a0791F20edC3; + addr["L2_OPTIMISM_SUSDS"] = 0xb5B2dc7fd34C249F4be7fB1fCea07950784229e0; + addr["L2_OPTIMISM_SPELL"] = 0x99892216eD34e8FD924A1dBC758ceE61a9109409; + addr["L2_OPTIMISM_MESSENGER"] = 0x4200000000000000000000000000000000000007; + } +} diff --git a/archive/2025-11-13-DssSpell/test/addresses_unichain.sol b/archive/2025-11-13-DssSpell/test/addresses_unichain.sol new file mode 100644 index 00000000..c1b5f3b3 --- /dev/null +++ b/archive/2025-11-13-DssSpell/test/addresses_unichain.sol @@ -0,0 +1,32 @@ +// 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 UnichainAddresses { + + mapping (bytes32 => address) public addr; + + constructor() { + addr["L2_UNICHAIN_GOV_RELAY"] = 0x3510a7F16F549EcD0Ef018DE0B3c2ad7c742990f; + addr["L2_UNICHAIN_TOKEN_BRIDGE"] = 0xa13152006D0216Fe4627a0D3B006087A6a55D752; + addr["L2_UNICHAIN_TOKEN_BRIDGE_IMP"] = 0xd78292C12707CF28E8EB7bf06fA774D1044C2dF5; + addr["L2_UNICHAIN_USDS"] = 0x7E10036Acc4B56d4dFCa3b77810356CE52313F9C; + addr["L2_UNICHAIN_SUSDS"] = 0xA06b10Db9F390990364A3984C04FaDf1c13691b5; + addr["L2_UNICHAIN_SPELL"] = 0x32760698c87834c02ED9AFF2d4FC3e16c029B936; + addr["L2_UNICHAIN_MESSENGER"] = 0x4200000000000000000000000000000000000007; + } +} diff --git a/archive/2025-11-13-DssSpell/test/addresses_wallets.sol b/archive/2025-11-13-DssSpell/test/addresses_wallets.sol new file mode 100644 index 00000000..ff63ad84 --- /dev/null +++ b/archive/2025-11-13-DssSpell/test/addresses_wallets.sol @@ -0,0 +1,230 @@ +// 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"] = 0x5041c60C75633F29DEb2AED79cB0A9ed79202415; + 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; + addr["ECOSYSTEM_TEAM"] = 0x05F471262d15EECA4059DadE070e5BEd509a4e73; + + // Ecosystem Scope + addr["ECOSYSTEM_SCOPE_WALLET"] = 0x6E51E0b5813152880C1389E3e860e69E06aD04D9; + + // Accessibility Scope + addr["LAUNCH_PROJECT_FUNDING"] = 0x3C5142F28567E6a0F172fd0BaaF1f2847f49D02F; + + // Sky Ecosystem Liquidity Bootstrapping + addr["LIQUIDITY_BOOTSTRAPPING"] = 0xD8507ef0A59f37d15B5D7b630FA6EEa40CE4AFdD; + + // Integration Boost Initiative + addr["INTEGRATION_BOOST_INITIATIVE"] = 0xD6891d1DFFDA6B0B1aF3524018a1eE2E608785F7; + + // Early Bird Rewards Multisig + addr["EARLY_BIRD_REWARDS"] = 0x14D98650d46BF7679BBD05D4f615A1547C87Bf68; + + // Sky Frontier Foundation Grant + addr["SKY_FRONTIER_FOUNDATION"] = 0xca5183FB9997046fbd9bA8113139bf5a5Af122A0; + + // Fortification Foundation Grant + addr["FORTIFICATION_FOUNDATION"] = 0x483413ccCD796Deddee88E4d3e202425d5E891C6; + + // 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["CLOAKY_2"] = 0x9244F47D70587Fa2329B89B6f503022b63Ad54A5; + 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; + addr["EXCEL"] = 0x0F04a22B62A26e25A29Cba5a595623038ef7AcE7; + addr["AEGIS_D"] = 0x78C180CF113Fe4845C325f44648b6567BC79d6E0; + addr["TANGO"] = 0xB2B86A130B1EC101e4Aed9a88502E08995760307; + addr["SKY_STAKING"] = 0x05c73AE49fF0ec654496bF4008d73274a919cB5C; + + // 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; + addr["IMMUNEFI_USER_PAYOUT_2025_03_20"] = 0x29d17B5AcB1C68C574712B11F36C859F6FbdBe32; + addr["WHITEHAT_PAYOUT_2025_01_09"] = 0xB5BB14252099CAef65912ad2F1BBd9434cF24c38; + + // Resilience Research Funding + addr["RESILIENCE_RESEARCH_FUNDING"] = 0x1378056c0cdd771de52A111E2777293516fA910c; + + // Nova + addr["NOVA_OPERATOR"] = 0x0f72935f6de6C54Ce8056FD040d4Ddb012B7cd54; + + // SPBEAM + addr["SPBEAM_BUD"] = 0xe1c6f81D0c3CD570A77813b81AA064c5fff80309; + + // Core Council Multisigs + addr["CORE_COUNCIL_BUDGET_MULTISIG"] = 0x210CFcF53d1f9648C1c4dcaEE677f0Cb06914364; + addr["CORE_COUNCIL_DELEGATE_MULTISIG"] = 0x37FC5d447c8c54326C62b697f674c93eaD2A93A3; + } +} diff --git a/archive/2025-11-13-DssSpell/test/config.sol b/archive/2025-11-13-DssSpell/test/config.sol new file mode 100644 index 00000000..dcf3e367 --- /dev/null +++ b/archive/2025-11-13-DssSpell/test/config.sol @@ -0,0 +1,1142 @@ +// 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 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; + bytes32 split_farm; + uint256 flap_want; + uint256 dog_Hole; + uint256 esm_min; + bytes32 pause_authority; + bytes32 osm_mom_authority; + bytes32 clipper_mom_authority; + bytes32 d3m_mom_authority; + bytes32 line_mom_authority; + bytes32 lite_psm_mom_authority; + bytes32 splitter_mom_authority; + bytes32 spbeam_mom_authority; + bytes32 stusds_mom_authority; + uint256 vest_dai_cap; + uint256 vest_mkr_cap; + uint256 vest_usds_cap; + uint256 vest_sky_cap; + uint256 vest_sky_mint_cap; + uint256 vest_spk_cap; + uint256 SP_tau; + address SP_bud; + uint256 SP_ssr_min; + uint256 SP_ssr_max; + uint256 SP_ssr_step; + uint256 SP_dsr_min; + uint256 SP_dsr_max; + uint256 SP_dsr_step; + uint256 sky_mkr_rate; + uint256 ilk_count; + string chainlog_version; + mapping (bytes32 => CollateralValues) collaterals; + uint64 stusds_rate_setter_tau; + uint256 stusds_rate_setter_maxLine; + uint256 stusds_rate_setter_maxCap; + uint16 stusds_rate_setter_minStr; + uint16 stusds_rate_setter_maxStr; + uint16 stusds_rate_setter_strStep; + uint16 stusds_rate_setter_minDuty; + uint16 stusds_rate_setter_maxDuty; + uint16 stusds_rate_setter_dutyStep; + address[] stusds_rate_setter_buds; + } + + enum UpdateMethod { + // Manual means updates are only done via spells + MANUAL, + // AutoLine can update `line` + AUTOLINE, + // StUSDS can update `line` and `duty` + STUSDS + } + + struct CollateralValues { + UpdateMethod um; + 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 SP_enabled; + uint256 SP_min; + uint256 SP_max; + uint256 SP_step; + 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; + uint256 constant private RAD = 10 ** 45; + + SpellValues spellValues; + SystemValues afterSpell; + + function setValues() 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(0xed3de16bDF69F697FecF1b4103b9f48d71BdDF20), // populate with deployed spell if deployed + deployed_spell_created: 1763049323, // use `make deploy-info tx=` to obtain the timestamp + deployed_spell_block: 23791312, // 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 = 700 * MILLION; // Offset between the global line against the sum of local lines + afterSpell.pause_delay = 24 hours; // In seconds + afterSpell.vow_wait = 156 hours; // In seconds + afterSpell.vow_dump = 0; // In whole Dai units + afterSpell.vow_sump = type(uint256).max; // In whole Dai units + afterSpell.vow_bump = 0; // In whole Dai units + afterSpell.vow_hump_min = type(uint256).max; // In whole Dai units + afterSpell.vow_hump_max = type(uint256).max; // In whole Dai units + afterSpell.split_hop = 2_880 seconds; // In seconds + afterSpell.split_burn = 100_00; // In basis points + afterSpell.split_farm = "REWARDS_LSSKY_USDS"; // Farm chainlog key + afterSpell.flap_want = 9800; // In basis points + afterSpell.dog_Hole = 150 * MILLION; // In whole Dai units + afterSpell.esm_min = type(uint256).max; // In wei + afterSpell.pause_authority = "MCD_ADM"; // Pause authority + afterSpell.osm_mom_authority = "MCD_ADM"; // OsmMom authority + afterSpell.clipper_mom_authority = "MCD_ADM"; // ClipperMom authority + afterSpell.d3m_mom_authority = "MCD_ADM"; // D3MMom authority + afterSpell.line_mom_authority = "MCD_ADM"; // LineMom authority + afterSpell.lite_psm_mom_authority = "MCD_ADM"; // LitePsmMom authority + afterSpell.splitter_mom_authority = "MCD_ADM"; // SplitterMom authority + afterSpell.spbeam_mom_authority = "MCD_ADM"; // SPBeamMom authority + afterSpell.stusds_mom_authority = "MCD_ADM"; // Stusds authority + afterSpell.vest_dai_cap = 1_000_000 * WAD / 30 days; // In WAD Dai per second + afterSpell.vest_mkr_cap = 2_220 * WAD / 365 days; // In WAD MKR per second + afterSpell.vest_usds_cap = 46_200 * WAD / 30 days; // In WAD USDS per second + afterSpell.vest_sky_cap = 110 * (1_000_000_000 * WAD / 180 days) / 100; // In WAD SKY per second + afterSpell.vest_sky_mint_cap = 176_000_000 * WAD / 182 days; // In WAD SKY per second + afterSpell.vest_spk_cap = 2_502_500_000 * WAD / 730 days; // In WAD SKY per second + afterSpell.ilk_count = 31; // Num expected in system + afterSpell.chainlog_version = "1.20.7"; // String expected in system + + afterSpell.SP_tau = 57_600 seconds; // In seconds + afterSpell.SP_bud = 0xe1c6f81D0c3CD570A77813b81AA064c5fff80309; // Address of SPBEAM Bud + afterSpell.SP_ssr_min = 2_00; // In basis points + afterSpell.SP_ssr_max = 30_00; // In basis points + afterSpell.SP_ssr_step = 4_00; // In basis points + afterSpell.SP_dsr_min = 0; // In basis points + afterSpell.SP_dsr_max = 30_00; // In basis points + afterSpell.SP_dsr_step = 4_00; // In basis points + afterSpell.sky_mkr_rate = 24_000; // In whole SKY/MKR units + + afterSpell.stusds_rate_setter_tau = 57_600; // Cooldown period between rate changes in seconds + afterSpell.stusds_rate_setter_maxLine = 1_000_000_000; // USDS units + afterSpell.stusds_rate_setter_maxCap = 1_000_000_000; // USDS units + afterSpell.stusds_rate_setter_minStr = 2_00; // Minimum allowed rate in bps + afterSpell.stusds_rate_setter_maxStr = 50_00; // Maximum allowed rate in bps + afterSpell.stusds_rate_setter_strStep = 5_00; // Maximum allowed rate change per update (bps) + afterSpell.stusds_rate_setter_minDuty = 2_10; // Minimum allowed rate in bps + afterSpell.stusds_rate_setter_maxDuty = 50_00; // Maximum allowed rate in bps + afterSpell.stusds_rate_setter_dutyStep = 5_00; // Maximum allowed rate change per update (bps) + + address[] memory buds = new address[](1); + buds[0] = 0xBB865F94B8A92E57f79fCc89Dfd4dcf0D3fDEA16; + afterSpell.stusds_rate_setter_buds = buds; // Array of address + + // + // Values for all collateral + // Update when adding or modifying Collateral Values + // + afterSpell.collaterals["ETH-A"] = CollateralValues({ + um: UpdateMethod.AUTOLINE, // Method for updating collateral values. See UpdateMethod enum for more details + 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: 0, // 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 + SP_enabled: true, // SPBEAM is enabled? + SP_min: 2_00, // In basis points + SP_max: 30_00, // In basis points + SP_step: 4_00, // In basis points + offboarding: false // If mat is being offboarded + }); + afterSpell.collaterals["ETH-B"] = CollateralValues({ + um: UpdateMethod.AUTOLINE, + aL_line: 250 * MILLION, + aL_gap: 20 * MILLION, + aL_ttl: 6 hours, + line: 0, + dust: 25 * THOUSAND, + pct: 0, + 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, + SP_enabled: true, + SP_min: 2_00, + SP_max: 30_00, + SP_step: 4_00, + offboarding: false + }); + afterSpell.collaterals["ETH-C"] = CollateralValues({ + um: UpdateMethod.AUTOLINE, + aL_line: 2 * BILLION, + aL_gap: 100 * MILLION, + aL_ttl: 8 hours, + line: 0, + dust: 3_500, + pct: 0, + 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, + SP_enabled: true, + SP_min: 2_00, + SP_max: 30_00, + SP_step: 4_00, + offboarding: false + }); + afterSpell.collaterals["WBTC-A"] = CollateralValues({ + um: UpdateMethod.MANUAL, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 7_500, + pct: 0, + mat: 15000, + liqType: "clip", + liqOn: true, + chop: 0, + 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, + SP_enabled: true, + SP_min: 2_00, + SP_max: 30_00, + SP_step: 4_00, + offboarding: false + }); + afterSpell.collaterals["WBTC-B"] = CollateralValues({ + um: UpdateMethod.MANUAL, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 25 * THOUSAND, + pct: 0, + mat: 15000, + liqType: "clip", + liqOn: true, + chop: 0, + 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, + SP_enabled: true, + SP_min: 2_00, + SP_max: 30_00, + SP_step: 4_00, + offboarding: false + }); + afterSpell.collaterals["WBTC-C"] = CollateralValues({ + um: UpdateMethod.MANUAL, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 3_500, + pct: 0, + mat: 17500, + liqType: "clip", + liqOn: true, + chop: 0, + 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, + SP_enabled: true, + SP_min: 2_00, + SP_max: 30_00, + SP_step: 4_00, + offboarding: false + }); + afterSpell.collaterals["PSM-USDC-A"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["LITE-PSM-USDC-A"] = CollateralValues({ + um: UpdateMethod.AUTOLINE, + aL_line: 10 * BILLION, + aL_gap: 400 * 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["UNIV2DAIUSDC-A"] = CollateralValues({ + um: UpdateMethod.MANUAL, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 15 * THOUSAND, + pct: 2, + mat: 1000_00, + liqType: "clip", + liqOn: true, + chop: 0, + dog_hole: 400 * THOUSAND, + clip_buf: 10500, + clip_tail: 220 minutes, + clip_cusp: 9000, + clip_chip: 0, + clip_tip: 0, + clipper_mom: 0, + cm_tolerance: 9500, + calc_tau: 0, + calc_step: 120, + calc_cut: 9990, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: true + }); + afterSpell.collaterals["RWA001-A"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["RWA002-A"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["RWA004-A"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["RWA005-A"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["RWA009-A"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["PSM-PAX-A"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: true + }); + afterSpell.collaterals["GUNIV3DAIUSDC1-A"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["WSTETH-A"] = CollateralValues({ + um: UpdateMethod.AUTOLINE, + aL_line: 750 * MILLION, + aL_gap: 30 * MILLION, + aL_ttl: 12 hours, + line: 0, + dust: 7_500, + pct: 0, + 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, + SP_enabled: true, + SP_min: 2_00, + SP_max: 30_00, + SP_step: 4_00, + offboarding: false + }); + afterSpell.collaterals["WSTETH-B"] = CollateralValues({ + um: UpdateMethod.AUTOLINE, + aL_line: 1 * BILLION, + aL_gap: 45 * MILLION, + aL_ttl: 12 hours, + line: 0, + dust: 3_500, + pct: 0, + 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, + SP_enabled: true, + SP_min: 2_00, + SP_max: 30_00, + SP_step: 4_00, + offboarding: false + }); + afterSpell.collaterals["DIRECT-SPK-AAVE-LIDO-USDS"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["DIRECT-AAVEV2-DAI"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["DIRECT-COMPV2-DAI"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["PSM-GUSD-A"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["GUNIV3DAIUSDC2-A"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["TELEPORT-FW-A"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["DIRECT-SPARK-DAI"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["DIRECT-SPARK-MORPHO-DAI"] = CollateralValues({ + um: UpdateMethod.MANUAL, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["LSE-MKR-A"] = CollateralValues({ + um: UpdateMethod.MANUAL, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 30_000, + pct: 20_00, + mat: 125_00, + liqType: "clip", + liqOn: true, + chop: 8_00, + dog_hole: 3 * MILLION, + clip_buf: 120_00, + clip_tail: 100 minutes, + clip_cusp: 40_00, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 1, + cm_tolerance: 50_00, + calc_tau: 0, + calc_step: 60, + calc_cut: 99_00, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["LSEV2-SKY-A"] = CollateralValues({ + um: UpdateMethod.STUSDS, + aL_line: 0, + aL_gap: 0, + aL_ttl: 0, + line: 0, + dust: 30_000, + pct: 0, + mat: 145_00, + liqType: "clip", + liqOn: false, + chop: 13_00, + dog_hole: 250_000, + clip_buf: 120_00, + clip_tail: 100 minutes, + clip_cusp: 40_00, + clip_chip: 10, + clip_tip: 300, + clipper_mom: 0, + cm_tolerance: 50_00, + calc_tau: 0, + calc_step: 60, + calc_cut: 99_00, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + afterSpell.collaterals["ALLOCATOR-SPARK-A"] = CollateralValues({ + um: UpdateMethod.AUTOLINE, + aL_line: 10 * BILLION, + aL_gap: 500 * MILLION, + 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, + SP_enabled: true, + SP_min: 0, + SP_max: 30_00, + SP_step: 4_00, + offboarding: false + }); + afterSpell.collaterals["ALLOCATOR-NOVA-A"] = CollateralValues({ + um: UpdateMethod.AUTOLINE, + aL_line: 60 * MILLION, + aL_gap: 1 * MILLION, + aL_ttl: 20 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, + SP_enabled: true, + SP_min: 0, + SP_max: 30_00, + SP_step: 4_00, + offboarding: false + }); + afterSpell.collaterals["ALLOCATOR-BLOOM-A"] = CollateralValues({ + um: UpdateMethod.AUTOLINE, + aL_line: 2_500_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, + SP_enabled: true, + SP_min: 0, + SP_max: 30_00, + SP_step: 4_00, + offboarding: false + }); + afterSpell.collaterals["ALLOCATOR-OBEX-A"] = CollateralValues({ + um: UpdateMethod.AUTOLINE, + aL_line: 2_500_000_000, + aL_gap: 50_000_000, + aL_ttl: 86_400, + 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, + SP_enabled: false, + SP_min: 0, + SP_max: 0, + SP_step: 0, + offboarding: false + }); + } +} diff --git a/archive/2025-11-13-DssSpell/test/rates.sol b/archive/2025-11-13-DssSpell/test/rates.sol new file mode 100644 index 00000000..634d0eea --- /dev/null +++ b/archive/2025-11-13-DssSpell/test/rates.sol @@ -0,0 +1,478 @@ +// 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[ 133] = 1000000000418960282689704878; + rates[ 150] = 1000000000472114805215157978; + rates[ 175] = 1000000000550121712943459312; + rates[ 200] = 1000000000627937192491029810; + rates[ 225] = 1000000000705562181084137268; + rates[ 250] = 1000000000782997609082909351; + rates[ 262] = 1000000000820099554044024241; + rates[ 275] = 1000000000860244400048238898; + rates[ 300] = 1000000000937303470807876289; + rates[ 319] = 1000000000995743377573746041; + rates[ 322] = 1000000001004960893848761962; + 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[ 520] = 1000000001607468111246255079; + rates[ 525] = 1000000001622535724756171269; + rates[ 537] = 1000000001658668812364456731; + 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[ 931] = 1000000002822732637090604696; + 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/2025-11-13-DssSpell/test/starknet.t.sol b/archive/2025-11-13-DssSpell/test/starknet.t.sol new file mode 100644 index 00000000..d1fbfe27 --- /dev/null +++ b/archive/2025-11-13-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 setStarknetValues() public { + uint256 WAD = 10 ** 18; + + starknetValues = StarknetValues({ + l2_spell: 0, // Set to zero if no spell is set. + core_implementation: 0x2793010E6711Acd5C46ed17f2183a9d58db71e04, // As of 2025-03-02 + 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() { + setStarknetValues(); + } + + 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 + ) + ); + } +} diff --git a/src/DssSpell.sol b/src/DssSpell.sol index f1d75e6f..869984db 100644 --- a/src/DssSpell.sol +++ b/src/DssSpell.sol @@ -17,48 +17,91 @@ 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"; -import { GemAbstract } from "dss-interfaces/ERC/GemAbstract.sol"; -// Note: code matches https://github.com/sky-ecosystem/dss-flappers/blob/f4f4f22b3eae6c912551b00ad64a56862ad61f86/deploy/FlapperInit.sol -import { FlapperInit, KickerConfig } from "src/dependencies/dss-flappers/FlapperInit.sol"; -// Note: code matches https://github.com/sky-ecosystem/star-guard/blob/52239d716a89188b303f137fc43fb9288735ba2e/deploy/StarGuardInit.sol -import { StarGuardInit, StarGuardConfig } from "src/dependencies/star-guard/StarGuardInit.sol"; -// Note: code matches https://github.com/sky-ecosystem/endgame-toolkit/blob/fe734bea271e87c0b8e772d7adcccb46c4df1939/script/dependencies/treasury-funded-farms/TreasuryFundedFarmingInit.sol -import { TreasuryFundedFarmingInit, FarmingInitParams } from "src/dependencies/endgame-toolkit/treasury-funded-farms/TreasuryFundedFarmingInit.sol"; +import {DssExecLib} from "dss-exec-lib/DssExecLib.sol"; +import {GemAbstract} from "dss-interfaces/ERC/GemAbstract.sol"; +// Note: code matches https://github.com/sky-ecosystem/wh-lz-migration/blob/17397879385d42521b0fe9783046b3cf25a9fec6/deploy/MigrationInit.sol +import {MigrationInit} from "src/dependencies/wh-lz-migration/MigrationInit.sol"; -interface ProxyLike { - function exec(address target, bytes calldata args) external payable returns (bytes memory out); +interface DaiUsdsLike { + function daiToUsds(address usr, uint256 wad) external; } -interface DssCronSequencerLike { - function addJob(address job) external; - function removeJob(address job) external; +interface DssLitePsmLike { + function kiss(address usr) external; } -interface StakingRewardsLike { - function setRewardsDuration(uint256 _rewardsDuration) external; +interface StarGuardLike { + function plot(address addr_, bytes32 tag_) 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); } -interface StarGuardJobLike { - function add(address starGuard) external; +abstract contract DssAction { + + using DssExecLib for *; + + // Modifier used to limit execution time when office hours is enabled + modifier limited { + require(DssExecLib.canCast(uint40(block.timestamp), officeHours()), "Outside office hours"); + _; + } + + // Office Hours defaults to true by default. + // To disable office hours, override this function and + // return false in the inherited action. + function officeHours() public view virtual returns (bool) { + return true; + } + + // DssExec calls execute. We limit this function subject to officeHours modifier. + function execute() external limited { + actions(); + } + + // DssAction developer must override `actions()` and place all actions to be called inside. + // The DssExec function will call this subject to the officeHours limiter + // By keeping this function public we allow simulations of `execute()` on the actions outside of the cast time. + function actions() public virtual; + + // 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 virtual returns (string memory); + + // Returns the next available cast time + function nextCastTime(uint256 eta) external virtual view returns (uint256 castTime) { + require(eta <= type(uint40).max); + castTime = DssExecLib.nextCastTime(uint40(eta), uint40(block.timestamp), officeHours()); + } } 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/sky-ecosystem/executive-votes/13a79eba7f9097edfa7edefe09c1960cadeabffb/2025/executive-vote-2025-10-30-init-kicker-lsSKY-farm-and-spark-starguard.md' -q -O - 2>/dev/null)" - string public constant override description = "2025-10-30 MakerDAO Executive Spell | Hash: 0x41a766455e748305c194c9c5ce3d1d81005e32f893fe6ac89b105be4663c7a1c"; + // Hash: cast keccak -- "$(wget 'https://raw.githubusercontent.com/sky-ecosystem/executive-votes/9c58a42c41808d17531aa56eeaa9bbe1799fd0f5/2025/executive-vote-2025-11-13-solana-bridge-migration.md' -q -O - 2>/dev/null)" + string public constant override description = "2025-11-13 MakerDAO Executive Spell | Hash: 0x7a6942eb60fdf913d4cca774b3413d4249e41c5972993843300edddafc97992e"; // Set office hours according to the summary function officeHours() public pure override returns (bool) { return true; } + // ---------- Set earliest execution date November 17, 14:00 UTC ---------- + + // Note: 2025-11-17 14:00:00 UTC + uint256 internal constant NOV_17_2025_14_00_UTC = 1763388000; + + // Note: Override nextCastTime to inform keepers about the earliest execution time + function nextCastTime(uint256 eta) external view override returns (uint256 castTime) { + require(eta <= type(uint40).max); + // Note: First calculate the standard office hours cast time + castTime = DssExecLib.nextCastTime(uint40(eta), uint40(block.timestamp), officeHours()); + // Note: Then ensure it's not before our minimum date + return castTime < NOV_17_2025_14_00_UTC ? NOV_17_2025_14_00_UTC : castTime; + } + // ---------- Rates ---------- // Many of the settings that change weekly rely on the rate accumulator // described at https://docs.makerdao.com/smart-contract-modules/rates-module @@ -72,226 +115,96 @@ contract DssSpellAction is DssAction { // uint256 internal constant X_PCT_RATE = ; // ---------- Math ---------- - uint256 internal constant WAD = 10 ** 18; - uint256 internal constant RAD = 10 ** 45; + uint256 internal constant MILLION = 10 ** 6; + uint256 internal constant WAD = 10 ** 18; // ---------- Contracts ---------- - address internal immutable DAI = DssExecLib.dai(); - address internal immutable CHAINLOG = DssExecLib.LOG; - address internal immutable CRON_FLAP_JOB = DssExecLib.getChangelogAddress("CRON_FLAP_JOB"); - address internal immutable CRON_REWARDS_DIST_JOB = DssExecLib.getChangelogAddress("CRON_REWARDS_DIST_JOB"); - address internal immutable CRON_SEQUENCER = DssExecLib.getChangelogAddress("CRON_SEQUENCER"); - address internal immutable DAI_USDS = DssExecLib.getChangelogAddress("DAI_USDS"); - address internal immutable MCD_SPLIT = DssExecLib.getChangelogAddress("MCD_SPLIT"); - address internal immutable MCD_VEST_SKY_TREASURY = DssExecLib.getChangelogAddress("MCD_VEST_SKY_TREASURY"); - address internal immutable LOCKSTAKE_ENGINE = DssExecLib.getChangelogAddress("LOCKSTAKE_ENGINE"); - address internal immutable LOCKSTAKE_SKY = DssExecLib.getChangelogAddress("LOCKSTAKE_SKY"); - address internal immutable REWARDS_LSSKY_USDS = DssExecLib.getChangelogAddress("REWARDS_LSSKY_USDS"); - address internal immutable SKY = DssExecLib.getChangelogAddress("SKY"); - address internal immutable STUSDS_RATE_SETTER = DssExecLib.getChangelogAddress("STUSDS_RATE_SETTER"); - - address internal constant KICKER = 0xD889477102e8C4A857b78Fcc2f134535176Ec1Fc; - address internal constant NEW_CRON_FLAP_JOB = 0xE564C4E237f4D7e0130FdFf6ecC8a5E931C51494; - address internal constant REWARDS_LSSKY_SKY = 0xB44C2Fb4181D7Cb06bdFf34A46FdFe4a259B40Fc; - address internal constant REWARDS_DIST_LSSKY_SKY = 0x675671A8756dDb69F7254AFB030865388Ef699Ee; - address internal constant SPARK_STARGUARD = 0x6605aa120fe8b656482903E7757BaBF56947E45E; - address internal constant CRON_STARGUARD_JOB = 0xB18d211fA69422a9A848B790C5B4a3957F7Aa44E; - - // ---------- Wallets ---------- - address internal constant CORE_COUNCIL_BUDGET_MULTISIG = 0x210CFcF53d1f9648C1c4dcaEE677f0Cb06914364; - address internal constant CORE_COUNCIL_DELEGATE_MULTISIG = 0x37FC5d447c8c54326C62b697f674c93eaD2A93A3; - address internal constant INTEGRATION_BOOST_INITIATIVE = 0xD6891d1DFFDA6B0B1aF3524018a1eE2E608785F7; + address internal immutable DAI = DssExecLib.dai(); + address internal immutable MCD_LITE_PSM_USDC_A = DssExecLib.getChangelogAddress("MCD_LITE_PSM_USDC_A"); + address internal immutable DAI_USDS = DssExecLib.getChangelogAddress("DAI_USDS"); + address internal constant NTT_MANAGER_IMP_V2 = 0xD4DD90bAC23E2a1470681E7cAfFD381FE44c3430; + address internal constant ALLOCATOR_OBEX_A_SUBPROXY = 0x8be042581f581E3620e29F213EA8b94afA1C8071; + address internal constant OBEX_ALM_PROXY = 0xb6dD7ae22C9922AFEe0642f9Ac13e58633f715A2; // ---------- Spark Spell ---------- - // Note: Spark Proxy: https://github.com/sparkdotfi/sparklend-deployments/blob/bba4c57d54deb6a14490b897c12a949aa035a99b/script/output/1/primary-sce-latest.json#L2 - address internal constant SPARK_SUBPROXY = 0x3300f198988e4C9C63F75dF86De36421f06af8c4; - address internal constant SPARK_SPELL = 0x71059EaAb41D6fda3e916bC9D76cB44E96818654; + address internal immutable SPARK_STARGUARD = DssExecLib.getChangelogAddress("SPARK_STARGUARD"); + address internal constant SPARK_SPELL = 0x63Fa202a7020e8eE0837196783f0fB768CBFE2f1; + bytes32 internal constant SPARK_SPELL_HASH = 0x6e88f81cc72989a637f4b87592dcde2016272fbceb08a2af3b2effdb2d20c0fb; - // ---------- Grove Proxy ---------- - // Note: The deployment address for the Grove Proxy can be found at https://forum.sky.money/t/technical-scope-of-the-star-2-allocator-launch/26190 - address internal constant GROVE_SUBPROXY = 0x1369f7b2b38c76B6478c0f0E66D94923421891Ba; - address internal constant GROVE_SPELL = 0x8b4A92f8375ef89165AeF4639E640e077d7C656b; + // ---------- Launch Agent 4 (Obex) Spell ---------- + address internal constant OBEX_SPELL = 0xF538909eDF14d2c23002C2b3882Ad60f79d61893; function actions() public override { - // ---------- Initialize Kicker ---------- - // Forum: https://forum.sky.money/t/technical-scope-of-the-kicker-launch/27350 - // Forum: https://forum.sky.money/t/atlas-edit-weekly-cycle-proposal-week-of-2025-10-27/27362 - // Poll: https://vote.sky.money/polling/Qmbs7wEM - - // Note: We need a DssInstance as an input parameter for initKicker - DssInstance memory dss = MCD.loadFromChainlog(DssExecLib.LOG); - - // Init Kicker by calling FlapperInit.initKicker() with the following parameters: - FlapperInit.initKicker( - // dss: A DssInstance (from dss-test/MCD.sol) - dss, - // kicker: 0xD889477102e8C4A857b78Fcc2f134535176Ec1Fc - KICKER, - // Note: Create KickerConfig with the following parameters: - KickerConfig({ - // cfg.khump: -200 million USDS (note this is a negative value) - khump: -200_000_000 * int256(RAD), - // cfg.kbump: 10,000 USDS - kbump: 10_000 * RAD, - // cfg.chainlogKey: MCD_KICK - chainlogKey: "MCD_KICK" - }) - ); - - // Remove old FlapJob (0xc32506E9bB590971671b649d9B8e18CB6260559F) from the Sequencer - DssCronSequencerLike(CRON_SEQUENCER).removeJob(CRON_FLAP_JOB); - - // Add new FlapJob deployed at 0xE564C4E237f4D7e0130FdFf6ecC8a5E931C51494 to the Sequencer - DssCronSequencerLike(CRON_SEQUENCER).addJob(NEW_CRON_FLAP_JOB); - - // Update CRON_FLAP_JOB in the Chainlog to 0xE564C4E237f4D7e0130FdFf6ecC8a5E931C51494 - DssExecLib.setChangelogAddress("CRON_FLAP_JOB", NEW_CRON_FLAP_JOB); - - // ---------- Recalibrate Smart Burn Engine ---------- - // Forum: https://forum.sky.money/t/atlas-edit-weekly-cycle-proposal-week-of-2025-10-27/27362 - // Poll: https://vote.sky.money/polling/Qmbs7wEM - - // Increase splitter.burn by 75 percentage points from 25% to 100% (1 * WAD) - DssExecLib.setValue(MCD_SPLIT, "burn", 1 * WAD); - - // Increase splitter.hop by 720 seconds from 2,160 seconds to 2,880 seconds - DssExecLib.setValue(MCD_SPLIT, "hop", 2_880); - - // Increase rewardsDuration in REWARDS_LSSKY_USDS by 720 seconds from 2,160 seconds to 2,880 seconds - StakingRewardsLike(REWARDS_LSSKY_USDS).setRewardsDuration(2_880); - - // ---------- Initialize lsSKY->SKY Farm ---------- - // Forum: https://forum.sky.money/t/technical-scope-lssky-sky-farm/27312 - // Forum: https://forum.sky.money/t/atlas-edit-weekly-cycle-proposal-week-of-2025-10-27/27362 - // Poll: https://vote.sky.money/polling/Qmbs7wEM - - // Call TreasuryFundedFarmingInit.initLockstakeFarm with the following parameters: - // Note: Create FarmingInitParams with the following parameters: - FarmingInitParams memory farmingInitParams = FarmingInitParams({ - // stakingToken: LOCKSTAKE_SKY from chainlog - stakingToken: LOCKSTAKE_SKY, - // rewardsToken: SKY from chainlog - rewardsToken: SKY, - // rewards: 0xB44C2Fb4181D7Cb06bdFf34A46FdFe4a259B40Fc - rewards: REWARDS_LSSKY_SKY, - // rewardsKey: REWARDS_LSSKY_SKY - rewardsKey: "REWARDS_LSSKY_SKY", - // dist: 0x675671A8756dDb69F7254AFB030865388Ef699Ee - dist: REWARDS_DIST_LSSKY_SKY, - // distKey: REWARDS_DIST_LSSKY_SKY - distKey: "REWARDS_DIST_LSSKY_SKY", - // distJob: CRON_REWARDS_DIST_JOB from chainlog - distJob: CRON_REWARDS_DIST_JOB, - // distJobInterval: 7 days - 1 hours - distJobInterval: 7 days - 1 hours, - // vest: MCD_VEST_SKY_TREASURY from chainlog - vest: MCD_VEST_SKY_TREASURY, - // vestTot: 1,000,000,000 SKY - vestTot: 1_000_000_000 * WAD, - // vestBgn: block.timestamp - 7 days - vestBgn: block.timestamp - 7 days, - // vestTau: 180 days - vestTau: 180 days + // ---------- Set earliest execution date November 17, 14:00 UTC ---------- + + require(block.timestamp >= NOV_17_2025_14_00_UTC, "Spell can only be cast after Nov 17, 2025, 14:00 UTC"); + + // ----- Solana Bridge Migration ----- + // Forum: https://forum.sky.money/t/atlas-edit-weekly-cycle-proposal-week-of-2025-11-03/27381 + // Poll: https://vote.sky.money/polling/Qmetv8fp + // Forum: https://forum.sky.money/t/solana-bridge-migration/27403 + + // Call MigrationInit.initMigrationStep0 with the following arguments: + MigrationInit.initMigrationStep0({ + // nttManagerImpV2: 0xD4DD90bAC23E2a1470681E7cAfFD381FE44c3430 + nttManagerImpV2: NTT_MANAGER_IMP_V2, + // maxFee expected to be 0 (unless Wormhole.messageFee() returns non-zero value) + maxFee: 0, + // payload: https://raw.githubusercontent.com/keel-fi/crosschain-gov-solana-spell-payloads/11baa180d4ad6c7579c69c8c0168e17cb73bb6ed/wh-program-upgrade-mainnet.txt + payload: hex"000000000000000047656e6572616c507572706f7365476f7665726e616e636502000106742d7ca523a03aaafe48abab02e47eb8aef53415cb603c47a3ccf864d86dc002a8f6914e88a1b0e210153ef763ae2b00c2b93d16c124d2c0537a10048000000007a821ac5164fa9b54fd93b54dba8215550b8fce868f52299169f6619867cac501000106856f43abf4aaa4a26b32ae8ea4cb8fadc8e02d267703fbd5f9dad85f6d00b300012d27f5131975fdaf20a5934c6e90f6d7c9bbde9fcf94c37b48c5a49c7f06aae2000105cab222188023f74394ecaee9daf397c11a2a672511adc34958c1d7bdb1c673000106a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a00000000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000000006f776e65720000000000000000000000000000000000000000000000000000000100000403000000" + }); + + // ----- Parameter Changes to Launch Agent 4 (Obex) ----- + // Forum: https://forum.sky.money/t/atlas-edit-weekly-cycle-proposal-week-of-2025-11-03/27381 + // Poll: https://vote.sky.money/polling/Qmetv8fp + + // Set the following DC-IAM Values for ALLOCATOR-OBEX-A: + DssExecLib.setIlkAutoLineParameters({ + _ilk: "ALLOCATOR-OBEX-A", + // Increase `gap` by 40 million USDS from 10 million USDS to 50 million + _gap: 50 * MILLION, + // Increase `maxLine` by 2.49 billion USDS from 10 million USDS to 2.5 billion USDS + _amount: 2500 * MILLION, + // Keep `ttl` unchanged at 86,400 seconds + _ttl: 86400 seconds }); - // Note: Call TreasuryFundedFarmingInit.initLockstakeFarm with the parameters created above: - TreasuryFundedFarmingInit.initLockstakeFarm( - // Note: FarmingInitParams created above - farmingInitParams, - // lockstakeEngine: LOCKSTAKE_ENGINE from chainlog - LOCKSTAKE_ENGINE - ); - - // ---------- Initialize Spark StarGuard ---------- - // Forum: https://forum.sky.money/t/launching-starguard-an-upgrade-to-the-sky-agents-governance-payload-execution/27364 - // Forum: https://forum.sky.money/t/atlas-edit-weekly-cycle-proposal-week-of-2025-10-27/27362 - // Poll: https://vote.sky.money/polling/Qmbs7wEM - - // Call StarGuardInit.init with the following parameters: - StarGuardInit.init( - // address chainlog: DssExecLib.LOG - CHAINLOG, - // Note: Create StarGuardConfig with the following parameters: - StarGuardConfig({ - // cfg.subProxy: 0x3300f198988e4C9C63F75dF86De36421f06af8c4 - subProxy: SPARK_SUBPROXY, - // cfg.subProxyKey: SPARK_SUBPROXY - subProxyKey: "SPARK_SUBPROXY", - // cfg.starGuard: 0x6605aa120fe8b656482903E7757BaBF56947E45E - starGuard: SPARK_STARGUARD, - // cfg.starGuardKey: SPARK_STARGUARD - starGuardKey: "SPARK_STARGUARD", - // cfg.maxDelay: 7 days - maxDelay: 7 days - }) - ); - - // Add StarGuardJob deployed at 0xB18d211fA69422a9A848B790C5B4a3957F7Aa44E to the Sequencer - DssCronSequencerLike(CRON_SEQUENCER).addJob(CRON_STARGUARD_JOB); - - // Add SPARK_STARGUARD to the StarGuardJob - StarGuardJobLike(CRON_STARGUARD_JOB).add(SPARK_STARGUARD); - - // Add StarGuardJob to the Chainlog as CRON_STARGUARD_JOB - DssExecLib.setChangelogAddress("CRON_STARGUARD_JOB", CRON_STARGUARD_JOB); - - // Note: Bump chainlog patch version as new keys are being added - DssExecLib.setChangelogVersion("1.20.7"); - - // ---------- Fund Core Council Multisigs ---------- - // Forum: https://forum.sky.money/t/atlas-edit-weekly-cycle-proposal-week-of-2025-10-27/27362 - // Poll: https://vote.sky.money/polling/Qmbs7wEM - - // Transfer 3,876,387 USDS to the Core Council Budget Multisig at 0x210CFcF53d1f9648C1c4dcaEE677f0Cb06914364 - _transferUsds(CORE_COUNCIL_BUDGET_MULTISIG, 3_876_387 * WAD); - - // Transfer 193,820 USDS to the Core Council Delegate Multisig at 0x37FC5d447c8c54326C62b697f674c93eaD2A93A3 - _transferUsds(CORE_COUNCIL_DELEGATE_MULTISIG, 193_820 * WAD); - - // ---------- Fund Integration Boost Multisig ---------- - // Forum: https://forum.sky.money/t/utilization-of-the-integration-boost-budget-a-5-2-1-2/25536/13 - // Atlas: https://sky-atlas.powerhouse.io/A.2.3.8.2.2.1.3.2.1_Near_Term_Process/1b3f2ff0-8d73-8006-8d52-f441b4e85f5b|9e1ff936eafd46ecfcbb87335192b6fc - - // Transfer 1,000,000 USDS to 0xD6891d1DFFDA6B0B1aF3524018a1eE2E608785F7 - _transferUsds(INTEGRATION_BOOST_INITIATIVE, 1_000_000 * WAD); - - // ---------- Adjust stUSDS Beam step parameters ---------- - // Forum: https://forum.sky.money/t/stusds-beam-rate-setter-configuration/27161/20 - // Poll: https://vote.sky.money/polling/QmbzWao8 - - // Reduce str step parameter by 3,500 bps from 4,000 bps to 500 bps - DssExecLib.setValue(STUSDS_RATE_SETTER, "STR", "step", 500); - - // Reduce duty step parameter by 3,500 bps from 4,000 bps to 500 bps - DssExecLib.setValue(STUSDS_RATE_SETTER, "LSEV2-SKY-A", "step", 500); - - // Maintain all other parameters at their current values - // Note: no actions required - - // ---------- Execute Spark Proxy Spell ---------- - // Forum: https://forum.sky.money/t/october-30-2025-proposed-changes-to-spark-for-upcoming-spell/27309 - // Forum: https://forum.sky.money/t/spark-aave-revenue-share-calculations-payments-9-q3-2025/27296 - // Forum: https://forum.sky.money/t/atlas-edit-weekly-cycle-proposal-week-of-2025-09-29/27222 - // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0xeea0e2648f55df4e57f8717831a5949f2a35852e32aa0f98a7e16e7ed56268a8 - // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0x95138f104ff84defb64985368f348af4d7500b2641b88b396e37426126f5ce0d - // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0x14300684fb44685ad27270745fa6780e8083f3741de2119b98cf6bb1e44b4617 - // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0xf289dbc26dc0380bfab16a5d6c12b6167d8a47a348891797ea8bc3b752a4ce7a - // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0xab448e3d135620340da30616c0dabaa293f816a9edd4dc009f29b0ffb5bcbad2 - // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0x58549e11044e7c8dfecd9a60c8ecb8e77d42dbef46a1db64c09e7d9540102b1c - // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0x86f6b4e728e943fedf8ff814808e2d9bc0220f57edae40e3cf3711fb72d2e097 - // Atlas: https://sky-atlas.powerhouse.io/A.AG1.2.6.P15.2.1.2.3_Token_Claim_Authorization/280f2ff0-8d73-8040-9e11-d79eb710596b%7C7896ed3326389fe3185c95c7594595c36ff152ce - // Atlas: https://sky-atlas.powerhouse.io/A.AG1.3.2.1.2.3.2_Standard_Agreement_Post_SPK_Launch/1c1f2ff0-8d73-81f6-8b1e-cb3bac92d9b3|7896ed3326389fe3553030cd0a82221360c2 - // Atlas: https://sky-atlas.powerhouse.io/A.2.9.2.2.2.5.5.1_Subsequent_Cash_Grant_To_Spark_Foundation/280f2ff0-8d73-8019-baf3-cefdd05d4a14|9e1f80092582d59891b0d93ee539 - - // Execute the Spark Proxy Spell at 0x71059EaAb41D6fda3e916bC9D76cB44E96818654 - ProxyLike(SPARK_SUBPROXY).exec(SPARK_SPELL, abi.encodeWithSignature("execute()")); - - // ---------- Execute Grove Proxy Spell ---------- - // Forum: https://forum.sky.money/t/october-30th-2025-sky-prime-technical-scope-param-changes/27325 - // Poll: https://vote.sky.money/polling/Qmef8C3a - - // Execute the Grove Proxy Spell at 0x8b4A92f8375ef89165AeF4639E640e077d7C656b - ProxyLike(GROVE_SUBPROXY).exec(GROVE_SPELL, abi.encodeWithSignature("execute()")); + // ----- Genesis Capital Transfer To Launch Agent 4 ----- + // Forum: https://forum.sky.money/t/out-of-schedule-atlas-edit-proposal/27393 + // Poll: https://vote.sky.money/polling/QmYPMN4y + + // Obex Genesis Capital Allocation - 21000000 USDS - 0x8be042581f581E3620e29F213EA8b94afA1C8071 + _transferUsds(ALLOCATOR_OBEX_A_SUBPROXY, 21_000_000 * WAD); + + // ----- Whitelist Launch Agent 4 (Obex) ALMProxy on the LitePSM ----- + // Forum: https://forum.sky.money/t/proposed-changes-to-launch-agent-4-obex-for-upcoming-spell/27370 + // Poll: https://vote.sky.money/polling/Qmetv8fp + // Forum: https://forum.sky.money/t/atlas-edit-weekly-cycle-proposal-week-of-2025-11-03/27381 + + // Whitelist Launch Agent 4 (Obex) ALMProxy at 0xb6dD7ae22C9922AFEe0642f9Ac13e58633f715A2 on the LitePSM + DssLitePsmLike(MCD_LITE_PSM_USDC_A).kiss(OBEX_ALM_PROXY); + + // ----- Whitelist Spark Proxy Spell in Starguard ----- + // Forum: https://forum.sky.money/t/november-13-2025-proposed-changes-to-spark-for-upcoming-spell/27354 + // Forum: https://forum.sky.money/t/november-13-2025-proposed-changes-to-spark-for-upcoming-spell/27354/2 + // Forum: https://forum.sky.money/t/november-13-2025-proposed-changes-to-sparklend-for-upcoming-spell-2/27395 + // Forum: https://forum.sky.money/t/november-13-2025-proposed-changes-to-sparklend-for-upcoming-spell-2/27395/3 + // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0x4c705ab40a35c3c903adb87466bf563b00abc78b1d161034278d2acd74fb7621 + // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0xd7397d29254989ce4c5785f3c67a94de21018abc4e9a76b1e7fc359aec36e60a + // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0x785d3b23e63e3e6b6fb7927ca0bc529b2dc7b58d429102465e4ba8a36bc23fda + // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0xb31a1c997c3186943b57ce9f1528cb02c1dc5399dcdc151e60d136af46d5c126 + // Poll: https://snapshot.box/#/s:sparkfi.eth/proposal/0xe697ded18a50e09618c6f34fb89cbb8358d84a4c40602928ae4b44a644b83dcf + // Atlas: https://sky-atlas.io/#A.6.1.1.1.2.6.1.2.1.2.3 + + // Whitelist the Spark Proxy Spell deployed to 0x63Fa202a7020e8eE0837196783f0fB768CBFE2f1 with codehash 0x6e88f81cc72989a637f4b87592dcde2016272fbceb08a2af3b2effdb2d20c0fb; direct execution: no in Spark Starguard + StarGuardLike(SPARK_STARGUARD).plot(SPARK_SPELL, SPARK_SPELL_HASH); + + // ----- Execute Launch Agent 4 (Obex) Proxy Spell ----- + // Forum: https://forum.sky.money/t/proposed-changes-to-launch-agent-4-obex-for-upcoming-spell/27370 + // Poll: https://vote.sky.money/polling/Qmetv8fp + + // Execute the Launch Agent 4 (Obex) Proxy Spell at 0xF538909eDF14d2c23002C2b3882Ad60f79d61893 + ProxyLike(ALLOCATOR_OBEX_A_SUBPROXY).exec(OBEX_SPELL, abi.encodeWithSignature("execute()")); } // ---------- Helper Functions ---------- diff --git a/src/DssSpell.t.base.sol b/src/DssSpell.t.base.sol index 2b5099db..48ef1915 100644 --- a/src/DssSpell.t.base.sol +++ b/src/DssSpell.t.base.sol @@ -19,6 +19,7 @@ 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 {Vm} from "forge-std/Vm.sol"; import "./test/rates.sol"; import "./test/addresses_mainnet.sol"; @@ -539,6 +540,21 @@ interface OsmWrapperLike { function osm() external view returns (address); } +interface StarGuardLike { + function spellData() external view returns (address addr, bytes32 tag, uint256 deadline); + function subProxy() external view returns (address); + function exec() external returns (address addr); + function prob() external view returns (bool); +} + +interface StarGuardJobLike { + function has(address starGuard) external view returns (bool); +} + +interface SubProxyLike { + function exec(address target, bytes calldata args) external payable returns (bytes memory out); +} + contract DssSpellTestBase is Config, DssTest { using stdStorage for StdStorage; @@ -1008,7 +1024,7 @@ contract DssSpellTestBase is Config, DssTest { // hump values in RAD if (values.vow_hump_min == type(uint256).max && values.vow_hump_max == type(uint256).max) { assertEq(vow.hump(), type(uint256).max, "TestError/vow-hump"); - } else { + } else { 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"); @@ -3262,13 +3278,13 @@ contract DssSpellTestBase is Config, DssTest { // 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) + vm.warp(1763150400); // 2025 Nov 14, 20 UTC (could be casted after pause_delay) _vote(address(spell)); spell.schedule(); - uint256 monday_1400_UTC = 1606744800; // Nov 30, 2020 - uint256 monday_2100_UTC = 1606770000; // Nov 30, 2020 + uint256 monday_1400_UTC = 1763388000; // 2025 Nov 17, 14 UTC + uint256 monday_2100_UTC = 1763413200; // 2025 Nov 17, 21 UTC // Day tests vm.warp(monday_1400_UTC); // Monday, 14:00 UTC @@ -3281,8 +3297,9 @@ contract DssSpellTestBase is Config, DssTest { 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 + // NOTE: skipped due to the custom min ETA logic in the current spell (2025-11-13) + // 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 @@ -3898,4 +3915,94 @@ contract DssSpellTestBase is Config, DssTest { function _imp(address _tgt) internal view returns (address) { return address(uint160(uint256(vm.load(_tgt, EIP1967_IMPLEMENTATION_SLOT)))); } + + event Plot(address indexed addr, bytes32 tag, uint256 deadline); + event Exec(address indexed addr); + + function _testStarguardExecution( + bytes32 starGuardKey, + address primeAgentSpell, + bytes32 primeAgentSpellHash, + bool directExecutionEnabled + ) internal { + // Sanity check with passed parameters + { + bytes32 deployedSpellHash = primeAgentSpell.codehash; + assertEq(deployedSpellHash, primeAgentSpellHash, "TestError/PrimeAgentSpell/hash-mismatch"); + } + + // Get correct addresses from chainlog + address starGuardAddr = addr.addr(starGuardKey); + assertTrue(starGuardAddr != address(0), "TestError/PrimeAgentSpell/missing-starguard-address"); + StarGuardLike starGuard = StarGuardLike(starGuardAddr); + + address subProxy = starGuard.subProxy(); + + if (directExecutionEnabled) { + // Direct execution path + vm.expectCall( + subProxy, + /* value = */ 0, + abi.encodeCall( + SubProxyLike(subProxy).exec, + (primeAgentSpell, abi.encodeWithSignature("execute()")) + ) + ); + + vm.recordLogs(); + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/PrimeAgentSpell/spell-not-done"); + Vm.Log[] memory entries = vm.getRecordedLogs(); + for (uint256 i = 0; i < entries.length; i++) { + Vm.Log memory logEntry = entries[i]; + if (logEntry.topics[0] == keccak256("Plot(address,bytes32,uint256)")) { + revert("TestError/PrimeAgentSpell/plot-event-emitted-during-direct-execution"); + } + } + + // Ensure starGuard spell data is not updated to current PrimeAgentSpell + (address notUpdatedSpellAddr,,) = starGuard.spellData(); + assertNotEq(primeAgentSpell, notUpdatedSpellAddr, "TestError/PrimeAgentSpell/prime-agent-starguard-spell-updated"); + + // Exit test after direct execution check is done + return; + } + + // Indirect execution path + + // Sanity checks for starGuard configuration + StarGuardJobLike CRON_STARGUARD_JOB = StarGuardJobLike(addr.addr("CRON_STARGUARD_JOB")); + assertTrue( + CRON_STARGUARD_JOB.has(starGuardAddr), + "TestError/PrimeAgentSpell/starguard-not-registered-in-cronjob" + ); + + // PrimeAgentSpell compatibility check + (bool ok, ) = primeAgentSpell.staticcall(abi.encodeWithSignature("isExecutable()")); + assertTrue(ok, "TestError/PrimeAgentSpell/spell-does-not-support-isExecutable"); + + _vote(address(spell)); + _scheduleWaitAndCast(address(spell)); + assertTrue(spell.done(), "TestError/PrimeAgentSpell/spell-not-done"); + + (address spellAddr, bytes32 spellHash, uint256 deadline) = starGuard.spellData(); + + assertEq(primeAgentSpell, spellAddr, "TestError/PrimeAgentSpell/prime-agent-starguard-spell-not-updated"); + assertEq(primeAgentSpellHash, spellHash, "TestError/PrimeAgentSpell/prime-agent-starguard-spell-hash-mismatch"); + + // Try to execute the primeAgentSpell via starGuard before the deadline + while (block.timestamp <= deadline) { + if (!starGuard.prob()) { + skip(1 hours); + } else { + vm.expectEmit(true, false, false, false, address(starGuard)); + emit Exec(address(primeAgentSpell)); + address executed = starGuard.exec(); + assertEq(executed, primeAgentSpell, "StarGuard/exec-wrong-target"); + return; + } + } + revert("TestError/PrimeAgentSpell/spell-not-executable-before-deadline"); + } } diff --git a/src/DssSpell.t.sol b/src/DssSpell.t.sol index 2d000c97..788e8334 100644 --- a/src/DssSpell.t.sol +++ b/src/DssSpell.t.sol @@ -32,10 +32,6 @@ 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); } @@ -45,45 +41,18 @@ interface SequencerLike { function getMaster() external view returns (bytes32); } -interface DssVestTransferrableLike { - function czar() external view returns (address); - function gem() external view returns (address); -} - -interface VestedRewardsDistributionLike { - function gem() external view returns (address); - function dssVest() external view returns (address); - function vestId() external view returns (uint256); - function stakingRewards() external view returns (address); - function distribute() external; -} - -interface VestedRewardsDistributionJobLike { - function intervals(address) external view returns (uint256); -} - -interface StarGuardLike { - function maxDelay() external view returns (uint256); - function subProxy() external view returns (address subProxy); - function spellData() external view returns (address addr, bytes32 tag, uint256 deadline); - function wards(address usr) external view returns (uint256 allowed); - function plot(address addr_, bytes32 tag_) external; - function prob() external view returns (bool); - function exec() external returns (address addr); - function drop() external; -} - -interface StarGuardJobLike { - function has(address starGuard) external view returns (bool); -} - -interface CronJobLike { - function work(bytes32 network, bytes memory args) external; - function workable(bytes32 network) external returns (bool, bytes memory); + interface NttManagerLike { + function token() external view returns (address); + function migrateLockedTokens(address) external; + function quoteDeliveryPrice( + uint16 recipientChain, + bytes memory transceiverInstructions + ) external view returns (uint256[] memory, uint256); } -interface SubProxyLike { - function wards(address usr) external view returns (uint256 allowed); +interface WormholeLike { + function nextSequence(address) external view returns (uint64); + function messageFee() external view returns (uint256); } contract DssSpellTest is DssSpellTestBase { @@ -324,7 +293,7 @@ contract DssSpellTest is DssSpellTestBase { } } - function testAddedChainlogKeys() public { // add the `skipped` modifier to skip + function testAddedChainlogKeys() public skipped { // add the `skipped` modifier to skip string[6] memory addedKeys = [ "MCD_KICK", "REWARDS_LSSKY_SKY", @@ -384,7 +353,7 @@ contract DssSpellTest is DssSpellTestBase { ); } - function testLockstakeIlkIntegration() public { // add the `skipped` modifier to skip + function testLockstakeIlkIntegration() public skipped { // add the `skipped` modifier to skip _vote(address(spell)); _scheduleWaitAndCast(address(spell)); assertTrue(spell.done(), "TestError/spell-not-done"); @@ -690,7 +659,7 @@ contract DssSpellTest is DssSpellTestBase { ); } - function testVestSky() public { // add the `skipped` modifier to skip + function testVestSky() public skipped { // add the `skipped` modifier to skip uint256 spellCastTime = _getSpellCastTime(); // Build expected new stream @@ -814,24 +783,22 @@ contract DssSpellTest is DssSpellTestBase { function testPayments() public { // add the `skipped` modifier to skip // Note: set to true when there are additional DAI/USDS operations (e.g. surplus buffer sweeps, SubDAO draw-downs) besides direct transfers bool ignoreTotalSupplyDaiUsds = false; - bool ignoreTotalSupplyMkrSky = true; + bool ignoreTotalSupplyMkrSky = false; // 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[3] memory payees = [ - Payee(address(usds), wallets.addr("CORE_COUNCIL_BUDGET_MULTISIG"), 3_876_387 ether), // Note: ether is only a keyword helper - Payee(address(usds), wallets.addr("CORE_COUNCIL_DELEGATE_MULTISIG"), 193_820 ether), // Note: ether is only a keyword helper - Payee(address(usds), wallets.addr("INTEGRATION_BOOST_INITIATIVE"), 1_000_000 ether) // Note: ether is only a keyword helper + Payee[1] memory payees = [ + Payee(address(usds), addr.addr("ALLOCATOR_OBEX_A_SUBPROXY"), 21_000_000 ether) // Note: ether is only a keyword helper ]; // Fill the total values from exec sheet PaymentAmounts memory expectedTotalPayments = PaymentAmounts({ dai: 0 ether, // Note: ether is only a keyword helper mkr: 0 ether, // Note: ether is only a keyword helper - usds: 5_070_207 ether, // Note: ether is only a keyword helper + usds: 21_000_000 ether, // Note: ether is only a keyword helper sky: 0 ether // Note: ether is only a keyword helper }); @@ -984,7 +951,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_STARGUARD_JOB") @@ -1288,25 +1255,16 @@ contract DssSpellTest is DssSpellTestBase { // Spark tests function testSparkSpellIsExecuted() public { // add the `skipped` modifier to skip - address SPARK_PROXY = addr.addr('SPARK_SUBPROXY'); - address SPARK_SPELL = address(0x71059EaAb41D6fda3e916bC9D76cB44E96818654); // Insert Spark spell address - - 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"); + _testStarguardExecution({ + starGuardKey: "SPARK_STARGUARD", + primeAgentSpell: 0x63Fa202a7020e8eE0837196783f0fB768CBFE2f1, // Insert Spark spell address + primeAgentSpellHash: 0x6e88f81cc72989a637f4b87592dcde2016272fbceb08a2af3b2effdb2d20c0fb, // Insert Spark spell hash + directExecutionEnabled: false // Set to true if the spark spell is executed directly from core spell + }); } // Bloom/Grove tests - function testBloomSpellIsExecuted() public { // add the `skipped` modifier to skip + function testBloomSpellIsExecuted() public skipped { // add the `skipped` modifier to skip address BLOOM_PROXY = addr.addr('ALLOCATOR_BLOOM_A_SUBPROXY'); address BLOOM_SPELL = address(0x8b4A92f8375ef89165AeF4639E640e077d7C656b); // Insert Bloom spell address @@ -1314,7 +1272,7 @@ contract DssSpellTest is DssSpellTestBase { BLOOM_PROXY, /* value = */ 0, abi.encodeCall( - ProxyLike(BLOOM_PROXY).exec, + SubProxyLike(BLOOM_PROXY).exec, (BLOOM_SPELL, abi.encodeWithSignature("execute()")) ) ); @@ -1333,7 +1291,7 @@ contract DssSpellTest is DssSpellTestBase { NOVA_PROXY, /* value = */ 0, abi.encodeCall( - ProxyLike(NOVA_PROXY).exec, + SubProxyLike(NOVA_PROXY).exec, (NOVA_SPELL, abi.encodeWithSignature("execute()")) ) ); @@ -1343,474 +1301,189 @@ contract DssSpellTest is DssSpellTestBase { assertTrue(spell.done(), "TestError/spell-not-done"); } - // SPELL-SPECIFIC TESTS GO BELOW - - function testKickerInit() public { - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); + // Obex tests + function testObexSpellIsExecuted() public { // add the `skipped` modifier to skip + address OBEX_PROXY = addr.addr('ALLOCATOR_OBEX_A_SUBPROXY'); + address OBEX_SPELL = address(0xF538909eDF14d2c23002C2b3882Ad60f79d61893); // Insert Obex spell address - assertEq(kick.khump(), -200_000_000 * int256(RAD), "Kicker/khump-not-set"); - assertEq(kick.kbump(), 10_000 * RAD, "Kicker/kbump-not-set"); - assertEq(kick.vat(), address(vat), "Kicker/vat-not-set"); - assertEq(kick.vow(), address(vow), "Kicker/vow-not-set"); - assertEq(kick.splitter(), address(split), "Kicker/splitter-not-set"); - assertEq(kick.wards(pauseProxy), 1, "Kicker/wards-not-set"); - assertEq(vat.wards(address(kick)), 1, "Vat/wards-not-set"); - assertEq(split.wards(address(kick)), 1, "Splitter/wards-not-set"); - } - - function testJobRemoval() public { - SequencerLike seq = SequencerLike(addr.addr("CRON_SEQUENCER")); - address OLD_CRON_FLAP_JOB = address(0xc32506E9bB590971671b649d9B8e18CB6260559F); + vm.expectCall( + OBEX_PROXY, + /* value = */ 0, + abi.encodeCall( + SubProxyLike(OBEX_PROXY).exec, + (OBEX_SPELL, abi.encodeWithSignature("execute()")) + ) + ); _vote(address(spell)); _scheduleWaitAndCast(address(spell)); assertTrue(spell.done(), "TestError/spell-not-done"); - - assertFalse(seq.hasJob(OLD_CRON_FLAP_JOB), "CronSequencer/job-not-removed"); } - function testCronFlapJobWorkableAndWork() public { - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - - SequencerLike seq = SequencerLike(addr.addr("CRON_SEQUENCER")); - address jobAddr = addr.addr("CRON_FLAP_JOB"); - CronJobLike job = CronJobLike(jobAddr); - - // Ensure the job is registered in the sequencer - assertTrue(seq.hasJob(jobAddr), "CronSequencer/flap-job-not-added"); - - // Prepare market conditions so the flap swap can execute without revert - { - GemAbstract pair = GemAbstract(addr.addr("UNIV2USDSSKY")); - FlapOracleLike pip = FlapOracleLike(flap.pip()); - - // Read oracle price as Flapper (whitelisted) - vm.prank(address(flap)); - uint256 price = uint256(pip.read()); - - // Deep liquidity and a +1% buffer over want to satisfy minOut - uint256 usdsWad = 150_000_000 * WAD; - GodMode.setBalance(address(usds), address(pair), usdsWad); - uint256 skyWad = usdsWad * (flap.want() + 10**16) / price; - GodMode.setBalance(address(sky), address(pair), skyWad); - - // Ensure Kicker threshold so the job is workable - stdstore - .target(address(vat)) - .sig("dai(address)") - .with_key(address(vow)) - .checked_write(vat.sin(address(vow)) + kick.kbump()); - } - - bytes32 master = seq.getMaster(); - - // workable() may modify state; snapshot and revert the check - bool isWorkable; - bytes memory args; - - { - uint256 before = vm.snapshotState(); - (isWorkable, args) = job.workable(master); - vm.revertToStateAndDelete(before); - } - assertTrue(isWorkable, "CronFlapJob/not-workable"); + // SPELL-SPECIFIC TESTS GO BELOW - // Execute the job - job.work(master, args); + // 2025-11-17 14:00:00 UTC + uint256 constant MIN_ETA = 1763388000; - // After work, it should not be immediately workable again + function testNextCastTimeMinEta() public { + // Spell obtains approval for execution before MIN_ETA { uint256 before = vm.snapshotState(); - (bool again, ) = job.workable(master); - vm.revertToStateAndDelete(before); - assertFalse(again, "CronFlapJob/still-workable-after-work"); - } - } - - function testSmartBurnEngine() public { // add the `skipped` modifier to skip - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - - assertEq(split.burn(), 1 * WAD, "Splitter/burn-not-set"); - assertEq(split.hop(), 2_880, "Splitter/hop-not-set"); - assertEq(StakingRewardsLike(addr.addr("REWARDS_LSSKY_USDS")).rewardsDuration(), 2_880, "StakingRewards/rewardsDuration-not-set"); - } - - function testLsskySkyFarm() public { // add the `skipped` modifier to skip - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - address rewards = addr.addr("REWARDS_LSSKY_SKY"); - address dist = addr.addr("REWARDS_DIST_LSSKY_SKY"); - address lssky = addr.addr("LOCKSTAKE_SKY"); - address distJob = addr.addr("CRON_REWARDS_DIST_JOB"); + vm.warp(1748736000); // 2025-06-01 00:00:00 UTC - could be any date far enough in the past + _vote(address(spell)); + spell.schedule(); - // StakingRewards wiring - { - StakingRewardsLike rw = StakingRewardsLike(rewards); - assertEq(rw.stakingToken(), lssky, "Rewards/staking-token-mismatch"); - assertEq(rw.rewardsToken(), address(sky), "Rewards/rewards-token-mismatch"); - assertEq(rw.rewardsDistribution(), dist, "Rewards/rewards-distribution-not-set"); - assertEq(rw.owner(), pauseProxy, "Rewards/invalid-owner"); - } - - // Distribution contract wiring - { - VestedRewardsDistributionLike d = VestedRewardsDistributionLike(dist); - assertEq(d.gem(), address(sky), "Dist/gem-mismatch"); - assertEq(d.dssVest(), address(vestSky), "Dist/dss-vest-mismatch"); - assertEq(d.stakingRewards(), address(rewards), "Dist/staking-rewards-mismatch"); - assertGt(d.vestId(), 0, "Dist/vest-id-not-set"); - } - - // Distribution job params from spell: job address and interval - assertEq(chainLog.getAddress("CRON_REWARDS_DIST_JOB"), distJob, "DistJob/chainlog-mismatch"); - assertEq(VestedRewardsDistributionJobLike(distJob).intervals(dist), 7 days - 1 hours, "DistJob/interval-mismatch"); - - uint256 id = vestSky.ids(); - - // Vest parameters and cap adjustment check - { - assertEq(DssVestTransferrableLike(address(vestSky)).czar(), pauseProxy, "Vest/czar-not-set"); - assertEq(DssVestTransferrableLike(address(vestSky)).gem(), address(sky), "Vest/gem-not-set"); - assertEq(vestSky.tot(id), 1_000_000_000 * WAD, "Vest/tot-not-set"); - assertEq(vestSky.bgn(id), block.timestamp - 7 days, "Vest/bgn-not-set"); - - // Cap should be >= 110% of vestTot/vestTau - uint256 vestTot = 1_000_000_000 * WAD; - uint256 vestTau = 180 days; - uint256 rateWithBuffer = 110 * (vestTot / vestTau) / 100; - assertGe(vestSky.cap(), rateWithBuffer, "Vest/cap-too-low"); - } - - // Treasury SKY allowance to vest increased by >= vestTot - assertGe(sky.allowance(pauseProxy, address(vestSky)), 1_000_000_000 * WAD, "Treasury/allowance-too-low"); + // Execute before MIN_ETA is not allowed + vm.warp(1763128800); // 2025-11-14 14:00:00 UTC - // After distribute, unpaid for vestId should be zero and rewards should hold some SKY; rewardRate > 0 - { - assertEq(vestSky.unpaid(id), 0, "Vest/unpaid-not-zero-after-distribute"); - assertGt(sky.balanceOf(address(rewards)), 0, "Rewards/no-sky-balance"); - assertGt(StakingRewardsLike(rewards).rewardRate(), 0, "Rewards/rewardRate-not-set"); - } - } + // Try execute before MIN_ETA + // The error will be overwriten from PauseProxy + vm.expectRevert('ds-pause-delegatecall-error'); + spell.cast(); - function testLsskySkyRewardsIntegration() public { - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - - StakingRewardsLike rewards = StakingRewardsLike(addr.addr("REWARDS_LSSKY_SKY")); - VestedRewardsDistributionLike dist = VestedRewardsDistributionLike(addr.addr("REWARDS_DIST_LSSKY_SKY")); - address lssky = addr.addr("LOCKSTAKE_SKY"); - - // Sanity checks - assertEq(rewards.rewardsDistribution(), address(dist), "Rewards/rewards-dist-mismatch"); - assertEq(rewards.stakingToken(), lssky, "Rewards/staking-token-mismatch"); - assertEq(rewards.rewardsToken(), address(sky), "Rewards/rewards-token-mismatch"); - assertTrue(vestSky.valid(dist.vestId()), "Vest/invalid-vest-id"); - assertEq(dist.dssVest(), address(vestSky), "Dist/dss-vest-mismatch"); - assertEq(dist.stakingRewards(), address(rewards), "Dist/staking-rewards-mismatch"); - - uint256 before = vm.snapshotState(); - { // Check if users can stake and get rewards - uint256 stakingWad = 100_000 * WAD; - _giveTokens(lssky, stakingWad); - GemAbstract(lssky).approve(address(rewards), stakingWad); - rewards.stake(stakingWad); - assertEq(rewards.balanceOf(address(this)), stakingWad, "Rewards/invalid-staked-balance"); - - uint256 pbalance = sky.balanceOf(address(this)); - skip(7 days); - rewards.getReward(); - assertGt(sky.balanceOf(address(this)), pbalance); - } + assertEq(spell.nextCastTime(), MIN_ETA, "testNextCastTimeMinEta/min-eta-not-enforced"); - vm.revertToState(before); - { // Check if distribute can be called again in the future - uint256 pbalance = sky.balanceOf(address(rewards)); - skip(7 days); - dist.distribute(); - assertGt(sky.balanceOf(address(rewards)), pbalance, "Dist/no-increase-balance"); + vm.revertToStateAndDelete(before); } - } - - function testStusdsRateSetter() public { // add the `skipped` modifier to skip - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - - (uint16 minStr, uint16 maxStr, uint256 strStep) = rateSetter.strCfg(); - assertEq(strStep, 500, "StusdsRateSetter/step-not-set"); - (uint16 minDuty, uint16 maxDuty, uint256 dutyStep) = rateSetter.dutyCfg(); - assertEq(dutyStep, 500, "StusdsRateSetter/step-not-set"); - - // Check that the rest of the parameters are unchanged - assertEq(minStr, 200, "StusdsRateSetter/min-not-set"); - assertEq(maxStr, 5_000, "StusdsRateSetter/max-not-set"); - assertEq(minDuty, 210, "StusdsRateSetter/min-not-set"); - assertEq(maxDuty, 5_000, "StusdsRateSetter/max-not-set"); - } - - function testStUsdsRateSetterRejectsInvalid() public { - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - - // Satisfy timing guard - vm.warp(block.timestamp + rateSetter.tau()); - - (uint16 minStr, uint16 maxStr, uint16 strStep) = rateSetter.strCfg(); - (uint16 minDuty, uint16 maxDuty, uint16 dutyStep) = rateSetter.dutyCfg(); - - uint256 line = rateSetter.maxLine(); - uint256 cap = rateSetter.maxCap(); - - address bud = address(0xBB865F94B8A92E57f79fCc89Dfd4dcf0D3fDEA16); - - vm.startPrank(bud); - // Invalid: str above max - vm.expectRevert("StUsdsRateSetter/above-max"); - rateSetter.set(uint256(maxStr) + 1, minDuty, line, cap); - - // Invalid: str below min - vm.expectRevert("StUsdsRateSetter/below-min"); - rateSetter.set(uint256(minStr) - 1, minDuty, line, cap); - - uint256 oldStrBps = ConvLike(spbeam.conv()).rtob(stusds.str()); - (uint256 dutyRay, ) = jug.ilks(stusds.ilk()); - uint256 oldDutyBps = ConvLike(spbeam.conv()).rtob(dutyRay); - - // Imvalid: str delta above step - vm.expectRevert("StUsdsRateSetter/delta-above-step"); - rateSetter.set(oldStrBps + strStep + 1, oldDutyBps, line, cap); + // Spell obtains approval for execution after MIN_ETA { uint256 before = vm.snapshotState(); - rateSetter.set(oldStrBps + strStep, oldDutyBps, line, cap); - vm.warp(block.timestamp + rateSetter.tau()); - // Imvalid: str delta above step - vm.expectRevert("StUsdsRateSetter/delta-above-step"); - rateSetter.set(oldStrBps - 1, oldDutyBps, line, cap); - vm.revertToStateAndDelete(before); - } - - // Invalid: duty below min - vm.expectRevert("StUsdsRateSetter/below-min"); - rateSetter.set(oldStrBps, uint256(minDuty) - 1, line, cap); - - // Invalid: duty above max - vm.expectRevert("StUsdsRateSetter/above-max"); - rateSetter.set(oldStrBps, uint256(maxDuty) + 1, line, cap); + vm.warp(MIN_ETA); // As we move closer to MIN_ETA, GSM delay is still applicable + _vote(address(spell)); + spell.schedule(); - // Invalid: duty delta above step - vm.expectRevert("StUsdsRateSetter/delta-above-step"); - rateSetter.set(oldStrBps, oldDutyBps + dutyStep + 1, line, cap); - - { - uint256 before = vm.snapshotState(); - rateSetter.set(oldStrBps, oldDutyBps + dutyStep, line, cap); - vm.warp(block.timestamp + rateSetter.tau()); + assertGe(spell.nextCastTime(), MIN_ETA + pause.delay(), "testNextCastTimeMinEta/gsm-delay-not-enforced"); - // Imvalid: str delta above step - vm.expectRevert("StUsdsRateSetter/delta-above-step"); - rateSetter.set(oldStrBps, oldDutyBps - 1, line, cap); vm.revertToStateAndDelete(before); } - - // Valid: str and duty within bounds (no change) - rateSetter.set(oldStrBps, oldDutyBps, line, cap); - vm.stopPrank(); } - function testStUsdsRateSetterAllowsValid() public { - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - - (,,uint16 strStep) = rateSetter.strCfg(); - (,,uint16 dutyStep) = rateSetter.dutyCfg(); - - // Satisfy timing guard - vm.warp(block.timestamp + rateSetter.tau()); - - // Use current bps values (delta = 0, within bounds) - uint256 oldStrBps = ConvLike(spbeam.conv()).rtob(stusds.str()); - (uint256 dutyRay, ) = jug.ilks(stusds.ilk()); - uint256 oldDutyBps = ConvLike(spbeam.conv()).rtob(dutyRay); + event LogMessagePublished(address indexed sender, uint64 sequence, uint32 nonce, bytes payload, uint8 consistencyLevel); + event Upgraded(address indexed implementation); - uint256 line = rateSetter.maxLine(); - uint256 cap = rateSetter.maxCap(); + function testMigrationStep0() public { + WormholeLike wormholeCoreBridge = WormholeLike(0x98f3c9e6E3fAce36bAAd05FE09d375Ef1464288B); + NttManagerLike nttManager = NttManagerLike(0x7d4958454a3f520bDA8be764d06591B054B0bf33); + address transferWallet = makeAddr("transferWallet"); - address bud = address(0xBB865F94B8A92E57f79fCc89Dfd4dcf0D3fDEA16); + address nttManagerImpV2 = 0xD4DD90bAC23E2a1470681E7cAfFD381FE44c3430; + bytes memory payloadWhProgramUpgrade = hex"000000000000000047656e6572616c507572706f7365476f7665726e616e636502000106742d7ca523a03aaafe48abab02e47eb8aef53415cb603c47a3ccf864d86dc002a8f6914e88a1b0e210153ef763ae2b00c2b93d16c124d2c0537a10048000000007a821ac5164fa9b54fd93b54dba8215550b8fce868f52299169f6619867cac501000106856f43abf4aaa4a26b32ae8ea4cb8fadc8e02d267703fbd5f9dad85f6d00b300012d27f5131975fdaf20a5934c6e90f6d7c9bbde9fcf94c37b48c5a49c7f06aae2000105cab222188023f74394ecaee9daf397c11a2a672511adc34958c1d7bdb1c673000106a7d517192c5c51218cc94c3d4af17f58daee089ba1fd44e3dbd98a00000000000006a7d51718c774c928566398691d5eb68b5eb8a39b4b6d5c73555b210000000000006f776e65720000000000000000000000000000000000000000000000000000000100000403000000"; - vm.startPrank(bud); + uint16 solanaWormholeChainId = 1; // Defined in https://wormhole.com/docs/products/reference/chain-ids/ + address nttManagerToken = nttManager.token(); + uint8 tokenDecimals = GemAbstract(nttManagerToken).decimals(); - // Valid str and duty within bounds and delta below step - rateSetter.set(oldStrBps + strStep - 1, oldDutyBps + dutyStep - 1, line, cap); + // Prepare transfer wallet + vm.deal(transferWallet, 10 ether); // High enough to cover all the fees + GodMode.setBalance(nttManagerToken, address(transferWallet), 2 * 10 ** tokenDecimals); + vm.prank(transferWallet); + GemAbstract(nttManagerToken).approve(address(nttManager), 2 * 10 ** tokenDecimals); - uint256 newStrBps = ConvLike(spbeam.conv()).rtob(stusds.str()); - (uint256 newDutyRay, ) = jug.ilks(stusds.ilk()); - uint256 newDutyBps = ConvLike(spbeam.conv()).rtob(newDutyRay); + (, uint256 totalDeliveryPrice) = nttManager.quoteDeliveryPrice(solanaWormholeChainId, new bytes(1)); - assertEq(newStrBps, oldStrBps + strStep - 1, "StUsdsRateSetter/strbps-changed"); - assertEq(newDutyBps, oldDutyBps + dutyStep - 1, "StUsdsRateSetter/dutybps-changed"); - - vm.stopPrank(); - } - - function testStarGuard() public { - address SPARK_PROXY = addr.addr('SPARK_SUBPROXY'); - address SPARK_STARGUARD = addr.addr("SPARK_STARGUARD"); - - assertFalse(StarGuardJobLike(addr.addr("CRON_STARGUARD_JOB")).has(SPARK_STARGUARD), "StarGuardJob/stars-not-set"); - - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - - assertEq(SubProxyLike(SPARK_PROXY).wards(SPARK_STARGUARD), 1, "SubProxy/wards-not-set"); - assertEq(StarGuardLike(SPARK_STARGUARD).subProxy(), SPARK_PROXY, "StarGuard/subProxy-not-set"); - assertEq(StarGuardLike(SPARK_STARGUARD).wards(pauseProxy), 1, "StarGuard/wards-not-set"); - assertEq(StarGuardLike(SPARK_STARGUARD).maxDelay(), 7 days, "StarGuard/maxDelay-not-set"); - - (address spellAddr,,) = StarGuardLike(SPARK_STARGUARD).spellData(); - assertEq(spellAddr, address(0), "StarGuard/unexpected-plotted-spell"); - - assertTrue(StarGuardJobLike(addr.addr("CRON_STARGUARD_JOB")).has(SPARK_STARGUARD), "StarGuardJob/stars-not-set"); - } + // Transfer is possible before upgrade + vm.prank(transferWallet); + (bool transferBeforeSpell,) = + address(nttManager).call{value: totalDeliveryPrice}( + abi.encodeWithSignature( + "transfer(uint256,uint16,bytes32)", + 1 * 10 ** tokenDecimals, + solanaWormholeChainId, + bytes32("solanaAddress") + ) + ); + assertTrue(transferBeforeSpell, "Test/MigrationStep0/transfer-call-should-succeed"); - function testStarGuardSpellExecution() public { _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - - StarGuardLike starGuard = StarGuardLike(addr.addr("SPARK_STARGUARD")); - - // Deploy a simple payload that is always executable - MockStarSpell payload = new MockStarSpell(); - // Plot the payload as the Pause Proxy (admin) - vm.startPrank(pauseProxy); - starGuard.plot(address(payload), address(payload).codehash); - vm.stopPrank(); + // _scheduleWaitAndCast run manually to capture the wormhole event + spell.schedule(); + vm.warp(spell.nextCastTime()); - // Should be executable now - assertTrue(starGuard.prob(), "StarGuard/prob-not-true"); + // Spell reverts when fee is bigger than 0 + vm.mockCall( + address(wormholeCoreBridge), + abi.encodeWithSelector(WormholeLike.messageFee.selector), + abi.encode(1) + ); + vm.expectRevert(); + spell.cast(); + vm.clearMockedCalls(); - // Expect the starGuard to emit its Exec event upon exec() - vm.expectEmit(); - emit Executed(); - vm.expectEmit(true, false, false, false, address(starGuard)); - emit Exec(address(payload)); - address executed = starGuard.exec(); - assertEq(executed, address(payload), "StarGuard/exec-wrong-target"); + // NTT Manager implementation upgrade event + vm.expectEmit(true, true, true, true, address(nttManager)); + emit Upgraded(nttManagerImpV2); - // Still owner of subProxy, and no longer plotted - assertEq(SubProxyLike(addr.addr("SPARK_SUBPROXY")).wards(address(starGuard)), 1, "StarGuard/subProxy-wards-changed"); - assertFalse(starGuard.prob(), "StarGuard/spell-not-cleared"); - } + // Wormhole message sent event + vm.expectEmit(true, true, true, true, address(wormholeCoreBridge)); + emit LogMessagePublished(pauseProxy, wormholeCoreBridge.nextSequence(pauseProxy), 0, payloadWhProgramUpgrade, 202); + spell.cast(); - function testStarGuardDrop() public { - _vote(address(spell)); - _scheduleWaitAndCast(address(spell)); assertTrue(spell.done(), "TestError/spell-not-done"); - StarGuardLike starGuard = StarGuardLike(addr.addr("SPARK_STARGUARD")); - - // Deploy a simple payload and plot it - MockStarSpell payload = new MockStarSpell(); - vm.startPrank(pauseProxy); - starGuard.plot(address(payload), address(payload).codehash); - vm.stopPrank(); - - assertTrue(starGuard.prob(), "StarGuard/prob-not-true-after-plot"); + // Transfer is not possible after upgrade + vm.prank(transferWallet); + (bool transferAfterSpell,) = + address(nttManager).call{value: totalDeliveryPrice}( + abi.encodeWithSignature( + "transfer(uint256,uint16,bytes32)", + 1 * 10 ** tokenDecimals, + solanaWormholeChainId, + bytes32("solanaAddress") + ) + ); + assertFalse(transferAfterSpell, "Test/MigrationStep0/transfer-call-should-fail"); - // Expect a Drop event and cancel the plotted spell - vm.startPrank(pauseProxy); - vm.expectEmit(true, false, false, false, address(starGuard)); - emit Drop(address(payload)); - starGuard.drop(); - vm.stopPrank(); + // Test call migrateLockedTokens success + uint256 nttManagerBalance = usds.balanceOf(address(nttManager)); + uint256 pauseProxyBalance = usds.balanceOf(pauseProxy); - // After drop, it should not be executable and spellData cleared - assertFalse(starGuard.prob(), "StarGuard/prob-true-after-drop"); - (address plotted,,) = starGuard.spellData(); - assertEq(plotted, address(0), "StarGuard/spellData-not-cleared"); + vm.prank(pauseProxy); + nttManager.migrateLockedTokens(pauseProxy); - // Exec should revert when nothing is plotted - vm.expectRevert("StarGuard/unplotted-spell"); - starGuard.exec(); + assertEq(usds.balanceOf(address(nttManager)), 0, "Test/MigrationStep0/lockedTokens-balance-mismatch"); + assertEq(usds.balanceOf(pauseProxy), pauseProxyBalance + nttManagerBalance, "Test/MigrationStep0/migratedLockedTokens-balance-mismatch"); } - event Drop(address indexed addr); - event Exec(address indexed addr); - event Executed(); + function testWhitelistObexALMProxy() public { + address almProxy = addr.addr("OBEX_ALM_PROXY"); + DssLitePsmLike psmUsdcA = DssLitePsmLike(addr.addr("MCD_LITE_PSM_USDC_A")); + GemAbstract usdc = GemAbstract(addr.addr("USDC")); + + // bud is 0 before kiss + assertEq(psmUsdcA.bud(almProxy), 0, "TestError/MCD_LITE_PSM_USDC_A/invalid-bud"); - function testCronStarGuardJobWorkAndWorkable() public { _vote(address(spell)); _scheduleWaitAndCast(address(spell)); - assertTrue(spell.done(), "TestError/spell-not-done"); - - StarGuardLike starGuard = StarGuardLike(addr.addr("SPARK_STARGUARD")); - SequencerLike seq = SequencerLike(addr.addr("CRON_SEQUENCER")); - CronJobLike job = CronJobLike(addr.addr("CRON_STARGUARD_JOB")); - - // Ensure job is registered - assertTrue(seq.hasJob(address(job)), "StarGuardJob/not-in-sequencer"); - - // Plot an executable payload so the job becomes workable - MockStarSpell payload = new MockStarSpell(); - vm.startPrank(pauseProxy); - starGuard.plot(address(payload), address(payload).codehash); - vm.stopPrank(); - - assertTrue(starGuard.prob(), "StarGuard/prob-not-true-after-plot"); - - bytes32 network = seq.getMaster(); - - // workable() may mutate; snapshot and revert around the check - bool isWorkable; - bytes memory args; - { - uint256 before = vm.snapshotState(); - (isWorkable, args) = job.workable(network); - vm.revertToStateAndDelete(before); - } - assertTrue(isWorkable, "StarGuardJob/not-workable"); + assertTrue(spell.done()); - job.work(network, args); + // bud is 1 after kiss + assertEq(psmUsdcA.bud(almProxy), 1, "TestError/MCD_LITE_PSM_USDC_A/invalid-bud"); - // After work, plotted spell should be cleared and not executable - assertFalse(starGuard.prob(), "StarGuard/prob-true-after-job"); - (address plotted,,) = starGuard.spellData(); - assertEq(plotted, address(0), "StarGuard/spellData-not-cleared-by-job"); + // OBEX can call buyGemNoFee() on MCD_LITE_PSM_USDC_A + uint256 daiAmount = 1_000 * WAD; + uint256 usdcAmount = 1_000 * 10**6; - // Not immediately workable again - { - uint256 before = vm.snapshotState(); - (bool again, ) = job.workable(network); - vm.revertToStateAndDelete(before); - assertFalse(again, "StarGuardJob/still-workable-after-work"); - } - } -} + // fund proxy + deal(address(dai), almProxy, daiAmount); + vm.startPrank(almProxy); -contract MockStarSpell { - event Executed(); + // buy gem with no fee + dai.approve(address(psmUsdcA), daiAmount); + psmUsdcA.buyGemNoFee(almProxy, usdcAmount); + assertEq(usdc.balanceOf(almProxy), usdcAmount); + assertEq(dai.balanceOf(almProxy), 0); - function execute() external { - emit Executed(); - } + // now sell it back with no fee + usdc.approve(address(psmUsdcA), usdcAmount); + psmUsdcA.sellGemNoFee(almProxy, usdcAmount); + assertEq(usdc.balanceOf(almProxy), 0); + assertEq(dai.balanceOf(almProxy), daiAmount); - function isExecutable() external pure returns (bool) { - return true; + vm.stopPrank(); } } diff --git a/src/dependencies/dss-flappers/FlapperInit.sol b/src/dependencies/dss-flappers/FlapperInit.sol deleted file mode 100644 index e9aec84e..00000000 --- a/src/dependencies/dss-flappers/FlapperInit.sol +++ /dev/null @@ -1,250 +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 usds() external view returns (address); -} - -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; -} - -interface KickerLike { - function vat() external view returns (address); - function vow() external view returns (address); - function splitter() external view returns (address); - function file(bytes32, uint256) external; - function file(bytes32, int256) 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; -} - -struct KickerConfig { - int256 khump; - uint256 kbump; - bytes32 chainlogKey; -} - -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).usds(), "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)); - } - - function initKicker( - DssInstance memory dss, - address kicker, - KickerConfig memory cfg - ) internal { - require(cfg.kbump % RAY == 0, "kbump not multiple of RAY"); - - address splitter = dss.chainlog.getAddress("MCD_SPLIT"); - require(KickerLike(kicker).vow() == address(dss.vow), "vow mismatch"); - require(KickerLike(kicker).splitter() == splitter, "splitter mismatch"); - - dss.vow.file("bump", 0); - dss.vow.file("hump", type(uint256).max); - dss.vow.file("dump", 0); - dss.vow.file("sump", type(uint256).max); - - KickerLike(kicker).file("khump", cfg.khump); - KickerLike(kicker).file("kbump", cfg.kbump); - - dss.vat.rely(kicker); - SplitterLike(splitter).rely(kicker); - - dss.chainlog.setAddress(cfg.chainlogKey, kicker); - } -} diff --git a/src/dependencies/dss-flappers/SplitterInstance.sol b/src/dependencies/dss-flappers/SplitterInstance.sol deleted file mode 100644 index bb61fb72..00000000 --- a/src/dependencies/dss-flappers/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/endgame-toolkit/StakingRewardsInit.sol b/src/dependencies/endgame-toolkit/StakingRewardsInit.sol deleted file mode 100644 index 3e10a288..00000000 --- a/src/dependencies/endgame-toolkit/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/endgame-toolkit/VestInit.sol b/src/dependencies/endgame-toolkit/VestInit.sol deleted file mode 100644 index 4e8a216f..00000000 --- a/src/dependencies/endgame-toolkit/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/endgame-toolkit/VestedRewardsDistributionInit.sol b/src/dependencies/endgame-toolkit/VestedRewardsDistributionInit.sol deleted file mode 100644 index 2026b97c..00000000 --- a/src/dependencies/endgame-toolkit/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/endgame-toolkit/treasury-funded-farms/TreasuryFundedFarmingInit.sol b/src/dependencies/endgame-toolkit/treasury-funded-farms/TreasuryFundedFarmingInit.sol deleted file mode 100644 index 62a1fec0..00000000 --- a/src/dependencies/endgame-toolkit/treasury-funded-farms/TreasuryFundedFarmingInit.sol +++ /dev/null @@ -1,162 +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 {VestInit, VestCreateParams} from "../VestInit.sol"; -import { - VestedRewardsDistributionInit, VestedRewardsDistributionInitParams -} from "../VestedRewardsDistributionInit.sol"; - -struct FarmingInitParams { - address stakingToken; - address rewardsToken; - address rewards; - bytes32 rewardsKey; // Chainlog key - address dist; - bytes32 distKey; // Chainlog key - address distJob; - uint256 distJobInterval; // in seconds - address vest; - uint256 vestTot; - uint256 vestBgn; - uint256 vestTau; -} - -struct FarmingInitResult { - uint256 vestId; - uint256 distributedAmount; -} - -library TreasuryFundedFarmingInit { - ChainlogLike internal constant chainlog = ChainlogLike(0xdA0Ab1e0017DEbCd72Be8599041a2aa3bA7e740F); - - function initFarm(FarmingInitParams memory p) internal returns (FarmingInitResult memory r) { - // Note: `p.vest` is expected to be of type `DssVestTransferrable` - require(DssVestTransferrableLike(p.vest).czar() == address(this), "initFarm/vest-czar-mismatch"); - require(DssVestTransferrableLike(p.vest).gem() == p.rewardsToken, "initFarm/vest-gem-mismatch"); - - require( - StakingRewardsLike(p.rewards).stakingToken() == p.stakingToken, "initFarm/rewards-staking-token-mismatch" - ); - require( - StakingRewardsLike(p.rewards).rewardsToken() == p.rewardsToken, "initFarm/rewards-rewards-token-mismatch" - ); - require(StakingRewardsLike(p.rewards).rewardRate() == 0, "initFarm/reward-rate-not-zero"); - require( - StakingRewardsLike(p.rewards).rewardsDistribution() == address(0), - "initFarm/rewards-distribution-already-set" - ); - require(StakingRewardsLike(p.rewards).owner() == address(this), "initFarm/invalid-owner"); - - require(VestedRewardsDistributionLike(p.dist).gem() == p.rewardsToken, "initFarm/dist-gem-mismatch"); - require(VestedRewardsDistributionLike(p.dist).dssVest() == p.vest, "initFarm/dist-dss-vest-mismatch"); - require(VestedRewardsDistributionLike(p.dist).vestId() == 0, "initFarm/dist-vest-id-already-set"); - require( - VestedRewardsDistributionLike(p.dist).stakingRewards() == p.rewards, - "initFarm/dist-staking-rewards-mismatch" - ); - - // Set `dist` with `rewardsDistribution` role in `rewards`. - StakingRewardsInit.init(p.rewards, StakingRewardsInitParams({dist: p.dist})); - - // Increase `rewardsToken` `p.vest` allowance from the treasury for `p.vestTot`. - uint256 allowance = ERC20Like(p.rewardsToken).allowance(address(this), p.vest); - ERC20Like(p.rewardsToken).approve(p.vest, allowance + p.vestTot); - - // Check if `p.vest.cap` needs to be adjusted based on the new vest rate. - // Note: adds 10% buffer to the rate, as usual for this parameter. - uint256 cap = DssVestTransferrableLike(p.vest).cap(); - uint256 rateWithBuffer = (110 * (p.vestTot / p.vestTau)) / 100; - if (rateWithBuffer > cap) { - DssVestTransferrableLike(p.vest).file("cap", rateWithBuffer); - } - - // 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})); - - // Check if the first distribution is already available and then distribute. - uint256 unpaid = DssVestTransferrableLike(p.vest).unpaid(vestId); - if (unpaid > 0) { - VestedRewardsDistributionLike(p.dist).distribute(); - } - - VestedRewardsDistributionJobLike(p.distJob).set(p.dist, p.distJobInterval); - - r.vestId = vestId; - r.distributedAmount = unpaid; - - chainlog.setAddress(p.rewardsKey, p.rewards); - chainlog.setAddress(p.distKey, p.dist); - } - - function initLockstakeFarm(FarmingInitParams memory p, address lockstakeEngine) - internal - returns (FarmingInitResult memory r) - { - address lssky = LockstakeEngineLike(lockstakeEngine).lssky(); - require(p.stakingToken == lssky, "initLockstakeFarm/staking-token-not-lssky"); - r = initFarm(p); - LockstakeEngineLike(lockstakeEngine).addFarm(p.rewards); - } -} - -interface DssVestTransferrableLike { - function cap() external view returns (uint256); - function czar() external view returns (address); - function gem() external view returns (address); - function file(bytes32 key, uint256 value) external; - function unpaid(uint256 vestid) external view returns (uint256); -} - -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 distribute() external; - function gem() external view returns (address); - function stakingRewards() external view returns (address); - function vestId() external view returns (uint256); -} - -interface ChainlogLike { - function setAddress(bytes32 key, address addr) external; -} - -interface ERC20Like { - function allowance(address owner, address spender) external view returns (uint256); - function approve(address spender, uint256 amount) external; -} - -interface VestedRewardsDistributionJobLike { - function set(address dist, uint256 interval) external; -} - -interface LockstakeEngineLike { - function addFarm(address farm) external; - function lssky() external view returns (address); -} diff --git a/src/dependencies/star-guard/StarGuardInit.sol b/src/dependencies/star-guard/StarGuardInit.sol deleted file mode 100644 index bf319900..00000000 --- a/src/dependencies/star-guard/StarGuardInit.sol +++ /dev/null @@ -1,64 +0,0 @@ -// SPDX-FileCopyrightText: © 2025 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; - -interface ChainLogLike { - function getAddress(bytes32 _key) external view returns (address addr); - function setAddress(bytes32 _key, address _addr) external; -} - -interface StarGuardLike { - function file(bytes32 what, uint256 data) external; - function subProxy() external view returns (address subProxy); - function spellData() external view returns (address addr, bytes32 tag, uint256 deadline); - function wards(address usr) external view returns (uint256 allowed); -} - -interface SubProxyLike { - function rely(address usr) external; -} - -struct StarGuardConfig { - address subProxy; - bytes32 subProxyKey; - address starGuard; - bytes32 starGuardKey; - uint256 maxDelay; -} - -library StarGuardInit { - function init( - address chainlog, - StarGuardConfig memory cfg - ) internal { - address pauseProxy = ChainLogLike(chainlog).getAddress("MCD_PAUSE_PROXY"); - - require(StarGuardLike(cfg.starGuard).wards(pauseProxy) == 1, "StarGuardInit/pauseProxy-not-authorized"); - require(StarGuardLike(cfg.starGuard).subProxy() == address(cfg.subProxy), "StarGuardInit/subProxy-does-not-match"); - require(cfg.maxDelay > 0, "StarGuardInit/invalid-maxDelay"); - (address addr,,) = StarGuardLike(cfg.starGuard).spellData(); - require(addr == address(0), "StarGuardInit/unexpected-plotted-spell"); - - StarGuardLike(cfg.starGuard).file("maxDelay", cfg.maxDelay); - SubProxyLike(cfg.subProxy).rely(cfg.starGuard); - - if (cfg.subProxyKey != bytes32(0)) { - ChainLogLike(chainlog).setAddress(cfg.subProxyKey, cfg.subProxy); - } - ChainLogLike(chainlog).setAddress(cfg.starGuardKey, cfg.starGuard); - } -} diff --git a/src/dependencies/wh-lz-migration/MigrationInit.sol b/src/dependencies/wh-lz-migration/MigrationInit.sol new file mode 100644 index 00000000..abb62340 --- /dev/null +++ b/src/dependencies/wh-lz-migration/MigrationInit.sol @@ -0,0 +1,267 @@ +// SPDX-FileCopyrightText: © 2025 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; + +interface ChainlogLike { + function getAddress(bytes32) external view returns (address); +} + +interface NttManagerLike { + function token() external view returns (address); + function mode() external view returns (uint8); + function chainId() external view returns (uint16); + function rateLimitDuration() external view returns (uint64); + function upgrade(address) external; + function migrateLockedTokens(address) external; +} + +interface WormholeLike { + function messageFee() external view returns (uint256); + function publishMessage(uint32 nonce, bytes memory payload, uint8 consistencyLevel) external payable returns (uint64); +} + +interface OAppLike { + function owner() external view returns (address); + function endpoint() external view returns (address); + function peers(uint32) external view returns (bytes32); +} + +interface OFTAdapterLike is OAppLike { + struct RateLimitConfig { + uint32 eid; + uint48 window; + uint256 limit; + } + function token() external view returns (address); + function defaultFeeBps() external view returns (uint16); + function feeBps(uint32) external view returns (uint16, bool); + function paused() external view returns (bool); + function outboundRateLimits(uint32) external view returns (uint128, uint48, uint256, uint256); + function inboundRateLimits(uint32) external view returns (uint128, uint48, uint256, uint256); + function rateLimitAccountingType() external view returns (uint8); + function setRateLimits(RateLimitConfig[] calldata, RateLimitConfig[] calldata) external; +} + +interface EndpointLike { + function delegates(address) external view returns (address); +} + +library MigrationInit { + ChainlogLike constant LOG = ChainlogLike(0xdA0Ab1e0017DEbCd72Be8599041a2aa3bA7e740F); + + address constant WORMHOLE_CORE_BRIDGE = 0x98f3c9e6E3fAce36bAAd05FE09d375Ef1464288B; + address constant NTT_MANAGER = 0x7d4958454a3f520bDA8be764d06591B054B0bf33; + address constant ETH_LZ_ENDPOINT = 0x1a44076050125825900e736c501f859c50fE728c; + uint32 constant SOL_EID = 30168; + + function _publishWHMessage(address wormhole, uint256 fee, bytes memory payload) internal { + WormholeLike(wormhole).publishMessage{value: fee}({ + nonce: 0, + payload: payload, + consistencyLevel: 202 // "Finalized" (~19 minutes - see https://wormhole.com/docs/build/reference/consistency-levels/) + }); + } + + ////////////////////// + /////// Step 0 /////// + ////////////////////// + + function initMigrationStep0( + address nttManagerImpV2, + uint256 maxFee, + bytes memory payload, + address nttManager, + address wormhole + ) internal { + NttManagerLike mgr = NttManagerLike(nttManager); + NttManagerLike impV2 = NttManagerLike(nttManagerImpV2); + + // Sanity checks + require(impV2.token() == mgr.token(), "MigrationInit/token-mismatch"); + require(impV2.mode() == mgr.mode(), "MigrationInit/mode-mismatch"); + require(impV2.chainId() == mgr.chainId(), "MigrationInit/chain-id-mismatch"); + require(impV2.rateLimitDuration() == mgr.rateLimitDuration(), "MigrationInit/rl-dur-mismatch"); + + // Upgrade Ethereum NTT Manager + mgr.upgrade(nttManagerImpV2); + + // Upgrade Solana NTT Manager + uint256 fee = WormholeLike(wormhole).messageFee(); + require(fee <= maxFee, "MigrationInit/exceeds-max-fee"); + _publishWHMessage({ + wormhole: wormhole, + fee: fee, + payload: payload + }); + } + + function initMigrationStep0( + address nttManagerImpV2, + uint256 maxFee, + bytes memory payload + ) internal { + initMigrationStep0({ + nttManagerImpV2: nttManagerImpV2, + maxFee: maxFee, + payload: payload, + nttManager: NTT_MANAGER, + wormhole: WORMHOLE_CORE_BRIDGE + }); + } + + ////////////////////// + /////// Step 1 /////// + ////////////////////// + + function _sanityCheckOapp(address oapp, uint32 solEid, address owner, address endpoint, bytes32 peer) internal view { + OAppLike oapp_ = OAppLike(oapp); + // Note that the oapp's enforcedOptions are assumed to have been manually reviewed by Sky + require(oapp_.owner() == owner, "MigrationInit/owner-mismatch"); + require(oapp_.endpoint() == endpoint, "MigrationInit/endpoint-mismatch"); + require(oapp_.peers(solEid) == peer, "MigrationInit/peer-mismatch"); + require(EndpointLike(endpoint).delegates(oapp) == owner, "MigrationInit/delegate-mismatch"); + } + + function _sanityCheckOft(address oftAdapter, uint32 solEid, address token, uint8 rlAccountingType) internal view { + OFTAdapterLike oft = OFTAdapterLike(oftAdapter); + (uint16 feeBps, bool enabled) = oft.feeBps(solEid); + (,,,uint256 outLimit) = oft.outboundRateLimits(solEid); + (,,,uint256 inLimit) = oft.inboundRateLimits(solEid); + require(oft.token() == token, "MigrationInit/token-mismatch"); + require(oft.defaultFeeBps() == 0, "MigrationInit/incorrect-default-fee"); + require(feeBps == 0 && !enabled, "MigrationInit/incorrect-solana-fee"); + require(!oft.paused(), "MigrationInit/paused"); + require(outLimit == 0, "MigrationInit/outbound-rl-nonzero"); + require(inLimit == 0, "MigrationInit/inbound-rl-nonzero"); + require(oft.rateLimitAccountingType() == rlAccountingType , "MigrationInit/rl-accounting-mismatch"); + } + + struct RateLimitsParams { + uint48 outboundWindow; + uint256 outboundLimit; + uint48 inboundWindow; + uint256 inboundLimit; + uint8 rlAccountingType; + } + + struct MigrationStep1Params { + address oftAdapter; + bytes32 oftPeer; + address govOapp; + bytes32 govPeer; + RateLimitsParams rl; + uint256 maxFee; + bytes transferMintAuthPayload; + bytes transferFreezeAuthPayload; + bytes transferMetadataUpdateAuthPayload; + address nttManager; + address wormhole; + address owner; + address endpoint; + uint32 solEid; + } + + function initMigrationStep1( + MigrationStep1Params memory p + ) internal { + // Sanity checks + _sanityCheckOapp(p.oftAdapter, p.solEid, p.owner, p.endpoint, p.oftPeer); + _sanityCheckOapp(p.govOapp, p.solEid, p.owner, p.endpoint, p.govPeer); + _sanityCheckOft(p.oftAdapter, p.solEid, NttManagerLike(p.nttManager).token(), p.rl.rlAccountingType); + + // Migrated Locked Tokens + NttManagerLike(p.nttManager).migrateLockedTokens(p.oftAdapter); + + // Activate USDS Ethereum LZ Bridge + OFTAdapterLike.RateLimitConfig[] memory inboundCfg = new OFTAdapterLike.RateLimitConfig[](1); + OFTAdapterLike.RateLimitConfig[] memory outboundCfg = new OFTAdapterLike.RateLimitConfig[](1); + inboundCfg[0] = OFTAdapterLike.RateLimitConfig(p.solEid, p.rl.inboundWindow, p.rl.inboundLimit); + outboundCfg[0] = OFTAdapterLike.RateLimitConfig(p.solEid, p.rl.outboundWindow, p.rl.outboundLimit); + OFTAdapterLike(p.oftAdapter).setRateLimits(inboundCfg, outboundCfg); + + uint256 fee = WormholeLike(p.wormhole).messageFee(); + require(fee <= p.maxFee, "MigrationInit/exceeds-max-fee"); + + // Transfer Mint Authority + _publishWHMessage({ + wormhole: p.wormhole, + fee: fee, + payload: p.transferMintAuthPayload + }); + + // Transfer Freeze Authority + _publishWHMessage({ + wormhole: p.wormhole, + fee: fee, + payload: p.transferFreezeAuthPayload + }); + + // Transfer Metadata Update Authority + _publishWHMessage({ + wormhole: p.wormhole, + fee: fee, + payload: p.transferMetadataUpdateAuthPayload + }); + } + + function initMigrationStep1( + address oftAdapter, + bytes32 oftPeer, + address govOapp, + bytes32 govPeer, + RateLimitsParams memory rl, + uint256 maxFee, + bytes memory transferMintAuthPayload, + bytes memory transferFreezeAuthPayload, + bytes memory transferMetadataUpdateAuthPayload + ) internal { + MigrationStep1Params memory p = MigrationStep1Params({ + oftAdapter: oftAdapter, + oftPeer: oftPeer, + govOapp: govOapp, + govPeer: govPeer, + rl: rl, + maxFee: maxFee, + transferMintAuthPayload: transferMintAuthPayload, + transferFreezeAuthPayload: transferFreezeAuthPayload, + transferMetadataUpdateAuthPayload: transferMetadataUpdateAuthPayload, + nttManager: NTT_MANAGER, + wormhole: WORMHOLE_CORE_BRIDGE, + owner: LOG.getAddress("MCD_PAUSE_PROXY"), + endpoint: ETH_LZ_ENDPOINT, + solEid: SOL_EID + }); + initMigrationStep1(p); + } + + function initSusdsBridge( + address oftAdapter, + bytes32 oftPeer, + RateLimitsParams memory rl + ) internal { + // Sanity checks + _sanityCheckOapp(oftAdapter, SOL_EID, LOG.getAddress("MCD_PAUSE_PROXY"), ETH_LZ_ENDPOINT, oftPeer); + _sanityCheckOft(oftAdapter, SOL_EID, LOG.getAddress("SUSDS"), rl.rlAccountingType); + + // Activate sUSDS Ethereum LZ Bridge + OFTAdapterLike.RateLimitConfig[] memory inboundCfg = new OFTAdapterLike.RateLimitConfig[](1); + OFTAdapterLike.RateLimitConfig[] memory outboundCfg = new OFTAdapterLike.RateLimitConfig[](1); + inboundCfg[0] = OFTAdapterLike.RateLimitConfig(SOL_EID, rl.inboundWindow, rl.inboundLimit); + outboundCfg[0] = OFTAdapterLike.RateLimitConfig(SOL_EID, rl.outboundWindow, rl.outboundLimit); + OFTAdapterLike(oftAdapter).setRateLimits(inboundCfg, outboundCfg); + } +} diff --git a/src/test/addresses_deployers.sol b/src/test/addresses_deployers.sol index 1f91dc62..e42c35bc 100644 --- a/src/test/addresses_deployers.sol +++ b/src/test/addresses_deployers.sol @@ -55,7 +55,9 @@ contract Deployers { // 0x4953BAe71F6F06b717F7A99DdBe08Cb991412d4D. // Deployer for Spark 2023-08-30 // 0x04a733f946C0aD8E2773d9A3891A8CCeD900a0F8. // Deployer for Spark 2023-09-13 0x89aAB8CAeEf8d25051cA6E534C6944e51f15DAd2, // Deployer for ALLOCATOR-NOVA-A, - 0xe3aeA2949A0b0F3BD4e897C577286766a9F4aed0 // Deployer for SPBEAM + 0xe3aeA2949A0b0F3BD4e897C577286766a9F4aed0, // Deployer for SPBEAM + 0x12E85B7a985283bbFf212A059e2D226397b78F95, // LZ deployer + 0x86865836187fD889B7AE65027056F3Fb43312018 // Deployer for OBEX_ALM_PROXY ]; } diff --git a/src/test/addresses_mainnet.sol b/src/test/addresses_mainnet.sol index 32960d98..e029c0f2 100644 --- a/src/test/addresses_mainnet.sol +++ b/src/test/addresses_mainnet.sol @@ -592,5 +592,6 @@ contract Addresses { addr["REWARDS_DIST_LSSKY_SKY"] = 0x675671A8756dDb69F7254AFB030865388Ef699Ee; addr["SPARK_STARGUARD"] = 0x6605aa120fe8b656482903E7757BaBF56947E45E; addr["CRON_STARGUARD_JOB"] = 0xB18d211fA69422a9A848B790C5B4a3957F7Aa44E; + addr["OBEX_ALM_PROXY"] = 0xb6dD7ae22C9922AFEe0642f9Ac13e58633f715A2; } } diff --git a/src/test/config.sol b/src/test/config.sol index 3779ea12..dcf3e367 100644 --- a/src/test/config.sol +++ b/src/test/config.sol @@ -139,9 +139,9 @@ contract Config { // Values for spell-specific parameters // spellValues = SpellValues({ - deployed_spell: address(0xa1D35e93d5BfAF300e0327d73143529f19B3DA78), // populate with deployed spell if deployed - deployed_spell_created: 1761857135, // use `make deploy-info tx=` to obtain the timestamp - deployed_spell_block: 23692666, // use `make deploy-info tx=` to obtain the block number + deployed_spell: address(0xed3de16bDF69F697FecF1b4103b9f48d71BdDF20), // populate with deployed spell if deployed + deployed_spell_created: 1763049323, // use `make deploy-info tx=` to obtain the timestamp + deployed_spell_block: 23791312, // 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 @@ -1111,8 +1111,8 @@ contract Config { }); afterSpell.collaterals["ALLOCATOR-OBEX-A"] = CollateralValues({ um: UpdateMethod.AUTOLINE, - aL_line: 10_000_000, - aL_gap: 10_000_000, + aL_line: 2_500_000_000, + aL_gap: 50_000_000, aL_ttl: 86_400, line: 0, dust: 0,