More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 5,024 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint And Stake G... | 10555749 | 34 hrs ago | IN | 58 GLMR | 0.26267388 | ||||
Unstake And Rede... | 10509859 | 4 days ago | IN | 0 GLMR | 0.26386534 | ||||
Unstake And Rede... | 10501037 | 5 days ago | IN | 0 GLMR | 0.16231053 | ||||
Unstake And Rede... | 10421134 | 10 days ago | IN | 0 GLMR | 0.19088198 | ||||
Unstake And Rede... | 10370314 | 14 days ago | IN | 0 GLMR | 0.17073144 | ||||
Unstake And Rede... | 10365157 | 14 days ago | IN | 0 GLMR | 0.28756252 | ||||
Unstake And Rede... | 10346323 | 16 days ago | IN | 0 GLMR | 0.17079268 | ||||
Unstake And Rede... | 10338558 | 16 days ago | IN | 0 GLMR | 0.26287806 | ||||
Unstake And Rede... | 10318744 | 18 days ago | IN | 0 GLMR | 0.26357998 | ||||
Unstake And Rede... | 10292253 | 20 days ago | IN | 0 GLMR | 0.08405862 | ||||
Unstake And Rede... | 10288401 | 20 days ago | IN | 0 GLMR | 0.18514531 | ||||
Unstake And Rede... | 10288335 | 20 days ago | IN | 0 GLMR | 0.18514531 | ||||
Unstake And Rede... | 10282694 | 20 days ago | IN | 0 GLMR | 0.16970289 | ||||
Mint And Stake G... | 10282424 | 20 days ago | IN | 0 GLMR | 0.26464598 | ||||
Mint And Stake G... | 10272530 | 21 days ago | IN | 0 GLMR | 0.18496579 | ||||
Unstake And Rede... | 10269019 | 21 days ago | IN | 0 GLMR | 0.18514531 | ||||
Unstake And Rede... | 10227497 | 24 days ago | IN | 0 GLMR | 0.26508222 | ||||
Unstake And Rede... | 10227440 | 24 days ago | IN | 0 GLMR | 0.26536758 | ||||
Unstake And Rede... | 10227380 | 24 days ago | IN | 0 GLMR | 0.26393422 | ||||
Mint And Stake G... | 10227094 | 24 days ago | IN | 0 GLMR | 0.2871886 | ||||
Unstake And Rede... | 10225572 | 24 days ago | IN | 0 GLMR | 0.28775276 | ||||
Unstake And Rede... | 10225537 | 24 days ago | IN | 0 GLMR | 0.28775276 | ||||
Mint And Stake G... | 10220585 | 25 days ago | IN | 1 GLMR | 0.26286412 | ||||
Unstake And Rede... | 10214249 | 25 days ago | IN | 0 GLMR | 0.28803812 | ||||
Unstake And Rede... | 10213782 | 25 days ago | IN | 0 GLMR | 0.28772652 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
10555749 | 34 hrs ago | 58 GLMR | ||||
10509859 | 4 days ago | 1,989.66975735 GLMR | ||||
10509859 | 4 days ago | 1,989.66975735 GLMR | ||||
10501037 | 5 days ago | 3,209.02221953 GLMR | ||||
10501037 | 5 days ago | 3,209.02221953 GLMR | ||||
10318744 | 18 days ago | 1,706.48856998 GLMR | ||||
10318744 | 18 days ago | 1,706.48856998 GLMR | ||||
10292253 | 20 days ago | 642.35521316 GLMR | ||||
10292253 | 20 days ago | 642.35521316 GLMR | ||||
10282694 | 20 days ago | 618.05581609 GLMR | ||||
10282694 | 20 days ago | 618.05581609 GLMR | ||||
10227380 | 24 days ago | 77.82684902 GLMR | ||||
10227380 | 24 days ago | 77.82684902 GLMR | ||||
10220585 | 25 days ago | 1 GLMR | ||||
10192654 | 27 days ago | 10 GLMR | ||||
10169870 | 28 days ago | 52 GLMR | ||||
10140247 | 30 days ago | 1,515 GLMR | ||||
10124214 | 31 days ago | 2 GLMR | ||||
10116806 | 32 days ago | 14,280 GLMR | ||||
10100585 | 33 days ago | 384 GLMR | ||||
10100398 | 33 days ago | 5 GLMR | ||||
10100101 | 33 days ago | 126.70734062 GLMR | ||||
10100101 | 33 days ago | 126.70734062 GLMR | ||||
10090284 | 34 days ago | 24 GLMR | ||||
10075209 | 35 days ago | 175 GLMR |
Loading...
Loading
Contract Name:
RewardRouterV2
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 1 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "../libraries/math/SafeMath.sol"; import "../libraries/token/IERC20.sol"; import "../libraries/token/SafeERC20.sol"; import "../libraries/utils/ReentrancyGuard.sol"; import "../libraries/utils/Address.sol"; import "./interfaces/IRewardTracker.sol"; import "./interfaces/IVester.sol"; import "../tokens/interfaces/IMintable.sol"; import "../tokens/interfaces/IWETH.sol"; import "../core/interfaces/IGlpManager.sol"; import "../access/Governable.sol"; contract RewardRouterV2 is ReentrancyGuard, Governable { using SafeMath for uint256; using SafeERC20 for IERC20; using Address for address payable; bool public isInitialized; address public weth; address public glp; // GMX Liquidity Provider token address public glpManager; event StakeGlp(address account, uint256 amount); event UnstakeGlp(address account, uint256 amount); receive() external payable { require(msg.sender == weth, "Router: invalid sender"); } function initialize( address _weth, address _glp, address _glpManager ) external onlyGov { require(!isInitialized, "RewardRouter: already initialized"); isInitialized = true; weth = _weth; glp = _glp; glpManager = _glpManager; } // to help users who accidentally send their tokens to this contract function withdrawToken( address _token, address _account, uint256 _amount ) external onlyGov { IERC20(_token).safeTransfer(_account, _amount); } /* function batchStakeGmxForAccount(address[] memory _accounts, uint256[] memory _amounts) external nonReentrant onlyGov { address _gmx = gmx; for (uint256 i = 0; i < _accounts.length; i++) { _stakeGmx(msg.sender, _accounts[i], _gmx, _amounts[i]); } } function stakeGmxForAccount(address _account, uint256 _amount) external nonReentrant onlyGov { _stakeGmx(msg.sender, _account, gmx, _amount); } function stakeGmx(uint256 _amount) external nonReentrant { _stakeGmx(msg.sender, msg.sender, gmx, _amount); } function stakeEsGmx(uint256 _amount) external nonReentrant { _stakeGmx(msg.sender, msg.sender, esGmx, _amount); } function unstakeGmx(uint256 _amount) external nonReentrant { _unstakeGmx(msg.sender, gmx, _amount, true); } function unstakeEsGmx(uint256 _amount) external nonReentrant { _unstakeGmx(msg.sender, esGmx, _amount, true); }*/ function mintAndStakeGlp( address _token, uint256 _amount, uint256 _minUsdg, uint256 _minGlp ) external nonReentrant returns (uint256) { require(_amount > 0, "RewardRouter: invalid _amount"); address account = msg.sender; uint256 glpAmount = IGlpManager(glpManager).addLiquidityForAccount( account, account, _token, _amount, _minUsdg, _minGlp ); // IRewardTracker(feeGlpTracker).stakeForAccount(account, account, glp, glpAmount); // IRewardTracker(stakedGlpTracker).stakeForAccount(account, account, feeGlpTracker, glpAmount); emit StakeGlp(account, glpAmount); return glpAmount; } function mintAndStakeGlpETH( uint256 _minUsdg, uint256 _minGlp ) external payable nonReentrant returns (uint256) { require(msg.value > 0, "RewardRouter: invalid msg.value"); IWETH(weth).deposit{value: msg.value}(); IERC20(weth).approve(glpManager, msg.value); address account = msg.sender; uint256 glpAmount = IGlpManager(glpManager).addLiquidityForAccount( address(this), account, weth, msg.value, _minUsdg, _minGlp ); // IRewardTracker(feeGlpTracker).stakeForAccount(account, account, glp, glpAmount); // IRewardTracker(stakedGlpTracker).stakeForAccount(account, account, feeGlpTracker, glpAmount); emit StakeGlp(account, glpAmount); return glpAmount; } function unstakeAndRedeemGlp( address _tokenOut, uint256 _glpAmount, uint256 _minOut, address _receiver ) external nonReentrant returns (uint256) { require(_glpAmount > 0, "RewardRouter: invalid _glpAmount"); address account = msg.sender; // IRewardTracker(stakedGlpTracker).unstakeForAccount(account, feeGlpTracker, _glpAmount, account); // IRewardTracker(feeGlpTracker).unstakeForAccount(account, glp, _glpAmount, account); uint256 amountOut = IGlpManager(glpManager).removeLiquidityForAccount( account, _tokenOut, _glpAmount, _minOut, _receiver ); emit UnstakeGlp(account, _glpAmount); return amountOut; } function unstakeAndRedeemGlpETH( uint256 _glpAmount, uint256 _minOut, address payable _receiver ) external nonReentrant returns (uint256) { require(_glpAmount > 0, "RewardRouter: invalid _glpAmount"); address account = msg.sender; // IRewardTracker(stakedGlpTracker).unstakeForAccount(account, feeGlpTracker, _glpAmount, account); // IRewardTracker(feeGlpTracker).unstakeForAccount(account, glp, _glpAmount, account); uint256 amountOut = IGlpManager(glpManager).removeLiquidityForAccount( account, weth, _glpAmount, _minOut, address(this) ); IWETH(weth).withdraw(amountOut); _receiver.sendValue(amountOut); emit UnstakeGlp(account, _glpAmount); return amountOut; } /* function claim() external nonReentrant { address account = msg.sender; IRewardTracker(feeGmxTracker).claimForAccount(account, account); IRewardTracker(feeGlpTracker).claimForAccount(account, account); IRewardTracker(stakedGmxTracker).claimForAccount(account, account); IRewardTracker(stakedGlpTracker).claimForAccount(account, account); } function claimEsGmx() external nonReentrant { address account = msg.sender; IRewardTracker(stakedGmxTracker).claimForAccount(account, account); IRewardTracker(stakedGlpTracker).claimForAccount(account, account); } function claimFees() external nonReentrant { address account = msg.sender; IRewardTracker(feeGmxTracker).claimForAccount(account, account); IRewardTracker(feeGlpTracker).claimForAccount(account, account); } function compound() external nonReentrant { _compound(msg.sender); }*/ /* function compoundForAccount(address _account) external nonReentrant onlyGov { _compound(_account); }*/ /* function handleRewards( bool _shouldClaimGmx, bool _shouldStakeGmx, bool _shouldClaimEsGmx, bool _shouldStakeEsGmx, bool _shouldStakeMultiplierPoints, bool _shouldClaimWeth, bool _shouldConvertWethToEth ) external nonReentrant { address account = msg.sender; uint256 gmxAmount = 0; if (_shouldClaimGmx) { uint256 gmxAmount0 = IVester(gmxVester).claimForAccount(account, account); uint256 gmxAmount1 = IVester(glpVester).claimForAccount(account, account); gmxAmount = gmxAmount0.add(gmxAmount1); } if (_shouldStakeGmx && gmxAmount > 0) { _stakeGmx(account, account, gmx, gmxAmount); } uint256 esGmxAmount = 0; if (_shouldClaimEsGmx) { uint256 esGmxAmount0 = IRewardTracker(stakedGmxTracker).claimForAccount(account, account); uint256 esGmxAmount1 = IRewardTracker(stakedGlpTracker).claimForAccount(account, account); esGmxAmount = esGmxAmount0.add(esGmxAmount1); } if (_shouldStakeEsGmx && esGmxAmount > 0) { _stakeGmx(account, account, esGmx, esGmxAmount); } if (_shouldStakeMultiplierPoints) { uint256 bnGmxAmount = IRewardTracker(bonusGmxTracker).claimForAccount(account, account); if (bnGmxAmount > 0) { IRewardTracker(feeGmxTracker).stakeForAccount(account, account, bnGmx, bnGmxAmount); } } if (_shouldClaimWeth) { if (_shouldConvertWethToEth) { uint256 weth0 = IRewardTracker(feeGmxTracker).claimForAccount(account, address(this)); uint256 weth1 = IRewardTracker(feeGlpTracker).claimForAccount(account, address(this)); uint256 wethAmount = weth0.add(weth1); IWETH(weth).withdraw(wethAmount); payable(account).sendValue(wethAmount); } else { IRewardTracker(feeGmxTracker).claimForAccount(account, account); IRewardTracker(feeGlpTracker).claimForAccount(account, account); } } }*/ /* function batchCompoundForAccounts(address[] memory _accounts) external nonReentrant onlyGov { for (uint256 i = 0; i < _accounts.length; i++) { _compound(_accounts[i]); } }*/ /* function signalTransfer(address _receiver) external nonReentrant { require(IERC20(gmxVester).balanceOf(msg.sender) == 0, "RewardRouter: sender has vested tokens"); require(IERC20(glpVester).balanceOf(msg.sender) == 0, "RewardRouter: sender has vested tokens"); _validateReceiver(_receiver); pendingReceivers[msg.sender] = _receiver; }*/ /* function acceptTransfer(address _sender) external nonReentrant { require(IERC20(gmxVester).balanceOf(_sender) == 0, "RewardRouter: sender has vested tokens"); require(IERC20(glpVester).balanceOf(_sender) == 0, "RewardRouter: sender has vested tokens"); address receiver = msg.sender; require(pendingReceivers[_sender] == receiver, "RewardRouter: transfer not signalled"); delete pendingReceivers[_sender]; _validateReceiver(receiver); _compound(_sender); uint256 stakedGmx = IRewardTracker(stakedGmxTracker).depositBalances(_sender, gmx); if (stakedGmx > 0) { _unstakeGmx(_sender, gmx, stakedGmx, false); _stakeGmx(_sender, receiver, gmx, stakedGmx); } uint256 stakedEsGmx = IRewardTracker(stakedGmxTracker).depositBalances(_sender, esGmx); if (stakedEsGmx > 0) { _unstakeGmx(_sender, esGmx, stakedEsGmx, false); _stakeGmx(_sender, receiver, esGmx, stakedEsGmx); } uint256 stakedBnGmx = IRewardTracker(feeGmxTracker).depositBalances(_sender, bnGmx); if (stakedBnGmx > 0) { IRewardTracker(feeGmxTracker).unstakeForAccount(_sender, bnGmx, stakedBnGmx, _sender); IRewardTracker(feeGmxTracker).stakeForAccount(_sender, receiver, bnGmx, stakedBnGmx); } uint256 esGmxBalance = IERC20(esGmx).balanceOf(_sender); if (esGmxBalance > 0) { IERC20(esGmx).transferFrom(_sender, receiver, esGmxBalance); } uint256 glpAmount = IRewardTracker(feeGlpTracker).depositBalances(_sender, glp); if (glpAmount > 0) { IRewardTracker(stakedGlpTracker).unstakeForAccount(_sender, feeGlpTracker, glpAmount, _sender); IRewardTracker(feeGlpTracker).unstakeForAccount(_sender, glp, glpAmount, _sender); IRewardTracker(feeGlpTracker).stakeForAccount(_sender, receiver, glp, glpAmount); IRewardTracker(stakedGlpTracker).stakeForAccount(receiver, receiver, feeGlpTracker, glpAmount); } IVester(gmxVester).transferStakeValues(_sender, receiver); IVester(glpVester).transferStakeValues(_sender, receiver); }*/ /* function _validateReceiver(address _receiver) private view { require(IRewardTracker(stakedGmxTracker).averageStakedAmounts(_receiver) == 0, "RewardRouter: stakedGmxTracker.averageStakedAmounts > 0"); require(IRewardTracker(stakedGmxTracker).cumulativeRewards(_receiver) == 0, "RewardRouter: stakedGmxTracker.cumulativeRewards > 0"); require(IRewardTracker(bonusGmxTracker).averageStakedAmounts(_receiver) == 0, "RewardRouter: bonusGmxTracker.averageStakedAmounts > 0"); require(IRewardTracker(bonusGmxTracker).cumulativeRewards(_receiver) == 0, "RewardRouter: bonusGmxTracker.cumulativeRewards > 0"); require(IRewardTracker(feeGmxTracker).averageStakedAmounts(_receiver) == 0, "RewardRouter: feeGmxTracker.averageStakedAmounts > 0"); require(IRewardTracker(feeGmxTracker).cumulativeRewards(_receiver) == 0, "RewardRouter: feeGmxTracker.cumulativeRewards > 0"); require(IVester(gmxVester).transferredAverageStakedAmounts(_receiver) == 0, "RewardRouter: gmxVester.transferredAverageStakedAmounts > 0"); require(IVester(gmxVester).transferredCumulativeRewards(_receiver) == 0, "RewardRouter: gmxVester.transferredCumulativeRewards > 0"); require(IRewardTracker(stakedGlpTracker).averageStakedAmounts(_receiver) == 0, "RewardRouter: stakedGlpTracker.averageStakedAmounts > 0"); require(IRewardTracker(stakedGlpTracker).cumulativeRewards(_receiver) == 0, "RewardRouter: stakedGlpTracker.cumulativeRewards > 0"); require(IRewardTracker(feeGlpTracker).averageStakedAmounts(_receiver) == 0, "RewardRouter: feeGlpTracker.averageStakedAmounts > 0"); require(IRewardTracker(feeGlpTracker).cumulativeRewards(_receiver) == 0, "RewardRouter: feeGlpTracker.cumulativeRewards > 0"); require(IVester(glpVester).transferredAverageStakedAmounts(_receiver) == 0, "RewardRouter: gmxVester.transferredAverageStakedAmounts > 0"); require(IVester(glpVester).transferredCumulativeRewards(_receiver) == 0, "RewardRouter: gmxVester.transferredCumulativeRewards > 0"); require(IERC20(gmxVester).balanceOf(_receiver) == 0, "RewardRouter: gmxVester.balance > 0"); require(IERC20(glpVester).balanceOf(_receiver) == 0, "RewardRouter: glpVester.balance > 0"); }*/ /* function _compound(address _account) private { _compoundGmx(_account); _compoundGlp(_account); } function _compoundGmx(address _account) private { uint256 esGmxAmount = IRewardTracker(stakedGmxTracker).claimForAccount(_account, _account); if (esGmxAmount > 0) { _stakeGmx(_account, _account, esGmx, esGmxAmount); } uint256 bnGmxAmount = IRewardTracker(bonusGmxTracker).claimForAccount(_account, _account); if (bnGmxAmount > 0) { IRewardTracker(feeGmxTracker).stakeForAccount(_account, _account, bnGmx, bnGmxAmount); } } function _compoundGlp(address _account) private { uint256 esGmxAmount = IRewardTracker(stakedGlpTracker).claimForAccount(_account, _account); if (esGmxAmount > 0) { _stakeGmx(_account, _account, esGmx, esGmxAmount); } }*/ /* function _stakeGmx(address _fundingAccount, address _account, address _token, uint256 _amount) private { require(_amount > 0, "RewardRouter: invalid _amount"); IRewardTracker(stakedGmxTracker).stakeForAccount(_fundingAccount, _account, _token, _amount); IRewardTracker(bonusGmxTracker).stakeForAccount(_account, _account, stakedGmxTracker, _amount); IRewardTracker(feeGmxTracker).stakeForAccount(_account, _account, bonusGmxTracker, _amount); emit StakeGmx(_account, _token, _amount); }*/ /* function _unstakeGmx(address _account, address _token, uint256 _amount, bool _shouldReduceBnGmx) private { require(_amount > 0, "RewardRouter: invalid _amount"); uint256 balance = IRewardTracker(stakedGmxTracker).stakedAmounts(_account); IRewardTracker(feeGmxTracker).unstakeForAccount(_account, bonusGmxTracker, _amount, _account); IRewardTracker(bonusGmxTracker).unstakeForAccount(_account, stakedGmxTracker, _amount, _account); IRewardTracker(stakedGmxTracker).unstakeForAccount(_account, _token, _amount, _account); if (_shouldReduceBnGmx) { uint256 bnGmxAmount = IRewardTracker(bonusGmxTracker).claimForAccount(_account, _account); if (bnGmxAmount > 0) { IRewardTracker(feeGmxTracker).stakeForAccount(_account, _account, bnGmx, bnGmxAmount); } uint256 stakedBnGmx = IRewardTracker(feeGmxTracker).depositBalances(_account, bnGmx); if (stakedBnGmx > 0) { uint256 reductionAmount = stakedBnGmx.mul(_amount).div(balance); IRewardTracker(feeGmxTracker).unstakeForAccount(_account, bnGmx, reductionAmount, _account); IMintable(bnGmx).burn(_account, reductionAmount); } } emit UnstakeGmx(_account, _token, _amount); }*/ }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @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]. */ contract ReentrancyGuard { // 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; constructor () internal { _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 make 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; } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "./IERC20.sol"; import "../math/SafeMath.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 SafeMath for uint256; 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' // solhint-disable-next-line max-line-length 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).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _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 // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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.3._ */ 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.3._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; contract Governable { address public gov; constructor() public { gov = msg.sender; } modifier onlyGov() { require(msg.sender == gov, "Governable: forbidden"); _; } function setGov(address _gov) external onlyGov { gov = _gov; } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IMintable { function isMinter(address _account) external returns (bool); function setMinter(address _minter, bool _isActive) external; function mint(address _account, uint256 _amount) external; function burn(address _account, uint256 _amount) external; }
//SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IWETH { function deposit() external payable; function transfer(address to, uint value) external returns (bool); function withdraw(uint) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IGlpManager { function usdg() external view returns (address); function cooldownDuration() external returns (uint256); function getAumInUsdg(bool maximise) external view returns (uint256); function lastAddedAt(address _account) external returns (uint256); function addLiquidity(address _token, uint256 _amount, uint256 _minUsdg, uint256 _minGlp) external returns (uint256); function addLiquidityForAccount(address _fundingAccount, address _account, address _token, uint256 _amount, uint256 _minUsdg, uint256 _minGlp) external returns (uint256); function removeLiquidity(address _tokenOut, uint256 _glpAmount, uint256 _minOut, address _receiver) external returns (uint256); function removeLiquidityForAccount(address _account, address _tokenOut, uint256 _glpAmount, uint256 _minOut, address _receiver) external returns (uint256); function setShortsTrackerAveragePriceWeight(uint256 _shortsTrackerAveragePriceWeight) external; function setCooldownDuration(uint256 _cooldownDuration) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IRewardTracker { function depositBalances(address _account, address _depositToken) external view returns (uint256); function stakedAmounts(address _account) external view returns (uint256); function updateRewards() external; function stake(address _depositToken, uint256 _amount) external; function stakeForAccount(address _fundingAccount, address _account, address _depositToken, uint256 _amount) external; function unstake(address _depositToken, uint256 _amount) external; function unstakeForAccount(address _account, address _depositToken, uint256 _amount, address _receiver) external; function tokensPerInterval() external view returns (uint256); function claim(address _receiver) external returns (uint256); function claimForAccount(address _account, address _receiver) external returns (uint256); function claimable(address _account) external view returns (uint256); function averageStakedAmounts(address _account) external view returns (uint256); function cumulativeRewards(address _account) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IVester { function rewardTracker() external view returns (address); function claimForAccount(address _account, address _receiver) external returns (uint256); function claimable(address _account) external view returns (uint256); function cumulativeClaimAmounts(address _account) external view returns (uint256); function claimedAmounts(address _account) external view returns (uint256); function pairAmounts(address _account) external view returns (uint256); function getVestedAmount(address _account) external view returns (uint256); function transferredAverageStakedAmounts(address _account) external view returns (uint256); function transferredCumulativeRewards(address _account) external view returns (uint256); function cumulativeRewardDeductions(address _account) external view returns (uint256); function bonusRewards(address _account) external view returns (uint256); function transferStakeValues(address _sender, address _receiver) external; function setTransferredAverageStakedAmounts(address _account, uint256 _amount) external; function setTransferredCumulativeRewards(address _account, uint256 _amount) external; function setCumulativeRewardDeductions(address _account, uint256 _amount) external; function setBonusRewards(address _account, uint256 _amount) external; function getMaxVestableAmount(address _account) external view returns (uint256); function getCombinedAverageStakedAmount(address _account) external view returns (uint256); }
{ "optimizer": { "enabled": true, "runs": 1 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"StakeGlp","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UnstakeGlp","type":"event"},{"inputs":[],"name":"glp","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"glpManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_weth","type":"address"},{"internalType":"address","name":"_glp","type":"address"},{"internalType":"address","name":"_glpManager","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_minUsdg","type":"uint256"},{"internalType":"uint256","name":"_minGlp","type":"uint256"}],"name":"mintAndStakeGlp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minUsdg","type":"uint256"},{"internalType":"uint256","name":"_minGlp","type":"uint256"}],"name":"mintAndStakeGlpETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_gov","type":"address"}],"name":"setGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenOut","type":"address"},{"internalType":"uint256","name":"_glpAmount","type":"uint256"},{"internalType":"uint256","name":"_minOut","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"unstakeAndRedeemGlp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_glpAmount","type":"uint256"},{"internalType":"uint256","name":"_minOut","type":"uint256"},{"internalType":"address payable","name":"_receiver","type":"address"}],"name":"unstakeAndRedeemGlpETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b506001600081905580546001600160a01b0319163317905561122e806100376000396000f3fe60806040526004361061009b5760003560e01c806301e33667146100ff5780630f3aa5541461014257806312d43a511461019b578063364e2311146101cc578063392e53cd146102115780633fc8cef31461023a57806353a8aa031461024f57806378a207ee14610272578063abb5e5e214610287578063c0c53b8b146102c6578063cfad57a21461030b578063fa6db1bc1461033e576100fa565b366100fa576002546001600160a01b031633146100f8576040805162461bcd60e51b81526020600482015260166024820152752937baba32b91d1034b73b30b634b21039b2b73232b960511b604482015290519081900360640190fd5b005b600080fd5b34801561010b57600080fd5b506100f86004803603606081101561012257600080fd5b506001600160a01b03813581169160208101359091169060400135610353565b34801561014e57600080fd5b506101896004803603608081101561016557600080fd5b506001600160a01b03813581169160208101359160408201359160600135166103c3565b60408051918252519081900360200190f35b3480156101a757600080fd5b506101b0610530565b604080516001600160a01b039092168252519081900360200190f35b3480156101d857600080fd5b50610189600480360360808110156101ef57600080fd5b506001600160a01b03813516906020810135906040810135906060013561053f565b34801561021d57600080fd5b506102266106c4565b604080519115158252519081900360200190f35b34801561024657600080fd5b506101b06106d4565b6101896004803603604081101561026557600080fd5b50803590602001356106e3565b34801561027e57600080fd5b506101b0610957565b34801561029357600080fd5b50610189600480360360608110156102aa57600080fd5b50803590602081013590604001356001600160a01b0316610966565b3480156102d257600080fd5b506100f8600480360360608110156102e957600080fd5b506001600160a01b038135811691602081013582169160409091013516610b4c565b34801561031757600080fd5b506100f86004803603602081101561032e57600080fd5b50356001600160a01b0316610c3e565b34801561034a57600080fd5b506101b0610cb7565b6001546001600160a01b031633146103aa576040805162461bcd60e51b815260206004820152601560248201527423b7bb32b93730b136329d103337b93134b23232b760591b604482015290519081900360640190fd5b6103be6001600160a01b0384168383610cc6565b505050565b60006002600054141561040b576040805162461bcd60e51b815260206004820152601f60248201526000805160206110ce833981519152604482015290519081900360640190fd5b600260005583610450576040805162461bcd60e51b815260206004820181905260248201526000805160206111d9833981519152604482015290519081900360640190fd5b60048054604080516371d597ad60e01b8152339381018490526001600160a01b03898116602483015260448201899052606482018890528681166084830152915160009392909216916371d597ad9160a48082019260209290919082900301818787803b1580156104c057600080fd5b505af11580156104d4573d6000803e3d6000fd5b505050506040513d60208110156104ea57600080fd5b5051604080516001600160a01b038516815260208101899052815192935060008051602061118f833981519152929081900390910190a160016000559695505050505050565b6001546001600160a01b031681565b600060026000541415610587576040805162461bcd60e51b815260206004820152601f60248201526000805160206110ce833981519152604482015290519081900360640190fd5b6002600055836105de576040805162461bcd60e51b815260206004820152601d60248201527f526577617264526f757465723a20696e76616c6964205f616d6f756e74000000604482015290519081900360640190fd5b60048054604080516317eb2a1560e01b815233938101849052602481018490526001600160a01b038981166044830152606482018990526084820188905260a48201879052915160009392909216916317eb2a159160c48082019260209290919082900301818787803b15801561065457600080fd5b505af1158015610668573d6000803e3d6000fd5b505050506040513d602081101561067e57600080fd5b5051604080516001600160a01b038516815260208101839052815192935060008051602061116f833981519152929081900390910190a160016000559695505050505050565b600154600160a01b900460ff1681565b6002546001600160a01b031681565b60006002600054141561072b576040805162461bcd60e51b815260206004820152601f60248201526000805160206110ce833981519152604482015290519081900360640190fd5b600260005534610782576040805162461bcd60e51b815260206004820152601f60248201527f526577617264526f757465723a20696e76616c6964206d73672e76616c756500604482015290519081900360640190fd5b600260009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b1580156107d257600080fd5b505af11580156107e6573d6000803e3d6000fd5b5050600254600480546040805163095ea7b360e01b81526001600160a01b0392831693810193909352346024840152519216945063095ea7b3935060448082019350602092918290030181600087803b15801561084257600080fd5b505af1158015610856573d6000803e3d6000fd5b505050506040513d602081101561086c57600080fd5b505060048054600254604080516317eb2a1560e01b8152309481019490945233602485018190526001600160a01b0392831660448601523460648601526084850188905260a485018790529051909360009392909216916317eb2a159160c480830192602092919082900301818787803b1580156108e957600080fd5b505af11580156108fd573d6000803e3d6000fd5b505050506040513d602081101561091357600080fd5b5051604080516001600160a01b038516815260208101839052815192935060008051602061116f833981519152929081900390910190a16001600055949350505050565b6003546001600160a01b031681565b6000600260005414156109ae576040805162461bcd60e51b815260206004820152601f60248201526000805160206110ce833981519152604482015290519081900360640190fd5b6002600055836109f3576040805162461bcd60e51b815260206004820181905260248201526000805160206111d9833981519152604482015290519081900360640190fd5b60048054600254604080516371d597ad60e01b8152339481018590526001600160a01b0392831660248201526044810189905260648101889052306084820152905160009392909216916371d597ad9160a48082019260209290919082900301818787803b158015610a6457600080fd5b505af1158015610a78573d6000803e3d6000fd5b505050506040513d6020811015610a8e57600080fd5b505160025460408051632e1a7d4d60e01b81526004810184905290519293506001600160a01b0390911691632e1a7d4d9160248082019260009290919082900301818387803b158015610ae057600080fd5b505af1158015610af4573d6000803e3d6000fd5b50610b0c925050506001600160a01b03851682610d18565b604080516001600160a01b038416815260208101889052815160008051602061118f833981519152929181900390910190a1600160005595945050505050565b6001546001600160a01b03163314610ba3576040805162461bcd60e51b815260206004820152601560248201527423b7bb32b93730b136329d103337b93134b23232b760591b604482015290519081900360640190fd5b600154600160a01b900460ff1615610bec5760405162461bcd60e51b81526004018080602001828103825260218152602001806111286021913960400191505060405180910390fd5b6001805460ff60a01b1916600160a01b179055600280546001600160a01b039485166001600160a01b031991821617909155600380549385169382169390931790925560048054919093169116179055565b6001546001600160a01b03163314610c95576040805162461bcd60e51b815260206004820152601560248201527423b7bb32b93730b136329d103337b93134b23232b760591b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b031681565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526103be908490610dfd565b80471015610d6d576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114610db8576040519150601f19603f3d011682016040523d82523d6000602084013e610dbd565b606091505b50509050806103be5760405162461bcd60e51b815260040180806020018281038252603a8152602001806110ee603a913960400191505060405180910390fd5b6060610e52826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610eae9092919063ffffffff16565b8051909150156103be57808060200190516020811015610e7157600080fd5b50516103be5760405162461bcd60e51b815260040180806020018281038252602a8152602001806111af602a913960400191505060405180910390fd5b6060610ebd8484600085610ec7565b90505b9392505050565b606082471015610f085760405162461bcd60e51b81526004018080602001828103825260268152602001806111496026913960400191505060405180910390fd5b610f1185611023565b610f62576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310610fa15780518252601f199092019160209182019101610f82565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611003576040519150601f19603f3d011682016040523d82523d6000602084013e611008565b606091505b5091509150611018828286611029565b979650505050505050565b3b151590565b60608315611038575081610ec0565b8251156110485782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561109257818101518382015260200161107a565b50505050905090810190601f1680156110bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe5265656e7472616e637947756172643a207265656e7472616e742063616c6c00416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564526577617264526f757465723a20616c726561647920696e697469616c697a6564416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6ca4725d47fa458d9222498e4d63f34527cf7318c1506f89d9092b35fdbcb64f3a1cb6202519b6b6c72ba5ed11e2c3f53af3cea010f96bfc705584e53e75cf034c5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564526577617264526f757465723a20696e76616c6964205f676c70416d6f756e74a2646970667358221220514803d16aaa18f16632a8780def7f7a4837a56658e90c75cd6f2353cac39b8c64736f6c634300060c0033
Deployed Bytecode
0x60806040526004361061009b5760003560e01c806301e33667146100ff5780630f3aa5541461014257806312d43a511461019b578063364e2311146101cc578063392e53cd146102115780633fc8cef31461023a57806353a8aa031461024f57806378a207ee14610272578063abb5e5e214610287578063c0c53b8b146102c6578063cfad57a21461030b578063fa6db1bc1461033e576100fa565b366100fa576002546001600160a01b031633146100f8576040805162461bcd60e51b81526020600482015260166024820152752937baba32b91d1034b73b30b634b21039b2b73232b960511b604482015290519081900360640190fd5b005b600080fd5b34801561010b57600080fd5b506100f86004803603606081101561012257600080fd5b506001600160a01b03813581169160208101359091169060400135610353565b34801561014e57600080fd5b506101896004803603608081101561016557600080fd5b506001600160a01b03813581169160208101359160408201359160600135166103c3565b60408051918252519081900360200190f35b3480156101a757600080fd5b506101b0610530565b604080516001600160a01b039092168252519081900360200190f35b3480156101d857600080fd5b50610189600480360360808110156101ef57600080fd5b506001600160a01b03813516906020810135906040810135906060013561053f565b34801561021d57600080fd5b506102266106c4565b604080519115158252519081900360200190f35b34801561024657600080fd5b506101b06106d4565b6101896004803603604081101561026557600080fd5b50803590602001356106e3565b34801561027e57600080fd5b506101b0610957565b34801561029357600080fd5b50610189600480360360608110156102aa57600080fd5b50803590602081013590604001356001600160a01b0316610966565b3480156102d257600080fd5b506100f8600480360360608110156102e957600080fd5b506001600160a01b038135811691602081013582169160409091013516610b4c565b34801561031757600080fd5b506100f86004803603602081101561032e57600080fd5b50356001600160a01b0316610c3e565b34801561034a57600080fd5b506101b0610cb7565b6001546001600160a01b031633146103aa576040805162461bcd60e51b815260206004820152601560248201527423b7bb32b93730b136329d103337b93134b23232b760591b604482015290519081900360640190fd5b6103be6001600160a01b0384168383610cc6565b505050565b60006002600054141561040b576040805162461bcd60e51b815260206004820152601f60248201526000805160206110ce833981519152604482015290519081900360640190fd5b600260005583610450576040805162461bcd60e51b815260206004820181905260248201526000805160206111d9833981519152604482015290519081900360640190fd5b60048054604080516371d597ad60e01b8152339381018490526001600160a01b03898116602483015260448201899052606482018890528681166084830152915160009392909216916371d597ad9160a48082019260209290919082900301818787803b1580156104c057600080fd5b505af11580156104d4573d6000803e3d6000fd5b505050506040513d60208110156104ea57600080fd5b5051604080516001600160a01b038516815260208101899052815192935060008051602061118f833981519152929081900390910190a160016000559695505050505050565b6001546001600160a01b031681565b600060026000541415610587576040805162461bcd60e51b815260206004820152601f60248201526000805160206110ce833981519152604482015290519081900360640190fd5b6002600055836105de576040805162461bcd60e51b815260206004820152601d60248201527f526577617264526f757465723a20696e76616c6964205f616d6f756e74000000604482015290519081900360640190fd5b60048054604080516317eb2a1560e01b815233938101849052602481018490526001600160a01b038981166044830152606482018990526084820188905260a48201879052915160009392909216916317eb2a159160c48082019260209290919082900301818787803b15801561065457600080fd5b505af1158015610668573d6000803e3d6000fd5b505050506040513d602081101561067e57600080fd5b5051604080516001600160a01b038516815260208101839052815192935060008051602061116f833981519152929081900390910190a160016000559695505050505050565b600154600160a01b900460ff1681565b6002546001600160a01b031681565b60006002600054141561072b576040805162461bcd60e51b815260206004820152601f60248201526000805160206110ce833981519152604482015290519081900360640190fd5b600260005534610782576040805162461bcd60e51b815260206004820152601f60248201527f526577617264526f757465723a20696e76616c6964206d73672e76616c756500604482015290519081900360640190fd5b600260009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b1580156107d257600080fd5b505af11580156107e6573d6000803e3d6000fd5b5050600254600480546040805163095ea7b360e01b81526001600160a01b0392831693810193909352346024840152519216945063095ea7b3935060448082019350602092918290030181600087803b15801561084257600080fd5b505af1158015610856573d6000803e3d6000fd5b505050506040513d602081101561086c57600080fd5b505060048054600254604080516317eb2a1560e01b8152309481019490945233602485018190526001600160a01b0392831660448601523460648601526084850188905260a485018790529051909360009392909216916317eb2a159160c480830192602092919082900301818787803b1580156108e957600080fd5b505af11580156108fd573d6000803e3d6000fd5b505050506040513d602081101561091357600080fd5b5051604080516001600160a01b038516815260208101839052815192935060008051602061116f833981519152929081900390910190a16001600055949350505050565b6003546001600160a01b031681565b6000600260005414156109ae576040805162461bcd60e51b815260206004820152601f60248201526000805160206110ce833981519152604482015290519081900360640190fd5b6002600055836109f3576040805162461bcd60e51b815260206004820181905260248201526000805160206111d9833981519152604482015290519081900360640190fd5b60048054600254604080516371d597ad60e01b8152339481018590526001600160a01b0392831660248201526044810189905260648101889052306084820152905160009392909216916371d597ad9160a48082019260209290919082900301818787803b158015610a6457600080fd5b505af1158015610a78573d6000803e3d6000fd5b505050506040513d6020811015610a8e57600080fd5b505160025460408051632e1a7d4d60e01b81526004810184905290519293506001600160a01b0390911691632e1a7d4d9160248082019260009290919082900301818387803b158015610ae057600080fd5b505af1158015610af4573d6000803e3d6000fd5b50610b0c925050506001600160a01b03851682610d18565b604080516001600160a01b038416815260208101889052815160008051602061118f833981519152929181900390910190a1600160005595945050505050565b6001546001600160a01b03163314610ba3576040805162461bcd60e51b815260206004820152601560248201527423b7bb32b93730b136329d103337b93134b23232b760591b604482015290519081900360640190fd5b600154600160a01b900460ff1615610bec5760405162461bcd60e51b81526004018080602001828103825260218152602001806111286021913960400191505060405180910390fd5b6001805460ff60a01b1916600160a01b179055600280546001600160a01b039485166001600160a01b031991821617909155600380549385169382169390931790925560048054919093169116179055565b6001546001600160a01b03163314610c95576040805162461bcd60e51b815260206004820152601560248201527423b7bb32b93730b136329d103337b93134b23232b760591b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b031681565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526103be908490610dfd565b80471015610d6d576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114610db8576040519150601f19603f3d011682016040523d82523d6000602084013e610dbd565b606091505b50509050806103be5760405162461bcd60e51b815260040180806020018281038252603a8152602001806110ee603a913960400191505060405180910390fd5b6060610e52826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610eae9092919063ffffffff16565b8051909150156103be57808060200190516020811015610e7157600080fd5b50516103be5760405162461bcd60e51b815260040180806020018281038252602a8152602001806111af602a913960400191505060405180910390fd5b6060610ebd8484600085610ec7565b90505b9392505050565b606082471015610f085760405162461bcd60e51b81526004018080602001828103825260268152602001806111496026913960400191505060405180910390fd5b610f1185611023565b610f62576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310610fa15780518252601f199092019160209182019101610f82565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611003576040519150601f19603f3d011682016040523d82523d6000602084013e611008565b606091505b5091509150611018828286611029565b979650505050505050565b3b151590565b60608315611038575081610ec0565b8251156110485782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561109257818101518382015260200161107a565b50505050905090810190601f1680156110bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe5265656e7472616e637947756172643a207265656e7472616e742063616c6c00416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564526577617264526f757465723a20616c726561647920696e697469616c697a6564416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6ca4725d47fa458d9222498e4d63f34527cf7318c1506f89d9092b35fdbcb64f3a1cb6202519b6b6c72ba5ed11e2c3f53af3cea010f96bfc705584e53e75cf034c5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564526577617264526f757465723a20696e76616c6964205f676c70416d6f756e74a2646970667358221220514803d16aaa18f16632a8780def7f7a4837a56658e90c75cd6f2353cac39b8c64736f6c634300060c0033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.