Contract Overview
Balance:
0 FTM
FTM Value:
$0.00
My Name Tag:
Not Available, login to update
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x2ca1ca420aa03a52000a44e9652d75a29e006e4004a8797caaf48caa69631c8d | Set Collateral C... | 21750572 | 497 days 3 hrs ago | Parallel: Deployer | IN | 0x6283bec3cd438fffeec7a13e741ce201ed4ed053 | 0 FTM | 0.0785559 | |
0x13fbc727f98ba81501566ba93d401c062d6bf73125955015666e500c519705ef | Set Collateral C... | 21750558 | 497 days 3 hrs ago | Parallel: Deployer | IN | 0x6283bec3cd438fffeec7a13e741ce201ed4ed053 | 0 FTM | 0.0785559 | |
0x9fcdf53fdbd81af68b55e51c274e340832b0e0700128761f08432a9c88a9a0df | Set Collateral C... | 21750547 | 497 days 3 hrs ago | Parallel: Deployer | IN | 0x6283bec3cd438fffeec7a13e741ce201ed4ed053 | 0 FTM | 0.0785559 | |
0x3712103aa2450950c14575a998b98c4d0e6fc86968fe40162f0b34fc77a0577e | Set Collateral C... | 21750538 | 497 days 3 hrs ago | Parallel: Deployer | IN | 0x6283bec3cd438fffeec7a13e741ce201ed4ed053 | 0 FTM | 0.0830523 | |
0x49aa87782cdd4eeef9af3f7e3942d036bb80bfff3fb44c42dad768116a6d58b4 | 0x60806040 | 21750352 | 497 days 3 hrs ago | Parallel: Deployer | IN | Create: ConfigProvider | 0 FTM | 0.7994154 |
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x49aa87782cdd4eeef9af3f7e3942d036bb80bfff3fb44c42dad768116a6d58b4 | 21750352 | 497 days 3 hrs ago | Parallel: Deployer | Contract Creation | 0 FTM |
[ Download CSV Export ]
Contract Name:
ConfigProvider
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; import "../libraries/WadRayMath.sol"; import "../interfaces/IConfigProvider.sol"; import "../interfaces/IAddressProvider.sol"; contract ConfigProvider is IConfigProvider { IAddressProvider public override a; mapping(uint256 => CollateralConfig) private _collateralConfigs; //indexing starts at 1 mapping(address => uint256) public override collateralIds; uint256 public override numCollateralConfigs; /// @notice The minimum duration of voting on a proposal, in seconds uint256 public override minVotingPeriod = 3 days; /// @notice The max duration of voting on a proposal, in seconds uint256 public override maxVotingPeriod = 2 weeks; /// @notice The percentage of votes in support of a proposal required in order for a quorum to be reached and for a proposal to succeed uint256 public override votingQuorum = 1e16; // 1% /// @notice The percentage of votes required in order for a voter to become a proposer uint256 public override proposalThreshold = 2e14; // 0.02% constructor(IAddressProvider _addresses) public { require(address(_addresses) != address(0)); a = _addresses; } modifier onlyManager() { require(a.controller().hasRole(a.controller().MANAGER_ROLE(), msg.sender), "Caller is not a Manager"); _; } /** Creates or overwrites an existing config for a collateral type @param _collateralType address of the collateral type @param _debtLimit the debt ceiling for the collateral type @param _liquidationRatio the minimum ratio to maintain to avoid liquidation @param _minCollateralRatio the minimum ratio to maintain to borrow new money or withdraw collateral @param _borrowRate the borrowing rate specified in 1 second interval in RAY accuracy. @param _originationFee an optional origination fee for newly created debt. Can be 0. @param _liquidationBonus the liquidation bonus to be paid to liquidators. @param _liquidationFee an optional fee for liquidation debt. Can be 0. */ function setCollateralConfig( address _collateralType, uint256 _debtLimit, uint256 _liquidationRatio, uint256 _minCollateralRatio, uint256 _borrowRate, uint256 _originationFee, uint256 _liquidationBonus, uint256 _liquidationFee ) public override onlyManager { require(address(_collateralType) != address(0)); require(_minCollateralRatio >= _liquidationRatio); if (collateralIds[_collateralType] == 0) { // Initialize new collateral a.core().state().initializeRates(_collateralType); CollateralConfig memory config = CollateralConfig({ collateralType: _collateralType, debtLimit: _debtLimit, liquidationRatio: _liquidationRatio, minCollateralRatio: _minCollateralRatio, borrowRate: _borrowRate, originationFee: _originationFee, liquidationBonus: _liquidationBonus, liquidationFee: _liquidationFee }); numCollateralConfigs++; _collateralConfigs[numCollateralConfigs] = config; collateralIds[_collateralType] = numCollateralConfigs; } else { // Update collateral config a.core().state().refreshCollateral(_collateralType); uint256 id = collateralIds[_collateralType]; _collateralConfigs[id].collateralType = _collateralType; _collateralConfigs[id].debtLimit = _debtLimit; _collateralConfigs[id].liquidationRatio = _liquidationRatio; _collateralConfigs[id].minCollateralRatio = _minCollateralRatio; _collateralConfigs[id].borrowRate = _borrowRate; _collateralConfigs[id].originationFee = _originationFee; _collateralConfigs[id].liquidationBonus = _liquidationBonus; _collateralConfigs[id].liquidationFee = _liquidationFee; } emit CollateralUpdated( _collateralType, _debtLimit, _liquidationRatio, _minCollateralRatio, _borrowRate, _originationFee, _liquidationBonus, _liquidationFee ); } function _emitUpdateEvent(address _collateralType) internal { emit CollateralUpdated( _collateralType, _collateralConfigs[collateralIds[_collateralType]].debtLimit, _collateralConfigs[collateralIds[_collateralType]].liquidationRatio, _collateralConfigs[collateralIds[_collateralType]].minCollateralRatio, _collateralConfigs[collateralIds[_collateralType]].borrowRate, _collateralConfigs[collateralIds[_collateralType]].originationFee, _collateralConfigs[collateralIds[_collateralType]].liquidationBonus, _collateralConfigs[collateralIds[_collateralType]].liquidationFee ); } /** Remove the config for a collateral type @param _collateralType address of the collateral type */ function removeCollateral(address _collateralType) public override onlyManager { uint256 id = collateralIds[_collateralType]; require(id != 0, "collateral does not exist"); _collateralConfigs[id] = _collateralConfigs[numCollateralConfigs]; //move last entry forward collateralIds[_collateralConfigs[id].collateralType] = id; //update id for last entry delete _collateralConfigs[numCollateralConfigs]; // delete last entry delete collateralIds[_collateralType]; numCollateralConfigs--; emit CollateralRemoved(_collateralType); } /** Sets the debt limit for a collateral type @param _collateralType address of the collateral type @param _debtLimit the new debt limit */ function setCollateralDebtLimit(address _collateralType, uint256 _debtLimit) public override onlyManager { _collateralConfigs[collateralIds[_collateralType]].debtLimit = _debtLimit; _emitUpdateEvent(_collateralType); } /** Sets the minimum liquidation ratio for a collateral type @dev this is the liquidation treshold under which a vault is considered open for liquidation. @param _collateralType address of the collateral type @param _liquidationRatio the new minimum collateralization ratio */ function setCollateralLiquidationRatio(address _collateralType, uint256 _liquidationRatio) public override onlyManager { require(_liquidationRatio <= _collateralConfigs[collateralIds[_collateralType]].minCollateralRatio); _collateralConfigs[collateralIds[_collateralType]].liquidationRatio = _liquidationRatio; _emitUpdateEvent(_collateralType); } /** Sets the minimum ratio for a collateral type for new borrowing or collateral withdrawal @param _collateralType address of the collateral type @param _minCollateralRatio the new minimum open ratio */ function setCollateralMinCollateralRatio(address _collateralType, uint256 _minCollateralRatio) public override onlyManager { require(_minCollateralRatio >= _collateralConfigs[collateralIds[_collateralType]].liquidationRatio); _collateralConfigs[collateralIds[_collateralType]].minCollateralRatio = _minCollateralRatio; _emitUpdateEvent(_collateralType); } /** Sets the borrowing rate for a collateral type @dev borrowing rate is specified for a 1 sec interval and accurancy is in RAY. @param _collateralType address of the collateral type @param _borrowRate the new borrowing rate for a 1 sec interval */ function setCollateralBorrowRate(address _collateralType, uint256 _borrowRate) public override onlyManager { a.core().state().refreshCollateral(_collateralType); _collateralConfigs[collateralIds[_collateralType]].borrowRate = _borrowRate; _emitUpdateEvent(_collateralType); } /** Sets the origiation fee for a collateral type @dev this rate is applied as a one time fee for new borrowing and is specified in WAD @param _collateralType address of the collateral type @param _originationFee new origination fee in WAD */ function setCollateralOriginationFee(address _collateralType, uint256 _originationFee) public override onlyManager { _collateralConfigs[collateralIds[_collateralType]].originationFee = _originationFee; _emitUpdateEvent(_collateralType); } /** Sets the liquidation bonus for a collateral type @dev the liquidation bonus is specified in WAD @param _collateralType address of the collateral type @param _liquidationBonus the liquidation bonus to be paid to liquidators. */ function setCollateralLiquidationBonus(address _collateralType, uint256 _liquidationBonus) public override onlyManager { _collateralConfigs[collateralIds[_collateralType]].liquidationBonus = _liquidationBonus; _emitUpdateEvent(_collateralType); } /** Sets the liquidation fee for a collateral type @dev this rate is applied as a fee for liquidation and is specified in WAD @param _collateralType address of the collateral type @param _liquidationFee new liquidation fee in WAD */ function setCollateralLiquidationFee(address _collateralType, uint256 _liquidationFee) public override onlyManager { require(_liquidationFee < 1e18); // fee < 100% _collateralConfigs[collateralIds[_collateralType]].liquidationFee = _liquidationFee; _emitUpdateEvent(_collateralType); } /** Set the min voting period for a gov proposal. @param _minVotingPeriod the min voting period for a gov proposal */ function setMinVotingPeriod(uint256 _minVotingPeriod) public override onlyManager { minVotingPeriod = _minVotingPeriod; } /** Set the max voting period for a gov proposal. @param _maxVotingPeriod the max voting period for a gov proposal */ function setMaxVotingPeriod(uint256 _maxVotingPeriod) public override onlyManager { maxVotingPeriod = _maxVotingPeriod; } /** Set the voting quora for a gov proposal. @param _votingQuorum the voting quora for a gov proposal */ function setVotingQuorum(uint256 _votingQuorum) public override onlyManager { require(_votingQuorum < 1e18); votingQuorum = _votingQuorum; } /** Set the proposal threshold for a gov proposal. @param _proposalThreshold the proposal threshold for a gov proposal */ function setProposalThreshold(uint256 _proposalThreshold) public override onlyManager { require(_proposalThreshold < 1e18); proposalThreshold = _proposalThreshold; } /** Get the debt limit for a collateral type @dev this is a platform wide limit for new debt issuance against a specific collateral type @param _collateralType address of the collateral type */ function collateralDebtLimit(address _collateralType) public view override returns (uint256) { return _collateralConfigs[collateralIds[_collateralType]].debtLimit; } /** Get the liquidation ratio that needs to be maintained for a collateral type to avoid liquidation. @param _collateralType address of the collateral type */ function collateralLiquidationRatio(address _collateralType) public view override returns (uint256) { return _collateralConfigs[collateralIds[_collateralType]].liquidationRatio; } /** Get the minimum collateralization ratio for a collateral type for new borrowing or collateral withdrawal. @param _collateralType address of the collateral type */ function collateralMinCollateralRatio(address _collateralType) public view override returns (uint256) { return _collateralConfigs[collateralIds[_collateralType]].minCollateralRatio; } /** Get the borrowing rate for a collateral type @dev borrowing rate is specified for a 1 sec interval and accurancy is in RAY. @param _collateralType address of the collateral type */ function collateralBorrowRate(address _collateralType) public view override returns (uint256) { return _collateralConfigs[collateralIds[_collateralType]].borrowRate; } /** Get the origiation fee for a collateral type @dev this rate is applied as a one time fee for new borrowing and is specified in WAD @param _collateralType address of the collateral type */ function collateralOriginationFee(address _collateralType) public view override returns (uint256) { return _collateralConfigs[collateralIds[_collateralType]].originationFee; } /** Get the liquidation bonus for a collateral type @dev this rate is applied as a one time fee for new borrowing and is specified in WAD @param _collateralType address of the collateral type */ function collateralLiquidationBonus(address _collateralType) public view override returns (uint256) { return _collateralConfigs[collateralIds[_collateralType]].liquidationBonus; } /** Get the liquidation fee for a collateral type @dev this rate is applied as a one time fee for new borrowing and is specified in WAD @param _collateralType address of the collateral type */ function collateralLiquidationFee(address _collateralType) public view override returns (uint256) { return _collateralConfigs[collateralIds[_collateralType]].liquidationFee; } /** Retreives the entire config for a specific config id. @param _id the ID of the conifg to be returned */ function collateralConfigs(uint256 _id) public view override returns (CollateralConfig memory) { require(_id <= numCollateralConfigs, "Invalid config id"); return _collateralConfigs[_id]; } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts/math/SafeMath.sol"; /****************** @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 { using SafeMath for uint256; uint256 internal constant _WAD = 1e18; uint256 internal constant _HALF_WAD = _WAD / 2; uint256 internal constant _RAY = 1e27; uint256 internal constant _HALF_RAY = _RAY / 2; uint256 internal constant _WAD_RAY_RATIO = 1e9; function ray() internal pure returns (uint256) { return _RAY; } function wad() internal pure returns (uint256) { return _WAD; } function halfRay() internal pure returns (uint256) { return _HALF_RAY; } function halfWad() internal pure returns (uint256) { return _HALF_WAD; } function wadMul(uint256 a, uint256 b) internal pure returns (uint256) { return _HALF_WAD.add(a.mul(b)).div(_WAD); } function wadDiv(uint256 a, uint256 b) internal pure returns (uint256) { uint256 halfB = b / 2; return halfB.add(a.mul(_WAD)).div(b); } function rayMul(uint256 a, uint256 b) internal pure returns (uint256) { return _HALF_RAY.add(a.mul(b)).div(_RAY); } function rayDiv(uint256 a, uint256 b) internal pure returns (uint256) { uint256 halfB = b / 2; return halfB.add(a.mul(_RAY)).div(b); } function rayToWad(uint256 a) internal pure returns (uint256) { uint256 halfRatio = _WAD_RAY_RATIO / 2; return halfRatio.add(a).div(_WAD_RAY_RATIO); } function wadToRay(uint256 a) internal pure returns (uint256) { return a.mul(_WAD_RAY_RATIO); } /** * @dev calculates x^n, in ray. The code uses the ModExp precompile * @param x base * @param n exponent * @return z = x^n, in ray */ function rayPow(uint256 x, uint256 n) internal pure returns (uint256 z) { z = n % 2 != 0 ? x : _RAY; for (n /= 2; n != 0; n /= 2) { x = rayMul(x, x); if (n % 2 != 0) { z = rayMul(z, x); } } } }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; import "../interfaces/IAddressProvider.sol"; interface IConfigProvider { struct CollateralConfig { address collateralType; uint256 debtLimit; uint256 liquidationRatio; uint256 minCollateralRatio; uint256 borrowRate; uint256 originationFee; uint256 liquidationBonus; uint256 liquidationFee; } event CollateralUpdated( address indexed collateralType, uint256 debtLimit, uint256 liquidationRatio, uint256 minCollateralRatio, uint256 borrowRate, uint256 originationFee, uint256 liquidationBonus, uint256 liquidationFee ); event CollateralRemoved(address indexed collateralType); function setCollateralConfig( address _collateralType, uint256 _debtLimit, uint256 _liquidationRatio, uint256 _minCollateralRatio, uint256 _borrowRate, uint256 _originationFee, uint256 _liquidationBonus, uint256 _liquidationFee ) external; function removeCollateral(address _collateralType) external; function setCollateralDebtLimit(address _collateralType, uint256 _debtLimit) external; function setCollateralLiquidationRatio(address _collateralType, uint256 _liquidationRatio) external; function setCollateralMinCollateralRatio(address _collateralType, uint256 _minCollateralRatio) external; function setCollateralBorrowRate(address _collateralType, uint256 _borrowRate) external; function setCollateralOriginationFee(address _collateralType, uint256 _originationFee) external; function setCollateralLiquidationBonus(address _collateralType, uint256 _liquidationBonus) external; function setCollateralLiquidationFee(address _collateralType, uint256 _liquidationFee) external; function setMinVotingPeriod(uint256 _minVotingPeriod) external; function setMaxVotingPeriod(uint256 _maxVotingPeriod) external; function setVotingQuorum(uint256 _votingQuorum) external; function setProposalThreshold(uint256 _proposalThreshold) external; function a() external view returns (IAddressProvider); function collateralConfigs(uint256 _id) external view returns (CollateralConfig memory); function collateralIds(address _collateralType) external view returns (uint256); function numCollateralConfigs() external view returns (uint256); function minVotingPeriod() external view returns (uint256); function maxVotingPeriod() external view returns (uint256); function votingQuorum() external view returns (uint256); function proposalThreshold() external view returns (uint256); function collateralDebtLimit(address _collateralType) external view returns (uint256); function collateralLiquidationRatio(address _collateralType) external view returns (uint256); function collateralMinCollateralRatio(address _collateralType) external view returns (uint256); function collateralBorrowRate(address _collateralType) external view returns (uint256); function collateralOriginationFee(address _collateralType) external view returns (uint256); function collateralLiquidationBonus(address _collateralType) external view returns (uint256); function collateralLiquidationFee(address _collateralType) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; import "./IAccessController.sol"; import "./IConfigProvider.sol"; import "./ISTABLEX.sol"; import "./IPriceFeed.sol"; import "./IRatesManager.sol"; import "./ILiquidationManager.sol"; import "./IVaultsCore.sol"; import "./IVaultsDataProvider.sol"; import "./IFeeDistributor.sol"; interface IAddressProvider { function setAccessController(IAccessController _controller) external; function setConfigProvider(IConfigProvider _config) external; function setVaultsCore(IVaultsCore _core) external; function setStableX(ISTABLEX _stablex) external; function setRatesManager(IRatesManager _ratesManager) external; function setPriceFeed(IPriceFeed _priceFeed) external; function setLiquidationManager(ILiquidationManager _liquidationManager) external; function setVaultsDataProvider(IVaultsDataProvider _vaultsData) external; function setFeeDistributor(IFeeDistributor _feeDistributor) external; function controller() external view returns (IAccessController); function config() external view returns (IConfigProvider); function core() external view returns (IVaultsCore); function stablex() external view returns (ISTABLEX); function ratesManager() external view returns (IRatesManager); function priceFeed() external view returns (IPriceFeed); function liquidationManager() external view returns (ILiquidationManager); function vaultsData() external view returns (IVaultsDataProvider); function feeDistributor() external view returns (IFeeDistributor); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * 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); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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; } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IAccessController { event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; function MANAGER_ROLE() external view returns (bytes32); function MINTER_ROLE() external view returns (bytes32); function hasRole(bytes32 role, address account) external view returns (bool); function getRoleMemberCount(bytes32 role) external view returns (uint256); function getRoleMember(bytes32 role, uint256 index) external view returns (address); function getRoleAdmin(bytes32 role) external view returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "../interfaces/IAddressProvider.sol"; interface ISTABLEX is IERC20 { function mint(address account, uint256 amount) external; function burn(address account, uint256 amount) external; function a() external view returns (IAddressProvider); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "../chainlink/AggregatorV3Interface.sol"; import "../interfaces/IAddressProvider.sol"; interface IPriceFeed { event OracleUpdated(address indexed asset, address oracle, address sender); event EurOracleUpdated(address oracle, address sender); function setAssetOracle(address _asset, address _oracle) external; function setEurOracle(address _oracle) external; function a() external view returns (IAddressProvider); function assetOracles(address _asset) external view returns (AggregatorV3Interface); function eurOracle() external view returns (AggregatorV3Interface); function getAssetPrice(address _asset) external view returns (uint256); function convertFrom(address _asset, uint256 _amount) external view returns (uint256); function convertTo(address _asset, uint256 _amount) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; import "../interfaces/IAddressProvider.sol"; interface IRatesManager { function a() external view returns (IAddressProvider); //current annualized borrow rate function annualizedBorrowRate(uint256 _currentBorrowRate) external pure returns (uint256); //uses current cumulative rate to calculate totalDebt based on baseDebt at time T0 function calculateDebt(uint256 _baseDebt, uint256 _cumulativeRate) external pure returns (uint256); //uses current cumulative rate to calculate baseDebt at time T0 function calculateBaseDebt(uint256 _debt, uint256 _cumulativeRate) external pure returns (uint256); //calculate a new cumulative rate function calculateCumulativeRate( uint256 _borrowRate, uint256 _cumulativeRate, uint256 _timeElapsed ) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; import "../interfaces/IAddressProvider.sol"; interface ILiquidationManager { function a() external view returns (IAddressProvider); function calculateHealthFactor( uint256 _collateralValue, uint256 _vaultDebt, uint256 _minRatio ) external view returns (uint256 healthFactor); function liquidationBonus(address _collateralType, uint256 _amount) external view returns (uint256 bonus); function applyLiquidationDiscount(address _collateralType, uint256 _amount) external view returns (uint256 discountedAmount); function isHealthy( uint256 _collateralValue, uint256 _vaultDebt, uint256 _minRatio ) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; import "../interfaces/IAddressProvider.sol"; import "../interfaces/IVaultsCoreState.sol"; import "../interfaces/IWETH.sol"; import "../liquidityMining/interfaces/IDebtNotifier.sol"; interface IVaultsCore { event Opened(uint256 indexed vaultId, address indexed collateralType, address indexed owner); event Deposited(uint256 indexed vaultId, uint256 amount, address indexed sender); event Withdrawn(uint256 indexed vaultId, uint256 amount, address indexed sender); event Borrowed(uint256 indexed vaultId, uint256 amount, address indexed sender); event Repaid(uint256 indexed vaultId, uint256 amount, address indexed sender); event Liquidated( uint256 indexed vaultId, uint256 debtRepaid, uint256 collateralLiquidated, address indexed owner, address indexed sender ); event InsurancePaid(uint256 indexed vaultId, uint256 insuranceAmount, address indexed sender); function deposit(address _collateralType, uint256 _amount) external; function depositETH() external payable; function depositByVaultId(uint256 _vaultId, uint256 _amount) external; function depositETHByVaultId(uint256 _vaultId) external payable; function depositAndBorrow( address _collateralType, uint256 _depositAmount, uint256 _borrowAmount ) external; function depositETHAndBorrow(uint256 _borrowAmount) external payable; function withdraw(uint256 _vaultId, uint256 _amount) external; function withdrawETH(uint256 _vaultId, uint256 _amount) external; function borrow(uint256 _vaultId, uint256 _amount) external; function repayAll(uint256 _vaultId) external; function repay(uint256 _vaultId, uint256 _amount) external; function liquidate(uint256 _vaultId) external; function liquidatePartial(uint256 _vaultId, uint256 _amount) external; function upgrade(address payable _newVaultsCore) external; function acceptUpgrade(address payable _oldVaultsCore) external; function setDebtNotifier(IDebtNotifier _debtNotifier) external; //Read only function a() external view returns (IAddressProvider); function WETH() external view returns (IWETH); function debtNotifier() external view returns (IDebtNotifier); function state() external view returns (IVaultsCoreState); function cumulativeRates(address _collateralType) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; import "../interfaces/IAddressProvider.sol"; interface IVaultsDataProvider { struct Vault { // borrowedType support USDX / PAR address collateralType; address owner; uint256 collateralBalance; uint256 baseDebt; uint256 createdAt; } //Write function createVault(address _collateralType, address _owner) external returns (uint256); function setCollateralBalance(uint256 _id, uint256 _balance) external; function setBaseDebt(uint256 _id, uint256 _newBaseDebt) external; // Read function a() external view returns (IAddressProvider); function baseDebt(address _collateralType) external view returns (uint256); function vaultCount() external view returns (uint256); function vaults(uint256 _id) external view returns (Vault memory); function vaultOwner(uint256 _id) external view returns (address); function vaultCollateralType(uint256 _id) external view returns (address); function vaultCollateralBalance(uint256 _id) external view returns (uint256); function vaultBaseDebt(uint256 _id) external view returns (uint256); function vaultId(address _collateralType, address _owner) external view returns (uint256); function vaultExists(uint256 _id) external view returns (bool); function vaultDebt(uint256 _vaultId) external view returns (uint256); function debt() external view returns (uint256); function collateralDebt(address _collateralType) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "../interfaces/IAddressProvider.sol"; interface IFeeDistributor { event PayeeAdded(address indexed account, uint256 shares); event FeeReleased(uint256 income, uint256 releasedAt); function release() external; function changePayees(address[] memory _payees, uint256[] memory _shares) external; function a() external view returns (IAddressProvider); function lastReleasedAt() external view returns (uint256); function getPayees() external view returns (address[] memory); function totalShares() external view returns (uint256); function shares(address payee) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.6.12; interface AggregatorV3Interface { function decimals() external view returns (uint8); function description() external view returns (string memory); function version() external view returns (uint256); function getRoundData(uint80 _roundId) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; import "./IAddressProvider.sol"; import "../v1/interfaces/IVaultsCoreV1.sol"; interface IVaultsCoreState { event CumulativeRateUpdated(address indexed collateralType, uint256 elapsedTime, uint256 newCumulativeRate); //cumulative interest rate from deployment time T0 function initializeRates(address _collateralType) external; function refresh() external; function refreshCollateral(address collateralType) external; function syncState(IVaultsCoreState _stateAddress) external; function syncStateFromV1(IVaultsCoreV1 _core) external; //Read only function a() external view returns (IAddressProvider); function availableIncome() external view returns (uint256); function cumulativeRates(address _collateralType) external view returns (uint256); function lastRefresh(address _collateralType) external view returns (uint256); function synced() external view returns (bool); }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; interface IWETH { function deposit() external payable; function transfer(address to, uint256 value) external returns (bool); function withdraw(uint256 wad) external; }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; import "../../governance/interfaces/IGovernanceAddressProvider.sol"; import "./ISupplyMiner.sol"; interface IDebtNotifier { function debtChanged(uint256 _vaultId) external; function setCollateralSupplyMiner(address collateral, ISupplyMiner supplyMiner) external; function a() external view returns (IGovernanceAddressProvider); function collateralSupplyMinerMapping(address collateral) external view returns (ISupplyMiner); }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; import "./IAddressProviderV1.sol"; interface IVaultsCoreV1 { event Opened(uint256 indexed vaultId, address indexed collateralType, address indexed owner); event Deposited(uint256 indexed vaultId, uint256 amount, address indexed sender); event Withdrawn(uint256 indexed vaultId, uint256 amount, address indexed sender); event Borrowed(uint256 indexed vaultId, uint256 amount, address indexed sender); event Repaid(uint256 indexed vaultId, uint256 amount, address indexed sender); event Liquidated( uint256 indexed vaultId, uint256 debtRepaid, uint256 collateralLiquidated, address indexed owner, address indexed sender ); event CumulativeRateUpdated(address indexed collateralType, uint256 elapsedTime, uint256 newCumulativeRate); //cumulative interest rate from deployment time T0 event InsurancePaid(uint256 indexed vaultId, uint256 insuranceAmount, address indexed sender); function deposit(address _collateralType, uint256 _amount) external; function withdraw(uint256 _vaultId, uint256 _amount) external; function withdrawAll(uint256 _vaultId) external; function borrow(uint256 _vaultId, uint256 _amount) external; function repayAll(uint256 _vaultId) external; function repay(uint256 _vaultId, uint256 _amount) external; function liquidate(uint256 _vaultId) external; //Refresh function initializeRates(address _collateralType) external; function refresh() external; function refreshCollateral(address collateralType) external; //upgrade function upgrade(address _newVaultsCore) external; //Read only function a() external view returns (IAddressProviderV1); function availableIncome() external view returns (uint256); function cumulativeRates(address _collateralType) external view returns (uint256); function lastRefresh(address _collateralType) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; import "./IConfigProviderV1.sol"; import "./ILiquidationManagerV1.sol"; import "./IVaultsCoreV1.sol"; import "../../interfaces/IVaultsCore.sol"; import "../../interfaces/IAccessController.sol"; import "../../interfaces/ISTABLEX.sol"; import "../../interfaces/IPriceFeed.sol"; import "../../interfaces/IRatesManager.sol"; import "../../interfaces/IVaultsDataProvider.sol"; import "../../interfaces/IFeeDistributor.sol"; interface IAddressProviderV1 { function setAccessController(IAccessController _controller) external; function setConfigProvider(IConfigProviderV1 _config) external; function setVaultsCore(IVaultsCoreV1 _core) external; function setStableX(ISTABLEX _stablex) external; function setRatesManager(IRatesManager _ratesManager) external; function setPriceFeed(IPriceFeed _priceFeed) external; function setLiquidationManager(ILiquidationManagerV1 _liquidationManager) external; function setVaultsDataProvider(IVaultsDataProvider _vaultsData) external; function setFeeDistributor(IFeeDistributor _feeDistributor) external; function controller() external view returns (IAccessController); function config() external view returns (IConfigProviderV1); function core() external view returns (IVaultsCoreV1); function stablex() external view returns (ISTABLEX); function ratesManager() external view returns (IRatesManager); function priceFeed() external view returns (IPriceFeed); function liquidationManager() external view returns (ILiquidationManagerV1); function vaultsData() external view returns (IVaultsDataProvider); function feeDistributor() external view returns (IFeeDistributor); }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; import "./IAddressProviderV1.sol"; interface IConfigProviderV1 { struct CollateralConfig { address collateralType; uint256 debtLimit; uint256 minCollateralRatio; uint256 borrowRate; uint256 originationFee; } event CollateralUpdated( address indexed collateralType, uint256 debtLimit, uint256 minCollateralRatio, uint256 borrowRate, uint256 originationFee ); event CollateralRemoved(address indexed collateralType); function setCollateralConfig( address _collateralType, uint256 _debtLimit, uint256 _minCollateralRatio, uint256 _borrowRate, uint256 _originationFee ) external; function removeCollateral(address _collateralType) external; function setCollateralDebtLimit(address _collateralType, uint256 _debtLimit) external; function setCollateralMinCollateralRatio(address _collateralType, uint256 _minCollateralRatio) external; function setCollateralBorrowRate(address _collateralType, uint256 _borrowRate) external; function setCollateralOriginationFee(address _collateralType, uint256 _originationFee) external; function setLiquidationBonus(uint256 _bonus) external; function a() external view returns (IAddressProviderV1); function collateralConfigs(uint256 _id) external view returns (CollateralConfig memory); function collateralIds(address _collateralType) external view returns (uint256); function numCollateralConfigs() external view returns (uint256); function liquidationBonus() external view returns (uint256); function collateralDebtLimit(address _collateralType) external view returns (uint256); function collateralMinCollateralRatio(address _collateralType) external view returns (uint256); function collateralBorrowRate(address _collateralType) external view returns (uint256); function collateralOriginationFee(address _collateralType) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; import "./IAddressProviderV1.sol"; interface ILiquidationManagerV1 { function a() external view returns (IAddressProviderV1); function calculateHealthFactor( address _collateralType, uint256 _collateralValue, uint256 _vaultDebt ) external view returns (uint256 healthFactor); function liquidationBonus(uint256 _amount) external view returns (uint256 bonus); function applyLiquidationDiscount(uint256 _amount) external view returns (uint256 discountedAmount); function isHealthy( address _collateralType, uint256 _collateralValue, uint256 _vaultDebt ) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; import "./IGovernorAlpha.sol"; import "./ITimelock.sol"; import "./IVotingEscrow.sol"; import "../../interfaces/IAccessController.sol"; import "../../interfaces/IAddressProvider.sol"; import "../../liquidityMining/interfaces/IMIMO.sol"; import "../../liquidityMining/interfaces/IDebtNotifier.sol"; interface IGovernanceAddressProvider { function setParallelAddressProvider(IAddressProvider _parallel) external; function setMIMO(IMIMO _mimo) external; function setDebtNotifier(IDebtNotifier _debtNotifier) external; function setGovernorAlpha(IGovernorAlpha _governorAlpha) external; function setTimelock(ITimelock _timelock) external; function setVotingEscrow(IVotingEscrow _votingEscrow) external; function controller() external view returns (IAccessController); function parallel() external view returns (IAddressProvider); function mimo() external view returns (IMIMO); function debtNotifier() external view returns (IDebtNotifier); function governorAlpha() external view returns (IGovernorAlpha); function timelock() external view returns (ITimelock); function votingEscrow() external view returns (IVotingEscrow); }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; interface ISupplyMiner { function baseDebtChanged(address user, uint256 newBaseDebt) external; }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; interface IGovernorAlpha { /// @notice Possible states that a proposal may be in enum ProposalState { Active, Canceled, Defeated, Succeeded, Queued, Expired, Executed } struct Proposal { // Unique id for looking up a proposal uint256 id; // Creator of the proposal address proposer; // The timestamp that the proposal will be available for execution, set once the vote succeeds uint256 eta; // the ordered list of target addresses for calls to be made address[] targets; // The ordered list of values (i.e. msg.value) to be passed to the calls to be made uint256[] values; // The ordered list of function signatures to be called string[] signatures; // The ordered list of calldata to be passed to each call bytes[] calldatas; // The timestamp at which voting begins: holders must delegate their votes prior to this timestamp uint256 startTime; // The timestamp at which voting ends: votes must be cast prior to this timestamp uint endTime; // Current number of votes in favor of this proposal uint256 forVotes; // Current number of votes in opposition to this proposal uint256 againstVotes; // Flag marking whether the proposal has been canceled bool canceled; // Flag marking whether the proposal has been executed bool executed; // Receipts of ballots for the entire set of voters mapping (address => Receipt) receipts; } /// @notice Ballot receipt record for a voter struct Receipt { // Whether or not a vote has been cast bool hasVoted; // Whether or not the voter supports the proposal bool support; // The number of votes the voter had, which were cast uint votes; } /// @notice An event emitted when a new proposal is created event ProposalCreated(uint256 id, address proposer, address[] targets, uint256[] values, string[] signatures, bytes[] calldatas, uint startTime, uint endTime, string description); /// @notice An event emitted when a vote has been cast on a proposal event VoteCast(address voter, uint256 proposalId, bool support, uint256 votes); /// @notice An event emitted when a proposal has been canceled event ProposalCanceled(uint256 id); /// @notice An event emitted when a proposal has been queued in the Timelock event ProposalQueued(uint256 id, uint256 eta); /// @notice An event emitted when a proposal has been executed in the Timelock event ProposalExecuted(uint256 id); function propose(address[] memory targets, uint256[] memory values, string[] memory signatures, bytes[] memory calldatas, string memory description, uint256 endTime) external returns (uint); function queue(uint256 proposalId) external; function execute(uint256 proposalId) external payable; function cancel(uint256 proposalId) external; function castVote(uint256 proposalId, bool support) external; function getActions(uint256 proposalId) external view returns (address[] memory targets, uint256[] memory values, string[] memory signatures, bytes[] memory calldatas); function getReceipt(uint256 proposalId, address voter) external view returns (Receipt memory); function state(uint proposalId) external view returns (ProposalState); function quorumVotes() external view returns (uint256); function proposalThreshold() external view returns (uint256); }
// SPDX-License-Identifier: BSD-3-Clause pragma solidity 0.6.12; interface ITimelock { event NewAdmin(address indexed newAdmin); event NewPendingAdmin(address indexed newPendingAdmin); event NewDelay(uint256 indexed newDelay); event CancelTransaction( bytes32 indexed txHash, address indexed target, uint256 value, string signature, bytes data, uint256 eta ); event ExecuteTransaction( bytes32 indexed txHash, address indexed target, uint256 value, string signature, bytes data, uint256 eta ); event QueueTransaction( bytes32 indexed txHash, address indexed target, uint256 value, string signature, bytes data, uint256 eta ); function acceptAdmin() external; function queueTransaction( address target, uint256 value, string calldata signature, bytes calldata data, uint256 eta ) external returns (bytes32); function cancelTransaction( address target, uint256 value, string calldata signature, bytes calldata data, uint256 eta ) external; function executeTransaction( address target, uint256 value, string calldata signature, bytes calldata data, uint256 eta ) external payable returns (bytes memory); function delay() external view returns (uint256); function GRACE_PERIOD() external view returns (uint256); function queuedTransactions(bytes32 hash) external view returns (bool); }
// SPDX-License-Identifier: AGPL-3.0 pragma solidity 0.6.12; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "../../liquidityMining/interfaces/IGenericMiner.sol"; interface IVotingEscrow { enum LockAction { CREATE_LOCK, INCREASE_LOCK_AMOUNT, INCREASE_LOCK_TIME } struct LockedBalance { uint256 amount; uint256 end; } /** Shared Events */ event Deposit(address indexed provider, uint256 value, uint256 locktime, LockAction indexed action, uint256 ts); event Withdraw(address indexed provider, uint256 value, uint256 ts); event Expired(); function createLock(uint256 _value, uint256 _unlockTime) external; function increaseLockAmount(uint256 _value) external; function increaseLockLength(uint256 _unlockTime) external; function withdraw() external; function expireContract() external; function setMiner(IGenericMiner _miner) external; function setMinimumLockTime(uint256 _minimumLockTime) external; function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint256); function balanceOf(address _owner) external view returns (uint256); function balanceOfAt(address _owner, uint256 _blockTime) external view returns (uint256); function stakingToken() external view returns (IERC20); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IMIMO is IERC20 { function burn(address account, uint256 amount) external; function mint(address account, uint256 amount) external; }
// SPDX-License-Identifier: MIT pragma experimental ABIEncoderV2; pragma solidity 0.6.12; import "@openzeppelin/contracts/math/SafeMath.sol"; import "../../interfaces/IAddressProvider.sol"; import "../../governance/interfaces/IGovernanceAddressProvider.sol"; interface IGenericMiner { struct UserInfo { uint256 stake; uint256 accAmountPerShare; // User's accAmountPerShare } /// @dev This emit when a users' productivity has changed /// It emits with the user's address and the the value after the change. event StakeIncreased(address indexed user, uint256 stake); /// @dev This emit when a users' productivity has changed /// It emits with the user's address and the the value after the change. event StakeDecreased(address indexed user, uint256 stake); function releaseMIMO(address _user) external; function a() external view returns (IGovernanceAddressProvider); function stake(address _user) external view returns (uint256); function pendingMIMO(address _user) external view returns (uint256); function totalStake() external view returns (uint256); function userInfo(address _user) external view returns (UserInfo memory); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IAddressProvider","name":"_addresses","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collateralType","type":"address"}],"name":"CollateralRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collateralType","type":"address"},{"indexed":false,"internalType":"uint256","name":"debtLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidationRatio","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"minCollateralRatio","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"borrowRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"originationFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidationBonus","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidationFee","type":"uint256"}],"name":"CollateralUpdated","type":"event"},{"inputs":[],"name":"a","outputs":[{"internalType":"contract IAddressProvider","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"}],"name":"collateralBorrowRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"collateralConfigs","outputs":[{"components":[{"internalType":"address","name":"collateralType","type":"address"},{"internalType":"uint256","name":"debtLimit","type":"uint256"},{"internalType":"uint256","name":"liquidationRatio","type":"uint256"},{"internalType":"uint256","name":"minCollateralRatio","type":"uint256"},{"internalType":"uint256","name":"borrowRate","type":"uint256"},{"internalType":"uint256","name":"originationFee","type":"uint256"},{"internalType":"uint256","name":"liquidationBonus","type":"uint256"},{"internalType":"uint256","name":"liquidationFee","type":"uint256"}],"internalType":"struct IConfigProvider.CollateralConfig","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"}],"name":"collateralDebtLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collateralIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"}],"name":"collateralLiquidationBonus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"}],"name":"collateralLiquidationFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"}],"name":"collateralLiquidationRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"}],"name":"collateralMinCollateralRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"}],"name":"collateralOriginationFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxVotingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minVotingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numCollateralConfigs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"}],"name":"removeCollateral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"},{"internalType":"uint256","name":"_borrowRate","type":"uint256"}],"name":"setCollateralBorrowRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"},{"internalType":"uint256","name":"_debtLimit","type":"uint256"},{"internalType":"uint256","name":"_liquidationRatio","type":"uint256"},{"internalType":"uint256","name":"_minCollateralRatio","type":"uint256"},{"internalType":"uint256","name":"_borrowRate","type":"uint256"},{"internalType":"uint256","name":"_originationFee","type":"uint256"},{"internalType":"uint256","name":"_liquidationBonus","type":"uint256"},{"internalType":"uint256","name":"_liquidationFee","type":"uint256"}],"name":"setCollateralConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"},{"internalType":"uint256","name":"_debtLimit","type":"uint256"}],"name":"setCollateralDebtLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"},{"internalType":"uint256","name":"_liquidationBonus","type":"uint256"}],"name":"setCollateralLiquidationBonus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"},{"internalType":"uint256","name":"_liquidationFee","type":"uint256"}],"name":"setCollateralLiquidationFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"},{"internalType":"uint256","name":"_liquidationRatio","type":"uint256"}],"name":"setCollateralLiquidationRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"},{"internalType":"uint256","name":"_minCollateralRatio","type":"uint256"}],"name":"setCollateralMinCollateralRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralType","type":"address"},{"internalType":"uint256","name":"_originationFee","type":"uint256"}],"name":"setCollateralOriginationFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxVotingPeriod","type":"uint256"}],"name":"setMaxVotingPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minVotingPeriod","type":"uint256"}],"name":"setMinVotingPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_proposalThreshold","type":"uint256"}],"name":"setProposalThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_votingQuorum","type":"uint256"}],"name":"setVotingQuorum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"votingQuorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526203f48060045562127500600555662386f26fc1000060065565b5e620f480006007553480156200003457600080fd5b5060405162002e3038038062002e30833981016040819052620000579162000091565b6001600160a01b0381166200006b57600080fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055620000c1565b600060208284031215620000a3578081fd5b81516001600160a01b0381168114620000ba578182fd5b9392505050565b612d5f80620000d16000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80638a98b12d116100f9578063c7acd53111610097578063d9a8faf811610071578063d9a8faf814610381578063db67c4d514610394578063e4ea33ef146103a7578063ece40cc1146103ba576101c4565b8063c7acd53114610353578063c99d3a0614610366578063d47e470d14610379576101c4565b8063b58131b0116100d3578063b58131b014610312578063b6784e3c1461031a578063b7b9a9d81461032d578063c12d47fc14610340576101c4565b80638a98b12d146102d957806397e30553146102ec57806399969dd1146102ff576101c4565b80635a35f8341161016657806374636d161161014057806374636d16146102985780637df10f23146102ab5780638635447a146102be5780638a70473b146102c6576101c4565b80635a35f8341461026a5780635ab691ab146102725780635dd697dc14610285576101c4565b80631ac5596b116101a25780631ac5596b146102115780631accc06a146102245780633805b020146102375780634a6e0dd01461024a576101c4565b80630dbe671f146101c95780630e31f6c2146101e757806312b5ea3a146101fc575b600080fd5b6101d16103cd565b6040516101de9190612bb7565b60405180910390f35b6101ef6103dc565b6040516101de9190612cd8565b61020f61020a366004612b9f565b6103e2565b005b61020f61021f366004612ac3565b610600565b61020f610232366004612ac3565b61085c565b61020f610245366004612ac3565b610aa0565b61025d610258366004612b9f565b610ce4565b6040516101de9190612c7b565b6101ef610d84565b61020f610280366004612b9f565b610d8a565b6101ef610293366004612aa0565b610fb3565b61020f6102a6366004612ac3565b610fde565b6101ef6102b9366004612aa0565b611256565b6101ef611281565b6101ef6102d4366004612aa0565b611287565b6101ef6102e7366004612aa0565b6112b2565b6101ef6102fa366004612aa0565b6112dd565b61020f61030d366004612ac3565b611308565b6101ef61169d565b61020f610328366004612ac3565b6116a3565b61020f61033b366004612b9f565b6118e7565b61020f61034e366004612ac3565b611afc565b61020f610361366004612aee565b611d74565b61020f610374366004612aa0565b6123ea565b6101ef612738565b6101ef61038f366004612aa0565b61273e565b6101ef6103a2366004612aa0565b612768565b6101ef6103b5366004612aa0565b61277a565b61020f6103c8366004612b9f565b6127a5565b6000546001600160a01b031681565b60055481565b60008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b15801561042e57600080fd5b505afa158015610442573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104669190612b83565b6001600160a01b03166391d1485460008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b1580156104c057600080fd5b505afa1580156104d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f89190612b83565b6001600160a01b031663ec87621c6040518163ffffffff1660e01b815260040160206040518083038186803b15801561053057600080fd5b505afa158015610544573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105689190612b6b565b336040518363ffffffff1660e01b8152600401610586929190612bcb565b60206040518083038186803b15801561059e57600080fd5b505afa1580156105b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d69190612b4b565b6105fb5760405162461bcd60e51b81526004016105f290612c44565b60405180910390fd5b600555565b60008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b15801561064c57600080fd5b505afa158015610660573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106849190612b83565b6001600160a01b03166391d1485460008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b1580156106de57600080fd5b505afa1580156106f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107169190612b83565b6001600160a01b031663ec87621c6040518163ffffffff1660e01b815260040160206040518083038186803b15801561074e57600080fd5b505afa158015610762573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107869190612b6b565b336040518363ffffffff1660e01b81526004016107a4929190612bcb565b60206040518083038186803b1580156107bc57600080fd5b505afa1580156107d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f49190612b4b565b6108105760405162461bcd60e51b81526004016105f290612c44565b670de0b6b3a7640000811061082457600080fd5b6001600160a01b038216600090815260026020908152604080832054835260019091529020600701819055610858826129ce565b5050565b60008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b1580156108a857600080fd5b505afa1580156108bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e09190612b83565b6001600160a01b03166391d1485460008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b15801561093a57600080fd5b505afa15801561094e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109729190612b83565b6001600160a01b031663ec87621c6040518163ffffffff1660e01b815260040160206040518083038186803b1580156109aa57600080fd5b505afa1580156109be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e29190612b6b565b336040518363ffffffff1660e01b8152600401610a00929190612bcb565b60206040518083038186803b158015610a1857600080fd5b505afa158015610a2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a509190612b4b565b610a6c5760405162461bcd60e51b81526004016105f290612c44565b6001600160a01b038216600090815260026020908152604080832054835260019182905290912001819055610858826129ce565b60008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b158015610aec57600080fd5b505afa158015610b00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b249190612b83565b6001600160a01b03166391d1485460008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b158015610b7e57600080fd5b505afa158015610b92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb69190612b83565b6001600160a01b031663ec87621c6040518163ffffffff1660e01b815260040160206040518083038186803b158015610bee57600080fd5b505afa158015610c02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c269190612b6b565b336040518363ffffffff1660e01b8152600401610c44929190612bcb565b60206040518083038186803b158015610c5c57600080fd5b505afa158015610c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c949190612b4b565b610cb05760405162461bcd60e51b81526004016105f290612c44565b6001600160a01b038216600090815260026020908152604080832054835260019091529020600601819055610858826129ce565b610cec612a52565b600354821115610d0e5760405162461bcd60e51b81526004016105f290612c19565b5060009081526001602081815260409283902083516101008101855281546001600160a01b0316815292810154918301919091526002810154928201929092526003820154606082015260048201546080820152600582015460a0820152600682015460c082015260079091015460e082015290565b60065481565b60008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b158015610dd657600080fd5b505afa158015610dea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0e9190612b83565b6001600160a01b03166391d1485460008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b158015610e6857600080fd5b505afa158015610e7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea09190612b83565b6001600160a01b031663ec87621c6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ed857600080fd5b505afa158015610eec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f109190612b6b565b336040518363ffffffff1660e01b8152600401610f2e929190612bcb565b60206040518083038186803b158015610f4657600080fd5b505afa158015610f5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7e9190612b4b565b610f9a5760405162461bcd60e51b81526004016105f290612c44565b670de0b6b3a76400008110610fae57600080fd5b600655565b6001600160a01b03166000908152600260209081526040808320548352600190915290206005015490565b60008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b15801561102a57600080fd5b505afa15801561103e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110629190612b83565b6001600160a01b03166391d1485460008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b1580156110bc57600080fd5b505afa1580156110d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f49190612b83565b6001600160a01b031663ec87621c6040518163ffffffff1660e01b815260040160206040518083038186803b15801561112c57600080fd5b505afa158015611140573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111649190612b6b565b336040518363ffffffff1660e01b8152600401611182929190612bcb565b60206040518083038186803b15801561119a57600080fd5b505afa1580156111ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d29190612b4b565b6111ee5760405162461bcd60e51b81526004016105f290612c44565b6001600160a01b0382166000908152600260209081526040808320548352600190915290206003015481111561122357600080fd5b6001600160a01b0382166000908152600260208181526040808420548452600190915290912001819055610858826129ce565b6001600160a01b03166000908152600260209081526040808320548352600190915290206007015490565b60045481565b6001600160a01b03166000908152600260209081526040808320548352600190915290206003015490565b6001600160a01b03166000908152600260209081526040808320548352600191829052909120015490565b6001600160a01b03166000908152600260209081526040808320548352600190915290206006015490565b60008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b15801561135457600080fd5b505afa158015611368573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138c9190612b83565b6001600160a01b03166391d1485460008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b1580156113e657600080fd5b505afa1580156113fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141e9190612b83565b6001600160a01b031663ec87621c6040518163ffffffff1660e01b815260040160206040518083038186803b15801561145657600080fd5b505afa15801561146a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148e9190612b6b565b336040518363ffffffff1660e01b81526004016114ac929190612bcb565b60206040518083038186803b1580156114c457600080fd5b505afa1580156114d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fc9190612b4b565b6115185760405162461bcd60e51b81526004016105f290612c44565b60008054906101000a90046001600160a01b03166001600160a01b031663f2f4eb266040518163ffffffff1660e01b815260040160206040518083038186803b15801561156457600080fd5b505afa158015611578573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159c9190612b83565b6001600160a01b031663c19d93fb6040518163ffffffff1660e01b815260040160206040518083038186803b1580156115d457600080fd5b505afa1580156115e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160c9190612b83565b6001600160a01b031663fe042ceb836040518263ffffffff1660e01b81526004016116379190612bb7565b600060405180830381600087803b15801561165157600080fd5b505af1158015611665573d6000803e3d6000fd5b5050506001600160a01b03831660009081526002602090815260408083205483526001909152902060040182905550610858826129ce565b60075481565b60008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b1580156116ef57600080fd5b505afa158015611703573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117279190612b83565b6001600160a01b03166391d1485460008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b15801561178157600080fd5b505afa158015611795573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b99190612b83565b6001600160a01b031663ec87621c6040518163ffffffff1660e01b815260040160206040518083038186803b1580156117f157600080fd5b505afa158015611805573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118299190612b6b565b336040518363ffffffff1660e01b8152600401611847929190612bcb565b60206040518083038186803b15801561185f57600080fd5b505afa158015611873573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118979190612b4b565b6118b35760405162461bcd60e51b81526004016105f290612c44565b6001600160a01b038216600090815260026020908152604080832054835260019091529020600501819055610858826129ce565b60008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b15801561193357600080fd5b505afa158015611947573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196b9190612b83565b6001600160a01b03166391d1485460008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b1580156119c557600080fd5b505afa1580156119d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119fd9190612b83565b6001600160a01b031663ec87621c6040518163ffffffff1660e01b815260040160206040518083038186803b158015611a3557600080fd5b505afa158015611a49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a6d9190612b6b565b336040518363ffffffff1660e01b8152600401611a8b929190612bcb565b60206040518083038186803b158015611aa357600080fd5b505afa158015611ab7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611adb9190612b4b565b611af75760405162461bcd60e51b81526004016105f290612c44565b600455565b60008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b158015611b4857600080fd5b505afa158015611b5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b809190612b83565b6001600160a01b03166391d1485460008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b158015611bda57600080fd5b505afa158015611bee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c129190612b83565b6001600160a01b031663ec87621c6040518163ffffffff1660e01b815260040160206040518083038186803b158015611c4a57600080fd5b505afa158015611c5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c829190612b6b565b336040518363ffffffff1660e01b8152600401611ca0929190612bcb565b60206040518083038186803b158015611cb857600080fd5b505afa158015611ccc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf09190612b4b565b611d0c5760405162461bcd60e51b81526004016105f290612c44565b6001600160a01b038216600090815260026020818152604080842054845260019091529091200154811015611d4057600080fd5b6001600160a01b038216600090815260026020908152604080832054835260019091529020600301819055610858826129ce565b60008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b158015611dc057600080fd5b505afa158015611dd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df89190612b83565b6001600160a01b03166391d1485460008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b158015611e5257600080fd5b505afa158015611e66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8a9190612b83565b6001600160a01b031663ec87621c6040518163ffffffff1660e01b815260040160206040518083038186803b158015611ec257600080fd5b505afa158015611ed6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611efa9190612b6b565b336040518363ffffffff1660e01b8152600401611f18929190612bcb565b60206040518083038186803b158015611f3057600080fd5b505afa158015611f44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f689190612b4b565b611f845760405162461bcd60e51b81526004016105f290612c44565b6001600160a01b038816611f9757600080fd5b85851015611fa457600080fd5b6001600160a01b0388166000908152600260205260409020546121dc5760008054906101000a90046001600160a01b03166001600160a01b031663f2f4eb266040518163ffffffff1660e01b815260040160206040518083038186803b15801561200d57600080fd5b505afa158015612021573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120459190612b83565b6001600160a01b031663c19d93fb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561207d57600080fd5b505afa158015612091573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120b59190612b83565b6001600160a01b03166376b8de6a896040518263ffffffff1660e01b81526004016120e09190612bb7565b600060405180830381600087803b1580156120fa57600080fd5b505af115801561210e573d6000803e3d6000fd5b5050505061211a612a52565b5060408051610100810182526001600160a01b038a811680835260208084018c81528486018c8152606086018c8152608087018c815260a088018c815260c089018c815260e08a018c81526003805460019081018083556000908152818b528e81209d518e546001600160a01b0319169d169c909c178d559751978c019790975594516002808c019190915593518a870155915160048a0155516005890155516006880155905160079096019590955554918352929092529190912055612393565b60008054906101000a90046001600160a01b03166001600160a01b031663f2f4eb266040518163ffffffff1660e01b815260040160206040518083038186803b15801561222857600080fd5b505afa15801561223c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122609190612b83565b6001600160a01b031663c19d93fb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561229857600080fd5b505afa1580156122ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122d09190612b83565b6001600160a01b031663fe042ceb896040518263ffffffff1660e01b81526004016122fb9190612bb7565b600060405180830381600087803b15801561231557600080fd5b505af1158015612329573d6000803e3d6000fd5b5050506001600160a01b038916600081815260026020818152604080842054845260019182905290922080546001600160a01b03191690931783559082018a9055810188905560038101879055600481018690556005810185905560068101849055600701829055505b876001600160a01b03167f33c1196e1ba4d051d9795508a8e5dede080b427bf688c0c6c04ae562b6852eb3888888888888886040516123d89796959493929190612ce1565b60405180910390a25050505050505050565b60008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b15801561243657600080fd5b505afa15801561244a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061246e9190612b83565b6001600160a01b03166391d1485460008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b1580156124c857600080fd5b505afa1580156124dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125009190612b83565b6001600160a01b031663ec87621c6040518163ffffffff1660e01b815260040160206040518083038186803b15801561253857600080fd5b505afa15801561254c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125709190612b6b565b336040518363ffffffff1660e01b815260040161258e929190612bcb565b60206040518083038186803b1580156125a657600080fd5b505afa1580156125ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125de9190612b4b565b6125fa5760405162461bcd60e51b81526004016105f290612c44565b6001600160a01b038116600090815260026020526040902054806126305760405162461bcd60e51b81526004016105f290612be2565b600380546000908152600160208181526040808420868552818520815481546001600160a01b03199081166001600160a01b0392831617808455848801548489015560028086015481860155858b0154858c0155600480870154818701556005808801548188015560068089015481890155600798890154978901979097559285168b52818952878b208d90558b548b52898952878b20805490941684559883018a90558281018a9055828b018a90559782018990558101889055918201879055910185905587168085529290915280832083905583546000190190935591517fd89d2ee68ab04dca0193f48a4aff55e20fa5ec0429a8a8c1c51b8dad6178a5939190a25050565b60035481565b6001600160a01b031660009081526002602081815260408084205484526001909152909120015490565b60026020526000908152604090205481565b6001600160a01b03166000908152600260209081526040808320548352600190915290206004015490565b60008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b1580156127f157600080fd5b505afa158015612805573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128299190612b83565b6001600160a01b03166391d1485460008054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b15801561288357600080fd5b505afa158015612897573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128bb9190612b83565b6001600160a01b031663ec87621c6040518163ffffffff1660e01b815260040160206040518083038186803b1580156128f357600080fd5b505afa158015612907573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061292b9190612b6b565b336040518363ffffffff1660e01b8152600401612949929190612bcb565b60206040518083038186803b15801561296157600080fd5b505afa158015612975573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129999190612b4b565b6129b55760405162461bcd60e51b81526004016105f290612c44565b670de0b6b3a764000081106129c957600080fd5b600755565b6001600160a01b0381166000818152600260208181526040808420548452600191829052928390209081015491810154600382015460048301546005840154600685015460079095015496517f33c1196e1ba4d051d9795508a8e5dede080b427bf688c0c6c04ae562b6852eb397612a47979691612ce1565b60405180910390a250565b60405180610100016040528060006001600160a01b03168152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b600060208284031215612ab1578081fd5b8135612abc81612d11565b9392505050565b60008060408385031215612ad5578081fd5b8235612ae081612d11565b946020939093013593505050565b600080600080600080600080610100898b031215612b0a578384fd5b8835612b1581612d11565b9a60208a01359a5060408a013599606081013599506080810135985060a0810135975060c0810135965060e00135945092505050565b600060208284031215612b5c578081fd5b81518015158114612abc578182fd5b600060208284031215612b7c578081fd5b5051919050565b600060208284031215612b94578081fd5b8151612abc81612d11565b600060208284031215612bb0578081fd5b5035919050565b6001600160a01b0391909116815260200190565b9182526001600160a01b0316602082015260400190565b60208082526019908201527f636f6c6c61746572616c20646f6573206e6f7420657869737400000000000000604082015260600190565b602080825260119082015270125b9d985b1a590818dbdb999a59c81a59607a1b604082015260600190565b60208082526017908201527f43616c6c6572206973206e6f742061204d616e61676572000000000000000000604082015260600190565b81516001600160a01b031681526020808301519082015260408083015190820152606080830151908201526080808301519082015260a0828101519082015260c0808301519082015260e091820151918101919091526101000190565b90815260200190565b968752602087019590955260408601939093526060850191909152608084015260a083015260c082015260e00190565b6001600160a01b0381168114612d2657600080fd5b5056fea26469706673582212205b23cfd6180f17fb241a33e94a5787874406ac81be5539bb694fb72d1dd40d2d64736f6c634300060c0033000000000000000000000000bfb44b5839168471b14ddc770ed2318740d93852
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000bfb44b5839168471b14ddc770ed2318740d93852
-----Decoded View---------------
Arg [0] : _addresses (address): 0xbfb44b5839168471b14ddc770ed2318740d93852
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000bfb44b5839168471b14ddc770ed2318740d93852
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.