This repository has been archived by the owner on Apr 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
5,457 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
// SPDX-FileCopyrightText: © 2020 Dai Foundation <www.daifoundation.org> | ||
// 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 <https://www.gnu.org/licenses/>. | ||
|
||
pragma solidity 0.8.16; | ||
|
||
import "dss-exec-lib/DssExec.sol"; | ||
import "dss-exec-lib/DssAction.sol"; | ||
|
||
interface RwaLiquidationLike { | ||
function ilks(bytes32) external view returns (string memory, address, uint48, uint48); | ||
function init(bytes32, uint256, string calldata, uint48) external; | ||
} | ||
|
||
contract DssSpellAction is DssAction { | ||
// Provides a descriptive tag for bot consumption | ||
string public constant override description = "Goerli Spell"; | ||
|
||
// Always keep office hours off on goerli | ||
function officeHours() public pure override returns (bool) { | ||
return false; | ||
} | ||
|
||
// ---------- 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; | ||
|
||
address internal immutable MIP21_LIQUIDATION_ORACLE = DssExecLib.getChangelogAddress("MIP21_LIQUIDATION_ORACLE"); | ||
|
||
// Note: Function from https://github.com/makerdao/spells-goerli/blob/7d783931a6799fe8278e416b5ac60d4bb9c20047/archive/2022-11-14-DssSpell/Goerli-DssSpell.sol#L59 | ||
function _updateDoc(bytes32 ilk, string memory doc) internal { | ||
( , address pip, uint48 tau, ) = RwaLiquidationLike(MIP21_LIQUIDATION_ORACLE).ilks(ilk); | ||
require(pip != address(0), "DssSpell/unexisting-rwa-ilk"); | ||
|
||
// Init the RwaLiquidationOracle to reset the doc | ||
RwaLiquidationLike(MIP21_LIQUIDATION_ORACLE).init( | ||
ilk, // ilk to update | ||
0, // price ignored if init() has already been called | ||
doc, // new legal document | ||
tau // old tau value | ||
); | ||
} | ||
|
||
function actions() public override { | ||
|
||
// ---------- November Delegate Compensation ---------- | ||
// Forum: https://forum.makerdao.com/t/november-2023-aligned-delegate-compensation/23351 | ||
// Note: payments are skipped on goerli | ||
|
||
// 0xDefensor - 41.67 MKR - 0x9542b441d65B6BF4dDdd3d4D2a66D8dCB9EE07a9 | ||
// BONAPUBLICA - 41.67 MKR - 0x167c1a762B08D7e78dbF8f24e5C3f1Ab415021D3 | ||
// Cloaky - 41.67 MKR - 0x869b6d5d8FA7f4FFdaCA4D23FFE0735c5eD1F818 | ||
// TRUE NAME - 41.67 MKR - 0x612F7924c367575a0Edf21333D96b15F1B345A5d | ||
// BLUE - 13.95 MKR - 0xb6C09680D822F162449cdFB8248a7D3FC26Ec9Bf | ||
// UPMaker - 13.89 MKR - 0xbB819DF169670DC71A16F58F55956FE642cc6BcD | ||
// vigilant - 13.89 MKR - 0x2474937cB55500601BCCE9f4cb0A0A72Dc226F61 | ||
// JAG - 13.02 MKR - 0x58D1ec57E4294E4fe650D1CB12b96AE34349556f | ||
// PBG - 0.45 MKR - 0x8D4df847dB7FfE0B46AF084fE031F7691C6478c2 | ||
|
||
// ---------- December Delegate Compensation ---------- | ||
// Forum: https://forum.makerdao.com/t/december-2023-aligned-delegate-compensation/23352 | ||
// Note: payments are skipped on goerli | ||
|
||
// 0xDefensor - 41.67 MKR - 0x9542b441d65B6BF4dDdd3d4D2a66D8dCB9EE07a9 | ||
// BONAPUBLICA - 41.67 MKR - 0x167c1a762B08D7e78dbF8f24e5C3f1Ab415021D3 | ||
// Cloaky - 41.67 MKR - 0x869b6d5d8FA7f4FFdaCA4D23FFE0735c5eD1F818 | ||
// TRUE NAME - 41.67 MKR - 0x612F7924c367575a0Edf21333D96b15F1B345A5d | ||
// BLUE - 39.20 MKR - 0xb6C09680D822F162449cdFB8248a7D3FC26Ec9Bf | ||
// PBG - 13.89 MKR - 0x8D4df847dB7FfE0B46AF084fE031F7691C6478c2 | ||
// UPMaker - 13.89 MKR - 0xbB819DF169670DC71A16F58F55956FE642cc6BcD | ||
// vigilant - 13.89 MKR - 0x2474937cB55500601BCCE9f4cb0A0A72Dc226F61 | ||
// JAG - 12.95 MKR - 0x58D1ec57E4294E4fe650D1CB12b96AE34349556f | ||
// WBC - 11.28 MKR - 0xeBcE83e491947aDB1396Ee7E55d3c81414fB0D47 | ||
|
||
// ---------- Offboarded Delegate Buffer Payments ---------- | ||
// Forum: https://forum.makerdao.com/t/october-2023-aligned-delegate-compensation/22732#october-compensation-2 | ||
// Note: payments are skipped on goerli | ||
|
||
// Navigator - 20.84 MKR - 0x11406a9CC2e37425F15f920F494A51133ac93072 | ||
// PALC - 6.95 MKR - 0x78Deac4F87BD8007b9cb56B8d53889ed5374e83A | ||
|
||
// ---------- yank Dai streams ---------- | ||
// Note: payments are skipped on goerli | ||
|
||
// yank Dai stream 21 - DECO | ||
// Forum: https://forum.makerdao.com/t/mip39c3-sp12-core-unit-offboarding-deco/22333 | ||
|
||
// yank Dai stream 15 - SES | ||
// Forum: https://forum.makerdao.com/t/mip39c3-sp11-core-unit-offboarding-ses/22332 | ||
|
||
// ---------- CU MKR payments ---------- | ||
// MIP: https://mips.makerdao.com/mips/details/MIP40c3SP25 | ||
// Note: payments are skipped on goerli | ||
|
||
// BA Labs - 175.00 MKR - 0x5d67d5B1fC7EF4bfF31967bE2D2d7b9323c1521c | ||
// SES - 508.55 MKR - 0x87AcDD9208f73bFc9207e1f6F0fDE906bcA95cc6 | ||
|
||
// ---------- Launch Project Funding ---------- | ||
// Forum: https://forum.makerdao.com/t/utilization-of-the-launch-project-under-the-accessibility-scope/21468/9 | ||
// Note: payments are skipped on goerli | ||
|
||
// Launch Project - 4,500,000.00 DAI - 0x3C5142F28567E6a0F172fd0BaaF1f2847f49D02F | ||
// Launch Project - 820.00 MKR - 0x3C5142F28567E6a0F172fd0BaaF1f2847f49D02F | ||
|
||
// ---------- Update doc parameter ---------- | ||
// Forum: https://forum.makerdao.com/t/rwa009-hvbank-mip21-token-ces-domain-team-assessment/15861/14 | ||
|
||
// Update HVBank (RWA009-A) doc to QmfEgZuiw6wsTRUYerdPZNUrqDXSGM6Nm4fM3nG7nNbEjT | ||
_updateDoc("RWA009-A", "QmfEgZuiw6wsTRUYerdPZNUrqDXSGM6Nm4fM3nG7nNbEjT"); | ||
|
||
// ---------- Spark D3M line increase ---------- | ||
// Forum: https://forum.makerdao.com/t/spark-spell-proposed-changes/23298 | ||
// Poll: https://vote.makerdao.com/polling/QmdQSuAc | ||
|
||
// Increase the line by 400 million from 800 million to 1.2 billion Dai | ||
DssExecLib.setIlkAutoLineDebtCeiling("DIRECT-SPARK-DAI", 1200 * MILLION); | ||
|
||
// ---------- Trigger Spark Proxy Spell ---------- | ||
// Activate Spark Proxy Spell - 0x2f2c514137173bc98B3699A0d291f7593637c596 | ||
// Forum: https://forum.makerdao.com/t/spark-spell-proposed-changes/23298 | ||
// Forum: https://forum.makerdao.com/t/jan-11th-2024-expedited-inclusion-of-a-patch-to-spark-pool-implementation/23393 | ||
// Poll: https://vote.makerdao.com/polling/QmdVy1Uk | ||
// Poll: https://vote.makerdao.com/polling/QmeWioX1 | ||
// Poll: https://vote.makerdao.com/polling/QmRdew4b | ||
// Poll: https://vote.makerdao.com/polling/QmXtvu32 | ||
// Poll: https://vote.makerdao.com/polling/QmRKkMnx | ||
// Note: skipped on goerli as spark spell is only deployed to mainnet | ||
} | ||
} | ||
|
||
contract DssSpell is DssExec { | ||
constructor() DssExec(block.timestamp + 30 days, address(new DssSpellAction())) {} | ||
} |
Oops, something went wrong.