Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x61018060 | 11374005 | 1429 days ago | IN | 0 ETH | 0.03457425 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
DefaultReserveInterestRateStrategy
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-02 */ // SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; /** * @title IReserveInterestRateStrategyInterface interface * @dev Interface for the calculation of the interest rates * @author Aave */ interface IReserveInterestRateStrategy { function baseVariableBorrowRate() external view returns (uint256); function getMaxVariableBorrowRate() external view returns (uint256); function calculateInterestRates( address reserve, uint256 utilizationRate, uint256 totalStableDebt, uint256 totalVariableDebt, uint256 averageStableBorrowRate, uint256 reserveFactor ) external view returns ( uint256 liquidityRate, uint256 stableBorrowRate, uint256 variableBorrowRate ); } /** * @title WadRayMath library * @author Aave * @dev Provides mul and div function for wads (decimal numbers with 18 digits precision) and rays (decimals with 27 digits) **/ library WadRayMath { uint256 internal constant WAD = 1e18; uint256 internal constant halfWAD = WAD / 2; uint256 internal constant RAY = 1e27; uint256 internal constant halfRAY = RAY / 2; uint256 internal constant WAD_RAY_RATIO = 1e9; /** * @return One ray, 1e27 **/ function ray() internal pure returns (uint256) { return RAY; } /** * @return One wad, 1e18 **/ function wad() internal pure returns (uint256) { return WAD; } /** * @return Half ray, 1e27/2 **/ function halfRay() internal pure returns (uint256) { return halfRAY; } /** * @return Half ray, 1e18/2 **/ function halfWad() internal pure returns (uint256) { return halfWAD; } /** * @dev Multiplies two wad, rounding half up to the nearest wad * @param a Wad * @param b Wad * @return The result of a*b, in wad **/ function wadMul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0 || b == 0) { return 0; } require(a <= (type(uint256).max - halfWAD) / b, Errors.MATH_MULTIPLICATION_OVERFLOW); return (a * b + halfWAD) / WAD; } /** * @dev Divides two wad, rounding half up to the nearest wad * @param a Wad * @param b Wad * @return The result of a/b, in wad **/ function wadDiv(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, Errors.MATH_DIVISION_BY_ZERO); uint256 halfB = b / 2; require(a <= (type(uint256).max - halfB) / WAD, Errors.MATH_MULTIPLICATION_OVERFLOW); return (a * WAD + halfB) / b; } /** * @dev Multiplies two ray, rounding half up to the nearest ray * @param a Ray * @param b Ray * @return The result of a*b, in ray **/ function rayMul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0 || b == 0) { return 0; } require(a <= (type(uint256).max - halfRAY) / b, Errors.MATH_MULTIPLICATION_OVERFLOW); return (a * b + halfRAY) / RAY; } /** * @dev Divides two ray, rounding half up to the nearest ray * @param a Ray * @param b Ray * @return The result of a/b, in ray **/ function rayDiv(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, Errors.MATH_DIVISION_BY_ZERO); uint256 halfB = b / 2; require(a <= (type(uint256).max - halfB) / RAY, Errors.MATH_MULTIPLICATION_OVERFLOW); return (a * RAY + halfB) / b; } /** * @dev Casts ray down to wad * @param a Ray * @return a casted to wad, rounded half up to the nearest wad **/ function rayToWad(uint256 a) internal pure returns (uint256) { uint256 halfRatio = WAD_RAY_RATIO / 2; uint256 result = halfRatio + a; require(result >= halfRatio, Errors.MATH_ADDITION_OVERFLOW); return result / WAD_RAY_RATIO; } /** * @dev Converts wad up to ray * @param a Wad * @return a converted in ray **/ function wadToRay(uint256 a) internal pure returns (uint256) { uint256 result = a * WAD_RAY_RATIO; require(result / WAD_RAY_RATIO == a, Errors.MATH_MULTIPLICATION_OVERFLOW); return result; } } /** * @title Errors library * @author Aave * @notice Defines the error messages emitted by the different contracts of the Aave protocol * @dev Error messages prefix glossary: * - VL = ValidationLogic * - MATH = Math libraries * - CT = Common errors between tokens (AToken, VariableDebtToken and StableDebtToken) * - AT = AToken * - SDT = StableDebtToken * - VDT = VariableDebtToken * - LP = LendingPool * - LPAPR = LendingPoolAddressesProviderRegistry * - LPC = LendingPoolConfiguration * - RL = ReserveLogic * - LPCM = LendingPoolCollateralManager * - P = Pausable */ library Errors { //common errors string public constant CALLER_NOT_POOL_ADMIN = '33'; // 'The caller must be the pool admin' string public constant BORROW_ALLOWANCE_NOT_ENOUGH = '59'; // User borrows on behalf, but allowance are too small //contract specific errors string public constant VL_INVALID_AMOUNT = '1'; // 'Amount must be greater than 0' string public constant VL_NO_ACTIVE_RESERVE = '2'; // 'Action requires an active reserve' string public constant VL_RESERVE_FROZEN = '3'; // 'Action cannot be performed because the reserve is frozen' string public constant VL_CURRENT_AVAILABLE_LIQUIDITY_NOT_ENOUGH = '4'; // 'The current liquidity is not enough' string public constant VL_NOT_ENOUGH_AVAILABLE_USER_BALANCE = '5'; // 'User cannot withdraw more than the available balance' string public constant VL_TRANSFER_NOT_ALLOWED = '6'; // 'Transfer cannot be allowed.' string public constant VL_BORROWING_NOT_ENABLED = '7'; // 'Borrowing is not enabled' string public constant VL_INVALID_INTEREST_RATE_MODE_SELECTED = '8'; // 'Invalid interest rate mode selected' string public constant VL_COLLATERAL_BALANCE_IS_0 = '9'; // 'The collateral balance is 0' string public constant VL_HEALTH_FACTOR_LOWER_THAN_LIQUIDATION_THRESHOLD = '10'; // 'Health factor is lesser than the liquidation threshold' string public constant VL_COLLATERAL_CANNOT_COVER_NEW_BORROW = '11'; // 'There is not enough collateral to cover a new borrow' string public constant VL_STABLE_BORROWING_NOT_ENABLED = '12'; // stable borrowing not enabled string public constant VL_COLLATERAL_SAME_AS_BORROWING_CURRENCY = '13'; // collateral is (mostly) the same currency that is being borrowed string public constant VL_AMOUNT_BIGGER_THAN_MAX_LOAN_SIZE_STABLE = '14'; // 'The requested amount is greater than the max loan size in stable rate mode string public constant VL_NO_DEBT_OF_SELECTED_TYPE = '15'; // 'for repayment of stable debt, the user needs to have stable debt, otherwise, he needs to have variable debt' string public constant VL_NO_EXPLICIT_AMOUNT_TO_REPAY_ON_BEHALF = '16'; // 'To repay on behalf of an user an explicit amount to repay is needed' string public constant VL_NO_STABLE_RATE_LOAN_IN_RESERVE = '17'; // 'User does not have a stable rate loan in progress on this reserve' string public constant VL_NO_VARIABLE_RATE_LOAN_IN_RESERVE = '18'; // 'User does not have a variable rate loan in progress on this reserve' string public constant VL_UNDERLYING_BALANCE_NOT_GREATER_THAN_0 = '19'; // 'The underlying balance needs to be greater than 0' string public constant VL_DEPOSIT_ALREADY_IN_USE = '20'; // 'User deposit is already being used as collateral' string public constant LP_NOT_ENOUGH_STABLE_BORROW_BALANCE = '21'; // 'User does not have any stable rate loan for this reserve' string public constant LP_INTEREST_RATE_REBALANCE_CONDITIONS_NOT_MET = '22'; // 'Interest rate rebalance conditions were not met' string public constant LP_LIQUIDATION_CALL_FAILED = '23'; // 'Liquidation call failed' string public constant LP_NOT_ENOUGH_LIQUIDITY_TO_BORROW = '24'; // 'There is not enough liquidity available to borrow' string public constant LP_REQUESTED_AMOUNT_TOO_SMALL = '25'; // 'The requested amount is too small for a FlashLoan.' string public constant LP_INCONSISTENT_PROTOCOL_ACTUAL_BALANCE = '26'; // 'The actual balance of the protocol is inconsistent' string public constant LP_CALLER_NOT_LENDING_POOL_CONFIGURATOR = '27'; // 'The caller of the function is not the lending pool configurator' string public constant LP_INCONSISTENT_FLASHLOAN_PARAMS = '28'; string public constant CT_CALLER_MUST_BE_LENDING_POOL = '29'; // 'The caller of this function must be a lending pool' string public constant CT_CANNOT_GIVE_ALLOWANCE_TO_HIMSELF = '30'; // 'User cannot give allowance to himself' string public constant CT_TRANSFER_AMOUNT_NOT_GT_0 = '31'; // 'Transferred amount needs to be greater than zero' string public constant RL_RESERVE_ALREADY_INITIALIZED = '32'; // 'Reserve has already been initialized' string public constant LPC_RESERVE_LIQUIDITY_NOT_0 = '34'; // 'The liquidity of the reserve needs to be 0' string public constant LPC_INVALID_ATOKEN_POOL_ADDRESS = '35'; // 'The liquidity of the reserve needs to be 0' string public constant LPC_INVALID_STABLE_DEBT_TOKEN_POOL_ADDRESS = '36'; // 'The liquidity of the reserve needs to be 0' string public constant LPC_INVALID_VARIABLE_DEBT_TOKEN_POOL_ADDRESS = '37'; // 'The liquidity of the reserve needs to be 0' string public constant LPC_INVALID_STABLE_DEBT_TOKEN_UNDERLYING_ADDRESS = '38'; // 'The liquidity of the reserve needs to be 0' string public constant LPC_INVALID_VARIABLE_DEBT_TOKEN_UNDERLYING_ADDRESS = '39'; // 'The liquidity of the reserve needs to be 0' string public constant LPC_INVALID_ADDRESSES_PROVIDER_ID = '40'; // 'The liquidity of the reserve needs to be 0' string public constant LPC_INVALID_CONFIGURATION = '75'; // 'Invalid risk parameters for the reserve' string public constant LPC_CALLER_NOT_EMERGENCY_ADMIN = '76'; // 'The caller must be the emergency admin' string public constant LPAPR_PROVIDER_NOT_REGISTERED = '41'; // 'Provider is not registered' string public constant LPCM_HEALTH_FACTOR_NOT_BELOW_THRESHOLD = '42'; // 'Health factor is not below the threshold' string public constant LPCM_COLLATERAL_CANNOT_BE_LIQUIDATED = '43'; // 'The collateral chosen cannot be liquidated' string public constant LPCM_SPECIFIED_CURRENCY_NOT_BORROWED_BY_USER = '44'; // 'User did not borrow the specified currency' string public constant LPCM_NOT_ENOUGH_LIQUIDITY_TO_LIQUIDATE = '45'; // "There isn't enough liquidity available to liquidate" string public constant LPCM_NO_ERRORS = '46'; // 'No errors' string public constant LP_INVALID_FLASHLOAN_MODE = '47'; //Invalid flashloan mode selected string public constant MATH_MULTIPLICATION_OVERFLOW = '48'; string public constant MATH_ADDITION_OVERFLOW = '49'; string public constant MATH_DIVISION_BY_ZERO = '50'; string public constant RL_LIQUIDITY_INDEX_OVERFLOW = '51'; // Liquidity index overflows uint128 string public constant RL_VARIABLE_BORROW_INDEX_OVERFLOW = '52'; // Variable borrow index overflows uint128 string public constant RL_LIQUIDITY_RATE_OVERFLOW = '53'; // Liquidity rate overflows uint128 string public constant RL_VARIABLE_BORROW_RATE_OVERFLOW = '54'; // Variable borrow rate overflows uint128 string public constant RL_STABLE_BORROW_RATE_OVERFLOW = '55'; // Stable borrow rate overflows uint128 string public constant CT_INVALID_MINT_AMOUNT = '56'; //invalid amount to mint string public constant LP_FAILED_REPAY_WITH_COLLATERAL = '57'; string public constant CT_INVALID_BURN_AMOUNT = '58'; //invalid amount to burn string public constant LP_FAILED_COLLATERAL_SWAP = '60'; string public constant LP_INVALID_EQUAL_ASSETS_TO_SWAP = '61'; string public constant LP_REENTRANCY_NOT_ALLOWED = '62'; string public constant LP_CALLER_MUST_BE_AN_ATOKEN = '63'; string public constant LP_IS_PAUSED = '64'; // 'Pool is paused' string public constant LP_NO_MORE_RESERVES_ALLOWED = '65'; string public constant LP_INVALID_FLASH_LOAN_EXECUTOR_RETURN = '66'; string public constant RC_INVALID_LTV = '67'; string public constant RC_INVALID_LIQ_THRESHOLD = '68'; string public constant RC_INVALID_LIQ_BONUS = '69'; string public constant RC_INVALID_DECIMALS = '70'; string public constant RC_INVALID_RESERVE_FACTOR = '71'; string public constant LPAPR_INVALID_ADDRESSES_PROVIDER_ID = '72'; string public constant VL_INCONSISTENT_FLASHLOAN_PARAMS = '73'; string public constant LP_INCONSISTENT_PARAMS_LENGTH = '74'; string public constant UL_INVALID_INDEX = '77'; string public constant LP_NOT_CONTRACT = '78'; string public constant SDT_STABLE_DEBT_OVERFLOW = '79'; string public constant SDT_BURN_EXCEEDS_BALANCE = '80'; enum CollateralManagerErrors { NO_ERROR, NO_COLLATERAL_AVAILABLE, COLLATERAL_CANNOT_BE_LIQUIDATED, CURRRENCY_NOT_BORROWED, HEALTH_FACTOR_ABOVE_THRESHOLD, NOT_ENOUGH_LIQUIDITY, NO_ACTIVE_RESERVE, HEALTH_FACTOR_LOWER_THAN_LIQUIDATION_THRESHOLD, INVALID_EQUAL_ASSETS_TO_SWAP, FROZEN_RESERVE } } /** * @title PercentageMath library * @author Aave * @notice Provides functions to perform percentage calculations * @dev Percentages are defined by default with 2 decimals of precision (100.00). The precision is indicated by PERCENTAGE_FACTOR * @dev Operations are rounded half up **/ library PercentageMath { uint256 constant PERCENTAGE_FACTOR = 1e4; //percentage plus two decimals uint256 constant HALF_PERCENT = PERCENTAGE_FACTOR / 2; /** * @dev Executes a percentage multiplication * @param value The value of which the percentage needs to be calculated * @param percentage The percentage of the value to be calculated * @return The percentage of value **/ function percentMul(uint256 value, uint256 percentage) internal pure returns (uint256) { if (value == 0 || percentage == 0) { return 0; } require( value <= (type(uint256).max - HALF_PERCENT) / percentage, Errors.MATH_MULTIPLICATION_OVERFLOW ); return (value * percentage + HALF_PERCENT) / PERCENTAGE_FACTOR; } /** * @dev Executes a percentage division * @param value The value of which the percentage needs to be calculated * @param percentage The percentage of the value to be calculated * @return The value divided the percentage **/ function percentDiv(uint256 value, uint256 percentage) internal pure returns (uint256) { require(percentage != 0, Errors.MATH_DIVISION_BY_ZERO); uint256 halfPercentage = percentage / 2; require( value <= (type(uint256).max - halfPercentage) / PERCENTAGE_FACTOR, Errors.MATH_MULTIPLICATION_OVERFLOW ); return (value * PERCENTAGE_FACTOR + halfPercentage) / percentage; } } /** * @title LendingPoolAddressesProvider contract * @dev Main registry of addresses part of or connected to the protocol, including permissioned roles * - Acting also as factory of proxies and admin of those, so with right to change its implementations * - Owned by the Aave Governance * @author Aave **/ interface ILendingPoolAddressesProvider { event MarketIdSet(string newMarketId); event LendingPoolUpdated(address indexed newAddress); event ConfigurationAdminUpdated(address indexed newAddress); event EmergencyAdminUpdated(address indexed newAddress); event LendingPoolConfiguratorUpdated(address indexed newAddress); event LendingPoolCollateralManagerUpdated(address indexed newAddress); event PriceOracleUpdated(address indexed newAddress); event LendingRateOracleUpdated(address indexed newAddress); event ProxyCreated(bytes32 id, address indexed newAddress); event AddressSet(bytes32 id, address indexed newAddress, bool hasProxy); function getMarketId() external view returns (string memory); function setMarketId(string calldata marketId) external; function setAddress(bytes32 id, address newAddress) external; function setAddressAsProxy(bytes32 id, address impl) external; function getAddress(bytes32 id) external view returns (address); function getLendingPool() external view returns (address); function setLendingPoolImpl(address pool) external; function getLendingPoolConfigurator() external view returns (address); function setLendingPoolConfiguratorImpl(address configurator) external; function getLendingPoolCollateralManager() external view returns (address); function setLendingPoolCollateralManager(address manager) external; function getPoolAdmin() external view returns (address); function setPoolAdmin(address admin) external; function getEmergencyAdmin() external view returns (address); function setEmergencyAdmin(address admin) external; function getPriceOracle() external view returns (address); function setPriceOracle(address priceOracle) external; function getLendingRateOracle() external view returns (address); function setLendingRateOracle(address lendingRateOracle) external; } /** * @title ILendingRateOracle interface * @notice Interface for the Aave borrow rate oracle. Provides the average market borrow rate to be used as a base for the stable borrow rate calculations **/ interface ILendingRateOracle { /** @dev returns the market borrow rate in ray **/ function getMarketBorrowRate(address asset) external view returns (uint256); /** @dev sets the market borrow rate. Rate value must be in ray **/ function setMarketBorrowRate(address asset, uint256 rate) external; } /** * @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 = a + b; require(c >= a, 'SafeMath: addition overflow'); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, 'SafeMath: subtraction overflow'); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ 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 = a * b; require(c / a == b, 'SafeMath: multiplication overflow'); 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; } } /** * @title DefaultReserveInterestRateStrategy contract * @notice Implements the calculation of the interest rates depending on the reserve state * @dev The model of interest rate is based on 2 slopes, one before the `OPTIMAL_UTILIZATION_RATE` * point of utilization and another from that one to 100% * - An instance of this same contract, can't be used across different Aave markets, due to the caching * of the LendingPoolAddressesProvider * @author Aave **/ contract DefaultReserveInterestRateStrategy is IReserveInterestRateStrategy { using WadRayMath for uint256; using SafeMath for uint256; using PercentageMath for uint256; /** * @dev this constant represents the utilization rate at which the pool aims to obtain most competitive borrow rates. * Expressed in ray **/ uint256 public immutable OPTIMAL_UTILIZATION_RATE; /** * @dev This constant represents the excess utilization rate above the optimal. It's always equal to * 1-optimal utilization rate. Added as a constant here for gas optimizations. * Expressed in ray **/ uint256 public immutable EXCESS_UTILIZATION_RATE; ILendingPoolAddressesProvider public immutable addressesProvider; // Base variable borrow rate when Utilization rate = 0. Expressed in ray uint256 internal immutable _baseVariableBorrowRate; // Slope of the variable interest curve when utilization rate > 0 and <= OPTIMAL_UTILIZATION_RATE. Expressed in ray uint256 internal immutable _variableRateSlope1; // Slope of the variable interest curve when utilization rate > OPTIMAL_UTILIZATION_RATE. Expressed in ray uint256 internal immutable _variableRateSlope2; // Slope of the stable interest curve when utilization rate > 0 and <= OPTIMAL_UTILIZATION_RATE. Expressed in ray uint256 internal immutable _stableRateSlope1; // Slope of the stable interest curve when utilization rate > OPTIMAL_UTILIZATION_RATE. Expressed in ray uint256 internal immutable _stableRateSlope2; constructor( ILendingPoolAddressesProvider provider, uint256 optimalUtilizationRate, uint256 baseVariableBorrowRate, uint256 variableRateSlope1, uint256 variableRateSlope2, uint256 stableRateSlope1, uint256 stableRateSlope2 ) public { OPTIMAL_UTILIZATION_RATE = optimalUtilizationRate; EXCESS_UTILIZATION_RATE = WadRayMath.ray().sub(optimalUtilizationRate); addressesProvider = provider; _baseVariableBorrowRate = baseVariableBorrowRate; _variableRateSlope1 = variableRateSlope1; _variableRateSlope2 = variableRateSlope2; _stableRateSlope1 = stableRateSlope1; _stableRateSlope2 = stableRateSlope2; } function variableRateSlope1() external view returns (uint256) { return _variableRateSlope1; } function variableRateSlope2() external view returns (uint256) { return _variableRateSlope2; } function stableRateSlope1() external view returns (uint256) { return _stableRateSlope1; } function stableRateSlope2() external view returns (uint256) { return _stableRateSlope2; } function baseVariableBorrowRate() external view override returns (uint256) { return _baseVariableBorrowRate; } function getMaxVariableBorrowRate() external view override returns (uint256) { return _baseVariableBorrowRate.add(_variableRateSlope1).add(_variableRateSlope2); } struct CalcInterestRatesLocalVars { uint256 totalDebt; uint256 currentVariableBorrowRate; uint256 currentStableBorrowRate; uint256 currentLiquidityRate; uint256 utilizationRate; } /** * @dev Calculates the interest rates depending on the reserve's state and configurations * @param reserve The address of the reserve * @param availableLiquidity The liquidity available in the reserve * @param totalStableDebt The total borrowed from the reserve a stable rate * @param totalVariableDebt The total borrowed from the reserve at a variable rate * @param averageStableBorrowRate The weighted average of all the stable rate loans * @param reserveFactor The reserve portion of the interest that goes to the treasury of the market * @return The liquidity rate, the stable borrow rate and the variable borrow rate **/ function calculateInterestRates( address reserve, uint256 availableLiquidity, uint256 totalStableDebt, uint256 totalVariableDebt, uint256 averageStableBorrowRate, uint256 reserveFactor ) external view override returns ( uint256, uint256, uint256 ) { CalcInterestRatesLocalVars memory vars; vars.totalDebt = totalStableDebt.add(totalVariableDebt); vars.currentVariableBorrowRate = 0; vars.currentStableBorrowRate = 0; vars.currentLiquidityRate = 0; uint256 utilizationRate = vars.totalDebt == 0 ? 0 : vars.totalDebt.rayDiv(availableLiquidity.add(vars.totalDebt)); vars.currentStableBorrowRate = ILendingRateOracle(addressesProvider.getLendingRateOracle()) .getMarketBorrowRate(reserve); if (utilizationRate > OPTIMAL_UTILIZATION_RATE) { uint256 excessUtilizationRateRatio = utilizationRate.sub(OPTIMAL_UTILIZATION_RATE).rayDiv(EXCESS_UTILIZATION_RATE); vars.currentStableBorrowRate = vars.currentStableBorrowRate.add(_stableRateSlope1).add( _stableRateSlope2.rayMul(excessUtilizationRateRatio) ); vars.currentVariableBorrowRate = _baseVariableBorrowRate.add(_variableRateSlope1).add( _variableRateSlope2.rayMul(excessUtilizationRateRatio) ); } else { vars.currentStableBorrowRate = vars.currentStableBorrowRate.add( _stableRateSlope1.rayMul(utilizationRate.rayDiv(OPTIMAL_UTILIZATION_RATE)) ); vars.currentVariableBorrowRate = _baseVariableBorrowRate.add( utilizationRate.rayMul(_variableRateSlope1).rayDiv(OPTIMAL_UTILIZATION_RATE) ); } vars.currentLiquidityRate = _getOverallBorrowRate( totalStableDebt, totalVariableDebt, vars .currentVariableBorrowRate, averageStableBorrowRate ) .rayMul(utilizationRate) .percentMul(PercentageMath.PERCENTAGE_FACTOR.sub(reserveFactor)); return ( vars.currentLiquidityRate, vars.currentStableBorrowRate, vars.currentVariableBorrowRate ); } /** * @dev Calculates the overall borrow rate as the weighted average between the total variable debt and total stable debt * @param totalStableDebt The total borrowed from the reserve a stable rate * @param totalVariableDebt The total borrowed from the reserve at a variable rate * @param currentVariableBorrowRate The current variable borrow rate of the reserve * @param currentAverageStableBorrowRate The current weighted average of all the stable rate loans * @return The weighted averaged borrow rate **/ function _getOverallBorrowRate( uint256 totalStableDebt, uint256 totalVariableDebt, uint256 currentVariableBorrowRate, uint256 currentAverageStableBorrowRate ) internal pure returns (uint256) { uint256 totalDebt = totalStableDebt.add(totalVariableDebt); if (totalDebt == 0) return 0; uint256 weightedVariableRate = totalVariableDebt.wadToRay().rayMul(currentVariableBorrowRate); uint256 weightedStableRate = totalStableDebt.wadToRay().rayMul(currentAverageStableBorrowRate); uint256 overallBorrowRate = weightedVariableRate.add(weightedStableRate).rayDiv(totalDebt.wadToRay()); return overallBorrowRate; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract ILendingPoolAddressesProvider","name":"provider","type":"address"},{"internalType":"uint256","name":"optimalUtilizationRate","type":"uint256"},{"internalType":"uint256","name":"baseVariableBorrowRate","type":"uint256"},{"internalType":"uint256","name":"variableRateSlope1","type":"uint256"},{"internalType":"uint256","name":"variableRateSlope2","type":"uint256"},{"internalType":"uint256","name":"stableRateSlope1","type":"uint256"},{"internalType":"uint256","name":"stableRateSlope2","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"EXCESS_UTILIZATION_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPTIMAL_UTILIZATION_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressesProvider","outputs":[{"internalType":"contract ILendingPoolAddressesProvider","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseVariableBorrowRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"reserve","type":"address"},{"internalType":"uint256","name":"availableLiquidity","type":"uint256"},{"internalType":"uint256","name":"totalStableDebt","type":"uint256"},{"internalType":"uint256","name":"totalVariableDebt","type":"uint256"},{"internalType":"uint256","name":"averageStableBorrowRate","type":"uint256"},{"internalType":"uint256","name":"reserveFactor","type":"uint256"}],"name":"calculateInterestRates","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxVariableBorrowRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stableRateSlope1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stableRateSlope2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"variableRateSlope1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"variableRateSlope2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
61018060405234801561001157600080fd5b50604051610e75380380610e75833981810160405260e081101561003457600080fd5b5080516020808301516040840151606085015160808087015160a088015160c0909801519185905295969395929491939161008e90879061007c9061070c6100c3821b17901c565b6100d360201b61071c1790919060201c565b60a05260609690961b6001600160601b03191660c05260e09390935261010091909152610120526101405250610160526101b9565b6b033b2e3c9fd0803ce800000090565b600061011b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061012260201b60201c565b9392505050565b600081848411156101b15760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561017657818101518382015260200161015e565b50505050905090810190601f1680156101a35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60805160a05160c05160601c60e05161010051610120516101405161016051610c0761026e6000398061046852806106ea52508061017d528061049852806105755250806101c5528061021252806104c95250806101e95280610257528061051452806105d752508061023652806104f352806105fd52806106a25250806102e252806106c65250806101a1528061040f5250806103e25280610434528061054f52806105b2528061067e5250610c076000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c80639584df28116100665780639584df28146100dd578063a15f30ac1461013f578063b258954414610147578063c72c4d101461014f578063ccab01a3146101735761009e565b80630bdf953f146100a357806317319873146100bd57806365614f81146100c55780637b832f58146100cd57806380031e37146100d5575b600080fd5b6100ab61017b565b60408051918252519081900360200190f35b6100ab61019f565b6100ab6101c3565b6100ab6101e7565b6100ab61020b565b610121600480360360c08110156100f357600080fd5b506001600160a01b038135169060208101359060408101359060608101359060808101359060a00135610286565b60408051938452602084019290925282820152519081900360600190f35b6100ab61067c565b6100ab6106a0565b6101576106c4565b604080516001600160a01b039092168252519081900360200190f35b6100ab6106e8565b7f000000000000000000000000000000000000000000000000000000000000000090565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000090565b7f000000000000000000000000000000000000000000000000000000000000000090565b60006102817f000000000000000000000000000000000000000000000000000000000000000061027b7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610767565b90610767565b905090565b6000806000610293610ba2565b61029d8888610767565b808252600060208301819052604083018190526060830181905290156102db5781516102d6906102ce908c90610767565b8351906107c1565b6102de565b60005b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633618abba6040518163ffffffff1660e01b815260040160206040518083038186803b15801561033957600080fd5b505afa15801561034d573d6000803e3d6000fd5b505050506040513d602081101561036357600080fd5b50516040805163bb85c0bb60e01b81526001600160a01b038e811660048301529151919092169163bb85c0bb916024808301926020929190829003018186803b1580156103af57600080fd5b505afa1580156103c3573d6000803e3d6000fd5b505050506040513d60208110156103d957600080fd5b505160408301527f000000000000000000000000000000000000000000000000000000000000000081111561054357600061045e7f0000000000000000000000000000000000000000000000000000000000000000610458847f000000000000000000000000000000000000000000000000000000000000000061071c565b906107c1565b90506104bc61048d7f000000000000000000000000000000000000000000000000000000000000000083610905565b604085015161027b907f0000000000000000000000000000000000000000000000000000000000000000610767565b60408401526105386104ee7f000000000000000000000000000000000000000000000000000000000000000083610905565b61027b7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610767565b602084015250610628565b6105a561059a610573837f00000000000000000000000000000000000000000000000000000000000000006107c1565b7f000000000000000000000000000000000000000000000000000000000000000090610905565b604084015190610767565b60408301526106226105fb7f0000000000000000000000000000000000000000000000000000000000000000610458847f0000000000000000000000000000000000000000000000000000000000000000610905565b7f000000000000000000000000000000000000000000000000000000000000000090610767565b60208301525b6106576106376127108861071c565b6106518361064b8d8d88602001518e6109c6565b90610905565b90610a2d565b606083018190526040830151602090930151909c929b50995090975050505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000090565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000090565b6b033b2e3c9fd0803ce800000090565b600061075e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610aca565b90505b92915050565b60008282018381101561075e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080518082019091526002815261035360f41b6020820152600090826108665760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561082b578181015183820152602001610813565b50505050905090810190601f1680156108585780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060408051808201909152600280825261068760f31b60208301528304906b033b2e3c9fd0803ce80000008219048511156108e25760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561082b578181015183820152602001610813565b5082816b033b2e3c9fd0803ce8000000860201816108fc57fe5b04949350505050565b6000821580610912575081155b1561091f57506000610761565b816b019d971e4fe8401e74000000198161093557fe5b0483111560405180604001604052806002815260200161068760f31b815250906109a05760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561082b578181015183820152602001610813565b506b033b2e3c9fd0803ce80000006002815b0483850201816109be57fe5b049392505050565b6000806109d38686610767565b9050806109e4576000915050610a25565b60006109f38561064b88610b24565b90506000610a048561064b8a610b24565b90506000610a1e610a1485610b24565b6104588585610767565b9450505050505b949350505050565b6000821580610a3a575081155b15610a4757506000610761565b816113881981610a5357fe5b0483111560405180604001604052806002815260200161068760f31b81525090610abe5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561082b578181015183820152602001610813565b506127106002816109b2565b60008184841115610b1c5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561082b578181015183820152602001610813565b505050900390565b6000633b9aca0082810290839082041460405180604001604052806002815260200161068760f31b81525090610b9b5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561082b578181015183820152602001610813565b5092915050565b6040518060a001604052806000815260200160008152602001600081526020016000815260200160008152509056fea26469706673582212208d091b15ea4c7651e58fb22cd2db9e56c7375b62d4760d5f0a4282d7c1fe1dc164736f6c634300060c0033000000000000000000000000b53c1a33016b2dc2ff3653530bff1848a515c8c5000000000000000000000000000000000000000001743b34e18439b502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000039e7139a8c08fa06000000000000000000000000000000000000000000000009b18ab5df7180b6b80000000000000000000000000000000000000000000000006342fd08f00f6378000000000000000000000000000000000000000000000009b18ab5df7180b6b8000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061009e5760003560e01c80639584df28116100665780639584df28146100dd578063a15f30ac1461013f578063b258954414610147578063c72c4d101461014f578063ccab01a3146101735761009e565b80630bdf953f146100a357806317319873146100bd57806365614f81146100c55780637b832f58146100cd57806380031e37146100d5575b600080fd5b6100ab61017b565b60408051918252519081900360200190f35b6100ab61019f565b6100ab6101c3565b6100ab6101e7565b6100ab61020b565b610121600480360360c08110156100f357600080fd5b506001600160a01b038135169060208101359060408101359060608101359060808101359060a00135610286565b60408051938452602084019290925282820152519081900360600190f35b6100ab61067c565b6100ab6106a0565b6101576106c4565b604080516001600160a01b039092168252519081900360200190f35b6100ab6106e8565b7f0000000000000000000000000000000000000000006342fd08f00f637800000090565b7f000000000000000000000000000000000000000001c6f307be4c4687e600000081565b7f000000000000000000000000000000000000000009b18ab5df7180b6b800000090565b7f00000000000000000000000000000000000000000039e7139a8c08fa0600000090565b60006102817f000000000000000000000000000000000000000009b18ab5df7180b6b800000061027b7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000039e7139a8c08fa06000000610767565b90610767565b905090565b6000806000610293610ba2565b61029d8888610767565b808252600060208301819052604083018190526060830181905290156102db5781516102d6906102ce908c90610767565b8351906107c1565b6102de565b60005b90507f000000000000000000000000b53c1a33016b2dc2ff3653530bff1848a515c8c56001600160a01b0316633618abba6040518163ffffffff1660e01b815260040160206040518083038186803b15801561033957600080fd5b505afa15801561034d573d6000803e3d6000fd5b505050506040513d602081101561036357600080fd5b50516040805163bb85c0bb60e01b81526001600160a01b038e811660048301529151919092169163bb85c0bb916024808301926020929190829003018186803b1580156103af57600080fd5b505afa1580156103c3573d6000803e3d6000fd5b505050506040513d60208110156103d957600080fd5b505160408301527f000000000000000000000000000000000000000001743b34e18439b50200000081111561054357600061045e7f000000000000000000000000000000000000000001c6f307be4c4687e6000000610458847f000000000000000000000000000000000000000001743b34e18439b50200000061071c565b906107c1565b90506104bc61048d7f000000000000000000000000000000000000000009b18ab5df7180b6b800000083610905565b604085015161027b907f0000000000000000000000000000000000000000006342fd08f00f6378000000610767565b60408401526105386104ee7f000000000000000000000000000000000000000009b18ab5df7180b6b800000083610905565b61027b7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000039e7139a8c08fa06000000610767565b602084015250610628565b6105a561059a610573837f000000000000000000000000000000000000000001743b34e18439b5020000006107c1565b7f0000000000000000000000000000000000000000006342fd08f00f637800000090610905565b604084015190610767565b60408301526106226105fb7f000000000000000000000000000000000000000001743b34e18439b502000000610458847f00000000000000000000000000000000000000000039e7139a8c08fa06000000610905565b7f000000000000000000000000000000000000000000000000000000000000000090610767565b60208301525b6106576106376127108861071c565b6106518361064b8d8d88602001518e6109c6565b90610905565b90610a2d565b606083018190526040830151602090930151909c929b50995090975050505050505050565b7f000000000000000000000000000000000000000001743b34e18439b50200000081565b7f000000000000000000000000000000000000000000000000000000000000000090565b7f000000000000000000000000b53c1a33016b2dc2ff3653530bff1848a515c8c581565b7f000000000000000000000000000000000000000009b18ab5df7180b6b800000090565b6b033b2e3c9fd0803ce800000090565b600061075e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610aca565b90505b92915050565b60008282018381101561075e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080518082019091526002815261035360f41b6020820152600090826108665760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561082b578181015183820152602001610813565b50505050905090810190601f1680156108585780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060408051808201909152600280825261068760f31b60208301528304906b033b2e3c9fd0803ce80000008219048511156108e25760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561082b578181015183820152602001610813565b5082816b033b2e3c9fd0803ce8000000860201816108fc57fe5b04949350505050565b6000821580610912575081155b1561091f57506000610761565b816b019d971e4fe8401e74000000198161093557fe5b0483111560405180604001604052806002815260200161068760f31b815250906109a05760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561082b578181015183820152602001610813565b506b033b2e3c9fd0803ce80000006002815b0483850201816109be57fe5b049392505050565b6000806109d38686610767565b9050806109e4576000915050610a25565b60006109f38561064b88610b24565b90506000610a048561064b8a610b24565b90506000610a1e610a1485610b24565b6104588585610767565b9450505050505b949350505050565b6000821580610a3a575081155b15610a4757506000610761565b816113881981610a5357fe5b0483111560405180604001604052806002815260200161068760f31b81525090610abe5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561082b578181015183820152602001610813565b506127106002816109b2565b60008184841115610b1c5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561082b578181015183820152602001610813565b505050900390565b6000633b9aca0082810290839082041460405180604001604052806002815260200161068760f31b81525090610b9b5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561082b578181015183820152602001610813565b5092915050565b6040518060a001604052806000815260200160008152602001600081526020016000815260200160008152509056fea26469706673582212208d091b15ea4c7651e58fb22cd2db9e56c7375b62d4760d5f0a4282d7c1fe1dc164736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b53c1a33016b2dc2ff3653530bff1848a515c8c5000000000000000000000000000000000000000001743b34e18439b502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000039e7139a8c08fa06000000000000000000000000000000000000000000000009b18ab5df7180b6b80000000000000000000000000000000000000000000000006342fd08f00f6378000000000000000000000000000000000000000000000009b18ab5df7180b6b8000000
-----Decoded View---------------
Arg [0] : provider (address): 0xB53C1a33016B2DC2fF3653530bfF1848a515c8c5
Arg [1] : optimalUtilizationRate (uint256): 450000000000000000000000000
Arg [2] : baseVariableBorrowRate (uint256): 0
Arg [3] : variableRateSlope1 (uint256): 70000000000000000000000000
Arg [4] : variableRateSlope2 (uint256): 3000000000000000000000000000
Arg [5] : stableRateSlope1 (uint256): 120000000000000000000000000
Arg [6] : stableRateSlope2 (uint256): 3000000000000000000000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000b53c1a33016b2dc2ff3653530bff1848a515c8c5
Arg [1] : 000000000000000000000000000000000000000001743b34e18439b502000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 00000000000000000000000000000000000000000039e7139a8c08fa06000000
Arg [4] : 000000000000000000000000000000000000000009b18ab5df7180b6b8000000
Arg [5] : 0000000000000000000000000000000000000000006342fd08f00f6378000000
Arg [6] : 000000000000000000000000000000000000000009b18ab5df7180b6b8000000
Deployed Bytecode Sourcemap
23264:7219:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25710:97;;;:::i;:::-;;;;;;;;;;;;;;;;23889:48;;;:::i;25603:101::-;;;:::i;25496:::-;;;:::i;26040:170::-;;;:::i;27097:2158::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27097:2158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;23607:49;;;:::i;25916:118::-;;;:::i;23944:64::-;;;:::i;:::-;;;;-1:-1:-1;;;;;23944:64:0;;;;;;;;;;;;;;25813:97;;;:::i;25710:::-;25784:17;25710:97;:::o;23889:48::-;;;:::o;25603:101::-;25679:19;25603:101;:::o;25496:::-;25572:19;25496:101;:::o;26040:170::-;26108:7;26131:73;26184:19;26131:48;:23;26159:19;26131:27;:48::i;:::-;:52;;:73::i;:::-;26124:80;;26040:170;:::o;27097:2158::-;27377:7;27393;27409;27434:38;;:::i;:::-;27498;:15;27518:17;27498:19;:38::i;:::-;27481:55;;;:14;27543:30;;;:34;;;27584:28;;;:32;;;27623:25;;;:29;;;27481:14;27694:19;:105;;27783:14;;27738:61;;27760:38;;:18;;:22;:38::i;:::-;27738:14;;;:21;:61::i;:::-;27694:105;;;27725:1;27694:105;27661:138;;27858:17;-1:-1:-1;;;;;27858:38:0;;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27858:40:0;27839:97;;;-1:-1:-1;;;27839:97:0;;-1:-1:-1;;;;;27839:97:0;;;;;;;;;:88;;;;;;;:97;;;;;27858:40;;27839:97;;;;;;;:88;:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27839:97:0;27808:28;;;:128;27967:24;27949:42;;27945:872;;;28002:34;28048:77;28101:23;28048:45;:15;28068:24;28048:19;:45::i;:::-;:52;;:77::i;:::-;28002:123;-1:-1:-1;28167:127:0;28233:52;:17;28002:123;28233:24;:52::i;:::-;28167:28;;;;:51;;28200:17;28167:32;:51::i;:127::-;28136:28;;;:158;28338:126;28401:54;:19;28428:26;28401;:54::i;:::-;28338:48;:23;28366:19;28338:27;:48::i;:126::-;28305:30;;;:159;-1:-1:-1;27945:872:0;;;28518:126;28561:74;28586:48;:15;28609:24;28586:22;:48::i;:::-;28561:17;;:24;:74::i;:::-;28518:28;;;;;:32;:126::i;:::-;28487:28;;;:157;28686:123;28724:76;28775:24;28724:43;:15;28747:19;28724:22;:43::i;:76::-;28686:23;;:27;:123::i;:::-;28653:30;;;:156;27945:872;28853:263;29064:51;13527:3;29101:13;29064:36;:51::i;:::-;28853:191;29028:15;28853:159;28883:15;28907:17;28933:4;:40;;;28982:23;28853:21;:159::i;:::-;:174;;:191::i;:::-;:210;;:263::i;:::-;28825:25;;;:291;;;29175:28;;;;29212:30;;;;;28825:291;;29175:28;;-1:-1:-1;29212:30:0;-1:-1:-1;27097:2158:0;;-1:-1:-1;;;;;;;;27097:2158:0:o;23607:49::-;;;:::o;25916:118::-;26005:23;25916:118;:::o;23944:64::-;;;:::o;25813:97::-;25887:17;25813:97;:::o;1258:70::-;1104:4;1258:70;:::o;18946:130::-;19004:7;19027:43;19031:1;19034;19027:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;19020:50;;18946:130;;;;;:::o;18524:167::-;18582:7;18610:5;;;18630:6;;;;18622:46;;;;;-1:-1:-1;;;18622:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3175:286;3268:28;;;;;;;;;;;;-1:-1:-1;;;3268:28:0;;;;3236:7;;3260:6;3252:45;;;;-1:-1:-1;;;3252:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3382:35:0;;;;;;;;;3324:1;3382:35;;;-1:-1:-1;;;3382:35:0;;;;3320:5;;;1104:4;3348:25;;3347:33;3342:38;;;3334:84;;;;-1:-1:-1;;;3334:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3454:1;3445:5;1104:4;3435:1;:7;:15;3434:21;;;;;;;3175:286;-1:-1:-1;;;;3175:286:0:o;2751:261::-;2812:7;2832:6;;;:16;;-1:-1:-1;2842:6:0;;2832:16;2828:47;;;-1:-1:-1;2866:1:0;2859:8;;2828:47;2928:1;-1:-1:-1;;2928:1:0;2896:33;;;;;2891:1;:38;;2931:35;;;;;;;;;;;;;-1:-1:-1;;;2931:35:0;;;2883:84;;;;;-1:-1:-1;;;2883:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1104:4:0;1155:1;1104:4;1149:7;;2988:1;2984;:5;:15;2983:23;;;;;;;2751:261;-1:-1:-1;;;2751:261:0:o;29802:678::-;30008:7;;30044:38;:15;30064:17;30044:19;:38::i;:::-;30024:58;-1:-1:-1;30095:14:0;30091:28;;30118:1;30111:8;;;;;30091:28;30128;30159:62;30195:25;30159:28;:17;:26;:28::i;:62::-;30128:93;;30230:26;30259:65;30293:30;30259:26;:15;:24;:26::i;:65::-;30230:94;;30333:25;30368:73;30420:20;:9;:18;:20::i;:::-;30368:44;:20;30393:18;30368:24;:44::i;:73::-;30333:108;-1:-1:-1;;;;;29802:678:0;;;;;;;:::o;13872:362::-;13950:7;13970:10;;;:29;;-1:-1:-1;13984:15:0;;13970:29;13966:60;;;-1:-1:-1;14017:1:0;14010:8;;13966:60;14096:10;-1:-1:-1;;14096:10:0;14059:47;;;;;14050:5;:56;;14115:35;;;;;;;;;;;;;-1:-1:-1;;;14115:35:0;;;14034:123;;;;;-1:-1:-1;;;14034:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13527:3:0;13618:1;13527:3;13598:21;;19351:198;19457:7;19489:12;19481:6;;;;19473:29;;;;-1:-1:-1;;;19473:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;19521:5:0;;;19351:198::o;3963:208::-;4015:7;1205:3;4048:17;;;;:1;;:17;4080:22;:27;4109:35;;;;;;;;;;;;;-1:-1:-1;;;4109:35:0;;;4072:73;;;;;-1:-1:-1;;;4072:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4159:6:0;3963:208;-1:-1:-1;;3963:208:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://8d091b15ea4c7651e58fb22cd2db9e56c7375b62d4760d5f0a4282d7c1fe1dc1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.