mirror of
https://github.com/Instadapp/dsa-governance.git
synced 2024-07-29 22:27:52 +00:00
IGP26
This commit is contained in:
parent
c99b737e39
commit
ce46ad09ff
646
contracts/payloads/IGP26/PayloadIGP26.sol
Normal file
646
contracts/payloads/IGP26/PayloadIGP26.sol
Normal file
|
|
@ -0,0 +1,646 @@
|
||||||
|
pragma solidity ^0.7.0;
|
||||||
|
pragma experimental ABIEncoderV2;
|
||||||
|
|
||||||
|
import { BigMathMinified } from "./libraries/bigMathMinified.sol";
|
||||||
|
import { LiquiditySlotsLink } from "./libraries/liquiditySlotsLink.sol";
|
||||||
|
|
||||||
|
interface IGovernorBravo {
|
||||||
|
function _acceptAdmin() external;
|
||||||
|
|
||||||
|
function _setVotingDelay(uint newVotingDelay) external;
|
||||||
|
|
||||||
|
function _setVotingPeriod(uint newVotingPeriod) external;
|
||||||
|
|
||||||
|
function _acceptAdminOnTimelock() external;
|
||||||
|
|
||||||
|
function _setImplementation(address implementation_) external;
|
||||||
|
|
||||||
|
function propose(
|
||||||
|
address[] memory targets,
|
||||||
|
uint[] memory values,
|
||||||
|
string[] memory signatures,
|
||||||
|
bytes[] memory calldatas,
|
||||||
|
string memory description
|
||||||
|
) external returns (uint);
|
||||||
|
|
||||||
|
function admin() external view returns (address);
|
||||||
|
|
||||||
|
function pendingAdmin() external view returns (address);
|
||||||
|
|
||||||
|
function timelock() external view returns (address);
|
||||||
|
|
||||||
|
function votingDelay() external view returns (uint256);
|
||||||
|
|
||||||
|
function votingPeriod() external view returns (uint256);
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ITimelock {
|
||||||
|
function acceptAdmin() external;
|
||||||
|
|
||||||
|
function setDelay(uint delay_) external;
|
||||||
|
|
||||||
|
function setPendingAdmin(address pendingAdmin_) external;
|
||||||
|
|
||||||
|
function queueTransaction(
|
||||||
|
address target,
|
||||||
|
uint value,
|
||||||
|
string memory signature,
|
||||||
|
bytes memory data,
|
||||||
|
uint eta
|
||||||
|
) external returns (bytes32);
|
||||||
|
|
||||||
|
function executeTransaction(
|
||||||
|
address target,
|
||||||
|
uint value,
|
||||||
|
string memory signature,
|
||||||
|
bytes memory data,
|
||||||
|
uint eta
|
||||||
|
) external payable returns (bytes memory);
|
||||||
|
|
||||||
|
function pendingAdmin() external view returns (address);
|
||||||
|
|
||||||
|
function admin() external view returns (address);
|
||||||
|
|
||||||
|
function delay() external view returns (uint256);
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AdminModuleStructs {
|
||||||
|
struct AddressBool {
|
||||||
|
address addr;
|
||||||
|
bool value;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct AddressUint256 {
|
||||||
|
address addr;
|
||||||
|
uint256 value;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct RateDataV1Params {
|
||||||
|
address token;
|
||||||
|
uint256 kink;
|
||||||
|
uint256 rateAtUtilizationZero;
|
||||||
|
uint256 rateAtUtilizationKink;
|
||||||
|
uint256 rateAtUtilizationMax;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct RateDataV2Params {
|
||||||
|
address token;
|
||||||
|
uint256 kink1;
|
||||||
|
uint256 kink2;
|
||||||
|
uint256 rateAtUtilizationZero;
|
||||||
|
uint256 rateAtUtilizationKink1;
|
||||||
|
uint256 rateAtUtilizationKink2;
|
||||||
|
uint256 rateAtUtilizationMax;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TokenConfig {
|
||||||
|
address token;
|
||||||
|
uint256 fee;
|
||||||
|
uint256 threshold;
|
||||||
|
uint256 maxUtilization;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct UserSupplyConfig {
|
||||||
|
address user;
|
||||||
|
address token;
|
||||||
|
uint8 mode;
|
||||||
|
uint256 expandPercent;
|
||||||
|
uint256 expandDuration;
|
||||||
|
uint256 baseWithdrawalLimit;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct UserBorrowConfig {
|
||||||
|
address user;
|
||||||
|
address token;
|
||||||
|
uint8 mode;
|
||||||
|
uint256 expandPercent;
|
||||||
|
uint256 expandDuration;
|
||||||
|
uint256 baseDebtCeiling;
|
||||||
|
uint256 maxDebtCeiling;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
interface IProxy {
|
||||||
|
function setAdmin(address newAdmin_) external;
|
||||||
|
|
||||||
|
function setDummyImplementation(address newDummyImplementation_) external;
|
||||||
|
|
||||||
|
function addImplementation(
|
||||||
|
address implementation_,
|
||||||
|
bytes4[] calldata sigs_
|
||||||
|
) external;
|
||||||
|
|
||||||
|
function removeImplementation(address implementation_) external;
|
||||||
|
|
||||||
|
function getAdmin() external view returns (address);
|
||||||
|
|
||||||
|
function getDummyImplementation() external view returns (address);
|
||||||
|
|
||||||
|
function getImplementationSigs(
|
||||||
|
address impl_
|
||||||
|
) external view returns (bytes4[] memory);
|
||||||
|
|
||||||
|
function getSigsImplementation(bytes4 sig_) external view returns (address);
|
||||||
|
|
||||||
|
function readFromStorage(
|
||||||
|
bytes32 slot_
|
||||||
|
) external view returns (uint256 result_);
|
||||||
|
}
|
||||||
|
|
||||||
|
interface IFluidLiquidityAdmin {
|
||||||
|
/// @notice adds/removes auths. Auths generally could be contracts which can have restricted actions defined on contract.
|
||||||
|
/// auths can be helpful in reducing governance overhead where it's not needed.
|
||||||
|
/// @param authsStatus_ array of structs setting allowed status for an address.
|
||||||
|
/// status true => add auth, false => remove auth
|
||||||
|
function updateAuths(
|
||||||
|
AdminModuleStructs.AddressBool[] calldata authsStatus_
|
||||||
|
) external;
|
||||||
|
|
||||||
|
/// @notice adds/removes guardians. Only callable by Governance.
|
||||||
|
/// @param guardiansStatus_ array of structs setting allowed status for an address.
|
||||||
|
/// status true => add guardian, false => remove guardian
|
||||||
|
function updateGuardians(
|
||||||
|
AdminModuleStructs.AddressBool[] calldata guardiansStatus_
|
||||||
|
) external;
|
||||||
|
|
||||||
|
/// @notice changes the revenue collector address (contract that is sent revenue). Only callable by Governance.
|
||||||
|
/// @param revenueCollector_ new revenue collector address
|
||||||
|
function updateRevenueCollector(address revenueCollector_) external;
|
||||||
|
|
||||||
|
/// @notice changes current status, e.g. for pausing or unpausing all user operations. Only callable by Auths.
|
||||||
|
/// @param newStatus_ new status
|
||||||
|
/// status = 2 -> pause, status = 1 -> resume.
|
||||||
|
function changeStatus(uint256 newStatus_) external;
|
||||||
|
|
||||||
|
/// @notice update tokens rate data version 1. Only callable by Auths.
|
||||||
|
/// @param tokensRateData_ array of RateDataV1Params with rate data to set for each token
|
||||||
|
function updateRateDataV1s(
|
||||||
|
AdminModuleStructs.RateDataV1Params[] calldata tokensRateData_
|
||||||
|
) external;
|
||||||
|
|
||||||
|
/// @notice update tokens rate data version 2. Only callable by Auths.
|
||||||
|
/// @param tokensRateData_ array of RateDataV2Params with rate data to set for each token
|
||||||
|
function updateRateDataV2s(
|
||||||
|
AdminModuleStructs.RateDataV2Params[] calldata tokensRateData_
|
||||||
|
) external;
|
||||||
|
|
||||||
|
/// @notice updates token configs: fee charge on borrowers interest & storage update utilization threshold.
|
||||||
|
/// Only callable by Auths.
|
||||||
|
/// @param tokenConfigs_ contains token address, fee & utilization threshold
|
||||||
|
function updateTokenConfigs(
|
||||||
|
AdminModuleStructs.TokenConfig[] calldata tokenConfigs_
|
||||||
|
) external;
|
||||||
|
|
||||||
|
/// @notice updates user classes: 0 is for new protocols, 1 is for established protocols.
|
||||||
|
/// Only callable by Auths.
|
||||||
|
/// @param userClasses_ struct array of uint256 value to assign for each user address
|
||||||
|
function updateUserClasses(
|
||||||
|
AdminModuleStructs.AddressUint256[] calldata userClasses_
|
||||||
|
) external;
|
||||||
|
|
||||||
|
/// @notice sets user supply configs per token basis. Eg: with interest or interest-free and automated limits.
|
||||||
|
/// Only callable by Auths.
|
||||||
|
/// @param userSupplyConfigs_ struct array containing user supply config, see `UserSupplyConfig` struct for more info
|
||||||
|
function updateUserSupplyConfigs(
|
||||||
|
AdminModuleStructs.UserSupplyConfig[] memory userSupplyConfigs_
|
||||||
|
) external;
|
||||||
|
|
||||||
|
/// @notice setting user borrow configs per token basis. Eg: with interest or interest-free and automated limits.
|
||||||
|
/// Only callable by Auths.
|
||||||
|
/// @param userBorrowConfigs_ struct array containing user borrow config, see `UserBorrowConfig` struct for more info
|
||||||
|
function updateUserBorrowConfigs(
|
||||||
|
AdminModuleStructs.UserBorrowConfig[] memory userBorrowConfigs_
|
||||||
|
) external;
|
||||||
|
|
||||||
|
/// @notice pause operations for a particular user in class 0 (class 1 users can't be paused by guardians).
|
||||||
|
/// Only callable by Guardians.
|
||||||
|
/// @param user_ address of user to pause operations for
|
||||||
|
/// @param supplyTokens_ token addresses to pause withdrawals for
|
||||||
|
/// @param borrowTokens_ token addresses to pause borrowings for
|
||||||
|
function pauseUser(
|
||||||
|
address user_,
|
||||||
|
address[] calldata supplyTokens_,
|
||||||
|
address[] calldata borrowTokens_
|
||||||
|
) external;
|
||||||
|
|
||||||
|
/// @notice unpause operations for a particular user in class 0 (class 1 users can't be paused by guardians).
|
||||||
|
/// Only callable by Guardians.
|
||||||
|
/// @param user_ address of user to unpause operations for
|
||||||
|
/// @param supplyTokens_ token addresses to unpause withdrawals for
|
||||||
|
/// @param borrowTokens_ token addresses to unpause borrowings for
|
||||||
|
function unpauseUser(
|
||||||
|
address user_,
|
||||||
|
address[] calldata supplyTokens_,
|
||||||
|
address[] calldata borrowTokens_
|
||||||
|
) external;
|
||||||
|
|
||||||
|
/// @notice collects revenue for tokens to configured revenueCollector address.
|
||||||
|
/// @param tokens_ array of tokens to collect revenue for
|
||||||
|
/// @dev Note that this can revert if token balance is < revenueAmount (utilization > 100%)
|
||||||
|
function collectRevenue(address[] calldata tokens_) external;
|
||||||
|
|
||||||
|
/// @notice gets the current updated exchange prices for n tokens and updates all prices, rates related data in storage.
|
||||||
|
/// @param tokens_ tokens to update exchange prices for
|
||||||
|
/// @return supplyExchangePrices_ new supply rates of overall system for each token
|
||||||
|
/// @return borrowExchangePrices_ new borrow rates of overall system for each token
|
||||||
|
function updateExchangePrices(
|
||||||
|
address[] calldata tokens_
|
||||||
|
)
|
||||||
|
external
|
||||||
|
returns (
|
||||||
|
uint256[] memory supplyExchangePrices_,
|
||||||
|
uint256[] memory borrowExchangePrices_
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
interface IFluidVaultT1Factory {
|
||||||
|
/// @notice Deploys a new vault using the specified deployment logic `vaultDeploymentLogic_` and data `vaultDeploymentData_`.
|
||||||
|
/// Only accounts with deployer access or the owner can deploy a new vault.
|
||||||
|
/// @param vaultDeploymentLogic_ The address of the vault deployment logic contract.
|
||||||
|
/// @param vaultDeploymentData_ The data to be used for vault deployment.
|
||||||
|
/// @return vault_ Returns the address of the newly deployed vault.
|
||||||
|
function deployVault(
|
||||||
|
address vaultDeploymentLogic_,
|
||||||
|
bytes calldata vaultDeploymentData_
|
||||||
|
) external returns (address vault_);
|
||||||
|
|
||||||
|
/// @notice Sets an address as allowed vault deployment logic (`deploymentLogic_`) contract or not.
|
||||||
|
/// This function can only be called by the owner.
|
||||||
|
/// @param deploymentLogic_ The address of the vault deployment logic contract to be set.
|
||||||
|
/// @param allowed_ A boolean indicating whether the specified address is allowed to deploy new type of vault.
|
||||||
|
function setVaultDeploymentLogic(
|
||||||
|
address deploymentLogic_,
|
||||||
|
bool allowed_
|
||||||
|
) external;
|
||||||
|
|
||||||
|
|
||||||
|
/// @notice Computes the address of a vault based on its given ID (`vaultId_`).
|
||||||
|
/// @param vaultId_ The ID of the vault.
|
||||||
|
/// @return vault_ Returns the computed address of the vault.
|
||||||
|
function getVaultAddress(uint256 vaultId_) external view returns (address vault_);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
interface IFluidVaultT1 {
|
||||||
|
/// @notice updates the Vault oracle to `newOracle_`. Must implement the FluidOracle interface.
|
||||||
|
function updateOracle(address newOracle_) external;
|
||||||
|
|
||||||
|
/// @notice updates the all Vault core settings according to input params.
|
||||||
|
/// All input values are expected in 1e2 (1% = 100, 100% = 10_000).
|
||||||
|
function updateCoreSettings(
|
||||||
|
uint256 supplyRateMagnifier_,
|
||||||
|
uint256 borrowRateMagnifier_,
|
||||||
|
uint256 collateralFactor_,
|
||||||
|
uint256 liquidationThreshold_,
|
||||||
|
uint256 liquidationMaxLimit_,
|
||||||
|
uint256 withdrawGap_,
|
||||||
|
uint256 liquidationPenalty_,
|
||||||
|
uint256 borrowFee_
|
||||||
|
) external;
|
||||||
|
|
||||||
|
/// @notice updates the allowed rebalancer to `newRebalancer_`.
|
||||||
|
function updateRebalancer(address newRebalancer_) external;
|
||||||
|
|
||||||
|
/// @notice updates the supply rate magnifier to `supplyRateMagnifier_`. Input in 1e2 (1% = 100, 100% = 10_000).
|
||||||
|
function updateSupplyRateMagnifier(uint supplyRateMagnifier_) external;
|
||||||
|
|
||||||
|
/// @notice updates the collateral factor to `collateralFactor_`. Input in 1e2 (1% = 100, 100% = 10_000).
|
||||||
|
function updateCollateralFactor(uint collateralFactor_) external;
|
||||||
|
|
||||||
|
struct ConstantViews {
|
||||||
|
address liquidity;
|
||||||
|
address factory;
|
||||||
|
address adminImplementation;
|
||||||
|
address secondaryImplementation;
|
||||||
|
address supplyToken;
|
||||||
|
address borrowToken;
|
||||||
|
uint8 supplyDecimals;
|
||||||
|
uint8 borrowDecimals;
|
||||||
|
uint vaultId;
|
||||||
|
bytes32 liquiditySupplyExchangePriceSlot;
|
||||||
|
bytes32 liquidityBorrowExchangePriceSlot;
|
||||||
|
bytes32 liquidityUserSupplySlot;
|
||||||
|
bytes32 liquidityUserBorrowSlot;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// @notice returns all Vault constants
|
||||||
|
function constantsView() external view returns (ConstantViews memory constantsView_);
|
||||||
|
|
||||||
|
struct Configs {
|
||||||
|
uint16 supplyRateMagnifier;
|
||||||
|
uint16 borrowRateMagnifier;
|
||||||
|
uint16 collateralFactor;
|
||||||
|
uint16 liquidationThreshold;
|
||||||
|
uint16 liquidationMaxLimit;
|
||||||
|
uint16 withdrawalGap;
|
||||||
|
uint16 liquidationPenalty;
|
||||||
|
uint16 borrowFee;
|
||||||
|
address oracle;
|
||||||
|
uint oraclePriceOperate;
|
||||||
|
uint oraclePriceLiquidate;
|
||||||
|
address rebalancer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
interface IFluidOracle {
|
||||||
|
/// @dev Deprecated. Use `getExchangeRateOperate()` and `getExchangeRateLiquidate()` instead. Only implemented for
|
||||||
|
/// backwards compatibility.
|
||||||
|
function getExchangeRate() external view returns (uint256 exchangeRate_);
|
||||||
|
|
||||||
|
/// @notice Get the `exchangeRate_` between the underlying asset and the peg asset in 1e27 for operates
|
||||||
|
function getExchangeRateOperate() external view returns (uint256 exchangeRate_);
|
||||||
|
|
||||||
|
/// @notice Get the `exchangeRate_` between the underlying asset and the peg asset in 1e27 for liquidations
|
||||||
|
function getExchangeRateLiquidate() external view returns (uint256 exchangeRate_);
|
||||||
|
}
|
||||||
|
|
||||||
|
contract PayloadIGP26 {
|
||||||
|
uint256 public constant PROPOSAL_ID = 26;
|
||||||
|
|
||||||
|
address public constant PROPOSER =
|
||||||
|
0xA45f7bD6A5Ff45D31aaCE6bCD3d426D9328cea01;
|
||||||
|
|
||||||
|
address public constant PROPOSER_AVO_MULTISIG =
|
||||||
|
0x059A94A72951c0ae1cc1CE3BF0dB52421bbE8210;
|
||||||
|
|
||||||
|
address public constant PROPOSER_AVO_MULTISIG_2 =
|
||||||
|
0x9efdE135CA4832AbF0408c44c6f5f370eB0f35e8;
|
||||||
|
|
||||||
|
IGovernorBravo public constant GOVERNOR =
|
||||||
|
IGovernorBravo(0x0204Cd037B2ec03605CFdFe482D8e257C765fA1B);
|
||||||
|
ITimelock public immutable TIMELOCK =
|
||||||
|
ITimelock(0x2386DC45AdDed673317eF068992F19421B481F4c);
|
||||||
|
|
||||||
|
address public immutable ADDRESS_THIS;
|
||||||
|
|
||||||
|
address public constant TEAM_MULTISIG =
|
||||||
|
0x4F6F977aCDD1177DCD81aB83074855EcB9C2D49e;
|
||||||
|
|
||||||
|
IFluidLiquidityAdmin public constant LIQUIDITY =
|
||||||
|
IFluidLiquidityAdmin(0x52Aa899454998Be5b000Ad077a46Bbe360F4e497);
|
||||||
|
IFluidVaultT1Factory public constant VAULT_T1_FACTORY =
|
||||||
|
IFluidVaultT1Factory(0x324c5Dc1fC42c7a4D43d92df1eBA58a54d13Bf2d);
|
||||||
|
|
||||||
|
uint256 internal constant X14 = 0x3fff;
|
||||||
|
uint256 internal constant X18 = 0x3ffff;
|
||||||
|
uint256 internal constant X24 = 0xffffff;
|
||||||
|
uint256 internal constant X64 = 0xffffffffffffffff;
|
||||||
|
|
||||||
|
address public constant ETH_ADDRESS =
|
||||||
|
0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
|
||||||
|
address public constant wstETH_ADDRESS =
|
||||||
|
0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0;
|
||||||
|
address public constant weETH_ADDRESS =
|
||||||
|
0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee;
|
||||||
|
|
||||||
|
address public constant sUSDe_ADDRESS =
|
||||||
|
0x9D39A5DE30e57443BfF2A8307A4256c8797A3497;
|
||||||
|
address public constant USDC_ADDRESS =
|
||||||
|
0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
|
||||||
|
address public constant USDT_ADDRESS =
|
||||||
|
0xdAC17F958D2ee523a2206206994597C13D831ec7;
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
ADDRESS_THIS = address(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
function propose(string memory description) external {
|
||||||
|
require(
|
||||||
|
msg.sender == PROPOSER ||
|
||||||
|
msg.sender == TEAM_MULTISIG ||
|
||||||
|
address(this) == PROPOSER_AVO_MULTISIG ||
|
||||||
|
address(this) == PROPOSER_AVO_MULTISIG_2,
|
||||||
|
"msg.sender-not-allowed"
|
||||||
|
);
|
||||||
|
|
||||||
|
uint256 totalActions = 1;
|
||||||
|
address[] memory targets = new address[](totalActions);
|
||||||
|
uint256[] memory values = new uint256[](totalActions);
|
||||||
|
string[] memory signatures = new string[](totalActions);
|
||||||
|
bytes[] memory calldatas = new bytes[](totalActions);
|
||||||
|
|
||||||
|
// Action 1: call executePayload on timelock contract to execute payload related to Fluid
|
||||||
|
targets[0] = address(TIMELOCK);
|
||||||
|
values[0] = 0;
|
||||||
|
signatures[0] = "executePayload(address,string,bytes)";
|
||||||
|
calldatas[0] = abi.encode(ADDRESS_THIS, "execute()", abi.encode());
|
||||||
|
|
||||||
|
uint256 proposedId = GOVERNOR.propose(
|
||||||
|
targets,
|
||||||
|
values,
|
||||||
|
signatures,
|
||||||
|
calldatas,
|
||||||
|
description
|
||||||
|
);
|
||||||
|
|
||||||
|
require(proposedId == PROPOSAL_ID, "PROPOSAL_IS_NOT_SAME");
|
||||||
|
}
|
||||||
|
|
||||||
|
function execute() external {
|
||||||
|
require(address(this) == address(TIMELOCK), "not-valid-caller");
|
||||||
|
|
||||||
|
// Action 1: Clone from old vault config to new vault
|
||||||
|
action1();
|
||||||
|
}
|
||||||
|
|
||||||
|
/***********************************|
|
||||||
|
| Proposal Payload Actions |
|
||||||
|
|__________________________________*/
|
||||||
|
|
||||||
|
/// @notice Action 1: Clone from old vault config to new vault
|
||||||
|
function action1() internal {
|
||||||
|
for (uint oldVaultId = 1; oldVaultId <= 10; oldVaultId++) {
|
||||||
|
cloneVault(oldVaultId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/***********************************|
|
||||||
|
| Proposal Payload Helpers |
|
||||||
|
|__________________________________*/
|
||||||
|
|
||||||
|
function getUserSupplyData(
|
||||||
|
address token_,
|
||||||
|
address user_
|
||||||
|
) internal view returns(AdminModuleStructs.UserSupplyConfig memory config_) {
|
||||||
|
bytes32 _LIQUDITY_PROTOCOL_SUPPLY_SLOT = LiquiditySlotsLink.calculateDoubleMappingStorageSlot(
|
||||||
|
LiquiditySlotsLink.LIQUIDITY_USER_SUPPLY_DOUBLE_MAPPING_SLOT,
|
||||||
|
user_,
|
||||||
|
token_
|
||||||
|
);
|
||||||
|
|
||||||
|
uint256 userSupplyData_ = LIQUIDITY.readFromStorage(_LIQUDITY_PROTOCOL_SUPPLY_SLOT);
|
||||||
|
|
||||||
|
config_ = AdminModuleStructs.UserSupplyConfig({
|
||||||
|
user: user_,
|
||||||
|
token: token_,
|
||||||
|
mode: uint8(userSupplyData_ & 1),
|
||||||
|
expandPercent: (userSupply_ >> LiquiditySlotsLink.BITS_USER_SUPPLY_EXPAND_PERCENT) & X14,
|
||||||
|
expandDuration: (userSupplyData_ >> LiquiditySlotsLink.BITS_USER_SUPPLY_EXPAND_DURATION) & X24,
|
||||||
|
baseWithdrawalLimit: BigMathMinified.fromBigNumber(
|
||||||
|
(userSupplyData_ >> LiquiditySlotsLink.BITS_USER_SUPPLY_BASE_WITHDRAWAL_LIMIT) & X18,
|
||||||
|
DEFAULT_EXPONENT_SIZE,
|
||||||
|
DEFAULT_EXPONENT_MASK
|
||||||
|
)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function getUserBorrowData(
|
||||||
|
address token_,
|
||||||
|
address user_,
|
||||||
|
) internal view returns(AdminModuleStructs.UserBorrowConfig memory config_) {
|
||||||
|
bytes32 _LIQUDITY_PROTOCOL_BORROW_SLOT = LiquiditySlotsLink.calculateDoubleMappingStorageSlot(
|
||||||
|
LiquiditySlotsLink.LIQUIDITY_USER_BORROW_DOUBLE_MAPPING_SLOT,
|
||||||
|
user_,
|
||||||
|
token_
|
||||||
|
);
|
||||||
|
|
||||||
|
uint256 userBorrowData_ = LIQUIDITY.readFromStorage(_LIQUDITY_PROTOCOL_BORROW_SLOT);
|
||||||
|
|
||||||
|
config_ = AdminModuleStructs.UserBorrowConfig({
|
||||||
|
user: user_,
|
||||||
|
token: token_,
|
||||||
|
mode: uint8(userBorrowData_ & 1),
|
||||||
|
expandPercent: (userBorrowData_ >> LiquiditySlotsLink.BITS_USER_BORROW_EXPAND_PERCENT) & X14,
|
||||||
|
expandDuration: (userBorrowData_ >> LiquiditySlotsLink.BITS_USER_BORROW_EXPAND_DURATION) & X24,
|
||||||
|
baseDebtCeiling: BigMathMinified.fromBigNumber(
|
||||||
|
(userBorrowData_ >> LiquiditySlotsLink.BITS_USER_BORROW_BASE_BORROW_LIMIT) & X18,
|
||||||
|
DEFAULT_EXPONENT_SIZE,
|
||||||
|
DEFAULT_EXPONENT_MASK
|
||||||
|
),
|
||||||
|
maxDebtCeiling: BigMathMinified.fromBigNumber(
|
||||||
|
(userBorrowData_ >> LiquiditySlotsLink.BITS_USER_BORROW_MAX_BORROW_LIMIT) & X18,
|
||||||
|
DEFAULT_EXPONENT_SIZE,
|
||||||
|
DEFAULT_EXPONENT_MASK
|
||||||
|
)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function getAllowance(address token) internal returns (uint256, uint256) {
|
||||||
|
if (token == ETH_ADDRESS) {
|
||||||
|
return (3 * 1e18, 4 * 1e18);
|
||||||
|
} else if (token == wstETH_ADDRESS) {
|
||||||
|
return (2.33 * 1e18, 3.5 * 1e18);
|
||||||
|
} else if (token == weETH_ADDRESS) {
|
||||||
|
return (2.6 * 1e18, 3.95 * 1e18);
|
||||||
|
} else if (token == USDC_ADDRESS || token == USDT_ADDRESS) {
|
||||||
|
return (10_000 * 1e6, 15_000 * 1e6);
|
||||||
|
} else if (token == sUSDe_ADDRESS) {
|
||||||
|
return (9_200 * 1e18, 13_900 * 1e18);
|
||||||
|
} else {
|
||||||
|
revert "no allowance found";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function getOracleAddress(uint256 vaultId) internal returns(address) {
|
||||||
|
if (vaultId == 11) {
|
||||||
|
return 0x5b2860C6D6F888319C752aaCDaf8165C21095E3a; // VAULT_ETH_USDC
|
||||||
|
} else if (vaultId == 12) {
|
||||||
|
return 0x7eA20E1FB456AF31C6425813bFfD4Ef6E0A4C86E; // VAULT_ETH_USDT
|
||||||
|
} else if (vaultId == 13) {
|
||||||
|
return 0xadE0948e2431DEFB87e75760e94f190cbF35E95b; // VAULT_WSTETH_ETH
|
||||||
|
} else if (vaultId == 14) {
|
||||||
|
return 0xc5911Fa3917c507fBEbAb910C8b47cBdD3Ce147e; // VAULT_WSTETH_USDC
|
||||||
|
} else if (vaultId == 15) {
|
||||||
|
return 0x38aE6fa3d6376D86D1EE591364CD4b45C99adE22; // VAULT_WSTETH_USDT
|
||||||
|
} else if (vaultId == 16) {
|
||||||
|
return 0xEA0C58bE3133Cb7f035faCF45cb1d4F84CF178B4; // VAULT_WEETH_WSTETH
|
||||||
|
} else if (vaultId == 17) {
|
||||||
|
return 0x72DB9B7Bd2b0BC282708E85E16123023b32de6A9; // VAULT_SUSDE_USDC
|
||||||
|
} else if (vaultId == 18) {
|
||||||
|
return 0x72DB9B7Bd2b0BC282708E85E16123023b32de6A9; // VAULT_SUSDE_USDT
|
||||||
|
} else if (vaultId == 19) {
|
||||||
|
return 0xda8a70b9533DEBE425F8A3b2B33bc09c0415e5FE; // VAULT_WEETH_USDC
|
||||||
|
} else if (vaultId == 20) {
|
||||||
|
return 0x32eE0cB3587C6e9f8Ad2a0CF83B6Cf326848b7c6; // VAULT_WEETH_USDT
|
||||||
|
} else {
|
||||||
|
revert "no oracle address";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function getVaultConfig(address vault) internal view returns (IFluidVaultT1.Configs memory configs) {
|
||||||
|
uint vaultVariables2 = IFluidVaultT1(vault_).readFromStorage(bytes32(1));
|
||||||
|
configs_.supplyRateMagnifier = uint16(vaultVariables2 & X16);
|
||||||
|
configs_.borrowRateMagnifier = uint16((vaultVariables2 >> 16) & X16);
|
||||||
|
configs_.collateralFactor = (uint16((vaultVariables2 >> 32) & X10)) * 10;
|
||||||
|
configs_.liquidationThreshold = (uint16((vaultVariables2 >> 42) & X10)) * 10;
|
||||||
|
configs_.liquidationMaxLimit = (uint16((vaultVariables2 >> 52) & X10) * 10);
|
||||||
|
configs_.withdrawalGap = uint16((vaultVariables2 >> 62) & X10) * 10;
|
||||||
|
configs_.liquidationPenalty = uint16((vaultVariables2 >> 72) & X10);
|
||||||
|
configs_.borrowFee = uint16((vaultVariables2 >> 82) & X10);
|
||||||
|
configs_.oracle = address(uint160(vaultVariables2 >> 96));
|
||||||
|
}
|
||||||
|
|
||||||
|
function cloneVault(uint256 oldVaultId) internal {
|
||||||
|
address oldVaultAddress = VAULT_T1_FACTORY.getVaultAddress(oldVaultId);
|
||||||
|
address newVaultAddress = VAULT_T1_FACTORY.getVaultAddress(oldVaultId + 10);
|
||||||
|
|
||||||
|
IFluidVaultT1.ConstantViews memory oldConstants = IFluidVaultT1(oldVaultAddress).constantsView();
|
||||||
|
IFluidVaultT1.ConstantViews memory newConstants = IFluidVaultT1(newVaultAddress).constantsView();
|
||||||
|
|
||||||
|
address newOracleAddress = getOracleAddress(oldVaultId + 10);
|
||||||
|
|
||||||
|
{
|
||||||
|
require(oldConstants.supplyToken == newConstants.supplyToken, "not-same-supply-token");
|
||||||
|
require(oldConstants.borrowToken == newConstants.borrowToken, "not-same-borrow-token");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set user supply config for the vault on Liquidity Layer.
|
||||||
|
{
|
||||||
|
AdminModuleStructs.UserSupplyConfig[]
|
||||||
|
memory configs_ = getUserSupplyData(newConstants.supplyToken, oldVaultAddress);
|
||||||
|
|
||||||
|
(uint256 baseAllowance, uint256 maxAllowance) = getAllowance(newConstants.supplyToken);
|
||||||
|
|
||||||
|
configs_[0].baseWithdrawalLimit = baseAllowance;
|
||||||
|
|
||||||
|
LIQUIDITY.updateUserSupplyConfigs(configs_);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set user borrow config for the vault on Liquidity Layer.
|
||||||
|
{
|
||||||
|
AdminModuleStructs.UserBorrowConfig[]
|
||||||
|
memory configs_ = getUserBorrowData(newConstants.borrowToken, oldVaultAddress);
|
||||||
|
|
||||||
|
(uint256 baseAllowance, uint256 maxAllowance) = getAllowance(newConstants.borrowAllowance);
|
||||||
|
|
||||||
|
configs_[0].baseDebtCeiling = baseAllowance;
|
||||||
|
configs_[0].maxDebtCeiling = maxAllowance;
|
||||||
|
|
||||||
|
LIQUIDITY.updateUserBorrowConfigs(configs_);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clone core settings from old vault to new vault.
|
||||||
|
{
|
||||||
|
IFluidVaultT1.Configs memory configs = getVaultConfig(oldVaultAddress);
|
||||||
|
|
||||||
|
{
|
||||||
|
require(
|
||||||
|
IFluidOracle(configs.oracle).getExchangeRate() == IFluidOracle(newOracleAddress).getExchangeRate(),
|
||||||
|
"oracle exchangePrice is not same"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
IFluidVaultT1(newVaultAddress).updateCoreSettings(
|
||||||
|
configs.supplyRateMagnifier, // supplyRateMagnifier
|
||||||
|
configs.borrowRateMagnifier, // borrowRateMagnifier
|
||||||
|
configs.collateralFactor, // collateralFactor
|
||||||
|
configs.liquidationThreshold, // liquidationThreshold
|
||||||
|
configs.liquidationMaxLimit, // liquidationMaxLimit
|
||||||
|
configs.withdrawGap, // withdrawGap
|
||||||
|
configs.liquidationPenalty, // liquidationPenalty
|
||||||
|
configs.borrowFee // borrowFee
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update oracle on new vault.
|
||||||
|
{
|
||||||
|
IFluidVaultT1(vault_).updateOracle(newOracleAddress);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update rebalancer on new vault.
|
||||||
|
{
|
||||||
|
IFluidVaultT1(vault_).updateRebalancer(0x264786EF916af64a1DB19F513F24a3681734ce92);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
156
contracts/payloads/IGP26/libraries/bigMathMinified.sol
Normal file
156
contracts/payloads/IGP26/libraries/bigMathMinified.sol
Normal file
|
|
@ -0,0 +1,156 @@
|
||||||
|
// SPDX-License-Identifier: BUSL-1.1
|
||||||
|
pragma solidity 0.8.21;
|
||||||
|
|
||||||
|
/// @title library that represents a number in BigNumber(coefficient and exponent) format to store in smaller bits.
|
||||||
|
/// @notice the number is divided into two parts: a coefficient and an exponent. This comes at a cost of losing some precision
|
||||||
|
/// at the end of the number because the exponent simply fills it with zeroes. This precision is oftentimes negligible and can
|
||||||
|
/// result in significant gas cost reduction due to storage space reduction.
|
||||||
|
/// Also note, a valid big number is as follows: if the exponent is > 0, then coefficient last bits should be occupied to have max precision.
|
||||||
|
/// @dev roundUp is more like a increase 1, which happens everytime for the same number.
|
||||||
|
/// roundDown simply sets trailing digits after coefficientSize to zero (floor), only once for the same number.
|
||||||
|
library BigMathMinified {
|
||||||
|
/// @dev constants to use for `roundUp` input param to increase readability
|
||||||
|
bool internal constant ROUND_DOWN = false;
|
||||||
|
bool internal constant ROUND_UP = true;
|
||||||
|
|
||||||
|
/// @dev converts `normal` number to BigNumber with `exponent` and `coefficient` (or precision).
|
||||||
|
/// e.g.:
|
||||||
|
/// 5035703444687813576399599 (normal) = (coefficient[32bits], exponent[8bits])[40bits]
|
||||||
|
/// 5035703444687813576399599 (decimal) => 10000101010010110100000011111011110010100110100000000011100101001101001101011101111 (binary)
|
||||||
|
/// => 10000101010010110100000011111011000000000000000000000000000000000000000000000000000
|
||||||
|
/// ^-------------------- 51(exponent) -------------- ^
|
||||||
|
/// coefficient = 1000,0101,0100,1011,0100,0000,1111,1011 (2236301563)
|
||||||
|
/// exponent = 0011,0011 (51)
|
||||||
|
/// bigNumber = 1000,0101,0100,1011,0100,0000,1111,1011,0011,0011 (572493200179)
|
||||||
|
///
|
||||||
|
/// @param normal number which needs to be converted into Big Number
|
||||||
|
/// @param coefficientSize at max how many bits of precision there should be (64 = uint64 (64 bits precision))
|
||||||
|
/// @param exponentSize at max how many bits of exponent there should be (8 = uint8 (8 bits exponent))
|
||||||
|
/// @param roundUp signals if result should be rounded down or up
|
||||||
|
/// @return bigNumber converted bigNumber (coefficient << exponent)
|
||||||
|
function toBigNumber(
|
||||||
|
uint256 normal,
|
||||||
|
uint256 coefficientSize,
|
||||||
|
uint256 exponentSize,
|
||||||
|
bool roundUp
|
||||||
|
) internal pure returns (uint256 bigNumber) {
|
||||||
|
assembly {
|
||||||
|
let lastBit_
|
||||||
|
let number_ := normal
|
||||||
|
if gt(number_, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF) {
|
||||||
|
number_ := shr(0x80, number_)
|
||||||
|
lastBit_ := 0x80
|
||||||
|
}
|
||||||
|
if gt(number_, 0xFFFFFFFFFFFFFFFF) {
|
||||||
|
number_ := shr(0x40, number_)
|
||||||
|
lastBit_ := add(lastBit_, 0x40)
|
||||||
|
}
|
||||||
|
if gt(number_, 0xFFFFFFFF) {
|
||||||
|
number_ := shr(0x20, number_)
|
||||||
|
lastBit_ := add(lastBit_, 0x20)
|
||||||
|
}
|
||||||
|
if gt(number_, 0xFFFF) {
|
||||||
|
number_ := shr(0x10, number_)
|
||||||
|
lastBit_ := add(lastBit_, 0x10)
|
||||||
|
}
|
||||||
|
if gt(number_, 0xFF) {
|
||||||
|
number_ := shr(0x8, number_)
|
||||||
|
lastBit_ := add(lastBit_, 0x8)
|
||||||
|
}
|
||||||
|
if gt(number_, 0xF) {
|
||||||
|
number_ := shr(0x4, number_)
|
||||||
|
lastBit_ := add(lastBit_, 0x4)
|
||||||
|
}
|
||||||
|
if gt(number_, 0x3) {
|
||||||
|
number_ := shr(0x2, number_)
|
||||||
|
lastBit_ := add(lastBit_, 0x2)
|
||||||
|
}
|
||||||
|
if gt(number_, 0x1) {
|
||||||
|
lastBit_ := add(lastBit_, 1)
|
||||||
|
}
|
||||||
|
if gt(number_, 0) {
|
||||||
|
lastBit_ := add(lastBit_, 1)
|
||||||
|
}
|
||||||
|
if lt(lastBit_, coefficientSize) {
|
||||||
|
// for throw exception
|
||||||
|
lastBit_ := coefficientSize
|
||||||
|
}
|
||||||
|
let exponent := sub(lastBit_, coefficientSize)
|
||||||
|
let coefficient := shr(exponent, normal)
|
||||||
|
if and(roundUp, gt(exponent, 0)) {
|
||||||
|
// rounding up is only needed if exponent is > 0, as otherwise the coefficient fully holds the original number
|
||||||
|
coefficient := add(coefficient, 1)
|
||||||
|
if eq(shl(coefficientSize, 1), coefficient) {
|
||||||
|
// case were coefficient was e.g. 111, with adding 1 it became 1000 (in binary) and coefficientSize 3 bits
|
||||||
|
// final coefficient would exceed it's size. -> reduce coefficent to 100 and increase exponent by 1.
|
||||||
|
coefficient := shl(sub(coefficientSize, 1), 1)
|
||||||
|
exponent := add(exponent, 1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if iszero(lt(exponent, shl(exponentSize, 1))) {
|
||||||
|
// if exponent is >= exponentSize, the normal number is too big to fit within
|
||||||
|
// BigNumber with too small sizes for coefficient and exponent
|
||||||
|
revert(0, 0)
|
||||||
|
}
|
||||||
|
bigNumber := shl(exponentSize, coefficient)
|
||||||
|
bigNumber := add(bigNumber, exponent)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// @dev get `normal` number from `bigNumber`, `exponentSize` and `exponentMask`
|
||||||
|
function fromBigNumber(
|
||||||
|
uint256 bigNumber,
|
||||||
|
uint256 exponentSize,
|
||||||
|
uint256 exponentMask
|
||||||
|
) internal pure returns (uint256 normal) {
|
||||||
|
assembly {
|
||||||
|
let coefficient := shr(exponentSize, bigNumber)
|
||||||
|
let exponent := and(bigNumber, exponentMask)
|
||||||
|
normal := shl(exponent, coefficient)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// @dev gets the most significant bit `lastBit` of a `normal` number (length of given number of binary format).
|
||||||
|
/// e.g.
|
||||||
|
/// 5035703444687813576399599 = 10000101010010110100000011111011110010100110100000000011100101001101001101011101111
|
||||||
|
/// lastBit = ^--------------------------------- 83 ----------------------------------------^
|
||||||
|
function mostSignificantBit(uint256 normal) internal pure returns (uint lastBit) {
|
||||||
|
assembly {
|
||||||
|
let number_ := normal
|
||||||
|
if gt(normal, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF) {
|
||||||
|
number_ := shr(0x80, number_)
|
||||||
|
lastBit := 0x80
|
||||||
|
}
|
||||||
|
if gt(number_, 0xFFFFFFFFFFFFFFFF) {
|
||||||
|
number_ := shr(0x40, number_)
|
||||||
|
lastBit := add(lastBit, 0x40)
|
||||||
|
}
|
||||||
|
if gt(number_, 0xFFFFFFFF) {
|
||||||
|
number_ := shr(0x20, number_)
|
||||||
|
lastBit := add(lastBit, 0x20)
|
||||||
|
}
|
||||||
|
if gt(number_, 0xFFFF) {
|
||||||
|
number_ := shr(0x10, number_)
|
||||||
|
lastBit := add(lastBit, 0x10)
|
||||||
|
}
|
||||||
|
if gt(number_, 0xFF) {
|
||||||
|
number_ := shr(0x8, number_)
|
||||||
|
lastBit := add(lastBit, 0x8)
|
||||||
|
}
|
||||||
|
if gt(number_, 0xF) {
|
||||||
|
number_ := shr(0x4, number_)
|
||||||
|
lastBit := add(lastBit, 0x4)
|
||||||
|
}
|
||||||
|
if gt(number_, 0x3) {
|
||||||
|
number_ := shr(0x2, number_)
|
||||||
|
lastBit := add(lastBit, 0x2)
|
||||||
|
}
|
||||||
|
if gt(number_, 0x1) {
|
||||||
|
lastBit := add(lastBit, 1)
|
||||||
|
}
|
||||||
|
if gt(number_, 0) {
|
||||||
|
lastBit := add(lastBit, 1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
101
contracts/payloads/IGP26/libraries/liquiditySlotsLink.sol
Normal file
101
contracts/payloads/IGP26/libraries/liquiditySlotsLink.sol
Normal file
|
|
@ -0,0 +1,101 @@
|
||||||
|
// SPDX-License-Identifier: BUSL-1.1
|
||||||
|
pragma solidity 0.8.21;
|
||||||
|
|
||||||
|
/// @notice library that helps in reading / working with storage slot data of Fluid Liquidity.
|
||||||
|
/// @dev as all data for Fluid Liquidity is internal, any data must be fetched directly through manual
|
||||||
|
/// slot reading through this library or, if gas usage is less important, through the FluidLiquidityResolver.
|
||||||
|
library LiquiditySlotsLink {
|
||||||
|
/// @dev storage slot for status at Liquidity
|
||||||
|
uint256 internal constant LIQUIDITY_STATUS_SLOT = 1;
|
||||||
|
/// @dev storage slot for auths mapping at Liquidity
|
||||||
|
uint256 internal constant LIQUIDITY_AUTHS_MAPPING_SLOT = 2;
|
||||||
|
/// @dev storage slot for guardians mapping at Liquidity
|
||||||
|
uint256 internal constant LIQUIDITY_GUARDIANS_MAPPING_SLOT = 3;
|
||||||
|
/// @dev storage slot for user class mapping at Liquidity
|
||||||
|
uint256 internal constant LIQUIDITY_USER_CLASS_MAPPING_SLOT = 4;
|
||||||
|
/// @dev storage slot for exchangePricesAndConfig mapping at Liquidity
|
||||||
|
uint256 internal constant LIQUIDITY_EXCHANGE_PRICES_MAPPING_SLOT = 5;
|
||||||
|
/// @dev storage slot for rateData mapping at Liquidity
|
||||||
|
uint256 internal constant LIQUIDITY_RATE_DATA_MAPPING_SLOT = 6;
|
||||||
|
/// @dev storage slot for totalAmounts mapping at Liquidity
|
||||||
|
uint256 internal constant LIQUIDITY_TOTAL_AMOUNTS_MAPPING_SLOT = 7;
|
||||||
|
/// @dev storage slot for user supply double mapping at Liquidity
|
||||||
|
uint256 internal constant LIQUIDITY_USER_SUPPLY_DOUBLE_MAPPING_SLOT = 8;
|
||||||
|
/// @dev storage slot for user borrow double mapping at Liquidity
|
||||||
|
uint256 internal constant LIQUIDITY_USER_BORROW_DOUBLE_MAPPING_SLOT = 9;
|
||||||
|
/// @dev storage slot for listed tokens array at Liquidity
|
||||||
|
uint256 internal constant LIQUIDITY_LISTED_TOKENS_ARRAY_SLOT = 10;
|
||||||
|
|
||||||
|
// --------------------------------
|
||||||
|
// @dev stacked uint256 storage slots bits position data for each:
|
||||||
|
|
||||||
|
// ExchangePricesAndConfig
|
||||||
|
uint256 internal constant BITS_EXCHANGE_PRICES_BORROW_RATE = 0;
|
||||||
|
uint256 internal constant BITS_EXCHANGE_PRICES_FEE = 16;
|
||||||
|
uint256 internal constant BITS_EXCHANGE_PRICES_UTILIZATION = 30;
|
||||||
|
uint256 internal constant BITS_EXCHANGE_PRICES_UPDATE_THRESHOLD = 44;
|
||||||
|
uint256 internal constant BITS_EXCHANGE_PRICES_LAST_TIMESTAMP = 58;
|
||||||
|
uint256 internal constant BITS_EXCHANGE_PRICES_SUPPLY_EXCHANGE_PRICE = 91;
|
||||||
|
uint256 internal constant BITS_EXCHANGE_PRICES_BORROW_EXCHANGE_PRICE = 155;
|
||||||
|
uint256 internal constant BITS_EXCHANGE_PRICES_SUPPLY_RATIO = 219;
|
||||||
|
uint256 internal constant BITS_EXCHANGE_PRICES_BORROW_RATIO = 234;
|
||||||
|
|
||||||
|
// RateData:
|
||||||
|
uint256 internal constant BITS_RATE_DATA_VERSION = 0;
|
||||||
|
// RateData: V1
|
||||||
|
uint256 internal constant BITS_RATE_DATA_V1_RATE_AT_UTILIZATION_ZERO = 4;
|
||||||
|
uint256 internal constant BITS_RATE_DATA_V1_UTILIZATION_AT_KINK = 20;
|
||||||
|
uint256 internal constant BITS_RATE_DATA_V1_RATE_AT_UTILIZATION_KINK = 36;
|
||||||
|
uint256 internal constant BITS_RATE_DATA_V1_RATE_AT_UTILIZATION_MAX = 52;
|
||||||
|
// RateData: V2
|
||||||
|
uint256 internal constant BITS_RATE_DATA_V2_RATE_AT_UTILIZATION_ZERO = 4;
|
||||||
|
uint256 internal constant BITS_RATE_DATA_V2_UTILIZATION_AT_KINK1 = 20;
|
||||||
|
uint256 internal constant BITS_RATE_DATA_V2_RATE_AT_UTILIZATION_KINK1 = 36;
|
||||||
|
uint256 internal constant BITS_RATE_DATA_V2_UTILIZATION_AT_KINK2 = 52;
|
||||||
|
uint256 internal constant BITS_RATE_DATA_V2_RATE_AT_UTILIZATION_KINK2 = 68;
|
||||||
|
uint256 internal constant BITS_RATE_DATA_V2_RATE_AT_UTILIZATION_MAX = 84;
|
||||||
|
|
||||||
|
// TotalAmounts
|
||||||
|
uint256 internal constant BITS_TOTAL_AMOUNTS_SUPPLY_WITH_INTEREST = 0;
|
||||||
|
uint256 internal constant BITS_TOTAL_AMOUNTS_SUPPLY_INTEREST_FREE = 64;
|
||||||
|
uint256 internal constant BITS_TOTAL_AMOUNTS_BORROW_WITH_INTEREST = 128;
|
||||||
|
uint256 internal constant BITS_TOTAL_AMOUNTS_BORROW_INTEREST_FREE = 192;
|
||||||
|
|
||||||
|
// UserSupplyData
|
||||||
|
uint256 internal constant BITS_USER_SUPPLY_MODE = 0;
|
||||||
|
uint256 internal constant BITS_USER_SUPPLY_AMOUNT = 1;
|
||||||
|
uint256 internal constant BITS_USER_SUPPLY_PREVIOUS_WITHDRAWAL_LIMIT = 65;
|
||||||
|
uint256 internal constant BITS_USER_SUPPLY_LAST_UPDATE_TIMESTAMP = 129;
|
||||||
|
uint256 internal constant BITS_USER_SUPPLY_EXPAND_PERCENT = 162;
|
||||||
|
uint256 internal constant BITS_USER_SUPPLY_EXPAND_DURATION = 176;
|
||||||
|
uint256 internal constant BITS_USER_SUPPLY_BASE_WITHDRAWAL_LIMIT = 200;
|
||||||
|
uint256 internal constant BITS_USER_SUPPLY_IS_PAUSED = 255;
|
||||||
|
|
||||||
|
// UserBorrowData
|
||||||
|
uint256 internal constant BITS_USER_BORROW_MODE = 0;
|
||||||
|
uint256 internal constant BITS_USER_BORROW_AMOUNT = 1;
|
||||||
|
uint256 internal constant BITS_USER_BORROW_PREVIOUS_BORROW_LIMIT = 65;
|
||||||
|
uint256 internal constant BITS_USER_BORROW_LAST_UPDATE_TIMESTAMP = 129;
|
||||||
|
uint256 internal constant BITS_USER_BORROW_EXPAND_PERCENT = 162;
|
||||||
|
uint256 internal constant BITS_USER_BORROW_EXPAND_DURATION = 176;
|
||||||
|
uint256 internal constant BITS_USER_BORROW_BASE_BORROW_LIMIT = 200;
|
||||||
|
uint256 internal constant BITS_USER_BORROW_MAX_BORROW_LIMIT = 218;
|
||||||
|
uint256 internal constant BITS_USER_BORROW_IS_PAUSED = 255;
|
||||||
|
|
||||||
|
// --------------------------------
|
||||||
|
|
||||||
|
/// @notice Calculating the slot ID for Liquidity contract for single mapping at `slot_` for `key_`
|
||||||
|
function calculateMappingStorageSlot(uint256 slot_, address key_) internal pure returns (bytes32) {
|
||||||
|
return keccak256(abi.encode(key_, slot_));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// @notice Calculating the slot ID for Liquidity contract for double mapping at `slot_` for `key1_` and `key2_`
|
||||||
|
function calculateDoubleMappingStorageSlot(
|
||||||
|
uint256 slot_,
|
||||||
|
address key1_,
|
||||||
|
address key2_
|
||||||
|
) internal pure returns (bytes32) {
|
||||||
|
bytes32 intermediateSlot_ = keccak256(abi.encode(key1_, slot_));
|
||||||
|
return keccak256(abi.encode(key2_, intermediateSlot_));
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user