Created
August 1, 2023 21:26
-
-
Save JamJomJim/f29337fa6d0e33bef05b157e39f45810 to your computer and use it in GitHub Desktop.
Compound Contracts. Find it at https://www.cookbook.dev/contracts/Compound
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./InterestRateModel.sol"; | |
/** | |
* @title Logic for Compound's JumpRateModel Contract V2. | |
* @author Compound (modified by Dharma Labs, refactored by Arr00) | |
* @notice Version 2 modifies Version 1 by enabling updateable parameters. | |
*/ | |
abstract contract BaseJumpRateModelV2 is InterestRateModel { | |
event NewInterestParams(uint baseRatePerBlock, uint multiplierPerBlock, uint jumpMultiplierPerBlock, uint kink); | |
uint256 private constant BASE = 1e18; | |
/** | |
* @notice The address of the owner, i.e. the Timelock contract, which can update parameters directly | |
*/ | |
address public owner; | |
/** | |
* @notice The approximate number of blocks per year that is assumed by the interest rate model | |
*/ | |
uint public constant blocksPerYear = 2102400; | |
/** | |
* @notice The multiplier of utilization rate that gives the slope of the interest rate | |
*/ | |
uint public multiplierPerBlock; | |
/** | |
* @notice The base interest rate which is the y-intercept when utilization rate is 0 | |
*/ | |
uint public baseRatePerBlock; | |
/** | |
* @notice The multiplierPerBlock after hitting a specified utilization point | |
*/ | |
uint public jumpMultiplierPerBlock; | |
/** | |
* @notice The utilization point at which the jump multiplier is applied | |
*/ | |
uint public kink; | |
/** | |
* @notice Construct an interest rate model | |
* @param baseRatePerYear The approximate target base APR, as a mantissa (scaled by BASE) | |
* @param multiplierPerYear The rate of increase in interest rate wrt utilization (scaled by BASE) | |
* @param jumpMultiplierPerYear The multiplierPerBlock after hitting a specified utilization point | |
* @param kink_ The utilization point at which the jump multiplier is applied | |
* @param owner_ The address of the owner, i.e. the Timelock contract (which has the ability to update parameters directly) | |
*/ | |
constructor(uint baseRatePerYear, uint multiplierPerYear, uint jumpMultiplierPerYear, uint kink_, address owner_) internal { | |
owner = owner_; | |
updateJumpRateModelInternal(baseRatePerYear, multiplierPerYear, jumpMultiplierPerYear, kink_); | |
} | |
/** | |
* @notice Update the parameters of the interest rate model (only callable by owner, i.e. Timelock) | |
* @param baseRatePerYear The approximate target base APR, as a mantissa (scaled by BASE) | |
* @param multiplierPerYear The rate of increase in interest rate wrt utilization (scaled by BASE) | |
* @param jumpMultiplierPerYear The multiplierPerBlock after hitting a specified utilization point | |
* @param kink_ The utilization point at which the jump multiplier is applied | |
*/ | |
function updateJumpRateModel(uint baseRatePerYear, uint multiplierPerYear, uint jumpMultiplierPerYear, uint kink_) virtual external { | |
require(msg.sender == owner, "only the owner may call this function."); | |
updateJumpRateModelInternal(baseRatePerYear, multiplierPerYear, jumpMultiplierPerYear, kink_); | |
} | |
/** | |
* @notice Calculates the utilization rate of the market: `borrows / (cash + borrows - reserves)` | |
* @param cash The amount of cash in the market | |
* @param borrows The amount of borrows in the market | |
* @param reserves The amount of reserves in the market (currently unused) | |
* @return The utilization rate as a mantissa between [0, BASE] | |
*/ | |
function utilizationRate(uint cash, uint borrows, uint reserves) public pure returns (uint) { | |
// Utilization rate is 0 when there are no borrows | |
if (borrows == 0) { | |
return 0; | |
} | |
return borrows * BASE / (cash + borrows - reserves); | |
} | |
/** | |
* @notice Calculates the current borrow rate per block, with the error code expected by the market | |
* @param cash The amount of cash in the market | |
* @param borrows The amount of borrows in the market | |
* @param reserves The amount of reserves in the market | |
* @return The borrow rate percentage per block as a mantissa (scaled by BASE) | |
*/ | |
function getBorrowRateInternal(uint cash, uint borrows, uint reserves) internal view returns (uint) { | |
uint util = utilizationRate(cash, borrows, reserves); | |
if (util <= kink) { | |
return ((util * multiplierPerBlock) / BASE) + baseRatePerBlock; | |
} else { | |
uint normalRate = ((kink * multiplierPerBlock) / BASE) + baseRatePerBlock; | |
uint excessUtil = util - kink; | |
return ((excessUtil * jumpMultiplierPerBlock) / BASE) + normalRate; | |
} | |
} | |
/** | |
* @notice Calculates the current supply rate per block | |
* @param cash The amount of cash in the market | |
* @param borrows The amount of borrows in the market | |
* @param reserves The amount of reserves in the market | |
* @param reserveFactorMantissa The current reserve factor for the market | |
* @return The supply rate percentage per block as a mantissa (scaled by BASE) | |
*/ | |
function getSupplyRate(uint cash, uint borrows, uint reserves, uint reserveFactorMantissa) virtual override public view returns (uint) { | |
uint oneMinusReserveFactor = BASE - reserveFactorMantissa; | |
uint borrowRate = getBorrowRateInternal(cash, borrows, reserves); | |
uint rateToPool = borrowRate * oneMinusReserveFactor / BASE; | |
return utilizationRate(cash, borrows, reserves) * rateToPool / BASE; | |
} | |
/** | |
* @notice Internal function to update the parameters of the interest rate model | |
* @param baseRatePerYear The approximate target base APR, as a mantissa (scaled by BASE) | |
* @param multiplierPerYear The rate of increase in interest rate wrt utilization (scaled by BASE) | |
* @param jumpMultiplierPerYear The multiplierPerBlock after hitting a specified utilization point | |
* @param kink_ The utilization point at which the jump multiplier is applied | |
*/ | |
function updateJumpRateModelInternal(uint baseRatePerYear, uint multiplierPerYear, uint jumpMultiplierPerYear, uint kink_) internal { | |
baseRatePerBlock = baseRatePerYear / blocksPerYear; | |
multiplierPerBlock = (multiplierPerYear * BASE) / (blocksPerYear * kink_); | |
jumpMultiplierPerBlock = jumpMultiplierPerYear / blocksPerYear; | |
kink = kink_; | |
emit NewInterestParams(baseRatePerBlock, multiplierPerBlock, jumpMultiplierPerBlock, kink); | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./CErc20Delegate.sol"; | |
/** | |
* @title Compound's CDai Contract | |
* @notice CToken which wraps Multi-Collateral DAI | |
* @author Compound | |
*/ | |
contract CDaiDelegate is CErc20Delegate { | |
/** | |
* @notice DAI adapter address | |
*/ | |
address public daiJoinAddress; | |
/** | |
* @notice DAI Savings Rate (DSR) pot address | |
*/ | |
address public potAddress; | |
/** | |
* @notice DAI vat address | |
*/ | |
address public vatAddress; | |
/** | |
* @notice Delegate interface to become the implementation | |
* @param data The encoded arguments for becoming | |
*/ | |
function _becomeImplementation(bytes memory data) override public { | |
require(msg.sender == admin, "only the admin may initialize the implementation"); | |
(address daiJoinAddress_, address potAddress_) = abi.decode(data, (address, address)); | |
return _becomeImplementation(daiJoinAddress_, potAddress_); | |
} | |
/** | |
* @notice Explicit interface to become the implementation | |
* @param daiJoinAddress_ DAI adapter address | |
* @param potAddress_ DAI Savings Rate (DSR) pot address | |
*/ | |
function _becomeImplementation(address daiJoinAddress_, address potAddress_) internal { | |
// Get dai and vat and sanity check the underlying | |
DaiJoinLike daiJoin = DaiJoinLike(daiJoinAddress_); | |
PotLike pot = PotLike(potAddress_); | |
GemLike dai = daiJoin.dai(); | |
VatLike vat = daiJoin.vat(); | |
require(address(dai) == underlying, "DAI must be the same as underlying"); | |
// Remember the relevant addresses | |
daiJoinAddress = daiJoinAddress_; | |
potAddress = potAddress_; | |
vatAddress = address(vat); | |
// Approve moving our DAI into the vat through daiJoin | |
dai.approve(daiJoinAddress, type(uint).max); | |
// Approve the pot to transfer our funds within the vat | |
vat.hope(potAddress); | |
vat.hope(daiJoinAddress); | |
// Accumulate DSR interest -- must do this in order to doTransferIn | |
pot.drip(); | |
// Transfer all cash in (doTransferIn does this regardless of amount) | |
doTransferIn(address(this), 0); | |
} | |
/** | |
* @notice Delegate interface to resign the implementation | |
*/ | |
function _resignImplementation() override public { | |
require(msg.sender == admin, "only the admin may abandon the implementation"); | |
// Transfer all cash out of the DSR - note that this relies on self-transfer | |
DaiJoinLike daiJoin = DaiJoinLike(daiJoinAddress); | |
PotLike pot = PotLike(potAddress); | |
VatLike vat = VatLike(vatAddress); | |
// Accumulate interest | |
pot.drip(); | |
// Calculate the total amount in the pot, and move it out | |
uint pie = pot.pie(address(this)); | |
pot.exit(pie); | |
// Checks the actual balance of DAI in the vat after the pot exit | |
uint bal = vat.dai(address(this)); | |
// Remove our whole balance | |
daiJoin.exit(address(this), bal / RAY); | |
} | |
/*** CToken Overrides ***/ | |
/** | |
* @notice Accrues DSR then applies accrued interest to total borrows and reserves | |
* @dev This calculates interest accrued from the last checkpointed block | |
* up to the current block and writes new checkpoint to storage. | |
*/ | |
function accrueInterest() override public returns (uint) { | |
// Accumulate DSR interest | |
PotLike(potAddress).drip(); | |
// Accumulate CToken interest | |
return super.accrueInterest(); | |
} | |
/*** Safe Token ***/ | |
/** | |
* @notice Gets balance of this contract in terms of the underlying | |
* @dev This excludes the value of the current message, if any | |
* @return The quantity of underlying tokens owned by this contract | |
*/ | |
function getCashPrior() override internal view returns (uint) { | |
PotLike pot = PotLike(potAddress); | |
uint pie = pot.pie(address(this)); | |
return mul(pot.chi(), pie) / RAY; | |
} | |
/** | |
* @notice Transfer the underlying to this contract and sweep into DSR pot | |
* @param from Address to transfer funds from | |
* @param amount Amount of underlying to transfer | |
* @return The actual amount that is transferred | |
*/ | |
function doTransferIn(address from, uint amount) override internal returns (uint) { | |
// Read from storage once | |
address underlying_ = underlying; | |
// Perform the EIP-20 transfer in | |
EIP20Interface token = EIP20Interface(underlying_); | |
require(token.transferFrom(from, address(this), amount), "unexpected EIP-20 transfer in return"); | |
DaiJoinLike daiJoin = DaiJoinLike(daiJoinAddress); | |
GemLike dai = GemLike(underlying_); | |
PotLike pot = PotLike(potAddress); | |
VatLike vat = VatLike(vatAddress); | |
// Convert all our DAI to internal DAI in the vat | |
daiJoin.join(address(this), dai.balanceOf(address(this))); | |
// Checks the actual balance of DAI in the vat after the join | |
uint bal = vat.dai(address(this)); | |
// Calculate the percentage increase to th pot for the entire vat, and move it in | |
// Note: We may leave a tiny bit of DAI in the vat...but we do the whole thing every time | |
uint pie = bal / pot.chi(); | |
pot.join(pie); | |
return amount; | |
} | |
/** | |
* @notice Transfer the underlying from this contract, after sweeping out of DSR pot | |
* @param to Address to transfer funds to | |
* @param amount Amount of underlying to transfer | |
*/ | |
function doTransferOut(address payable to, uint amount) override internal { | |
DaiJoinLike daiJoin = DaiJoinLike(daiJoinAddress); | |
PotLike pot = PotLike(potAddress); | |
// Calculate the percentage decrease from the pot, and move that much out | |
// Note: Use a slightly larger pie size to ensure that we get at least amount in the vat | |
uint pie = add(mul(amount, RAY) / pot.chi(), 1); | |
pot.exit(pie); | |
daiJoin.exit(to, amount); | |
} | |
/*** Maker Internals ***/ | |
uint256 constant RAY = 10 ** 27; | |
function add(uint x, uint y) internal pure returns (uint z) { | |
require((z = x + y) >= x, "add-overflow"); | |
} | |
function mul(uint x, uint y) internal pure returns (uint z) { | |
require(y == 0 || (z = x * y) / y == x, "mul-overflow"); | |
} | |
} | |
/*** Maker Interfaces ***/ | |
interface PotLike { | |
function chi() external view returns (uint); | |
function pie(address) external view returns (uint); | |
function drip() external returns (uint); | |
function join(uint) external; | |
function exit(uint) external; | |
} | |
interface GemLike { | |
function approve(address, uint) external; | |
function balanceOf(address) external view returns (uint); | |
function transferFrom(address, address, uint) external returns (bool); | |
} | |
interface VatLike { | |
function dai(address) external view returns (uint); | |
function hope(address) external; | |
} | |
interface DaiJoinLike { | |
function vat() external returns (VatLike); | |
function dai() external returns (GemLike); | |
function join(address, uint) external payable; | |
function exit(address, uint) external; | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./CToken.sol"; | |
interface CompLike { | |
function delegate(address delegatee) external; | |
} | |
/** | |
* @title Compound's CErc20 Contract | |
* @notice CTokens which wrap an EIP-20 underlying | |
* @author Compound | |
*/ | |
contract CErc20 is CToken, CErc20Interface { | |
/** | |
* @notice Initialize the new money market | |
* @param underlying_ The address of the underlying asset | |
* @param comptroller_ The address of the Comptroller | |
* @param interestRateModel_ The address of the interest rate model | |
* @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18 | |
* @param name_ ERC-20 name of this token | |
* @param symbol_ ERC-20 symbol of this token | |
* @param decimals_ ERC-20 decimal precision of this token | |
*/ | |
function initialize(address underlying_, | |
ComptrollerInterface comptroller_, | |
InterestRateModel interestRateModel_, | |
uint initialExchangeRateMantissa_, | |
string memory name_, | |
string memory symbol_, | |
uint8 decimals_) public { | |
// CToken initialize does the bulk of the work | |
super.initialize(comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_); | |
// Set underlying and sanity check it | |
underlying = underlying_; | |
EIP20Interface(underlying).totalSupply(); | |
} | |
/*** User Interface ***/ | |
/** | |
* @notice Sender supplies assets into the market and receives cTokens in exchange | |
* @dev Accrues interest whether or not the operation succeeds, unless reverted | |
* @param mintAmount The amount of the underlying asset to supply | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function mint(uint mintAmount) override external returns (uint) { | |
mintInternal(mintAmount); | |
return NO_ERROR; | |
} | |
/** | |
* @notice Sender redeems cTokens in exchange for the underlying asset | |
* @dev Accrues interest whether or not the operation succeeds, unless reverted | |
* @param redeemTokens The number of cTokens to redeem into underlying | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function redeem(uint redeemTokens) override external returns (uint) { | |
redeemInternal(redeemTokens); | |
return NO_ERROR; | |
} | |
/** | |
* @notice Sender redeems cTokens in exchange for a specified amount of underlying asset | |
* @dev Accrues interest whether or not the operation succeeds, unless reverted | |
* @param redeemAmount The amount of underlying to redeem | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function redeemUnderlying(uint redeemAmount) override external returns (uint) { | |
redeemUnderlyingInternal(redeemAmount); | |
return NO_ERROR; | |
} | |
/** | |
* @notice Sender borrows assets from the protocol to their own address | |
* @param borrowAmount The amount of the underlying asset to borrow | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function borrow(uint borrowAmount) override external returns (uint) { | |
borrowInternal(borrowAmount); | |
return NO_ERROR; | |
} | |
/** | |
* @notice Sender repays their own borrow | |
* @param repayAmount The amount to repay, or -1 for the full outstanding amount | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function repayBorrow(uint repayAmount) override external returns (uint) { | |
repayBorrowInternal(repayAmount); | |
return NO_ERROR; | |
} | |
/** | |
* @notice Sender repays a borrow belonging to borrower | |
* @param borrower the account with the debt being payed off | |
* @param repayAmount The amount to repay, or -1 for the full outstanding amount | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function repayBorrowBehalf(address borrower, uint repayAmount) override external returns (uint) { | |
repayBorrowBehalfInternal(borrower, repayAmount); | |
return NO_ERROR; | |
} | |
/** | |
* @notice The sender liquidates the borrowers collateral. | |
* The collateral seized is transferred to the liquidator. | |
* @param borrower The borrower of this cToken to be liquidated | |
* @param repayAmount The amount of the underlying borrowed asset to repay | |
* @param cTokenCollateral The market in which to seize collateral from the borrower | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function liquidateBorrow(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) override external returns (uint) { | |
liquidateBorrowInternal(borrower, repayAmount, cTokenCollateral); | |
return NO_ERROR; | |
} | |
/** | |
* @notice A public function to sweep accidental ERC-20 transfers to this contract. Tokens are sent to admin (timelock) | |
* @param token The address of the ERC-20 token to sweep | |
*/ | |
function sweepToken(EIP20NonStandardInterface token) override external { | |
require(msg.sender == admin, "CErc20::sweepToken: only admin can sweep tokens"); | |
require(address(token) != underlying, "CErc20::sweepToken: can not sweep underlying token"); | |
uint256 balance = token.balanceOf(address(this)); | |
token.transfer(admin, balance); | |
} | |
/** | |
* @notice The sender adds to reserves. | |
* @param addAmount The amount fo underlying token to add as reserves | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _addReserves(uint addAmount) override external returns (uint) { | |
return _addReservesInternal(addAmount); | |
} | |
/*** Safe Token ***/ | |
/** | |
* @notice Gets balance of this contract in terms of the underlying | |
* @dev This excludes the value of the current message, if any | |
* @return The quantity of underlying tokens owned by this contract | |
*/ | |
function getCashPrior() virtual override internal view returns (uint) { | |
EIP20Interface token = EIP20Interface(underlying); | |
return token.balanceOf(address(this)); | |
} | |
/** | |
* @dev Similar to EIP20 transfer, except it handles a False result from `transferFrom` and reverts in that case. | |
* This will revert due to insufficient balance or insufficient allowance. | |
* This function returns the actual amount received, | |
* which may be less than `amount` if there is a fee attached to the transfer. | |
* | |
* Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value. | |
* See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca | |
*/ | |
function doTransferIn(address from, uint amount) virtual override internal returns (uint) { | |
// Read from storage once | |
address underlying_ = underlying; | |
EIP20NonStandardInterface token = EIP20NonStandardInterface(underlying_); | |
uint balanceBefore = EIP20Interface(underlying_).balanceOf(address(this)); | |
token.transferFrom(from, address(this), amount); | |
bool success; | |
assembly { | |
switch returndatasize() | |
case 0 { // This is a non-standard ERC-20 | |
success := not(0) // set success to true | |
} | |
case 32 { // This is a compliant ERC-20 | |
returndatacopy(0, 0, 32) | |
success := mload(0) // Set `success = returndata` of override external call | |
} | |
default { // This is an excessively non-compliant ERC-20, revert. | |
revert(0, 0) | |
} | |
} | |
require(success, "TOKEN_TRANSFER_IN_FAILED"); | |
// Calculate the amount that was *actually* transferred | |
uint balanceAfter = EIP20Interface(underlying_).balanceOf(address(this)); | |
return balanceAfter - balanceBefore; // underflow already checked above, just subtract | |
} | |
/** | |
* @dev Similar to EIP20 transfer, except it handles a False success from `transfer` and returns an explanatory | |
* error code rather than reverting. If caller has not called checked protocol's balance, this may revert due to | |
* insufficient cash held in this contract. If caller has checked protocol's balance prior to this call, and verified | |
* it is >= amount, this should not revert in normal conditions. | |
* | |
* Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value. | |
* See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca | |
*/ | |
function doTransferOut(address payable to, uint amount) virtual override internal { | |
EIP20NonStandardInterface token = EIP20NonStandardInterface(underlying); | |
token.transfer(to, amount); | |
bool success; | |
assembly { | |
switch returndatasize() | |
case 0 { // This is a non-standard ERC-20 | |
success := not(0) // set success to true | |
} | |
case 32 { // This is a compliant ERC-20 | |
returndatacopy(0, 0, 32) | |
success := mload(0) // Set `success = returndata` of override external call | |
} | |
default { // This is an excessively non-compliant ERC-20, revert. | |
revert(0, 0) | |
} | |
} | |
require(success, "TOKEN_TRANSFER_OUT_FAILED"); | |
} | |
/** | |
* @notice Admin call to delegate the votes of the COMP-like underlying | |
* @param compLikeDelegatee The address to delegate votes to | |
* @dev CTokens whose underlying are not CompLike should revert here | |
*/ | |
function _delegateCompLikeTo(address compLikeDelegatee) external { | |
require(msg.sender == admin, "only the admin may set the comp-like delegate"); | |
CompLike(underlying).delegate(compLikeDelegatee); | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./CErc20.sol"; | |
/** | |
* @title Compound's CErc20Delegate Contract | |
* @notice CTokens which wrap an EIP-20 underlying and are delegated to | |
* @author Compound | |
*/ | |
contract CErc20Delegate is CErc20, CDelegateInterface { | |
/** | |
* @notice Construct an empty delegate | |
*/ | |
constructor() {} | |
/** | |
* @notice Called by the delegator on a delegate to initialize it for duty | |
* @param data The encoded bytes data for any initialization | |
*/ | |
function _becomeImplementation(bytes memory data) virtual override public { | |
// Shh -- currently unused | |
data; | |
// Shh -- we don't ever want this hook to be marked pure | |
if (false) { | |
implementation = address(0); | |
} | |
require(msg.sender == admin, "only the admin may call _becomeImplementation"); | |
} | |
/** | |
* @notice Called by the delegator on a delegate to forfeit its responsibility | |
*/ | |
function _resignImplementation() virtual override public { | |
// Shh -- we don't ever want this hook to be marked pure | |
if (false) { | |
implementation = address(0); | |
} | |
require(msg.sender == admin, "only the admin may call _resignImplementation"); | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./CTokenInterfaces.sol"; | |
/** | |
* @title Compound's CErc20Delegator Contract | |
* @notice CTokens which wrap an EIP-20 underlying and delegate to an implementation | |
* @author Compound | |
*/ | |
contract CErc20Delegator is CTokenInterface, CErc20Interface, CDelegatorInterface { | |
/** | |
* @notice Construct a new money market | |
* @param underlying_ The address of the underlying asset | |
* @param comptroller_ The address of the Comptroller | |
* @param interestRateModel_ The address of the interest rate model | |
* @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18 | |
* @param name_ ERC-20 name of this token | |
* @param symbol_ ERC-20 symbol of this token | |
* @param decimals_ ERC-20 decimal precision of this token | |
* @param admin_ Address of the administrator of this token | |
* @param implementation_ The address of the implementation the contract delegates to | |
* @param becomeImplementationData The encoded args for becomeImplementation | |
*/ | |
constructor(address underlying_, | |
ComptrollerInterface comptroller_, | |
InterestRateModel interestRateModel_, | |
uint initialExchangeRateMantissa_, | |
string memory name_, | |
string memory symbol_, | |
uint8 decimals_, | |
address payable admin_, | |
address implementation_, | |
bytes memory becomeImplementationData) { | |
// Creator of the contract is admin during initialization | |
admin = payable(msg.sender); | |
// First delegate gets to initialize the delegator (i.e. storage contract) | |
delegateTo(implementation_, abi.encodeWithSignature("initialize(address,address,address,uint256,string,string,uint8)", | |
underlying_, | |
comptroller_, | |
interestRateModel_, | |
initialExchangeRateMantissa_, | |
name_, | |
symbol_, | |
decimals_)); | |
// New implementations always get set via the settor (post-initialize) | |
_setImplementation(implementation_, false, becomeImplementationData); | |
// Set the proper admin now that initialization is done | |
admin = admin_; | |
} | |
/** | |
* @notice Called by the admin to update the implementation of the delegator | |
* @param implementation_ The address of the new implementation for delegation | |
* @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation | |
* @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation | |
*/ | |
function _setImplementation(address implementation_, bool allowResign, bytes memory becomeImplementationData)override public { | |
require(msg.sender == admin, "CErc20Delegator::_setImplementation: Caller must be admin"); | |
if (allowResign) { | |
delegateToImplementation(abi.encodeWithSignature("_resignImplementation()")); | |
} | |
address oldImplementation = implementation; | |
implementation = implementation_; | |
delegateToImplementation(abi.encodeWithSignature("_becomeImplementation(bytes)", becomeImplementationData)); | |
emit NewImplementation(oldImplementation, implementation); | |
} | |
/** | |
* @notice Sender supplies assets into the market and receives cTokens in exchange | |
* @dev Accrues interest whether or not the operation succeeds, unless reverted | |
* @param mintAmount The amount of the underlying asset to supply | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function mint(uint mintAmount) override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("mint(uint256)", mintAmount)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Sender redeems cTokens in exchange for the underlying asset | |
* @dev Accrues interest whether or not the operation succeeds, unless reverted | |
* @param redeemTokens The number of cTokens to redeem into underlying | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function redeem(uint redeemTokens) override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("redeem(uint256)", redeemTokens)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Sender redeems cTokens in exchange for a specified amount of underlying asset | |
* @dev Accrues interest whether or not the operation succeeds, unless reverted | |
* @param redeemAmount The amount of underlying to redeem | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function redeemUnderlying(uint redeemAmount) override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("redeemUnderlying(uint256)", redeemAmount)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Sender borrows assets from the protocol to their own address | |
* @param borrowAmount The amount of the underlying asset to borrow | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function borrow(uint borrowAmount) override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("borrow(uint256)", borrowAmount)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Sender repays their own borrow | |
* @param repayAmount The amount to repay, or -1 for the full outstanding amount | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function repayBorrow(uint repayAmount) override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("repayBorrow(uint256)", repayAmount)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Sender repays a borrow belonging to borrower | |
* @param borrower the account with the debt being payed off | |
* @param repayAmount The amount to repay, or -1 for the full outstanding amount | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function repayBorrowBehalf(address borrower, uint repayAmount) override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("repayBorrowBehalf(address,uint256)", borrower, repayAmount)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice The sender liquidates the borrowers collateral. | |
* The collateral seized is transferred to the liquidator. | |
* @param borrower The borrower of this cToken to be liquidated | |
* @param cTokenCollateral The market in which to seize collateral from the borrower | |
* @param repayAmount The amount of the underlying borrowed asset to repay | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function liquidateBorrow(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("liquidateBorrow(address,uint256,address)", borrower, repayAmount, cTokenCollateral)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Transfer `amount` tokens from `msg.sender` to `dst` | |
* @param dst The address of the destination account | |
* @param amount The number of tokens to transfer | |
* @return Whether or not the transfer succeeded | |
*/ | |
function transfer(address dst, uint amount) override external returns (bool) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("transfer(address,uint256)", dst, amount)); | |
return abi.decode(data, (bool)); | |
} | |
/** | |
* @notice Transfer `amount` tokens from `src` to `dst` | |
* @param src The address of the source account | |
* @param dst The address of the destination account | |
* @param amount The number of tokens to transfer | |
* @return Whether or not the transfer succeeded | |
*/ | |
function transferFrom(address src, address dst, uint256 amount) override external returns (bool) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("transferFrom(address,address,uint256)", src, dst, amount)); | |
return abi.decode(data, (bool)); | |
} | |
/** | |
* @notice Approve `spender` to transfer up to `amount` from `src` | |
* @dev This will overwrite the approval amount for `spender` | |
* and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) | |
* @param spender The address of the account which may transfer tokens | |
* @param amount The number of tokens that are approved (-1 means infinite) | |
* @return Whether or not the approval succeeded | |
*/ | |
function approve(address spender, uint256 amount) override external returns (bool) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("approve(address,uint256)", spender, amount)); | |
return abi.decode(data, (bool)); | |
} | |
/** | |
* @notice Get the current allowance from `owner` for `spender` | |
* @param owner The address of the account which owns the tokens to be spent | |
* @param spender The address of the account which may transfer tokens | |
* @return The number of tokens allowed to be spent (-1 means infinite) | |
*/ | |
function allowance(address owner, address spender) override external view returns (uint) { | |
bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("allowance(address,address)", owner, spender)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Get the token balance of the `owner` | |
* @param owner The address of the account to query | |
* @return The number of tokens owned by `owner` | |
*/ | |
function balanceOf(address owner) override external view returns (uint) { | |
bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("balanceOf(address)", owner)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Get the underlying balance of the `owner` | |
* @dev This also accrues interest in a transaction | |
* @param owner The address of the account to query | |
* @return The amount of underlying owned by `owner` | |
*/ | |
function balanceOfUnderlying(address owner) override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("balanceOfUnderlying(address)", owner)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Get a snapshot of the account's balances, and the cached exchange rate | |
* @dev This is used by comptroller to more efficiently perform liquidity checks. | |
* @param account Address of the account to snapshot | |
* @return (possible error, token balance, borrow balance, exchange rate mantissa) | |
*/ | |
function getAccountSnapshot(address account) override external view returns (uint, uint, uint, uint) { | |
bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("getAccountSnapshot(address)", account)); | |
return abi.decode(data, (uint, uint, uint, uint)); | |
} | |
/** | |
* @notice Returns the current per-block borrow interest rate for this cToken | |
* @return The borrow interest rate per block, scaled by 1e18 | |
*/ | |
function borrowRatePerBlock() override external view returns (uint) { | |
bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("borrowRatePerBlock()")); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Returns the current per-block supply interest rate for this cToken | |
* @return The supply interest rate per block, scaled by 1e18 | |
*/ | |
function supplyRatePerBlock() override external view returns (uint) { | |
bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("supplyRatePerBlock()")); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Returns the current total borrows plus accrued interest | |
* @return The total borrows with interest | |
*/ | |
function totalBorrowsCurrent() override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("totalBorrowsCurrent()")); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Accrue interest to updated borrowIndex and then calculate account's borrow balance using the updated borrowIndex | |
* @param account The address whose balance should be calculated after updating borrowIndex | |
* @return The calculated balance | |
*/ | |
function borrowBalanceCurrent(address account) override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("borrowBalanceCurrent(address)", account)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Return the borrow balance of account based on stored data | |
* @param account The address whose balance should be calculated | |
* @return The calculated balance | |
*/ | |
function borrowBalanceStored(address account) override public view returns (uint) { | |
bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("borrowBalanceStored(address)", account)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Accrue interest then return the up-to-date exchange rate | |
* @return Calculated exchange rate scaled by 1e18 | |
*/ | |
function exchangeRateCurrent() override public returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("exchangeRateCurrent()")); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Calculates the exchange rate from the underlying to the CToken | |
* @dev This function does not accrue interest before calculating the exchange rate | |
* @return Calculated exchange rate scaled by 1e18 | |
*/ | |
function exchangeRateStored() override public view returns (uint) { | |
bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("exchangeRateStored()")); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Get cash balance of this cToken in the underlying asset | |
* @return The quantity of underlying asset owned by this contract | |
*/ | |
function getCash() override external view returns (uint) { | |
bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("getCash()")); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Applies accrued interest to total borrows and reserves. | |
* @dev This calculates interest accrued from the last checkpointed block | |
* up to the current block and writes new checkpoint to storage. | |
*/ | |
function accrueInterest() override public returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("accrueInterest()")); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Transfers collateral tokens (this market) to the liquidator. | |
* @dev Will fail unless called by another cToken during the process of liquidation. | |
* Its absolutely critical to use msg.sender as the borrowed cToken and not a parameter. | |
* @param liquidator The account receiving seized collateral | |
* @param borrower The account having collateral seized | |
* @param seizeTokens The number of cTokens to seize | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function seize(address liquidator, address borrower, uint seizeTokens) override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("seize(address,address,uint256)", liquidator, borrower, seizeTokens)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice A public function to sweep accidental ERC-20 transfers to this contract. Tokens are sent to admin (timelock) | |
* @param token The address of the ERC-20 token to sweep | |
*/ | |
function sweepToken(EIP20NonStandardInterface token) override external { | |
delegateToImplementation(abi.encodeWithSignature("sweepToken(address)", token)); | |
} | |
/*** Admin Functions ***/ | |
/** | |
* @notice Begins transfer of admin rights. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. | |
* @dev Admin function to begin change of admin. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. | |
* @param newPendingAdmin New pending admin. | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _setPendingAdmin(address payable newPendingAdmin) override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("_setPendingAdmin(address)", newPendingAdmin)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Sets a new comptroller for the market | |
* @dev Admin function to set a new comptroller | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _setComptroller(ComptrollerInterface newComptroller) override public returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("_setComptroller(address)", newComptroller)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice accrues interest and sets a new reserve factor for the protocol using _setReserveFactorFresh | |
* @dev Admin function to accrue interest and set a new reserve factor | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _setReserveFactor(uint newReserveFactorMantissa) override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("_setReserveFactor(uint256)", newReserveFactorMantissa)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Accepts transfer of admin rights. msg.sender must be pendingAdmin | |
* @dev Admin function for pending admin to accept role and update admin | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _acceptAdmin() override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("_acceptAdmin()")); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Accrues interest and adds reserves by transferring from admin | |
* @param addAmount Amount of reserves to add | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _addReserves(uint addAmount) override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("_addReserves(uint256)", addAmount)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Accrues interest and reduces reserves by transferring to admin | |
* @param reduceAmount Amount of reduction to reserves | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _reduceReserves(uint reduceAmount) override external returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("_reduceReserves(uint256)", reduceAmount)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Accrues interest and updates the interest rate model using _setInterestRateModelFresh | |
* @dev Admin function to accrue interest and update the interest rate model | |
* @param newInterestRateModel the new interest rate model to use | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _setInterestRateModel(InterestRateModel newInterestRateModel) override public returns (uint) { | |
bytes memory data = delegateToImplementation(abi.encodeWithSignature("_setInterestRateModel(address)", newInterestRateModel)); | |
return abi.decode(data, (uint)); | |
} | |
/** | |
* @notice Internal method to delegate execution to another contract | |
* @dev It returns to the external caller whatever the implementation returns or forwards reverts | |
* @param callee The contract to delegatecall | |
* @param data The raw data to delegatecall | |
* @return The returned bytes from the delegatecall | |
*/ | |
function delegateTo(address callee, bytes memory data) internal returns (bytes memory) { | |
(bool success, bytes memory returnData) = callee.delegatecall(data); | |
assembly { | |
if eq(success, 0) { | |
revert(add(returnData, 0x20), returndatasize()) | |
} | |
} | |
return returnData; | |
} | |
/** | |
* @notice Delegates execution to the implementation contract | |
* @dev It returns to the external caller whatever the implementation returns or forwards reverts | |
* @param data The raw data to delegatecall | |
* @return The returned bytes from the delegatecall | |
*/ | |
function delegateToImplementation(bytes memory data) public returns (bytes memory) { | |
return delegateTo(implementation, data); | |
} | |
/** | |
* @notice Delegates execution to an implementation contract | |
* @dev It returns to the external caller whatever the implementation returns or forwards reverts | |
* There are an additional 2 prefix uints from the wrapper returndata, which we ignore since we make an extra hop. | |
* @param data The raw data to delegatecall | |
* @return The returned bytes from the delegatecall | |
*/ | |
function delegateToViewImplementation(bytes memory data) public view returns (bytes memory) { | |
(bool success, bytes memory returnData) = address(this).staticcall(abi.encodeWithSignature("delegateToImplementation(bytes)", data)); | |
assembly { | |
if eq(success, 0) { | |
revert(add(returnData, 0x20), returndatasize()) | |
} | |
} | |
return abi.decode(returnData, (bytes)); | |
} | |
/** | |
* @notice Delegates execution to an implementation contract | |
* @dev It returns to the external caller whatever the implementation returns or forwards reverts | |
*/ | |
fallback() external payable { | |
require(msg.value == 0,"CErc20Delegator:fallback: cannot send value to fallback"); | |
// delegate all other functions to current implementation | |
(bool success, ) = implementation.delegatecall(msg.data); | |
assembly { | |
let free_mem_ptr := mload(0x40) | |
returndatacopy(free_mem_ptr, 0, returndatasize()) | |
switch success | |
case 0 { revert(free_mem_ptr, returndatasize()) } | |
default { return(free_mem_ptr, returndatasize()) } | |
} | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./CErc20.sol"; | |
/** | |
* @title Compound's CErc20Immutable Contract | |
* @notice CTokens which wrap an EIP-20 underlying and are immutable | |
* @author Compound | |
*/ | |
contract CErc20Immutable is CErc20 { | |
/** | |
* @notice Construct a new money market | |
* @param underlying_ The address of the underlying asset | |
* @param comptroller_ The address of the Comptroller | |
* @param interestRateModel_ The address of the interest rate model | |
* @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18 | |
* @param name_ ERC-20 name of this token | |
* @param symbol_ ERC-20 symbol of this token | |
* @param decimals_ ERC-20 decimal precision of this token | |
* @param admin_ Address of the administrator of this token | |
*/ | |
constructor(address underlying_, | |
ComptrollerInterface comptroller_, | |
InterestRateModel interestRateModel_, | |
uint initialExchangeRateMantissa_, | |
string memory name_, | |
string memory symbol_, | |
uint8 decimals_, | |
address payable admin_) { | |
// Creator of the contract is admin during initialization | |
admin = payable(msg.sender); | |
// Initialize the market | |
initialize(underlying_, comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_); | |
// Set the proper admin now that initialization is done | |
admin = admin_; | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./CToken.sol"; | |
/** | |
* @title Compound's CEther Contract | |
* @notice CToken which wraps Ether | |
* @author Compound | |
*/ | |
contract CEther is CToken { | |
/** | |
* @notice Construct a new CEther money market | |
* @param comptroller_ The address of the Comptroller | |
* @param interestRateModel_ The address of the interest rate model | |
* @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18 | |
* @param name_ ERC-20 name of this token | |
* @param symbol_ ERC-20 symbol of this token | |
* @param decimals_ ERC-20 decimal precision of this token | |
* @param admin_ Address of the administrator of this token | |
*/ | |
constructor(ComptrollerInterface comptroller_, | |
InterestRateModel interestRateModel_, | |
uint initialExchangeRateMantissa_, | |
string memory name_, | |
string memory symbol_, | |
uint8 decimals_, | |
address payable admin_) { | |
// Creator of the contract is admin during initialization | |
admin = payable(msg.sender); | |
initialize(comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_); | |
// Set the proper admin now that initialization is done | |
admin = admin_; | |
} | |
/*** User Interface ***/ | |
/** | |
* @notice Sender supplies assets into the market and receives cTokens in exchange | |
* @dev Reverts upon any failure | |
*/ | |
function mint() external payable { | |
mintInternal(msg.value); | |
} | |
/** | |
* @notice Sender redeems cTokens in exchange for the underlying asset | |
* @dev Accrues interest whether or not the operation succeeds, unless reverted | |
* @param redeemTokens The number of cTokens to redeem into underlying | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function redeem(uint redeemTokens) external returns (uint) { | |
redeemInternal(redeemTokens); | |
return NO_ERROR; | |
} | |
/** | |
* @notice Sender redeems cTokens in exchange for a specified amount of underlying asset | |
* @dev Accrues interest whether or not the operation succeeds, unless reverted | |
* @param redeemAmount The amount of underlying to redeem | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function redeemUnderlying(uint redeemAmount) external returns (uint) { | |
redeemUnderlyingInternal(redeemAmount); | |
return NO_ERROR; | |
} | |
/** | |
* @notice Sender borrows assets from the protocol to their own address | |
* @param borrowAmount The amount of the underlying asset to borrow | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function borrow(uint borrowAmount) external returns (uint) { | |
borrowInternal(borrowAmount); | |
return NO_ERROR; | |
} | |
/** | |
* @notice Sender repays their own borrow | |
* @dev Reverts upon any failure | |
*/ | |
function repayBorrow() external payable { | |
repayBorrowInternal(msg.value); | |
} | |
/** | |
* @notice Sender repays a borrow belonging to borrower | |
* @dev Reverts upon any failure | |
* @param borrower the account with the debt being payed off | |
*/ | |
function repayBorrowBehalf(address borrower) external payable { | |
repayBorrowBehalfInternal(borrower, msg.value); | |
} | |
/** | |
* @notice The sender liquidates the borrowers collateral. | |
* The collateral seized is transferred to the liquidator. | |
* @dev Reverts upon any failure | |
* @param borrower The borrower of this cToken to be liquidated | |
* @param cTokenCollateral The market in which to seize collateral from the borrower | |
*/ | |
function liquidateBorrow(address borrower, CToken cTokenCollateral) external payable { | |
liquidateBorrowInternal(borrower, msg.value, cTokenCollateral); | |
} | |
/** | |
* @notice The sender adds to reserves. | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _addReserves() external payable returns (uint) { | |
return _addReservesInternal(msg.value); | |
} | |
/** | |
* @notice Send Ether to CEther to mint | |
*/ | |
receive() external payable { | |
mintInternal(msg.value); | |
} | |
/*** Safe Token ***/ | |
/** | |
* @notice Gets balance of this contract in terms of Ether, before this message | |
* @dev This excludes the value of the current message, if any | |
* @return The quantity of Ether owned by this contract | |
*/ | |
function getCashPrior() override internal view returns (uint) { | |
return address(this).balance - msg.value; | |
} | |
/** | |
* @notice Perform the actual transfer in, which is a no-op | |
* @param from Address sending the Ether | |
* @param amount Amount of Ether being sent | |
* @return The actual amount of Ether transferred | |
*/ | |
function doTransferIn(address from, uint amount) override internal returns (uint) { | |
// Sanity checks | |
require(msg.sender == from, "sender mismatch"); | |
require(msg.value == amount, "value mismatch"); | |
return amount; | |
} | |
function doTransferOut(address payable to, uint amount) virtual override internal { | |
/* Send the Ether, with minimal gas and revert on failure */ | |
to.transfer(amount); | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
contract Comp { | |
/// @notice EIP-20 token name for this token | |
string public constant name = "Compound"; | |
/// @notice EIP-20 token symbol for this token | |
string public constant symbol = "COMP"; | |
/// @notice EIP-20 token decimals for this token | |
uint8 public constant decimals = 18; | |
/// @notice Total number of tokens in circulation | |
uint public constant totalSupply = 10000000e18; // 10 million Comp | |
/// @notice Allowance amounts on behalf of others | |
mapping (address => mapping (address => uint96)) internal allowances; | |
/// @notice Official record of token balances for each account | |
mapping (address => uint96) internal balances; | |
/// @notice A record of each accounts delegate | |
mapping (address => address) public delegates; | |
/// @notice A checkpoint for marking number of votes from a given block | |
struct Checkpoint { | |
uint32 fromBlock; | |
uint96 votes; | |
} | |
/// @notice A record of votes checkpoints for each account, by index | |
mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; | |
/// @notice The number of checkpoints for each account | |
mapping (address => uint32) public numCheckpoints; | |
/// @notice The EIP-712 typehash for the contract's domain | |
bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); | |
/// @notice The EIP-712 typehash for the delegation struct used by the contract | |
bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); | |
/// @notice A record of states for signing / validating signatures | |
mapping (address => uint) public nonces; | |
/// @notice An event thats emitted when an account changes its delegate | |
event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); | |
/// @notice An event thats emitted when a delegate account's vote balance changes | |
event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); | |
/// @notice The standard EIP-20 transfer event | |
event Transfer(address indexed from, address indexed to, uint256 amount); | |
/// @notice The standard EIP-20 approval event | |
event Approval(address indexed owner, address indexed spender, uint256 amount); | |
/** | |
* @notice Construct a new Comp token | |
* @param account The initial account to grant all the tokens | |
*/ | |
constructor(address account) public { | |
balances[account] = uint96(totalSupply); | |
emit Transfer(address(0), account, totalSupply); | |
} | |
/** | |
* @notice Get the number of tokens `spender` is approved to spend on behalf of `account` | |
* @param account The address of the account holding the funds | |
* @param spender The address of the account spending the funds | |
* @return The number of tokens approved | |
*/ | |
function allowance(address account, address spender) external view returns (uint) { | |
return allowances[account][spender]; | |
} | |
/** | |
* @notice Approve `spender` to transfer up to `amount` from `src` | |
* @dev This will overwrite the approval amount for `spender` | |
* and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) | |
* @param spender The address of the account which may transfer tokens | |
* @param rawAmount The number of tokens that are approved (2^256-1 means infinite) | |
* @return Whether or not the approval succeeded | |
*/ | |
function approve(address spender, uint rawAmount) external returns (bool) { | |
uint96 amount; | |
if (rawAmount == type(uint).max) { | |
amount = type(uint96).max; | |
} else { | |
amount = safe96(rawAmount, "Comp::approve: amount exceeds 96 bits"); | |
} | |
allowances[msg.sender][spender] = amount; | |
emit Approval(msg.sender, spender, amount); | |
return true; | |
} | |
/** | |
* @notice Get the number of tokens held by the `account` | |
* @param account The address of the account to get the balance of | |
* @return The number of tokens held | |
*/ | |
function balanceOf(address account) external view returns (uint) { | |
return balances[account]; | |
} | |
/** | |
* @notice Transfer `amount` tokens from `msg.sender` to `dst` | |
* @param dst The address of the destination account | |
* @param rawAmount The number of tokens to transfer | |
* @return Whether or not the transfer succeeded | |
*/ | |
function transfer(address dst, uint rawAmount) external returns (bool) { | |
uint96 amount = safe96(rawAmount, "Comp::transfer: amount exceeds 96 bits"); | |
_transferTokens(msg.sender, dst, amount); | |
return true; | |
} | |
/** | |
* @notice Transfer `amount` tokens from `src` to `dst` | |
* @param src The address of the source account | |
* @param dst The address of the destination account | |
* @param rawAmount The number of tokens to transfer | |
* @return Whether or not the transfer succeeded | |
*/ | |
function transferFrom(address src, address dst, uint rawAmount) external returns (bool) { | |
address spender = msg.sender; | |
uint96 spenderAllowance = allowances[src][spender]; | |
uint96 amount = safe96(rawAmount, "Comp::approve: amount exceeds 96 bits"); | |
if (spender != src && spenderAllowance != type(uint96).max) { | |
uint96 newAllowance = sub96(spenderAllowance, amount, "Comp::transferFrom: transfer amount exceeds spender allowance"); | |
allowances[src][spender] = newAllowance; | |
emit Approval(src, spender, newAllowance); | |
} | |
_transferTokens(src, dst, amount); | |
return true; | |
} | |
/** | |
* @notice Delegate votes from `msg.sender` to `delegatee` | |
* @param delegatee The address to delegate votes to | |
*/ | |
function delegate(address delegatee) public { | |
return _delegate(msg.sender, delegatee); | |
} | |
/** | |
* @notice Delegates votes from signatory to `delegatee` | |
* @param delegatee The address to delegate votes to | |
* @param nonce The contract state required to match the signature | |
* @param expiry The time at which to expire the signature | |
* @param v The recovery byte of the signature | |
* @param r Half of the ECDSA signature pair | |
* @param s Half of the ECDSA signature pair | |
*/ | |
function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public { | |
bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this))); | |
bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry)); | |
bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); | |
address signatory = ecrecover(digest, v, r, s); | |
require(signatory != address(0), "Comp::delegateBySig: invalid signature"); | |
require(nonce == nonces[signatory]++, "Comp::delegateBySig: invalid nonce"); | |
require(block.timestamp <= expiry, "Comp::delegateBySig: signature expired"); | |
return _delegate(signatory, delegatee); | |
} | |
/** | |
* @notice Gets the current votes balance for `account` | |
* @param account The address to get votes balance | |
* @return The number of current votes for `account` | |
*/ | |
function getCurrentVotes(address account) external view returns (uint96) { | |
uint32 nCheckpoints = numCheckpoints[account]; | |
return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; | |
} | |
/** | |
* @notice Determine the prior number of votes for an account as of a block number | |
* @dev Block number must be a finalized block or else this function will revert to prevent misinformation. | |
* @param account The address of the account to check | |
* @param blockNumber The block number to get the vote balance at | |
* @return The number of votes the account had as of the given block | |
*/ | |
function getPriorVotes(address account, uint blockNumber) public view returns (uint96) { | |
require(blockNumber < block.number, "Comp::getPriorVotes: not yet determined"); | |
uint32 nCheckpoints = numCheckpoints[account]; | |
if (nCheckpoints == 0) { | |
return 0; | |
} | |
// First check most recent balance | |
if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { | |
return checkpoints[account][nCheckpoints - 1].votes; | |
} | |
// Next check implicit zero balance | |
if (checkpoints[account][0].fromBlock > blockNumber) { | |
return 0; | |
} | |
uint32 lower = 0; | |
uint32 upper = nCheckpoints - 1; | |
while (upper > lower) { | |
uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow | |
Checkpoint memory cp = checkpoints[account][center]; | |
if (cp.fromBlock == blockNumber) { | |
return cp.votes; | |
} else if (cp.fromBlock < blockNumber) { | |
lower = center; | |
} else { | |
upper = center - 1; | |
} | |
} | |
return checkpoints[account][lower].votes; | |
} | |
function _delegate(address delegator, address delegatee) internal { | |
address currentDelegate = delegates[delegator]; | |
uint96 delegatorBalance = balances[delegator]; | |
delegates[delegator] = delegatee; | |
emit DelegateChanged(delegator, currentDelegate, delegatee); | |
_moveDelegates(currentDelegate, delegatee, delegatorBalance); | |
} | |
function _transferTokens(address src, address dst, uint96 amount) internal { | |
require(src != address(0), "Comp::_transferTokens: cannot transfer from the zero address"); | |
require(dst != address(0), "Comp::_transferTokens: cannot transfer to the zero address"); | |
balances[src] = sub96(balances[src], amount, "Comp::_transferTokens: transfer amount exceeds balance"); | |
balances[dst] = add96(balances[dst], amount, "Comp::_transferTokens: transfer amount overflows"); | |
emit Transfer(src, dst, amount); | |
_moveDelegates(delegates[src], delegates[dst], amount); | |
} | |
function _moveDelegates(address srcRep, address dstRep, uint96 amount) internal { | |
if (srcRep != dstRep && amount > 0) { | |
if (srcRep != address(0)) { | |
uint32 srcRepNum = numCheckpoints[srcRep]; | |
uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; | |
uint96 srcRepNew = sub96(srcRepOld, amount, "Comp::_moveVotes: vote amount underflows"); | |
_writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); | |
} | |
if (dstRep != address(0)) { | |
uint32 dstRepNum = numCheckpoints[dstRep]; | |
uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; | |
uint96 dstRepNew = add96(dstRepOld, amount, "Comp::_moveVotes: vote amount overflows"); | |
_writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); | |
} | |
} | |
} | |
function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes) internal { | |
uint32 blockNumber = safe32(block.number, "Comp::_writeCheckpoint: block number exceeds 32 bits"); | |
if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { | |
checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; | |
} else { | |
checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); | |
numCheckpoints[delegatee] = nCheckpoints + 1; | |
} | |
emit DelegateVotesChanged(delegatee, oldVotes, newVotes); | |
} | |
function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { | |
require(n < 2**32, errorMessage); | |
return uint32(n); | |
} | |
function safe96(uint n, string memory errorMessage) internal pure returns (uint96) { | |
require(n < 2**96, errorMessage); | |
return uint96(n); | |
} | |
function add96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) { | |
uint96 c = a + b; | |
require(c >= a, errorMessage); | |
return c; | |
} | |
function sub96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) { | |
require(b <= a, errorMessage); | |
return a - b; | |
} | |
function getChainId() internal view returns (uint) { | |
uint256 chainId; | |
assembly { chainId := chainid() } | |
return chainId; | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./CErc20.sol"; | |
import "./CToken.sol"; | |
import "./PriceOracle.sol"; | |
import "./EIP20Interface.sol"; | |
import "./GovernorAlpha.sol"; | |
import "./Comp.sol"; | |
interface ComptrollerLensInterface { | |
function markets(address) external view returns (bool, uint); | |
function oracle() external view returns (PriceOracle); | |
function getAccountLiquidity(address) external view returns (uint, uint, uint); | |
function getAssetsIn(address) external view returns (CToken[] memory); | |
function claimComp(address) external; | |
function compAccrued(address) external view returns (uint); | |
function compSpeeds(address) external view returns (uint); | |
function compSupplySpeeds(address) external view returns (uint); | |
function compBorrowSpeeds(address) external view returns (uint); | |
function borrowCaps(address) external view returns (uint); | |
} | |
interface GovernorBravoInterface { | |
struct Receipt { | |
bool hasVoted; | |
uint8 support; | |
uint96 votes; | |
} | |
struct Proposal { | |
uint id; | |
address proposer; | |
uint eta; | |
uint startBlock; | |
uint endBlock; | |
uint forVotes; | |
uint againstVotes; | |
uint abstainVotes; | |
bool canceled; | |
bool executed; | |
} | |
function getActions(uint proposalId) external view returns (address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas); | |
function proposals(uint proposalId) external view returns (Proposal memory); | |
function getReceipt(uint proposalId, address voter) external view returns (Receipt memory); | |
} | |
contract CompoundLens { | |
struct CTokenMetadata { | |
address cToken; | |
uint exchangeRateCurrent; | |
uint supplyRatePerBlock; | |
uint borrowRatePerBlock; | |
uint reserveFactorMantissa; | |
uint totalBorrows; | |
uint totalReserves; | |
uint totalSupply; | |
uint totalCash; | |
bool isListed; | |
uint collateralFactorMantissa; | |
address underlyingAssetAddress; | |
uint cTokenDecimals; | |
uint underlyingDecimals; | |
uint compSupplySpeed; | |
uint compBorrowSpeed; | |
uint borrowCap; | |
} | |
function getCompSpeeds(ComptrollerLensInterface comptroller, CToken cToken) internal returns (uint, uint) { | |
// Getting comp speeds is gnarly due to not every network having the | |
// split comp speeds from Proposal 62 and other networks don't even | |
// have comp speeds. | |
uint compSupplySpeed = 0; | |
(bool compSupplySpeedSuccess, bytes memory compSupplySpeedReturnData) = | |
address(comptroller).call( | |
abi.encodePacked( | |
comptroller.compSupplySpeeds.selector, | |
abi.encode(address(cToken)) | |
) | |
); | |
if (compSupplySpeedSuccess) { | |
compSupplySpeed = abi.decode(compSupplySpeedReturnData, (uint)); | |
} | |
uint compBorrowSpeed = 0; | |
(bool compBorrowSpeedSuccess, bytes memory compBorrowSpeedReturnData) = | |
address(comptroller).call( | |
abi.encodePacked( | |
comptroller.compBorrowSpeeds.selector, | |
abi.encode(address(cToken)) | |
) | |
); | |
if (compBorrowSpeedSuccess) { | |
compBorrowSpeed = abi.decode(compBorrowSpeedReturnData, (uint)); | |
} | |
// If the split comp speeds call doesn't work, try the oldest non-spit version. | |
if (!compSupplySpeedSuccess || !compBorrowSpeedSuccess) { | |
(bool compSpeedSuccess, bytes memory compSpeedReturnData) = | |
address(comptroller).call( | |
abi.encodePacked( | |
comptroller.compSpeeds.selector, | |
abi.encode(address(cToken)) | |
) | |
); | |
if (compSpeedSuccess) { | |
compSupplySpeed = compBorrowSpeed = abi.decode(compSpeedReturnData, (uint)); | |
} | |
} | |
return (compSupplySpeed, compBorrowSpeed); | |
} | |
function cTokenMetadata(CToken cToken) public returns (CTokenMetadata memory) { | |
uint exchangeRateCurrent = cToken.exchangeRateCurrent(); | |
ComptrollerLensInterface comptroller = ComptrollerLensInterface(address(cToken.comptroller())); | |
(bool isListed, uint collateralFactorMantissa) = comptroller.markets(address(cToken)); | |
address underlyingAssetAddress; | |
uint underlyingDecimals; | |
if (compareStrings(cToken.symbol(), "cETH")) { | |
underlyingAssetAddress = address(0); | |
underlyingDecimals = 18; | |
} else { | |
CErc20 cErc20 = CErc20(address(cToken)); | |
underlyingAssetAddress = cErc20.underlying(); | |
underlyingDecimals = EIP20Interface(cErc20.underlying()).decimals(); | |
} | |
(uint compSupplySpeed, uint compBorrowSpeed) = getCompSpeeds(comptroller, cToken); | |
uint borrowCap = 0; | |
(bool borrowCapSuccess, bytes memory borrowCapReturnData) = | |
address(comptroller).call( | |
abi.encodePacked( | |
comptroller.borrowCaps.selector, | |
abi.encode(address(cToken)) | |
) | |
); | |
if (borrowCapSuccess) { | |
borrowCap = abi.decode(borrowCapReturnData, (uint)); | |
} | |
return CTokenMetadata({ | |
cToken: address(cToken), | |
exchangeRateCurrent: exchangeRateCurrent, | |
supplyRatePerBlock: cToken.supplyRatePerBlock(), | |
borrowRatePerBlock: cToken.borrowRatePerBlock(), | |
reserveFactorMantissa: cToken.reserveFactorMantissa(), | |
totalBorrows: cToken.totalBorrows(), | |
totalReserves: cToken.totalReserves(), | |
totalSupply: cToken.totalSupply(), | |
totalCash: cToken.getCash(), | |
isListed: isListed, | |
collateralFactorMantissa: collateralFactorMantissa, | |
underlyingAssetAddress: underlyingAssetAddress, | |
cTokenDecimals: cToken.decimals(), | |
underlyingDecimals: underlyingDecimals, | |
compSupplySpeed: compSupplySpeed, | |
compBorrowSpeed: compBorrowSpeed, | |
borrowCap: borrowCap | |
}); | |
} | |
function cTokenMetadataAll(CToken[] calldata cTokens) external returns (CTokenMetadata[] memory) { | |
uint cTokenCount = cTokens.length; | |
CTokenMetadata[] memory res = new CTokenMetadata[](cTokenCount); | |
for (uint i = 0; i < cTokenCount; i++) { | |
res[i] = cTokenMetadata(cTokens[i]); | |
} | |
return res; | |
} | |
struct CTokenBalances { | |
address cToken; | |
uint balanceOf; | |
uint borrowBalanceCurrent; | |
uint balanceOfUnderlying; | |
uint tokenBalance; | |
uint tokenAllowance; | |
} | |
function cTokenBalances(CToken cToken, address payable account) public returns (CTokenBalances memory) { | |
uint balanceOf = cToken.balanceOf(account); | |
uint borrowBalanceCurrent = cToken.borrowBalanceCurrent(account); | |
uint balanceOfUnderlying = cToken.balanceOfUnderlying(account); | |
uint tokenBalance; | |
uint tokenAllowance; | |
if (compareStrings(cToken.symbol(), "cETH")) { | |
tokenBalance = account.balance; | |
tokenAllowance = account.balance; | |
} else { | |
CErc20 cErc20 = CErc20(address(cToken)); | |
EIP20Interface underlying = EIP20Interface(cErc20.underlying()); | |
tokenBalance = underlying.balanceOf(account); | |
tokenAllowance = underlying.allowance(account, address(cToken)); | |
} | |
return CTokenBalances({ | |
cToken: address(cToken), | |
balanceOf: balanceOf, | |
borrowBalanceCurrent: borrowBalanceCurrent, | |
balanceOfUnderlying: balanceOfUnderlying, | |
tokenBalance: tokenBalance, | |
tokenAllowance: tokenAllowance | |
}); | |
} | |
function cTokenBalancesAll(CToken[] calldata cTokens, address payable account) external returns (CTokenBalances[] memory) { | |
uint cTokenCount = cTokens.length; | |
CTokenBalances[] memory res = new CTokenBalances[](cTokenCount); | |
for (uint i = 0; i < cTokenCount; i++) { | |
res[i] = cTokenBalances(cTokens[i], account); | |
} | |
return res; | |
} | |
struct CTokenUnderlyingPrice { | |
address cToken; | |
uint underlyingPrice; | |
} | |
function cTokenUnderlyingPrice(CToken cToken) public returns (CTokenUnderlyingPrice memory) { | |
ComptrollerLensInterface comptroller = ComptrollerLensInterface(address(cToken.comptroller())); | |
PriceOracle priceOracle = comptroller.oracle(); | |
return CTokenUnderlyingPrice({ | |
cToken: address(cToken), | |
underlyingPrice: priceOracle.getUnderlyingPrice(cToken) | |
}); | |
} | |
function cTokenUnderlyingPriceAll(CToken[] calldata cTokens) external returns (CTokenUnderlyingPrice[] memory) { | |
uint cTokenCount = cTokens.length; | |
CTokenUnderlyingPrice[] memory res = new CTokenUnderlyingPrice[](cTokenCount); | |
for (uint i = 0; i < cTokenCount; i++) { | |
res[i] = cTokenUnderlyingPrice(cTokens[i]); | |
} | |
return res; | |
} | |
struct AccountLimits { | |
CToken[] markets; | |
uint liquidity; | |
uint shortfall; | |
} | |
function getAccountLimits(ComptrollerLensInterface comptroller, address account) public returns (AccountLimits memory) { | |
(uint errorCode, uint liquidity, uint shortfall) = comptroller.getAccountLiquidity(account); | |
require(errorCode == 0); | |
return AccountLimits({ | |
markets: comptroller.getAssetsIn(account), | |
liquidity: liquidity, | |
shortfall: shortfall | |
}); | |
} | |
struct GovReceipt { | |
uint proposalId; | |
bool hasVoted; | |
bool support; | |
uint96 votes; | |
} | |
function getGovReceipts(GovernorAlpha governor, address voter, uint[] memory proposalIds) public view returns (GovReceipt[] memory) { | |
uint proposalCount = proposalIds.length; | |
GovReceipt[] memory res = new GovReceipt[](proposalCount); | |
for (uint i = 0; i < proposalCount; i++) { | |
GovernorAlpha.Receipt memory receipt = governor.getReceipt(proposalIds[i], voter); | |
res[i] = GovReceipt({ | |
proposalId: proposalIds[i], | |
hasVoted: receipt.hasVoted, | |
support: receipt.support, | |
votes: receipt.votes | |
}); | |
} | |
return res; | |
} | |
struct GovBravoReceipt { | |
uint proposalId; | |
bool hasVoted; | |
uint8 support; | |
uint96 votes; | |
} | |
function getGovBravoReceipts(GovernorBravoInterface governor, address voter, uint[] memory proposalIds) public view returns (GovBravoReceipt[] memory) { | |
uint proposalCount = proposalIds.length; | |
GovBravoReceipt[] memory res = new GovBravoReceipt[](proposalCount); | |
for (uint i = 0; i < proposalCount; i++) { | |
GovernorBravoInterface.Receipt memory receipt = governor.getReceipt(proposalIds[i], voter); | |
res[i] = GovBravoReceipt({ | |
proposalId: proposalIds[i], | |
hasVoted: receipt.hasVoted, | |
support: receipt.support, | |
votes: receipt.votes | |
}); | |
} | |
return res; | |
} | |
struct GovProposal { | |
uint proposalId; | |
address proposer; | |
uint eta; | |
address[] targets; | |
uint[] values; | |
string[] signatures; | |
bytes[] calldatas; | |
uint startBlock; | |
uint endBlock; | |
uint forVotes; | |
uint againstVotes; | |
bool canceled; | |
bool executed; | |
} | |
function setProposal(GovProposal memory res, GovernorAlpha governor, uint proposalId) internal view { | |
( | |
, | |
address proposer, | |
uint eta, | |
uint startBlock, | |
uint endBlock, | |
uint forVotes, | |
uint againstVotes, | |
bool canceled, | |
bool executed | |
) = governor.proposals(proposalId); | |
res.proposalId = proposalId; | |
res.proposer = proposer; | |
res.eta = eta; | |
res.startBlock = startBlock; | |
res.endBlock = endBlock; | |
res.forVotes = forVotes; | |
res.againstVotes = againstVotes; | |
res.canceled = canceled; | |
res.executed = executed; | |
} | |
function getGovProposals(GovernorAlpha governor, uint[] calldata proposalIds) external view returns (GovProposal[] memory) { | |
GovProposal[] memory res = new GovProposal[](proposalIds.length); | |
for (uint i = 0; i < proposalIds.length; i++) { | |
( | |
address[] memory targets, | |
uint[] memory values, | |
string[] memory signatures, | |
bytes[] memory calldatas | |
) = governor.getActions(proposalIds[i]); | |
res[i] = GovProposal({ | |
proposalId: 0, | |
proposer: address(0), | |
eta: 0, | |
targets: targets, | |
values: values, | |
signatures: signatures, | |
calldatas: calldatas, | |
startBlock: 0, | |
endBlock: 0, | |
forVotes: 0, | |
againstVotes: 0, | |
canceled: false, | |
executed: false | |
}); | |
setProposal(res[i], governor, proposalIds[i]); | |
} | |
return res; | |
} | |
struct GovBravoProposal { | |
uint proposalId; | |
address proposer; | |
uint eta; | |
address[] targets; | |
uint[] values; | |
string[] signatures; | |
bytes[] calldatas; | |
uint startBlock; | |
uint endBlock; | |
uint forVotes; | |
uint againstVotes; | |
uint abstainVotes; | |
bool canceled; | |
bool executed; | |
} | |
function setBravoProposal(GovBravoProposal memory res, GovernorBravoInterface governor, uint proposalId) internal view { | |
GovernorBravoInterface.Proposal memory p = governor.proposals(proposalId); | |
res.proposalId = proposalId; | |
res.proposer = p.proposer; | |
res.eta = p.eta; | |
res.startBlock = p.startBlock; | |
res.endBlock = p.endBlock; | |
res.forVotes = p.forVotes; | |
res.againstVotes = p.againstVotes; | |
res.abstainVotes = p.abstainVotes; | |
res.canceled = p.canceled; | |
res.executed = p.executed; | |
} | |
function getGovBravoProposals(GovernorBravoInterface governor, uint[] calldata proposalIds) external view returns (GovBravoProposal[] memory) { | |
GovBravoProposal[] memory res = new GovBravoProposal[](proposalIds.length); | |
for (uint i = 0; i < proposalIds.length; i++) { | |
( | |
address[] memory targets, | |
uint[] memory values, | |
string[] memory signatures, | |
bytes[] memory calldatas | |
) = governor.getActions(proposalIds[i]); | |
res[i] = GovBravoProposal({ | |
proposalId: 0, | |
proposer: address(0), | |
eta: 0, | |
targets: targets, | |
values: values, | |
signatures: signatures, | |
calldatas: calldatas, | |
startBlock: 0, | |
endBlock: 0, | |
forVotes: 0, | |
againstVotes: 0, | |
abstainVotes: 0, | |
canceled: false, | |
executed: false | |
}); | |
setBravoProposal(res[i], governor, proposalIds[i]); | |
} | |
return res; | |
} | |
struct CompBalanceMetadata { | |
uint balance; | |
uint votes; | |
address delegate; | |
} | |
function getCompBalanceMetadata(Comp comp, address account) external view returns (CompBalanceMetadata memory) { | |
return CompBalanceMetadata({ | |
balance: comp.balanceOf(account), | |
votes: uint256(comp.getCurrentVotes(account)), | |
delegate: comp.delegates(account) | |
}); | |
} | |
struct CompBalanceMetadataExt { | |
uint balance; | |
uint votes; | |
address delegate; | |
uint allocated; | |
} | |
function getCompBalanceMetadataExt(Comp comp, ComptrollerLensInterface comptroller, address account) external returns (CompBalanceMetadataExt memory) { | |
uint balance = comp.balanceOf(account); | |
comptroller.claimComp(account); | |
uint newBalance = comp.balanceOf(account); | |
uint accrued = comptroller.compAccrued(account); | |
uint total = add(accrued, newBalance, "sum comp total"); | |
uint allocated = sub(total, balance, "sub allocated"); | |
return CompBalanceMetadataExt({ | |
balance: balance, | |
votes: uint256(comp.getCurrentVotes(account)), | |
delegate: comp.delegates(account), | |
allocated: allocated | |
}); | |
} | |
struct CompVotes { | |
uint blockNumber; | |
uint votes; | |
} | |
function getCompVotes(Comp comp, address account, uint32[] calldata blockNumbers) external view returns (CompVotes[] memory) { | |
CompVotes[] memory res = new CompVotes[](blockNumbers.length); | |
for (uint i = 0; i < blockNumbers.length; i++) { | |
res[i] = CompVotes({ | |
blockNumber: uint256(blockNumbers[i]), | |
votes: uint256(comp.getPriorVotes(account, blockNumbers[i])) | |
}); | |
} | |
return res; | |
} | |
function compareStrings(string memory a, string memory b) internal pure returns (bool) { | |
return (keccak256(abi.encodePacked((a))) == keccak256(abi.encodePacked((b)))); | |
} | |
function add(uint a, uint b, string memory errorMessage) internal pure returns (uint) { | |
uint c = a + b; | |
require(c >= a, errorMessage); | |
return c; | |
} | |
function sub(uint a, uint b, string memory errorMessage) internal pure returns (uint) { | |
require(b <= a, errorMessage); | |
uint c = a - b; | |
return c; | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./CToken.sol"; | |
import "./ErrorReporter.sol"; | |
import "./PriceOracle.sol"; | |
import "./ComptrollerInterface.sol"; | |
import "./ComptrollerStorage.sol"; | |
import "./Unitroller.sol"; | |
import "./Comp.sol"; | |
/** | |
* @title Compound's Comptroller Contract | |
* @author Compound | |
*/ | |
contract Comptroller is ComptrollerV7Storage, ComptrollerInterface, ComptrollerErrorReporter, ExponentialNoError { | |
/// @notice Emitted when an admin supports a market | |
event MarketListed(CToken cToken); | |
/// @notice Emitted when an account enters a market | |
event MarketEntered(CToken cToken, address account); | |
/// @notice Emitted when an account exits a market | |
event MarketExited(CToken cToken, address account); | |
/// @notice Emitted when close factor is changed by admin | |
event NewCloseFactor(uint oldCloseFactorMantissa, uint newCloseFactorMantissa); | |
/// @notice Emitted when a collateral factor is changed by admin | |
event NewCollateralFactor(CToken cToken, uint oldCollateralFactorMantissa, uint newCollateralFactorMantissa); | |
/// @notice Emitted when liquidation incentive is changed by admin | |
event NewLiquidationIncentive(uint oldLiquidationIncentiveMantissa, uint newLiquidationIncentiveMantissa); | |
/// @notice Emitted when price oracle is changed | |
event NewPriceOracle(PriceOracle oldPriceOracle, PriceOracle newPriceOracle); | |
/// @notice Emitted when pause guardian is changed | |
event NewPauseGuardian(address oldPauseGuardian, address newPauseGuardian); | |
/// @notice Emitted when an action is paused globally | |
event ActionPaused(string action, bool pauseState); | |
/// @notice Emitted when an action is paused on a market | |
event ActionPaused(CToken cToken, string action, bool pauseState); | |
/// @notice Emitted when a new borrow-side COMP speed is calculated for a market | |
event CompBorrowSpeedUpdated(CToken indexed cToken, uint newSpeed); | |
/// @notice Emitted when a new supply-side COMP speed is calculated for a market | |
event CompSupplySpeedUpdated(CToken indexed cToken, uint newSpeed); | |
/// @notice Emitted when a new COMP speed is set for a contributor | |
event ContributorCompSpeedUpdated(address indexed contributor, uint newSpeed); | |
/// @notice Emitted when COMP is distributed to a supplier | |
event DistributedSupplierComp(CToken indexed cToken, address indexed supplier, uint compDelta, uint compSupplyIndex); | |
/// @notice Emitted when COMP is distributed to a borrower | |
event DistributedBorrowerComp(CToken indexed cToken, address indexed borrower, uint compDelta, uint compBorrowIndex); | |
/// @notice Emitted when borrow cap for a cToken is changed | |
event NewBorrowCap(CToken indexed cToken, uint newBorrowCap); | |
/// @notice Emitted when borrow cap guardian is changed | |
event NewBorrowCapGuardian(address oldBorrowCapGuardian, address newBorrowCapGuardian); | |
/// @notice Emitted when COMP is granted by admin | |
event CompGranted(address recipient, uint amount); | |
/// @notice Emitted when COMP accrued for a user has been manually adjusted. | |
event CompAccruedAdjusted(address indexed user, uint oldCompAccrued, uint newCompAccrued); | |
/// @notice Emitted when COMP receivable for a user has been updated. | |
event CompReceivableUpdated(address indexed user, uint oldCompReceivable, uint newCompReceivable); | |
/// @notice The initial COMP index for a market | |
uint224 public constant compInitialIndex = 1e36; | |
// closeFactorMantissa must be strictly greater than this value | |
uint internal constant closeFactorMinMantissa = 0.05e18; // 0.05 | |
// closeFactorMantissa must not exceed this value | |
uint internal constant closeFactorMaxMantissa = 0.9e18; // 0.9 | |
// No collateralFactorMantissa may exceed this value | |
uint internal constant collateralFactorMaxMantissa = 0.9e18; // 0.9 | |
constructor() { | |
admin = msg.sender; | |
} | |
/*** Assets You Are In ***/ | |
/** | |
* @notice Returns the assets an account has entered | |
* @param account The address of the account to pull assets for | |
* @return A dynamic list with the assets the account has entered | |
*/ | |
function getAssetsIn(address account) external view returns (CToken[] memory) { | |
CToken[] memory assetsIn = accountAssets[account]; | |
return assetsIn; | |
} | |
/** | |
* @notice Returns whether the given account is entered in the given asset | |
* @param account The address of the account to check | |
* @param cToken The cToken to check | |
* @return True if the account is in the asset, otherwise false. | |
*/ | |
function checkMembership(address account, CToken cToken) external view returns (bool) { | |
return markets[address(cToken)].accountMembership[account]; | |
} | |
/** | |
* @notice Add assets to be included in account liquidity calculation | |
* @param cTokens The list of addresses of the cToken markets to be enabled | |
* @return Success indicator for whether each corresponding market was entered | |
*/ | |
function enterMarkets(address[] memory cTokens) override public returns (uint[] memory) { | |
uint len = cTokens.length; | |
uint[] memory results = new uint[](len); | |
for (uint i = 0; i < len; i++) { | |
CToken cToken = CToken(cTokens[i]); | |
results[i] = uint(addToMarketInternal(cToken, msg.sender)); | |
} | |
return results; | |
} | |
/** | |
* @notice Add the market to the borrower's "assets in" for liquidity calculations | |
* @param cToken The market to enter | |
* @param borrower The address of the account to modify | |
* @return Success indicator for whether the market was entered | |
*/ | |
function addToMarketInternal(CToken cToken, address borrower) internal returns (Error) { | |
Market storage marketToJoin = markets[address(cToken)]; | |
if (!marketToJoin.isListed) { | |
// market is not listed, cannot join | |
return Error.MARKET_NOT_LISTED; | |
} | |
if (marketToJoin.accountMembership[borrower] == true) { | |
// already joined | |
return Error.NO_ERROR; | |
} | |
// survived the gauntlet, add to list | |
// NOTE: we store these somewhat redundantly as a significant optimization | |
// this avoids having to iterate through the list for the most common use cases | |
// that is, only when we need to perform liquidity checks | |
// and not whenever we want to check if an account is in a particular market | |
marketToJoin.accountMembership[borrower] = true; | |
accountAssets[borrower].push(cToken); | |
emit MarketEntered(cToken, borrower); | |
return Error.NO_ERROR; | |
} | |
/** | |
* @notice Removes asset from sender's account liquidity calculation | |
* @dev Sender must not have an outstanding borrow balance in the asset, | |
* or be providing necessary collateral for an outstanding borrow. | |
* @param cTokenAddress The address of the asset to be removed | |
* @return Whether or not the account successfully exited the market | |
*/ | |
function exitMarket(address cTokenAddress) override external returns (uint) { | |
CToken cToken = CToken(cTokenAddress); | |
/* Get sender tokensHeld and amountOwed underlying from the cToken */ | |
(uint oErr, uint tokensHeld, uint amountOwed, ) = cToken.getAccountSnapshot(msg.sender); | |
require(oErr == 0, "exitMarket: getAccountSnapshot failed"); // semi-opaque error code | |
/* Fail if the sender has a borrow balance */ | |
if (amountOwed != 0) { | |
return fail(Error.NONZERO_BORROW_BALANCE, FailureInfo.EXIT_MARKET_BALANCE_OWED); | |
} | |
/* Fail if the sender is not permitted to redeem all of their tokens */ | |
uint allowed = redeemAllowedInternal(cTokenAddress, msg.sender, tokensHeld); | |
if (allowed != 0) { | |
return failOpaque(Error.REJECTION, FailureInfo.EXIT_MARKET_REJECTION, allowed); | |
} | |
Market storage marketToExit = markets[address(cToken)]; | |
/* Return true if the sender is not already ‘in’ the market */ | |
if (!marketToExit.accountMembership[msg.sender]) { | |
return uint(Error.NO_ERROR); | |
} | |
/* Set cToken account membership to false */ | |
delete marketToExit.accountMembership[msg.sender]; | |
/* Delete cToken from the account’s list of assets */ | |
// load into memory for faster iteration | |
CToken[] memory userAssetList = accountAssets[msg.sender]; | |
uint len = userAssetList.length; | |
uint assetIndex = len; | |
for (uint i = 0; i < len; i++) { | |
if (userAssetList[i] == cToken) { | |
assetIndex = i; | |
break; | |
} | |
} | |
// We *must* have found the asset in the list or our redundant data structure is broken | |
assert(assetIndex < len); | |
// copy last item in list to location of item to be removed, reduce length by 1 | |
CToken[] storage storedList = accountAssets[msg.sender]; | |
storedList[assetIndex] = storedList[storedList.length - 1]; | |
storedList.pop(); | |
emit MarketExited(cToken, msg.sender); | |
return uint(Error.NO_ERROR); | |
} | |
/*** Policy Hooks ***/ | |
/** | |
* @notice Checks if the account should be allowed to mint tokens in the given market | |
* @param cToken The market to verify the mint against | |
* @param minter The account which would get the minted tokens | |
* @param mintAmount The amount of underlying being supplied to the market in exchange for tokens | |
* @return 0 if the mint is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol) | |
*/ | |
function mintAllowed(address cToken, address minter, uint mintAmount) override external returns (uint) { | |
// Pausing is a very serious situation - we revert to sound the alarms | |
require(!mintGuardianPaused[cToken], "mint is paused"); | |
// Shh - currently unused | |
minter; | |
mintAmount; | |
if (!markets[cToken].isListed) { | |
return uint(Error.MARKET_NOT_LISTED); | |
} | |
// Keep the flywheel moving | |
updateCompSupplyIndex(cToken); | |
distributeSupplierComp(cToken, minter); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Validates mint and reverts on rejection. May emit logs. | |
* @param cToken Asset being minted | |
* @param minter The address minting the tokens | |
* @param actualMintAmount The amount of the underlying asset being minted | |
* @param mintTokens The number of tokens being minted | |
*/ | |
function mintVerify(address cToken, address minter, uint actualMintAmount, uint mintTokens) override external { | |
// Shh - currently unused | |
cToken; | |
minter; | |
actualMintAmount; | |
mintTokens; | |
// Shh - we don't ever want this hook to be marked pure | |
if (false) { | |
maxAssets = maxAssets; | |
} | |
} | |
/** | |
* @notice Checks if the account should be allowed to redeem tokens in the given market | |
* @param cToken The market to verify the redeem against | |
* @param redeemer The account which would redeem the tokens | |
* @param redeemTokens The number of cTokens to exchange for the underlying asset in the market | |
* @return 0 if the redeem is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol) | |
*/ | |
function redeemAllowed(address cToken, address redeemer, uint redeemTokens) override external returns (uint) { | |
uint allowed = redeemAllowedInternal(cToken, redeemer, redeemTokens); | |
if (allowed != uint(Error.NO_ERROR)) { | |
return allowed; | |
} | |
// Keep the flywheel moving | |
updateCompSupplyIndex(cToken); | |
distributeSupplierComp(cToken, redeemer); | |
return uint(Error.NO_ERROR); | |
} | |
function redeemAllowedInternal(address cToken, address redeemer, uint redeemTokens) internal view returns (uint) { | |
if (!markets[cToken].isListed) { | |
return uint(Error.MARKET_NOT_LISTED); | |
} | |
/* If the redeemer is not 'in' the market, then we can bypass the liquidity check */ | |
if (!markets[cToken].accountMembership[redeemer]) { | |
return uint(Error.NO_ERROR); | |
} | |
/* Otherwise, perform a hypothetical liquidity check to guard against shortfall */ | |
(Error err, , uint shortfall) = getHypotheticalAccountLiquidityInternal(redeemer, CToken(cToken), redeemTokens, 0); | |
if (err != Error.NO_ERROR) { | |
return uint(err); | |
} | |
if (shortfall > 0) { | |
return uint(Error.INSUFFICIENT_LIQUIDITY); | |
} | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Validates redeem and reverts on rejection. May emit logs. | |
* @param cToken Asset being redeemed | |
* @param redeemer The address redeeming the tokens | |
* @param redeemAmount The amount of the underlying asset being redeemed | |
* @param redeemTokens The number of tokens being redeemed | |
*/ | |
function redeemVerify(address cToken, address redeemer, uint redeemAmount, uint redeemTokens) override external { | |
// Shh - currently unused | |
cToken; | |
redeemer; | |
// Require tokens is zero or amount is also zero | |
if (redeemTokens == 0 && redeemAmount > 0) { | |
revert("redeemTokens zero"); | |
} | |
} | |
/** | |
* @notice Checks if the account should be allowed to borrow the underlying asset of the given market | |
* @param cToken The market to verify the borrow against | |
* @param borrower The account which would borrow the asset | |
* @param borrowAmount The amount of underlying the account would borrow | |
* @return 0 if the borrow is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol) | |
*/ | |
function borrowAllowed(address cToken, address borrower, uint borrowAmount) override external returns (uint) { | |
// Pausing is a very serious situation - we revert to sound the alarms | |
require(!borrowGuardianPaused[cToken], "borrow is paused"); | |
if (!markets[cToken].isListed) { | |
return uint(Error.MARKET_NOT_LISTED); | |
} | |
if (!markets[cToken].accountMembership[borrower]) { | |
// only cTokens may call borrowAllowed if borrower not in market | |
require(msg.sender == cToken, "sender must be cToken"); | |
// attempt to add borrower to the market | |
Error err = addToMarketInternal(CToken(msg.sender), borrower); | |
if (err != Error.NO_ERROR) { | |
return uint(err); | |
} | |
// it should be impossible to break the important invariant | |
assert(markets[cToken].accountMembership[borrower]); | |
} | |
if (oracle.getUnderlyingPrice(CToken(cToken)) == 0) { | |
return uint(Error.PRICE_ERROR); | |
} | |
uint borrowCap = borrowCaps[cToken]; | |
// Borrow cap of 0 corresponds to unlimited borrowing | |
if (borrowCap != 0) { | |
uint totalBorrows = CToken(cToken).totalBorrows(); | |
uint nextTotalBorrows = add_(totalBorrows, borrowAmount); | |
require(nextTotalBorrows < borrowCap, "market borrow cap reached"); | |
} | |
(Error err, , uint shortfall) = getHypotheticalAccountLiquidityInternal(borrower, CToken(cToken), 0, borrowAmount); | |
if (err != Error.NO_ERROR) { | |
return uint(err); | |
} | |
if (shortfall > 0) { | |
return uint(Error.INSUFFICIENT_LIQUIDITY); | |
} | |
// Keep the flywheel moving | |
Exp memory borrowIndex = Exp({mantissa: CToken(cToken).borrowIndex()}); | |
updateCompBorrowIndex(cToken, borrowIndex); | |
distributeBorrowerComp(cToken, borrower, borrowIndex); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Validates borrow and reverts on rejection. May emit logs. | |
* @param cToken Asset whose underlying is being borrowed | |
* @param borrower The address borrowing the underlying | |
* @param borrowAmount The amount of the underlying asset requested to borrow | |
*/ | |
function borrowVerify(address cToken, address borrower, uint borrowAmount) override external { | |
// Shh - currently unused | |
cToken; | |
borrower; | |
borrowAmount; | |
// Shh - we don't ever want this hook to be marked pure | |
if (false) { | |
maxAssets = maxAssets; | |
} | |
} | |
/** | |
* @notice Checks if the account should be allowed to repay a borrow in the given market | |
* @param cToken The market to verify the repay against | |
* @param payer The account which would repay the asset | |
* @param borrower The account which would borrowed the asset | |
* @param repayAmount The amount of the underlying asset the account would repay | |
* @return 0 if the repay is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol) | |
*/ | |
function repayBorrowAllowed( | |
address cToken, | |
address payer, | |
address borrower, | |
uint repayAmount) override external returns (uint) { | |
// Shh - currently unused | |
payer; | |
borrower; | |
repayAmount; | |
if (!markets[cToken].isListed) { | |
return uint(Error.MARKET_NOT_LISTED); | |
} | |
// Keep the flywheel moving | |
Exp memory borrowIndex = Exp({mantissa: CToken(cToken).borrowIndex()}); | |
updateCompBorrowIndex(cToken, borrowIndex); | |
distributeBorrowerComp(cToken, borrower, borrowIndex); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Validates repayBorrow and reverts on rejection. May emit logs. | |
* @param cToken Asset being repaid | |
* @param payer The address repaying the borrow | |
* @param borrower The address of the borrower | |
* @param actualRepayAmount The amount of underlying being repaid | |
*/ | |
function repayBorrowVerify( | |
address cToken, | |
address payer, | |
address borrower, | |
uint actualRepayAmount, | |
uint borrowerIndex) override external { | |
// Shh - currently unused | |
cToken; | |
payer; | |
borrower; | |
actualRepayAmount; | |
borrowerIndex; | |
// Shh - we don't ever want this hook to be marked pure | |
if (false) { | |
maxAssets = maxAssets; | |
} | |
} | |
/** | |
* @notice Checks if the liquidation should be allowed to occur | |
* @param cTokenBorrowed Asset which was borrowed by the borrower | |
* @param cTokenCollateral Asset which was used as collateral and will be seized | |
* @param liquidator The address repaying the borrow and seizing the collateral | |
* @param borrower The address of the borrower | |
* @param repayAmount The amount of underlying being repaid | |
*/ | |
function liquidateBorrowAllowed( | |
address cTokenBorrowed, | |
address cTokenCollateral, | |
address liquidator, | |
address borrower, | |
uint repayAmount) override external returns (uint) { | |
// Shh - currently unused | |
liquidator; | |
if (!markets[cTokenBorrowed].isListed || !markets[cTokenCollateral].isListed) { | |
return uint(Error.MARKET_NOT_LISTED); | |
} | |
uint borrowBalance = CToken(cTokenBorrowed).borrowBalanceStored(borrower); | |
/* allow accounts to be liquidated if the market is deprecated */ | |
if (isDeprecated(CToken(cTokenBorrowed))) { | |
require(borrowBalance >= repayAmount, "Can not repay more than the total borrow"); | |
} else { | |
/* The borrower must have shortfall in order to be liquidatable */ | |
(Error err, , uint shortfall) = getAccountLiquidityInternal(borrower); | |
if (err != Error.NO_ERROR) { | |
return uint(err); | |
} | |
if (shortfall == 0) { | |
return uint(Error.INSUFFICIENT_SHORTFALL); | |
} | |
/* The liquidator may not repay more than what is allowed by the closeFactor */ | |
uint maxClose = mul_ScalarTruncate(Exp({mantissa: closeFactorMantissa}), borrowBalance); | |
if (repayAmount > maxClose) { | |
return uint(Error.TOO_MUCH_REPAY); | |
} | |
} | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Validates liquidateBorrow and reverts on rejection. May emit logs. | |
* @param cTokenBorrowed Asset which was borrowed by the borrower | |
* @param cTokenCollateral Asset which was used as collateral and will be seized | |
* @param liquidator The address repaying the borrow and seizing the collateral | |
* @param borrower The address of the borrower | |
* @param actualRepayAmount The amount of underlying being repaid | |
*/ | |
function liquidateBorrowVerify( | |
address cTokenBorrowed, | |
address cTokenCollateral, | |
address liquidator, | |
address borrower, | |
uint actualRepayAmount, | |
uint seizeTokens) override external { | |
// Shh - currently unused | |
cTokenBorrowed; | |
cTokenCollateral; | |
liquidator; | |
borrower; | |
actualRepayAmount; | |
seizeTokens; | |
// Shh - we don't ever want this hook to be marked pure | |
if (false) { | |
maxAssets = maxAssets; | |
} | |
} | |
/** | |
* @notice Checks if the seizing of assets should be allowed to occur | |
* @param cTokenCollateral Asset which was used as collateral and will be seized | |
* @param cTokenBorrowed Asset which was borrowed by the borrower | |
* @param liquidator The address repaying the borrow and seizing the collateral | |
* @param borrower The address of the borrower | |
* @param seizeTokens The number of collateral tokens to seize | |
*/ | |
function seizeAllowed( | |
address cTokenCollateral, | |
address cTokenBorrowed, | |
address liquidator, | |
address borrower, | |
uint seizeTokens) override external returns (uint) { | |
// Pausing is a very serious situation - we revert to sound the alarms | |
require(!seizeGuardianPaused, "seize is paused"); | |
// Shh - currently unused | |
seizeTokens; | |
if (!markets[cTokenCollateral].isListed || !markets[cTokenBorrowed].isListed) { | |
return uint(Error.MARKET_NOT_LISTED); | |
} | |
if (CToken(cTokenCollateral).comptroller() != CToken(cTokenBorrowed).comptroller()) { | |
return uint(Error.COMPTROLLER_MISMATCH); | |
} | |
// Keep the flywheel moving | |
updateCompSupplyIndex(cTokenCollateral); | |
distributeSupplierComp(cTokenCollateral, borrower); | |
distributeSupplierComp(cTokenCollateral, liquidator); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Validates seize and reverts on rejection. May emit logs. | |
* @param cTokenCollateral Asset which was used as collateral and will be seized | |
* @param cTokenBorrowed Asset which was borrowed by the borrower | |
* @param liquidator The address repaying the borrow and seizing the collateral | |
* @param borrower The address of the borrower | |
* @param seizeTokens The number of collateral tokens to seize | |
*/ | |
function seizeVerify( | |
address cTokenCollateral, | |
address cTokenBorrowed, | |
address liquidator, | |
address borrower, | |
uint seizeTokens) override external { | |
// Shh - currently unused | |
cTokenCollateral; | |
cTokenBorrowed; | |
liquidator; | |
borrower; | |
seizeTokens; | |
// Shh - we don't ever want this hook to be marked pure | |
if (false) { | |
maxAssets = maxAssets; | |
} | |
} | |
/** | |
* @notice Checks if the account should be allowed to transfer tokens in the given market | |
* @param cToken The market to verify the transfer against | |
* @param src The account which sources the tokens | |
* @param dst The account which receives the tokens | |
* @param transferTokens The number of cTokens to transfer | |
* @return 0 if the transfer is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol) | |
*/ | |
function transferAllowed(address cToken, address src, address dst, uint transferTokens) override external returns (uint) { | |
// Pausing is a very serious situation - we revert to sound the alarms | |
require(!transferGuardianPaused, "transfer is paused"); | |
// Currently the only consideration is whether or not | |
// the src is allowed to redeem this many tokens | |
uint allowed = redeemAllowedInternal(cToken, src, transferTokens); | |
if (allowed != uint(Error.NO_ERROR)) { | |
return allowed; | |
} | |
// Keep the flywheel moving | |
updateCompSupplyIndex(cToken); | |
distributeSupplierComp(cToken, src); | |
distributeSupplierComp(cToken, dst); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Validates transfer and reverts on rejection. May emit logs. | |
* @param cToken Asset being transferred | |
* @param src The account which sources the tokens | |
* @param dst The account which receives the tokens | |
* @param transferTokens The number of cTokens to transfer | |
*/ | |
function transferVerify(address cToken, address src, address dst, uint transferTokens) override external { | |
// Shh - currently unused | |
cToken; | |
src; | |
dst; | |
transferTokens; | |
// Shh - we don't ever want this hook to be marked pure | |
if (false) { | |
maxAssets = maxAssets; | |
} | |
} | |
/*** Liquidity/Liquidation Calculations ***/ | |
/** | |
* @dev Local vars for avoiding stack-depth limits in calculating account liquidity. | |
* Note that `cTokenBalance` is the number of cTokens the account owns in the market, | |
* whereas `borrowBalance` is the amount of underlying that the account has borrowed. | |
*/ | |
struct AccountLiquidityLocalVars { | |
uint sumCollateral; | |
uint sumBorrowPlusEffects; | |
uint cTokenBalance; | |
uint borrowBalance; | |
uint exchangeRateMantissa; | |
uint oraclePriceMantissa; | |
Exp collateralFactor; | |
Exp exchangeRate; | |
Exp oraclePrice; | |
Exp tokensToDenom; | |
} | |
/** | |
* @notice Determine the current account liquidity wrt collateral requirements | |
* @return (possible error code (semi-opaque), | |
account liquidity in excess of collateral requirements, | |
* account shortfall below collateral requirements) | |
*/ | |
function getAccountLiquidity(address account) public view returns (uint, uint, uint) { | |
(Error err, uint liquidity, uint shortfall) = getHypotheticalAccountLiquidityInternal(account, CToken(address(0)), 0, 0); | |
return (uint(err), liquidity, shortfall); | |
} | |
/** | |
* @notice Determine the current account liquidity wrt collateral requirements | |
* @return (possible error code, | |
account liquidity in excess of collateral requirements, | |
* account shortfall below collateral requirements) | |
*/ | |
function getAccountLiquidityInternal(address account) internal view returns (Error, uint, uint) { | |
return getHypotheticalAccountLiquidityInternal(account, CToken(address(0)), 0, 0); | |
} | |
/** | |
* @notice Determine what the account liquidity would be if the given amounts were redeemed/borrowed | |
* @param cTokenModify The market to hypothetically redeem/borrow in | |
* @param account The account to determine liquidity for | |
* @param redeemTokens The number of tokens to hypothetically redeem | |
* @param borrowAmount The amount of underlying to hypothetically borrow | |
* @return (possible error code (semi-opaque), | |
hypothetical account liquidity in excess of collateral requirements, | |
* hypothetical account shortfall below collateral requirements) | |
*/ | |
function getHypotheticalAccountLiquidity( | |
address account, | |
address cTokenModify, | |
uint redeemTokens, | |
uint borrowAmount) public view returns (uint, uint, uint) { | |
(Error err, uint liquidity, uint shortfall) = getHypotheticalAccountLiquidityInternal(account, CToken(cTokenModify), redeemTokens, borrowAmount); | |
return (uint(err), liquidity, shortfall); | |
} | |
/** | |
* @notice Determine what the account liquidity would be if the given amounts were redeemed/borrowed | |
* @param cTokenModify The market to hypothetically redeem/borrow in | |
* @param account The account to determine liquidity for | |
* @param redeemTokens The number of tokens to hypothetically redeem | |
* @param borrowAmount The amount of underlying to hypothetically borrow | |
* @dev Note that we calculate the exchangeRateStored for each collateral cToken using stored data, | |
* without calculating accumulated interest. | |
* @return (possible error code, | |
hypothetical account liquidity in excess of collateral requirements, | |
* hypothetical account shortfall below collateral requirements) | |
*/ | |
function getHypotheticalAccountLiquidityInternal( | |
address account, | |
CToken cTokenModify, | |
uint redeemTokens, | |
uint borrowAmount) internal view returns (Error, uint, uint) { | |
AccountLiquidityLocalVars memory vars; // Holds all our calculation results | |
uint oErr; | |
// For each asset the account is in | |
CToken[] memory assets = accountAssets[account]; | |
for (uint i = 0; i < assets.length; i++) { | |
CToken asset = assets[i]; | |
// Read the balances and exchange rate from the cToken | |
(oErr, vars.cTokenBalance, vars.borrowBalance, vars.exchangeRateMantissa) = asset.getAccountSnapshot(account); | |
if (oErr != 0) { // semi-opaque error code, we assume NO_ERROR == 0 is invariant between upgrades | |
return (Error.SNAPSHOT_ERROR, 0, 0); | |
} | |
vars.collateralFactor = Exp({mantissa: markets[address(asset)].collateralFactorMantissa}); | |
vars.exchangeRate = Exp({mantissa: vars.exchangeRateMantissa}); | |
// Get the normalized price of the asset | |
vars.oraclePriceMantissa = oracle.getUnderlyingPrice(asset); | |
if (vars.oraclePriceMantissa == 0) { | |
return (Error.PRICE_ERROR, 0, 0); | |
} | |
vars.oraclePrice = Exp({mantissa: vars.oraclePriceMantissa}); | |
// Pre-compute a conversion factor from tokens -> ether (normalized price value) | |
vars.tokensToDenom = mul_(mul_(vars.collateralFactor, vars.exchangeRate), vars.oraclePrice); | |
// sumCollateral += tokensToDenom * cTokenBalance | |
vars.sumCollateral = mul_ScalarTruncateAddUInt(vars.tokensToDenom, vars.cTokenBalance, vars.sumCollateral); | |
// sumBorrowPlusEffects += oraclePrice * borrowBalance | |
vars.sumBorrowPlusEffects = mul_ScalarTruncateAddUInt(vars.oraclePrice, vars.borrowBalance, vars.sumBorrowPlusEffects); | |
// Calculate effects of interacting with cTokenModify | |
if (asset == cTokenModify) { | |
// redeem effect | |
// sumBorrowPlusEffects += tokensToDenom * redeemTokens | |
vars.sumBorrowPlusEffects = mul_ScalarTruncateAddUInt(vars.tokensToDenom, redeemTokens, vars.sumBorrowPlusEffects); | |
// borrow effect | |
// sumBorrowPlusEffects += oraclePrice * borrowAmount | |
vars.sumBorrowPlusEffects = mul_ScalarTruncateAddUInt(vars.oraclePrice, borrowAmount, vars.sumBorrowPlusEffects); | |
} | |
} | |
// These are safe, as the underflow condition is checked first | |
if (vars.sumCollateral > vars.sumBorrowPlusEffects) { | |
return (Error.NO_ERROR, vars.sumCollateral - vars.sumBorrowPlusEffects, 0); | |
} else { | |
return (Error.NO_ERROR, 0, vars.sumBorrowPlusEffects - vars.sumCollateral); | |
} | |
} | |
/** | |
* @notice Calculate number of tokens of collateral asset to seize given an underlying amount | |
* @dev Used in liquidation (called in cToken.liquidateBorrowFresh) | |
* @param cTokenBorrowed The address of the borrowed cToken | |
* @param cTokenCollateral The address of the collateral cToken | |
* @param actualRepayAmount The amount of cTokenBorrowed underlying to convert into cTokenCollateral tokens | |
* @return (errorCode, number of cTokenCollateral tokens to be seized in a liquidation) | |
*/ | |
function liquidateCalculateSeizeTokens(address cTokenBorrowed, address cTokenCollateral, uint actualRepayAmount) override external view returns (uint, uint) { | |
/* Read oracle prices for borrowed and collateral markets */ | |
uint priceBorrowedMantissa = oracle.getUnderlyingPrice(CToken(cTokenBorrowed)); | |
uint priceCollateralMantissa = oracle.getUnderlyingPrice(CToken(cTokenCollateral)); | |
if (priceBorrowedMantissa == 0 || priceCollateralMantissa == 0) { | |
return (uint(Error.PRICE_ERROR), 0); | |
} | |
/* | |
* Get the exchange rate and calculate the number of collateral tokens to seize: | |
* seizeAmount = actualRepayAmount * liquidationIncentive * priceBorrowed / priceCollateral | |
* seizeTokens = seizeAmount / exchangeRate | |
* = actualRepayAmount * (liquidationIncentive * priceBorrowed) / (priceCollateral * exchangeRate) | |
*/ | |
uint exchangeRateMantissa = CToken(cTokenCollateral).exchangeRateStored(); // Note: reverts on error | |
uint seizeTokens; | |
Exp memory numerator; | |
Exp memory denominator; | |
Exp memory ratio; | |
numerator = mul_(Exp({mantissa: liquidationIncentiveMantissa}), Exp({mantissa: priceBorrowedMantissa})); | |
denominator = mul_(Exp({mantissa: priceCollateralMantissa}), Exp({mantissa: exchangeRateMantissa})); | |
ratio = div_(numerator, denominator); | |
seizeTokens = mul_ScalarTruncate(ratio, actualRepayAmount); | |
return (uint(Error.NO_ERROR), seizeTokens); | |
} | |
/*** Admin Functions ***/ | |
/** | |
* @notice Sets a new price oracle for the comptroller | |
* @dev Admin function to set a new price oracle | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _setPriceOracle(PriceOracle newOracle) public returns (uint) { | |
// Check caller is admin | |
if (msg.sender != admin) { | |
return fail(Error.UNAUTHORIZED, FailureInfo.SET_PRICE_ORACLE_OWNER_CHECK); | |
} | |
// Track the old oracle for the comptroller | |
PriceOracle oldOracle = oracle; | |
// Set comptroller's oracle to newOracle | |
oracle = newOracle; | |
// Emit NewPriceOracle(oldOracle, newOracle) | |
emit NewPriceOracle(oldOracle, newOracle); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Sets the closeFactor used when liquidating borrows | |
* @dev Admin function to set closeFactor | |
* @param newCloseFactorMantissa New close factor, scaled by 1e18 | |
* @return uint 0=success, otherwise a failure | |
*/ | |
function _setCloseFactor(uint newCloseFactorMantissa) external returns (uint) { | |
// Check caller is admin | |
require(msg.sender == admin, "only admin can set close factor"); | |
uint oldCloseFactorMantissa = closeFactorMantissa; | |
closeFactorMantissa = newCloseFactorMantissa; | |
emit NewCloseFactor(oldCloseFactorMantissa, closeFactorMantissa); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Sets the collateralFactor for a market | |
* @dev Admin function to set per-market collateralFactor | |
* @param cToken The market to set the factor on | |
* @param newCollateralFactorMantissa The new collateral factor, scaled by 1e18 | |
* @return uint 0=success, otherwise a failure. (See ErrorReporter for details) | |
*/ | |
function _setCollateralFactor(CToken cToken, uint newCollateralFactorMantissa) external returns (uint) { | |
// Check caller is admin | |
if (msg.sender != admin) { | |
return fail(Error.UNAUTHORIZED, FailureInfo.SET_COLLATERAL_FACTOR_OWNER_CHECK); | |
} | |
// Verify market is listed | |
Market storage market = markets[address(cToken)]; | |
if (!market.isListed) { | |
return fail(Error.MARKET_NOT_LISTED, FailureInfo.SET_COLLATERAL_FACTOR_NO_EXISTS); | |
} | |
Exp memory newCollateralFactorExp = Exp({mantissa: newCollateralFactorMantissa}); | |
// Check collateral factor <= 0.9 | |
Exp memory highLimit = Exp({mantissa: collateralFactorMaxMantissa}); | |
if (lessThanExp(highLimit, newCollateralFactorExp)) { | |
return fail(Error.INVALID_COLLATERAL_FACTOR, FailureInfo.SET_COLLATERAL_FACTOR_VALIDATION); | |
} | |
// If collateral factor != 0, fail if price == 0 | |
if (newCollateralFactorMantissa != 0 && oracle.getUnderlyingPrice(cToken) == 0) { | |
return fail(Error.PRICE_ERROR, FailureInfo.SET_COLLATERAL_FACTOR_WITHOUT_PRICE); | |
} | |
// Set market's collateral factor to new collateral factor, remember old value | |
uint oldCollateralFactorMantissa = market.collateralFactorMantissa; | |
market.collateralFactorMantissa = newCollateralFactorMantissa; | |
// Emit event with asset, old collateral factor, and new collateral factor | |
emit NewCollateralFactor(cToken, oldCollateralFactorMantissa, newCollateralFactorMantissa); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Sets liquidationIncentive | |
* @dev Admin function to set liquidationIncentive | |
* @param newLiquidationIncentiveMantissa New liquidationIncentive scaled by 1e18 | |
* @return uint 0=success, otherwise a failure. (See ErrorReporter for details) | |
*/ | |
function _setLiquidationIncentive(uint newLiquidationIncentiveMantissa) external returns (uint) { | |
// Check caller is admin | |
if (msg.sender != admin) { | |
return fail(Error.UNAUTHORIZED, FailureInfo.SET_LIQUIDATION_INCENTIVE_OWNER_CHECK); | |
} | |
// Save current value for use in log | |
uint oldLiquidationIncentiveMantissa = liquidationIncentiveMantissa; | |
// Set liquidation incentive to new incentive | |
liquidationIncentiveMantissa = newLiquidationIncentiveMantissa; | |
// Emit event with old incentive, new incentive | |
emit NewLiquidationIncentive(oldLiquidationIncentiveMantissa, newLiquidationIncentiveMantissa); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Add the market to the markets mapping and set it as listed | |
* @dev Admin function to set isListed and add support for the market | |
* @param cToken The address of the market (token) to list | |
* @return uint 0=success, otherwise a failure. (See enum Error for details) | |
*/ | |
function _supportMarket(CToken cToken) external returns (uint) { | |
if (msg.sender != admin) { | |
return fail(Error.UNAUTHORIZED, FailureInfo.SUPPORT_MARKET_OWNER_CHECK); | |
} | |
if (markets[address(cToken)].isListed) { | |
return fail(Error.MARKET_ALREADY_LISTED, FailureInfo.SUPPORT_MARKET_EXISTS); | |
} | |
cToken.isCToken(); // Sanity check to make sure its really a CToken | |
// Note that isComped is not in active use anymore | |
Market storage newMarket = markets[address(cToken)]; | |
newMarket.isListed = true; | |
newMarket.isComped = false; | |
newMarket.collateralFactorMantissa = 0; | |
_addMarketInternal(address(cToken)); | |
_initializeMarket(address(cToken)); | |
emit MarketListed(cToken); | |
return uint(Error.NO_ERROR); | |
} | |
function _addMarketInternal(address cToken) internal { | |
for (uint i = 0; i < allMarkets.length; i ++) { | |
require(allMarkets[i] != CToken(cToken), "market already added"); | |
} | |
allMarkets.push(CToken(cToken)); | |
} | |
function _initializeMarket(address cToken) internal { | |
uint32 blockNumber = safe32(getBlockNumber(), "block number exceeds 32 bits"); | |
CompMarketState storage supplyState = compSupplyState[cToken]; | |
CompMarketState storage borrowState = compBorrowState[cToken]; | |
/* | |
* Update market state indices | |
*/ | |
if (supplyState.index == 0) { | |
// Initialize supply state index with default value | |
supplyState.index = compInitialIndex; | |
} | |
if (borrowState.index == 0) { | |
// Initialize borrow state index with default value | |
borrowState.index = compInitialIndex; | |
} | |
/* | |
* Update market state block numbers | |
*/ | |
supplyState.block = borrowState.block = blockNumber; | |
} | |
/** | |
* @notice Set the given borrow caps for the given cToken markets. Borrowing that brings total borrows to or above borrow cap will revert. | |
* @dev Admin or borrowCapGuardian function to set the borrow caps. A borrow cap of 0 corresponds to unlimited borrowing. | |
* @param cTokens The addresses of the markets (tokens) to change the borrow caps for | |
* @param newBorrowCaps The new borrow cap values in underlying to be set. A value of 0 corresponds to unlimited borrowing. | |
*/ | |
function _setMarketBorrowCaps(CToken[] calldata cTokens, uint[] calldata newBorrowCaps) external { | |
require(msg.sender == admin || msg.sender == borrowCapGuardian, "only admin or borrow cap guardian can set borrow caps"); | |
uint numMarkets = cTokens.length; | |
uint numBorrowCaps = newBorrowCaps.length; | |
require(numMarkets != 0 && numMarkets == numBorrowCaps, "invalid input"); | |
for(uint i = 0; i < numMarkets; i++) { | |
borrowCaps[address(cTokens[i])] = newBorrowCaps[i]; | |
emit NewBorrowCap(cTokens[i], newBorrowCaps[i]); | |
} | |
} | |
/** | |
* @notice Admin function to change the Borrow Cap Guardian | |
* @param newBorrowCapGuardian The address of the new Borrow Cap Guardian | |
*/ | |
function _setBorrowCapGuardian(address newBorrowCapGuardian) external { | |
require(msg.sender == admin, "only admin can set borrow cap guardian"); | |
// Save current value for inclusion in log | |
address oldBorrowCapGuardian = borrowCapGuardian; | |
// Store borrowCapGuardian with value newBorrowCapGuardian | |
borrowCapGuardian = newBorrowCapGuardian; | |
// Emit NewBorrowCapGuardian(OldBorrowCapGuardian, NewBorrowCapGuardian) | |
emit NewBorrowCapGuardian(oldBorrowCapGuardian, newBorrowCapGuardian); | |
} | |
/** | |
* @notice Admin function to change the Pause Guardian | |
* @param newPauseGuardian The address of the new Pause Guardian | |
* @return uint 0=success, otherwise a failure. (See enum Error for details) | |
*/ | |
function _setPauseGuardian(address newPauseGuardian) public returns (uint) { | |
if (msg.sender != admin) { | |
return fail(Error.UNAUTHORIZED, FailureInfo.SET_PAUSE_GUARDIAN_OWNER_CHECK); | |
} | |
// Save current value for inclusion in log | |
address oldPauseGuardian = pauseGuardian; | |
// Store pauseGuardian with value newPauseGuardian | |
pauseGuardian = newPauseGuardian; | |
// Emit NewPauseGuardian(OldPauseGuardian, NewPauseGuardian) | |
emit NewPauseGuardian(oldPauseGuardian, pauseGuardian); | |
return uint(Error.NO_ERROR); | |
} | |
function _setMintPaused(CToken cToken, bool state) public returns (bool) { | |
require(markets[address(cToken)].isListed, "cannot pause a market that is not listed"); | |
require(msg.sender == pauseGuardian || msg.sender == admin, "only pause guardian and admin can pause"); | |
require(msg.sender == admin || state == true, "only admin can unpause"); | |
mintGuardianPaused[address(cToken)] = state; | |
emit ActionPaused(cToken, "Mint", state); | |
return state; | |
} | |
function _setBorrowPaused(CToken cToken, bool state) public returns (bool) { | |
require(markets[address(cToken)].isListed, "cannot pause a market that is not listed"); | |
require(msg.sender == pauseGuardian || msg.sender == admin, "only pause guardian and admin can pause"); | |
require(msg.sender == admin || state == true, "only admin can unpause"); | |
borrowGuardianPaused[address(cToken)] = state; | |
emit ActionPaused(cToken, "Borrow", state); | |
return state; | |
} | |
function _setTransferPaused(bool state) public returns (bool) { | |
require(msg.sender == pauseGuardian || msg.sender == admin, "only pause guardian and admin can pause"); | |
require(msg.sender == admin || state == true, "only admin can unpause"); | |
transferGuardianPaused = state; | |
emit ActionPaused("Transfer", state); | |
return state; | |
} | |
function _setSeizePaused(bool state) public returns (bool) { | |
require(msg.sender == pauseGuardian || msg.sender == admin, "only pause guardian and admin can pause"); | |
require(msg.sender == admin || state == true, "only admin can unpause"); | |
seizeGuardianPaused = state; | |
emit ActionPaused("Seize", state); | |
return state; | |
} | |
function _become(Unitroller unitroller) public { | |
require(msg.sender == unitroller.admin(), "only unitroller admin can change brains"); | |
require(unitroller._acceptImplementation() == 0, "change not authorized"); | |
} | |
/// @notice Delete this function after proposal 65 is executed | |
function fixBadAccruals(address[] calldata affectedUsers, uint[] calldata amounts) external { | |
require(msg.sender == admin, "Only admin can call this function"); // Only the timelock can call this function | |
require(!proposal65FixExecuted, "Already executed this one-off function"); // Require that this function is only called once | |
require(affectedUsers.length == amounts.length, "Invalid input"); | |
// Loop variables | |
address user; | |
uint currentAccrual; | |
uint amountToSubtract; | |
uint newAccrual; | |
// Iterate through all affected users | |
for (uint i = 0; i < affectedUsers.length; ++i) { | |
user = affectedUsers[i]; | |
currentAccrual = compAccrued[user]; | |
amountToSubtract = amounts[i]; | |
// The case where the user has claimed and received an incorrect amount of COMP. | |
// The user has less currently accrued than the amount they incorrectly received. | |
if (amountToSubtract > currentAccrual) { | |
// Amount of COMP the user owes the protocol | |
uint accountReceivable = amountToSubtract - currentAccrual; // Underflow safe since amountToSubtract > currentAccrual | |
uint oldReceivable = compReceivable[user]; | |
uint newReceivable = add_(oldReceivable, accountReceivable); | |
// Accounting: record the COMP debt for the user | |
compReceivable[user] = newReceivable; | |
emit CompReceivableUpdated(user, oldReceivable, newReceivable); | |
amountToSubtract = currentAccrual; | |
} | |
if (amountToSubtract > 0) { | |
// Subtract the bad accrual amount from what they have accrued. | |
// Users will keep whatever they have correctly accrued. | |
compAccrued[user] = newAccrual = sub_(currentAccrual, amountToSubtract); | |
emit CompAccruedAdjusted(user, currentAccrual, newAccrual); | |
} | |
} | |
proposal65FixExecuted = true; // Makes it so that this function cannot be called again | |
} | |
/** | |
* @notice Checks caller is admin, or this contract is becoming the new implementation | |
*/ | |
function adminOrInitializing() internal view returns (bool) { | |
return msg.sender == admin || msg.sender == comptrollerImplementation; | |
} | |
/*** Comp Distribution ***/ | |
/** | |
* @notice Set COMP speed for a single market | |
* @param cToken The market whose COMP speed to update | |
* @param supplySpeed New supply-side COMP speed for market | |
* @param borrowSpeed New borrow-side COMP speed for market | |
*/ | |
function setCompSpeedInternal(CToken cToken, uint supplySpeed, uint borrowSpeed) internal { | |
Market storage market = markets[address(cToken)]; | |
require(market.isListed, "comp market is not listed"); | |
if (compSupplySpeeds[address(cToken)] != supplySpeed) { | |
// Supply speed updated so let's update supply state to ensure that | |
// 1. COMP accrued properly for the old speed, and | |
// 2. COMP accrued at the new speed starts after this block. | |
updateCompSupplyIndex(address(cToken)); | |
// Update speed and emit event | |
compSupplySpeeds[address(cToken)] = supplySpeed; | |
emit CompSupplySpeedUpdated(cToken, supplySpeed); | |
} | |
if (compBorrowSpeeds[address(cToken)] != borrowSpeed) { | |
// Borrow speed updated so let's update borrow state to ensure that | |
// 1. COMP accrued properly for the old speed, and | |
// 2. COMP accrued at the new speed starts after this block. | |
Exp memory borrowIndex = Exp({mantissa: cToken.borrowIndex()}); | |
updateCompBorrowIndex(address(cToken), borrowIndex); | |
// Update speed and emit event | |
compBorrowSpeeds[address(cToken)] = borrowSpeed; | |
emit CompBorrowSpeedUpdated(cToken, borrowSpeed); | |
} | |
} | |
/** | |
* @notice Accrue COMP to the market by updating the supply index | |
* @param cToken The market whose supply index to update | |
* @dev Index is a cumulative sum of the COMP per cToken accrued. | |
*/ | |
function updateCompSupplyIndex(address cToken) internal { | |
CompMarketState storage supplyState = compSupplyState[cToken]; | |
uint supplySpeed = compSupplySpeeds[cToken]; | |
uint32 blockNumber = safe32(getBlockNumber(), "block number exceeds 32 bits"); | |
uint deltaBlocks = sub_(uint(blockNumber), uint(supplyState.block)); | |
if (deltaBlocks > 0 && supplySpeed > 0) { | |
uint supplyTokens = CToken(cToken).totalSupply(); | |
uint compAccrued = mul_(deltaBlocks, supplySpeed); | |
Double memory ratio = supplyTokens > 0 ? fraction(compAccrued, supplyTokens) : Double({mantissa: 0}); | |
supplyState.index = safe224(add_(Double({mantissa: supplyState.index}), ratio).mantissa, "new index exceeds 224 bits"); | |
supplyState.block = blockNumber; | |
} else if (deltaBlocks > 0) { | |
supplyState.block = blockNumber; | |
} | |
} | |
/** | |
* @notice Accrue COMP to the market by updating the borrow index | |
* @param cToken The market whose borrow index to update | |
* @dev Index is a cumulative sum of the COMP per cToken accrued. | |
*/ | |
function updateCompBorrowIndex(address cToken, Exp memory marketBorrowIndex) internal { | |
CompMarketState storage borrowState = compBorrowState[cToken]; | |
uint borrowSpeed = compBorrowSpeeds[cToken]; | |
uint32 blockNumber = safe32(getBlockNumber(), "block number exceeds 32 bits"); | |
uint deltaBlocks = sub_(uint(blockNumber), uint(borrowState.block)); | |
if (deltaBlocks > 0 && borrowSpeed > 0) { | |
uint borrowAmount = div_(CToken(cToken).totalBorrows(), marketBorrowIndex); | |
uint compAccrued = mul_(deltaBlocks, borrowSpeed); | |
Double memory ratio = borrowAmount > 0 ? fraction(compAccrued, borrowAmount) : Double({mantissa: 0}); | |
borrowState.index = safe224(add_(Double({mantissa: borrowState.index}), ratio).mantissa, "new index exceeds 224 bits"); | |
borrowState.block = blockNumber; | |
} else if (deltaBlocks > 0) { | |
borrowState.block = blockNumber; | |
} | |
} | |
/** | |
* @notice Calculate COMP accrued by a supplier and possibly transfer it to them | |
* @param cToken The market in which the supplier is interacting | |
* @param supplier The address of the supplier to distribute COMP to | |
*/ | |
function distributeSupplierComp(address cToken, address supplier) internal { | |
// TODO: Don't distribute supplier COMP if the user is not in the supplier market. | |
// This check should be as gas efficient as possible as distributeSupplierComp is called in many places. | |
// - We really don't want to call an external contract as that's quite expensive. | |
CompMarketState storage supplyState = compSupplyState[cToken]; | |
uint supplyIndex = supplyState.index; | |
uint supplierIndex = compSupplierIndex[cToken][supplier]; | |
// Update supplier's index to the current index since we are distributing accrued COMP | |
compSupplierIndex[cToken][supplier] = supplyIndex; | |
if (supplierIndex == 0 && supplyIndex >= compInitialIndex) { | |
// Covers the case where users supplied tokens before the market's supply state index was set. | |
// Rewards the user with COMP accrued from the start of when supplier rewards were first | |
// set for the market. | |
supplierIndex = compInitialIndex; | |
} | |
// Calculate change in the cumulative sum of the COMP per cToken accrued | |
Double memory deltaIndex = Double({mantissa: sub_(supplyIndex, supplierIndex)}); | |
uint supplierTokens = CToken(cToken).balanceOf(supplier); | |
// Calculate COMP accrued: cTokenAmount * accruedPerCToken | |
uint supplierDelta = mul_(supplierTokens, deltaIndex); | |
uint supplierAccrued = add_(compAccrued[supplier], supplierDelta); | |
compAccrued[supplier] = supplierAccrued; | |
emit DistributedSupplierComp(CToken(cToken), supplier, supplierDelta, supplyIndex); | |
} | |
/** | |
* @notice Calculate COMP accrued by a borrower and possibly transfer it to them | |
* @dev Borrowers will not begin to accrue until after the first interaction with the protocol. | |
* @param cToken The market in which the borrower is interacting | |
* @param borrower The address of the borrower to distribute COMP to | |
*/ | |
function distributeBorrowerComp(address cToken, address borrower, Exp memory marketBorrowIndex) internal { | |
// TODO: Don't distribute supplier COMP if the user is not in the borrower market. | |
// This check should be as gas efficient as possible as distributeBorrowerComp is called in many places. | |
// - We really don't want to call an external contract as that's quite expensive. | |
CompMarketState storage borrowState = compBorrowState[cToken]; | |
uint borrowIndex = borrowState.index; | |
uint borrowerIndex = compBorrowerIndex[cToken][borrower]; | |
// Update borrowers's index to the current index since we are distributing accrued COMP | |
compBorrowerIndex[cToken][borrower] = borrowIndex; | |
if (borrowerIndex == 0 && borrowIndex >= compInitialIndex) { | |
// Covers the case where users borrowed tokens before the market's borrow state index was set. | |
// Rewards the user with COMP accrued from the start of when borrower rewards were first | |
// set for the market. | |
borrowerIndex = compInitialIndex; | |
} | |
// Calculate change in the cumulative sum of the COMP per borrowed unit accrued | |
Double memory deltaIndex = Double({mantissa: sub_(borrowIndex, borrowerIndex)}); | |
uint borrowerAmount = div_(CToken(cToken).borrowBalanceStored(borrower), marketBorrowIndex); | |
// Calculate COMP accrued: cTokenAmount * accruedPerBorrowedUnit | |
uint borrowerDelta = mul_(borrowerAmount, deltaIndex); | |
uint borrowerAccrued = add_(compAccrued[borrower], borrowerDelta); | |
compAccrued[borrower] = borrowerAccrued; | |
emit DistributedBorrowerComp(CToken(cToken), borrower, borrowerDelta, borrowIndex); | |
} | |
/** | |
* @notice Calculate additional accrued COMP for a contributor since last accrual | |
* @param contributor The address to calculate contributor rewards for | |
*/ | |
function updateContributorRewards(address contributor) public { | |
uint compSpeed = compContributorSpeeds[contributor]; | |
uint blockNumber = getBlockNumber(); | |
uint deltaBlocks = sub_(blockNumber, lastContributorBlock[contributor]); | |
if (deltaBlocks > 0 && compSpeed > 0) { | |
uint newAccrued = mul_(deltaBlocks, compSpeed); | |
uint contributorAccrued = add_(compAccrued[contributor], newAccrued); | |
compAccrued[contributor] = contributorAccrued; | |
lastContributorBlock[contributor] = blockNumber; | |
} | |
} | |
/** | |
* @notice Claim all the comp accrued by holder in all markets | |
* @param holder The address to claim COMP for | |
*/ | |
function claimComp(address holder) public { | |
return claimComp(holder, allMarkets); | |
} | |
/** | |
* @notice Claim all the comp accrued by holder in the specified markets | |
* @param holder The address to claim COMP for | |
* @param cTokens The list of markets to claim COMP in | |
*/ | |
function claimComp(address holder, CToken[] memory cTokens) public { | |
address[] memory holders = new address[](1); | |
holders[0] = holder; | |
claimComp(holders, cTokens, true, true); | |
} | |
/** | |
* @notice Claim all comp accrued by the holders | |
* @param holders The addresses to claim COMP for | |
* @param cTokens The list of markets to claim COMP in | |
* @param borrowers Whether or not to claim COMP earned by borrowing | |
* @param suppliers Whether or not to claim COMP earned by supplying | |
*/ | |
function claimComp(address[] memory holders, CToken[] memory cTokens, bool borrowers, bool suppliers) public { | |
for (uint i = 0; i < cTokens.length; i++) { | |
CToken cToken = cTokens[i]; | |
require(markets[address(cToken)].isListed, "market must be listed"); | |
if (borrowers == true) { | |
Exp memory borrowIndex = Exp({mantissa: cToken.borrowIndex()}); | |
updateCompBorrowIndex(address(cToken), borrowIndex); | |
for (uint j = 0; j < holders.length; j++) { | |
distributeBorrowerComp(address(cToken), holders[j], borrowIndex); | |
} | |
} | |
if (suppliers == true) { | |
updateCompSupplyIndex(address(cToken)); | |
for (uint j = 0; j < holders.length; j++) { | |
distributeSupplierComp(address(cToken), holders[j]); | |
} | |
} | |
} | |
for (uint j = 0; j < holders.length; j++) { | |
compAccrued[holders[j]] = grantCompInternal(holders[j], compAccrued[holders[j]]); | |
} | |
} | |
/** | |
* @notice Transfer COMP to the user | |
* @dev Note: If there is not enough COMP, we do not perform the transfer all. | |
* @param user The address of the user to transfer COMP to | |
* @param amount The amount of COMP to (possibly) transfer | |
* @return The amount of COMP which was NOT transferred to the user | |
*/ | |
function grantCompInternal(address user, uint amount) internal returns (uint) { | |
Comp comp = Comp(getCompAddress()); | |
uint compRemaining = comp.balanceOf(address(this)); | |
if (amount > 0 && amount <= compRemaining) { | |
comp.transfer(user, amount); | |
return 0; | |
} | |
return amount; | |
} | |
/*** Comp Distribution Admin ***/ | |
/** | |
* @notice Transfer COMP to the recipient | |
* @dev Note: If there is not enough COMP, we do not perform the transfer all. | |
* @param recipient The address of the recipient to transfer COMP to | |
* @param amount The amount of COMP to (possibly) transfer | |
*/ | |
function _grantComp(address recipient, uint amount) public { | |
require(adminOrInitializing(), "only admin can grant comp"); | |
uint amountLeft = grantCompInternal(recipient, amount); | |
require(amountLeft == 0, "insufficient comp for grant"); | |
emit CompGranted(recipient, amount); | |
} | |
/** | |
* @notice Set COMP borrow and supply speeds for the specified markets. | |
* @param cTokens The markets whose COMP speed to update. | |
* @param supplySpeeds New supply-side COMP speed for the corresponding market. | |
* @param borrowSpeeds New borrow-side COMP speed for the corresponding market. | |
*/ | |
function _setCompSpeeds(CToken[] memory cTokens, uint[] memory supplySpeeds, uint[] memory borrowSpeeds) public { | |
require(adminOrInitializing(), "only admin can set comp speed"); | |
uint numTokens = cTokens.length; | |
require(numTokens == supplySpeeds.length && numTokens == borrowSpeeds.length, "Comptroller::_setCompSpeeds invalid input"); | |
for (uint i = 0; i < numTokens; ++i) { | |
setCompSpeedInternal(cTokens[i], supplySpeeds[i], borrowSpeeds[i]); | |
} | |
} | |
/** | |
* @notice Set COMP speed for a single contributor | |
* @param contributor The contributor whose COMP speed to update | |
* @param compSpeed New COMP speed for contributor | |
*/ | |
function _setContributorCompSpeed(address contributor, uint compSpeed) public { | |
require(adminOrInitializing(), "only admin can set comp speed"); | |
// note that COMP speed could be set to 0 to halt liquidity rewards for a contributor | |
updateContributorRewards(contributor); | |
if (compSpeed == 0) { | |
// release storage | |
delete lastContributorBlock[contributor]; | |
} else { | |
lastContributorBlock[contributor] = getBlockNumber(); | |
} | |
compContributorSpeeds[contributor] = compSpeed; | |
emit ContributorCompSpeedUpdated(contributor, compSpeed); | |
} | |
/** | |
* @notice Return all of the markets | |
* @dev The automatic getter may be used to access an individual market. | |
* @return The list of market addresses | |
*/ | |
function getAllMarkets() public view returns (CToken[] memory) { | |
return allMarkets; | |
} | |
/** | |
* @notice Returns true if the given cToken market has been deprecated | |
* @dev All borrows in a deprecated cToken market can be immediately liquidated | |
* @param cToken The market to check if deprecated | |
*/ | |
function isDeprecated(CToken cToken) public view returns (bool) { | |
return | |
markets[address(cToken)].collateralFactorMantissa == 0 && | |
borrowGuardianPaused[address(cToken)] == true && | |
cToken.reserveFactorMantissa() == 1e18 | |
; | |
} | |
function getBlockNumber() virtual public view returns (uint) { | |
return block.number; | |
} | |
/** | |
* @notice Return the address of the COMP token | |
* @return The address of COMP | |
*/ | |
function getCompAddress() virtual public view returns (address) { | |
return 0xc00e94Cb662C3520282E6f5717214004A7f26888; | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./CToken.sol"; | |
import "./ErrorReporter.sol"; | |
import "./PriceOracle.sol"; | |
import "./ComptrollerInterface.sol"; | |
import "./ComptrollerStorage.sol"; | |
import "./Unitroller.sol"; | |
import "./Comp.sol"; | |
/** | |
* @title Compound's Comptroller Contract | |
* @author Compound | |
*/ | |
contract ComptrollerG7 is ComptrollerV5Storage, ComptrollerInterface, ComptrollerErrorReporter, ExponentialNoError { | |
/// @notice Emitted when an admin supports a market | |
event MarketListed(CToken cToken); | |
/// @notice Emitted when an account enters a market | |
event MarketEntered(CToken cToken, address account); | |
/// @notice Emitted when an account exits a market | |
event MarketExited(CToken cToken, address account); | |
/// @notice Emitted when close factor is changed by admin | |
event NewCloseFactor(uint oldCloseFactorMantissa, uint newCloseFactorMantissa); | |
/// @notice Emitted when a collateral factor is changed by admin | |
event NewCollateralFactor(CToken cToken, uint oldCollateralFactorMantissa, uint newCollateralFactorMantissa); | |
/// @notice Emitted when liquidation incentive is changed by admin | |
event NewLiquidationIncentive(uint oldLiquidationIncentiveMantissa, uint newLiquidationIncentiveMantissa); | |
/// @notice Emitted when price oracle is changed | |
event NewPriceOracle(PriceOracle oldPriceOracle, PriceOracle newPriceOracle); | |
/// @notice Emitted when pause guardian is changed | |
event NewPauseGuardian(address oldPauseGuardian, address newPauseGuardian); | |
/// @notice Emitted when an action is paused globally | |
event ActionPaused(string action, bool pauseState); | |
/// @notice Emitted when an action is paused on a market | |
event ActionPaused(CToken cToken, string action, bool pauseState); | |
/// @notice Emitted when a new COMP speed is calculated for a market | |
event CompSpeedUpdated(CToken indexed cToken, uint newSpeed); | |
/// @notice Emitted when a new COMP speed is set for a contributor | |
event ContributorCompSpeedUpdated(address indexed contributor, uint newSpeed); | |
/// @notice Emitted when COMP is distributed to a supplier | |
event DistributedSupplierComp(CToken indexed cToken, address indexed supplier, uint compDelta, uint compSupplyIndex); | |
/// @notice Emitted when COMP is distributed to a borrower | |
event DistributedBorrowerComp(CToken indexed cToken, address indexed borrower, uint compDelta, uint compBorrowIndex); | |
/// @notice Emitted when borrow cap for a cToken is changed | |
event NewBorrowCap(CToken indexed cToken, uint newBorrowCap); | |
/// @notice Emitted when borrow cap guardian is changed | |
event NewBorrowCapGuardian(address oldBorrowCapGuardian, address newBorrowCapGuardian); | |
/// @notice Emitted when COMP is granted by admin | |
event CompGranted(address recipient, uint amount); | |
/// @notice The initial COMP index for a market | |
uint224 public constant compInitialIndex = 1e36; | |
// closeFactorMantissa must be strictly greater than this value | |
uint internal constant closeFactorMinMantissa = 0.05e18; // 0.05 | |
// closeFactorMantissa must not exceed this value | |
uint internal constant closeFactorMaxMantissa = 0.9e18; // 0.9 | |
// No collateralFactorMantissa may exceed this value | |
uint internal constant collateralFactorMaxMantissa = 0.9e18; // 0.9 | |
constructor() public { | |
admin = msg.sender; | |
} | |
/*** Assets You Are In ***/ | |
/** | |
* @notice Returns the assets an account has entered | |
* @param account The address of the account to pull assets for | |
* @return A dynamic list with the assets the account has entered | |
*/ | |
function getAssetsIn(address account) external view returns (CToken[] memory) { | |
CToken[] memory assetsIn = accountAssets[account]; | |
return assetsIn; | |
} | |
/** | |
* @notice Returns whether the given account is entered in the given asset | |
* @param account The address of the account to check | |
* @param cToken The cToken to check | |
* @return True if the account is in the asset, otherwise false. | |
*/ | |
function checkMembership(address account, CToken cToken) external view returns (bool) { | |
return markets[address(cToken)].accountMembership[account]; | |
} | |
/** | |
* @notice Add assets to be included in account liquidity calculation | |
* @param cTokens The list of addresses of the cToken markets to be enabled | |
* @return Success indicator for whether each corresponding market was entered | |
*/ | |
function enterMarkets(address[] memory cTokens) override public returns (uint[] memory) { | |
uint len = cTokens.length; | |
uint[] memory results = new uint[](len); | |
for (uint i = 0; i < len; i++) { | |
CToken cToken = CToken(cTokens[i]); | |
results[i] = uint(addToMarketInternal(cToken, msg.sender)); | |
} | |
return results; | |
} | |
/** | |
* @notice Add the market to the borrower's "assets in" for liquidity calculations | |
* @param cToken The market to enter | |
* @param borrower The address of the account to modify | |
* @return Success indicator for whether the market was entered | |
*/ | |
function addToMarketInternal(CToken cToken, address borrower) internal returns (Error) { | |
Market storage marketToJoin = markets[address(cToken)]; | |
if (!marketToJoin.isListed) { | |
// market is not listed, cannot join | |
return Error.MARKET_NOT_LISTED; | |
} | |
if (marketToJoin.accountMembership[borrower] == true) { | |
// already joined | |
return Error.NO_ERROR; | |
} | |
// survived the gauntlet, add to list | |
// NOTE: we store these somewhat redundantly as a significant optimization | |
// this avoids having to iterate through the list for the most common use cases | |
// that is, only when we need to perform liquidity checks | |
// and not whenever we want to check if an account is in a particular market | |
marketToJoin.accountMembership[borrower] = true; | |
accountAssets[borrower].push(cToken); | |
emit MarketEntered(cToken, borrower); | |
return Error.NO_ERROR; | |
} | |
/** | |
* @notice Removes asset from sender's account liquidity calculation | |
* @dev Sender must not have an outstanding borrow balance in the asset, | |
* or be providing necessary collateral for an outstanding borrow. | |
* @param cTokenAddress The address of the asset to be removed | |
* @return Whether or not the account successfully exited the market | |
*/ | |
function exitMarket(address cTokenAddress) override external returns (uint) { | |
CToken cToken = CToken(cTokenAddress); | |
/* Get sender tokensHeld and amountOwed underlying from the cToken */ | |
(uint oErr, uint tokensHeld, uint amountOwed, ) = cToken.getAccountSnapshot(msg.sender); | |
require(oErr == 0, "exitMarket: getAccountSnapshot failed"); // semi-opaque error code | |
/* Fail if the sender has a borrow balance */ | |
if (amountOwed != 0) { | |
return fail(Error.NONZERO_BORROW_BALANCE, FailureInfo.EXIT_MARKET_BALANCE_OWED); | |
} | |
/* Fail if the sender is not permitted to redeem all of their tokens */ | |
uint allowed = redeemAllowedInternal(cTokenAddress, msg.sender, tokensHeld); | |
if (allowed != 0) { | |
return failOpaque(Error.REJECTION, FailureInfo.EXIT_MARKET_REJECTION, allowed); | |
} | |
Market storage marketToExit = markets[address(cToken)]; | |
/* Return true if the sender is not already ‘in’ the market */ | |
if (!marketToExit.accountMembership[msg.sender]) { | |
return uint(Error.NO_ERROR); | |
} | |
/* Set cToken account membership to false */ | |
delete marketToExit.accountMembership[msg.sender]; | |
/* Delete cToken from the account’s list of assets */ | |
// load into memory for faster iteration | |
CToken[] memory userAssetList = accountAssets[msg.sender]; | |
uint len = userAssetList.length; | |
uint assetIndex = len; | |
for (uint i = 0; i < len; i++) { | |
if (userAssetList[i] == cToken) { | |
assetIndex = i; | |
break; | |
} | |
} | |
// We *must* have found the asset in the list or our redundant data structure is broken | |
assert(assetIndex < len); | |
// copy last item in list to location of item to be removed, reduce length by 1 | |
CToken[] storage storedList = accountAssets[msg.sender]; | |
storedList[assetIndex] = storedList[storedList.length - 1]; | |
storedList.pop(); | |
emit MarketExited(cToken, msg.sender); | |
return uint(Error.NO_ERROR); | |
} | |
/*** Policy Hooks ***/ | |
/** | |
* @notice Checks if the account should be allowed to mint tokens in the given market | |
* @param cToken The market to verify the mint against | |
* @param minter The account which would get the minted tokens | |
* @param mintAmount The amount of underlying being supplied to the market in exchange for tokens | |
* @return 0 if the mint is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol) | |
*/ | |
function mintAllowed(address cToken, address minter, uint mintAmount) override external returns (uint) { | |
// Pausing is a very serious situation - we revert to sound the alarms | |
require(!mintGuardianPaused[cToken], "mint is paused"); | |
// Shh - currently unused | |
minter; | |
mintAmount; | |
if (!markets[cToken].isListed) { | |
return uint(Error.MARKET_NOT_LISTED); | |
} | |
// Keep the flywheel moving | |
updateCompSupplyIndex(cToken); | |
distributeSupplierComp(cToken, minter); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Validates mint and reverts on rejection. May emit logs. | |
* @param cToken Asset being minted | |
* @param minter The address minting the tokens | |
* @param actualMintAmount The amount of the underlying asset being minted | |
* @param mintTokens The number of tokens being minted | |
*/ | |
function mintVerify(address cToken, address minter, uint actualMintAmount, uint mintTokens) override external { | |
// Shh - currently unused | |
cToken; | |
minter; | |
actualMintAmount; | |
mintTokens; | |
// Shh - we don't ever want this hook to be marked pure | |
if (false) { | |
maxAssets = maxAssets; | |
} | |
} | |
/** | |
* @notice Checks if the account should be allowed to redeem tokens in the given market | |
* @param cToken The market to verify the redeem against | |
* @param redeemer The account which would redeem the tokens | |
* @param redeemTokens The number of cTokens to exchange for the underlying asset in the market | |
* @return 0 if the redeem is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol) | |
*/ | |
function redeemAllowed(address cToken, address redeemer, uint redeemTokens) override external returns (uint) { | |
uint allowed = redeemAllowedInternal(cToken, redeemer, redeemTokens); | |
if (allowed != uint(Error.NO_ERROR)) { | |
return allowed; | |
} | |
// Keep the flywheel moving | |
updateCompSupplyIndex(cToken); | |
distributeSupplierComp(cToken, redeemer); | |
return uint(Error.NO_ERROR); | |
} | |
function redeemAllowedInternal(address cToken, address redeemer, uint redeemTokens) internal view returns (uint) { | |
if (!markets[cToken].isListed) { | |
return uint(Error.MARKET_NOT_LISTED); | |
} | |
/* If the redeemer is not 'in' the market, then we can bypass the liquidity check */ | |
if (!markets[cToken].accountMembership[redeemer]) { | |
return uint(Error.NO_ERROR); | |
} | |
/* Otherwise, perform a hypothetical liquidity check to guard against shortfall */ | |
(Error err, , uint shortfall) = getHypotheticalAccountLiquidityInternal(redeemer, CToken(cToken), redeemTokens, 0); | |
if (err != Error.NO_ERROR) { | |
return uint(err); | |
} | |
if (shortfall > 0) { | |
return uint(Error.INSUFFICIENT_LIQUIDITY); | |
} | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Validates redeem and reverts on rejection. May emit logs. | |
* @param cToken Asset being redeemed | |
* @param redeemer The address redeeming the tokens | |
* @param redeemAmount The amount of the underlying asset being redeemed | |
* @param redeemTokens The number of tokens being redeemed | |
*/ | |
function redeemVerify(address cToken, address redeemer, uint redeemAmount, uint redeemTokens) override external { | |
// Shh - currently unused | |
cToken; | |
redeemer; | |
// Require tokens is zero or amount is also zero | |
if (redeemTokens == 0 && redeemAmount > 0) { | |
revert("redeemTokens zero"); | |
} | |
} | |
/** | |
* @notice Checks if the account should be allowed to borrow the underlying asset of the given market | |
* @param cToken The market to verify the borrow against | |
* @param borrower The account which would borrow the asset | |
* @param borrowAmount The amount of underlying the account would borrow | |
* @return 0 if the borrow is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol) | |
*/ | |
function borrowAllowed(address cToken, address borrower, uint borrowAmount) override external returns (uint) { | |
// Pausing is a very serious situation - we revert to sound the alarms | |
require(!borrowGuardianPaused[cToken], "borrow is paused"); | |
if (!markets[cToken].isListed) { | |
return uint(Error.MARKET_NOT_LISTED); | |
} | |
if (!markets[cToken].accountMembership[borrower]) { | |
// only cTokens may call borrowAllowed if borrower not in market | |
require(msg.sender == cToken, "sender must be cToken"); | |
// attempt to add borrower to the market | |
Error err = addToMarketInternal(CToken(msg.sender), borrower); | |
if (err != Error.NO_ERROR) { | |
return uint(err); | |
} | |
// it should be impossible to break the important invariant | |
assert(markets[cToken].accountMembership[borrower]); | |
} | |
if (oracle.getUnderlyingPrice(CToken(cToken)) == 0) { | |
return uint(Error.PRICE_ERROR); | |
} | |
uint borrowCap = borrowCaps[cToken]; | |
// Borrow cap of 0 corresponds to unlimited borrowing | |
if (borrowCap != 0) { | |
uint totalBorrows = CToken(cToken).totalBorrows(); | |
uint nextTotalBorrows = add_(totalBorrows, borrowAmount); | |
require(nextTotalBorrows < borrowCap, "market borrow cap reached"); | |
} | |
(Error err, , uint shortfall) = getHypotheticalAccountLiquidityInternal(borrower, CToken(cToken), 0, borrowAmount); | |
if (err != Error.NO_ERROR) { | |
return uint(err); | |
} | |
if (shortfall > 0) { | |
return uint(Error.INSUFFICIENT_LIQUIDITY); | |
} | |
// Keep the flywheel moving | |
Exp memory borrowIndex = Exp({mantissa: CToken(cToken).borrowIndex()}); | |
updateCompBorrowIndex(cToken, borrowIndex); | |
distributeBorrowerComp(cToken, borrower, borrowIndex); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Validates borrow and reverts on rejection. May emit logs. | |
* @param cToken Asset whose underlying is being borrowed | |
* @param borrower The address borrowing the underlying | |
* @param borrowAmount The amount of the underlying asset requested to borrow | |
*/ | |
function borrowVerify(address cToken, address borrower, uint borrowAmount) override external { | |
// Shh - currently unused | |
cToken; | |
borrower; | |
borrowAmount; | |
// Shh - we don't ever want this hook to be marked pure | |
if (false) { | |
maxAssets = maxAssets; | |
} | |
} | |
/** | |
* @notice Checks if the account should be allowed to repay a borrow in the given market | |
* @param cToken The market to verify the repay against | |
* @param payer The account which would repay the asset | |
* @param borrower The account which would borrowed the asset | |
* @param repayAmount The amount of the underlying asset the account would repay | |
* @return 0 if the repay is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol) | |
*/ | |
function repayBorrowAllowed( | |
address cToken, | |
address payer, | |
address borrower, | |
uint repayAmount) override external returns (uint) { | |
// Shh - currently unused | |
payer; | |
borrower; | |
repayAmount; | |
if (!markets[cToken].isListed) { | |
return uint(Error.MARKET_NOT_LISTED); | |
} | |
// Keep the flywheel moving | |
Exp memory borrowIndex = Exp({mantissa: CToken(cToken).borrowIndex()}); | |
updateCompBorrowIndex(cToken, borrowIndex); | |
distributeBorrowerComp(cToken, borrower, borrowIndex); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Validates repayBorrow and reverts on rejection. May emit logs. | |
* @param cToken Asset being repaid | |
* @param payer The address repaying the borrow | |
* @param borrower The address of the borrower | |
* @param actualRepayAmount The amount of underlying being repaid | |
*/ | |
function repayBorrowVerify( | |
address cToken, | |
address payer, | |
address borrower, | |
uint actualRepayAmount, | |
uint borrowerIndex) override external { | |
// Shh - currently unused | |
cToken; | |
payer; | |
borrower; | |
actualRepayAmount; | |
borrowerIndex; | |
// Shh - we don't ever want this hook to be marked pure | |
if (false) { | |
maxAssets = maxAssets; | |
} | |
} | |
/** | |
* @notice Checks if the liquidation should be allowed to occur | |
* @param cTokenBorrowed Asset which was borrowed by the borrower | |
* @param cTokenCollateral Asset which was used as collateral and will be seized | |
* @param liquidator The address repaying the borrow and seizing the collateral | |
* @param borrower The address of the borrower | |
* @param repayAmount The amount of underlying being repaid | |
*/ | |
function liquidateBorrowAllowed( | |
address cTokenBorrowed, | |
address cTokenCollateral, | |
address liquidator, | |
address borrower, | |
uint repayAmount) override external returns (uint) { | |
// Shh - currently unused | |
liquidator; | |
if (!markets[cTokenBorrowed].isListed || !markets[cTokenCollateral].isListed) { | |
return uint(Error.MARKET_NOT_LISTED); | |
} | |
/* The borrower must have shortfall in order to be liquidatable */ | |
(Error err, , uint shortfall) = getAccountLiquidityInternal(borrower); | |
if (err != Error.NO_ERROR) { | |
return uint(err); | |
} | |
if (shortfall == 0) { | |
return uint(Error.INSUFFICIENT_SHORTFALL); | |
} | |
/* The liquidator may not repay more than what is allowed by the closeFactor */ | |
uint borrowBalance = CToken(cTokenBorrowed).borrowBalanceStored(borrower); | |
uint maxClose = mul_ScalarTruncate(Exp({mantissa: closeFactorMantissa}), borrowBalance); | |
if (repayAmount > maxClose) { | |
return uint(Error.TOO_MUCH_REPAY); | |
} | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Validates liquidateBorrow and reverts on rejection. May emit logs. | |
* @param cTokenBorrowed Asset which was borrowed by the borrower | |
* @param cTokenCollateral Asset which was used as collateral and will be seized | |
* @param liquidator The address repaying the borrow and seizing the collateral | |
* @param borrower The address of the borrower | |
* @param actualRepayAmount The amount of underlying being repaid | |
*/ | |
function liquidateBorrowVerify( | |
address cTokenBorrowed, | |
address cTokenCollateral, | |
address liquidator, | |
address borrower, | |
uint actualRepayAmount, | |
uint seizeTokens) override external { | |
// Shh - currently unused | |
cTokenBorrowed; | |
cTokenCollateral; | |
liquidator; | |
borrower; | |
actualRepayAmount; | |
seizeTokens; | |
// Shh - we don't ever want this hook to be marked pure | |
if (false) { | |
maxAssets = maxAssets; | |
} | |
} | |
/** | |
* @notice Checks if the seizing of assets should be allowed to occur | |
* @param cTokenCollateral Asset which was used as collateral and will be seized | |
* @param cTokenBorrowed Asset which was borrowed by the borrower | |
* @param liquidator The address repaying the borrow and seizing the collateral | |
* @param borrower The address of the borrower | |
* @param seizeTokens The number of collateral tokens to seize | |
*/ | |
function seizeAllowed( | |
address cTokenCollateral, | |
address cTokenBorrowed, | |
address liquidator, | |
address borrower, | |
uint seizeTokens) override external returns (uint) { | |
// Pausing is a very serious situation - we revert to sound the alarms | |
require(!seizeGuardianPaused, "seize is paused"); | |
// Shh - currently unused | |
seizeTokens; | |
if (!markets[cTokenCollateral].isListed || !markets[cTokenBorrowed].isListed) { | |
return uint(Error.MARKET_NOT_LISTED); | |
} | |
if (CToken(cTokenCollateral).comptroller() != CToken(cTokenBorrowed).comptroller()) { | |
return uint(Error.COMPTROLLER_MISMATCH); | |
} | |
// Keep the flywheel moving | |
updateCompSupplyIndex(cTokenCollateral); | |
distributeSupplierComp(cTokenCollateral, borrower); | |
distributeSupplierComp(cTokenCollateral, liquidator); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Validates seize and reverts on rejection. May emit logs. | |
* @param cTokenCollateral Asset which was used as collateral and will be seized | |
* @param cTokenBorrowed Asset which was borrowed by the borrower | |
* @param liquidator The address repaying the borrow and seizing the collateral | |
* @param borrower The address of the borrower | |
* @param seizeTokens The number of collateral tokens to seize | |
*/ | |
function seizeVerify( | |
address cTokenCollateral, | |
address cTokenBorrowed, | |
address liquidator, | |
address borrower, | |
uint seizeTokens) override external { | |
// Shh - currently unused | |
cTokenCollateral; | |
cTokenBorrowed; | |
liquidator; | |
borrower; | |
seizeTokens; | |
// Shh - we don't ever want this hook to be marked pure | |
if (false) { | |
maxAssets = maxAssets; | |
} | |
} | |
/** | |
* @notice Checks if the account should be allowed to transfer tokens in the given market | |
* @param cToken The market to verify the transfer against | |
* @param src The account which sources the tokens | |
* @param dst The account which receives the tokens | |
* @param transferTokens The number of cTokens to transfer | |
* @return 0 if the transfer is allowed, otherwise a semi-opaque error code (See ErrorReporter.sol) | |
*/ | |
function transferAllowed(address cToken, address src, address dst, uint transferTokens) override external returns (uint) { | |
// Pausing is a very serious situation - we revert to sound the alarms | |
require(!transferGuardianPaused, "transfer is paused"); | |
// Currently the only consideration is whether or not | |
// the src is allowed to redeem this many tokens | |
uint allowed = redeemAllowedInternal(cToken, src, transferTokens); | |
if (allowed != uint(Error.NO_ERROR)) { | |
return allowed; | |
} | |
// Keep the flywheel moving | |
updateCompSupplyIndex(cToken); | |
distributeSupplierComp(cToken, src); | |
distributeSupplierComp(cToken, dst); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Validates transfer and reverts on rejection. May emit logs. | |
* @param cToken Asset being transferred | |
* @param src The account which sources the tokens | |
* @param dst The account which receives the tokens | |
* @param transferTokens The number of cTokens to transfer | |
*/ | |
function transferVerify(address cToken, address src, address dst, uint transferTokens) override external { | |
// Shh - currently unused | |
cToken; | |
src; | |
dst; | |
transferTokens; | |
// Shh - we don't ever want this hook to be marked pure | |
if (false) { | |
maxAssets = maxAssets; | |
} | |
} | |
/*** Liquidity/Liquidation Calculations ***/ | |
/** | |
* @dev Local vars for avoiding stack-depth limits in calculating account liquidity. | |
* Note that `cTokenBalance` is the number of cTokens the account owns in the market, | |
* whereas `borrowBalance` is the amount of underlying that the account has borrowed. | |
*/ | |
struct AccountLiquidityLocalVars { | |
uint sumCollateral; | |
uint sumBorrowPlusEffects; | |
uint cTokenBalance; | |
uint borrowBalance; | |
uint exchangeRateMantissa; | |
uint oraclePriceMantissa; | |
Exp collateralFactor; | |
Exp exchangeRate; | |
Exp oraclePrice; | |
Exp tokensToDenom; | |
} | |
/** | |
* @notice Determine the current account liquidity wrt collateral requirements | |
* @return (possible error code (semi-opaque), | |
account liquidity in excess of collateral requirements, | |
* account shortfall below collateral requirements) | |
*/ | |
function getAccountLiquidity(address account) public view returns (uint, uint, uint) { | |
(Error err, uint liquidity, uint shortfall) = getHypotheticalAccountLiquidityInternal(account, CToken(address(0)), 0, 0); | |
return (uint(err), liquidity, shortfall); | |
} | |
/** | |
* @notice Determine the current account liquidity wrt collateral requirements | |
* @return (possible error code, | |
account liquidity in excess of collateral requirements, | |
* account shortfall below collateral requirements) | |
*/ | |
function getAccountLiquidityInternal(address account) internal view returns (Error, uint, uint) { | |
return getHypotheticalAccountLiquidityInternal(account, CToken(address(0)), 0, 0); | |
} | |
/** | |
* @notice Determine what the account liquidity would be if the given amounts were redeemed/borrowed | |
* @param cTokenModify The market to hypothetically redeem/borrow in | |
* @param account The account to determine liquidity for | |
* @param redeemTokens The number of tokens to hypothetically redeem | |
* @param borrowAmount The amount of underlying to hypothetically borrow | |
* @return (possible error code (semi-opaque), | |
hypothetical account liquidity in excess of collateral requirements, | |
* hypothetical account shortfall below collateral requirements) | |
*/ | |
function getHypotheticalAccountLiquidity( | |
address account, | |
address cTokenModify, | |
uint redeemTokens, | |
uint borrowAmount) public view returns (uint, uint, uint) { | |
(Error err, uint liquidity, uint shortfall) = getHypotheticalAccountLiquidityInternal(account, CToken(cTokenModify), redeemTokens, borrowAmount); | |
return (uint(err), liquidity, shortfall); | |
} | |
/** | |
* @notice Determine what the account liquidity would be if the given amounts were redeemed/borrowed | |
* @param cTokenModify The market to hypothetically redeem/borrow in | |
* @param account The account to determine liquidity for | |
* @param redeemTokens The number of tokens to hypothetically redeem | |
* @param borrowAmount The amount of underlying to hypothetically borrow | |
* @dev Note that we calculate the exchangeRateStored for each collateral cToken using stored data, | |
* without calculating accumulated interest. | |
* @return (possible error code, | |
hypothetical account liquidity in excess of collateral requirements, | |
* hypothetical account shortfall below collateral requirements) | |
*/ | |
function getHypotheticalAccountLiquidityInternal( | |
address account, | |
CToken cTokenModify, | |
uint redeemTokens, | |
uint borrowAmount) internal view returns (Error, uint, uint) { | |
AccountLiquidityLocalVars memory vars; // Holds all our calculation results | |
uint oErr; | |
// For each asset the account is in | |
CToken[] memory assets = accountAssets[account]; | |
for (uint i = 0; i < assets.length; i++) { | |
CToken asset = assets[i]; | |
// Read the balances and exchange rate from the cToken | |
(oErr, vars.cTokenBalance, vars.borrowBalance, vars.exchangeRateMantissa) = asset.getAccountSnapshot(account); | |
if (oErr != 0) { // semi-opaque error code, we assume NO_ERROR == 0 is invariant between upgrades | |
return (Error.SNAPSHOT_ERROR, 0, 0); | |
} | |
vars.collateralFactor = Exp({mantissa: markets[address(asset)].collateralFactorMantissa}); | |
vars.exchangeRate = Exp({mantissa: vars.exchangeRateMantissa}); | |
// Get the normalized price of the asset | |
vars.oraclePriceMantissa = oracle.getUnderlyingPrice(asset); | |
if (vars.oraclePriceMantissa == 0) { | |
return (Error.PRICE_ERROR, 0, 0); | |
} | |
vars.oraclePrice = Exp({mantissa: vars.oraclePriceMantissa}); | |
// Pre-compute a conversion factor from tokens -> ether (normalized price value) | |
vars.tokensToDenom = mul_(mul_(vars.collateralFactor, vars.exchangeRate), vars.oraclePrice); | |
// sumCollateral += tokensToDenom * cTokenBalance | |
vars.sumCollateral = mul_ScalarTruncateAddUInt(vars.tokensToDenom, vars.cTokenBalance, vars.sumCollateral); | |
// sumBorrowPlusEffects += oraclePrice * borrowBalance | |
vars.sumBorrowPlusEffects = mul_ScalarTruncateAddUInt(vars.oraclePrice, vars.borrowBalance, vars.sumBorrowPlusEffects); | |
// Calculate effects of interacting with cTokenModify | |
if (asset == cTokenModify) { | |
// redeem effect | |
// sumBorrowPlusEffects += tokensToDenom * redeemTokens | |
vars.sumBorrowPlusEffects = mul_ScalarTruncateAddUInt(vars.tokensToDenom, redeemTokens, vars.sumBorrowPlusEffects); | |
// borrow effect | |
// sumBorrowPlusEffects += oraclePrice * borrowAmount | |
vars.sumBorrowPlusEffects = mul_ScalarTruncateAddUInt(vars.oraclePrice, borrowAmount, vars.sumBorrowPlusEffects); | |
} | |
} | |
// These are safe, as the underflow condition is checked first | |
if (vars.sumCollateral > vars.sumBorrowPlusEffects) { | |
return (Error.NO_ERROR, vars.sumCollateral - vars.sumBorrowPlusEffects, 0); | |
} else { | |
return (Error.NO_ERROR, 0, vars.sumBorrowPlusEffects - vars.sumCollateral); | |
} | |
} | |
/** | |
* @notice Calculate number of tokens of collateral asset to seize given an underlying amount | |
* @dev Used in liquidation (called in cToken.liquidateBorrowFresh) | |
* @param cTokenBorrowed The address of the borrowed cToken | |
* @param cTokenCollateral The address of the collateral cToken | |
* @param actualRepayAmount The amount of cTokenBorrowed underlying to convert into cTokenCollateral tokens | |
* @return (errorCode, number of cTokenCollateral tokens to be seized in a liquidation) | |
*/ | |
function liquidateCalculateSeizeTokens(address cTokenBorrowed, address cTokenCollateral, uint actualRepayAmount) override external view returns (uint, uint) { | |
/* Read oracle prices for borrowed and collateral markets */ | |
uint priceBorrowedMantissa = oracle.getUnderlyingPrice(CToken(cTokenBorrowed)); | |
uint priceCollateralMantissa = oracle.getUnderlyingPrice(CToken(cTokenCollateral)); | |
if (priceBorrowedMantissa == 0 || priceCollateralMantissa == 0) { | |
return (uint(Error.PRICE_ERROR), 0); | |
} | |
/* | |
* Get the exchange rate and calculate the number of collateral tokens to seize: | |
* seizeAmount = actualRepayAmount * liquidationIncentive * priceBorrowed / priceCollateral | |
* seizeTokens = seizeAmount / exchangeRate | |
* = actualRepayAmount * (liquidationIncentive * priceBorrowed) / (priceCollateral * exchangeRate) | |
*/ | |
uint exchangeRateMantissa = CToken(cTokenCollateral).exchangeRateStored(); // Note: reverts on error | |
uint seizeTokens; | |
Exp memory numerator; | |
Exp memory denominator; | |
Exp memory ratio; | |
numerator = mul_(Exp({mantissa: liquidationIncentiveMantissa}), Exp({mantissa: priceBorrowedMantissa})); | |
denominator = mul_(Exp({mantissa: priceCollateralMantissa}), Exp({mantissa: exchangeRateMantissa})); | |
ratio = div_(numerator, denominator); | |
seizeTokens = mul_ScalarTruncate(ratio, actualRepayAmount); | |
return (uint(Error.NO_ERROR), seizeTokens); | |
} | |
/*** Admin Functions ***/ | |
/** | |
* @notice Sets a new price oracle for the comptroller | |
* @dev Admin function to set a new price oracle | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _setPriceOracle(PriceOracle newOracle) public returns (uint) { | |
// Check caller is admin | |
if (msg.sender != admin) { | |
return fail(Error.UNAUTHORIZED, FailureInfo.SET_PRICE_ORACLE_OWNER_CHECK); | |
} | |
// Track the old oracle for the comptroller | |
PriceOracle oldOracle = oracle; | |
// Set comptroller's oracle to newOracle | |
oracle = newOracle; | |
// Emit NewPriceOracle(oldOracle, newOracle) | |
emit NewPriceOracle(oldOracle, newOracle); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Sets the closeFactor used when liquidating borrows | |
* @dev Admin function to set closeFactor | |
* @param newCloseFactorMantissa New close factor, scaled by 1e18 | |
* @return uint 0=success, otherwise a failure | |
*/ | |
function _setCloseFactor(uint newCloseFactorMantissa) external returns (uint) { | |
// Check caller is admin | |
require(msg.sender == admin, "only admin can set close factor"); | |
uint oldCloseFactorMantissa = closeFactorMantissa; | |
closeFactorMantissa = newCloseFactorMantissa; | |
emit NewCloseFactor(oldCloseFactorMantissa, closeFactorMantissa); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Sets the collateralFactor for a market | |
* @dev Admin function to set per-market collateralFactor | |
* @param cToken The market to set the factor on | |
* @param newCollateralFactorMantissa The new collateral factor, scaled by 1e18 | |
* @return uint 0=success, otherwise a failure. (See ErrorReporter for details) | |
*/ | |
function _setCollateralFactor(CToken cToken, uint newCollateralFactorMantissa) external returns (uint) { | |
// Check caller is admin | |
if (msg.sender != admin) { | |
return fail(Error.UNAUTHORIZED, FailureInfo.SET_COLLATERAL_FACTOR_OWNER_CHECK); | |
} | |
// Verify market is listed | |
Market storage market = markets[address(cToken)]; | |
if (!market.isListed) { | |
return fail(Error.MARKET_NOT_LISTED, FailureInfo.SET_COLLATERAL_FACTOR_NO_EXISTS); | |
} | |
Exp memory newCollateralFactorExp = Exp({mantissa: newCollateralFactorMantissa}); | |
// Check collateral factor <= 0.9 | |
Exp memory highLimit = Exp({mantissa: collateralFactorMaxMantissa}); | |
if (lessThanExp(highLimit, newCollateralFactorExp)) { | |
return fail(Error.INVALID_COLLATERAL_FACTOR, FailureInfo.SET_COLLATERAL_FACTOR_VALIDATION); | |
} | |
// If collateral factor != 0, fail if price == 0 | |
if (newCollateralFactorMantissa != 0 && oracle.getUnderlyingPrice(cToken) == 0) { | |
return fail(Error.PRICE_ERROR, FailureInfo.SET_COLLATERAL_FACTOR_WITHOUT_PRICE); | |
} | |
// Set market's collateral factor to new collateral factor, remember old value | |
uint oldCollateralFactorMantissa = market.collateralFactorMantissa; | |
market.collateralFactorMantissa = newCollateralFactorMantissa; | |
// Emit event with asset, old collateral factor, and new collateral factor | |
emit NewCollateralFactor(cToken, oldCollateralFactorMantissa, newCollateralFactorMantissa); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Sets liquidationIncentive | |
* @dev Admin function to set liquidationIncentive | |
* @param newLiquidationIncentiveMantissa New liquidationIncentive scaled by 1e18 | |
* @return uint 0=success, otherwise a failure. (See ErrorReporter for details) | |
*/ | |
function _setLiquidationIncentive(uint newLiquidationIncentiveMantissa) external returns (uint) { | |
// Check caller is admin | |
if (msg.sender != admin) { | |
return fail(Error.UNAUTHORIZED, FailureInfo.SET_LIQUIDATION_INCENTIVE_OWNER_CHECK); | |
} | |
// Save current value for use in log | |
uint oldLiquidationIncentiveMantissa = liquidationIncentiveMantissa; | |
// Set liquidation incentive to new incentive | |
liquidationIncentiveMantissa = newLiquidationIncentiveMantissa; | |
// Emit event with old incentive, new incentive | |
emit NewLiquidationIncentive(oldLiquidationIncentiveMantissa, newLiquidationIncentiveMantissa); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Add the market to the markets mapping and set it as listed | |
* @dev Admin function to set isListed and add support for the market | |
* @param cToken The address of the market (token) to list | |
* @return uint 0=success, otherwise a failure. (See enum Error for details) | |
*/ | |
function _supportMarket(CToken cToken) external returns (uint) { | |
if (msg.sender != admin) { | |
return fail(Error.UNAUTHORIZED, FailureInfo.SUPPORT_MARKET_OWNER_CHECK); | |
} | |
if (markets[address(cToken)].isListed) { | |
return fail(Error.MARKET_ALREADY_LISTED, FailureInfo.SUPPORT_MARKET_EXISTS); | |
} | |
cToken.isCToken(); // Sanity check to make sure its really a CToken | |
// Note that isComped is not in active use anymore | |
Market storage market = markets[address(cToken)]; | |
market.isListed = true; | |
market.isComped = false; | |
market.collateralFactorMantissa = 0; | |
_addMarketInternal(address(cToken)); | |
emit MarketListed(cToken); | |
return uint(Error.NO_ERROR); | |
} | |
function _addMarketInternal(address cToken) internal { | |
for (uint i = 0; i < allMarkets.length; i ++) { | |
require(allMarkets[i] != CToken(cToken), "market already added"); | |
} | |
allMarkets.push(CToken(cToken)); | |
} | |
/** | |
* @notice Set the given borrow caps for the given cToken markets. Borrowing that brings total borrows to or above borrow cap will revert. | |
* @dev Admin or borrowCapGuardian function to set the borrow caps. A borrow cap of 0 corresponds to unlimited borrowing. | |
* @param cTokens The addresses of the markets (tokens) to change the borrow caps for | |
* @param newBorrowCaps The new borrow cap values in underlying to be set. A value of 0 corresponds to unlimited borrowing. | |
*/ | |
function _setMarketBorrowCaps(CToken[] calldata cTokens, uint[] calldata newBorrowCaps) external { | |
require(msg.sender == admin || msg.sender == borrowCapGuardian, "only admin or borrow cap guardian can set borrow caps"); | |
uint numMarkets = cTokens.length; | |
uint numBorrowCaps = newBorrowCaps.length; | |
require(numMarkets != 0 && numMarkets == numBorrowCaps, "invalid input"); | |
for(uint i = 0; i < numMarkets; i++) { | |
borrowCaps[address(cTokens[i])] = newBorrowCaps[i]; | |
emit NewBorrowCap(cTokens[i], newBorrowCaps[i]); | |
} | |
} | |
/** | |
* @notice Admin function to change the Borrow Cap Guardian | |
* @param newBorrowCapGuardian The address of the new Borrow Cap Guardian | |
*/ | |
function _setBorrowCapGuardian(address newBorrowCapGuardian) external { | |
require(msg.sender == admin, "only admin can set borrow cap guardian"); | |
// Save current value for inclusion in log | |
address oldBorrowCapGuardian = borrowCapGuardian; | |
// Store borrowCapGuardian with value newBorrowCapGuardian | |
borrowCapGuardian = newBorrowCapGuardian; | |
// Emit NewBorrowCapGuardian(OldBorrowCapGuardian, NewBorrowCapGuardian) | |
emit NewBorrowCapGuardian(oldBorrowCapGuardian, newBorrowCapGuardian); | |
} | |
/** | |
* @notice Admin function to change the Pause Guardian | |
* @param newPauseGuardian The address of the new Pause Guardian | |
* @return uint 0=success, otherwise a failure. (See enum Error for details) | |
*/ | |
function _setPauseGuardian(address newPauseGuardian) public returns (uint) { | |
if (msg.sender != admin) { | |
return fail(Error.UNAUTHORIZED, FailureInfo.SET_PAUSE_GUARDIAN_OWNER_CHECK); | |
} | |
// Save current value for inclusion in log | |
address oldPauseGuardian = pauseGuardian; | |
// Store pauseGuardian with value newPauseGuardian | |
pauseGuardian = newPauseGuardian; | |
// Emit NewPauseGuardian(OldPauseGuardian, NewPauseGuardian) | |
emit NewPauseGuardian(oldPauseGuardian, pauseGuardian); | |
return uint(Error.NO_ERROR); | |
} | |
function _setMintPaused(CToken cToken, bool state) public returns (bool) { | |
require(markets[address(cToken)].isListed, "cannot pause a market that is not listed"); | |
require(msg.sender == pauseGuardian || msg.sender == admin, "only pause guardian and admin can pause"); | |
require(msg.sender == admin || state == true, "only admin can unpause"); | |
mintGuardianPaused[address(cToken)] = state; | |
emit ActionPaused(cToken, "Mint", state); | |
return state; | |
} | |
function _setBorrowPaused(CToken cToken, bool state) public returns (bool) { | |
require(markets[address(cToken)].isListed, "cannot pause a market that is not listed"); | |
require(msg.sender == pauseGuardian || msg.sender == admin, "only pause guardian and admin can pause"); | |
require(msg.sender == admin || state == true, "only admin can unpause"); | |
borrowGuardianPaused[address(cToken)] = state; | |
emit ActionPaused(cToken, "Borrow", state); | |
return state; | |
} | |
function _setTransferPaused(bool state) public returns (bool) { | |
require(msg.sender == pauseGuardian || msg.sender == admin, "only pause guardian and admin can pause"); | |
require(msg.sender == admin || state == true, "only admin can unpause"); | |
transferGuardianPaused = state; | |
emit ActionPaused("Transfer", state); | |
return state; | |
} | |
function _setSeizePaused(bool state) public returns (bool) { | |
require(msg.sender == pauseGuardian || msg.sender == admin, "only pause guardian and admin can pause"); | |
require(msg.sender == admin || state == true, "only admin can unpause"); | |
seizeGuardianPaused = state; | |
emit ActionPaused("Seize", state); | |
return state; | |
} | |
function _become(Unitroller unitroller) public { | |
require(msg.sender == unitroller.admin(), "only unitroller admin can change brains"); | |
require(unitroller._acceptImplementation() == 0, "change not authorized"); | |
} | |
/** | |
* @notice Checks caller is admin, or this contract is becoming the new implementation | |
*/ | |
function adminOrInitializing() internal view returns (bool) { | |
return msg.sender == admin || msg.sender == comptrollerImplementation; | |
} | |
/*** Comp Distribution ***/ | |
/** | |
* @notice Set COMP speed for a single market | |
* @param cToken The market whose COMP speed to update | |
* @param compSpeed New COMP speed for market | |
*/ | |
function setCompSpeedInternal(CToken cToken, uint compSpeed) internal { | |
uint currentCompSpeed = compSpeeds[address(cToken)]; | |
if (currentCompSpeed != 0) { | |
// note that COMP speed could be set to 0 to halt liquidity rewards for a market | |
Exp memory borrowIndex = Exp({mantissa: cToken.borrowIndex()}); | |
updateCompSupplyIndex(address(cToken)); | |
updateCompBorrowIndex(address(cToken), borrowIndex); | |
} else if (compSpeed != 0) { | |
// Add the COMP market | |
Market storage market = markets[address(cToken)]; | |
require(market.isListed == true, "comp market is not listed"); | |
if (compSupplyState[address(cToken)].index == 0 && compSupplyState[address(cToken)].block == 0) { | |
compSupplyState[address(cToken)] = CompMarketState({ | |
index: compInitialIndex, | |
block: safe32(getBlockNumber(), "block number exceeds 32 bits") | |
}); | |
} | |
if (compBorrowState[address(cToken)].index == 0 && compBorrowState[address(cToken)].block == 0) { | |
compBorrowState[address(cToken)] = CompMarketState({ | |
index: compInitialIndex, | |
block: safe32(getBlockNumber(), "block number exceeds 32 bits") | |
}); | |
} | |
} | |
if (currentCompSpeed != compSpeed) { | |
compSpeeds[address(cToken)] = compSpeed; | |
emit CompSpeedUpdated(cToken, compSpeed); | |
} | |
} | |
/** | |
* @notice Accrue COMP to the market by updating the supply index | |
* @param cToken The market whose supply index to update | |
*/ | |
function updateCompSupplyIndex(address cToken) internal { | |
CompMarketState storage supplyState = compSupplyState[cToken]; | |
uint supplySpeed = compSpeeds[cToken]; | |
uint blockNumber = getBlockNumber(); | |
uint deltaBlocks = sub_(blockNumber, uint(supplyState.block)); | |
if (deltaBlocks > 0 && supplySpeed > 0) { | |
uint supplyTokens = CToken(cToken).totalSupply(); | |
uint compAccrued = mul_(deltaBlocks, supplySpeed); | |
Double memory ratio = supplyTokens > 0 ? fraction(compAccrued, supplyTokens) : Double({mantissa: 0}); | |
Double memory index = add_(Double({mantissa: supplyState.index}), ratio); | |
compSupplyState[cToken] = CompMarketState({ | |
index: safe224(index.mantissa, "new index exceeds 224 bits"), | |
block: safe32(blockNumber, "block number exceeds 32 bits") | |
}); | |
} else if (deltaBlocks > 0) { | |
supplyState.block = safe32(blockNumber, "block number exceeds 32 bits"); | |
} | |
} | |
/** | |
* @notice Accrue COMP to the market by updating the borrow index | |
* @param cToken The market whose borrow index to update | |
*/ | |
function updateCompBorrowIndex(address cToken, Exp memory marketBorrowIndex) internal { | |
CompMarketState storage borrowState = compBorrowState[cToken]; | |
uint borrowSpeed = compSpeeds[cToken]; | |
uint blockNumber = getBlockNumber(); | |
uint deltaBlocks = sub_(blockNumber, uint(borrowState.block)); | |
if (deltaBlocks > 0 && borrowSpeed > 0) { | |
uint borrowAmount = div_(CToken(cToken).totalBorrows(), marketBorrowIndex); | |
uint compAccrued = mul_(deltaBlocks, borrowSpeed); | |
Double memory ratio = borrowAmount > 0 ? fraction(compAccrued, borrowAmount) : Double({mantissa: 0}); | |
Double memory index = add_(Double({mantissa: borrowState.index}), ratio); | |
compBorrowState[cToken] = CompMarketState({ | |
index: safe224(index.mantissa, "new index exceeds 224 bits"), | |
block: safe32(blockNumber, "block number exceeds 32 bits") | |
}); | |
} else if (deltaBlocks > 0) { | |
borrowState.block = safe32(blockNumber, "block number exceeds 32 bits"); | |
} | |
} | |
/** | |
* @notice Calculate COMP accrued by a supplier and possibly transfer it to them | |
* @param cToken The market in which the supplier is interacting | |
* @param supplier The address of the supplier to distribute COMP to | |
*/ | |
function distributeSupplierComp(address cToken, address supplier) internal { | |
CompMarketState storage supplyState = compSupplyState[cToken]; | |
Double memory supplyIndex = Double({mantissa: supplyState.index}); | |
Double memory supplierIndex = Double({mantissa: compSupplierIndex[cToken][supplier]}); | |
compSupplierIndex[cToken][supplier] = supplyIndex.mantissa; | |
if (supplierIndex.mantissa == 0 && supplyIndex.mantissa > 0) { | |
supplierIndex.mantissa = compInitialIndex; | |
} | |
Double memory deltaIndex = sub_(supplyIndex, supplierIndex); | |
uint supplierTokens = CToken(cToken).balanceOf(supplier); | |
uint supplierDelta = mul_(supplierTokens, deltaIndex); | |
uint supplierAccrued = add_(compAccrued[supplier], supplierDelta); | |
compAccrued[supplier] = supplierAccrued; | |
emit DistributedSupplierComp(CToken(cToken), supplier, supplierDelta, supplyIndex.mantissa); | |
} | |
/** | |
* @notice Calculate COMP accrued by a borrower and possibly transfer it to them | |
* @dev Borrowers will not begin to accrue until after the first interaction with the protocol. | |
* @param cToken The market in which the borrower is interacting | |
* @param borrower The address of the borrower to distribute COMP to | |
*/ | |
function distributeBorrowerComp(address cToken, address borrower, Exp memory marketBorrowIndex) internal { | |
CompMarketState storage borrowState = compBorrowState[cToken]; | |
Double memory borrowIndex = Double({mantissa: borrowState.index}); | |
Double memory borrowerIndex = Double({mantissa: compBorrowerIndex[cToken][borrower]}); | |
compBorrowerIndex[cToken][borrower] = borrowIndex.mantissa; | |
if (borrowerIndex.mantissa > 0) { | |
Double memory deltaIndex = sub_(borrowIndex, borrowerIndex); | |
uint borrowerAmount = div_(CToken(cToken).borrowBalanceStored(borrower), marketBorrowIndex); | |
uint borrowerDelta = mul_(borrowerAmount, deltaIndex); | |
uint borrowerAccrued = add_(compAccrued[borrower], borrowerDelta); | |
compAccrued[borrower] = borrowerAccrued; | |
emit DistributedBorrowerComp(CToken(cToken), borrower, borrowerDelta, borrowIndex.mantissa); | |
} | |
} | |
/** | |
* @notice Calculate additional accrued COMP for a contributor since last accrual | |
* @param contributor The address to calculate contributor rewards for | |
*/ | |
function updateContributorRewards(address contributor) public { | |
uint compSpeed = compContributorSpeeds[contributor]; | |
uint blockNumber = getBlockNumber(); | |
uint deltaBlocks = sub_(blockNumber, lastContributorBlock[contributor]); | |
if (deltaBlocks > 0 && compSpeed > 0) { | |
uint newAccrued = mul_(deltaBlocks, compSpeed); | |
uint contributorAccrued = add_(compAccrued[contributor], newAccrued); | |
compAccrued[contributor] = contributorAccrued; | |
lastContributorBlock[contributor] = blockNumber; | |
} | |
} | |
/** | |
* @notice Claim all the comp accrued by holder in all markets | |
* @param holder The address to claim COMP for | |
*/ | |
function claimComp(address holder) public { | |
return claimComp(holder, allMarkets); | |
} | |
/** | |
* @notice Claim all the comp accrued by holder in the specified markets | |
* @param holder The address to claim COMP for | |
* @param cTokens The list of markets to claim COMP in | |
*/ | |
function claimComp(address holder, CToken[] memory cTokens) public { | |
address[] memory holders = new address[](1); | |
holders[0] = holder; | |
claimComp(holders, cTokens, true, true); | |
} | |
/** | |
* @notice Claim all comp accrued by the holders | |
* @param holders The addresses to claim COMP for | |
* @param cTokens The list of markets to claim COMP in | |
* @param borrowers Whether or not to claim COMP earned by borrowing | |
* @param suppliers Whether or not to claim COMP earned by supplying | |
*/ | |
function claimComp(address[] memory holders, CToken[] memory cTokens, bool borrowers, bool suppliers) public { | |
for (uint i = 0; i < cTokens.length; i++) { | |
CToken cToken = cTokens[i]; | |
require(markets[address(cToken)].isListed, "market must be listed"); | |
if (borrowers == true) { | |
Exp memory borrowIndex = Exp({mantissa: cToken.borrowIndex()}); | |
updateCompBorrowIndex(address(cToken), borrowIndex); | |
for (uint j = 0; j < holders.length; j++) { | |
distributeBorrowerComp(address(cToken), holders[j], borrowIndex); | |
compAccrued[holders[j]] = grantCompInternal(holders[j], compAccrued[holders[j]]); | |
} | |
} | |
if (suppliers == true) { | |
updateCompSupplyIndex(address(cToken)); | |
for (uint j = 0; j < holders.length; j++) { | |
distributeSupplierComp(address(cToken), holders[j]); | |
compAccrued[holders[j]] = grantCompInternal(holders[j], compAccrued[holders[j]]); | |
} | |
} | |
} | |
} | |
/** | |
* @notice Transfer COMP to the user | |
* @dev Note: If there is not enough COMP, we do not perform the transfer all. | |
* @param user The address of the user to transfer COMP to | |
* @param amount The amount of COMP to (possibly) transfer | |
* @return The amount of COMP which was NOT transferred to the user | |
*/ | |
function grantCompInternal(address user, uint amount) internal returns (uint) { | |
Comp comp = Comp(getCompAddress()); | |
uint compRemaining = comp.balanceOf(address(this)); | |
if (amount > 0 && amount <= compRemaining) { | |
comp.transfer(user, amount); | |
return 0; | |
} | |
return amount; | |
} | |
/*** Comp Distribution Admin ***/ | |
/** | |
* @notice Transfer COMP to the recipient | |
* @dev Note: If there is not enough COMP, we do not perform the transfer all. | |
* @param recipient The address of the recipient to transfer COMP to | |
* @param amount The amount of COMP to (possibly) transfer | |
*/ | |
function _grantComp(address recipient, uint amount) public { | |
require(adminOrInitializing(), "only admin can grant comp"); | |
uint amountLeft = grantCompInternal(recipient, amount); | |
require(amountLeft == 0, "insufficient comp for grant"); | |
emit CompGranted(recipient, amount); | |
} | |
/** | |
* @notice Set COMP speed for a single market | |
* @param cToken The market whose COMP speed to update | |
* @param compSpeed New COMP speed for market | |
*/ | |
function _setCompSpeed(CToken cToken, uint compSpeed) public { | |
require(adminOrInitializing(), "only admin can set comp speed"); | |
setCompSpeedInternal(cToken, compSpeed); | |
} | |
/** | |
* @notice Set COMP speed for a single contributor | |
* @param contributor The contributor whose COMP speed to update | |
* @param compSpeed New COMP speed for contributor | |
*/ | |
function _setContributorCompSpeed(address contributor, uint compSpeed) public { | |
require(adminOrInitializing(), "only admin can set comp speed"); | |
// note that COMP speed could be set to 0 to halt liquidity rewards for a contributor | |
updateContributorRewards(contributor); | |
if (compSpeed == 0) { | |
// release storage | |
delete lastContributorBlock[contributor]; | |
} else { | |
lastContributorBlock[contributor] = getBlockNumber(); | |
} | |
compContributorSpeeds[contributor] = compSpeed; | |
emit ContributorCompSpeedUpdated(contributor, compSpeed); | |
} | |
/** | |
* @notice Return all of the markets | |
* @dev The automatic getter may be used to access an individual market. | |
* @return The list of market addresses | |
*/ | |
function getAllMarkets() public view returns (CToken[] memory) { | |
return allMarkets; | |
} | |
function getBlockNumber() public view returns (uint) { | |
return block.number; | |
} | |
/** | |
* @notice Return the address of the COMP token | |
* @return The address of COMP | |
*/ | |
function getCompAddress() public view returns (address) { | |
return 0xc00e94Cb662C3520282E6f5717214004A7f26888; | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
abstract contract ComptrollerInterface { | |
/// @notice Indicator that this is a Comptroller contract (for inspection) | |
bool public constant isComptroller = true; | |
/*** Assets You Are In ***/ | |
function enterMarkets(address[] calldata cTokens) virtual external returns (uint[] memory); | |
function exitMarket(address cToken) virtual external returns (uint); | |
/*** Policy Hooks ***/ | |
function mintAllowed(address cToken, address minter, uint mintAmount) virtual external returns (uint); | |
function mintVerify(address cToken, address minter, uint mintAmount, uint mintTokens) virtual external; | |
function redeemAllowed(address cToken, address redeemer, uint redeemTokens) virtual external returns (uint); | |
function redeemVerify(address cToken, address redeemer, uint redeemAmount, uint redeemTokens) virtual external; | |
function borrowAllowed(address cToken, address borrower, uint borrowAmount) virtual external returns (uint); | |
function borrowVerify(address cToken, address borrower, uint borrowAmount) virtual external; | |
function repayBorrowAllowed( | |
address cToken, | |
address payer, | |
address borrower, | |
uint repayAmount) virtual external returns (uint); | |
function repayBorrowVerify( | |
address cToken, | |
address payer, | |
address borrower, | |
uint repayAmount, | |
uint borrowerIndex) virtual external; | |
function liquidateBorrowAllowed( | |
address cTokenBorrowed, | |
address cTokenCollateral, | |
address liquidator, | |
address borrower, | |
uint repayAmount) virtual external returns (uint); | |
function liquidateBorrowVerify( | |
address cTokenBorrowed, | |
address cTokenCollateral, | |
address liquidator, | |
address borrower, | |
uint repayAmount, | |
uint seizeTokens) virtual external; | |
function seizeAllowed( | |
address cTokenCollateral, | |
address cTokenBorrowed, | |
address liquidator, | |
address borrower, | |
uint seizeTokens) virtual external returns (uint); | |
function seizeVerify( | |
address cTokenCollateral, | |
address cTokenBorrowed, | |
address liquidator, | |
address borrower, | |
uint seizeTokens) virtual external; | |
function transferAllowed(address cToken, address src, address dst, uint transferTokens) virtual external returns (uint); | |
function transferVerify(address cToken, address src, address dst, uint transferTokens) virtual external; | |
/*** Liquidity/Liquidation Calculations ***/ | |
function liquidateCalculateSeizeTokens( | |
address cTokenBorrowed, | |
address cTokenCollateral, | |
uint repayAmount) virtual external view returns (uint, uint); | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./CToken.sol"; | |
import "./PriceOracle.sol"; | |
contract UnitrollerAdminStorage { | |
/** | |
* @notice Administrator for this contract | |
*/ | |
address public admin; | |
/** | |
* @notice Pending administrator for this contract | |
*/ | |
address public pendingAdmin; | |
/** | |
* @notice Active brains of Unitroller | |
*/ | |
address public comptrollerImplementation; | |
/** | |
* @notice Pending brains of Unitroller | |
*/ | |
address public pendingComptrollerImplementation; | |
} | |
contract ComptrollerV1Storage is UnitrollerAdminStorage { | |
/** | |
* @notice Oracle which gives the price of any given asset | |
*/ | |
PriceOracle public oracle; | |
/** | |
* @notice Multiplier used to calculate the maximum repayAmount when liquidating a borrow | |
*/ | |
uint public closeFactorMantissa; | |
/** | |
* @notice Multiplier representing the discount on collateral that a liquidator receives | |
*/ | |
uint public liquidationIncentiveMantissa; | |
/** | |
* @notice Max number of assets a single account can participate in (borrow or use as collateral) | |
*/ | |
uint public maxAssets; | |
/** | |
* @notice Per-account mapping of "assets you are in", capped by maxAssets | |
*/ | |
mapping(address => CToken[]) public accountAssets; | |
} | |
contract ComptrollerV2Storage is ComptrollerV1Storage { | |
struct Market { | |
// Whether or not this market is listed | |
bool isListed; | |
// Multiplier representing the most one can borrow against their collateral in this market. | |
// For instance, 0.9 to allow borrowing 90% of collateral value. | |
// Must be between 0 and 1, and stored as a mantissa. | |
uint collateralFactorMantissa; | |
// Per-market mapping of "accounts in this asset" | |
mapping(address => bool) accountMembership; | |
// Whether or not this market receives COMP | |
bool isComped; | |
} | |
/** | |
* @notice Official mapping of cTokens -> Market metadata | |
* @dev Used e.g. to determine if a market is supported | |
*/ | |
mapping(address => Market) public markets; | |
/** | |
* @notice The Pause Guardian can pause certain actions as a safety mechanism. | |
* Actions which allow users to remove their own assets cannot be paused. | |
* Liquidation / seizing / transfer can only be paused globally, not by market. | |
*/ | |
address public pauseGuardian; | |
bool public _mintGuardianPaused; | |
bool public _borrowGuardianPaused; | |
bool public transferGuardianPaused; | |
bool public seizeGuardianPaused; | |
mapping(address => bool) public mintGuardianPaused; | |
mapping(address => bool) public borrowGuardianPaused; | |
} | |
contract ComptrollerV3Storage is ComptrollerV2Storage { | |
struct CompMarketState { | |
// The market's last updated compBorrowIndex or compSupplyIndex | |
uint224 index; | |
// The block number the index was last updated at | |
uint32 block; | |
} | |
/// @notice A list of all markets | |
CToken[] public allMarkets; | |
/// @notice The rate at which the flywheel distributes COMP, per block | |
uint public compRate; | |
/// @notice The portion of compRate that each market currently receives | |
mapping(address => uint) public compSpeeds; | |
/// @notice The COMP market supply state for each market | |
mapping(address => CompMarketState) public compSupplyState; | |
/// @notice The COMP market borrow state for each market | |
mapping(address => CompMarketState) public compBorrowState; | |
/// @notice The COMP borrow index for each market for each supplier as of the last time they accrued COMP | |
mapping(address => mapping(address => uint)) public compSupplierIndex; | |
/// @notice The COMP borrow index for each market for each borrower as of the last time they accrued COMP | |
mapping(address => mapping(address => uint)) public compBorrowerIndex; | |
/// @notice The COMP accrued but not yet transferred to each user | |
mapping(address => uint) public compAccrued; | |
} | |
contract ComptrollerV4Storage is ComptrollerV3Storage { | |
// @notice The borrowCapGuardian can set borrowCaps to any number for any market. Lowering the borrow cap could disable borrowing on the given market. | |
address public borrowCapGuardian; | |
// @notice Borrow caps enforced by borrowAllowed for each cToken address. Defaults to zero which corresponds to unlimited borrowing. | |
mapping(address => uint) public borrowCaps; | |
} | |
contract ComptrollerV5Storage is ComptrollerV4Storage { | |
/// @notice The portion of COMP that each contributor receives per block | |
mapping(address => uint) public compContributorSpeeds; | |
/// @notice Last block at which a contributor's COMP rewards have been allocated | |
mapping(address => uint) public lastContributorBlock; | |
} | |
contract ComptrollerV6Storage is ComptrollerV5Storage { | |
/// @notice The rate at which comp is distributed to the corresponding borrow market (per block) | |
mapping(address => uint) public compBorrowSpeeds; | |
/// @notice The rate at which comp is distributed to the corresponding supply market (per block) | |
mapping(address => uint) public compSupplySpeeds; | |
} | |
contract ComptrollerV7Storage is ComptrollerV6Storage { | |
/// @notice Flag indicating whether the function to fix COMP accruals has been executed (RE: proposal 62 bug) | |
bool public proposal65FixExecuted; | |
/// @notice Accounting storage mapping account addresses to how much COMP they owe the protocol. | |
mapping(address => uint) public compReceivable; | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./ComptrollerInterface.sol"; | |
import "./CTokenInterfaces.sol"; | |
import "./ErrorReporter.sol"; | |
import "./EIP20Interface.sol"; | |
import "./InterestRateModel.sol"; | |
import "./ExponentialNoError.sol"; | |
/** | |
* @title Compound's CToken Contract | |
* @notice Abstract base for CTokens | |
* @author Compound | |
*/ | |
abstract contract CToken is CTokenInterface, ExponentialNoError, TokenErrorReporter { | |
/** | |
* @notice Initialize the money market | |
* @param comptroller_ The address of the Comptroller | |
* @param interestRateModel_ The address of the interest rate model | |
* @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18 | |
* @param name_ EIP-20 name of this token | |
* @param symbol_ EIP-20 symbol of this token | |
* @param decimals_ EIP-20 decimal precision of this token | |
*/ | |
function initialize(ComptrollerInterface comptroller_, | |
InterestRateModel interestRateModel_, | |
uint initialExchangeRateMantissa_, | |
string memory name_, | |
string memory symbol_, | |
uint8 decimals_) public { | |
require(msg.sender == admin, "only admin may initialize the market"); | |
require(accrualBlockNumber == 0 && borrowIndex == 0, "market may only be initialized once"); | |
// Set initial exchange rate | |
initialExchangeRateMantissa = initialExchangeRateMantissa_; | |
require(initialExchangeRateMantissa > 0, "initial exchange rate must be greater than zero."); | |
// Set the comptroller | |
uint err = _setComptroller(comptroller_); | |
require(err == NO_ERROR, "setting comptroller failed"); | |
// Initialize block number and borrow index (block number mocks depend on comptroller being set) | |
accrualBlockNumber = getBlockNumber(); | |
borrowIndex = mantissaOne; | |
// Set the interest rate model (depends on block number / borrow index) | |
err = _setInterestRateModelFresh(interestRateModel_); | |
require(err == NO_ERROR, "setting interest rate model failed"); | |
name = name_; | |
symbol = symbol_; | |
decimals = decimals_; | |
// The counter starts true to prevent changing it from zero to non-zero (i.e. smaller cost/refund) | |
_notEntered = true; | |
} | |
/** | |
* @notice Transfer `tokens` tokens from `src` to `dst` by `spender` | |
* @dev Called by both `transfer` and `transferFrom` internally | |
* @param spender The address of the account performing the transfer | |
* @param src The address of the source account | |
* @param dst The address of the destination account | |
* @param tokens The number of tokens to transfer | |
* @return 0 if the transfer succeeded, else revert | |
*/ | |
function transferTokens(address spender, address src, address dst, uint tokens) internal returns (uint) { | |
/* Fail if transfer not allowed */ | |
uint allowed = comptroller.transferAllowed(address(this), src, dst, tokens); | |
if (allowed != 0) { | |
revert TransferComptrollerRejection(allowed); | |
} | |
/* Do not allow self-transfers */ | |
if (src == dst) { | |
revert TransferNotAllowed(); | |
} | |
/* Get the allowance, infinite for the account owner */ | |
uint startingAllowance = 0; | |
if (spender == src) { | |
startingAllowance = type(uint).max; | |
} else { | |
startingAllowance = transferAllowances[src][spender]; | |
} | |
/* Do the calculations, checking for {under,over}flow */ | |
uint allowanceNew = startingAllowance - tokens; | |
uint srcTokensNew = accountTokens[src] - tokens; | |
uint dstTokensNew = accountTokens[dst] + tokens; | |
///////////////////////// | |
// EFFECTS & INTERACTIONS | |
// (No safe failures beyond this point) | |
accountTokens[src] = srcTokensNew; | |
accountTokens[dst] = dstTokensNew; | |
/* Eat some of the allowance (if necessary) */ | |
if (startingAllowance != type(uint).max) { | |
transferAllowances[src][spender] = allowanceNew; | |
} | |
/* We emit a Transfer event */ | |
emit Transfer(src, dst, tokens); | |
// unused function | |
// comptroller.transferVerify(address(this), src, dst, tokens); | |
return NO_ERROR; | |
} | |
/** | |
* @notice Transfer `amount` tokens from `msg.sender` to `dst` | |
* @param dst The address of the destination account | |
* @param amount The number of tokens to transfer | |
* @return Whether or not the transfer succeeded | |
*/ | |
function transfer(address dst, uint256 amount) override external nonReentrant returns (bool) { | |
return transferTokens(msg.sender, msg.sender, dst, amount) == NO_ERROR; | |
} | |
/** | |
* @notice Transfer `amount` tokens from `src` to `dst` | |
* @param src The address of the source account | |
* @param dst The address of the destination account | |
* @param amount The number of tokens to transfer | |
* @return Whether or not the transfer succeeded | |
*/ | |
function transferFrom(address src, address dst, uint256 amount) override external nonReentrant returns (bool) { | |
return transferTokens(msg.sender, src, dst, amount) == NO_ERROR; | |
} | |
/** | |
* @notice Approve `spender` to transfer up to `amount` from `src` | |
* @dev This will overwrite the approval amount for `spender` | |
* and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) | |
* @param spender The address of the account which may transfer tokens | |
* @param amount The number of tokens that are approved (uint256.max means infinite) | |
* @return Whether or not the approval succeeded | |
*/ | |
function approve(address spender, uint256 amount) override external returns (bool) { | |
address src = msg.sender; | |
transferAllowances[src][spender] = amount; | |
emit Approval(src, spender, amount); | |
return true; | |
} | |
/** | |
* @notice Get the current allowance from `owner` for `spender` | |
* @param owner The address of the account which owns the tokens to be spent | |
* @param spender The address of the account which may transfer tokens | |
* @return The number of tokens allowed to be spent (-1 means infinite) | |
*/ | |
function allowance(address owner, address spender) override external view returns (uint256) { | |
return transferAllowances[owner][spender]; | |
} | |
/** | |
* @notice Get the token balance of the `owner` | |
* @param owner The address of the account to query | |
* @return The number of tokens owned by `owner` | |
*/ | |
function balanceOf(address owner) override external view returns (uint256) { | |
return accountTokens[owner]; | |
} | |
/** | |
* @notice Get the underlying balance of the `owner` | |
* @dev This also accrues interest in a transaction | |
* @param owner The address of the account to query | |
* @return The amount of underlying owned by `owner` | |
*/ | |
function balanceOfUnderlying(address owner) override external returns (uint) { | |
Exp memory exchangeRate = Exp({mantissa: exchangeRateCurrent()}); | |
return mul_ScalarTruncate(exchangeRate, accountTokens[owner]); | |
} | |
/** | |
* @notice Get a snapshot of the account's balances, and the cached exchange rate | |
* @dev This is used by comptroller to more efficiently perform liquidity checks. | |
* @param account Address of the account to snapshot | |
* @return (possible error, token balance, borrow balance, exchange rate mantissa) | |
*/ | |
function getAccountSnapshot(address account) override external view returns (uint, uint, uint, uint) { | |
return ( | |
NO_ERROR, | |
accountTokens[account], | |
borrowBalanceStoredInternal(account), | |
exchangeRateStoredInternal() | |
); | |
} | |
/** | |
* @dev Function to simply retrieve block number | |
* This exists mainly for inheriting test contracts to stub this result. | |
*/ | |
function getBlockNumber() virtual internal view returns (uint) { | |
return block.number; | |
} | |
/** | |
* @notice Returns the current per-block borrow interest rate for this cToken | |
* @return The borrow interest rate per block, scaled by 1e18 | |
*/ | |
function borrowRatePerBlock() override external view returns (uint) { | |
return interestRateModel.getBorrowRate(getCashPrior(), totalBorrows, totalReserves); | |
} | |
/** | |
* @notice Returns the current per-block supply interest rate for this cToken | |
* @return The supply interest rate per block, scaled by 1e18 | |
*/ | |
function supplyRatePerBlock() override external view returns (uint) { | |
return interestRateModel.getSupplyRate(getCashPrior(), totalBorrows, totalReserves, reserveFactorMantissa); | |
} | |
/** | |
* @notice Returns the current total borrows plus accrued interest | |
* @return The total borrows with interest | |
*/ | |
function totalBorrowsCurrent() override external nonReentrant returns (uint) { | |
accrueInterest(); | |
return totalBorrows; | |
} | |
/** | |
* @notice Accrue interest to updated borrowIndex and then calculate account's borrow balance using the updated borrowIndex | |
* @param account The address whose balance should be calculated after updating borrowIndex | |
* @return The calculated balance | |
*/ | |
function borrowBalanceCurrent(address account) override external nonReentrant returns (uint) { | |
accrueInterest(); | |
return borrowBalanceStored(account); | |
} | |
/** | |
* @notice Return the borrow balance of account based on stored data | |
* @param account The address whose balance should be calculated | |
* @return The calculated balance | |
*/ | |
function borrowBalanceStored(address account) override public view returns (uint) { | |
return borrowBalanceStoredInternal(account); | |
} | |
/** | |
* @notice Return the borrow balance of account based on stored data | |
* @param account The address whose balance should be calculated | |
* @return (error code, the calculated balance or 0 if error code is non-zero) | |
*/ | |
function borrowBalanceStoredInternal(address account) internal view returns (uint) { | |
/* Get borrowBalance and borrowIndex */ | |
BorrowSnapshot storage borrowSnapshot = accountBorrows[account]; | |
/* If borrowBalance = 0 then borrowIndex is likely also 0. | |
* Rather than failing the calculation with a division by 0, we immediately return 0 in this case. | |
*/ | |
if (borrowSnapshot.principal == 0) { | |
return 0; | |
} | |
/* Calculate new borrow balance using the interest index: | |
* recentBorrowBalance = borrower.borrowBalance * market.borrowIndex / borrower.borrowIndex | |
*/ | |
uint principalTimesIndex = borrowSnapshot.principal * borrowIndex; | |
return principalTimesIndex / borrowSnapshot.interestIndex; | |
} | |
/** | |
* @notice Accrue interest then return the up-to-date exchange rate | |
* @return Calculated exchange rate scaled by 1e18 | |
*/ | |
function exchangeRateCurrent() override public nonReentrant returns (uint) { | |
accrueInterest(); | |
return exchangeRateStored(); | |
} | |
/** | |
* @notice Calculates the exchange rate from the underlying to the CToken | |
* @dev This function does not accrue interest before calculating the exchange rate | |
* @return Calculated exchange rate scaled by 1e18 | |
*/ | |
function exchangeRateStored() override public view returns (uint) { | |
return exchangeRateStoredInternal(); | |
} | |
/** | |
* @notice Calculates the exchange rate from the underlying to the CToken | |
* @dev This function does not accrue interest before calculating the exchange rate | |
* @return calculated exchange rate scaled by 1e18 | |
*/ | |
function exchangeRateStoredInternal() virtual internal view returns (uint) { | |
uint _totalSupply = totalSupply; | |
if (_totalSupply == 0) { | |
/* | |
* If there are no tokens minted: | |
* exchangeRate = initialExchangeRate | |
*/ | |
return initialExchangeRateMantissa; | |
} else { | |
/* | |
* Otherwise: | |
* exchangeRate = (totalCash + totalBorrows - totalReserves) / totalSupply | |
*/ | |
uint totalCash = getCashPrior(); | |
uint cashPlusBorrowsMinusReserves = totalCash + totalBorrows - totalReserves; | |
uint exchangeRate = cashPlusBorrowsMinusReserves * expScale / _totalSupply; | |
return exchangeRate; | |
} | |
} | |
/** | |
* @notice Get cash balance of this cToken in the underlying asset | |
* @return The quantity of underlying asset owned by this contract | |
*/ | |
function getCash() override external view returns (uint) { | |
return getCashPrior(); | |
} | |
/** | |
* @notice Applies accrued interest to total borrows and reserves | |
* @dev This calculates interest accrued from the last checkpointed block | |
* up to the current block and writes new checkpoint to storage. | |
*/ | |
function accrueInterest() virtual override public returns (uint) { | |
/* Remember the initial block number */ | |
uint currentBlockNumber = getBlockNumber(); | |
uint accrualBlockNumberPrior = accrualBlockNumber; | |
/* Short-circuit accumulating 0 interest */ | |
if (accrualBlockNumberPrior == currentBlockNumber) { | |
return NO_ERROR; | |
} | |
/* Read the previous values out of storage */ | |
uint cashPrior = getCashPrior(); | |
uint borrowsPrior = totalBorrows; | |
uint reservesPrior = totalReserves; | |
uint borrowIndexPrior = borrowIndex; | |
/* Calculate the current borrow interest rate */ | |
uint borrowRateMantissa = interestRateModel.getBorrowRate(cashPrior, borrowsPrior, reservesPrior); | |
require(borrowRateMantissa <= borrowRateMaxMantissa, "borrow rate is absurdly high"); | |
/* Calculate the number of blocks elapsed since the last accrual */ | |
uint blockDelta = currentBlockNumber - accrualBlockNumberPrior; | |
/* | |
* Calculate the interest accumulated into borrows and reserves and the new index: | |
* simpleInterestFactor = borrowRate * blockDelta | |
* interestAccumulated = simpleInterestFactor * totalBorrows | |
* totalBorrowsNew = interestAccumulated + totalBorrows | |
* totalReservesNew = interestAccumulated * reserveFactor + totalReserves | |
* borrowIndexNew = simpleInterestFactor * borrowIndex + borrowIndex | |
*/ | |
Exp memory simpleInterestFactor = mul_(Exp({mantissa: borrowRateMantissa}), blockDelta); | |
uint interestAccumulated = mul_ScalarTruncate(simpleInterestFactor, borrowsPrior); | |
uint totalBorrowsNew = interestAccumulated + borrowsPrior; | |
uint totalReservesNew = mul_ScalarTruncateAddUInt(Exp({mantissa: reserveFactorMantissa}), interestAccumulated, reservesPrior); | |
uint borrowIndexNew = mul_ScalarTruncateAddUInt(simpleInterestFactor, borrowIndexPrior, borrowIndexPrior); | |
///////////////////////// | |
// EFFECTS & INTERACTIONS | |
// (No safe failures beyond this point) | |
/* We write the previously calculated values into storage */ | |
accrualBlockNumber = currentBlockNumber; | |
borrowIndex = borrowIndexNew; | |
totalBorrows = totalBorrowsNew; | |
totalReserves = totalReservesNew; | |
/* We emit an AccrueInterest event */ | |
emit AccrueInterest(cashPrior, interestAccumulated, borrowIndexNew, totalBorrowsNew); | |
return NO_ERROR; | |
} | |
/** | |
* @notice Sender supplies assets into the market and receives cTokens in exchange | |
* @dev Accrues interest whether or not the operation succeeds, unless reverted | |
* @param mintAmount The amount of the underlying asset to supply | |
*/ | |
function mintInternal(uint mintAmount) internal nonReentrant { | |
accrueInterest(); | |
// mintFresh emits the actual Mint event if successful and logs on errors, so we don't need to | |
mintFresh(msg.sender, mintAmount); | |
} | |
/** | |
* @notice User supplies assets into the market and receives cTokens in exchange | |
* @dev Assumes interest has already been accrued up to the current block | |
* @param minter The address of the account which is supplying the assets | |
* @param mintAmount The amount of the underlying asset to supply | |
*/ | |
function mintFresh(address minter, uint mintAmount) internal { | |
/* Fail if mint not allowed */ | |
uint allowed = comptroller.mintAllowed(address(this), minter, mintAmount); | |
if (allowed != 0) { | |
revert MintComptrollerRejection(allowed); | |
} | |
/* Verify market's block number equals current block number */ | |
if (accrualBlockNumber != getBlockNumber()) { | |
revert MintFreshnessCheck(); | |
} | |
Exp memory exchangeRate = Exp({mantissa: exchangeRateStoredInternal()}); | |
///////////////////////// | |
// EFFECTS & INTERACTIONS | |
// (No safe failures beyond this point) | |
/* | |
* We call `doTransferIn` for the minter and the mintAmount. | |
* Note: The cToken must handle variations between ERC-20 and ETH underlying. | |
* `doTransferIn` reverts if anything goes wrong, since we can't be sure if | |
* side-effects occurred. The function returns the amount actually transferred, | |
* in case of a fee. On success, the cToken holds an additional `actualMintAmount` | |
* of cash. | |
*/ | |
uint actualMintAmount = doTransferIn(minter, mintAmount); | |
/* | |
* We get the current exchange rate and calculate the number of cTokens to be minted: | |
* mintTokens = actualMintAmount / exchangeRate | |
*/ | |
uint mintTokens = div_(actualMintAmount, exchangeRate); | |
/* | |
* We calculate the new total supply of cTokens and minter token balance, checking for overflow: | |
* totalSupplyNew = totalSupply + mintTokens | |
* accountTokensNew = accountTokens[minter] + mintTokens | |
* And write them into storage | |
*/ | |
totalSupply = totalSupply + mintTokens; | |
accountTokens[minter] = accountTokens[minter] + mintTokens; | |
/* We emit a Mint event, and a Transfer event */ | |
emit Mint(minter, actualMintAmount, mintTokens); | |
emit Transfer(address(this), minter, mintTokens); | |
/* We call the defense hook */ | |
// unused function | |
// comptroller.mintVerify(address(this), minter, actualMintAmount, mintTokens); | |
} | |
/** | |
* @notice Sender redeems cTokens in exchange for the underlying asset | |
* @dev Accrues interest whether or not the operation succeeds, unless reverted | |
* @param redeemTokens The number of cTokens to redeem into underlying | |
*/ | |
function redeemInternal(uint redeemTokens) internal nonReentrant { | |
accrueInterest(); | |
// redeemFresh emits redeem-specific logs on errors, so we don't need to | |
redeemFresh(payable(msg.sender), redeemTokens, 0); | |
} | |
/** | |
* @notice Sender redeems cTokens in exchange for a specified amount of underlying asset | |
* @dev Accrues interest whether or not the operation succeeds, unless reverted | |
* @param redeemAmount The amount of underlying to receive from redeeming cTokens | |
*/ | |
function redeemUnderlyingInternal(uint redeemAmount) internal nonReentrant { | |
accrueInterest(); | |
// redeemFresh emits redeem-specific logs on errors, so we don't need to | |
redeemFresh(payable(msg.sender), 0, redeemAmount); | |
} | |
/** | |
* @notice User redeems cTokens in exchange for the underlying asset | |
* @dev Assumes interest has already been accrued up to the current block | |
* @param redeemer The address of the account which is redeeming the tokens | |
* @param redeemTokensIn The number of cTokens to redeem into underlying (only one of redeemTokensIn or redeemAmountIn may be non-zero) | |
* @param redeemAmountIn The number of underlying tokens to receive from redeeming cTokens (only one of redeemTokensIn or redeemAmountIn may be non-zero) | |
*/ | |
function redeemFresh(address payable redeemer, uint redeemTokensIn, uint redeemAmountIn) internal { | |
require(redeemTokensIn == 0 || redeemAmountIn == 0, "one of redeemTokensIn or redeemAmountIn must be zero"); | |
/* exchangeRate = invoke Exchange Rate Stored() */ | |
Exp memory exchangeRate = Exp({mantissa: exchangeRateStoredInternal() }); | |
uint redeemTokens; | |
uint redeemAmount; | |
/* If redeemTokensIn > 0: */ | |
if (redeemTokensIn > 0) { | |
/* | |
* We calculate the exchange rate and the amount of underlying to be redeemed: | |
* redeemTokens = redeemTokensIn | |
* redeemAmount = redeemTokensIn x exchangeRateCurrent | |
*/ | |
redeemTokens = redeemTokensIn; | |
redeemAmount = mul_ScalarTruncate(exchangeRate, redeemTokensIn); | |
} else { | |
/* | |
* We get the current exchange rate and calculate the amount to be redeemed: | |
* redeemTokens = redeemAmountIn / exchangeRate | |
* redeemAmount = redeemAmountIn | |
*/ | |
redeemTokens = div_(redeemAmountIn, exchangeRate); | |
redeemAmount = redeemAmountIn; | |
} | |
/* Fail if redeem not allowed */ | |
uint allowed = comptroller.redeemAllowed(address(this), redeemer, redeemTokens); | |
if (allowed != 0) { | |
revert RedeemComptrollerRejection(allowed); | |
} | |
/* Verify market's block number equals current block number */ | |
if (accrualBlockNumber != getBlockNumber()) { | |
revert RedeemFreshnessCheck(); | |
} | |
/* Fail gracefully if protocol has insufficient cash */ | |
if (getCashPrior() < redeemAmount) { | |
revert RedeemTransferOutNotPossible(); | |
} | |
///////////////////////// | |
// EFFECTS & INTERACTIONS | |
// (No safe failures beyond this point) | |
/* | |
* We write the previously calculated values into storage. | |
* Note: Avoid token reentrancy attacks by writing reduced supply before external transfer. | |
*/ | |
totalSupply = totalSupply - redeemTokens; | |
accountTokens[redeemer] = accountTokens[redeemer] - redeemTokens; | |
/* | |
* We invoke doTransferOut for the redeemer and the redeemAmount. | |
* Note: The cToken must handle variations between ERC-20 and ETH underlying. | |
* On success, the cToken has redeemAmount less of cash. | |
* doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. | |
*/ | |
doTransferOut(redeemer, redeemAmount); | |
/* We emit a Transfer event, and a Redeem event */ | |
emit Transfer(redeemer, address(this), redeemTokens); | |
emit Redeem(redeemer, redeemAmount, redeemTokens); | |
/* We call the defense hook */ | |
comptroller.redeemVerify(address(this), redeemer, redeemAmount, redeemTokens); | |
} | |
/** | |
* @notice Sender borrows assets from the protocol to their own address | |
* @param borrowAmount The amount of the underlying asset to borrow | |
*/ | |
function borrowInternal(uint borrowAmount) internal nonReentrant { | |
accrueInterest(); | |
// borrowFresh emits borrow-specific logs on errors, so we don't need to | |
borrowFresh(payable(msg.sender), borrowAmount); | |
} | |
/** | |
* @notice Users borrow assets from the protocol to their own address | |
* @param borrowAmount The amount of the underlying asset to borrow | |
*/ | |
function borrowFresh(address payable borrower, uint borrowAmount) internal { | |
/* Fail if borrow not allowed */ | |
uint allowed = comptroller.borrowAllowed(address(this), borrower, borrowAmount); | |
if (allowed != 0) { | |
revert BorrowComptrollerRejection(allowed); | |
} | |
/* Verify market's block number equals current block number */ | |
if (accrualBlockNumber != getBlockNumber()) { | |
revert BorrowFreshnessCheck(); | |
} | |
/* Fail gracefully if protocol has insufficient underlying cash */ | |
if (getCashPrior() < borrowAmount) { | |
revert BorrowCashNotAvailable(); | |
} | |
/* | |
* We calculate the new borrower and total borrow balances, failing on overflow: | |
* accountBorrowNew = accountBorrow + borrowAmount | |
* totalBorrowsNew = totalBorrows + borrowAmount | |
*/ | |
uint accountBorrowsPrev = borrowBalanceStoredInternal(borrower); | |
uint accountBorrowsNew = accountBorrowsPrev + borrowAmount; | |
uint totalBorrowsNew = totalBorrows + borrowAmount; | |
///////////////////////// | |
// EFFECTS & INTERACTIONS | |
// (No safe failures beyond this point) | |
/* | |
* We write the previously calculated values into storage. | |
* Note: Avoid token reentrancy attacks by writing increased borrow before external transfer. | |
`*/ | |
accountBorrows[borrower].principal = accountBorrowsNew; | |
accountBorrows[borrower].interestIndex = borrowIndex; | |
totalBorrows = totalBorrowsNew; | |
/* | |
* We invoke doTransferOut for the borrower and the borrowAmount. | |
* Note: The cToken must handle variations between ERC-20 and ETH underlying. | |
* On success, the cToken borrowAmount less of cash. | |
* doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. | |
*/ | |
doTransferOut(borrower, borrowAmount); | |
/* We emit a Borrow event */ | |
emit Borrow(borrower, borrowAmount, accountBorrowsNew, totalBorrowsNew); | |
} | |
/** | |
* @notice Sender repays their own borrow | |
* @param repayAmount The amount to repay, or -1 for the full outstanding amount | |
*/ | |
function repayBorrowInternal(uint repayAmount) internal nonReentrant { | |
accrueInterest(); | |
// repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to | |
repayBorrowFresh(msg.sender, msg.sender, repayAmount); | |
} | |
/** | |
* @notice Sender repays a borrow belonging to borrower | |
* @param borrower the account with the debt being payed off | |
* @param repayAmount The amount to repay, or -1 for the full outstanding amount | |
*/ | |
function repayBorrowBehalfInternal(address borrower, uint repayAmount) internal nonReentrant { | |
accrueInterest(); | |
// repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to | |
repayBorrowFresh(msg.sender, borrower, repayAmount); | |
} | |
/** | |
* @notice Borrows are repaid by another user (possibly the borrower). | |
* @param payer the account paying off the borrow | |
* @param borrower the account with the debt being payed off | |
* @param repayAmount the amount of underlying tokens being returned, or -1 for the full outstanding amount | |
* @return (uint) the actual repayment amount. | |
*/ | |
function repayBorrowFresh(address payer, address borrower, uint repayAmount) internal returns (uint) { | |
/* Fail if repayBorrow not allowed */ | |
uint allowed = comptroller.repayBorrowAllowed(address(this), payer, borrower, repayAmount); | |
if (allowed != 0) { | |
revert RepayBorrowComptrollerRejection(allowed); | |
} | |
/* Verify market's block number equals current block number */ | |
if (accrualBlockNumber != getBlockNumber()) { | |
revert RepayBorrowFreshnessCheck(); | |
} | |
/* We fetch the amount the borrower owes, with accumulated interest */ | |
uint accountBorrowsPrev = borrowBalanceStoredInternal(borrower); | |
/* If repayAmount == -1, repayAmount = accountBorrows */ | |
uint repayAmountFinal = repayAmount == type(uint).max ? accountBorrowsPrev : repayAmount; | |
///////////////////////// | |
// EFFECTS & INTERACTIONS | |
// (No safe failures beyond this point) | |
/* | |
* We call doTransferIn for the payer and the repayAmount | |
* Note: The cToken must handle variations between ERC-20 and ETH underlying. | |
* On success, the cToken holds an additional repayAmount of cash. | |
* doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred. | |
* it returns the amount actually transferred, in case of a fee. | |
*/ | |
uint actualRepayAmount = doTransferIn(payer, repayAmountFinal); | |
/* | |
* We calculate the new borrower and total borrow balances, failing on underflow: | |
* accountBorrowsNew = accountBorrows - actualRepayAmount | |
* totalBorrowsNew = totalBorrows - actualRepayAmount | |
*/ | |
uint accountBorrowsNew = accountBorrowsPrev - actualRepayAmount; | |
uint totalBorrowsNew = totalBorrows - actualRepayAmount; | |
/* We write the previously calculated values into storage */ | |
accountBorrows[borrower].principal = accountBorrowsNew; | |
accountBorrows[borrower].interestIndex = borrowIndex; | |
totalBorrows = totalBorrowsNew; | |
/* We emit a RepayBorrow event */ | |
emit RepayBorrow(payer, borrower, actualRepayAmount, accountBorrowsNew, totalBorrowsNew); | |
return actualRepayAmount; | |
} | |
/** | |
* @notice The sender liquidates the borrowers collateral. | |
* The collateral seized is transferred to the liquidator. | |
* @param borrower The borrower of this cToken to be liquidated | |
* @param cTokenCollateral The market in which to seize collateral from the borrower | |
* @param repayAmount The amount of the underlying borrowed asset to repay | |
*/ | |
function liquidateBorrowInternal(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) internal nonReentrant { | |
accrueInterest(); | |
uint error = cTokenCollateral.accrueInterest(); | |
if (error != NO_ERROR) { | |
// accrueInterest emits logs on errors, but we still want to log the fact that an attempted liquidation failed | |
revert LiquidateAccrueCollateralInterestFailed(error); | |
} | |
// liquidateBorrowFresh emits borrow-specific logs on errors, so we don't need to | |
liquidateBorrowFresh(msg.sender, borrower, repayAmount, cTokenCollateral); | |
} | |
/** | |
* @notice The liquidator liquidates the borrowers collateral. | |
* The collateral seized is transferred to the liquidator. | |
* @param borrower The borrower of this cToken to be liquidated | |
* @param liquidator The address repaying the borrow and seizing collateral | |
* @param cTokenCollateral The market in which to seize collateral from the borrower | |
* @param repayAmount The amount of the underlying borrowed asset to repay | |
*/ | |
function liquidateBorrowFresh(address liquidator, address borrower, uint repayAmount, CTokenInterface cTokenCollateral) internal { | |
/* Fail if liquidate not allowed */ | |
uint allowed = comptroller.liquidateBorrowAllowed(address(this), address(cTokenCollateral), liquidator, borrower, repayAmount); | |
if (allowed != 0) { | |
revert LiquidateComptrollerRejection(allowed); | |
} | |
/* Verify market's block number equals current block number */ | |
if (accrualBlockNumber != getBlockNumber()) { | |
revert LiquidateFreshnessCheck(); | |
} | |
/* Verify cTokenCollateral market's block number equals current block number */ | |
if (cTokenCollateral.accrualBlockNumber() != getBlockNumber()) { | |
revert LiquidateCollateralFreshnessCheck(); | |
} | |
/* Fail if borrower = liquidator */ | |
if (borrower == liquidator) { | |
revert LiquidateLiquidatorIsBorrower(); | |
} | |
/* Fail if repayAmount = 0 */ | |
if (repayAmount == 0) { | |
revert LiquidateCloseAmountIsZero(); | |
} | |
/* Fail if repayAmount = -1 */ | |
if (repayAmount == type(uint).max) { | |
revert LiquidateCloseAmountIsUintMax(); | |
} | |
/* Fail if repayBorrow fails */ | |
uint actualRepayAmount = repayBorrowFresh(liquidator, borrower, repayAmount); | |
///////////////////////// | |
// EFFECTS & INTERACTIONS | |
// (No safe failures beyond this point) | |
/* We calculate the number of collateral tokens that will be seized */ | |
(uint amountSeizeError, uint seizeTokens) = comptroller.liquidateCalculateSeizeTokens(address(this), address(cTokenCollateral), actualRepayAmount); | |
require(amountSeizeError == NO_ERROR, "LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED"); | |
/* Revert if borrower collateral token balance < seizeTokens */ | |
require(cTokenCollateral.balanceOf(borrower) >= seizeTokens, "LIQUIDATE_SEIZE_TOO_MUCH"); | |
// If this is also the collateral, run seizeInternal to avoid re-entrancy, otherwise make an external call | |
if (address(cTokenCollateral) == address(this)) { | |
seizeInternal(address(this), liquidator, borrower, seizeTokens); | |
} else { | |
require(cTokenCollateral.seize(liquidator, borrower, seizeTokens) == NO_ERROR, "token seizure failed"); | |
} | |
/* We emit a LiquidateBorrow event */ | |
emit LiquidateBorrow(liquidator, borrower, actualRepayAmount, address(cTokenCollateral), seizeTokens); | |
} | |
/** | |
* @notice Transfers collateral tokens (this market) to the liquidator. | |
* @dev Will fail unless called by another cToken during the process of liquidation. | |
* Its absolutely critical to use msg.sender as the borrowed cToken and not a parameter. | |
* @param liquidator The account receiving seized collateral | |
* @param borrower The account having collateral seized | |
* @param seizeTokens The number of cTokens to seize | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function seize(address liquidator, address borrower, uint seizeTokens) override external nonReentrant returns (uint) { | |
seizeInternal(msg.sender, liquidator, borrower, seizeTokens); | |
return NO_ERROR; | |
} | |
/** | |
* @notice Transfers collateral tokens (this market) to the liquidator. | |
* @dev Called only during an in-kind liquidation, or by liquidateBorrow during the liquidation of another CToken. | |
* Its absolutely critical to use msg.sender as the seizer cToken and not a parameter. | |
* @param seizerToken The contract seizing the collateral (i.e. borrowed cToken) | |
* @param liquidator The account receiving seized collateral | |
* @param borrower The account having collateral seized | |
* @param seizeTokens The number of cTokens to seize | |
*/ | |
function seizeInternal(address seizerToken, address liquidator, address borrower, uint seizeTokens) internal { | |
/* Fail if seize not allowed */ | |
uint allowed = comptroller.seizeAllowed(address(this), seizerToken, liquidator, borrower, seizeTokens); | |
if (allowed != 0) { | |
revert LiquidateSeizeComptrollerRejection(allowed); | |
} | |
/* Fail if borrower = liquidator */ | |
if (borrower == liquidator) { | |
revert LiquidateSeizeLiquidatorIsBorrower(); | |
} | |
/* | |
* We calculate the new borrower and liquidator token balances, failing on underflow/overflow: | |
* borrowerTokensNew = accountTokens[borrower] - seizeTokens | |
* liquidatorTokensNew = accountTokens[liquidator] + seizeTokens | |
*/ | |
uint protocolSeizeTokens = mul_(seizeTokens, Exp({mantissa: protocolSeizeShareMantissa})); | |
uint liquidatorSeizeTokens = seizeTokens - protocolSeizeTokens; | |
Exp memory exchangeRate = Exp({mantissa: exchangeRateStoredInternal()}); | |
uint protocolSeizeAmount = mul_ScalarTruncate(exchangeRate, protocolSeizeTokens); | |
uint totalReservesNew = totalReserves + protocolSeizeAmount; | |
///////////////////////// | |
// EFFECTS & INTERACTIONS | |
// (No safe failures beyond this point) | |
/* We write the calculated values into storage */ | |
totalReserves = totalReservesNew; | |
totalSupply = totalSupply - protocolSeizeTokens; | |
accountTokens[borrower] = accountTokens[borrower] - seizeTokens; | |
accountTokens[liquidator] = accountTokens[liquidator] + liquidatorSeizeTokens; | |
/* Emit a Transfer event */ | |
emit Transfer(borrower, liquidator, liquidatorSeizeTokens); | |
emit Transfer(borrower, address(this), protocolSeizeTokens); | |
emit ReservesAdded(address(this), protocolSeizeAmount, totalReservesNew); | |
} | |
/*** Admin Functions ***/ | |
/** | |
* @notice Begins transfer of admin rights. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. | |
* @dev Admin function to begin change of admin. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. | |
* @param newPendingAdmin New pending admin. | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _setPendingAdmin(address payable newPendingAdmin) override external returns (uint) { | |
// Check caller = admin | |
if (msg.sender != admin) { | |
revert SetPendingAdminOwnerCheck(); | |
} | |
// Save current value, if any, for inclusion in log | |
address oldPendingAdmin = pendingAdmin; | |
// Store pendingAdmin with value newPendingAdmin | |
pendingAdmin = newPendingAdmin; | |
// Emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin) | |
emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin); | |
return NO_ERROR; | |
} | |
/** | |
* @notice Accepts transfer of admin rights. msg.sender must be pendingAdmin | |
* @dev Admin function for pending admin to accept role and update admin | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _acceptAdmin() override external returns (uint) { | |
// Check caller is pendingAdmin and pendingAdmin ≠ address(0) | |
if (msg.sender != pendingAdmin || msg.sender == address(0)) { | |
revert AcceptAdminPendingAdminCheck(); | |
} | |
// Save current values for inclusion in log | |
address oldAdmin = admin; | |
address oldPendingAdmin = pendingAdmin; | |
// Store admin with value pendingAdmin | |
admin = pendingAdmin; | |
// Clear the pending value | |
pendingAdmin = payable(address(0)); | |
emit NewAdmin(oldAdmin, admin); | |
emit NewPendingAdmin(oldPendingAdmin, pendingAdmin); | |
return NO_ERROR; | |
} | |
/** | |
* @notice Sets a new comptroller for the market | |
* @dev Admin function to set a new comptroller | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _setComptroller(ComptrollerInterface newComptroller) override public returns (uint) { | |
// Check caller is admin | |
if (msg.sender != admin) { | |
revert SetComptrollerOwnerCheck(); | |
} | |
ComptrollerInterface oldComptroller = comptroller; | |
// Ensure invoke comptroller.isComptroller() returns true | |
require(newComptroller.isComptroller(), "marker method returned false"); | |
// Set market's comptroller to newComptroller | |
comptroller = newComptroller; | |
// Emit NewComptroller(oldComptroller, newComptroller) | |
emit NewComptroller(oldComptroller, newComptroller); | |
return NO_ERROR; | |
} | |
/** | |
* @notice accrues interest and sets a new reserve factor for the protocol using _setReserveFactorFresh | |
* @dev Admin function to accrue interest and set a new reserve factor | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _setReserveFactor(uint newReserveFactorMantissa) override external nonReentrant returns (uint) { | |
accrueInterest(); | |
// _setReserveFactorFresh emits reserve-factor-specific logs on errors, so we don't need to. | |
return _setReserveFactorFresh(newReserveFactorMantissa); | |
} | |
/** | |
* @notice Sets a new reserve factor for the protocol (*requires fresh interest accrual) | |
* @dev Admin function to set a new reserve factor | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _setReserveFactorFresh(uint newReserveFactorMantissa) internal returns (uint) { | |
// Check caller is admin | |
if (msg.sender != admin) { | |
revert SetReserveFactorAdminCheck(); | |
} | |
// Verify market's block number equals current block number | |
if (accrualBlockNumber != getBlockNumber()) { | |
revert SetReserveFactorFreshCheck(); | |
} | |
// Check newReserveFactor ≤ maxReserveFactor | |
if (newReserveFactorMantissa > reserveFactorMaxMantissa) { | |
revert SetReserveFactorBoundsCheck(); | |
} | |
uint oldReserveFactorMantissa = reserveFactorMantissa; | |
reserveFactorMantissa = newReserveFactorMantissa; | |
emit NewReserveFactor(oldReserveFactorMantissa, newReserveFactorMantissa); | |
return NO_ERROR; | |
} | |
/** | |
* @notice Accrues interest and reduces reserves by transferring from msg.sender | |
* @param addAmount Amount of addition to reserves | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _addReservesInternal(uint addAmount) internal nonReentrant returns (uint) { | |
accrueInterest(); | |
// _addReservesFresh emits reserve-addition-specific logs on errors, so we don't need to. | |
_addReservesFresh(addAmount); | |
return NO_ERROR; | |
} | |
/** | |
* @notice Add reserves by transferring from caller | |
* @dev Requires fresh interest accrual | |
* @param addAmount Amount of addition to reserves | |
* @return (uint, uint) An error code (0=success, otherwise a failure (see ErrorReporter.sol for details)) and the actual amount added, net token fees | |
*/ | |
function _addReservesFresh(uint addAmount) internal returns (uint, uint) { | |
// totalReserves + actualAddAmount | |
uint totalReservesNew; | |
uint actualAddAmount; | |
// We fail gracefully unless market's block number equals current block number | |
if (accrualBlockNumber != getBlockNumber()) { | |
revert AddReservesFactorFreshCheck(actualAddAmount); | |
} | |
///////////////////////// | |
// EFFECTS & INTERACTIONS | |
// (No safe failures beyond this point) | |
/* | |
* We call doTransferIn for the caller and the addAmount | |
* Note: The cToken must handle variations between ERC-20 and ETH underlying. | |
* On success, the cToken holds an additional addAmount of cash. | |
* doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred. | |
* it returns the amount actually transferred, in case of a fee. | |
*/ | |
actualAddAmount = doTransferIn(msg.sender, addAmount); | |
totalReservesNew = totalReserves + actualAddAmount; | |
// Store reserves[n+1] = reserves[n] + actualAddAmount | |
totalReserves = totalReservesNew; | |
/* Emit NewReserves(admin, actualAddAmount, reserves[n+1]) */ | |
emit ReservesAdded(msg.sender, actualAddAmount, totalReservesNew); | |
/* Return (NO_ERROR, actualAddAmount) */ | |
return (NO_ERROR, actualAddAmount); | |
} | |
/** | |
* @notice Accrues interest and reduces reserves by transferring to admin | |
* @param reduceAmount Amount of reduction to reserves | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _reduceReserves(uint reduceAmount) override external nonReentrant returns (uint) { | |
accrueInterest(); | |
// _reduceReservesFresh emits reserve-reduction-specific logs on errors, so we don't need to. | |
return _reduceReservesFresh(reduceAmount); | |
} | |
/** | |
* @notice Reduces reserves by transferring to admin | |
* @dev Requires fresh interest accrual | |
* @param reduceAmount Amount of reduction to reserves | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _reduceReservesFresh(uint reduceAmount) internal returns (uint) { | |
// totalReserves - reduceAmount | |
uint totalReservesNew; | |
// Check caller is admin | |
if (msg.sender != admin) { | |
revert ReduceReservesAdminCheck(); | |
} | |
// We fail gracefully unless market's block number equals current block number | |
if (accrualBlockNumber != getBlockNumber()) { | |
revert ReduceReservesFreshCheck(); | |
} | |
// Fail gracefully if protocol has insufficient underlying cash | |
if (getCashPrior() < reduceAmount) { | |
revert ReduceReservesCashNotAvailable(); | |
} | |
// Check reduceAmount ≤ reserves[n] (totalReserves) | |
if (reduceAmount > totalReserves) { | |
revert ReduceReservesCashValidation(); | |
} | |
///////////////////////// | |
// EFFECTS & INTERACTIONS | |
// (No safe failures beyond this point) | |
totalReservesNew = totalReserves - reduceAmount; | |
// Store reserves[n+1] = reserves[n] - reduceAmount | |
totalReserves = totalReservesNew; | |
// doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. | |
doTransferOut(admin, reduceAmount); | |
emit ReservesReduced(admin, reduceAmount, totalReservesNew); | |
return NO_ERROR; | |
} | |
/** | |
* @notice accrues interest and updates the interest rate model using _setInterestRateModelFresh | |
* @dev Admin function to accrue interest and update the interest rate model | |
* @param newInterestRateModel the new interest rate model to use | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _setInterestRateModel(InterestRateModel newInterestRateModel) override public returns (uint) { | |
accrueInterest(); | |
// _setInterestRateModelFresh emits interest-rate-model-update-specific logs on errors, so we don't need to. | |
return _setInterestRateModelFresh(newInterestRateModel); | |
} | |
/** | |
* @notice updates the interest rate model (*requires fresh interest accrual) | |
* @dev Admin function to update the interest rate model | |
* @param newInterestRateModel the new interest rate model to use | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _setInterestRateModelFresh(InterestRateModel newInterestRateModel) internal returns (uint) { | |
// Used to store old model for use in the event that is emitted on success | |
InterestRateModel oldInterestRateModel; | |
// Check caller is admin | |
if (msg.sender != admin) { | |
revert SetInterestRateModelOwnerCheck(); | |
} | |
// We fail gracefully unless market's block number equals current block number | |
if (accrualBlockNumber != getBlockNumber()) { | |
revert SetInterestRateModelFreshCheck(); | |
} | |
// Track the market's current interest rate model | |
oldInterestRateModel = interestRateModel; | |
// Ensure invoke newInterestRateModel.isInterestRateModel() returns true | |
require(newInterestRateModel.isInterestRateModel(), "marker method returned false"); | |
// Set the interest rate model to newInterestRateModel | |
interestRateModel = newInterestRateModel; | |
// Emit NewMarketInterestRateModel(oldInterestRateModel, newInterestRateModel) | |
emit NewMarketInterestRateModel(oldInterestRateModel, newInterestRateModel); | |
return NO_ERROR; | |
} | |
/*** Safe Token ***/ | |
/** | |
* @notice Gets balance of this contract in terms of the underlying | |
* @dev This excludes the value of the current message, if any | |
* @return The quantity of underlying owned by this contract | |
*/ | |
function getCashPrior() virtual internal view returns (uint); | |
/** | |
* @dev Performs a transfer in, reverting upon failure. Returns the amount actually transferred to the protocol, in case of a fee. | |
* This may revert due to insufficient balance or insufficient allowance. | |
*/ | |
function doTransferIn(address from, uint amount) virtual internal returns (uint); | |
/** | |
* @dev Performs a transfer out, ideally returning an explanatory error code upon failure rather than reverting. | |
* If caller has not called checked protocol's balance, may revert due to insufficient cash held in the contract. | |
* If caller has checked protocol's balance, and verified it is >= amount, this should not revert in normal conditions. | |
*/ | |
function doTransferOut(address payable to, uint amount) virtual internal; | |
/*** Reentrancy Guard ***/ | |
/** | |
* @dev Prevents a contract from calling itself, directly or indirectly. | |
*/ | |
modifier nonReentrant() { | |
require(_notEntered, "re-entered"); | |
_notEntered = false; | |
_; | |
_notEntered = true; // get a gas-refund post-Istanbul | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./ComptrollerInterface.sol"; | |
import "./InterestRateModel.sol"; | |
import "./EIP20NonStandardInterface.sol"; | |
import "./ErrorReporter.sol"; | |
contract CTokenStorage { | |
/** | |
* @dev Guard variable for re-entrancy checks | |
*/ | |
bool internal _notEntered; | |
/** | |
* @notice EIP-20 token name for this token | |
*/ | |
string public name; | |
/** | |
* @notice EIP-20 token symbol for this token | |
*/ | |
string public symbol; | |
/** | |
* @notice EIP-20 token decimals for this token | |
*/ | |
uint8 public decimals; | |
// Maximum borrow rate that can ever be applied (.0005% / block) | |
uint internal constant borrowRateMaxMantissa = 0.0005e16; | |
// Maximum fraction of interest that can be set aside for reserves | |
uint internal constant reserveFactorMaxMantissa = 1e18; | |
/** | |
* @notice Administrator for this contract | |
*/ | |
address payable public admin; | |
/** | |
* @notice Pending administrator for this contract | |
*/ | |
address payable public pendingAdmin; | |
/** | |
* @notice Contract which oversees inter-cToken operations | |
*/ | |
ComptrollerInterface public comptroller; | |
/** | |
* @notice Model which tells what the current interest rate should be | |
*/ | |
InterestRateModel public interestRateModel; | |
// Initial exchange rate used when minting the first CTokens (used when totalSupply = 0) | |
uint internal initialExchangeRateMantissa; | |
/** | |
* @notice Fraction of interest currently set aside for reserves | |
*/ | |
uint public reserveFactorMantissa; | |
/** | |
* @notice Block number that interest was last accrued at | |
*/ | |
uint public accrualBlockNumber; | |
/** | |
* @notice Accumulator of the total earned interest rate since the opening of the market | |
*/ | |
uint public borrowIndex; | |
/** | |
* @notice Total amount of outstanding borrows of the underlying in this market | |
*/ | |
uint public totalBorrows; | |
/** | |
* @notice Total amount of reserves of the underlying held in this market | |
*/ | |
uint public totalReserves; | |
/** | |
* @notice Total number of tokens in circulation | |
*/ | |
uint public totalSupply; | |
// Official record of token balances for each account | |
mapping (address => uint) internal accountTokens; | |
// Approved token transfer amounts on behalf of others | |
mapping (address => mapping (address => uint)) internal transferAllowances; | |
/** | |
* @notice Container for borrow balance information | |
* @member principal Total balance (with accrued interest), after applying the most recent balance-changing action | |
* @member interestIndex Global borrowIndex as of the most recent balance-changing action | |
*/ | |
struct BorrowSnapshot { | |
uint principal; | |
uint interestIndex; | |
} | |
// Mapping of account addresses to outstanding borrow balances | |
mapping(address => BorrowSnapshot) internal accountBorrows; | |
/** | |
* @notice Share of seized collateral that is added to reserves | |
*/ | |
uint public constant protocolSeizeShareMantissa = 2.8e16; //2.8% | |
} | |
abstract contract CTokenInterface is CTokenStorage { | |
/** | |
* @notice Indicator that this is a CToken contract (for inspection) | |
*/ | |
bool public constant isCToken = true; | |
/*** Market Events ***/ | |
/** | |
* @notice Event emitted when interest is accrued | |
*/ | |
event AccrueInterest(uint cashPrior, uint interestAccumulated, uint borrowIndex, uint totalBorrows); | |
/** | |
* @notice Event emitted when tokens are minted | |
*/ | |
event Mint(address minter, uint mintAmount, uint mintTokens); | |
/** | |
* @notice Event emitted when tokens are redeemed | |
*/ | |
event Redeem(address redeemer, uint redeemAmount, uint redeemTokens); | |
/** | |
* @notice Event emitted when underlying is borrowed | |
*/ | |
event Borrow(address borrower, uint borrowAmount, uint accountBorrows, uint totalBorrows); | |
/** | |
* @notice Event emitted when a borrow is repaid | |
*/ | |
event RepayBorrow(address payer, address borrower, uint repayAmount, uint accountBorrows, uint totalBorrows); | |
/** | |
* @notice Event emitted when a borrow is liquidated | |
*/ | |
event LiquidateBorrow(address liquidator, address borrower, uint repayAmount, address cTokenCollateral, uint seizeTokens); | |
/*** Admin Events ***/ | |
/** | |
* @notice Event emitted when pendingAdmin is changed | |
*/ | |
event NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin); | |
/** | |
* @notice Event emitted when pendingAdmin is accepted, which means admin is updated | |
*/ | |
event NewAdmin(address oldAdmin, address newAdmin); | |
/** | |
* @notice Event emitted when comptroller is changed | |
*/ | |
event NewComptroller(ComptrollerInterface oldComptroller, ComptrollerInterface newComptroller); | |
/** | |
* @notice Event emitted when interestRateModel is changed | |
*/ | |
event NewMarketInterestRateModel(InterestRateModel oldInterestRateModel, InterestRateModel newInterestRateModel); | |
/** | |
* @notice Event emitted when the reserve factor is changed | |
*/ | |
event NewReserveFactor(uint oldReserveFactorMantissa, uint newReserveFactorMantissa); | |
/** | |
* @notice Event emitted when the reserves are added | |
*/ | |
event ReservesAdded(address benefactor, uint addAmount, uint newTotalReserves); | |
/** | |
* @notice Event emitted when the reserves are reduced | |
*/ | |
event ReservesReduced(address admin, uint reduceAmount, uint newTotalReserves); | |
/** | |
* @notice EIP20 Transfer event | |
*/ | |
event Transfer(address indexed from, address indexed to, uint amount); | |
/** | |
* @notice EIP20 Approval event | |
*/ | |
event Approval(address indexed owner, address indexed spender, uint amount); | |
/*** User Interface ***/ | |
function transfer(address dst, uint amount) virtual external returns (bool); | |
function transferFrom(address src, address dst, uint amount) virtual external returns (bool); | |
function approve(address spender, uint amount) virtual external returns (bool); | |
function allowance(address owner, address spender) virtual external view returns (uint); | |
function balanceOf(address owner) virtual external view returns (uint); | |
function balanceOfUnderlying(address owner) virtual external returns (uint); | |
function getAccountSnapshot(address account) virtual external view returns (uint, uint, uint, uint); | |
function borrowRatePerBlock() virtual external view returns (uint); | |
function supplyRatePerBlock() virtual external view returns (uint); | |
function totalBorrowsCurrent() virtual external returns (uint); | |
function borrowBalanceCurrent(address account) virtual external returns (uint); | |
function borrowBalanceStored(address account) virtual external view returns (uint); | |
function exchangeRateCurrent() virtual external returns (uint); | |
function exchangeRateStored() virtual external view returns (uint); | |
function getCash() virtual external view returns (uint); | |
function accrueInterest() virtual external returns (uint); | |
function seize(address liquidator, address borrower, uint seizeTokens) virtual external returns (uint); | |
/*** Admin Functions ***/ | |
function _setPendingAdmin(address payable newPendingAdmin) virtual external returns (uint); | |
function _acceptAdmin() virtual external returns (uint); | |
function _setComptroller(ComptrollerInterface newComptroller) virtual external returns (uint); | |
function _setReserveFactor(uint newReserveFactorMantissa) virtual external returns (uint); | |
function _reduceReserves(uint reduceAmount) virtual external returns (uint); | |
function _setInterestRateModel(InterestRateModel newInterestRateModel) virtual external returns (uint); | |
} | |
contract CErc20Storage { | |
/** | |
* @notice Underlying asset for this CToken | |
*/ | |
address public underlying; | |
} | |
abstract contract CErc20Interface is CErc20Storage { | |
/*** User Interface ***/ | |
function mint(uint mintAmount) virtual external returns (uint); | |
function redeem(uint redeemTokens) virtual external returns (uint); | |
function redeemUnderlying(uint redeemAmount) virtual external returns (uint); | |
function borrow(uint borrowAmount) virtual external returns (uint); | |
function repayBorrow(uint repayAmount) virtual external returns (uint); | |
function repayBorrowBehalf(address borrower, uint repayAmount) virtual external returns (uint); | |
function liquidateBorrow(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) virtual external returns (uint); | |
function sweepToken(EIP20NonStandardInterface token) virtual external; | |
/*** Admin Functions ***/ | |
function _addReserves(uint addAmount) virtual external returns (uint); | |
} | |
contract CDelegationStorage { | |
/** | |
* @notice Implementation address for this contract | |
*/ | |
address public implementation; | |
} | |
abstract contract CDelegatorInterface is CDelegationStorage { | |
/** | |
* @notice Emitted when implementation is changed | |
*/ | |
event NewImplementation(address oldImplementation, address newImplementation); | |
/** | |
* @notice Called by the admin to update the implementation of the delegator | |
* @param implementation_ The address of the new implementation for delegation | |
* @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation | |
* @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation | |
*/ | |
function _setImplementation(address implementation_, bool allowResign, bytes memory becomeImplementationData) virtual external; | |
} | |
abstract contract CDelegateInterface is CDelegationStorage { | |
/** | |
* @notice Called by the delegator on a delegate to initialize it for duty | |
* @dev Should revert if any issues arise which make it unfit for delegation | |
* @param data The encoded bytes data for any initialization | |
*/ | |
function _becomeImplementation(bytes memory data) virtual external; | |
/** | |
* @notice Called by the delegator on a delegate to forfeit its responsibility | |
*/ | |
function _resignImplementation() virtual external; | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./JumpRateModelV2.sol"; | |
/** | |
* @title Compound's DAIInterestRateModel Contract (version 3) | |
* @author Compound (modified by Dharma Labs) | |
* @notice The parameterized model described in section 2.4 of the original Compound Protocol whitepaper. | |
* Version 3 modifies the interest rate model in Version 2 by increasing the initial "gap" or slope of | |
* the model prior to the "kink" from 2% to 4%, and enabling updateable parameters. | |
*/ | |
contract DAIInterestRateModelV3 is JumpRateModelV2 { | |
uint256 private constant BASE = 1e18; | |
uint256 private constant RAY_BASE = 1e27; | |
uint256 private constant RAY_TO_BASE_SCALE = 1e9; | |
uint256 private constant SECONDS_PER_BLOCK = 15; | |
/** | |
* @notice The additional margin per block separating the base borrow rate from the roof. | |
*/ | |
uint public gapPerBlock; | |
/** | |
* @notice The assumed (1 - reserve factor) used to calculate the minimum borrow rate (reserve factor = 0.05) | |
*/ | |
uint public constant assumedOneMinusReserveFactorMantissa = 0.95e18; | |
PotLike pot; | |
JugLike jug; | |
/** | |
* @notice Construct an interest rate model | |
* @param jumpMultiplierPerYear The multiplierPerBlock after hitting a specified utilization point | |
* @param kink_ The utilization point at which the jump multiplier is applied | |
* @param pot_ The address of the Dai pot (where DSR is earned) | |
* @param jug_ The address of the Dai jug (where SF is kept) | |
* @param owner_ The address of the owner, i.e. the Timelock contract (which has the ability to update parameters directly) | |
*/ | |
constructor(uint jumpMultiplierPerYear, uint kink_, address pot_, address jug_, address owner_) JumpRateModelV2(0, 0, jumpMultiplierPerYear, kink_, owner_) public { | |
gapPerBlock = 4e16 / blocksPerYear; | |
pot = PotLike(pot_); | |
jug = JugLike(jug_); | |
poke(); | |
} | |
/** | |
* @notice External function to update the parameters of the interest rate model | |
* @param baseRatePerYear The approximate target base APR, as a mantissa (scaled by BASE). For DAI, this is calculated from DSR and SF. Input not used. | |
* @param gapPerYear The Additional margin per year separating the base borrow rate from the roof. (scaled by BASE) | |
* @param jumpMultiplierPerYear The jumpMultiplierPerYear after hitting a specified utilization point | |
* @param kink_ The utilization point at which the jump multiplier is applied | |
*/ | |
function updateJumpRateModel(uint baseRatePerYear, uint gapPerYear, uint jumpMultiplierPerYear, uint kink_) override external { | |
require(msg.sender == owner, "only the owner may call this function."); | |
gapPerBlock = gapPerYear / blocksPerYear; | |
updateJumpRateModelInternal(0, 0, jumpMultiplierPerYear, kink_); | |
poke(); | |
} | |
/** | |
* @notice Calculates the current supply interest rate per block including the Dai savings rate | |
* @param cash The total amount of cash the market has | |
* @param borrows The total amount of borrows the market has outstanding | |
* @param reserves The total amnount of reserves the market has | |
* @param reserveFactorMantissa The current reserve factor the market has | |
* @return The supply rate per block (as a percentage, and scaled by BASE) | |
*/ | |
function getSupplyRate(uint cash, uint borrows, uint reserves, uint reserveFactorMantissa) override public view returns (uint) { | |
uint protocolRate = super.getSupplyRate(cash, borrows, reserves, reserveFactorMantissa); | |
uint underlying = cash + borrows - reserves; | |
if (underlying == 0) { | |
return protocolRate; | |
} else { | |
uint cashRate = cash * dsrPerBlock() / underlying; | |
return cashRate + protocolRate; | |
} | |
} | |
/** | |
* @notice Calculates the Dai savings rate per block | |
* @return The Dai savings rate per block (as a percentage, and scaled by BASE) | |
*/ | |
function dsrPerBlock() public view returns (uint) { | |
return (pot.dsr() - RAY_BASE) // scaled RAY_BASE aka RAY, and includes an extra "ONE" before subtraction | |
/ RAY_TO_BASE_SCALE // descale to BASE | |
* SECONDS_PER_BLOCK; // seconds per block | |
} | |
/** | |
* @notice Resets the baseRate and multiplier per block based on the stability fee and Dai savings rate | |
*/ | |
function poke() public { | |
(uint duty, ) = jug.ilks("ETH-A"); | |
uint stabilityFeePerBlock = (duty + jug.base() - RAY_BASE) / RAY_TO_BASE_SCALE * SECONDS_PER_BLOCK; | |
// We ensure the minimum borrow rate >= DSR / (1 - reserve factor) | |
baseRatePerBlock = dsrPerBlock() * BASE / assumedOneMinusReserveFactorMantissa; | |
// The roof borrow rate is max(base rate, stability fee) + gap, from which we derive the slope | |
if (baseRatePerBlock < stabilityFeePerBlock) { | |
multiplierPerBlock = (stabilityFeePerBlock - baseRatePerBlock + gapPerBlock) * BASE / kink; | |
} else { | |
multiplierPerBlock = gapPerBlock * BASE / kink; | |
} | |
emit NewInterestParams(baseRatePerBlock, multiplierPerBlock, jumpMultiplierPerBlock, kink); | |
} | |
} | |
/*** Maker Interfaces ***/ | |
interface PotLike { | |
function chi() external view returns (uint); | |
function dsr() external view returns (uint); | |
function rho() external view returns (uint); | |
function pie(address) external view returns (uint); | |
function drip() external returns (uint); | |
function join(uint) external; | |
function exit(uint) external; | |
} | |
contract JugLike { | |
// --- Data --- | |
struct Ilk { | |
uint256 duty; | |
uint256 rho; | |
} | |
mapping (bytes32 => Ilk) public ilks; | |
uint256 public base; | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
/** | |
* @title ERC 20 Token Standard Interface | |
* https://eips.ethereum.org/EIPS/eip-20 | |
*/ | |
interface EIP20Interface { | |
function name() external view returns (string memory); | |
function symbol() external view returns (string memory); | |
function decimals() external view returns (uint8); | |
/** | |
* @notice Get the total number of tokens in circulation | |
* @return The supply of tokens | |
*/ | |
function totalSupply() external view returns (uint256); | |
/** | |
* @notice Gets the balance of the specified address | |
* @param owner The address from which the balance will be retrieved | |
* @return balance The balance | |
*/ | |
function balanceOf(address owner) external view returns (uint256 balance); | |
/** | |
* @notice Transfer `amount` tokens from `msg.sender` to `dst` | |
* @param dst The address of the destination account | |
* @param amount The number of tokens to transfer | |
* @return success Whether or not the transfer succeeded | |
*/ | |
function transfer(address dst, uint256 amount) external returns (bool success); | |
/** | |
* @notice Transfer `amount` tokens from `src` to `dst` | |
* @param src The address of the source account | |
* @param dst The address of the destination account | |
* @param amount The number of tokens to transfer | |
* @return success Whether or not the transfer succeeded | |
*/ | |
function transferFrom(address src, address dst, uint256 amount) external returns (bool success); | |
/** | |
* @notice Approve `spender` to transfer up to `amount` from `src` | |
* @dev This will overwrite the approval amount for `spender` | |
* and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) | |
* @param spender The address of the account which may transfer tokens | |
* @param amount The number of tokens that are approved (-1 means infinite) | |
* @return success Whether or not the approval succeeded | |
*/ | |
function approve(address spender, uint256 amount) external returns (bool success); | |
/** | |
* @notice Get the current allowance from `owner` for `spender` | |
* @param owner The address of the account which owns the tokens to be spent | |
* @param spender The address of the account which may transfer tokens | |
* @return remaining The number of tokens allowed to be spent (-1 means infinite) | |
*/ | |
function allowance(address owner, address spender) external view returns (uint256 remaining); | |
event Transfer(address indexed from, address indexed to, uint256 amount); | |
event Approval(address indexed owner, address indexed spender, uint256 amount); | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
/** | |
* @title EIP20NonStandardInterface | |
* @dev Version of ERC20 with no return values for `transfer` and `transferFrom` | |
* See https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca | |
*/ | |
interface EIP20NonStandardInterface { | |
/** | |
* @notice Get the total number of tokens in circulation | |
* @return The supply of tokens | |
*/ | |
function totalSupply() external view returns (uint256); | |
/** | |
* @notice Gets the balance of the specified address | |
* @param owner The address from which the balance will be retrieved | |
* @return balance The balance | |
*/ | |
function balanceOf(address owner) external view returns (uint256 balance); | |
/// | |
/// !!!!!!!!!!!!!! | |
/// !!! NOTICE !!! `transfer` does not return a value, in violation of the ERC-20 specification | |
/// !!!!!!!!!!!!!! | |
/// | |
/** | |
* @notice Transfer `amount` tokens from `msg.sender` to `dst` | |
* @param dst The address of the destination account | |
* @param amount The number of tokens to transfer | |
*/ | |
function transfer(address dst, uint256 amount) external; | |
/// | |
/// !!!!!!!!!!!!!! | |
/// !!! NOTICE !!! `transferFrom` does not return a value, in violation of the ERC-20 specification | |
/// !!!!!!!!!!!!!! | |
/// | |
/** | |
* @notice Transfer `amount` tokens from `src` to `dst` | |
* @param src The address of the source account | |
* @param dst The address of the destination account | |
* @param amount The number of tokens to transfer | |
*/ | |
function transferFrom(address src, address dst, uint256 amount) external; | |
/** | |
* @notice Approve `spender` to transfer up to `amount` from `src` | |
* @dev This will overwrite the approval amount for `spender` | |
* and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) | |
* @param spender The address of the account which may transfer tokens | |
* @param amount The number of tokens that are approved | |
* @return success Whether or not the approval succeeded | |
*/ | |
function approve(address spender, uint256 amount) external returns (bool success); | |
/** | |
* @notice Get the current allowance from `owner` for `spender` | |
* @param owner The address of the account which owns the tokens to be spent | |
* @param spender The address of the account which may transfer tokens | |
* @return remaining The number of tokens allowed to be spent | |
*/ | |
function allowance(address owner, address spender) external view returns (uint256 remaining); | |
event Transfer(address indexed from, address indexed to, uint256 amount); | |
event Approval(address indexed owner, address indexed spender, uint256 amount); | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
contract ComptrollerErrorReporter { | |
enum Error { | |
NO_ERROR, | |
UNAUTHORIZED, | |
COMPTROLLER_MISMATCH, | |
INSUFFICIENT_SHORTFALL, | |
INSUFFICIENT_LIQUIDITY, | |
INVALID_CLOSE_FACTOR, | |
INVALID_COLLATERAL_FACTOR, | |
INVALID_LIQUIDATION_INCENTIVE, | |
MARKET_NOT_ENTERED, // no longer possible | |
MARKET_NOT_LISTED, | |
MARKET_ALREADY_LISTED, | |
MATH_ERROR, | |
NONZERO_BORROW_BALANCE, | |
PRICE_ERROR, | |
REJECTION, | |
SNAPSHOT_ERROR, | |
TOO_MANY_ASSETS, | |
TOO_MUCH_REPAY | |
} | |
enum FailureInfo { | |
ACCEPT_ADMIN_PENDING_ADMIN_CHECK, | |
ACCEPT_PENDING_IMPLEMENTATION_ADDRESS_CHECK, | |
EXIT_MARKET_BALANCE_OWED, | |
EXIT_MARKET_REJECTION, | |
SET_CLOSE_FACTOR_OWNER_CHECK, | |
SET_CLOSE_FACTOR_VALIDATION, | |
SET_COLLATERAL_FACTOR_OWNER_CHECK, | |
SET_COLLATERAL_FACTOR_NO_EXISTS, | |
SET_COLLATERAL_FACTOR_VALIDATION, | |
SET_COLLATERAL_FACTOR_WITHOUT_PRICE, | |
SET_IMPLEMENTATION_OWNER_CHECK, | |
SET_LIQUIDATION_INCENTIVE_OWNER_CHECK, | |
SET_LIQUIDATION_INCENTIVE_VALIDATION, | |
SET_MAX_ASSETS_OWNER_CHECK, | |
SET_PENDING_ADMIN_OWNER_CHECK, | |
SET_PENDING_IMPLEMENTATION_OWNER_CHECK, | |
SET_PRICE_ORACLE_OWNER_CHECK, | |
SUPPORT_MARKET_EXISTS, | |
SUPPORT_MARKET_OWNER_CHECK, | |
SET_PAUSE_GUARDIAN_OWNER_CHECK | |
} | |
/** | |
* @dev `error` corresponds to enum Error; `info` corresponds to enum FailureInfo, and `detail` is an arbitrary | |
* contract-specific code that enables us to report opaque error codes from upgradeable contracts. | |
**/ | |
event Failure(uint error, uint info, uint detail); | |
/** | |
* @dev use this when reporting a known error from the money market or a non-upgradeable collaborator | |
*/ | |
function fail(Error err, FailureInfo info) internal returns (uint) { | |
emit Failure(uint(err), uint(info), 0); | |
return uint(err); | |
} | |
/** | |
* @dev use this when reporting an opaque error from an upgradeable collaborator contract | |
*/ | |
function failOpaque(Error err, FailureInfo info, uint opaqueError) internal returns (uint) { | |
emit Failure(uint(err), uint(info), opaqueError); | |
return uint(err); | |
} | |
} | |
contract TokenErrorReporter { | |
uint public constant NO_ERROR = 0; // support legacy return codes | |
error TransferComptrollerRejection(uint256 errorCode); | |
error TransferNotAllowed(); | |
error TransferNotEnough(); | |
error TransferTooMuch(); | |
error MintComptrollerRejection(uint256 errorCode); | |
error MintFreshnessCheck(); | |
error RedeemComptrollerRejection(uint256 errorCode); | |
error RedeemFreshnessCheck(); | |
error RedeemTransferOutNotPossible(); | |
error BorrowComptrollerRejection(uint256 errorCode); | |
error BorrowFreshnessCheck(); | |
error BorrowCashNotAvailable(); | |
error RepayBorrowComptrollerRejection(uint256 errorCode); | |
error RepayBorrowFreshnessCheck(); | |
error LiquidateComptrollerRejection(uint256 errorCode); | |
error LiquidateFreshnessCheck(); | |
error LiquidateCollateralFreshnessCheck(); | |
error LiquidateAccrueBorrowInterestFailed(uint256 errorCode); | |
error LiquidateAccrueCollateralInterestFailed(uint256 errorCode); | |
error LiquidateLiquidatorIsBorrower(); | |
error LiquidateCloseAmountIsZero(); | |
error LiquidateCloseAmountIsUintMax(); | |
error LiquidateRepayBorrowFreshFailed(uint256 errorCode); | |
error LiquidateSeizeComptrollerRejection(uint256 errorCode); | |
error LiquidateSeizeLiquidatorIsBorrower(); | |
error AcceptAdminPendingAdminCheck(); | |
error SetComptrollerOwnerCheck(); | |
error SetPendingAdminOwnerCheck(); | |
error SetReserveFactorAdminCheck(); | |
error SetReserveFactorFreshCheck(); | |
error SetReserveFactorBoundsCheck(); | |
error AddReservesFactorFreshCheck(uint256 actualAddAmount); | |
error ReduceReservesAdminCheck(); | |
error ReduceReservesFreshCheck(); | |
error ReduceReservesCashNotAvailable(); | |
error ReduceReservesCashValidation(); | |
error SetInterestRateModelOwnerCheck(); | |
error SetInterestRateModelFreshCheck(); | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
/** | |
* @title Exponential module for storing fixed-precision decimals | |
* @author Compound | |
* @notice Exp is a struct which stores decimals with a fixed precision of 18 decimal places. | |
* Thus, if we wanted to store the 5.1, mantissa would store 5.1e18. That is: | |
* `Exp({mantissa: 5100000000000000000})`. | |
*/ | |
contract ExponentialNoError { | |
uint constant expScale = 1e18; | |
uint constant doubleScale = 1e36; | |
uint constant halfExpScale = expScale/2; | |
uint constant mantissaOne = expScale; | |
struct Exp { | |
uint mantissa; | |
} | |
struct Double { | |
uint mantissa; | |
} | |
/** | |
* @dev Truncates the given exp to a whole number value. | |
* For example, truncate(Exp{mantissa: 15 * expScale}) = 15 | |
*/ | |
function truncate(Exp memory exp) pure internal returns (uint) { | |
// Note: We are not using careful math here as we're performing a division that cannot fail | |
return exp.mantissa / expScale; | |
} | |
/** | |
* @dev Multiply an Exp by a scalar, then truncate to return an unsigned integer. | |
*/ | |
function mul_ScalarTruncate(Exp memory a, uint scalar) pure internal returns (uint) { | |
Exp memory product = mul_(a, scalar); | |
return truncate(product); | |
} | |
/** | |
* @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer. | |
*/ | |
function mul_ScalarTruncateAddUInt(Exp memory a, uint scalar, uint addend) pure internal returns (uint) { | |
Exp memory product = mul_(a, scalar); | |
return add_(truncate(product), addend); | |
} | |
/** | |
* @dev Checks if first Exp is less than second Exp. | |
*/ | |
function lessThanExp(Exp memory left, Exp memory right) pure internal returns (bool) { | |
return left.mantissa < right.mantissa; | |
} | |
/** | |
* @dev Checks if left Exp <= right Exp. | |
*/ | |
function lessThanOrEqualExp(Exp memory left, Exp memory right) pure internal returns (bool) { | |
return left.mantissa <= right.mantissa; | |
} | |
/** | |
* @dev Checks if left Exp > right Exp. | |
*/ | |
function greaterThanExp(Exp memory left, Exp memory right) pure internal returns (bool) { | |
return left.mantissa > right.mantissa; | |
} | |
/** | |
* @dev returns true if Exp is exactly zero | |
*/ | |
function isZeroExp(Exp memory value) pure internal returns (bool) { | |
return value.mantissa == 0; | |
} | |
function safe224(uint n, string memory errorMessage) pure internal returns (uint224) { | |
require(n < 2**224, errorMessage); | |
return uint224(n); | |
} | |
function safe32(uint n, string memory errorMessage) pure internal returns (uint32) { | |
require(n < 2**32, errorMessage); | |
return uint32(n); | |
} | |
function add_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { | |
return Exp({mantissa: add_(a.mantissa, b.mantissa)}); | |
} | |
function add_(Double memory a, Double memory b) pure internal returns (Double memory) { | |
return Double({mantissa: add_(a.mantissa, b.mantissa)}); | |
} | |
function add_(uint a, uint b) pure internal returns (uint) { | |
return a + b; | |
} | |
function sub_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { | |
return Exp({mantissa: sub_(a.mantissa, b.mantissa)}); | |
} | |
function sub_(Double memory a, Double memory b) pure internal returns (Double memory) { | |
return Double({mantissa: sub_(a.mantissa, b.mantissa)}); | |
} | |
function sub_(uint a, uint b) pure internal returns (uint) { | |
return a - b; | |
} | |
function mul_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { | |
return Exp({mantissa: mul_(a.mantissa, b.mantissa) / expScale}); | |
} | |
function mul_(Exp memory a, uint b) pure internal returns (Exp memory) { | |
return Exp({mantissa: mul_(a.mantissa, b)}); | |
} | |
function mul_(uint a, Exp memory b) pure internal returns (uint) { | |
return mul_(a, b.mantissa) / expScale; | |
} | |
function mul_(Double memory a, Double memory b) pure internal returns (Double memory) { | |
return Double({mantissa: mul_(a.mantissa, b.mantissa) / doubleScale}); | |
} | |
function mul_(Double memory a, uint b) pure internal returns (Double memory) { | |
return Double({mantissa: mul_(a.mantissa, b)}); | |
} | |
function mul_(uint a, Double memory b) pure internal returns (uint) { | |
return mul_(a, b.mantissa) / doubleScale; | |
} | |
function mul_(uint a, uint b) pure internal returns (uint) { | |
return a * b; | |
} | |
function div_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { | |
return Exp({mantissa: div_(mul_(a.mantissa, expScale), b.mantissa)}); | |
} | |
function div_(Exp memory a, uint b) pure internal returns (Exp memory) { | |
return Exp({mantissa: div_(a.mantissa, b)}); | |
} | |
function div_(uint a, Exp memory b) pure internal returns (uint) { | |
return div_(mul_(a, expScale), b.mantissa); | |
} | |
function div_(Double memory a, Double memory b) pure internal returns (Double memory) { | |
return Double({mantissa: div_(mul_(a.mantissa, doubleScale), b.mantissa)}); | |
} | |
function div_(Double memory a, uint b) pure internal returns (Double memory) { | |
return Double({mantissa: div_(a.mantissa, b)}); | |
} | |
function div_(uint a, Double memory b) pure internal returns (uint) { | |
return div_(mul_(a, doubleScale), b.mantissa); | |
} | |
function div_(uint a, uint b) pure internal returns (uint) { | |
return a / b; | |
} | |
function fraction(uint a, uint b) pure internal returns (Double memory) { | |
return Double({mantissa: div_(mul_(a, doubleScale), b)}); | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
contract GovernorAlpha { | |
/// @notice The name of this contract | |
string public constant name = "Compound Governor Alpha"; | |
/// @notice The number of votes in support of a proposal required in order for a quorum to be reached and for a vote to succeed | |
function quorumVotes() public pure returns (uint) { return 400000e18; } // 400,000 = 4% of Comp | |
/// @notice The number of votes required in order for a voter to become a proposer | |
function proposalThreshold() public pure returns (uint) { return 100000e18; } // 100,000 = 1% of Comp | |
/// @notice The maximum number of actions that can be included in a proposal | |
function proposalMaxOperations() public pure returns (uint) { return 10; } // 10 actions | |
/// @notice The delay before voting on a proposal may take place, once proposed | |
function votingDelay() public pure returns (uint) { return 1; } // 1 block | |
/// @notice The duration of voting on a proposal, in blocks | |
function votingPeriod() virtual public pure returns (uint) { return 17280; } // ~3 days in blocks (assuming 15s blocks) | |
/// @notice The address of the Compound Protocol Timelock | |
TimelockInterface public timelock; | |
/// @notice The address of the Compound governance token | |
CompInterface public comp; | |
/// @notice The address of the Governor Guardian | |
address public guardian; | |
/// @notice The total number of proposals | |
uint public proposalCount; | |
struct Proposal { | |
/// @notice Unique id for looking up a proposal | |
uint id; | |
/// @notice Creator of the proposal | |
address proposer; | |
/// @notice The timestamp that the proposal will be available for execution, set once the vote succeeds | |
uint eta; | |
/// @notice the ordered list of target addresses for calls to be made | |
address[] targets; | |
/// @notice The ordered list of values (i.e. msg.value) to be passed to the calls to be made | |
uint[] values; | |
/// @notice The ordered list of function signatures to be called | |
string[] signatures; | |
/// @notice The ordered list of calldata to be passed to each call | |
bytes[] calldatas; | |
/// @notice The block at which voting begins: holders must delegate their votes prior to this block | |
uint startBlock; | |
/// @notice The block at which voting ends: votes must be cast prior to this block | |
uint endBlock; | |
/// @notice Current number of votes in favor of this proposal | |
uint forVotes; | |
/// @notice Current number of votes in opposition to this proposal | |
uint againstVotes; | |
/// @notice Flag marking whether the proposal has been canceled | |
bool canceled; | |
/// @notice Flag marking whether the proposal has been executed | |
bool executed; | |
/// @notice Receipts of ballots for the entire set of voters | |
mapping (address => Receipt) receipts; | |
} | |
/// @notice Ballot receipt record for a voter | |
struct Receipt { | |
/// @notice Whether or not a vote has been cast | |
bool hasVoted; | |
/// @notice Whether or not the voter supports the proposal | |
bool support; | |
/// @notice The number of votes the voter had, which were cast | |
uint96 votes; | |
} | |
/// @notice Possible states that a proposal may be in | |
enum ProposalState { | |
Pending, | |
Active, | |
Canceled, | |
Defeated, | |
Succeeded, | |
Queued, | |
Expired, | |
Executed | |
} | |
/// @notice The official record of all proposals ever proposed | |
mapping (uint => Proposal) public proposals; | |
/// @notice The latest proposal for each proposer | |
mapping (address => uint) public latestProposalIds; | |
/// @notice The EIP-712 typehash for the contract's domain | |
bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); | |
/// @notice The EIP-712 typehash for the ballot struct used by the contract | |
bytes32 public constant BALLOT_TYPEHASH = keccak256("Ballot(uint256 proposalId,bool support)"); | |
/// @notice An event emitted when a new proposal is created | |
event ProposalCreated(uint id, address proposer, address[] targets, uint[] values, string[] signatures, bytes[] calldatas, uint startBlock, uint endBlock, string description); | |
/// @notice An event emitted when a vote has been cast on a proposal | |
event VoteCast(address voter, uint proposalId, bool support, uint votes); | |
/// @notice An event emitted when a proposal has been canceled | |
event ProposalCanceled(uint id); | |
/// @notice An event emitted when a proposal has been queued in the Timelock | |
event ProposalQueued(uint id, uint eta); | |
/// @notice An event emitted when a proposal has been executed in the Timelock | |
event ProposalExecuted(uint id); | |
constructor(address timelock_, address comp_, address guardian_) public { | |
timelock = TimelockInterface(timelock_); | |
comp = CompInterface(comp_); | |
guardian = guardian_; | |
} | |
function propose(address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas, string memory description) public returns (uint) { | |
require(comp.getPriorVotes(msg.sender, sub256(block.number, 1)) > proposalThreshold(), "GovernorAlpha::propose: proposer votes below proposal threshold"); | |
require(targets.length == values.length && targets.length == signatures.length && targets.length == calldatas.length, "GovernorAlpha::propose: proposal function information arity mismatch"); | |
require(targets.length != 0, "GovernorAlpha::propose: must provide actions"); | |
require(targets.length <= proposalMaxOperations(), "GovernorAlpha::propose: too many actions"); | |
uint latestProposalId = latestProposalIds[msg.sender]; | |
if (latestProposalId != 0) { | |
ProposalState proposersLatestProposalState = state(latestProposalId); | |
require(proposersLatestProposalState != ProposalState.Active, "GovernorAlpha::propose: one live proposal per proposer, found an already active proposal"); | |
require(proposersLatestProposalState != ProposalState.Pending, "GovernorAlpha::propose: one live proposal per proposer, found an already pending proposal"); | |
} | |
uint startBlock = add256(block.number, votingDelay()); | |
uint endBlock = add256(startBlock, votingPeriod()); | |
proposalCount++; | |
uint proposalId = proposalCount; | |
Proposal storage newProposal = proposals[proposalId]; | |
// This should never happen but add a check in case. | |
require(newProposal.id == 0, "GovernorAlpha::propose: ProposalID collsion"); | |
newProposal.id = proposalId; | |
newProposal.proposer = msg.sender; | |
newProposal.eta = 0; | |
newProposal.targets = targets; | |
newProposal.values = values; | |
newProposal.signatures = signatures; | |
newProposal.calldatas = calldatas; | |
newProposal.startBlock = startBlock; | |
newProposal.endBlock = endBlock; | |
newProposal.forVotes = 0; | |
newProposal.againstVotes = 0; | |
newProposal.canceled = false; | |
newProposal.executed = false; | |
latestProposalIds[newProposal.proposer] = newProposal.id; | |
emit ProposalCreated(newProposal.id, msg.sender, targets, values, signatures, calldatas, startBlock, endBlock, description); | |
return newProposal.id; | |
} | |
function queue(uint proposalId) public { | |
require(state(proposalId) == ProposalState.Succeeded, "GovernorAlpha::queue: proposal can only be queued if it is succeeded"); | |
Proposal storage proposal = proposals[proposalId]; | |
uint eta = add256(block.timestamp, timelock.delay()); | |
for (uint i = 0; i < proposal.targets.length; i++) { | |
_queueOrRevert(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], eta); | |
} | |
proposal.eta = eta; | |
emit ProposalQueued(proposalId, eta); | |
} | |
function _queueOrRevert(address target, uint value, string memory signature, bytes memory data, uint eta) internal { | |
require(!timelock.queuedTransactions(keccak256(abi.encode(target, value, signature, data, eta))), "GovernorAlpha::_queueOrRevert: proposal action already queued at eta"); | |
timelock.queueTransaction(target, value, signature, data, eta); | |
} | |
function execute(uint proposalId) public payable { | |
require(state(proposalId) == ProposalState.Queued, "GovernorAlpha::execute: proposal can only be executed if it is queued"); | |
Proposal storage proposal = proposals[proposalId]; | |
proposal.executed = true; | |
for (uint i = 0; i < proposal.targets.length; i++) { | |
timelock.executeTransaction{value: proposal.values[i]}(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], proposal.eta); | |
} | |
emit ProposalExecuted(proposalId); | |
} | |
function cancel(uint proposalId) public { | |
ProposalState state = state(proposalId); | |
require(state != ProposalState.Executed, "GovernorAlpha::cancel: cannot cancel executed proposal"); | |
Proposal storage proposal = proposals[proposalId]; | |
require(msg.sender == guardian || comp.getPriorVotes(proposal.proposer, sub256(block.number, 1)) < proposalThreshold(), "GovernorAlpha::cancel: proposer above threshold"); | |
proposal.canceled = true; | |
for (uint i = 0; i < proposal.targets.length; i++) { | |
timelock.cancelTransaction(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], proposal.eta); | |
} | |
emit ProposalCanceled(proposalId); | |
} | |
function getActions(uint proposalId) public view returns (address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas) { | |
Proposal storage p = proposals[proposalId]; | |
return (p.targets, p.values, p.signatures, p.calldatas); | |
} | |
function getReceipt(uint proposalId, address voter) public view returns (Receipt memory) { | |
return proposals[proposalId].receipts[voter]; | |
} | |
function state(uint proposalId) public view returns (ProposalState) { | |
require(proposalCount >= proposalId && proposalId > 0, "GovernorAlpha::state: invalid proposal id"); | |
Proposal storage proposal = proposals[proposalId]; | |
if (proposal.canceled) { | |
return ProposalState.Canceled; | |
} else if (block.number <= proposal.startBlock) { | |
return ProposalState.Pending; | |
} else if (block.number <= proposal.endBlock) { | |
return ProposalState.Active; | |
} else if (proposal.forVotes <= proposal.againstVotes || proposal.forVotes < quorumVotes()) { | |
return ProposalState.Defeated; | |
} else if (proposal.eta == 0) { | |
return ProposalState.Succeeded; | |
} else if (proposal.executed) { | |
return ProposalState.Executed; | |
} else if (block.timestamp >= add256(proposal.eta, timelock.GRACE_PERIOD())) { | |
return ProposalState.Expired; | |
} else { | |
return ProposalState.Queued; | |
} | |
} | |
function castVote(uint proposalId, bool support) public { | |
return _castVote(msg.sender, proposalId, support); | |
} | |
function castVoteBySig(uint proposalId, bool support, uint8 v, bytes32 r, bytes32 s) public { | |
bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this))); | |
bytes32 structHash = keccak256(abi.encode(BALLOT_TYPEHASH, proposalId, support)); | |
bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); | |
address signatory = ecrecover(digest, v, r, s); | |
require(signatory != address(0), "GovernorAlpha::castVoteBySig: invalid signature"); | |
return _castVote(signatory, proposalId, support); | |
} | |
function _castVote(address voter, uint proposalId, bool support) internal { | |
require(state(proposalId) == ProposalState.Active, "GovernorAlpha::_castVote: voting is closed"); | |
Proposal storage proposal = proposals[proposalId]; | |
Receipt storage receipt = proposal.receipts[voter]; | |
require(receipt.hasVoted == false, "GovernorAlpha::_castVote: voter already voted"); | |
uint96 votes = comp.getPriorVotes(voter, proposal.startBlock); | |
if (support) { | |
proposal.forVotes = add256(proposal.forVotes, votes); | |
} else { | |
proposal.againstVotes = add256(proposal.againstVotes, votes); | |
} | |
receipt.hasVoted = true; | |
receipt.support = support; | |
receipt.votes = votes; | |
emit VoteCast(voter, proposalId, support, votes); | |
} | |
function __acceptAdmin() public { | |
require(msg.sender == guardian, "GovernorAlpha::__acceptAdmin: sender must be gov guardian"); | |
timelock.acceptAdmin(); | |
} | |
function __abdicate() public { | |
require(msg.sender == guardian, "GovernorAlpha::__abdicate: sender must be gov guardian"); | |
guardian = address(0); | |
} | |
function __queueSetTimelockPendingAdmin(address newPendingAdmin, uint eta) public { | |
require(msg.sender == guardian, "GovernorAlpha::__queueSetTimelockPendingAdmin: sender must be gov guardian"); | |
timelock.queueTransaction(address(timelock), 0, "setPendingAdmin(address)", abi.encode(newPendingAdmin), eta); | |
} | |
function __executeSetTimelockPendingAdmin(address newPendingAdmin, uint eta) public { | |
require(msg.sender == guardian, "GovernorAlpha::__executeSetTimelockPendingAdmin: sender must be gov guardian"); | |
timelock.executeTransaction(address(timelock), 0, "setPendingAdmin(address)", abi.encode(newPendingAdmin), eta); | |
} | |
function add256(uint256 a, uint256 b) internal pure returns (uint) { | |
uint c = a + b; | |
require(c >= a, "addition overflow"); | |
return c; | |
} | |
function sub256(uint256 a, uint256 b) internal pure returns (uint) { | |
require(b <= a, "subtraction underflow"); | |
return a - b; | |
} | |
function getChainId() internal view returns (uint) { | |
uint chainId; | |
assembly { chainId := chainid() } | |
return chainId; | |
} | |
} | |
interface TimelockInterface { | |
function delay() external view returns (uint); | |
function GRACE_PERIOD() external view returns (uint); | |
function acceptAdmin() external; | |
function queuedTransactions(bytes32 hash) external view returns (bool); | |
function queueTransaction(address target, uint value, string calldata signature, bytes calldata data, uint eta) external returns (bytes32); | |
function cancelTransaction(address target, uint value, string calldata signature, bytes calldata data, uint eta) external; | |
function executeTransaction(address target, uint value, string calldata signature, bytes calldata data, uint eta) external payable returns (bytes memory); | |
} | |
interface CompInterface { | |
function getPriorVotes(address account, uint blockNumber) external view returns (uint96); | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./GovernorBravoInterfaces.sol"; | |
contract GovernorBravoDelegate is GovernorBravoDelegateStorageV2, GovernorBravoEvents { | |
/// @notice The name of this contract | |
string public constant name = "Compound Governor Bravo"; | |
/// @notice The minimum setable proposal threshold | |
uint public constant MIN_PROPOSAL_THRESHOLD = 1000e18; // 1,000 Comp | |
/// @notice The maximum setable proposal threshold | |
uint public constant MAX_PROPOSAL_THRESHOLD = 100000e18; //100,000 Comp | |
/// @notice The minimum setable voting period | |
uint public constant MIN_VOTING_PERIOD = 5760; // About 24 hours | |
/// @notice The max setable voting period | |
uint public constant MAX_VOTING_PERIOD = 80640; // About 2 weeks | |
/// @notice The min setable voting delay | |
uint public constant MIN_VOTING_DELAY = 1; | |
/// @notice The max setable voting delay | |
uint public constant MAX_VOTING_DELAY = 40320; // About 1 week | |
/// @notice The number of votes in support of a proposal required in order for a quorum to be reached and for a vote to succeed | |
uint public constant quorumVotes = 400000e18; // 400,000 = 4% of Comp | |
/// @notice The maximum number of actions that can be included in a proposal | |
uint public constant proposalMaxOperations = 10; // 10 actions | |
/// @notice The EIP-712 typehash for the contract's domain | |
bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); | |
/// @notice The EIP-712 typehash for the ballot struct used by the contract | |
bytes32 public constant BALLOT_TYPEHASH = keccak256("Ballot(uint256 proposalId,uint8 support)"); | |
/** | |
* @notice Used to initialize the contract during delegator constructor | |
* @param timelock_ The address of the Timelock | |
* @param comp_ The address of the COMP token | |
* @param votingPeriod_ The initial voting period | |
* @param votingDelay_ The initial voting delay | |
* @param proposalThreshold_ The initial proposal threshold | |
*/ | |
function initialize(address timelock_, address comp_, uint votingPeriod_, uint votingDelay_, uint proposalThreshold_) virtual public { | |
require(address(timelock) == address(0), "GovernorBravo::initialize: can only initialize once"); | |
require(msg.sender == admin, "GovernorBravo::initialize: admin only"); | |
require(timelock_ != address(0), "GovernorBravo::initialize: invalid timelock address"); | |
require(comp_ != address(0), "GovernorBravo::initialize: invalid comp address"); | |
require(votingPeriod_ >= MIN_VOTING_PERIOD && votingPeriod_ <= MAX_VOTING_PERIOD, "GovernorBravo::initialize: invalid voting period"); | |
require(votingDelay_ >= MIN_VOTING_DELAY && votingDelay_ <= MAX_VOTING_DELAY, "GovernorBravo::initialize: invalid voting delay"); | |
require(proposalThreshold_ >= MIN_PROPOSAL_THRESHOLD && proposalThreshold_ <= MAX_PROPOSAL_THRESHOLD, "GovernorBravo::initialize: invalid proposal threshold"); | |
timelock = TimelockInterface(timelock_); | |
comp = CompInterface(comp_); | |
votingPeriod = votingPeriod_; | |
votingDelay = votingDelay_; | |
proposalThreshold = proposalThreshold_; | |
} | |
/** | |
* @notice Function used to propose a new proposal. Sender must have delegates above the proposal threshold | |
* @param targets Target addresses for proposal calls | |
* @param values Eth values for proposal calls | |
* @param signatures Function signatures for proposal calls | |
* @param calldatas Calldatas for proposal calls | |
* @param description String description of the proposal | |
* @return Proposal id of new proposal | |
*/ | |
function propose(address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas, string memory description) public returns (uint) { | |
// Reject proposals before initiating as Governor | |
require(initialProposalId != 0, "GovernorBravo::propose: Governor Bravo not active"); | |
// Allow addresses above proposal threshold and whitelisted addresses to propose | |
require(comp.getPriorVotes(msg.sender, sub256(block.number, 1)) > proposalThreshold || isWhitelisted(msg.sender), "GovernorBravo::propose: proposer votes below proposal threshold"); | |
require(targets.length == values.length && targets.length == signatures.length && targets.length == calldatas.length, "GovernorBravo::propose: proposal function information arity mismatch"); | |
require(targets.length != 0, "GovernorBravo::propose: must provide actions"); | |
require(targets.length <= proposalMaxOperations, "GovernorBravo::propose: too many actions"); | |
uint latestProposalId = latestProposalIds[msg.sender]; | |
if (latestProposalId != 0) { | |
ProposalState proposersLatestProposalState = state(latestProposalId); | |
require(proposersLatestProposalState != ProposalState.Active, "GovernorBravo::propose: one live proposal per proposer, found an already active proposal"); | |
require(proposersLatestProposalState != ProposalState.Pending, "GovernorBravo::propose: one live proposal per proposer, found an already pending proposal"); | |
} | |
uint startBlock = add256(block.number, votingDelay); | |
uint endBlock = add256(startBlock, votingPeriod); | |
proposalCount++; | |
uint newProposalID = proposalCount; | |
Proposal storage newProposal = proposals[newProposalID]; | |
// This should never happen but add a check in case. | |
require(newProposal.id == 0, "GovernorBravo::propose: ProposalID collsion"); | |
newProposal.id = newProposalID; | |
newProposal.proposer = msg.sender; | |
newProposal.eta = 0; | |
newProposal.targets = targets; | |
newProposal.values = values; | |
newProposal.signatures = signatures; | |
newProposal.calldatas = calldatas; | |
newProposal.startBlock = startBlock; | |
newProposal.endBlock = endBlock; | |
newProposal.forVotes = 0; | |
newProposal.againstVotes = 0; | |
newProposal.abstainVotes = 0; | |
newProposal.canceled = false; | |
newProposal.executed = false; | |
latestProposalIds[newProposal.proposer] = newProposal.id; | |
emit ProposalCreated(newProposal.id, msg.sender, targets, values, signatures, calldatas, startBlock, endBlock, description); | |
return newProposal.id; | |
} | |
/** | |
* @notice Queues a proposal of state succeeded | |
* @param proposalId The id of the proposal to queue | |
*/ | |
function queue(uint proposalId) external { | |
require(state(proposalId) == ProposalState.Succeeded, "GovernorBravo::queue: proposal can only be queued if it is succeeded"); | |
Proposal storage proposal = proposals[proposalId]; | |
uint eta = add256(block.timestamp, timelock.delay()); | |
for (uint i = 0; i < proposal.targets.length; i++) { | |
queueOrRevertInternal(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], eta); | |
} | |
proposal.eta = eta; | |
emit ProposalQueued(proposalId, eta); | |
} | |
function queueOrRevertInternal(address target, uint value, string memory signature, bytes memory data, uint eta) internal { | |
require(!timelock.queuedTransactions(keccak256(abi.encode(target, value, signature, data, eta))), "GovernorBravo::queueOrRevertInternal: identical proposal action already queued at eta"); | |
timelock.queueTransaction(target, value, signature, data, eta); | |
} | |
/** | |
* @notice Executes a queued proposal if eta has passed | |
* @param proposalId The id of the proposal to execute | |
*/ | |
function execute(uint proposalId) external payable { | |
require(state(proposalId) == ProposalState.Queued, "GovernorBravo::execute: proposal can only be executed if it is queued"); | |
Proposal storage proposal = proposals[proposalId]; | |
proposal.executed = true; | |
for (uint i = 0; i < proposal.targets.length; i++) { | |
timelock.executeTransaction{value: proposal.values[i]}(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], proposal.eta); | |
} | |
emit ProposalExecuted(proposalId); | |
} | |
/** | |
* @notice Cancels a proposal only if sender is the proposer, or proposer delegates dropped below proposal threshold | |
* @param proposalId The id of the proposal to cancel | |
*/ | |
function cancel(uint proposalId) external { | |
require(state(proposalId) != ProposalState.Executed, "GovernorBravo::cancel: cannot cancel executed proposal"); | |
Proposal storage proposal = proposals[proposalId]; | |
// Proposer can cancel | |
if(msg.sender != proposal.proposer) { | |
// Whitelisted proposers can't be canceled for falling below proposal threshold | |
if(isWhitelisted(proposal.proposer)) { | |
require((comp.getPriorVotes(proposal.proposer, sub256(block.number, 1)) < proposalThreshold) && msg.sender == whitelistGuardian, "GovernorBravo::cancel: whitelisted proposer"); | |
} | |
else { | |
require((comp.getPriorVotes(proposal.proposer, sub256(block.number, 1)) < proposalThreshold), "GovernorBravo::cancel: proposer above threshold"); | |
} | |
} | |
proposal.canceled = true; | |
for (uint i = 0; i < proposal.targets.length; i++) { | |
timelock.cancelTransaction(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], proposal.eta); | |
} | |
emit ProposalCanceled(proposalId); | |
} | |
/** | |
* @notice Gets actions of a proposal | |
* @param proposalId the id of the proposal | |
* @return targets of the proposal actions | |
* @return values of the proposal actions | |
* @return signatures of the proposal actions | |
* @return calldatas of the proposal actions | |
*/ | |
function getActions(uint proposalId) external view returns (address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas) { | |
Proposal storage p = proposals[proposalId]; | |
return (p.targets, p.values, p.signatures, p.calldatas); | |
} | |
/** | |
* @notice Gets the receipt for a voter on a given proposal | |
* @param proposalId the id of proposal | |
* @param voter The address of the voter | |
* @return The voting receipt | |
*/ | |
function getReceipt(uint proposalId, address voter) external view returns (Receipt memory) { | |
return proposals[proposalId].receipts[voter]; | |
} | |
/** | |
* @notice Gets the state of a proposal | |
* @param proposalId The id of the proposal | |
* @return Proposal state | |
*/ | |
function state(uint proposalId) public view returns (ProposalState) { | |
require(proposalCount >= proposalId && proposalId > initialProposalId, "GovernorBravo::state: invalid proposal id"); | |
Proposal storage proposal = proposals[proposalId]; | |
if (proposal.canceled) { | |
return ProposalState.Canceled; | |
} else if (block.number <= proposal.startBlock) { | |
return ProposalState.Pending; | |
} else if (block.number <= proposal.endBlock) { | |
return ProposalState.Active; | |
} else if (proposal.forVotes <= proposal.againstVotes || proposal.forVotes < quorumVotes) { | |
return ProposalState.Defeated; | |
} else if (proposal.eta == 0) { | |
return ProposalState.Succeeded; | |
} else if (proposal.executed) { | |
return ProposalState.Executed; | |
} else if (block.timestamp >= add256(proposal.eta, timelock.GRACE_PERIOD())) { | |
return ProposalState.Expired; | |
} else { | |
return ProposalState.Queued; | |
} | |
} | |
/** | |
* @notice Cast a vote for a proposal | |
* @param proposalId The id of the proposal to vote on | |
* @param support The support value for the vote. 0=against, 1=for, 2=abstain | |
*/ | |
function castVote(uint proposalId, uint8 support) external { | |
emit VoteCast(msg.sender, proposalId, support, castVoteInternal(msg.sender, proposalId, support), ""); | |
} | |
/** | |
* @notice Cast a vote for a proposal with a reason | |
* @param proposalId The id of the proposal to vote on | |
* @param support The support value for the vote. 0=against, 1=for, 2=abstain | |
* @param reason The reason given for the vote by the voter | |
*/ | |
function castVoteWithReason(uint proposalId, uint8 support, string calldata reason) external { | |
emit VoteCast(msg.sender, proposalId, support, castVoteInternal(msg.sender, proposalId, support), reason); | |
} | |
/** | |
* @notice Cast a vote for a proposal by signature | |
* @dev External function that accepts EIP-712 signatures for voting on proposals. | |
*/ | |
function castVoteBySig(uint proposalId, uint8 support, uint8 v, bytes32 r, bytes32 s) external { | |
bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainIdInternal(), address(this))); | |
bytes32 structHash = keccak256(abi.encode(BALLOT_TYPEHASH, proposalId, support)); | |
bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); | |
address signatory = ecrecover(digest, v, r, s); | |
require(signatory != address(0), "GovernorBravo::castVoteBySig: invalid signature"); | |
emit VoteCast(signatory, proposalId, support, castVoteInternal(signatory, proposalId, support), ""); | |
} | |
/** | |
* @notice Internal function that caries out voting logic | |
* @param voter The voter that is casting their vote | |
* @param proposalId The id of the proposal to vote on | |
* @param support The support value for the vote. 0=against, 1=for, 2=abstain | |
* @return The number of votes cast | |
*/ | |
function castVoteInternal(address voter, uint proposalId, uint8 support) internal returns (uint96) { | |
require(state(proposalId) == ProposalState.Active, "GovernorBravo::castVoteInternal: voting is closed"); | |
require(support <= 2, "GovernorBravo::castVoteInternal: invalid vote type"); | |
Proposal storage proposal = proposals[proposalId]; | |
Receipt storage receipt = proposal.receipts[voter]; | |
require(receipt.hasVoted == false, "GovernorBravo::castVoteInternal: voter already voted"); | |
uint96 votes = comp.getPriorVotes(voter, proposal.startBlock); | |
if (support == 0) { | |
proposal.againstVotes = add256(proposal.againstVotes, votes); | |
} else if (support == 1) { | |
proposal.forVotes = add256(proposal.forVotes, votes); | |
} else if (support == 2) { | |
proposal.abstainVotes = add256(proposal.abstainVotes, votes); | |
} | |
receipt.hasVoted = true; | |
receipt.support = support; | |
receipt.votes = votes; | |
return votes; | |
} | |
/** | |
* @notice View function which returns if an account is whitelisted | |
* @param account Account to check white list status of | |
* @return If the account is whitelisted | |
*/ | |
function isWhitelisted(address account) public view returns (bool) { | |
return (whitelistAccountExpirations[account] > block.timestamp); | |
} | |
/** | |
* @notice Admin function for setting the voting delay | |
* @param newVotingDelay new voting delay, in blocks | |
*/ | |
function _setVotingDelay(uint newVotingDelay) external { | |
require(msg.sender == admin, "GovernorBravo::_setVotingDelay: admin only"); | |
require(newVotingDelay >= MIN_VOTING_DELAY && newVotingDelay <= MAX_VOTING_DELAY, "GovernorBravo::_setVotingDelay: invalid voting delay"); | |
uint oldVotingDelay = votingDelay; | |
votingDelay = newVotingDelay; | |
emit VotingDelaySet(oldVotingDelay,votingDelay); | |
} | |
/** | |
* @notice Admin function for setting the voting period | |
* @param newVotingPeriod new voting period, in blocks | |
*/ | |
function _setVotingPeriod(uint newVotingPeriod) external { | |
require(msg.sender == admin, "GovernorBravo::_setVotingPeriod: admin only"); | |
require(newVotingPeriod >= MIN_VOTING_PERIOD && newVotingPeriod <= MAX_VOTING_PERIOD, "GovernorBravo::_setVotingPeriod: invalid voting period"); | |
uint oldVotingPeriod = votingPeriod; | |
votingPeriod = newVotingPeriod; | |
emit VotingPeriodSet(oldVotingPeriod, votingPeriod); | |
} | |
/** | |
* @notice Admin function for setting the proposal threshold | |
* @dev newProposalThreshold must be greater than the hardcoded min | |
* @param newProposalThreshold new proposal threshold | |
*/ | |
function _setProposalThreshold(uint newProposalThreshold) external { | |
require(msg.sender == admin, "GovernorBravo::_setProposalThreshold: admin only"); | |
require(newProposalThreshold >= MIN_PROPOSAL_THRESHOLD && newProposalThreshold <= MAX_PROPOSAL_THRESHOLD, "GovernorBravo::_setProposalThreshold: invalid proposal threshold"); | |
uint oldProposalThreshold = proposalThreshold; | |
proposalThreshold = newProposalThreshold; | |
emit ProposalThresholdSet(oldProposalThreshold, proposalThreshold); | |
} | |
/** | |
* @notice Admin function for setting the whitelist expiration as a timestamp for an account. Whitelist status allows accounts to propose without meeting threshold | |
* @param account Account address to set whitelist expiration for | |
* @param expiration Expiration for account whitelist status as timestamp (if now < expiration, whitelisted) | |
*/ | |
function _setWhitelistAccountExpiration(address account, uint expiration) external { | |
require(msg.sender == admin || msg.sender == whitelistGuardian, "GovernorBravo::_setWhitelistAccountExpiration: admin only"); | |
whitelistAccountExpirations[account] = expiration; | |
emit WhitelistAccountExpirationSet(account, expiration); | |
} | |
/** | |
* @notice Admin function for setting the whitelistGuardian. WhitelistGuardian can cancel proposals from whitelisted addresses | |
* @param account Account to set whitelistGuardian to (0x0 to remove whitelistGuardian) | |
*/ | |
function _setWhitelistGuardian(address account) external { | |
require(msg.sender == admin, "GovernorBravo::_setWhitelistGuardian: admin only"); | |
address oldGuardian = whitelistGuardian; | |
whitelistGuardian = account; | |
emit WhitelistGuardianSet(oldGuardian, whitelistGuardian); | |
} | |
/** | |
* @notice Initiate the GovernorBravo contract | |
* @dev Admin only. Sets initial proposal id which initiates the contract, ensuring a continuous proposal id count | |
* @param governorAlpha The address for the Governor to continue the proposal id count from | |
*/ | |
function _initiate(address governorAlpha) external { | |
require(msg.sender == admin, "GovernorBravo::_initiate: admin only"); | |
require(initialProposalId == 0, "GovernorBravo::_initiate: can only initiate once"); | |
proposalCount = GovernorAlpha(governorAlpha).proposalCount(); | |
initialProposalId = proposalCount; | |
timelock.acceptAdmin(); | |
} | |
/** | |
* @notice Begins transfer of admin rights. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. | |
* @dev Admin function to begin change of admin. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. | |
* @param newPendingAdmin New pending admin. | |
*/ | |
function _setPendingAdmin(address newPendingAdmin) external { | |
// Check caller = admin | |
require(msg.sender == admin, "GovernorBravo:_setPendingAdmin: admin only"); | |
// Save current value, if any, for inclusion in log | |
address oldPendingAdmin = pendingAdmin; | |
// Store pendingAdmin with value newPendingAdmin | |
pendingAdmin = newPendingAdmin; | |
// Emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin) | |
emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin); | |
} | |
/** | |
* @notice Accepts transfer of admin rights. msg.sender must be pendingAdmin | |
* @dev Admin function for pending admin to accept role and update admin | |
*/ | |
function _acceptAdmin() external { | |
// Check caller is pendingAdmin and pendingAdmin ≠ address(0) | |
require(msg.sender == pendingAdmin && msg.sender != address(0), "GovernorBravo:_acceptAdmin: pending admin only"); | |
// Save current values for inclusion in log | |
address oldAdmin = admin; | |
address oldPendingAdmin = pendingAdmin; | |
// Store admin with value pendingAdmin | |
admin = pendingAdmin; | |
// Clear the pending value | |
pendingAdmin = address(0); | |
emit NewAdmin(oldAdmin, admin); | |
emit NewPendingAdmin(oldPendingAdmin, pendingAdmin); | |
} | |
function add256(uint256 a, uint256 b) internal pure returns (uint) { | |
uint c = a + b; | |
require(c >= a, "addition overflow"); | |
return c; | |
} | |
function sub256(uint256 a, uint256 b) internal pure returns (uint) { | |
require(b <= a, "subtraction underflow"); | |
return a - b; | |
} | |
function getChainIdInternal() internal view returns (uint) { | |
uint chainId; | |
assembly { chainId := chainid() } | |
return chainId; | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
pragma experimental ABIEncoderV2; | |
import "./GovernorBravoInterfaces.sol"; | |
contract GovernorBravoDelegate is GovernorBravoDelegateStorageV1, GovernorBravoEvents { | |
/// @notice The name of this contract | |
string public constant name = "Compound Governor Bravo"; | |
/// @notice The minimum setable proposal threshold | |
uint public constant MIN_PROPOSAL_THRESHOLD = 50000e18; // 50,000 Comp | |
/// @notice The maximum setable proposal threshold | |
uint public constant MAX_PROPOSAL_THRESHOLD = 100000e18; //100,000 Comp | |
/// @notice The minimum setable voting period | |
uint public constant MIN_VOTING_PERIOD = 5760; // About 24 hours | |
/// @notice The max setable voting period | |
uint public constant MAX_VOTING_PERIOD = 80640; // About 2 weeks | |
/// @notice The min setable voting delay | |
uint public constant MIN_VOTING_DELAY = 1; | |
/// @notice The max setable voting delay | |
uint public constant MAX_VOTING_DELAY = 40320; // About 1 week | |
/// @notice The number of votes in support of a proposal required in order for a quorum to be reached and for a vote to succeed | |
uint public constant quorumVotes = 400000e18; // 400,000 = 4% of Comp | |
/// @notice The maximum number of actions that can be included in a proposal | |
uint public constant proposalMaxOperations = 10; // 10 actions | |
/// @notice The EIP-712 typehash for the contract's domain | |
bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); | |
/// @notice The EIP-712 typehash for the ballot struct used by the contract | |
bytes32 public constant BALLOT_TYPEHASH = keccak256("Ballot(uint256 proposalId,uint8 support)"); | |
/** | |
* @notice Used to initialize the contract during delegator constructor | |
* @param timelock_ The address of the Timelock | |
* @param comp_ The address of the COMP token | |
* @param votingPeriod_ The initial voting period | |
* @param votingDelay_ The initial voting delay | |
* @param proposalThreshold_ The initial proposal threshold | |
*/ | |
function initialize(address timelock_, address comp_, uint votingPeriod_, uint votingDelay_, uint proposalThreshold_) public { | |
require(address(timelock) == address(0), "GovernorBravo::initialize: can only initialize once"); | |
require(msg.sender == admin, "GovernorBravo::initialize: admin only"); | |
require(timelock_ != address(0), "GovernorBravo::initialize: invalid timelock address"); | |
require(comp_ != address(0), "GovernorBravo::initialize: invalid comp address"); | |
require(votingPeriod_ >= MIN_VOTING_PERIOD && votingPeriod_ <= MAX_VOTING_PERIOD, "GovernorBravo::initialize: invalid voting period"); | |
require(votingDelay_ >= MIN_VOTING_DELAY && votingDelay_ <= MAX_VOTING_DELAY, "GovernorBravo::initialize: invalid voting delay"); | |
require(proposalThreshold_ >= MIN_PROPOSAL_THRESHOLD && proposalThreshold_ <= MAX_PROPOSAL_THRESHOLD, "GovernorBravo::initialize: invalid proposal threshold"); | |
timelock = TimelockInterface(timelock_); | |
comp = CompInterface(comp_); | |
votingPeriod = votingPeriod_; | |
votingDelay = votingDelay_; | |
proposalThreshold = proposalThreshold_; | |
} | |
/** | |
* @notice Function used to propose a new proposal. Sender must have delegates above the proposal threshold | |
* @param targets Target addresses for proposal calls | |
* @param values Eth values for proposal calls | |
* @param signatures Function signatures for proposal calls | |
* @param calldatas Calldatas for proposal calls | |
* @param description String description of the proposal | |
* @return Proposal id of new proposal | |
*/ | |
function propose(address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas, string memory description) public returns (uint) { | |
// Reject proposals before initiating as Governor | |
require(initialProposalId != 0, "GovernorBravo::propose: Governor Bravo not active"); | |
require(comp.getPriorVotes(msg.sender, sub256(block.number, 1)) > proposalThreshold, "GovernorBravo::propose: proposer votes below proposal threshold"); | |
require(targets.length == values.length && targets.length == signatures.length && targets.length == calldatas.length, "GovernorBravo::propose: proposal function information arity mismatch"); | |
require(targets.length != 0, "GovernorBravo::propose: must provide actions"); | |
require(targets.length <= proposalMaxOperations, "GovernorBravo::propose: too many actions"); | |
uint latestProposalId = latestProposalIds[msg.sender]; | |
if (latestProposalId != 0) { | |
ProposalState proposersLatestProposalState = state(latestProposalId); | |
require(proposersLatestProposalState != ProposalState.Active, "GovernorBravo::propose: one live proposal per proposer, found an already active proposal"); | |
require(proposersLatestProposalState != ProposalState.Pending, "GovernorBravo::propose: one live proposal per proposer, found an already pending proposal"); | |
} | |
uint startBlock = add256(block.number, votingDelay); | |
uint endBlock = add256(startBlock, votingPeriod); | |
proposalCount++; | |
Proposal storage newProposal = proposals[proposalCount]; | |
// This should never happen but add a check in case. | |
require(newProposal.id == 0, "GovernorBravo::propose: ProposalID collsion"); | |
newProposal.id = proposalCount; | |
newProposal.proposer = msg.sender; | |
newProposal.eta = 0; | |
newProposal.targets = targets; | |
newProposal.values = values; | |
newProposal.signatures = signatures; | |
newProposal.calldatas = calldatas; | |
newProposal.startBlock = startBlock; | |
newProposal.endBlock = endBlock; | |
newProposal.forVotes = 0; | |
newProposal.againstVotes = 0; | |
newProposal.abstainVotes = 0; | |
newProposal.canceled = false; | |
newProposal.executed = false; | |
latestProposalIds[newProposal.proposer] = newProposal.id; | |
emit ProposalCreated(newProposal.id, msg.sender, targets, values, signatures, calldatas, startBlock, endBlock, description); | |
return newProposal.id; | |
} | |
/** | |
* @notice Queues a proposal of state succeeded | |
* @param proposalId The id of the proposal to queue | |
*/ | |
function queue(uint proposalId) external { | |
require(state(proposalId) == ProposalState.Succeeded, "GovernorBravo::queue: proposal can only be queued if it is succeeded"); | |
Proposal storage proposal = proposals[proposalId]; | |
uint eta = add256(block.timestamp, timelock.delay()); | |
for (uint i = 0; i < proposal.targets.length; i++) { | |
queueOrRevertInternal(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], eta); | |
} | |
proposal.eta = eta; | |
emit ProposalQueued(proposalId, eta); | |
} | |
function queueOrRevertInternal(address target, uint value, string memory signature, bytes memory data, uint eta) internal { | |
require(!timelock.queuedTransactions(keccak256(abi.encode(target, value, signature, data, eta))), "GovernorBravo::queueOrRevertInternal: identical proposal action already queued at eta"); | |
timelock.queueTransaction(target, value, signature, data, eta); | |
} | |
/** | |
* @notice Executes a queued proposal if eta has passed | |
* @param proposalId The id of the proposal to execute | |
*/ | |
function execute(uint proposalId) external payable { | |
require(state(proposalId) == ProposalState.Queued, "GovernorBravo::execute: proposal can only be executed if it is queued"); | |
Proposal storage proposal = proposals[proposalId]; | |
proposal.executed = true; | |
for (uint i = 0; i < proposal.targets.length; i++) { | |
timelock.executeTransaction{value: proposal.values[i]}(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], proposal.eta); | |
} | |
emit ProposalExecuted(proposalId); | |
} | |
/** | |
* @notice Cancels a proposal only if sender is the proposer, or proposer delegates dropped below proposal threshold | |
* @param proposalId The id of the proposal to cancel | |
*/ | |
function cancel(uint proposalId) external { | |
require(state(proposalId) != ProposalState.Executed, "GovernorBravo::cancel: cannot cancel executed proposal"); | |
Proposal storage proposal = proposals[proposalId]; | |
require(msg.sender == proposal.proposer || comp.getPriorVotes(proposal.proposer, sub256(block.number, 1)) < proposalThreshold, "GovernorBravo::cancel: proposer above threshold"); | |
proposal.canceled = true; | |
for (uint i = 0; i < proposal.targets.length; i++) { | |
timelock.cancelTransaction(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], proposal.eta); | |
} | |
emit ProposalCanceled(proposalId); | |
} | |
/** | |
* @notice Gets actions of a proposal | |
* @param proposalId the id of the proposal | |
* @return targets of the proposal actions | |
* @return values of the proposal actions | |
* @return signatures of the proposal actions | |
* @return calldatas of the proposal actions | |
*/ | |
function getActions(uint proposalId) external view returns (address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas) { | |
Proposal storage p = proposals[proposalId]; | |
return (p.targets, p.values, p.signatures, p.calldatas); | |
} | |
/** | |
* @notice Gets the receipt for a voter on a given proposal | |
* @param proposalId the id of proposal | |
* @param voter The address of the voter | |
* @return The voting receipt | |
*/ | |
function getReceipt(uint proposalId, address voter) external view returns (Receipt memory) { | |
return proposals[proposalId].receipts[voter]; | |
} | |
/** | |
* @notice Gets the state of a proposal | |
* @param proposalId The id of the proposal | |
* @return Proposal state | |
*/ | |
function state(uint proposalId) public view returns (ProposalState) { | |
require(proposalCount >= proposalId && proposalId > initialProposalId, "GovernorBravo::state: invalid proposal id"); | |
Proposal storage proposal = proposals[proposalId]; | |
if (proposal.canceled) { | |
return ProposalState.Canceled; | |
} else if (block.number <= proposal.startBlock) { | |
return ProposalState.Pending; | |
} else if (block.number <= proposal.endBlock) { | |
return ProposalState.Active; | |
} else if (proposal.forVotes <= proposal.againstVotes || proposal.forVotes < quorumVotes) { | |
return ProposalState.Defeated; | |
} else if (proposal.eta == 0) { | |
return ProposalState.Succeeded; | |
} else if (proposal.executed) { | |
return ProposalState.Executed; | |
} else if (block.timestamp >= add256(proposal.eta, timelock.GRACE_PERIOD())) { | |
return ProposalState.Expired; | |
} else { | |
return ProposalState.Queued; | |
} | |
} | |
/** | |
* @notice Cast a vote for a proposal | |
* @param proposalId The id of the proposal to vote on | |
* @param support The support value for the vote. 0=against, 1=for, 2=abstain | |
*/ | |
function castVote(uint proposalId, uint8 support) external { | |
emit VoteCast(msg.sender, proposalId, support, castVoteInternal(msg.sender, proposalId, support), ""); | |
} | |
/** | |
* @notice Cast a vote for a proposal with a reason | |
* @param proposalId The id of the proposal to vote on | |
* @param support The support value for the vote. 0=against, 1=for, 2=abstain | |
* @param reason The reason given for the vote by the voter | |
*/ | |
function castVoteWithReason(uint proposalId, uint8 support, string calldata reason) external { | |
emit VoteCast(msg.sender, proposalId, support, castVoteInternal(msg.sender, proposalId, support), reason); | |
} | |
/** | |
* @notice Cast a vote for a proposal by signature | |
* @dev External function that accepts EIP-712 signatures for voting on proposals. | |
*/ | |
function castVoteBySig(uint proposalId, uint8 support, uint8 v, bytes32 r, bytes32 s) external { | |
bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainIdInternal(), address(this))); | |
bytes32 structHash = keccak256(abi.encode(BALLOT_TYPEHASH, proposalId, support)); | |
bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); | |
address signatory = ecrecover(digest, v, r, s); | |
require(signatory != address(0), "GovernorBravo::castVoteBySig: invalid signature"); | |
emit VoteCast(signatory, proposalId, support, castVoteInternal(signatory, proposalId, support), ""); | |
} | |
/** | |
* @notice Internal function that caries out voting logic | |
* @param voter The voter that is casting their vote | |
* @param proposalId The id of the proposal to vote on | |
* @param support The support value for the vote. 0=against, 1=for, 2=abstain | |
* @return The number of votes cast | |
*/ | |
function castVoteInternal(address voter, uint proposalId, uint8 support) internal returns (uint96) { | |
require(state(proposalId) == ProposalState.Active, "GovernorBravo::castVoteInternal: voting is closed"); | |
require(support <= 2, "GovernorBravo::castVoteInternal: invalid vote type"); | |
Proposal storage proposal = proposals[proposalId]; | |
Receipt storage receipt = proposal.receipts[voter]; | |
require(receipt.hasVoted == false, "GovernorBravo::castVoteInternal: voter already voted"); | |
uint96 votes = comp.getPriorVotes(voter, proposal.startBlock); | |
if (support == 0) { | |
proposal.againstVotes = add256(proposal.againstVotes, votes); | |
} else if (support == 1) { | |
proposal.forVotes = add256(proposal.forVotes, votes); | |
} else if (support == 2) { | |
proposal.abstainVotes = add256(proposal.abstainVotes, votes); | |
} | |
receipt.hasVoted = true; | |
receipt.support = support; | |
receipt.votes = votes; | |
return votes; | |
} | |
/** | |
* @notice Admin function for setting the voting delay | |
* @param newVotingDelay new voting delay, in blocks | |
*/ | |
function _setVotingDelay(uint newVotingDelay) external { | |
require(msg.sender == admin, "GovernorBravo::_setVotingDelay: admin only"); | |
require(newVotingDelay >= MIN_VOTING_DELAY && newVotingDelay <= MAX_VOTING_DELAY, "GovernorBravo::_setVotingDelay: invalid voting delay"); | |
uint oldVotingDelay = votingDelay; | |
votingDelay = newVotingDelay; | |
emit VotingDelaySet(oldVotingDelay,votingDelay); | |
} | |
/** | |
* @notice Admin function for setting the voting period | |
* @param newVotingPeriod new voting period, in blocks | |
*/ | |
function _setVotingPeriod(uint newVotingPeriod) external { | |
require(msg.sender == admin, "GovernorBravo::_setVotingPeriod: admin only"); | |
require(newVotingPeriod >= MIN_VOTING_PERIOD && newVotingPeriod <= MAX_VOTING_PERIOD, "GovernorBravo::_setVotingPeriod: invalid voting period"); | |
uint oldVotingPeriod = votingPeriod; | |
votingPeriod = newVotingPeriod; | |
emit VotingPeriodSet(oldVotingPeriod, votingPeriod); | |
} | |
/** | |
* @notice Admin function for setting the proposal threshold | |
* @dev newProposalThreshold must be greater than the hardcoded min | |
* @param newProposalThreshold new proposal threshold | |
*/ | |
function _setProposalThreshold(uint newProposalThreshold) external { | |
require(msg.sender == admin, "GovernorBravo::_setProposalThreshold: admin only"); | |
require(newProposalThreshold >= MIN_PROPOSAL_THRESHOLD && newProposalThreshold <= MAX_PROPOSAL_THRESHOLD, "GovernorBravo::_setProposalThreshold: invalid proposal threshold"); | |
uint oldProposalThreshold = proposalThreshold; | |
proposalThreshold = newProposalThreshold; | |
emit ProposalThresholdSet(oldProposalThreshold, proposalThreshold); | |
} | |
/** | |
* @notice Initiate the GovernorBravo contract | |
* @dev Admin only. Sets initial proposal id which initiates the contract, ensuring a continuous proposal id count | |
* @param governorAlpha The address for the Governor to continue the proposal id count from | |
*/ | |
function _initiate(address governorAlpha) external { | |
require(msg.sender == admin, "GovernorBravo::_initiate: admin only"); | |
require(initialProposalId == 0, "GovernorBravo::_initiate: can only initiate once"); | |
proposalCount = GovernorAlpha(governorAlpha).proposalCount(); | |
initialProposalId = proposalCount; | |
timelock.acceptAdmin(); | |
} | |
/** | |
* @notice Begins transfer of admin rights. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. | |
* @dev Admin function to begin change of admin. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. | |
* @param newPendingAdmin New pending admin. | |
*/ | |
function _setPendingAdmin(address newPendingAdmin) external { | |
// Check caller = admin | |
require(msg.sender == admin, "GovernorBravo:_setPendingAdmin: admin only"); | |
// Save current value, if any, for inclusion in log | |
address oldPendingAdmin = pendingAdmin; | |
// Store pendingAdmin with value newPendingAdmin | |
pendingAdmin = newPendingAdmin; | |
// Emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin) | |
emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin); | |
} | |
/** | |
* @notice Accepts transfer of admin rights. msg.sender must be pendingAdmin | |
* @dev Admin function for pending admin to accept role and update admin | |
*/ | |
function _acceptAdmin() external { | |
// Check caller is pendingAdmin and pendingAdmin ≠ address(0) | |
require(msg.sender == pendingAdmin && msg.sender != address(0), "GovernorBravo:_acceptAdmin: pending admin only"); | |
// Save current values for inclusion in log | |
address oldAdmin = admin; | |
address oldPendingAdmin = pendingAdmin; | |
// Store admin with value pendingAdmin | |
admin = pendingAdmin; | |
// Clear the pending value | |
pendingAdmin = address(0); | |
emit NewAdmin(oldAdmin, admin); | |
emit NewPendingAdmin(oldPendingAdmin, pendingAdmin); | |
} | |
function add256(uint256 a, uint256 b) internal pure returns (uint) { | |
uint c = a + b; | |
require(c >= a, "addition overflow"); | |
return c; | |
} | |
function sub256(uint256 a, uint256 b) internal pure returns (uint) { | |
require(b <= a, "subtraction underflow"); | |
return a - b; | |
} | |
function getChainIdInternal() internal view returns (uint) { | |
uint chainId; | |
assembly { chainId := chainid() } | |
return chainId; | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
pragma experimental ABIEncoderV2; | |
import "./GovernorBravoInterfaces.sol"; | |
contract GovernorBravoDelegate is GovernorBravoDelegateStorageV2, GovernorBravoEvents { | |
/// @notice The name of this contract | |
string public constant name = "Compound Governor Bravo"; | |
/// @notice The minimum setable proposal threshold | |
uint public constant MIN_PROPOSAL_THRESHOLD = 50000e18; // 50,000 Comp | |
/// @notice The maximum setable proposal threshold | |
uint public constant MAX_PROPOSAL_THRESHOLD = 100000e18; //100,000 Comp | |
/// @notice The minimum setable voting period | |
uint public constant MIN_VOTING_PERIOD = 5760; // About 24 hours | |
/// @notice The max setable voting period | |
uint public constant MAX_VOTING_PERIOD = 80640; // About 2 weeks | |
/// @notice The min setable voting delay | |
uint public constant MIN_VOTING_DELAY = 1; | |
/// @notice The max setable voting delay | |
uint public constant MAX_VOTING_DELAY = 40320; // About 1 week | |
/// @notice The number of votes in support of a proposal required in order for a quorum to be reached and for a vote to succeed | |
uint public constant quorumVotes = 400000e18; // 400,000 = 4% of Comp | |
/// @notice The maximum number of actions that can be included in a proposal | |
uint public constant proposalMaxOperations = 10; // 10 actions | |
/// @notice The EIP-712 typehash for the contract's domain | |
bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); | |
/// @notice The EIP-712 typehash for the ballot struct used by the contract | |
bytes32 public constant BALLOT_TYPEHASH = keccak256("Ballot(uint256 proposalId,uint8 support)"); | |
/** | |
* @notice Used to initialize the contract during delegator constructor | |
* @param timelock_ The address of the Timelock | |
* @param comp_ The address of the COMP token | |
* @param votingPeriod_ The initial voting period | |
* @param votingDelay_ The initial voting delay | |
* @param proposalThreshold_ The initial proposal threshold | |
*/ | |
function initialize(address timelock_, address comp_, uint votingPeriod_, uint votingDelay_, uint proposalThreshold_) public { | |
require(address(timelock) == address(0), "GovernorBravo::initialize: can only initialize once"); | |
require(msg.sender == admin, "GovernorBravo::initialize: admin only"); | |
require(timelock_ != address(0), "GovernorBravo::initialize: invalid timelock address"); | |
require(comp_ != address(0), "GovernorBravo::initialize: invalid comp address"); | |
require(votingPeriod_ >= MIN_VOTING_PERIOD && votingPeriod_ <= MAX_VOTING_PERIOD, "GovernorBravo::initialize: invalid voting period"); | |
require(votingDelay_ >= MIN_VOTING_DELAY && votingDelay_ <= MAX_VOTING_DELAY, "GovernorBravo::initialize: invalid voting delay"); | |
require(proposalThreshold_ >= MIN_PROPOSAL_THRESHOLD && proposalThreshold_ <= MAX_PROPOSAL_THRESHOLD, "GovernorBravo::initialize: invalid proposal threshold"); | |
timelock = TimelockInterface(timelock_); | |
comp = CompInterface(comp_); | |
votingPeriod = votingPeriod_; | |
votingDelay = votingDelay_; | |
proposalThreshold = proposalThreshold_; | |
} | |
/** | |
* @notice Function used to propose a new proposal. Sender must have delegates above the proposal threshold | |
* @param targets Target addresses for proposal calls | |
* @param values Eth values for proposal calls | |
* @param signatures Function signatures for proposal calls | |
* @param calldatas Calldatas for proposal calls | |
* @param description String description of the proposal | |
* @return Proposal id of new proposal | |
*/ | |
function propose(address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas, string memory description) public returns (uint) { | |
// Reject proposals before initiating as Governor | |
require(initialProposalId != 0, "GovernorBravo::propose: Governor Bravo not active"); | |
// Allow addresses above proposal threshold and whitelisted addresses to propose | |
require(comp.getPriorVotes(msg.sender, sub256(block.number, 1)) > proposalThreshold || isWhitelisted(msg.sender), "GovernorBravo::propose: proposer votes below proposal threshold"); | |
require(targets.length == values.length && targets.length == signatures.length && targets.length == calldatas.length, "GovernorBravo::propose: proposal function information arity mismatch"); | |
require(targets.length != 0, "GovernorBravo::propose: must provide actions"); | |
require(targets.length <= proposalMaxOperations, "GovernorBravo::propose: too many actions"); | |
uint latestProposalId = latestProposalIds[msg.sender]; | |
if (latestProposalId != 0) { | |
ProposalState proposersLatestProposalState = state(latestProposalId); | |
require(proposersLatestProposalState != ProposalState.Active, "GovernorBravo::propose: one live proposal per proposer, found an already active proposal"); | |
require(proposersLatestProposalState != ProposalState.Pending, "GovernorBravo::propose: one live proposal per proposer, found an already pending proposal"); | |
} | |
uint startBlock = add256(block.number, votingDelay); | |
uint endBlock = add256(startBlock, votingPeriod); | |
proposalCount++; | |
Proposal storage newProposal = proposals[proposalCount]; | |
// This should never happen but add a check in case. | |
require(newProposal.id == 0, "GovernorBravo::propose: ProposalID collsion"); | |
newProposal.id = proposalCount; | |
newProposal.proposer = msg.sender; | |
newProposal.eta = 0; | |
newProposal.targets = targets; | |
newProposal.values = values; | |
newProposal.signatures = signatures; | |
newProposal.calldatas = calldatas; | |
newProposal.startBlock = startBlock; | |
newProposal.endBlock = endBlock; | |
newProposal.forVotes = 0; | |
newProposal.againstVotes = 0; | |
newProposal.abstainVotes = 0; | |
newProposal.canceled = false; | |
newProposal.executed = false; | |
latestProposalIds[newProposal.proposer] = newProposal.id; | |
emit ProposalCreated(newProposal.id, msg.sender, targets, values, signatures, calldatas, startBlock, endBlock, description); | |
return newProposal.id; | |
} | |
/** | |
* @notice Queues a proposal of state succeeded | |
* @param proposalId The id of the proposal to queue | |
*/ | |
function queue(uint proposalId) external { | |
require(state(proposalId) == ProposalState.Succeeded, "GovernorBravo::queue: proposal can only be queued if it is succeeded"); | |
Proposal storage proposal = proposals[proposalId]; | |
uint eta = add256(block.timestamp, timelock.delay()); | |
for (uint i = 0; i < proposal.targets.length; i++) { | |
queueOrRevertInternal(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], eta); | |
} | |
proposal.eta = eta; | |
emit ProposalQueued(proposalId, eta); | |
} | |
function queueOrRevertInternal(address target, uint value, string memory signature, bytes memory data, uint eta) internal { | |
require(!timelock.queuedTransactions(keccak256(abi.encode(target, value, signature, data, eta))), "GovernorBravo::queueOrRevertInternal: identical proposal action already queued at eta"); | |
timelock.queueTransaction(target, value, signature, data, eta); | |
} | |
/** | |
* @notice Executes a queued proposal if eta has passed | |
* @param proposalId The id of the proposal to execute | |
*/ | |
function execute(uint proposalId) external payable { | |
require(state(proposalId) == ProposalState.Queued, "GovernorBravo::execute: proposal can only be executed if it is queued"); | |
Proposal storage proposal = proposals[proposalId]; | |
proposal.executed = true; | |
for (uint i = 0; i < proposal.targets.length; i++) { | |
timelock.executeTransaction{value:proposal.values[i]}(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], proposal.eta); | |
} | |
emit ProposalExecuted(proposalId); | |
} | |
/** | |
* @notice Cancels a proposal only if sender is the proposer, or proposer delegates dropped below proposal threshold | |
* @param proposalId The id of the proposal to cancel | |
*/ | |
function cancel(uint proposalId) external { | |
require(state(proposalId) != ProposalState.Executed, "GovernorBravo::cancel: cannot cancel executed proposal"); | |
Proposal storage proposal = proposals[proposalId]; | |
// Proposer can cancel | |
if(msg.sender != proposal.proposer) { | |
// Whitelisted proposers can't be canceled for falling below proposal threshold | |
if(isWhitelisted(proposal.proposer)) { | |
require((comp.getPriorVotes(proposal.proposer, sub256(block.number, 1)) < proposalThreshold) && msg.sender == whitelistGuardian, "GovernorBravo::cancel: whitelisted proposer"); | |
} | |
else { | |
require((comp.getPriorVotes(proposal.proposer, sub256(block.number, 1)) < proposalThreshold), "GovernorBravo::cancel: proposer above threshold"); | |
} | |
} | |
proposal.canceled = true; | |
for (uint i = 0; i < proposal.targets.length; i++) { | |
timelock.cancelTransaction(proposal.targets[i], proposal.values[i], proposal.signatures[i], proposal.calldatas[i], proposal.eta); | |
} | |
emit ProposalCanceled(proposalId); | |
} | |
/** | |
* @notice Gets actions of a proposal | |
* @param proposalId the id of the proposal | |
* @return targets of the proposal actions | |
* @return values of the proposal actions | |
* @return signatures of the proposal actions | |
* @return calldatas of the proposal actions | |
*/ | |
function getActions(uint proposalId) external view returns (address[] memory targets, uint[] memory values, string[] memory signatures, bytes[] memory calldatas) { | |
Proposal storage p = proposals[proposalId]; | |
return (p.targets, p.values, p.signatures, p.calldatas); | |
} | |
/** | |
* @notice Gets the receipt for a voter on a given proposal | |
* @param proposalId the id of proposal | |
* @param voter The address of the voter | |
* @return The voting receipt | |
*/ | |
function getReceipt(uint proposalId, address voter) external view returns (Receipt memory) { | |
return proposals[proposalId].receipts[voter]; | |
} | |
/** | |
* @notice Gets the state of a proposal | |
* @param proposalId The id of the proposal | |
* @return Proposal state | |
*/ | |
function state(uint proposalId) public view returns (ProposalState) { | |
require(proposalCount >= proposalId && proposalId > initialProposalId, "GovernorBravo::state: invalid proposal id"); | |
Proposal storage proposal = proposals[proposalId]; | |
if (proposal.canceled) { | |
return ProposalState.Canceled; | |
} else if (block.number <= proposal.startBlock) { | |
return ProposalState.Pending; | |
} else if (block.number <= proposal.endBlock) { | |
return ProposalState.Active; | |
} else if (proposal.forVotes <= proposal.againstVotes || proposal.forVotes < quorumVotes) { | |
return ProposalState.Defeated; | |
} else if (proposal.eta == 0) { | |
return ProposalState.Succeeded; | |
} else if (proposal.executed) { | |
return ProposalState.Executed; | |
} else if (block.timestamp >= add256(proposal.eta, timelock.GRACE_PERIOD())) { | |
return ProposalState.Expired; | |
} else { | |
return ProposalState.Queued; | |
} | |
} | |
/** | |
* @notice Cast a vote for a proposal | |
* @param proposalId The id of the proposal to vote on | |
* @param support The support value for the vote. 0=against, 1=for, 2=abstain | |
*/ | |
function castVote(uint proposalId, uint8 support) external { | |
emit VoteCast(msg.sender, proposalId, support, castVoteInternal(msg.sender, proposalId, support), ""); | |
} | |
/** | |
* @notice Cast a vote for a proposal with a reason | |
* @param proposalId The id of the proposal to vote on | |
* @param support The support value for the vote. 0=against, 1=for, 2=abstain | |
* @param reason The reason given for the vote by the voter | |
*/ | |
function castVoteWithReason(uint proposalId, uint8 support, string calldata reason) external { | |
emit VoteCast(msg.sender, proposalId, support, castVoteInternal(msg.sender, proposalId, support), reason); | |
} | |
/** | |
* @notice Cast a vote for a proposal by signature | |
* @dev External function that accepts EIP-712 signatures for voting on proposals. | |
*/ | |
function castVoteBySig(uint proposalId, uint8 support, uint8 v, bytes32 r, bytes32 s) external { | |
bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainIdInternal(), address(this))); | |
bytes32 structHash = keccak256(abi.encode(BALLOT_TYPEHASH, proposalId, support)); | |
bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); | |
address signatory = ecrecover(digest, v, r, s); | |
require(signatory != address(0), "GovernorBravo::castVoteBySig: invalid signature"); | |
emit VoteCast(signatory, proposalId, support, castVoteInternal(signatory, proposalId, support), ""); | |
} | |
/** | |
* @notice Internal function that caries out voting logic | |
* @param voter The voter that is casting their vote | |
* @param proposalId The id of the proposal to vote on | |
* @param support The support value for the vote. 0=against, 1=for, 2=abstain | |
* @return The number of votes cast | |
*/ | |
function castVoteInternal(address voter, uint proposalId, uint8 support) internal returns (uint96) { | |
require(state(proposalId) == ProposalState.Active, "GovernorBravo::castVoteInternal: voting is closed"); | |
require(support <= 2, "GovernorBravo::castVoteInternal: invalid vote type"); | |
Proposal storage proposal = proposals[proposalId]; | |
Receipt storage receipt = proposal.receipts[voter]; | |
require(receipt.hasVoted == false, "GovernorBravo::castVoteInternal: voter already voted"); | |
uint96 votes = comp.getPriorVotes(voter, proposal.startBlock); | |
if (support == 0) { | |
proposal.againstVotes = add256(proposal.againstVotes, votes); | |
} else if (support == 1) { | |
proposal.forVotes = add256(proposal.forVotes, votes); | |
} else if (support == 2) { | |
proposal.abstainVotes = add256(proposal.abstainVotes, votes); | |
} | |
receipt.hasVoted = true; | |
receipt.support = support; | |
receipt.votes = votes; | |
return votes; | |
} | |
/** | |
* @notice View function which returns if an account is whitelisted | |
* @param account Account to check white list status of | |
* @return If the account is whitelisted | |
*/ | |
function isWhitelisted(address account) public view returns (bool) { | |
uint currentBlockTimestamp = getBlockTimestamp(); | |
return (whitelistAccountExpirations[account] > currentBlockTimestamp); | |
} | |
/** | |
* @dev Function to simply retrieve block timestamp | |
*/ | |
function getBlockTimestamp() internal view returns (uint) { | |
return block.timestamp; | |
} | |
/** | |
* @notice Admin function for setting the voting delay | |
* @param newVotingDelay new voting delay, in blocks | |
*/ | |
function _setVotingDelay(uint newVotingDelay) external { | |
require(msg.sender == admin, "GovernorBravo::_setVotingDelay: admin only"); | |
require(newVotingDelay >= MIN_VOTING_DELAY && newVotingDelay <= MAX_VOTING_DELAY, "GovernorBravo::_setVotingDelay: invalid voting delay"); | |
uint oldVotingDelay = votingDelay; | |
votingDelay = newVotingDelay; | |
emit VotingDelaySet(oldVotingDelay,votingDelay); | |
} | |
/** | |
* @notice Admin function for setting the voting period | |
* @param newVotingPeriod new voting period, in blocks | |
*/ | |
function _setVotingPeriod(uint newVotingPeriod) external { | |
require(msg.sender == admin, "GovernorBravo::_setVotingPeriod: admin only"); | |
require(newVotingPeriod >= MIN_VOTING_PERIOD && newVotingPeriod <= MAX_VOTING_PERIOD, "GovernorBravo::_setVotingPeriod: invalid voting period"); | |
uint oldVotingPeriod = votingPeriod; | |
votingPeriod = newVotingPeriod; | |
emit VotingPeriodSet(oldVotingPeriod, votingPeriod); | |
} | |
/** | |
* @notice Admin function for setting the proposal threshold | |
* @dev newProposalThreshold must be greater than the hardcoded min | |
* @param newProposalThreshold new proposal threshold | |
*/ | |
function _setProposalThreshold(uint newProposalThreshold) external { | |
require(msg.sender == admin, "GovernorBravo::_setProposalThreshold: admin only"); | |
require(newProposalThreshold >= MIN_PROPOSAL_THRESHOLD && newProposalThreshold <= MAX_PROPOSAL_THRESHOLD, "GovernorBravo::_setProposalThreshold: invalid proposal threshold"); | |
uint oldProposalThreshold = proposalThreshold; | |
proposalThreshold = newProposalThreshold; | |
emit ProposalThresholdSet(oldProposalThreshold, proposalThreshold); | |
} | |
/** | |
* @notice Admin function for setting the whitelist expiration as a timestamp for an account. Whitelist status allows accounts to propose without meeting threshold | |
* @param account Account address to set whitelist expiration for | |
* @param expiration Expiration for account whitelist status as timestamp (if now < expiration, whitelisted) | |
*/ | |
function _setWhitelistAccountExpiration(address account, uint expiration) external { | |
require(msg.sender == admin || msg.sender == whitelistGuardian, "GovernorBravo::_setWhitelistAccountExpiration: admin only"); | |
whitelistAccountExpirations[account] = expiration; | |
emit WhitelistAccountExpirationSet(account, expiration); | |
} | |
/** | |
* @notice Admin function for setting the whitelistGuardian. WhitelistGuardian can cancel proposals from whitelisted addresses | |
* @param account Account to set whitelistGuardian to (0x0 to remove whitelistGuardian) | |
*/ | |
function _setWhitelistGuardian(address account) external { | |
require(msg.sender == admin, "GovernorBravo::_setWhitelistGuardian: admin only"); | |
address oldGuardian = whitelistGuardian; | |
whitelistGuardian = account; | |
emit WhitelistGuardianSet(oldGuardian, whitelistGuardian); | |
} | |
/** | |
* @notice Initiate the GovernorBravo contract | |
* @dev Admin only. Sets initial proposal id which initiates the contract, ensuring a continuous proposal id count | |
* @param governorAlpha The address for the Governor to continue the proposal id count from | |
*/ | |
function _initiate(address governorAlpha) external { | |
require(msg.sender == admin, "GovernorBravo::_initiate: admin only"); | |
require(initialProposalId == 0, "GovernorBravo::_initiate: can only initiate once"); | |
proposalCount = GovernorAlpha(governorAlpha).proposalCount(); | |
initialProposalId = proposalCount; | |
timelock.acceptAdmin(); | |
} | |
/** | |
* @notice Begins transfer of admin rights. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. | |
* @dev Admin function to begin change of admin. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. | |
* @param newPendingAdmin New pending admin. | |
*/ | |
function _setPendingAdmin(address newPendingAdmin) external { | |
// Check caller = admin | |
require(msg.sender == admin, "GovernorBravo:_setPendingAdmin: admin only"); | |
// Save current value, if any, for inclusion in log | |
address oldPendingAdmin = pendingAdmin; | |
// Store pendingAdmin with value newPendingAdmin | |
pendingAdmin = newPendingAdmin; | |
// Emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin) | |
emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin); | |
} | |
/** | |
* @notice Accepts transfer of admin rights. msg.sender must be pendingAdmin | |
* @dev Admin function for pending admin to accept role and update admin | |
*/ | |
function _acceptAdmin() external { | |
// Check caller is pendingAdmin and pendingAdmin ≠ address(0) | |
require(msg.sender == pendingAdmin && msg.sender != address(0), "GovernorBravo:_acceptAdmin: pending admin only"); | |
// Save current values for inclusion in log | |
address oldAdmin = admin; | |
address oldPendingAdmin = pendingAdmin; | |
// Store admin with value pendingAdmin | |
admin = pendingAdmin; | |
// Clear the pending value | |
pendingAdmin = address(0); | |
emit NewAdmin(oldAdmin, admin); | |
emit NewPendingAdmin(oldPendingAdmin, pendingAdmin); | |
} | |
function add256(uint256 a, uint256 b) internal pure returns (uint) { | |
uint c = a + b; | |
require(c >= a, "addition overflow"); | |
return c; | |
} | |
function sub256(uint256 a, uint256 b) internal pure returns (uint) { | |
require(b <= a, "subtraction underflow"); | |
return a - b; | |
} | |
function getChainIdInternal() internal view returns (uint) { | |
uint chainId; | |
assembly { chainId := chainid() } | |
return chainId; | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./GovernorBravoInterfaces.sol"; | |
contract GovernorBravoDelegator is GovernorBravoDelegatorStorage, GovernorBravoEvents { | |
constructor( | |
address timelock_, | |
address comp_, | |
address admin_, | |
address implementation_, | |
uint votingPeriod_, | |
uint votingDelay_, | |
uint proposalThreshold_) public { | |
// Admin set to msg.sender for initialization | |
admin = msg.sender; | |
delegateTo(implementation_, abi.encodeWithSignature("initialize(address,address,uint256,uint256,uint256)", | |
timelock_, | |
comp_, | |
votingPeriod_, | |
votingDelay_, | |
proposalThreshold_)); | |
_setImplementation(implementation_); | |
admin = admin_; | |
} | |
/** | |
* @notice Called by the admin to update the implementation of the delegator | |
* @param implementation_ The address of the new implementation for delegation | |
*/ | |
function _setImplementation(address implementation_) public { | |
require(msg.sender == admin, "GovernorBravoDelegator::_setImplementation: admin only"); | |
require(implementation_ != address(0), "GovernorBravoDelegator::_setImplementation: invalid implementation address"); | |
address oldImplementation = implementation; | |
implementation = implementation_; | |
emit NewImplementation(oldImplementation, implementation); | |
} | |
/** | |
* @notice Internal method to delegate execution to another contract | |
* @dev It returns to the external caller whatever the implementation returns or forwards reverts | |
* @param callee The contract to delegatecall | |
* @param data The raw data to delegatecall | |
*/ | |
function delegateTo(address callee, bytes memory data) internal { | |
(bool success, bytes memory returnData) = callee.delegatecall(data); | |
assembly { | |
if eq(success, 0) { | |
revert(add(returnData, 0x20), returndatasize()) | |
} | |
} | |
} | |
/** | |
* @dev Delegates execution to an implementation contract. | |
* It returns to the external caller whatever the implementation returns | |
* or forwards reverts. | |
*/ | |
fallback () external payable { | |
// delegate all other functions to current implementation | |
(bool success, ) = implementation.delegatecall(msg.data); | |
assembly { | |
let free_mem_ptr := mload(0x40) | |
returndatacopy(free_mem_ptr, 0, returndatasize()) | |
switch success | |
case 0 { revert(free_mem_ptr, returndatasize()) } | |
default { return(free_mem_ptr, returndatasize()) } | |
} | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
contract GovernorBravoEvents { | |
/// @notice An event emitted when a new proposal is created | |
event ProposalCreated(uint id, address proposer, address[] targets, uint[] values, string[] signatures, bytes[] calldatas, uint startBlock, uint endBlock, string description); | |
/// @notice An event emitted when a vote has been cast on a proposal | |
/// @param voter The address which casted a vote | |
/// @param proposalId The proposal id which was voted on | |
/// @param support Support value for the vote. 0=against, 1=for, 2=abstain | |
/// @param votes Number of votes which were cast by the voter | |
/// @param reason The reason given for the vote by the voter | |
event VoteCast(address indexed voter, uint proposalId, uint8 support, uint votes, string reason); | |
/// @notice An event emitted when a proposal has been canceled | |
event ProposalCanceled(uint id); | |
/// @notice An event emitted when a proposal has been queued in the Timelock | |
event ProposalQueued(uint id, uint eta); | |
/// @notice An event emitted when a proposal has been executed in the Timelock | |
event ProposalExecuted(uint id); | |
/// @notice An event emitted when the voting delay is set | |
event VotingDelaySet(uint oldVotingDelay, uint newVotingDelay); | |
/// @notice An event emitted when the voting period is set | |
event VotingPeriodSet(uint oldVotingPeriod, uint newVotingPeriod); | |
/// @notice Emitted when implementation is changed | |
event NewImplementation(address oldImplementation, address newImplementation); | |
/// @notice Emitted when proposal threshold is set | |
event ProposalThresholdSet(uint oldProposalThreshold, uint newProposalThreshold); | |
/// @notice Emitted when pendingAdmin is changed | |
event NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin); | |
/// @notice Emitted when pendingAdmin is accepted, which means admin is updated | |
event NewAdmin(address oldAdmin, address newAdmin); | |
/// @notice Emitted when whitelist account expiration is set | |
event WhitelistAccountExpirationSet(address account, uint expiration); | |
/// @notice Emitted when the whitelistGuardian is set | |
event WhitelistGuardianSet(address oldGuardian, address newGuardian); | |
} | |
contract GovernorBravoDelegatorStorage { | |
/// @notice Administrator for this contract | |
address public admin; | |
/// @notice Pending administrator for this contract | |
address public pendingAdmin; | |
/// @notice Active brains of Governor | |
address public implementation; | |
} | |
/** | |
* @title Storage for Governor Bravo Delegate | |
* @notice For future upgrades, do not change GovernorBravoDelegateStorageV1. Create a new | |
* contract which implements GovernorBravoDelegateStorageV1 and following the naming convention | |
* GovernorBravoDelegateStorageVX. | |
*/ | |
contract GovernorBravoDelegateStorageV1 is GovernorBravoDelegatorStorage { | |
/// @notice The delay before voting on a proposal may take place, once proposed, in blocks | |
uint public votingDelay; | |
/// @notice The duration of voting on a proposal, in blocks | |
uint public votingPeriod; | |
/// @notice The number of votes required in order for a voter to become a proposer | |
uint public proposalThreshold; | |
/// @notice Initial proposal id set at become | |
uint public initialProposalId; | |
/// @notice The total number of proposals | |
uint public proposalCount; | |
/// @notice The address of the Compound Protocol Timelock | |
TimelockInterface public timelock; | |
/// @notice The address of the Compound governance token | |
CompInterface public comp; | |
/// @notice The official record of all proposals ever proposed | |
mapping (uint => Proposal) public proposals; | |
/// @notice The latest proposal for each proposer | |
mapping (address => uint) public latestProposalIds; | |
struct Proposal { | |
/// @notice Unique id for looking up a proposal | |
uint id; | |
/// @notice Creator of the proposal | |
address proposer; | |
/// @notice The timestamp that the proposal will be available for execution, set once the vote succeeds | |
uint eta; | |
/// @notice the ordered list of target addresses for calls to be made | |
address[] targets; | |
/// @notice The ordered list of values (i.e. msg.value) to be passed to the calls to be made | |
uint[] values; | |
/// @notice The ordered list of function signatures to be called | |
string[] signatures; | |
/// @notice The ordered list of calldata to be passed to each call | |
bytes[] calldatas; | |
/// @notice The block at which voting begins: holders must delegate their votes prior to this block | |
uint startBlock; | |
/// @notice The block at which voting ends: votes must be cast prior to this block | |
uint endBlock; | |
/// @notice Current number of votes in favor of this proposal | |
uint forVotes; | |
/// @notice Current number of votes in opposition to this proposal | |
uint againstVotes; | |
/// @notice Current number of votes for abstaining for this proposal | |
uint abstainVotes; | |
/// @notice Flag marking whether the proposal has been canceled | |
bool canceled; | |
/// @notice Flag marking whether the proposal has been executed | |
bool executed; | |
/// @notice Receipts of ballots for the entire set of voters | |
mapping (address => Receipt) receipts; | |
} | |
/// @notice Ballot receipt record for a voter | |
struct Receipt { | |
/// @notice Whether or not a vote has been cast | |
bool hasVoted; | |
/// @notice Whether or not the voter supports the proposal or abstains | |
uint8 support; | |
/// @notice The number of votes the voter had, which were cast | |
uint96 votes; | |
} | |
/// @notice Possible states that a proposal may be in | |
enum ProposalState { | |
Pending, | |
Active, | |
Canceled, | |
Defeated, | |
Succeeded, | |
Queued, | |
Expired, | |
Executed | |
} | |
} | |
contract GovernorBravoDelegateStorageV2 is GovernorBravoDelegateStorageV1 { | |
/// @notice Stores the expiration of account whitelist status as a timestamp | |
mapping (address => uint) public whitelistAccountExpirations; | |
/// @notice Address which manages whitelisted proposals and whitelist accounts | |
address public whitelistGuardian; | |
} | |
interface TimelockInterface { | |
function delay() external view returns (uint); | |
function GRACE_PERIOD() external view returns (uint); | |
function acceptAdmin() external; | |
function queuedTransactions(bytes32 hash) external view returns (bool); | |
function queueTransaction(address target, uint value, string calldata signature, bytes calldata data, uint eta) external returns (bytes32); | |
function cancelTransaction(address target, uint value, string calldata signature, bytes calldata data, uint eta) external; | |
function executeTransaction(address target, uint value, string calldata signature, bytes calldata data, uint eta) external payable returns (bytes memory); | |
} | |
interface CompInterface { | |
function getPriorVotes(address account, uint blockNumber) external view returns (uint96); | |
} | |
interface GovernorAlpha { | |
/// @notice The total number of proposals | |
function proposalCount() external returns (uint); | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
/** | |
* @title Compound's InterestRateModel Interface | |
* @author Compound | |
*/ | |
abstract contract InterestRateModel { | |
/// @notice Indicator that this is an InterestRateModel contract (for inspection) | |
bool public constant isInterestRateModel = true; | |
/** | |
* @notice Calculates the current borrow interest rate per block | |
* @param cash The total amount of cash the market has | |
* @param borrows The total amount of borrows the market has outstanding | |
* @param reserves The total amount of reserves the market has | |
* @return The borrow rate per block (as a percentage, and scaled by 1e18) | |
*/ | |
function getBorrowRate(uint cash, uint borrows, uint reserves) virtual external view returns (uint); | |
/** | |
* @notice Calculates the current supply interest rate per block | |
* @param cash The total amount of cash the market has | |
* @param borrows The total amount of borrows the market has outstanding | |
* @param reserves The total amount of reserves the market has | |
* @param reserveFactorMantissa The current reserve factor the market has | |
* @return The supply rate per block (as a percentage, and scaled by 1e18) | |
*/ | |
function getSupplyRate(uint cash, uint borrows, uint reserves, uint reserveFactorMantissa) virtual external view returns (uint); | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./InterestRateModel.sol"; | |
/** | |
* @title Compound's JumpRateModel Contract | |
* @author Compound | |
*/ | |
contract JumpRateModel is InterestRateModel { | |
event NewInterestParams(uint baseRatePerBlock, uint multiplierPerBlock, uint jumpMultiplierPerBlock, uint kink); | |
uint256 private constant BASE = 1e18; | |
/** | |
* @notice The approximate number of blocks per year that is assumed by the interest rate model | |
*/ | |
uint public constant blocksPerYear = 2102400; | |
/** | |
* @notice The multiplier of utilization rate that gives the slope of the interest rate | |
*/ | |
uint public multiplierPerBlock; | |
/** | |
* @notice The base interest rate which is the y-intercept when utilization rate is 0 | |
*/ | |
uint public baseRatePerBlock; | |
/** | |
* @notice The multiplierPerBlock after hitting a specified utilization point | |
*/ | |
uint public jumpMultiplierPerBlock; | |
/** | |
* @notice The utilization point at which the jump multiplier is applied | |
*/ | |
uint public kink; | |
/** | |
* @notice Construct an interest rate model | |
* @param baseRatePerYear The approximate target base APR, as a mantissa (scaled by BASE) | |
* @param multiplierPerYear The rate of increase in interest rate wrt utilization (scaled by BASE) | |
* @param jumpMultiplierPerYear The multiplierPerBlock after hitting a specified utilization point | |
* @param kink_ The utilization point at which the jump multiplier is applied | |
*/ | |
constructor(uint baseRatePerYear, uint multiplierPerYear, uint jumpMultiplierPerYear, uint kink_) public { | |
baseRatePerBlock = baseRatePerYear / blocksPerYear; | |
multiplierPerBlock = multiplierPerYear / blocksPerYear; | |
jumpMultiplierPerBlock = jumpMultiplierPerYear / blocksPerYear; | |
kink = kink_; | |
emit NewInterestParams(baseRatePerBlock, multiplierPerBlock, jumpMultiplierPerBlock, kink); | |
} | |
/** | |
* @notice Calculates the utilization rate of the market: `borrows / (cash + borrows - reserves)` | |
* @param cash The amount of cash in the market | |
* @param borrows The amount of borrows in the market | |
* @param reserves The amount of reserves in the market (currently unused) | |
* @return The utilization rate as a mantissa between [0, BASE] | |
*/ | |
function utilizationRate(uint cash, uint borrows, uint reserves) public pure returns (uint) { | |
// Utilization rate is 0 when there are no borrows | |
if (borrows == 0) { | |
return 0; | |
} | |
return borrows * BASE / (cash + borrows - reserves); | |
} | |
/** | |
* @notice Calculates the current borrow rate per block, with the error code expected by the market | |
* @param cash The amount of cash in the market | |
* @param borrows The amount of borrows in the market | |
* @param reserves The amount of reserves in the market | |
* @return The borrow rate percentage per block as a mantissa (scaled by BASE) | |
*/ | |
function getBorrowRate(uint cash, uint borrows, uint reserves) override public view returns (uint) { | |
uint util = utilizationRate(cash, borrows, reserves); | |
if (util <= kink) { | |
return (util * multiplierPerBlock / BASE) + baseRatePerBlock; | |
} else { | |
uint normalRate = (kink * multiplierPerBlock / BASE) + baseRatePerBlock; | |
uint excessUtil = util - kink; | |
return (excessUtil * jumpMultiplierPerBlock/ BASE) + normalRate; | |
} | |
} | |
/** | |
* @notice Calculates the current supply rate per block | |
* @param cash The amount of cash in the market | |
* @param borrows The amount of borrows in the market | |
* @param reserves The amount of reserves in the market | |
* @param reserveFactorMantissa The current reserve factor for the market | |
* @return The supply rate percentage per block as a mantissa (scaled by BASE) | |
*/ | |
function getSupplyRate(uint cash, uint borrows, uint reserves, uint reserveFactorMantissa) override public view returns (uint) { | |
uint oneMinusReserveFactor = BASE - reserveFactorMantissa; | |
uint borrowRate = getBorrowRate(cash, borrows, reserves); | |
uint rateToPool = borrowRate * oneMinusReserveFactor / BASE; | |
return utilizationRate(cash, borrows, reserves) * rateToPool / BASE; | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./BaseJumpRateModelV2.sol"; | |
import "./InterestRateModel.sol"; | |
/** | |
* @title Compound's JumpRateModel Contract V2 for V2 cTokens | |
* @author Arr00 | |
* @notice Supports only for V2 cTokens | |
*/ | |
contract JumpRateModelV2 is InterestRateModel, BaseJumpRateModelV2 { | |
/** | |
* @notice Calculates the current borrow rate per block | |
* @param cash The amount of cash in the market | |
* @param borrows The amount of borrows in the market | |
* @param reserves The amount of reserves in the market | |
* @return The borrow rate percentage per block as a mantissa (scaled by 1e18) | |
*/ | |
function getBorrowRate(uint cash, uint borrows, uint reserves) override external view returns (uint) { | |
return getBorrowRateInternal(cash, borrows, reserves); | |
} | |
constructor(uint baseRatePerYear, uint multiplierPerYear, uint jumpMultiplierPerYear, uint kink_, address owner_) | |
BaseJumpRateModelV2(baseRatePerYear,multiplierPerYear,jumpMultiplierPerYear,kink_,owner_) public {} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./CEther.sol"; | |
/** | |
* @title Compound's Maximillion Contract | |
* @author Compound | |
*/ | |
contract Maximillion { | |
/** | |
* @notice The default cEther market to repay in | |
*/ | |
CEther public cEther; | |
/** | |
* @notice Construct a Maximillion to repay max in a CEther market | |
*/ | |
constructor(CEther cEther_) public { | |
cEther = cEther_; | |
} | |
/** | |
* @notice msg.sender sends Ether to repay an account's borrow in the cEther market | |
* @dev The provided Ether is applied towards the borrow balance, any excess is refunded | |
* @param borrower The address of the borrower account to repay on behalf of | |
*/ | |
function repayBehalf(address borrower) public payable { | |
repayBehalfExplicit(borrower, cEther); | |
} | |
/** | |
* @notice msg.sender sends Ether to repay an account's borrow in a cEther market | |
* @dev The provided Ether is applied towards the borrow balance, any excess is refunded | |
* @param borrower The address of the borrower account to repay on behalf of | |
* @param cEther_ The address of the cEther contract to repay in | |
*/ | |
function repayBehalfExplicit(address borrower, CEther cEther_) public payable { | |
uint received = msg.value; | |
uint borrows = cEther_.borrowBalanceCurrent(borrower); | |
if (received > borrows) { | |
cEther_.repayBorrowBehalf{value: borrows}(borrower); | |
payable(msg.sender).transfer(received - borrows); | |
} else { | |
cEther_.repayBorrowBehalf{value: received}(borrower); | |
} | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./CToken.sol"; | |
abstract contract PriceOracle { | |
/// @notice Indicator that this is a PriceOracle contract (for inspection) | |
bool public constant isPriceOracle = true; | |
/** | |
* @notice Get the underlying price of a cToken asset | |
* @param cToken The cToken to get the underlying price of | |
* @return The underlying asset price mantissa (scaled by 1e18). | |
* Zero means the price is unavailable. | |
*/ | |
function getUnderlyingPrice(CToken cToken) virtual external view returns (uint); | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
/** | |
* @title Reservoir Contract | |
* @notice Distributes a token to a different contract at a fixed rate. | |
* @dev This contract must be poked via the `drip()` function every so often. | |
* @author Compound | |
*/ | |
contract Reservoir { | |
/// @notice The block number when the Reservoir started (immutable) | |
uint public dripStart; | |
/// @notice Tokens per block that to drip to target (immutable) | |
uint public dripRate; | |
/// @notice Reference to token to drip (immutable) | |
EIP20Interface public token; | |
/// @notice Target to receive dripped tokens (immutable) | |
address public target; | |
/// @notice Amount that has already been dripped | |
uint public dripped; | |
/** | |
* @notice Constructs a Reservoir | |
* @param dripRate_ Numer of tokens per block to drip | |
* @param token_ The token to drip | |
* @param target_ The recipient of dripped tokens | |
*/ | |
constructor(uint dripRate_, EIP20Interface token_, address target_) public { | |
dripStart = block.number; | |
dripRate = dripRate_; | |
token = token_; | |
target = target_; | |
dripped = 0; | |
} | |
/** | |
* @notice Drips the maximum amount of tokens to match the drip rate since inception | |
* @dev Note: this will only drip up to the amount of tokens available. | |
* @return The amount of tokens dripped in this call | |
*/ | |
function drip() public returns (uint) { | |
// First, read storage into memory | |
EIP20Interface token_ = token; | |
uint reservoirBalance_ = token_.balanceOf(address(this)); // TODO: Verify this is a static call | |
uint dripRate_ = dripRate; | |
uint dripStart_ = dripStart; | |
uint dripped_ = dripped; | |
address target_ = target; | |
uint blockNumber_ = block.number; | |
// Next, calculate intermediate values | |
uint dripTotal_ = mul(dripRate_, blockNumber_ - dripStart_, "dripTotal overflow"); | |
uint deltaDrip_ = sub(dripTotal_, dripped_, "deltaDrip underflow"); | |
uint toDrip_ = min(reservoirBalance_, deltaDrip_); | |
uint drippedNext_ = add(dripped_, toDrip_, "tautological"); | |
// Finally, write new `dripped` value and transfer tokens to target | |
dripped = drippedNext_; | |
token_.transfer(target_, toDrip_); | |
return toDrip_; | |
} | |
/* Internal helper functions for safe math */ | |
function add(uint a, uint b, string memory errorMessage) internal pure returns (uint) { | |
uint c; | |
unchecked { c = a + b; } | |
require(c >= a, errorMessage); | |
return c; | |
} | |
function sub(uint a, uint b, string memory errorMessage) internal pure returns (uint) { | |
require(b <= a, errorMessage); | |
uint c = a - b; | |
return c; | |
} | |
function mul(uint a, uint b, string memory errorMessage) internal pure returns (uint) { | |
if (a == 0) { | |
return 0; | |
} | |
uint c; | |
unchecked { c = a * b; } | |
require(c / a == b, errorMessage); | |
return c; | |
} | |
function min(uint a, uint b) internal pure returns (uint) { | |
if (a <= b) { | |
return a; | |
} else { | |
return b; | |
} | |
} | |
} | |
import "./EIP20Interface.sol"; |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol | |
// Subject to the MIT license. | |
/** | |
* @dev Wrappers over Solidity's arithmetic operations with added overflow | |
* checks. | |
* | |
* Arithmetic operations in Solidity wrap on overflow. This can easily result | |
* in bugs, because programmers usually assume that an overflow raises an | |
* error, which is the standard behavior in high level programming languages. | |
* `SafeMath` restores this intuition by reverting the transaction when an | |
* operation overflows. | |
* | |
* Using this library instead of the unchecked operations eliminates an entire | |
* class of bugs, so it's recommended to use it always. | |
*/ | |
library SafeMath { | |
/** | |
* @dev Returns the addition of two unsigned integers, reverting on overflow. | |
* | |
* Counterpart to Solidity's `+` operator. | |
* | |
* Requirements: | |
* - Addition cannot overflow. | |
*/ | |
function add(uint256 a, uint256 b) internal pure returns (uint256) { | |
uint256 c; | |
unchecked { c = a + b; } | |
require(c >= a, "SafeMath: addition overflow"); | |
return c; | |
} | |
/** | |
* @dev Returns the addition of two unsigned integers, reverting with custom message on overflow. | |
* | |
* Counterpart to Solidity's `+` operator. | |
* | |
* Requirements: | |
* - Addition cannot overflow. | |
*/ | |
function add(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { | |
uint256 c; | |
unchecked { c = a + b; } | |
require(c >= a, errorMessage); | |
return c; | |
} | |
/** | |
* @dev Returns the subtraction of two unsigned integers, reverting on underflow (when the result is negative). | |
* | |
* Counterpart to Solidity's `-` operator. | |
* | |
* Requirements: | |
* - Subtraction cannot underflow. | |
*/ | |
function sub(uint256 a, uint256 b) internal pure returns (uint256) { | |
return sub(a, b, "SafeMath: subtraction underflow"); | |
} | |
/** | |
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on underflow (when the result is negative). | |
* | |
* Counterpart to Solidity's `-` operator. | |
* | |
* Requirements: | |
* - Subtraction cannot underflow. | |
*/ | |
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { | |
require(b <= a, errorMessage); | |
uint256 c = a - b; | |
return c; | |
} | |
/** | |
* @dev Returns the multiplication of two unsigned integers, reverting on overflow. | |
* | |
* Counterpart to Solidity's `*` operator. | |
* | |
* Requirements: | |
* - Multiplication cannot overflow. | |
*/ | |
function mul(uint256 a, uint256 b) internal pure returns (uint256) { | |
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the | |
// benefit is lost if 'b' is also tested. | |
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 | |
if (a == 0) { | |
return 0; | |
} | |
uint256 c; | |
unchecked { c = a * b; } | |
require(c / a == b, "SafeMath: multiplication overflow"); | |
return c; | |
} | |
/** | |
* @dev Returns the multiplication of two unsigned integers, reverting on overflow. | |
* | |
* Counterpart to Solidity's `*` operator. | |
* | |
* Requirements: | |
* - Multiplication cannot overflow. | |
*/ | |
function mul(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { | |
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the | |
// benefit is lost if 'b' is also tested. | |
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 | |
if (a == 0) { | |
return 0; | |
} | |
uint256 c; | |
unchecked { c = a * b; } | |
require(c / a == b, errorMessage); | |
return c; | |
} | |
/** | |
* @dev Returns the integer division of two unsigned integers. | |
* Reverts on division by zero. The result is rounded towards zero. | |
* | |
* Counterpart to Solidity's `/` operator. Note: this function uses a | |
* `revert` opcode (which leaves remaining gas untouched) while Solidity | |
* uses an invalid opcode to revert (consuming all remaining gas). | |
* | |
* Requirements: | |
* - The divisor cannot be zero. | |
*/ | |
function div(uint256 a, uint256 b) internal pure returns (uint256) { | |
return div(a, b, "SafeMath: division by zero"); | |
} | |
/** | |
* @dev Returns the integer division of two unsigned integers. | |
* Reverts with custom message on division by zero. The result is rounded towards zero. | |
* | |
* Counterpart to Solidity's `/` operator. Note: this function uses a | |
* `revert` opcode (which leaves remaining gas untouched) while Solidity | |
* uses an invalid opcode to revert (consuming all remaining gas). | |
* | |
* Requirements: | |
* - The divisor cannot be zero. | |
*/ | |
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { | |
// Solidity only automatically asserts when dividing by 0 | |
require(b > 0, errorMessage); | |
uint256 c = a / b; | |
// assert(a == b * c + a % b); // There is no case in which this doesn't hold | |
return c; | |
} | |
/** | |
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), | |
* Reverts when dividing by zero. | |
* | |
* Counterpart to Solidity's `%` operator. This function uses a `revert` | |
* opcode (which leaves remaining gas untouched) while Solidity uses an | |
* invalid opcode to revert (consuming all remaining gas). | |
* | |
* Requirements: | |
* - The divisor cannot be zero. | |
*/ | |
function mod(uint256 a, uint256 b) internal pure returns (uint256) { | |
return mod(a, b, "SafeMath: modulo by zero"); | |
} | |
/** | |
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), | |
* Reverts with custom message when dividing by zero. | |
* | |
* Counterpart to Solidity's `%` operator. This function uses a `revert` | |
* opcode (which leaves remaining gas untouched) while Solidity uses an | |
* invalid opcode to revert (consuming all remaining gas). | |
* | |
* Requirements: | |
* - The divisor cannot be zero. | |
*/ | |
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { | |
require(b != 0, errorMessage); | |
return a % b; | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./PriceOracle.sol"; | |
import "./CErc20.sol"; | |
contract SimplePriceOracle is PriceOracle { | |
mapping(address => uint) prices; | |
event PricePosted(address asset, uint previousPriceMantissa, uint requestedPriceMantissa, uint newPriceMantissa); | |
function _getUnderlyingAddress(CToken cToken) private view returns (address) { | |
address asset; | |
if (compareStrings(cToken.symbol(), "cETH")) { | |
asset = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; | |
} else { | |
asset = address(CErc20(address(cToken)).underlying()); | |
} | |
return asset; | |
} | |
function getUnderlyingPrice(CToken cToken) public override view returns (uint) { | |
return prices[_getUnderlyingAddress(cToken)]; | |
} | |
function setUnderlyingPrice(CToken cToken, uint underlyingPriceMantissa) public { | |
address asset = _getUnderlyingAddress(cToken); | |
emit PricePosted(asset, prices[asset], underlyingPriceMantissa, underlyingPriceMantissa); | |
prices[asset] = underlyingPriceMantissa; | |
} | |
function setDirectPrice(address asset, uint price) public { | |
emit PricePosted(asset, prices[asset], price, price); | |
prices[asset] = price; | |
} | |
// v1 price oracle interface for use as backing of proxy | |
function assetPrices(address asset) external view returns (uint) { | |
return prices[asset]; | |
} | |
function compareStrings(string memory a, string memory b) internal pure returns (bool) { | |
return (keccak256(abi.encodePacked((a))) == keccak256(abi.encodePacked((b)))); | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./SafeMath.sol"; | |
contract Timelock { | |
using SafeMath for uint; | |
event NewAdmin(address indexed newAdmin); | |
event NewPendingAdmin(address indexed newPendingAdmin); | |
event NewDelay(uint indexed newDelay); | |
event CancelTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature, bytes data, uint eta); | |
event ExecuteTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature, bytes data, uint eta); | |
event QueueTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature, bytes data, uint eta); | |
uint public constant GRACE_PERIOD = 14 days; | |
uint public constant MINIMUM_DELAY = 2 days; | |
uint public constant MAXIMUM_DELAY = 30 days; | |
address public admin; | |
address public pendingAdmin; | |
uint public delay; | |
mapping (bytes32 => bool) public queuedTransactions; | |
constructor(address admin_, uint delay_) public { | |
require(delay_ >= MINIMUM_DELAY, "Timelock::constructor: Delay must exceed minimum delay."); | |
require(delay_ <= MAXIMUM_DELAY, "Timelock::setDelay: Delay must not exceed maximum delay."); | |
admin = admin_; | |
delay = delay_; | |
} | |
fallback() external payable { } | |
function setDelay(uint delay_) public { | |
require(msg.sender == address(this), "Timelock::setDelay: Call must come from Timelock."); | |
require(delay_ >= MINIMUM_DELAY, "Timelock::setDelay: Delay must exceed minimum delay."); | |
require(delay_ <= MAXIMUM_DELAY, "Timelock::setDelay: Delay must not exceed maximum delay."); | |
delay = delay_; | |
emit NewDelay(delay); | |
} | |
function acceptAdmin() public { | |
require(msg.sender == pendingAdmin, "Timelock::acceptAdmin: Call must come from pendingAdmin."); | |
admin = msg.sender; | |
pendingAdmin = address(0); | |
emit NewAdmin(admin); | |
} | |
function setPendingAdmin(address pendingAdmin_) public { | |
require(msg.sender == address(this), "Timelock::setPendingAdmin: Call must come from Timelock."); | |
pendingAdmin = pendingAdmin_; | |
emit NewPendingAdmin(pendingAdmin); | |
} | |
function queueTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public returns (bytes32) { | |
require(msg.sender == admin, "Timelock::queueTransaction: Call must come from admin."); | |
require(eta >= getBlockTimestamp().add(delay), "Timelock::queueTransaction: Estimated execution block must satisfy delay."); | |
bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta)); | |
queuedTransactions[txHash] = true; | |
emit QueueTransaction(txHash, target, value, signature, data, eta); | |
return txHash; | |
} | |
function cancelTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public { | |
require(msg.sender == admin, "Timelock::cancelTransaction: Call must come from admin."); | |
bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta)); | |
queuedTransactions[txHash] = false; | |
emit CancelTransaction(txHash, target, value, signature, data, eta); | |
} | |
function executeTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public payable returns (bytes memory) { | |
require(msg.sender == admin, "Timelock::executeTransaction: Call must come from admin."); | |
bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta)); | |
require(queuedTransactions[txHash], "Timelock::executeTransaction: Transaction hasn't been queued."); | |
require(getBlockTimestamp() >= eta, "Timelock::executeTransaction: Transaction hasn't surpassed time lock."); | |
require(getBlockTimestamp() <= eta.add(GRACE_PERIOD), "Timelock::executeTransaction: Transaction is stale."); | |
queuedTransactions[txHash] = false; | |
bytes memory callData; | |
if (bytes(signature).length == 0) { | |
callData = data; | |
} else { | |
callData = abi.encodePacked(bytes4(keccak256(bytes(signature))), data); | |
} | |
// solium-disable-next-line security/no-call-value | |
(bool success, bytes memory returnData) = target.call{value: value}(callData); | |
require(success, "Timelock::executeTransaction: Transaction execution reverted."); | |
emit ExecuteTransaction(txHash, target, value, signature, data, eta); | |
return returnData; | |
} | |
function getBlockTimestamp() internal view returns (uint) { | |
// solium-disable-next-line security/no-block-members | |
return block.timestamp; | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./ErrorReporter.sol"; | |
import "./ComptrollerStorage.sol"; | |
/** | |
* @title ComptrollerCore | |
* @dev Storage for the comptroller is at this address, while execution is delegated to the `comptrollerImplementation`. | |
* CTokens should reference this contract as their comptroller. | |
*/ | |
contract Unitroller is UnitrollerAdminStorage, ComptrollerErrorReporter { | |
/** | |
* @notice Emitted when pendingComptrollerImplementation is changed | |
*/ | |
event NewPendingImplementation(address oldPendingImplementation, address newPendingImplementation); | |
/** | |
* @notice Emitted when pendingComptrollerImplementation is accepted, which means comptroller implementation is updated | |
*/ | |
event NewImplementation(address oldImplementation, address newImplementation); | |
/** | |
* @notice Emitted when pendingAdmin is changed | |
*/ | |
event NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin); | |
/** | |
* @notice Emitted when pendingAdmin is accepted, which means admin is updated | |
*/ | |
event NewAdmin(address oldAdmin, address newAdmin); | |
constructor() public { | |
// Set admin to caller | |
admin = msg.sender; | |
} | |
/*** Admin Functions ***/ | |
function _setPendingImplementation(address newPendingImplementation) public returns (uint) { | |
if (msg.sender != admin) { | |
return fail(Error.UNAUTHORIZED, FailureInfo.SET_PENDING_IMPLEMENTATION_OWNER_CHECK); | |
} | |
address oldPendingImplementation = pendingComptrollerImplementation; | |
pendingComptrollerImplementation = newPendingImplementation; | |
emit NewPendingImplementation(oldPendingImplementation, pendingComptrollerImplementation); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Accepts new implementation of comptroller. msg.sender must be pendingImplementation | |
* @dev Admin function for new implementation to accept it's role as implementation | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _acceptImplementation() public returns (uint) { | |
// Check caller is pendingImplementation and pendingImplementation ≠ address(0) | |
if (msg.sender != pendingComptrollerImplementation || pendingComptrollerImplementation == address(0)) { | |
return fail(Error.UNAUTHORIZED, FailureInfo.ACCEPT_PENDING_IMPLEMENTATION_ADDRESS_CHECK); | |
} | |
// Save current values for inclusion in log | |
address oldImplementation = comptrollerImplementation; | |
address oldPendingImplementation = pendingComptrollerImplementation; | |
comptrollerImplementation = pendingComptrollerImplementation; | |
pendingComptrollerImplementation = address(0); | |
emit NewImplementation(oldImplementation, comptrollerImplementation); | |
emit NewPendingImplementation(oldPendingImplementation, pendingComptrollerImplementation); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Begins transfer of admin rights. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. | |
* @dev Admin function to begin change of admin. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. | |
* @param newPendingAdmin New pending admin. | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _setPendingAdmin(address newPendingAdmin) public returns (uint) { | |
// Check caller = admin | |
if (msg.sender != admin) { | |
return fail(Error.UNAUTHORIZED, FailureInfo.SET_PENDING_ADMIN_OWNER_CHECK); | |
} | |
// Save current value, if any, for inclusion in log | |
address oldPendingAdmin = pendingAdmin; | |
// Store pendingAdmin with value newPendingAdmin | |
pendingAdmin = newPendingAdmin; | |
// Emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin) | |
emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @notice Accepts transfer of admin rights. msg.sender must be pendingAdmin | |
* @dev Admin function for pending admin to accept role and update admin | |
* @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) | |
*/ | |
function _acceptAdmin() public returns (uint) { | |
// Check caller is pendingAdmin and pendingAdmin ≠ address(0) | |
if (msg.sender != pendingAdmin || msg.sender == address(0)) { | |
return fail(Error.UNAUTHORIZED, FailureInfo.ACCEPT_ADMIN_PENDING_ADMIN_CHECK); | |
} | |
// Save current values for inclusion in log | |
address oldAdmin = admin; | |
address oldPendingAdmin = pendingAdmin; | |
// Store admin with value pendingAdmin | |
admin = pendingAdmin; | |
// Clear the pending value | |
pendingAdmin = address(0); | |
emit NewAdmin(oldAdmin, admin); | |
emit NewPendingAdmin(oldPendingAdmin, pendingAdmin); | |
return uint(Error.NO_ERROR); | |
} | |
/** | |
* @dev Delegates execution to an implementation contract. | |
* It returns to the external caller whatever the implementation returns | |
* or forwards reverts. | |
*/ | |
fallback() payable external { | |
// delegate all other functions to current implementation | |
(bool success, ) = comptrollerImplementation.delegatecall(msg.data); | |
assembly { | |
let free_mem_ptr := mload(0x40) | |
returndatacopy(free_mem_ptr, 0, returndatasize()) | |
switch success | |
case 0 { revert(free_mem_ptr, returndatasize()) } | |
default { return(free_mem_ptr, returndatasize()) } | |
} | |
} | |
} |
This file contains hidden or 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
/* | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██████ ███████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██ ██ ██ ██ ██ █████ ██████ ██ ██ ██ ██ █████ ██ ██ █████ ██ ██ | |
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
██████ ██████ ██████ ██ ██ ██████ ██████ ██████ ██ ██ ██ ██████ ███████ ████ | |
Find any smart contract, and build your project faster: https://www.cookbook.dev | |
Twitter: https://twitter.com/cookbook_dev | |
Discord: https://discord.gg/WzsfPcfHrk | |
Find this contract on Cookbook: https://www.cookbook.dev/protocols/Compound/?utm=code | |
*/ | |
// SPDX-License-Identifier: BSD-3-Clause | |
pragma solidity ^0.8.10; | |
import "./InterestRateModel.sol"; | |
/** | |
* @title Compound's WhitePaperInterestRateModel Contract | |
* @author Compound | |
* @notice The parameterized model described in section 2.4 of the original Compound Protocol whitepaper | |
*/ | |
contract WhitePaperInterestRateModel is InterestRateModel { | |
event NewInterestParams(uint baseRatePerBlock, uint multiplierPerBlock); | |
uint256 private constant BASE = 1e18; | |
/** | |
* @notice The approximate number of blocks per year that is assumed by the interest rate model | |
*/ | |
uint public constant blocksPerYear = 2102400; | |
/** | |
* @notice The multiplier of utilization rate that gives the slope of the interest rate | |
*/ | |
uint public multiplierPerBlock; | |
/** | |
* @notice The base interest rate which is the y-intercept when utilization rate is 0 | |
*/ | |
uint public baseRatePerBlock; | |
/** | |
* @notice Construct an interest rate model | |
* @param baseRatePerYear The approximate target base APR, as a mantissa (scaled by BASE) | |
* @param multiplierPerYear The rate of increase in interest rate wrt utilization (scaled by BASE) | |
*/ | |
constructor(uint baseRatePerYear, uint multiplierPerYear) public { | |
baseRatePerBlock = baseRatePerYear / blocksPerYear; | |
multiplierPerBlock = multiplierPerYear / blocksPerYear; | |
emit NewInterestParams(baseRatePerBlock, multiplierPerBlock); | |
} | |
/** | |
* @notice Calculates the utilization rate of the market: `borrows / (cash + borrows - reserves)` | |
* @param cash The amount of cash in the market | |
* @param borrows The amount of borrows in the market | |
* @param reserves The amount of reserves in the market (currently unused) | |
* @return The utilization rate as a mantissa between [0, BASE] | |
*/ | |
function utilizationRate(uint cash, uint borrows, uint reserves) public pure returns (uint) { | |
// Utilization rate is 0 when there are no borrows | |
if (borrows == 0) { | |
return 0; | |
} | |
return borrows * BASE / (cash + borrows - reserves); | |
} | |
/** | |
* @notice Calculates the current borrow rate per block, with the error code expected by the market | |
* @param cash The amount of cash in the market | |
* @param borrows The amount of borrows in the market | |
* @param reserves The amount of reserves in the market | |
* @return The borrow rate percentage per block as a mantissa (scaled by BASE) | |
*/ | |
function getBorrowRate(uint cash, uint borrows, uint reserves) override public view returns (uint) { | |
uint ur = utilizationRate(cash, borrows, reserves); | |
return (ur * multiplierPerBlock / BASE) + baseRatePerBlock; | |
} | |
/** | |
* @notice Calculates the current supply rate per block | |
* @param cash The amount of cash in the market | |
* @param borrows The amount of borrows in the market | |
* @param reserves The amount of reserves in the market | |
* @param reserveFactorMantissa The current reserve factor for the market | |
* @return The supply rate percentage per block as a mantissa (scaled by BASE) | |
*/ | |
function getSupplyRate(uint cash, uint borrows, uint reserves, uint reserveFactorMantissa) override public view returns (uint) { | |
uint oneMinusReserveFactor = BASE - reserveFactorMantissa; | |
uint borrowRate = getBorrowRate(cash, borrows, reserves); | |
uint rateToPool = borrowRate * oneMinusReserveFactor / BASE; | |
return utilizationRate(cash, borrows, reserves) * rateToPool / BASE; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment