Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ReferralRegister
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; import "../interfaces/IHelixToken.sol"; import "../interfaces/IFeeMinter.sol"; import "../fees/FeeCollector.sol"; import "../libraries/Percent.sol"; import "../timelock/OwnableTimelockUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/structs/EnumerableSetUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol"; /// Users (referrers) refer other users (referred) and referrers earn rewards when /// referred users perform stakes or swaps contract ReferralRegister is FeeCollector, Initializable, OwnableUpgradeable, PausableUpgradeable, ReentrancyGuardUpgradeable, OwnableTimelockUpgradeable { using SafeERC20Upgradeable for IERC20Upgradeable; using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet; IFeeMinter public feeMinter; /// Token distributed as referrer rewards address public helixToken; /// Reward percent for staker referrers uint256 public stakeRewardPercent; /// Reward percent for swap referrers uint256 public swapRewardPercent; /// Last block that reward tokens were minted uint256 public lastMintBlock; /// Accounts approved by the contract owner which can call the "record" functions EnumerableSetUpgradeable.AddressSet private _recorders; /// Referral fees are stored as: referred address => referrer address mapping(address => address) public referrers; /// referrer address => referred addresses mapping(address => address[]) public referees; /// Rewards balance of each referrer. mapping(address => uint256) public rewards; // Emitted when a referrer earns a reward because referred made a stake transaction event RewardStake( address indexed referrer, address indexed referred, uint256 indexed reward, uint256 stakeAmount ); // Emitted when a referrer earns a reward because referred made a swap transaction event RewardSwap( address indexed referrer, address indexed referred, uint256 indexed reward, uint256 swapAmount ); // Emitted when the stakeRewardPercent is set event SetStakeRewardPercent(address indexed setter, uint256 stakeRewardPercent); // Emitted when the swapRewardPercent is set event SetSwapRewardPercent(address indexed setter, uint256 stakeRewardPercent); // Emitted when a referred adds a referrer event AddReferrer(address referred, address referrer); // Emitted when a referred removes their referrer event ReferrerRemoved(address referred); // Emitted when a new feeMinter is set event SetFeeMinter(address indexed setter, address indexed feeMinter); // Emitted when a referrer withdraws their earned referral rewards event Withdraw( address indexed referrer, uint256 indexed referrerReward, uint256 indexed collectorFee, uint256 rewardBalance ); // Emitted when the contract is updated and new tokens are minted event Update(uint256 minted); // Emitted when the lastMintBlock is manually set event SetLastRewardBlock(address indexed setter, uint256 lastMintBlock); modifier onlyValidAddress(address _address) { require(_address != address(0), "ReferralRegister: zero address"); _; } modifier onlyRecorder() { require(isRecorder(msg.sender), "ReferralRegister: not a recorder"); _; } function initialize( address _helixToken, address _feeHandler, address _feeMinter, uint256 _stakeRewardPercent, uint256 _swapRewardPercent, uint256 _lastMintBlock, uint256 _collectorPercent ) external initializer { __Ownable_init(); __OwnableTimelock_init(); __ReentrancyGuard_init(); feeMinter = IFeeMinter(_feeMinter); _setFeeHandler(_feeHandler); _setCollectorPercentAndDecimals(_collectorPercent, 2); // Default to 2 decimals of precision helixToken = _helixToken; stakeRewardPercent = _stakeRewardPercent; swapRewardPercent = _swapRewardPercent; lastMintBlock = _lastMintBlock != 0 ? _lastMintBlock : block.number; } /// Reward _referred's referrer when _referred _stakeAmount function rewardStake(address _referred, uint256 _stakeAmount) external onlyRecorder onlyValidAddress(_referred) { address referrer = referrers[_referred]; uint256 reward = _reward(referrer, _stakeAmount, stakeRewardPercent); emit RewardStake(referrer, _referred, reward, _stakeAmount); } /// Reward _referred's referrer when _referred _swapAmount function rewardSwap(address _referred, uint256 _swapAmount) external onlyRecorder onlyValidAddress(_referred) { address referrer = referrers[_referred]; uint256 reward = _reward(referrer, _swapAmount, swapRewardPercent); emit RewardSwap(referrer, _referred, reward, _swapAmount); } /// Called by a referrer to withdraw their accrued rewards function withdraw() external whenNotPaused nonReentrant { uint256 reward = rewards[msg.sender]; require(reward > 0, "ReferralRegister: nothing to withdraw"); _update(); uint256 contractBalance = IERC20Upgradeable(helixToken).balanceOf(address(this)); require(contractBalance > 0, "ReferralRegister: no helix in contract"); // Prevent withdrawing more than the contract balance reward = reward < contractBalance ? reward : contractBalance; // Update the referrer's reward balance rewards[msg.sender] -= reward; // Split the reward and extract the collector fee (uint256 collectorFee, uint256 referrerReward) = getCollectorFeeSplit(reward); if (referrerReward > 0) { IERC20Upgradeable(helixToken).safeTransfer(msg.sender, referrerReward); } if (collectorFee > 0) { _delegateTransfer(IERC20(helixToken), address(this), collectorFee); } emit Withdraw(msg.sender, referrerReward, collectorFee, rewards[msg.sender]); } /// Called by the owner to set the percent earned by referrers on stake transactions function setStakeRewardPercent(uint256 _stakeRewardPercent) external onlyTimelock { stakeRewardPercent = _stakeRewardPercent; emit SetStakeRewardPercent(msg.sender, _stakeRewardPercent); } /// Called by the owner to set the percent earned by referrers on swap transactions function setSwapRewardPercent(uint256 _swapRewardPercent) external onlyTimelock { swapRewardPercent = _swapRewardPercent; emit SetSwapRewardPercent(msg.sender, _swapRewardPercent); } /// Return the assigned toMintPerBlock rate function getToMintPerBlock() external view returns (uint256) { return _getToMintPerBlock(); } /// Set the caller's (referred's) referrer function addReferrer(address _referrer) external { require(referrers[msg.sender] == address(0), "ReferralRegister: referrer already set"); require(msg.sender != _referrer, "ReferralRegister: no self referral"); referrers[msg.sender] = _referrer; referees[_referrer].push(msg.sender); emit AddReferrer(msg.sender, _referrer); } function getReferees(address _referrer) view external returns (address[] memory) { return referees[_referrer]; } /// Remove the caller's referrer function removeReferrer() external { referrers[msg.sender] = address(0); emit ReferrerRemoved(msg.sender); } /// Mint new reward tokens to the contract according to the mint rate function update() external nonReentrant { _update(); } // Mint new helix tokens to the contract according to the mint rate function _update() private { if (block.number <= lastMintBlock) { return; } uint256 toMint = (block.number - lastMintBlock) * _getToMintPerBlock(); lastMintBlock = block.number; IHelixToken(helixToken).mint(address(this), toMint); emit Update(toMint); } /// Called by the owner to register a new recorder function addRecorder(address _recorder) external onlyOwner onlyValidAddress(_recorder) returns (bool) { return EnumerableSetUpgradeable.add(_recorders, _recorder); } /// Called by the owner to remove a recorder function removeRecorder(address _recorder) external onlyOwner onlyValidAddress(_recorder) returns (bool) { return EnumerableSetUpgradeable.remove(_recorders, _recorder); } /// Called by the owner to set the _lastMintBlock function setLastRewardBlock(uint256 _lastMintBlock) external onlyOwner { lastMintBlock = _lastMintBlock; emit SetLastRewardBlock(msg.sender, _lastMintBlock); } /// Called by owner to pause contract function pause() external onlyOwner { _pause(); } /// Called by owner to unpause contract function unpause() external onlyOwner { _unpause(); } /// Called by owner to set feeHandler address function setFeeHandler(address _feeHandler) external onlyTimelock { _setFeeHandler(_feeHandler); } /// Called by owner to set _feeMinter address function setFeeMinter(address _feeMinter) external onlyTimelock { feeMinter = IFeeMinter(_feeMinter); emit SetFeeMinter(msg.sender, _feeMinter); } /// Called by the owner to set the percent charged on withdrawals function setCollectorPercentAndDecimals(uint256 _collectorPercent, uint256 _decimals) external onlyTimelock { _setCollectorPercentAndDecimals(_collectorPercent, _decimals); } /// Return the address of the recorder at _index function getRecorder(uint256 _index) external view returns (address) { require(_index <= getRecorderLength() - 1, "ReferralRegister: index out of bounds"); return EnumerableSetUpgradeable.at(_recorders, _index); } /// Return number of recorders. function getRecorderLength() public view returns (uint256) { return EnumerableSetUpgradeable.length(_recorders); } /// Return true if _address is a recorder and false otherwise function isRecorder(address _address) public view returns (bool) { return EnumerableSetUpgradeable.contains(_recorders, _address); } // Return the toMintPerBlock rate of this contract function _getToMintPerBlock() private view returns (uint256) { require(address(feeMinter) != address(0), "ReferralRegister: fee minter is unassigned"); return feeMinter.getToMintPerBlock(address(this)); } // Reward _referred's referrer based on transaction _amount and _rate function _reward(address _referrer, uint256 _amount, uint256 _rate) private returns (uint256 reward) { reward = Percent.getPercentage(_amount, _rate); rewards[_referrer] += reward; } }
// SPDX-License-Identifier: MIT pragma solidity >= 0.8.0; interface IHelixToken { function mint(address to, uint256 amount) external returns(bool); function transfer(address recipient, uint256 amount) external returns(bool); function balanceOf(address account) external view returns (uint256); }
// SPDX-License-Identifer: MIT pragma solidity >=0.8.0; interface IFeeMinter { function totalToMintPerBlock() external view returns (uint256); function minters(uint256 index) external view returns (address); function setTotalToMintPerBlock(uint256 _totalToMintPerBlock) external; function setToMintPercents(address[] calldata _minters, uint256[] calldata _toMintPercents) external; function getToMintPerBlock(address _minter) external view returns (uint256); function getMinters() external view returns (address[] memory); function getToMintPercent(address _minter) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; import "../libraries/Percent.sol"; import "../interfaces/IFeeHandler.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; abstract contract FeeCollector { /// Handler that this collector transfers fees to IFeeHandler public feeHandler; /// Determines the fee percent taken by this collector uint256 public collectorPercent; /// Number of decimals of precision uint256 public decimals; // Emitted when a new _feeHandler address is set by the owner event SetFeeHandler(address indexed setter, address feeHandler); // Emitted when a new collector percent is set by the owner event SetCollectorPercentAndDecimals( address indexed setter, uint256 collectorPercent, uint256 decimals ); /// Return true if the feeHandler address is set and false otherwise function isFeeHandlerSet() public view returns (bool) { return address(feeHandler) != address(0); } /// Return the collector fee computed from the _amount and the collectorPercent function getCollectorFee(uint256 _amount) public view returns (uint256 collectorFee) { collectorFee = Percent.getPercentage(_amount, collectorPercent, decimals); } /// Split _amount based on collectorPercent and return the collectorFee and the remainder /// where remainder == _amount - collectorFee function getCollectorFeeSplit(uint256 _amount) public view returns (uint256 collectorFee, uint256 remainder) { (collectorFee, remainder) = Percent.splitByPercent(_amount, collectorPercent, decimals); } // Delegate feeHandler to transfer _fee amount of _token from _from function _delegateTransfer(IERC20 _token, address _from, uint256 _fee) internal virtual { require(address(feeHandler) != address(0), "FeeCollector: handler not set"); if (_fee > 0) { _token.approve(address(feeHandler), _fee); feeHandler.transferFee(_token, _from, msg.sender, _fee); } } /// Called by the owner to set a new _feeHandler address function _setFeeHandler(address _feeHandler) internal virtual { require(_feeHandler != address(0), "FeeCollector: zero address"); feeHandler = IFeeHandler(_feeHandler); emit SetFeeHandler(msg.sender, address(_feeHandler)); } // Called by the owner to set the _collectorPercent and the number of _decimals of precision // used when calculating percents collected from transactions function _setCollectorPercentAndDecimals(uint256 _collectorPercent, uint256 _decimals) internal virtual { require( Percent.isValidPercent(_collectorPercent, _decimals), "FeeCollector: percent exceeds max" ); collectorPercent = _collectorPercent; decimals = _decimals; emit SetCollectorPercentAndDecimals(msg.sender, _collectorPercent, decimals); } }
// SPDX-License-Identifier: MIT pragma solidity >= 0.8.0; library Percent { uint256 public constant MAX_PERCENT = 100; modifier onlyValidPercent(uint256 _percent, uint256 _decimals) { require(_isValidPercent(_percent, _decimals), "Percent: invalid percent"); _; } // Return true if the _percent is valid and false otherwise function isValidPercent(uint256 _percent) internal pure returns (bool) { return _isValidPercent(_percent, 0); } // Return true if the _percent with _decimals many decimals is valid and false otherwise function isValidPercent(uint256 _percent, uint256 _decimals) internal pure returns (bool) { return _isValidPercent(_percent, _decimals); } // Return true if the _percent with _decimals many decimals is valid and false otherwise function _isValidPercent(uint256 _percent, uint256 _decimals) private pure returns (bool) { return _percent <= MAX_PERCENT * 10 ** _decimals; } // Return _percent of _amount function getPercentage(uint256 _amount, uint256 _percent) internal pure returns (uint256 percentage) { percentage = _getPercentage(_amount, _percent, 0); } // Return _percent of _amount with _decimals many decimals function getPercentage(uint256 _amount, uint256 _percent, uint256 _decimals) internal pure returns (uint256 percentage) { percentage =_getPercentage(_amount, _percent, _decimals); } // Return _percent of _amount with _decimals many decimals function _getPercentage(uint256 _amount, uint256 _percent, uint256 _decimals) private pure onlyValidPercent(_percent, _decimals) returns (uint256 percentage) { percentage = _amount * _percent / (MAX_PERCENT * 10 ** _decimals); } // Return _percent of _amount as the percentage and the remainder of _amount - percentage function splitByPercent(uint256 _amount, uint256 _percent) internal pure returns (uint256 percentage, uint256 remainder) { (percentage, remainder) = _splitByPercent(_amount, _percent, 0); } // Return _percent of _amount as the percentage and the remainder of _amount - percentage // with _decimals many decimals function splitByPercent(uint256 _amount, uint256 _percent, uint256 _decimals) internal pure returns (uint256 percentage, uint256 remainder) { (percentage, remainder) = _splitByPercent(_amount, _percent, _decimals); } // Return _percent of _amount as the percentage and the remainder of _amount - percentage // with _decimals many decimals function _splitByPercent(uint256 _amount, uint256 _percent, uint256 _decimals) private pure onlyValidPercent(_percent, _decimals) returns (uint256 percentage, uint256 remainder) { percentage = _getPercentage(_amount, _percent, _decimals); remainder = _amount - percentage; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableTimelockUpgradeable is Initializable, ContextUpgradeable { error CallerIsNotTimelockOwner(); error ZeroTimelockAddress(); address private _timelockOwner; event TimelockOwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __OwnableTimelock_init() internal onlyInitializing { __OwnableTimelock_init_unchained(); } function __OwnableTimelock_init_unchained() internal onlyInitializing { _transferTimelockOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyTimelock() { _checkTimelockOwner(); _; } /** * @dev Returns the address of the current owner. */ function timelockOwner() public view virtual returns (address) { return _timelockOwner; } /** * @dev Throws if the sender is not the owner. */ function _checkTimelockOwner() internal view virtual { if (timelockOwner() != _msgSender()) revert CallerIsNotTimelockOwner(); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceTimelockOwnership() public virtual onlyTimelock { _transferTimelockOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferTimelockOwnership(address newOwner) public virtual onlyTimelock { if (newOwner == address(0)) revert ZeroTimelockAddress(); _transferTimelockOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferTimelockOwnership(address newOwner) internal virtual { address oldOwner = _timelockOwner; _timelockOwner = newOwner; emit TimelockOwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`. */ modifier initializer() { bool isTopLevelCall = _setInitializedVersion(1); if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original * initialization step. This is essential to configure modules that are added through upgrades and that require * initialization. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. */ modifier reinitializer(uint8 version) { bool isTopLevelCall = _setInitializedVersion(version); if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(version); } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. */ function _disableInitializers() internal virtual { _setInitializedVersion(type(uint8).max); } function _setInitializedVersion(uint8 version) private returns (bool) { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, and for the lowest level // of initializers, because in other contexts the contract may have been reentered. if (_initializing) { require( version == 1 && !AddressUpgradeable.isContract(address(this)), "Initializable: contract is already initialized" ); return false; } else { require(_initialized < version, "Initializable: contract is already initialized"); _initialized = version; return true; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuardUpgradeable is Initializable { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; function __ReentrancyGuard_init() internal onlyInitializing { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal onlyInitializing { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSetUpgradeable { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal onlyInitializing { __Pausable_init_unchained(); } function __Pausable_init_unchained() internal onlyInitializing { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20Upgradeable.sol"; import "../../../utils/AddressUpgradeable.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20Upgradeable { using AddressUpgradeable for address; function safeTransfer( IERC20Upgradeable token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20Upgradeable token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20Upgradeable token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20Upgradeable token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20Upgradeable token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IFeeHandler { function transferFee(IERC20 _token, address _from, address _rewardAccruer, uint256 _fee) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"name":"CallerIsNotTimelockOwner","type":"error"},{"inputs":[],"name":"ZeroTimelockAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"referred","type":"address"},{"indexed":false,"internalType":"address","name":"referrer","type":"address"}],"name":"AddReferrer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"referred","type":"address"}],"name":"ReferrerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"referrer","type":"address"},{"indexed":true,"internalType":"address","name":"referred","type":"address"},{"indexed":true,"internalType":"uint256","name":"reward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stakeAmount","type":"uint256"}],"name":"RewardStake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"referrer","type":"address"},{"indexed":true,"internalType":"address","name":"referred","type":"address"},{"indexed":true,"internalType":"uint256","name":"reward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapAmount","type":"uint256"}],"name":"RewardSwap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"setter","type":"address"},{"indexed":false,"internalType":"uint256","name":"collectorPercent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"decimals","type":"uint256"}],"name":"SetCollectorPercentAndDecimals","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"setter","type":"address"},{"indexed":false,"internalType":"address","name":"feeHandler","type":"address"}],"name":"SetFeeHandler","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"setter","type":"address"},{"indexed":true,"internalType":"address","name":"feeMinter","type":"address"}],"name":"SetFeeMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"setter","type":"address"},{"indexed":false,"internalType":"uint256","name":"lastMintBlock","type":"uint256"}],"name":"SetLastRewardBlock","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"setter","type":"address"},{"indexed":false,"internalType":"uint256","name":"stakeRewardPercent","type":"uint256"}],"name":"SetStakeRewardPercent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"setter","type":"address"},{"indexed":false,"internalType":"uint256","name":"stakeRewardPercent","type":"uint256"}],"name":"SetSwapRewardPercent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"TimelockOwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minted","type":"uint256"}],"name":"Update","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"referrer","type":"address"},{"indexed":true,"internalType":"uint256","name":"referrerReward","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"collectorFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rewardBalance","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address","name":"_recorder","type":"address"}],"name":"addRecorder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_referrer","type":"address"}],"name":"addReferrer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectorPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeHandler","outputs":[{"internalType":"contract IFeeHandler","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeMinter","outputs":[{"internalType":"contract IFeeMinter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"getCollectorFee","outputs":[{"internalType":"uint256","name":"collectorFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"getCollectorFeeSplit","outputs":[{"internalType":"uint256","name":"collectorFee","type":"uint256"},{"internalType":"uint256","name":"remainder","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getRecorder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRecorderLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_referrer","type":"address"}],"name":"getReferees","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getToMintPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"helixToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_helixToken","type":"address"},{"internalType":"address","name":"_feeHandler","type":"address"},{"internalType":"address","name":"_feeMinter","type":"address"},{"internalType":"uint256","name":"_stakeRewardPercent","type":"uint256"},{"internalType":"uint256","name":"_swapRewardPercent","type":"uint256"},{"internalType":"uint256","name":"_lastMintBlock","type":"uint256"},{"internalType":"uint256","name":"_collectorPercent","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isFeeHandlerSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isRecorder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastMintBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"referees","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"referrers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recorder","type":"address"}],"name":"removeRecorder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeReferrer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceTimelockOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_referred","type":"address"},{"internalType":"uint256","name":"_stakeAmount","type":"uint256"}],"name":"rewardStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_referred","type":"address"},{"internalType":"uint256","name":"_swapAmount","type":"uint256"}],"name":"rewardSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectorPercent","type":"uint256"},{"internalType":"uint256","name":"_decimals","type":"uint256"}],"name":"setCollectorPercentAndDecimals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeHandler","type":"address"}],"name":"setFeeHandler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeMinter","type":"address"}],"name":"setFeeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lastMintBlock","type":"uint256"}],"name":"setLastRewardBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stakeRewardPercent","type":"uint256"}],"name":"setStakeRewardPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapRewardPercent","type":"uint256"}],"name":"setSwapRewardPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakeRewardPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapRewardPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timelockOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferTimelockOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506124f6806100206000396000f3fe608060405234801561001057600080fd5b50600436106102695760003560e01c8063715018a611610151578063d3f99ba4116100c3578063f2fde38b11610087578063f2fde38b1461051a578063f685d7d81461052d578063f7509c4814610540578063f90f99a014610553578063fc5cdcf714610566578063fefa9bb11461056e57600080fd5b8063d3f99ba4146104c2578063d499bc85146104ca578063d4cb3a2b146104ea578063d6deaa04146104fd578063f283c4ba1461051057600080fd5b80639cf5c3f5116101155780639cf5c3f51461046d578063a2e6204514610477578063abcdc3df1461047f578063b374ec3c146104a7578063bdf8e9dd146104b0578063d0d44bcf146104ba57600080fd5b8063715018a614610426578063733140771461042e5780638456cb59146104415780638da5cb5b146104495780638f9771a61461045a57600080fd5b80634190599d116101ea5780635c975abb116101ae5780635c975abb146103bc57806360caee85146103c7578063646ce049146103da5780636c4f05c7146103ed5780636e35017c146104005780636ef311e51461041357600080fd5b80634190599d146103475780634a3b68cc146103665780635140da8a146103905780635730d5f2146103a15780635a76087c146103b457600080fd5b8063313ce56711610231578063313ce567146103085780633a69b206146103115780633c93adee146103245780633ccfd60b146103375780633f4ba83a1461033f57600080fd5b80630700037d1461026e578063189e259a146102a25780632326c67e146102cd578063299077b1146102e25780632b4656c8146102f5575b600080fd5b61028f61027c36600461202a565b6101076020526000908152604090205481565b6040519081526020015b60405180910390f35b60ff546102b5906001600160a01b031681565b6040516001600160a01b039091168152602001610299565b6102e06102db366004612045565b610581565b005b6102e06102f036600461202a565b610688565b6102e061030336600461206f565b6106dc565b61028f60025481565b6102e061031f366004612045565b6107cf565b6000546102b5906001600160a01b031681565b6102e06108c2565b6102e0610b7d565b6000546001600160a01b031615155b6040519015158152602001610299565b6102b561037436600461202a565b610105602052600090815260409020546001600160a01b031681565b60cc546001600160a01b03166102b5565b60fe546102b5906001600160a01b031681565b6102e0610bb1565b60685460ff16610356565b6102b56103d53660046120d7565b610c06565b6103566103e836600461202a565b610c8b565b6102e06103fb3660046120d7565b610c99565b61035661040e36600461202a565b610d02565b61028f6104213660046120d7565b610d69565b6102e0610d7a565b6102e061043c36600461202a565b610dae565b6102e0610dc2565b6036546001600160a01b03166102b5565b61035661046836600461202a565b610df4565b61028f6101025481565b6102e0610e54565b61049261048d3660046120d7565b610ebb565b60408051928352602083019190915201610299565b61028f60015481565b61028f6101005481565b61028f610ed7565b61028f610ee6565b6104dd6104d836600461202a565b610ef3565b60405161029991906120f0565b6102e06104f836600461213d565b610f6a565b6102e061050b3660046120d7565b610f80565b61028f6101015481565b6102e061052836600461202a565b610fc0565b6102e061053b3660046120d7565b611058565b6102b561054e366004612045565b611098565b6102e061056136600461202a565b6110d1565b6102e0611109565b6102e061057c36600461202a565b61111b565b61058a33610c8b565b6105db5760405162461bcd60e51b815260206004820181905260248201527f526566657272616c52656769737465723a206e6f742061207265636f7264657260448201526064015b60405180910390fd5b816001600160a01b0381166106025760405162461bcd60e51b81526004016105d29061215f565b6001600160a01b0380841660009081526101056020526040812054610101549216916106319083908690611287565b905080856001600160a01b0316836001600160a01b03167f0263ef4d02f03a1a4622cc004d2bc7a39f496b3b2352c33b4e63580207894ad58760405161067991815260200190565b60405180910390a45050505050565b6106906112ce565b60fe80546001600160a01b0319166001600160a01b03831690811790915560405133907f33c43cd46fdb0f53561c85b3e7c5b434818d46d4c6c62c7f0f657adc2f7e2cc490600090a350565b60006106e860016112f9565b90508015610700576003805461ff0019166101001790555b610708611388565b6107106113b7565b6107186113e6565b60fe80546001600160a01b0319166001600160a01b03881617905561073c87611415565b6107478260026114bb565b60ff80546001600160a01b0319166001600160a01b038a1617905561010085905561010184905582610779574361077b565b825b6101025580156107c5576003805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050505050565b6107d833610c8b565b6108245760405162461bcd60e51b815260206004820181905260248201527f526566657272616c52656769737465723a206e6f742061207265636f7264657260448201526064016105d2565b816001600160a01b03811661084b5760405162461bcd60e51b81526004016105d29061215f565b6001600160a01b03808416600090815261010560205260408120546101005492169161087a9083908690611287565b905080856001600160a01b0316836001600160a01b03167f9c69f4ded67643c60fb8d54e31071a188684edabf56c5eec9cc87d4cad0d64f78760405161067991815260200190565b60685460ff16156109085760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105d2565b6002609a54141561095b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105d2565b6002609a553360009081526101076020526040902054806109cc5760405162461bcd60e51b815260206004820152602560248201527f526566657272616c52656769737465723a206e6f7468696e6720746f20776974604482015264686472617760d81b60648201526084016105d2565b6109d4611564565b60ff546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610a1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a419190612196565b905060008111610aa25760405162461bcd60e51b815260206004820152602660248201527f526566657272616c52656769737465723a206e6f2068656c697820696e20636f6044820152651b9d1c9858dd60d21b60648201526084016105d2565b808210610aaf5780610ab1565b815b3360009081526101076020526040812080549294508492909190610ad69084906121c5565b909155506000905080610ae884610ebb565b90925090508015610b0a5760ff54610b0a906001600160a01b0316338361163e565b8115610b275760ff54610b27906001600160a01b03163084611695565b33600081815261010760209081526040918290205491519182528492849290917f02f25270a4d87bea75db541cdfe559334a275b4a233520ed6c0a2429667cca94910160405180910390a450506001609a555050565b6036546001600160a01b03163314610ba75760405162461bcd60e51b81526004016105d2906121dc565b610baf6117e4565b565b336000818152610105602090815260409182902080546001600160a01b031916905590519182527f68e673b5cfb652e620fba208d02d6b172a0dc242d4497d94a1f92bb5fa92bc3191015b60405180910390a1565b60006001610c12610ee6565b610c1c91906121c5565b821115610c795760405162461bcd60e51b815260206004820152602560248201527f526566657272616c52656769737465723a20696e646578206f7574206f6620626044820152646f756e647360d81b60648201526084016105d2565b610c8561010383611872565b92915050565b6000610c856101038361187e565b6036546001600160a01b03163314610cc35760405162461bcd60e51b81526004016105d2906121dc565b61010281905560405181815233907f7be2db6d2a2e7cc20bd61a8d8c342db294645221df20bb7752944d44275d9124906020015b60405180910390a250565b6036546000906001600160a01b03163314610d2f5760405162461bcd60e51b81526004016105d2906121dc565b816001600160a01b038116610d565760405162461bcd60e51b81526004016105d29061215f565b610d62610103846118a0565b9392505050565b6000610c85826001546002546118b5565b6036546001600160a01b03163314610da45760405162461bcd60e51b81526004016105d2906121dc565b610baf60006118ca565b610db66112ce565b610dbf81611415565b50565b6036546001600160a01b03163314610dec5760405162461bcd60e51b81526004016105d2906121dc565b610baf61191c565b6036546000906001600160a01b03163314610e215760405162461bcd60e51b81526004016105d2906121dc565b816001600160a01b038116610e485760405162461bcd60e51b81526004016105d29061215f565b610d6261010384611997565b6002609a541415610ea75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105d2565b6002609a55610eb4611564565b6001609a55565b600080610ecd836001546002546119ac565b9094909350915050565b6000610ee16119c6565b905090565b6000610ee1610103611aa0565b6001600160a01b03811660009081526101066020908152604091829020805483518184028101840190945280845260609392830182828015610f5e57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610f40575b50505050509050919050565b610f726112ce565b610f7c82826114bb565b5050565b610f886112ce565b61010081905560405181815233907fbfd0791614b437203e7fe71bcd9f6f7ff24969381a773e06b6eb260dffa4f0bd90602001610cf7565b6036546001600160a01b03163314610fea5760405162461bcd60e51b81526004016105d2906121dc565b6001600160a01b03811661104f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d2565b610dbf816118ca565b6110606112ce565b61010181905560405181815233907f398766cfd80d95377be89c2981c75ad72c3d8a919c75d3fdcc007f0588642bd090602001610cf7565b61010660205281600052604060002081815481106110b557600080fd5b6000918252602090912001546001600160a01b03169150829050565b6110d96112ce565b6001600160a01b03811661110057604051632103976160e01b815260040160405180910390fd5b610dbf81611aaa565b6111116112ce565b610baf6000611aaa565b33600090815261010560205260409020546001600160a01b0316156111915760405162461bcd60e51b815260206004820152602660248201527f526566657272616c52656769737465723a20726566657272657220616c726561604482015265191e481cd95d60d21b60648201526084016105d2565b336001600160a01b03821614156111f55760405162461bcd60e51b815260206004820152602260248201527f526566657272616c52656769737465723a206e6f2073656c6620726566657272604482015261185b60f21b60648201526084016105d2565b3360008181526101056020908152604080832080546001600160a01b0387166001600160a01b031991821681179092558185526101068452828520805460018101825590865294849020909401805490941685179093558051938452908301919091527fe9d1958840d703d1809a8f982d338495c4ba9921dd5d3edc0944b4cc303148f191015b60405180910390a150565b60006112938383611afc565b6001600160a01b038516600090815261010760205260408120805492935083929091906112c1908490612211565b9091555090949350505050565b60cc546001600160a01b03163314610baf5760405163504ec42f60e01b815260040160405180910390fd5b600354600090610100900460ff1615611342578160ff16600114801561131e5750303b155b61133a5760405162461bcd60e51b81526004016105d290612229565b506000919050565b60035460ff8084169116106113695760405162461bcd60e51b81526004016105d290612229565b506003805460ff191660ff92909216919091179055600190565b919050565b600354610100900460ff166113af5760405162461bcd60e51b81526004016105d290612277565b610baf611b0a565b600354610100900460ff166113de5760405162461bcd60e51b81526004016105d290612277565b610baf611b3a565b600354610100900460ff1661140d5760405162461bcd60e51b81526004016105d290612277565b610baf611b6a565b6001600160a01b03811661146b5760405162461bcd60e51b815260206004820152601a60248201527f466565436f6c6c6563746f723a207a65726f206164647265737300000000000060448201526064016105d2565b600080546001600160a01b0319166001600160a01b03831690811790915560405190815233907fc16e4472dd1cc8d03b2c695da06ba4b4ad682503571c403039300d6238e260e790602001610cf7565b6114c58282611b91565b61151b5760405162461bcd60e51b815260206004820152602160248201527f466565436f6c6c6563746f723a2070657263656e742065786365656473206d616044820152600f60fb1b60648201526084016105d2565b60018290556002819055604080518381526020810183905233917ff51e51a4ed6c4621bf8c5a8a3fc17dbff4113c7df8fcfcd6724ba45f01b4beb3910160405180910390a25050565b61010254431161157057565b600061157a6119c6565b6101025461158890436121c5565b61159291906122c2565b436101025560ff546040516340c10f1960e01b8152306004820152602481018390529192506001600160a01b0316906340c10f19906044016020604051808303816000875af11580156115e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160d91906122e1565b506040518181527f164f7b2ab803097dab5e39f06d2e4f3c3ddc5d4171abbdcc3e76443b8359c7f59060200161127c565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611690908490611b9d565b505050565b6000546001600160a01b03166116ed5760405162461bcd60e51b815260206004820152601d60248201527f466565436f6c6c6563746f723a2068616e646c6572206e6f742073657400000060448201526064016105d2565b80156116905760005460405163095ea7b360e01b81526001600160a01b039182166004820152602481018390529084169063095ea7b3906044016020604051808303816000875af1158015611746573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061176a91906122e1565b506000546040516326dda89760e21b81526001600160a01b03858116600483015284811660248301523360448301526064820184905290911690639b76a25c90608401600060405180830381600087803b1580156117c757600080fd5b505af11580156117db573d6000803e3d6000fd5b50505050505050565b60685460ff1661182d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105d2565b6068805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b039091168152602001610bfc565b6000610d628383611c6f565b6001600160a01b03811660009081526001830160205260408120541515610d62565b6000610d62836001600160a01b038416611c99565b60006118c2848484611ce8565b949350505050565b603680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60685460ff16156119625760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105d2565b6068805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861185a3390565b6000610d62836001600160a01b038416611d71565b6000806119ba858585611e64565b90969095509350505050565b60fe546000906001600160a01b0316611a345760405162461bcd60e51b815260206004820152602a60248201527f526566657272616c52656769737465723a20666565206d696e746572206973206044820152691d5b985cdcda59db995960b21b60648201526084016105d2565b60fe5460405163131a26fd60e31b81523060048201526001600160a01b03909116906398d137e890602401602060405180830381865afa158015611a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee19190612196565b6000610c85825490565b60cc80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f435020463df9072c26fe186a7008f9fb875f94dacb336a0ac30291513d656e8e90600090a35050565b6000610d6283836000611ce8565b600354610100900460ff16611b315760405162461bcd60e51b81526004016105d290612277565b610baf336118ca565b600354610100900460ff16611b615760405162461bcd60e51b81526004016105d290612277565b610baf33611aaa565b600354610100900460ff16610eb45760405162461bcd60e51b81526004016105d290612277565b6000610d628383611edd565b6000611bf2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611eff9092919063ffffffff16565b8051909150156116905780806020019051810190611c1091906122e1565b6116905760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016105d2565b6000826000018281548110611c8657611c86612303565b9060005260206000200154905092915050565b6000818152600183016020526040812054611ce057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c85565b506000610c85565b60008282611cf68282611edd565b611d3d5760405162461bcd60e51b815260206004820152601860248201527714195c98d95b9d0e881a5b9d985b1a59081c195c98d95b9d60421b60448201526064016105d2565b611d4884600a6123fd565b611d539060646122c2565b611d5d86886122c2565b611d679190612409565b9695505050505050565b60008181526001830160205260408120548015611e5a576000611d956001836121c5565b8554909150600090611da9906001906121c5565b9050818114611e0e576000866000018281548110611dc957611dc9612303565b9060005260206000200154905080876000018481548110611dec57611dec612303565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611e1f57611e1f61242b565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610c85565b6000915050610c85565b6000808383611e738282611edd565b611eba5760405162461bcd60e51b815260206004820152601860248201527714195c98d95b9d0e881a5b9d985b1a59081c195c98d95b9d60421b60448201526064016105d2565b611ec5878787611ce8565b9350611ed184886121c5565b92505050935093915050565b6000611eea82600a6123fd565b611ef59060646122c2565b9092111592915050565b60606118c28484600085856001600160a01b0385163b611f615760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016105d2565b600080866001600160a01b03168587604051611f7d9190612471565b60006040518083038185875af1925050503d8060008114611fba576040519150601f19603f3d011682016040523d82523d6000602084013e611fbf565b606091505b5091509150611fcf828286611fda565b979650505050505050565b60608315611fe9575081610d62565b825115611ff95782518084602001fd5b8160405162461bcd60e51b81526004016105d2919061248d565b80356001600160a01b038116811461138357600080fd5b60006020828403121561203c57600080fd5b610d6282612013565b6000806040838503121561205857600080fd5b61206183612013565b946020939093013593505050565b600080600080600080600060e0888a03121561208a57600080fd5b61209388612013565b96506120a160208901612013565b95506120af60408901612013565b969995985095966060810135965060808101359560a0820135955060c0909101359350915050565b6000602082840312156120e957600080fd5b5035919050565b6020808252825182820181905260009190848201906040850190845b818110156121315783516001600160a01b03168352928401929184019160010161210c565b50909695505050505050565b6000806040838503121561215057600080fd5b50508035926020909101359150565b6020808252601e908201527f526566657272616c52656769737465723a207a65726f20616464726573730000604082015260600190565b6000602082840312156121a857600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156121d7576121d76121af565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115612224576122246121af565b500190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60008160001904831182151516156122dc576122dc6121af565b500290565b6000602082840312156122f357600080fd5b81518015158114610d6257600080fd5b634e487b7160e01b600052603260045260246000fd5b600181815b8085111561235457816000190482111561233a5761233a6121af565b8085161561234757918102915b93841c939080029061231e565b509250929050565b60008261236b57506001610c85565b8161237857506000610c85565b816001811461238e5760028114612398576123b4565b6001915050610c85565b60ff8411156123a9576123a96121af565b50506001821b610c85565b5060208310610133831016604e8410600b84101617156123d7575081810a610c85565b6123e18383612319565b80600019048211156123f5576123f56121af565b029392505050565b6000610d62838361235c565b60008261242657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603160045260246000fd5b60005b8381101561245c578181015183820152602001612444565b8381111561246b576000848401525b50505050565b60008251612483818460208701612441565b9190910192915050565b60208152600082518060208401526124ac816040850160208701612441565b601f01601f1916919091016040019291505056fea264697066735822122063f104a36b52fc26b53307bc54425239b3dc61af2781b5bfece088c6fb43f6cd64736f6c634300080a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102695760003560e01c8063715018a611610151578063d3f99ba4116100c3578063f2fde38b11610087578063f2fde38b1461051a578063f685d7d81461052d578063f7509c4814610540578063f90f99a014610553578063fc5cdcf714610566578063fefa9bb11461056e57600080fd5b8063d3f99ba4146104c2578063d499bc85146104ca578063d4cb3a2b146104ea578063d6deaa04146104fd578063f283c4ba1461051057600080fd5b80639cf5c3f5116101155780639cf5c3f51461046d578063a2e6204514610477578063abcdc3df1461047f578063b374ec3c146104a7578063bdf8e9dd146104b0578063d0d44bcf146104ba57600080fd5b8063715018a614610426578063733140771461042e5780638456cb59146104415780638da5cb5b146104495780638f9771a61461045a57600080fd5b80634190599d116101ea5780635c975abb116101ae5780635c975abb146103bc57806360caee85146103c7578063646ce049146103da5780636c4f05c7146103ed5780636e35017c146104005780636ef311e51461041357600080fd5b80634190599d146103475780634a3b68cc146103665780635140da8a146103905780635730d5f2146103a15780635a76087c146103b457600080fd5b8063313ce56711610231578063313ce567146103085780633a69b206146103115780633c93adee146103245780633ccfd60b146103375780633f4ba83a1461033f57600080fd5b80630700037d1461026e578063189e259a146102a25780632326c67e146102cd578063299077b1146102e25780632b4656c8146102f5575b600080fd5b61028f61027c36600461202a565b6101076020526000908152604090205481565b6040519081526020015b60405180910390f35b60ff546102b5906001600160a01b031681565b6040516001600160a01b039091168152602001610299565b6102e06102db366004612045565b610581565b005b6102e06102f036600461202a565b610688565b6102e061030336600461206f565b6106dc565b61028f60025481565b6102e061031f366004612045565b6107cf565b6000546102b5906001600160a01b031681565b6102e06108c2565b6102e0610b7d565b6000546001600160a01b031615155b6040519015158152602001610299565b6102b561037436600461202a565b610105602052600090815260409020546001600160a01b031681565b60cc546001600160a01b03166102b5565b60fe546102b5906001600160a01b031681565b6102e0610bb1565b60685460ff16610356565b6102b56103d53660046120d7565b610c06565b6103566103e836600461202a565b610c8b565b6102e06103fb3660046120d7565b610c99565b61035661040e36600461202a565b610d02565b61028f6104213660046120d7565b610d69565b6102e0610d7a565b6102e061043c36600461202a565b610dae565b6102e0610dc2565b6036546001600160a01b03166102b5565b61035661046836600461202a565b610df4565b61028f6101025481565b6102e0610e54565b61049261048d3660046120d7565b610ebb565b60408051928352602083019190915201610299565b61028f60015481565b61028f6101005481565b61028f610ed7565b61028f610ee6565b6104dd6104d836600461202a565b610ef3565b60405161029991906120f0565b6102e06104f836600461213d565b610f6a565b6102e061050b3660046120d7565b610f80565b61028f6101015481565b6102e061052836600461202a565b610fc0565b6102e061053b3660046120d7565b611058565b6102b561054e366004612045565b611098565b6102e061056136600461202a565b6110d1565b6102e0611109565b6102e061057c36600461202a565b61111b565b61058a33610c8b565b6105db5760405162461bcd60e51b815260206004820181905260248201527f526566657272616c52656769737465723a206e6f742061207265636f7264657260448201526064015b60405180910390fd5b816001600160a01b0381166106025760405162461bcd60e51b81526004016105d29061215f565b6001600160a01b0380841660009081526101056020526040812054610101549216916106319083908690611287565b905080856001600160a01b0316836001600160a01b03167f0263ef4d02f03a1a4622cc004d2bc7a39f496b3b2352c33b4e63580207894ad58760405161067991815260200190565b60405180910390a45050505050565b6106906112ce565b60fe80546001600160a01b0319166001600160a01b03831690811790915560405133907f33c43cd46fdb0f53561c85b3e7c5b434818d46d4c6c62c7f0f657adc2f7e2cc490600090a350565b60006106e860016112f9565b90508015610700576003805461ff0019166101001790555b610708611388565b6107106113b7565b6107186113e6565b60fe80546001600160a01b0319166001600160a01b03881617905561073c87611415565b6107478260026114bb565b60ff80546001600160a01b0319166001600160a01b038a1617905561010085905561010184905582610779574361077b565b825b6101025580156107c5576003805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050505050565b6107d833610c8b565b6108245760405162461bcd60e51b815260206004820181905260248201527f526566657272616c52656769737465723a206e6f742061207265636f7264657260448201526064016105d2565b816001600160a01b03811661084b5760405162461bcd60e51b81526004016105d29061215f565b6001600160a01b03808416600090815261010560205260408120546101005492169161087a9083908690611287565b905080856001600160a01b0316836001600160a01b03167f9c69f4ded67643c60fb8d54e31071a188684edabf56c5eec9cc87d4cad0d64f78760405161067991815260200190565b60685460ff16156109085760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105d2565b6002609a54141561095b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105d2565b6002609a553360009081526101076020526040902054806109cc5760405162461bcd60e51b815260206004820152602560248201527f526566657272616c52656769737465723a206e6f7468696e6720746f20776974604482015264686472617760d81b60648201526084016105d2565b6109d4611564565b60ff546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610a1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a419190612196565b905060008111610aa25760405162461bcd60e51b815260206004820152602660248201527f526566657272616c52656769737465723a206e6f2068656c697820696e20636f6044820152651b9d1c9858dd60d21b60648201526084016105d2565b808210610aaf5780610ab1565b815b3360009081526101076020526040812080549294508492909190610ad69084906121c5565b909155506000905080610ae884610ebb565b90925090508015610b0a5760ff54610b0a906001600160a01b0316338361163e565b8115610b275760ff54610b27906001600160a01b03163084611695565b33600081815261010760209081526040918290205491519182528492849290917f02f25270a4d87bea75db541cdfe559334a275b4a233520ed6c0a2429667cca94910160405180910390a450506001609a555050565b6036546001600160a01b03163314610ba75760405162461bcd60e51b81526004016105d2906121dc565b610baf6117e4565b565b336000818152610105602090815260409182902080546001600160a01b031916905590519182527f68e673b5cfb652e620fba208d02d6b172a0dc242d4497d94a1f92bb5fa92bc3191015b60405180910390a1565b60006001610c12610ee6565b610c1c91906121c5565b821115610c795760405162461bcd60e51b815260206004820152602560248201527f526566657272616c52656769737465723a20696e646578206f7574206f6620626044820152646f756e647360d81b60648201526084016105d2565b610c8561010383611872565b92915050565b6000610c856101038361187e565b6036546001600160a01b03163314610cc35760405162461bcd60e51b81526004016105d2906121dc565b61010281905560405181815233907f7be2db6d2a2e7cc20bd61a8d8c342db294645221df20bb7752944d44275d9124906020015b60405180910390a250565b6036546000906001600160a01b03163314610d2f5760405162461bcd60e51b81526004016105d2906121dc565b816001600160a01b038116610d565760405162461bcd60e51b81526004016105d29061215f565b610d62610103846118a0565b9392505050565b6000610c85826001546002546118b5565b6036546001600160a01b03163314610da45760405162461bcd60e51b81526004016105d2906121dc565b610baf60006118ca565b610db66112ce565b610dbf81611415565b50565b6036546001600160a01b03163314610dec5760405162461bcd60e51b81526004016105d2906121dc565b610baf61191c565b6036546000906001600160a01b03163314610e215760405162461bcd60e51b81526004016105d2906121dc565b816001600160a01b038116610e485760405162461bcd60e51b81526004016105d29061215f565b610d6261010384611997565b6002609a541415610ea75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105d2565b6002609a55610eb4611564565b6001609a55565b600080610ecd836001546002546119ac565b9094909350915050565b6000610ee16119c6565b905090565b6000610ee1610103611aa0565b6001600160a01b03811660009081526101066020908152604091829020805483518184028101840190945280845260609392830182828015610f5e57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610f40575b50505050509050919050565b610f726112ce565b610f7c82826114bb565b5050565b610f886112ce565b61010081905560405181815233907fbfd0791614b437203e7fe71bcd9f6f7ff24969381a773e06b6eb260dffa4f0bd90602001610cf7565b6036546001600160a01b03163314610fea5760405162461bcd60e51b81526004016105d2906121dc565b6001600160a01b03811661104f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d2565b610dbf816118ca565b6110606112ce565b61010181905560405181815233907f398766cfd80d95377be89c2981c75ad72c3d8a919c75d3fdcc007f0588642bd090602001610cf7565b61010660205281600052604060002081815481106110b557600080fd5b6000918252602090912001546001600160a01b03169150829050565b6110d96112ce565b6001600160a01b03811661110057604051632103976160e01b815260040160405180910390fd5b610dbf81611aaa565b6111116112ce565b610baf6000611aaa565b33600090815261010560205260409020546001600160a01b0316156111915760405162461bcd60e51b815260206004820152602660248201527f526566657272616c52656769737465723a20726566657272657220616c726561604482015265191e481cd95d60d21b60648201526084016105d2565b336001600160a01b03821614156111f55760405162461bcd60e51b815260206004820152602260248201527f526566657272616c52656769737465723a206e6f2073656c6620726566657272604482015261185b60f21b60648201526084016105d2565b3360008181526101056020908152604080832080546001600160a01b0387166001600160a01b031991821681179092558185526101068452828520805460018101825590865294849020909401805490941685179093558051938452908301919091527fe9d1958840d703d1809a8f982d338495c4ba9921dd5d3edc0944b4cc303148f191015b60405180910390a150565b60006112938383611afc565b6001600160a01b038516600090815261010760205260408120805492935083929091906112c1908490612211565b9091555090949350505050565b60cc546001600160a01b03163314610baf5760405163504ec42f60e01b815260040160405180910390fd5b600354600090610100900460ff1615611342578160ff16600114801561131e5750303b155b61133a5760405162461bcd60e51b81526004016105d290612229565b506000919050565b60035460ff8084169116106113695760405162461bcd60e51b81526004016105d290612229565b506003805460ff191660ff92909216919091179055600190565b919050565b600354610100900460ff166113af5760405162461bcd60e51b81526004016105d290612277565b610baf611b0a565b600354610100900460ff166113de5760405162461bcd60e51b81526004016105d290612277565b610baf611b3a565b600354610100900460ff1661140d5760405162461bcd60e51b81526004016105d290612277565b610baf611b6a565b6001600160a01b03811661146b5760405162461bcd60e51b815260206004820152601a60248201527f466565436f6c6c6563746f723a207a65726f206164647265737300000000000060448201526064016105d2565b600080546001600160a01b0319166001600160a01b03831690811790915560405190815233907fc16e4472dd1cc8d03b2c695da06ba4b4ad682503571c403039300d6238e260e790602001610cf7565b6114c58282611b91565b61151b5760405162461bcd60e51b815260206004820152602160248201527f466565436f6c6c6563746f723a2070657263656e742065786365656473206d616044820152600f60fb1b60648201526084016105d2565b60018290556002819055604080518381526020810183905233917ff51e51a4ed6c4621bf8c5a8a3fc17dbff4113c7df8fcfcd6724ba45f01b4beb3910160405180910390a25050565b61010254431161157057565b600061157a6119c6565b6101025461158890436121c5565b61159291906122c2565b436101025560ff546040516340c10f1960e01b8152306004820152602481018390529192506001600160a01b0316906340c10f19906044016020604051808303816000875af11580156115e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160d91906122e1565b506040518181527f164f7b2ab803097dab5e39f06d2e4f3c3ddc5d4171abbdcc3e76443b8359c7f59060200161127c565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611690908490611b9d565b505050565b6000546001600160a01b03166116ed5760405162461bcd60e51b815260206004820152601d60248201527f466565436f6c6c6563746f723a2068616e646c6572206e6f742073657400000060448201526064016105d2565b80156116905760005460405163095ea7b360e01b81526001600160a01b039182166004820152602481018390529084169063095ea7b3906044016020604051808303816000875af1158015611746573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061176a91906122e1565b506000546040516326dda89760e21b81526001600160a01b03858116600483015284811660248301523360448301526064820184905290911690639b76a25c90608401600060405180830381600087803b1580156117c757600080fd5b505af11580156117db573d6000803e3d6000fd5b50505050505050565b60685460ff1661182d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105d2565b6068805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b039091168152602001610bfc565b6000610d628383611c6f565b6001600160a01b03811660009081526001830160205260408120541515610d62565b6000610d62836001600160a01b038416611c99565b60006118c2848484611ce8565b949350505050565b603680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60685460ff16156119625760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105d2565b6068805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861185a3390565b6000610d62836001600160a01b038416611d71565b6000806119ba858585611e64565b90969095509350505050565b60fe546000906001600160a01b0316611a345760405162461bcd60e51b815260206004820152602a60248201527f526566657272616c52656769737465723a20666565206d696e746572206973206044820152691d5b985cdcda59db995960b21b60648201526084016105d2565b60fe5460405163131a26fd60e31b81523060048201526001600160a01b03909116906398d137e890602401602060405180830381865afa158015611a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee19190612196565b6000610c85825490565b60cc80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f435020463df9072c26fe186a7008f9fb875f94dacb336a0ac30291513d656e8e90600090a35050565b6000610d6283836000611ce8565b600354610100900460ff16611b315760405162461bcd60e51b81526004016105d290612277565b610baf336118ca565b600354610100900460ff16611b615760405162461bcd60e51b81526004016105d290612277565b610baf33611aaa565b600354610100900460ff16610eb45760405162461bcd60e51b81526004016105d290612277565b6000610d628383611edd565b6000611bf2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611eff9092919063ffffffff16565b8051909150156116905780806020019051810190611c1091906122e1565b6116905760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016105d2565b6000826000018281548110611c8657611c86612303565b9060005260206000200154905092915050565b6000818152600183016020526040812054611ce057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c85565b506000610c85565b60008282611cf68282611edd565b611d3d5760405162461bcd60e51b815260206004820152601860248201527714195c98d95b9d0e881a5b9d985b1a59081c195c98d95b9d60421b60448201526064016105d2565b611d4884600a6123fd565b611d539060646122c2565b611d5d86886122c2565b611d679190612409565b9695505050505050565b60008181526001830160205260408120548015611e5a576000611d956001836121c5565b8554909150600090611da9906001906121c5565b9050818114611e0e576000866000018281548110611dc957611dc9612303565b9060005260206000200154905080876000018481548110611dec57611dec612303565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611e1f57611e1f61242b565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610c85565b6000915050610c85565b6000808383611e738282611edd565b611eba5760405162461bcd60e51b815260206004820152601860248201527714195c98d95b9d0e881a5b9d985b1a59081c195c98d95b9d60421b60448201526064016105d2565b611ec5878787611ce8565b9350611ed184886121c5565b92505050935093915050565b6000611eea82600a6123fd565b611ef59060646122c2565b9092111592915050565b60606118c28484600085856001600160a01b0385163b611f615760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016105d2565b600080866001600160a01b03168587604051611f7d9190612471565b60006040518083038185875af1925050503d8060008114611fba576040519150601f19603f3d011682016040523d82523d6000602084013e611fbf565b606091505b5091509150611fcf828286611fda565b979650505050505050565b60608315611fe9575081610d62565b825115611ff95782518084602001fd5b8160405162461bcd60e51b81526004016105d2919061248d565b80356001600160a01b038116811461138357600080fd5b60006020828403121561203c57600080fd5b610d6282612013565b6000806040838503121561205857600080fd5b61206183612013565b946020939093013593505050565b600080600080600080600060e0888a03121561208a57600080fd5b61209388612013565b96506120a160208901612013565b95506120af60408901612013565b969995985095966060810135965060808101359560a0820135955060c0909101359350915050565b6000602082840312156120e957600080fd5b5035919050565b6020808252825182820181905260009190848201906040850190845b818110156121315783516001600160a01b03168352928401929184019160010161210c565b50909695505050505050565b6000806040838503121561215057600080fd5b50508035926020909101359150565b6020808252601e908201527f526566657272616c52656769737465723a207a65726f20616464726573730000604082015260600190565b6000602082840312156121a857600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156121d7576121d76121af565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115612224576122246121af565b500190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60008160001904831182151516156122dc576122dc6121af565b500290565b6000602082840312156122f357600080fd5b81518015158114610d6257600080fd5b634e487b7160e01b600052603260045260246000fd5b600181815b8085111561235457816000190482111561233a5761233a6121af565b8085161561234757918102915b93841c939080029061231e565b509250929050565b60008261236b57506001610c85565b8161237857506000610c85565b816001811461238e5760028114612398576123b4565b6001915050610c85565b60ff8411156123a9576123a96121af565b50506001821b610c85565b5060208310610133831016604e8410600b84101617156123d7575081810a610c85565b6123e18383612319565b80600019048211156123f5576123f56121af565b029392505050565b6000610d62838361235c565b60008261242657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603160045260246000fd5b60005b8381101561245c578181015183820152602001612444565b8381111561246b576000848401525b50505050565b60008251612483818460208701612441565b9190910192915050565b60208152600082518060208401526124ac816040850160208701612441565b601f01601f1916919091016040019291505056fea264697066735822122063f104a36b52fc26b53307bc54425239b3dc61af2781b5bfece088c6fb43f6cd64736f6c634300080a0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.