More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
WarCvxLocker
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//██████╗ █████╗ ██╗ █████╗ ██████╗ ██╗███╗ ██╗ //██╔══██╗██╔══██╗██║ ██╔══██╗██╔══██╗██║████╗ ██║ //██████╔╝███████║██║ ███████║██║ ██║██║██╔██╗ ██║ //██╔═══╝ ██╔══██║██║ ██╔══██║██║ ██║██║██║╚██╗██║ //██║ ██║ ██║███████╗██║ ██║██████╔╝██║██║ ╚████║ //╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝╚═╝ ╚═══╝ pragma solidity 0.8.16; //SPDX-License-Identifier: BUSL-1.1 import "./IncentivizedLocker.sol"; import {IDelegateRegistry} from "interfaces/external/IDelegateRegistry.sol"; import {CvxLockerV2} from "interfaces/external/convex/vlCvx.sol"; import {Math} from "openzeppelin/utils/math/Math.sol"; /** * @title Warlord CVX Locker contract * @author Paladin * @notice Contract locking CVX into vlCVX, claiming rewards and delegating voting power */ contract WarCvxLocker is IncentivizedLocker { using SafeERC20 for IERC20; /** * @notice Address of the vlCVX contract */ CvxLockerV2 private constant vlCvx = CvxLockerV2(0x72a19342e8F1838460eBFCCEf09F6585e32db86E); /** * @notice Address of the CVX token */ IERC20 private constant cvx = IERC20(0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B); /** * @notice Address of the DelegateRegistry contract */ IDelegateRegistry private constant registry = IDelegateRegistry(0x469788fE6E9E9681C6ebF3bF78e7Fd26Fc015446); // Constructor constructor(address _controller, address _redeemModule, address _warMinter, address _delegatee) WarBaseLocker(_controller, _redeemModule, _warMinter, _delegatee) { registry.setDelegate("cvx.eth", _delegatee); } /** * @notice Returns the address of the token being locked * @return address : token */ function token() external pure returns (address) { return address(cvx); } /** * @notice Returns the current total amount of locked tokens for this Locker */ function getCurrentLockedTokens() external view override returns (uint256) { (uint256 totalBalance,,,) = vlCvx.lockedBalances(address(this)); return totalBalance; } /** * @dev Locks the tokens in the vlToken contract * @param amount Amount to lock */ function _lock(uint256 amount) internal override { cvx.safeTransferFrom(msg.sender, address(this), amount); if (cvx.allowance(address(this), address(vlCvx)) != 0) cvx.safeApprove(address(vlCvx), 0); cvx.safeIncreaseAllowance(address(vlCvx), amount); vlCvx.lock(address(this), amount, 0); } /** * @dev Harvest rewards & send them to the Controller */ function _harvest() internal override { CvxLockerV2.EarnedData[] memory rewards = vlCvx.claimableRewards(address(this)); uint256 rewardsLength = rewards.length; vlCvx.getReward(address(this), false); for (uint256 i; i < rewardsLength;) { IERC20 rewardToken = IERC20(rewards[i].token); uint256 rewardBalance = rewardToken.balanceOf(address(this)); rewardToken.safeTransfer(controller, rewardBalance); unchecked { ++i; } } } /** * @dev Updates the Delegatee & delegates the voting power * @param _delegatee Address of the delegatee */ function _setDelegate(address _delegatee) internal override { registry.setDelegate("cvx.eth", _delegatee); } /** * @dev Processes the unlock of tokens */ function _processUnlock() internal override { // Harvest the rewards before processing unlocks _harvest(); // Get the amount being unlocked (, uint256 unlockableBalance,,) = vlCvx.lockedBalances(address(this)); if (unlockableBalance == 0) return; // Get the amount needed in the Redeem Module uint256 withdrawalAmount = IWarRedeemModule(redeemModule).queuedForWithdrawal(address(cvx)); // If unlock == 0 relock everything if (withdrawalAmount == 0) { vlCvx.processExpiredLocks(true); } else { // otherwise withdraw everything and lock only what's left vlCvx.processExpiredLocks(false); withdrawalAmount = Math.min(unlockableBalance, withdrawalAmount); cvx.safeTransfer(address(redeemModule), withdrawalAmount); IWarRedeemModule(redeemModule).notifyUnlock(address(cvx), withdrawalAmount); uint256 relock = unlockableBalance - withdrawalAmount; if (relock > 0) { if (cvx.allowance(address(this), address(vlCvx)) != 0) cvx.safeApprove(address(vlCvx), 0); cvx.safeIncreaseAllowance(address(vlCvx), relock); vlCvx.lock(address(this), relock, 0); } } } /** * @dev Migrates the tokens hold by this contract to another address (& unlocks everything that can be unlocked) * @param receiver Address to receive the migrated tokens */ function _migrate(address receiver) internal override { // withdraws unlockable balance to receiver vlCvx.withdrawExpiredLocksTo(receiver); // withdraws rewards to controller _harvest(); } /** * @notice Recover ERC2O tokens in the contract * @dev Recover ERC2O tokens in the contract * @param _token Address of the ERC2O token * @return bool: success */ function recoverERC20(address _token) external onlyOwner returns (bool) { if (_token == address(cvx)) revert Errors.RecoverForbidden(); if (_token == address(0)) revert Errors.ZeroAddress(); uint256 amount = IERC20(_token).balanceOf(address(this)); if (amount == 0) revert Errors.ZeroValue(); IERC20(_token).safeTransfer(owner(), amount); return true; } }
//██████╗ █████╗ ██╗ █████╗ ██████╗ ██╗███╗ ██╗ //██╔══██╗██╔══██╗██║ ██╔══██╗██╔══██╗██║████╗ ██║ //██████╔╝███████║██║ ███████║██║ ██║██║██╔██╗ ██║ //██╔═══╝ ██╔══██║██║ ██╔══██║██║ ██║██║██║╚██╗██║ //██║ ██║ ██║███████╗██║ ██║██████╔╝██║██║ ╚████║ //╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝╚═╝ ╚═══╝ pragma solidity 0.8.16; //SPDX-License-Identifier: BUSL-1.1 import "./BaseLocker.sol"; import "interfaces/IIncentivizedLocker.sol"; import { IQuestDistributor, IDelegationDistributor, IVotiumDistributor, IHiddenHandDistributor } from "interfaces/external/incentives/IIncentivesDistributors.sol"; import {Errors} from "utils/Errors.sol"; /** * @title Incentivized Locker contract * @author Paladin * @notice Locker contract capable of claiming vote rewards from different sources */ abstract contract IncentivizedLocker is WarBaseLocker, IIncentivizedLocker { using SafeERC20 for IERC20; /** * @notice Checks that the caller is the controller */ modifier onlyController() { if (msg.sender != controller) revert Errors.CallerNotAllowed(); _; } /** * @notice Claims voting rewards from Quest * @param distributor Address of the contract distributing the rewards * @param questID ID of the Quest to claim rewards from * @param period Timestamp of the Quest period to claim * @param index Index in the Merkle Tree * @param account Address claiming the rewards * @param amount Amount to claim * @param merkleProof Merkle Proofs for the claim */ function claimQuestRewards( address distributor, uint256 questID, uint256 period, uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof ) external nonReentrant onlyController { IQuestDistributor _distributor = IQuestDistributor(distributor); IERC20 _token = IERC20(_distributor.questRewardToken(questID)); _distributor.claim(questID, period, index, account, amount, merkleProof); _token.safeTransfer(controller, amount); } /** * @notice Claims voting rewards from the Paladin Delegation address * @param distributor Address of the contract distributing the rewards * @param token Address of the reward token to claim * @param index Index in the Merkle Tree * @param account Address claiming the rewards * @param amount Amount to claim * @param merkleProof Merkle Proofs for the claim */ function claimDelegationRewards( address distributor, address token, uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof ) external nonReentrant onlyController { IDelegationDistributor(distributor).claim(token, index, account, amount, merkleProof); IERC20(token).safeTransfer(controller, amount); } /** * @notice Claims voting rewards from Votium * @param distributor Address of the contract distributing the rewards * @param token Address of the reward token to claim * @param index Index in the Merkle Tree * @param account Address claiming the rewards * @param amount Amount to claim * @param merkleProof Merkle Proofs for the claim */ function claimVotiumRewards( address distributor, address token, uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof ) external nonReentrant onlyController { IVotiumDistributor(distributor).claim(token, index, account, amount, merkleProof); IERC20(token).safeTransfer(controller, amount); } /** * @notice Claims voting rewards from HiddenHand * @param distributor Address of the contract distributing the rewards * @param claimParams Parameters for claims */ function claimHiddenHandRewards(address distributor, IHiddenHandDistributor.Claim[] calldata claimParams) external nonReentrant onlyController { require(claimParams.length == 1); IHiddenHandDistributor _distributor = IHiddenHandDistributor(distributor); address token = _distributor.rewards(claimParams[0].identifier).token; uint256 initialBalance = IERC20(token).balanceOf(address(this)); _distributor.claim(claimParams); uint256 claimedAmount = IERC20(token).balanceOf(address(this)) - initialBalance; IERC20(token).safeTransfer(controller, claimedAmount); } }
// SPDX-License-Identifier: Unlicensed pragma solidity 0.8.16; interface IDelegateRegistry { function delegation(address delegator, bytes32 id) external view returns (address); function setDelegate(bytes32 id, address delegate) external; function clearDelegate(bytes32 id) external; }
pragma solidity 0.8.16; interface CvxLockerV2 { event KickReward(address indexed _user, address indexed _kicked, uint256 _reward); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event Recovered(address _token, uint256 _amount); event RewardAdded(address indexed _token, uint256 _reward); event RewardPaid(address indexed _user, address indexed _rewardsToken, uint256 _reward); event Staked( address indexed _user, uint256 indexed _epoch, uint256 _paidAmount, uint256 _lockedAmount, uint256 _boostedAmount ); event Withdrawn(address indexed _user, uint256 _amount, bool _relocked); struct EarnedData { address token; uint256 amount; } struct LockedBalance { uint112 amount; uint112 boosted; uint32 unlockTime; } function addReward(address _rewardsToken, address _distributor, bool _useBoost) external; function approveRewardDistributor(address _rewardsToken, address _distributor, bool _approved) external; function balanceAtEpochOf(uint256 _epoch, address _user) external view returns (uint256 amount); function balanceOf(address _user) external view returns (uint256 amount); function balances(address) external view returns (uint112 locked, uint112 boosted, uint32 nextUnlockIndex); function boostPayment() external view returns (address); function boostRate() external view returns (uint256); function boostedSupply() external view returns (uint256); function checkpointEpoch() external; function claimableRewards(address _account) external view returns (EarnedData[] memory userRewards); function cvxCrv() external view returns (address); function cvxcrvStaking() external view returns (address); function decimals() external view returns (uint8); function denominator() external view returns (uint256); function epochCount() external view returns (uint256); function epochs(uint256) external view returns (uint224 supply, uint32 date); function findEpochId(uint256 _time) external view returns (uint256 epoch); function getReward(address _account, bool _stake) external; function getReward(address _account) external; function getRewardForDuration(address _rewardsToken) external view returns (uint256); function isShutdown() external view returns (bool); function kickExpiredLocks(address _account) external; function kickRewardEpochDelay() external view returns (uint256); function kickRewardPerEpoch() external view returns (uint256); function lastTimeRewardApplicable(address _rewardsToken) external view returns (uint256); function lock(address _account, uint256 _amount, uint256 _spendRatio) external; function lockDuration() external view returns (uint256); function lockedBalanceOf(address _user) external view returns (uint256 amount); function lockedBalances(address _user) external view returns (uint256 total, uint256 unlockable, uint256 locked, LockedBalance[] memory lockData); function lockedSupply() external view returns (uint256); function maximumBoostPayment() external view returns (uint256); function maximumStake() external view returns (uint256); function minimumStake() external view returns (uint256); function name() external view returns (string memory); function nextBoostRate() external view returns (uint256); function nextMaximumBoostPayment() external view returns (uint256); function notifyRewardAmount(address _rewardsToken, uint256 _reward) external; function owner() external view returns (address); function pendingLockAtEpochOf(uint256 _epoch, address _user) external view returns (uint256 amount); function pendingLockOf(address _user) external view returns (uint256 amount); function processExpiredLocks(bool _relock) external; function recoverERC20(address _tokenAddress, uint256 _tokenAmount) external; function renounceOwnership() external; function rewardData(address) external view returns ( bool useBoost, uint40 periodFinish, uint208 rewardRate, uint40 lastUpdateTime, uint208 rewardPerTokenStored ); function rewardDistributors(address, address) external view returns (bool); function rewardPerToken(address _rewardsToken) external view returns (uint256); function rewardTokens(uint256) external view returns (address); function rewardWeightOf(address _user) external view returns (uint256 amount); function rewards(address, address) external view returns (uint256); function rewardsDuration() external view returns (uint256); function setApprovals() external; function setBoost(uint256 _max, uint256 _rate, address _receivingAddress) external; function setKickIncentive(uint256 _rate, uint256 _delay) external; function setStakeLimits(uint256 _minimum, uint256 _maximum) external; function setStakingContract(address _staking) external; function shutdown() external; function stakeOffsetOnLock() external view returns (uint256); function stakingProxy() external view returns (address); function stakingToken() external view returns (address); function symbol() external view returns (string memory); function totalSupply() external view returns (uint256 supply); function totalSupplyAtEpoch(uint256 _epoch) external view returns (uint256 supply); function transferOwnership(address newOwner) external; function userLocks(address, uint256) external view returns (uint112 amount, uint112 boosted, uint32 unlockTime); function userRewardPerTokenPaid(address, address) external view returns (uint256); function version() external view returns (uint256); function withdrawExpiredLocksTo(address _withdrawTo) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
//██████╗ █████╗ ██╗ █████╗ ██████╗ ██╗███╗ ██╗ //██╔══██╗██╔══██╗██║ ██╔══██╗██╔══██╗██║████╗ ██║ //██████╔╝███████║██║ ███████║██║ ██║██║██╔██╗ ██║ //██╔═══╝ ██╔══██║██║ ██╔══██║██║ ██║██║██║╚██╗██║ //██║ ██║ ██║███████╗██║ ██║██████╔╝██║██║ ╚████║ //╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝╚═╝ ╚═══╝ pragma solidity 0.8.16; //SPDX-License-Identifier: BUSL-1.1 import {Harvestable} from "./Harvestable.sol"; import {IWarLocker} from "interfaces/IWarLocker.sol"; import {IERC20} from "openzeppelin/token/ERC20/IERC20.sol"; import {Pausable} from "openzeppelin/security/Pausable.sol"; import {ReentrancyGuard} from "openzeppelin/security/ReentrancyGuard.sol"; import {SafeERC20} from "openzeppelin/token/ERC20/utils/SafeERC20.sol"; import {Owner} from "utils/Owner.sol"; import {Errors} from "utils/Errors.sol"; import {IWarRedeemModule} from "interfaces/IWarRedeemModule.sol"; import {WarMinter} from "src/Minter.sol"; /** * @title Warlord Base Locker contract * @author Paladin * @notice Base implementation for Locker contracts */ abstract contract WarBaseLocker is IWarLocker, Pausable, Owner, ReentrancyGuard, Harvestable { /** * @notice Address of the voting power delegate */ address public delegate; /** * @notice Address of the Redeem Module contract */ address public redeemModule; /** * @notice Address of the Controller contract */ address public controller; /** * @notice Address of the Minter contract */ address public warMinter; /** * @notice Is the contract shutdown */ bool public isShutdown; /** * @notice Event emitted when the Controller is set */ event SetController(address newController); /** * @notice Event emitted when the Redeem Module is set */ event SetRedeemModule(address newRedeemModule); /** * @notice Event emitted when the delegate is updated */ event SetDelegate(address newDelegatee); /** * @notice Event emitted when the Locker is shutdown */ event Shutdown(); // Constructor constructor(address _controller, address _redeemModule, address _warMinter, address _delegatee) { if (_controller == address(0) || _redeemModule == address(0) || _warMinter == address(0)) { revert Errors.ZeroAddress(); } warMinter = _warMinter; controller = _controller; redeemModule = _redeemModule; delegate = _delegatee; } /** * @notice Returns the current total amount of locked tokens for this Locker */ function getCurrentLockedTokens() external view virtual returns (uint256); /** * @notice Updates the Controller contract * @param _controller Address of the Controller contract */ function setController(address _controller) external onlyOwner { if (_controller == address(0)) revert Errors.ZeroAddress(); if (_controller == controller) revert Errors.AlreadySet(); controller = _controller; emit SetController(_controller); } /** * @notice Updates the Redeem Module contract * @param _redeemModule Address of the Redeem Module contract */ function setRedeemModule(address _redeemModule) external onlyOwner { if (_redeemModule == address(0)) revert Errors.ZeroAddress(); if (_redeemModule == address(redeemModule)) revert Errors.AlreadySet(); redeemModule = _redeemModule; emit SetRedeemModule(_redeemModule); } /** * @dev Updates the Delegatee & delegates the voting power * @param _delegatee Address of the delegatee */ function _setDelegate(address _delegatee) internal virtual; /** * @notice Updates the Delegatee & delegates the voting power * @param _delegatee Address of the delegatee */ function setDelegate(address _delegatee) external onlyOwner { delegate = _delegatee; _setDelegate(_delegatee); emit SetDelegate(_delegatee); } /** * @dev Locks the tokens in the vlToken contract * @param amount Amount to lock */ function _lock(uint256 amount) internal virtual; /** * @notice Locks the tokens in the vlToken contract * @param amount Amount to lock */ function lock(uint256 amount) external nonReentrant whenNotPaused { if (warMinter != msg.sender) revert Errors.CallerNotAllowed(); if (amount == 0) revert Errors.ZeroValue(); _lock(amount); } /** * @dev Processes the unlock of tokens */ function _processUnlock() internal virtual; /** * @notice Processes the unlock of tokens */ function processUnlock() external nonReentrant whenNotPaused { _processUnlock(); } /** * @dev Harvest rewards & send them to the Controller */ function _harvest() internal virtual; /** * @notice Harvest rewards */ function harvest() external whenNotPaused { _harvest(); } /** * @dev Migrates the tokens hold by this contract to another address (& unlocks everything that can be unlocked) * @param receiver Address to receive the migrated tokens */ function _migrate(address receiver) internal virtual; /** * @notice Migrates the tokens hold by this contract to another address * @param receiver Address to receive the migrated tokens */ function migrate(address receiver) external nonReentrant onlyOwner whenPaused { if (receiver == address(0)) revert Errors.ZeroAddress(); _migrate(receiver); } /** * @notice Pause the contract */ function pause() external onlyOwner { _pause(); } /** * @notice Unpause the contract */ function unpause() external onlyOwner { if (isShutdown) revert Errors.LockerShutdown(); _unpause(); } /** * @notice Shutdowns the contract */ function shutdown() external onlyOwner whenPaused { isShutdown = true; emit Shutdown(); } }
// SPDX-License-Identifier: Unlicensed pragma solidity 0.8.16; import {IHiddenHandDistributor} from "interfaces/external/incentives/IIncentivesDistributors.sol"; interface IIncentivizedLocker { function claimQuestRewards( address distributor, uint256 questID, uint256 period, uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof ) external; function claimDelegationRewards( address distributor, address token, uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof ) external; function claimVotiumRewards( address distributor, address token, uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof ) external; function claimHiddenHandRewards(address distributor, IHiddenHandDistributor.Claim[] calldata claimParams) external; }
// SPDX-License-Identifier: Unlicensed pragma solidity 0.8.16; interface IQuestDistributor { function questRewardToken(uint256 questID) external view returns (address); //Struct ClaimParams struct ClaimParams { uint256 questID; uint256 period; uint256 index; uint256 amount; bytes32[] merkleProof; } function claim( uint256 questID, uint256 period, uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof ) external; } interface IDelegationDistributor { //Struct ClaimParams struct ClaimParams { address token; uint256 index; uint256 amount; bytes32[] merkleProof; } function claim(address token, uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof) external; } interface IVotiumDistributor { struct claimParam { address token; uint256 index; uint256 amount; bytes32[] merkleProof; } function claim(address token, uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof) external; } interface IHiddenHandDistributor { struct Reward { address token; bytes32 merkleRoot; bytes32 proof; uint256 updateCount; } function rewards(bytes32 indentifier) external view returns (Reward memory); struct Claim { bytes32 identifier; address account; uint256 amount; bytes32[] merkleProof; } function claim(Claim[] calldata _claims) external; }
pragma solidity 0.8.16; //SPDX-License-Identifier: Unlicensed library Errors { // Argument validation error ZeroAddress(); error ZeroValue(); error DifferentSizeArrays(uint256 size1, uint256 size2); error EmptyArray(); error AlreadySet(); error SameAddress(); error InvalidParameter(); // Ownership error CannotBeOwner(); error CallerNotPendingOwner(); error CallerNotAllowed(); // Token error AllowanceUnderflow(); // Controller error ListedLocker(); error ListedFarmer(); error InvalidFeeRatio(); error HarvestNotAllowed(); // Locker error NoWarLocker(); // _locker[token] == 0x0 error LockerShutdown(); error MismatchingLocker(address expected, address actual); // Minter error MintAmountBiggerThanSupply(); // Redeemer error NotListedLocker(); error InvalidIndex(); error CannotRedeemYet(); error AlreadyRedeemed(); error InvalidWeightSum(); // Staker error AlreadyListedDepositor(); error NotListedDepositor(); error MismatchingFarmer(); // MintRatio error ZeroMintAmount(); error SupplyAlreadySet(); error RatioAlreadySet(); // Harvestable error NotRewardToken(); // IFarmer error IncorrectToken(); error UnstakingMoreThanBalance(); // Maths error NumberExceed128Bits(); // AuraBalFarmer error SlippageTooHigh(); // Admin error RecoverForbidden(); // AuraLocker error DelegationRequiresLock(); }
//██████╗ █████╗ ██╗ █████╗ ██████╗ ██╗███╗ ██╗ //██╔══██╗██╔══██╗██║ ██╔══██╗██╔══██╗██║████╗ ██║ //██████╔╝███████║██║ ███████║██║ ██║██║██╔██╗ ██║ //██╔═══╝ ██╔══██║██║ ██╔══██║██║ ██║██║██║╚██╗██║ //██║ ██║ ██║███████╗██║ ██║██████╔╝██║██║ ╚████║ //╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝╚═╝ ╚═══╝ pragma solidity 0.8.16; //SPDX-License-Identifier: BUSL-1.1 import {IHarvestable} from "interfaces/IHarvestable.sol"; import {Owner} from "utils/Owner.sol"; import {Errors} from "utils/Errors.sol"; /** * @title Harvestable contract * @author Paladin * @notice Contract harvesting reward tokens to send to the Controller */ abstract contract Harvestable is IHarvestable, Owner { /** * @notice List of harvestable reward tokens */ address[] private _rewardTokens; /** * @notice Set to true when a reward token is listed */ mapping(address => bool) private _rewardAssigned; /** * @notice Returns the list of rewards token that can be harvested for this contract * @return address[] : List of tokens */ function rewardTokens() external view returns (address[] memory) { return _rewardTokens; } /** * @notice Adds a token to the list of harvestable tokens * @param reward Address of the token */ function addReward(address reward) external onlyOwner { if (reward == address(0)) revert Errors.ZeroAddress(); if (_rewardAssigned[reward]) revert Errors.AlreadySet(); _rewardTokens.push(reward); _rewardAssigned[reward] = true; } /** * @notice Removes a token from the list of harvestable tokens * @param reward Address of the token */ function removeReward(address reward) external onlyOwner { if (reward == address(0)) revert Errors.ZeroAddress(); if (!_rewardAssigned[reward]) revert Errors.NotRewardToken(); // remove the reward without leaving holes in the array address[] memory rewardTokens_ = _rewardTokens; uint256 length = rewardTokens_.length; uint256 lastIndex = length - 1; for (uint256 i; i < length;) { if (rewardTokens_[i] == reward) { if (i != lastIndex) { _rewardTokens[i] = rewardTokens_[lastIndex]; } _rewardTokens.pop(); break; } unchecked { ++i; } } // rewardToken is no longer part of the list _rewardAssigned[reward] = false; } }
// SPDX-License-Identifier: Unlicensed pragma solidity 0.8.16; import {IHarvestable} from "./IHarvestable.sol"; interface IWarLocker is IHarvestable { function lock(uint256 amount) external; function token() external view returns (address); function getCurrentLockedTokens() external view returns (uint256); function processUnlock() 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 (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.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 Pausable is Context { /** * @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. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { 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()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @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 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() { _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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // 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 // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.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)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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 pragma solidity 0.8.16; import "openzeppelin/access/Ownable.sol"; /** * @title Extend OZ Ownable contract */ /// @author Paladin contract Owner is Ownable { address public pendingOwner; event NewPendingOwner(address indexed previousPendingOwner, address indexed newPendingOwner); error CannotBeOwner(); error CallerNotPendingOwner(); error OwnerAddressZero(); function transferOwnership(address newOwner) public virtual override onlyOwner { if (newOwner == address(0)) revert OwnerAddressZero(); if (newOwner == owner()) revert CannotBeOwner(); address oldPendingOwner = pendingOwner; pendingOwner = newOwner; emit NewPendingOwner(oldPendingOwner, newOwner); } function acceptOwnership() public virtual { if (msg.sender != pendingOwner) revert CallerNotPendingOwner(); address newOwner = pendingOwner; _transferOwnership(pendingOwner); pendingOwner = address(0); emit NewPendingOwner(newOwner, address(0)); } }
// SPDX-License-Identifier: Unlicensed pragma solidity 0.8.16; interface IWarRedeemModule { function queuedForWithdrawal(address token) external returns (uint256); function notifyUnlock(address token, uint256 amount) external; }
//██████╗ █████╗ ██╗ █████╗ ██████╗ ██╗███╗ ██╗ //██╔══██╗██╔══██╗██║ ██╔══██╗██╔══██╗██║████╗ ██║ //██████╔╝███████║██║ ███████║██║ ██║██║██╔██╗ ██║ //██╔═══╝ ██╔══██║██║ ██╔══██║██║ ██║██║██║╚██╗██║ //██║ ██║ ██║███████╗██║ ██║██████╔╝██║██║ ╚████║ //╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝╚═╝ ╚═══╝ pragma solidity 0.8.16; //SPDX-License-Identifier: BUSL-1.1 import {IERC20} from "openzeppelin/token/ERC20/IERC20.sol"; import {SafeERC20} from "openzeppelin/token/ERC20/utils/SafeERC20.sol"; import {WarToken} from "./Token.sol"; import {IWarLocker} from "interfaces/IWarLocker.sol"; import {IRatios} from "interfaces/IRatios.sol"; import {Owner} from "utils/Owner.sol"; import {Errors} from "utils/Errors.sol"; import {ReentrancyGuard} from "openzeppelin/security/ReentrancyGuard.sol"; /** * @title Warlord Minter contract * @author Paladin * @notice Receives vlToken to deposit in Lockers and mints WAR */ contract WarMinter is Owner, ReentrancyGuard { using SafeERC20 for IERC20; /** * @notice WAR token contract */ WarToken public immutable war; /** * @notice Address of the contract calculating the mint amounts */ IRatios public ratios; /** * @notice Address of the Locker set for each token */ mapping(address => address) public lockers; /** * @notice Event emitted when the Ratio contract is updated */ event MintRatioUpdated(address oldMintRatio, address newMintRatio); // Constructor constructor(address _war, address _ratios) { if (_war == address(0) || _ratios == address(0)) revert Errors.ZeroAddress(); war = WarToken(_war); ratios = IRatios(_ratios); } /** * @notice Sets a new Locker for a given token * @param vlToken Address of the token * @param warLocker Address of the Locker */ function setLocker(address vlToken, address warLocker) external onlyOwner { if (vlToken == address(0) || warLocker == address(0)) revert Errors.ZeroAddress(); address expectedToken = IWarLocker(warLocker).token(); if (expectedToken != vlToken) revert Errors.MismatchingLocker(expectedToken, vlToken); lockers[vlToken] = warLocker; } /** * @notice Mints WAR token based of the amount of token deposited * @param vlToken Address of the token to deposit * @param amount Amount to deposit */ function mint(address vlToken, uint256 amount) external nonReentrant { _mint(vlToken, amount, msg.sender); } /** * @notice Mints WAR token based of the amount of token deposited, mints for the given receiver * @param vlToken Address of the token to deposit * @param amount Amount to deposit * @param receiver Address to receive the minted WAR */ function mint(address vlToken, uint256 amount, address receiver) external nonReentrant { _mint(vlToken, amount, receiver); } /** * @dev Pulls tokens to deposit in the associated Locker & mints WAR based on the deposited amount * @param vlToken Address of the token to deposit * @param amount Amount to deposit * @param receiver Address to receive the minted WAR */ function _mint(address vlToken, uint256 amount, address receiver) internal { if (amount == 0) revert Errors.ZeroValue(); if (vlToken == address(0) || receiver == address(0)) revert Errors.ZeroAddress(); if (lockers[vlToken] == address(0)) revert Errors.NoWarLocker(); // Load the correct Locker contract IWarLocker locker = IWarLocker(lockers[vlToken]); // Pull the tokens, and deposit them in the Locker IERC20(vlToken).safeTransferFrom(msg.sender, address(this), amount); if (IERC20(vlToken).allowance(address(this), address(locker)) != 0) IERC20(vlToken).safeApprove(address(locker), 0); IERC20(vlToken).safeIncreaseAllowance(address(locker), amount); locker.lock(amount); // Get the amount of WAR to mint for the deposited amount uint256 mintAmount = ratios.getMintAmount(vlToken, amount); if (mintAmount == 0) revert Errors.ZeroMintAmount(); // Mint the WAR to the receiver war.mint(receiver, mintAmount); } /** * @dev Pulls multiple tokens to deposit in the associated Locker & mints WAR based on the deposited amounts * @param vlTokens List of address of tokens to deposit * @param amounts List of amounts to deposit * @param receiver Address to receive the minted WAR */ function _mintMultiple(address[] calldata vlTokens, uint256[] calldata amounts, address receiver) internal { if (vlTokens.length != amounts.length) revert Errors.DifferentSizeArrays(vlTokens.length, amounts.length); if (vlTokens.length == 0) revert Errors.EmptyArray(); uint256 length = vlTokens.length; for (uint256 i; i < length;) { _mint(vlTokens[i], amounts[i], receiver); unchecked { ++i; } } } /** * @notice Mints WAR token based of the amounts of tokens deposited * @param vlTokens List of address of tokens to deposit * @param amounts List of amounts to deposit * @param receiver Address to receive the minted WAR */ function mintMultiple(address[] calldata vlTokens, uint256[] calldata amounts, address receiver) external nonReentrant { _mintMultiple(vlTokens, amounts, receiver); } /** * @notice Mints WAR token based of the amounts of tokens deposited * @param vlTokens List of address of tokens to deposit * @param amounts List of amounts to deposit */ function mintMultiple(address[] calldata vlTokens, uint256[] calldata amounts) external nonReentrant { _mintMultiple(vlTokens, amounts, msg.sender); } /** * @notice Sets the Ratio contract address * @param newRatios Address of the new Ratio contract */ function setRatios(address newRatios) external onlyOwner { if (newRatios == address(0)) revert Errors.ZeroAddress(); address oldRatios = address(ratios); ratios = IRatios(newRatios); emit MintRatioUpdated(oldRatios, newRatios); } }
// SPDX-License-Identifier: Unlicensed pragma solidity 0.8.16; interface IHarvestable { function harvest() external; function rewardTokens() external view returns (address[] memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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 Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.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 Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } }
//██████╗ █████╗ ██╗ █████╗ ██████╗ ██╗███╗ ██╗ //██╔══██╗██╔══██╗██║ ██╔══██╗██╔══██╗██║████╗ ██║ //██████╔╝███████║██║ ███████║██║ ██║██║██╔██╗ ██║ //██╔═══╝ ██╔══██║██║ ██╔══██║██║ ██║██║██║╚██╗██║ //██║ ██║ ██║███████╗██║ ██║██████╔╝██║██║ ╚████║ //╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝╚═╝ ╚═══╝ pragma solidity 0.8.16; //SPDX-License-Identifier: BUSL-1.1 import {ERC20} from "solmate/tokens/ERC20.sol"; import {AccessControl} from "openzeppelin/access/AccessControl.sol"; import {Errors} from "utils/Errors.sol"; /** * @title Warlord Token contract * @author Paladin * @notice ERC20 token minted by deposit in Warlord */ contract WarToken is ERC20, AccessControl { /** * @notice Event emitted when a new pending owner is set */ event NewPendingOwner(address indexed previousPendingOwner, address indexed newPendingOwner); /** * @notice Address of the current pending owner */ address public pendingOwner; /** * @notice Address of the current owner */ address public owner; /** * @notice Minter role */ bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); /** * @notice Burner role */ bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); // Constructor constructor() ERC20("Warlord token", "WAR", 18) { owner = msg.sender; _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _setRoleAdmin(DEFAULT_ADMIN_ROLE, keccak256("NO_ROLE")); } /** * @notice Set the given address as the new pending owner * @param newOwner Address to set as pending owner */ function transferOwnership(address newOwner) external onlyRole(DEFAULT_ADMIN_ROLE) { if (newOwner == address(0)) revert Errors.ZeroAddress(); if (newOwner == owner) revert Errors.CannotBeOwner(); address oldPendingOwner = pendingOwner; pendingOwner = newOwner; emit NewPendingOwner(oldPendingOwner, newOwner); } /** * @notice Accept the ownership transfer (only callable by the current pending owner) */ function acceptOwnership() external { if (msg.sender != pendingOwner) revert Errors.CallerNotPendingOwner(); address newOwner = pendingOwner; // Revoke the previous owner ADMIN role and set it for the new owner _revokeRole(DEFAULT_ADMIN_ROLE, owner); _grantRole(DEFAULT_ADMIN_ROLE, newOwner); owner = newOwner; // Reset the pending owner pendingOwner = address(0); emit NewPendingOwner(newOwner, address(0)); } /** * @notice Mints the given amount of tokens to the given address * @param to Address to mint token to * @param amount Amount of token to mint */ function mint(address to, uint256 amount) external onlyRole(MINTER_ROLE) { _mint(to, amount); } /** * @notice Burns the given amount of tokens from the given address * @param from Address to burn token from * @param amount Amount of token to burn */ function burn(address from, uint256 amount) external onlyRole(BURNER_ROLE) { _burn(from, amount); } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * @param spender The address of the spender * @param addedValue Amount of token to increase the allowance */ function increaseAllowance(address spender, uint256 addedValue) external returns (bool) { uint256 newAllowance = allowance[msg.sender][spender] + addedValue; allowance[msg.sender][spender] = newAllowance; emit Approval(msg.sender, spender, newAllowance); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * @param spender The address of the spender * @param subtractedValue Amount of token to increase the allowance */ function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool) { uint256 currentAllowance = allowance[msg.sender][spender]; if (subtractedValue > currentAllowance) revert Errors.AllowanceUnderflow(); uint256 newAllowance = currentAllowance - subtractedValue; allowance[msg.sender][spender] = newAllowance; emit Approval(msg.sender, spender, newAllowance); return true; } }
// SPDX-License-Identifier: Unlicensed pragma solidity 0.8.16; interface IRatios { function getTokenRatio(address token) external view returns (uint256); function addToken(address token, uint256 maxSupply) external; function getMintAmount(address token, uint256 amount) external view returns (uint256 mintAmount); function getBurnAmount(address token, uint256 amount) external view returns (uint256 burnAmount); }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Modern and gas efficient ERC20 + EIP-2612 implementation. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol) /// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol) /// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it. abstract contract ERC20 { /*////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event Transfer(address indexed from, address indexed to, uint256 amount); event Approval(address indexed owner, address indexed spender, uint256 amount); /*////////////////////////////////////////////////////////////// METADATA STORAGE //////////////////////////////////////////////////////////////*/ string public name; string public symbol; uint8 public immutable decimals; /*////////////////////////////////////////////////////////////// ERC20 STORAGE //////////////////////////////////////////////////////////////*/ uint256 public totalSupply; mapping(address => uint256) public balanceOf; mapping(address => mapping(address => uint256)) public allowance; /*////////////////////////////////////////////////////////////// EIP-2612 STORAGE //////////////////////////////////////////////////////////////*/ uint256 internal immutable INITIAL_CHAIN_ID; bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR; mapping(address => uint256) public nonces; /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor( string memory _name, string memory _symbol, uint8 _decimals ) { name = _name; symbol = _symbol; decimals = _decimals; INITIAL_CHAIN_ID = block.chainid; INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator(); } /*////////////////////////////////////////////////////////////// ERC20 LOGIC //////////////////////////////////////////////////////////////*/ function approve(address spender, uint256 amount) public virtual returns (bool) { allowance[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } function transfer(address to, uint256 amount) public virtual returns (bool) { balanceOf[msg.sender] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(msg.sender, to, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public virtual returns (bool) { uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals. if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount; balanceOf[from] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(from, to, amount); return true; } /*////////////////////////////////////////////////////////////// EIP-2612 LOGIC //////////////////////////////////////////////////////////////*/ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED"); // Unchecked because the only math done is incrementing // the owner's nonce which cannot realistically overflow. unchecked { address recoveredAddress = ecrecover( keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR(), keccak256( abi.encode( keccak256( "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)" ), owner, spender, value, nonces[owner]++, deadline ) ) ) ), v, r, s ); require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER"); allowance[recoveredAddress][spender] = value; } emit Approval(owner, spender, value); } function DOMAIN_SEPARATOR() public view virtual returns (bytes32) { return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator(); } function computeDomainSeparator() internal view virtual returns (bytes32) { return keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(name)), keccak256("1"), block.chainid, address(this) ) ); } /*////////////////////////////////////////////////////////////// INTERNAL MINT/BURN LOGIC //////////////////////////////////////////////////////////////*/ function _mint(address to, uint256 amount) internal virtual { totalSupply += amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(address(0), to, amount); } function _burn(address from, uint256 amount) internal virtual { balanceOf[from] -= amount; // Cannot underflow because a user's balance // will never be larger than the total supply. unchecked { totalSupply -= amount; } emit Transfer(from, address(0), amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "remappings": [ "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "interfaces/=src/interfaces/", "mocks/=test/mocks/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "openzeppelin/=lib/openzeppelin-contracts/contracts/", "solgen/=lib/solidity-generators/src/", "solidity-generators/=lib/solidity-generators/src/", "solmate/=lib/solmate/src/", "utils/=src/utils/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "bytecodeHash": "ipfs" }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "london", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_controller","type":"address"},{"internalType":"address","name":"_redeemModule","type":"address"},{"internalType":"address","name":"_warMinter","type":"address"},{"internalType":"address","name":"_delegatee","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadySet","type":"error"},{"inputs":[],"name":"CallerNotAllowed","type":"error"},{"inputs":[],"name":"CallerNotPendingOwner","type":"error"},{"inputs":[],"name":"CannotBeOwner","type":"error"},{"inputs":[],"name":"LockerShutdown","type":"error"},{"inputs":[],"name":"NotRewardToken","type":"error"},{"inputs":[],"name":"OwnerAddressZero","type":"error"},{"inputs":[],"name":"RecoverForbidden","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"inputs":[],"name":"ZeroValue","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousPendingOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newPendingOwner","type":"address"}],"name":"NewPendingOwner","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":"newController","type":"address"}],"name":"SetController","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newDelegatee","type":"address"}],"name":"SetDelegate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRedeemModule","type":"address"}],"name":"SetRedeemModule","type":"event"},{"anonymous":false,"inputs":[],"name":"Shutdown","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"reward","type":"address"}],"name":"addReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"distributor","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claimDelegationRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"distributor","type":"address"},{"components":[{"internalType":"bytes32","name":"identifier","type":"bytes32"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"internalType":"struct IHiddenHandDistributor.Claim[]","name":"claimParams","type":"tuple[]"}],"name":"claimHiddenHandRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"distributor","type":"address"},{"internalType":"uint256","name":"questID","type":"uint256"},{"internalType":"uint256","name":"period","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claimQuestRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"distributor","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claimVotiumRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"delegate","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentLockedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isShutdown","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","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":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"processUnlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"recoverERC20","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"redeemModule","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"reward","type":"address"}],"name":"removeReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardTokens","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_delegatee","type":"address"}],"name":"setDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_redeemModule","type":"address"}],"name":"setRedeemModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shutdown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"warMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002b9738038062002b978339810160408190526200003491620001ea565b6000805460ff19169055838383836200004d3362000174565b60016002556001600160a01b03841615806200007057506001600160a01b038316155b806200008357506001600160a01b038216155b15620000a25760405163d92e233d60e01b815260040160405180910390fd5b600880546001600160a01b03199081166001600160a01b0394851617909155600780548216958416959095179094556006805485169383169390931790925560058054909316918116919091179091556040516317b0dca160e31b8152660c6ecf05ccae8d60cb1b6004820152908216602482015273469788fe6e9e9681c6ebf3bf78e7fd26fc0154469063bd86e50890604401600060405180830381600087803b1580156200015157600080fd5b505af115801562000166573d6000803e3d6000fd5b505050505050505062000247565b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b80516001600160a01b0381168114620001e557600080fd5b919050565b600080600080608085870312156200020157600080fd5b6200020c85620001cd565b93506200021c60208601620001cd565b92506200022c60408601620001cd565b91506200023c60608601620001cd565b905092959194509250565b61294080620002576000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063bf86d6901161010f578063ec4be0f3116100a2578063f8b4848c11610071578063f8b4848c146101ea578063fa957c2e146103d1578063fc0c546a146103e4578063fc0e74d1146103fe57600080fd5b8063ec4be0f314610385578063f2fde38b14610398578063f71a0acf146103ab578063f77c4791146103be57600080fd5b8063ce5494bb116100de578063ce5494bb14610339578063d830b3b21461034c578063dd4670641461035f578063e30c39781461037257600080fd5b8063bf86d690146102ea578063c2b18aa0146102fe578063c89e436114610313578063ca5eb5e11461032657600080fd5b80638456cb591161018757806392eefe9b1161015657806392eefe9b1461029e5780639c9b2e21146102b15780639e8c708e146102c4578063a4d5e67c146102d757600080fd5b80638456cb5914610243578063898d846f1461024b5780638c3dd16b146102615780638da5cb5b1461027457600080fd5b80635603c39c116101c35780635603c39c1461020f5780635c975abb14610217578063715018a61461023357806379ba50971461023b57600080fd5b80631803cf00146101ea5780633f4ba83a146101ff5780634641257d14610207575b600080fd5b6101fd6101f83660046120ff565b610406565b005b6101fd6104ce565b6101fd61050b565b6101fd61051b565b60005460ff165b60405190151581526020015b60405180910390f35b6101fd61053d565b6101fd61054f565b6101fd6105d8565b6102536105e8565b60405190815260200161022a565b6101fd61026f36600461218e565b610668565b60005461010090046001600160a01b03165b6040516001600160a01b03909116815260200161022a565b6101fd6102ac36600461221d565b6107a6565b6101fd6102bf36600461221d565b610859565b61021e6102d236600461221d565b610929565b6101fd6102e536600461221d565b610a57565b60085461021e90600160a01b900460ff1681565b610306610c38565b60405161022a9190612241565b600554610286906001600160a01b031681565b6101fd61033436600461221d565b610c9a565b6101fd61034736600461221d565b610cff565b6101fd61035a36600461228e565b610d54565b6101fd61036d3660046122e3565b610fa0565b600154610286906001600160a01b031681565b600654610286906001600160a01b031681565b6101fd6103a636600461221d565b611005565b600854610286906001600160a01b031681565b600754610286906001600160a01b031681565b6101fd6103df36600461221d565b6110c8565b734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b610286565b6101fd611174565b61040e6111c2565b6007546001600160a01b031633146104395760405163015783e960e51b815260040160405180910390fd5b604051630968c76b60e11b81526001600160a01b038816906312d18ed69061046f9089908990899089908990899060040161232e565b600060405180830381600087803b15801561048957600080fd5b505af115801561049d573d6000803e3d6000fd5b50506007546104bb92506001600160a01b038981169250168561121e565b6104c56001600255565b50505050505050565b6104d6611281565b600854600160a01b900460ff1615610501576040516372ce074560e01b815260040160405180910390fd5b6105096112e1565b565b610513611333565b610509611379565b6105236111c2565b61052b611333565b610533611518565b6105096001600255565b610545611281565b6105096000611908565b6001546001600160a01b0316331461057a576040516305e05b4b60e31b815260040160405180910390fd5b6001546001600160a01b031661058f81611908565b600180546001600160a01b03191690556040516000906001600160a01b038316907fb3d55174552271a4f1aaf36b72f50381e892171636b3fb5447fe00e995e7a37b908390a350565b6105e0611281565b610509611961565b604051630241d3fb60e11b815230600482015260009081906000805160206128eb83398151915290630483a7f690602401600060405180830381865afa158015610636573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261065e919081019061244a565b5091949350505050565b6106706111c2565b6007546001600160a01b0316331461069b5760405163015783e960e51b815260040160405180910390fd5b604051632561875760e21b81526004810188905288906000906001600160a01b038316906395861d5c90602401602060405180830381865afa1580156106e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107099190612549565b604051630c3a0fff60e01b81529091506001600160a01b03831690630c3a0fff90610744908c908c908c908c908c908c908c90600401612566565b600060405180830381600087803b15801561075e57600080fd5b505af1158015610772573d6000803e3d6000fd5b505060075461079092506001600160a01b038481169250168761121e565b505061079c6001600255565b5050505050505050565b6107ae611281565b6001600160a01b0381166107d55760405163d92e233d60e01b815260040160405180910390fd5b6007546001600160a01b03908116908216036108045760405163a741a04560e01b815260040160405180910390fd5b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f4ff638452bbf33c012645d18ae6f05515ff5f2d1dfb0cece8cbf018c60903f70906020015b60405180910390a150565b610861611281565b6001600160a01b0381166108885760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff16156108c25760405163a741a04560e01b815260040160405180910390fd5b6003805460018181019092557fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b039093166001600160a01b031990931683179055600091825260046020526040909120805460ff19169091179055565b6000610933611281565b734e3fbd56cd56c3e72c1403e103b45db9da5b9d2a196001600160a01b03831601610971576040516319a04a7160e21b815260040160405180910390fd5b6001600160a01b0382166109985760405163d92e233d60e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa1580156109df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0391906125ad565b905080600003610a2657604051637c946ed760e01b815260040160405180910390fd5b600054610a4c9061010090046001600160a01b03166001600160a01b038516908361121e565b60019150505b919050565b610a5f611281565b6001600160a01b038116610a865760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff16610abf5760405163804543b560e01b815260040160405180910390fd5b60006003805480602002602001604051908101604052809291908181526020018280548015610b1757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610af9575b5050835193945060009250610b31915060019050836125dc565b905060005b82811015610c1357846001600160a01b0316848281518110610b5a57610b5a6125ef565b60200260200101516001600160a01b031603610c0b57818114610bd357838281518110610b8957610b896125ef565b602002602001015160038281548110610ba457610ba46125ef565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b6003805480610be457610be4612605565b600082815260209020810160001990810180546001600160a01b0319169055019055610c13565b600101610b36565b505050506001600160a01b03166000908152600460205260409020805460ff19169055565b60606003805480602002602001604051908101604052809291908181526020018280548015610c9057602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610c72575b5050505050905090565b610ca2611281565b600580546001600160a01b0319166001600160a01b038316179055610cc68161199e565b6040516001600160a01b03821681527fe04946a482d4e81124cf46321be733aca4133ddfc19ce89a6106b4de11d33c8b9060200161084e565b610d076111c2565b610d0f611281565b610d17611a1f565b6001600160a01b038116610d3e5760405163d92e233d60e01b815260040160405180910390fd5b610d4781611a68565b610d516001600255565b50565b610d5c6111c2565b6007546001600160a01b03163314610d875760405163015783e960e51b815260040160405180910390fd5b60018114610d9457600080fd5b8260006001600160a01b03821663938d967a85858481610db657610db66125ef565b9050602002810190610dc8919061261b565b60405160e083901b6001600160e01b031916815290356004820152602401608060405180830381865afa158015610e03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e27919061263b565b516040516370a0823160e01b81523060048201529091506000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610e72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9691906125ad565b604051630ad0a67360e31b81529091506001600160a01b03841690635685339890610ec790889088906004016126aa565b600060405180830381600087803b158015610ee157600080fd5b505af1158015610ef5573d6000803e3d6000fd5b50506040516370a0823160e01b8152306004820152600092508391506001600160a01b038516906370a0823190602401602060405180830381865afa158015610f42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6691906125ad565b610f7091906125dc565b600754909150610f8d906001600160a01b0385811691168361121e565b50505050610f9b6001600255565b505050565b610fa86111c2565b610fb0611333565b6008546001600160a01b03163314610fdb5760405163015783e960e51b815260040160405180910390fd5b80600003610ffc57604051637c946ed760e01b815260040160405180910390fd5b610d4781611ad7565b61100d611281565b6001600160a01b03811661103457604051639c41f49560e01b815260040160405180910390fd5b60005461010090046001600160a01b03166001600160a01b0316816001600160a01b0316036110765760405163d5e889bf60e01b815260040160405180910390fd5b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fb3d55174552271a4f1aaf36b72f50381e892171636b3fb5447fe00e995e7a37b90600090a35050565b6110d0611281565b6001600160a01b0381166110f75760405163d92e233d60e01b815260040160405180910390fd5b6006546001600160a01b03908116908216036111265760405163a741a04560e01b815260040160405180910390fd5b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527f4a413d15e13f95a55a50d32f338063514ce78e1c48ca9bb8526841b33f9854f99060200161084e565b61117c611281565b611184611a1f565b6008805460ff60a01b1916600160a01b1790556040517f4426aa1fb73e391071491fcfe21a88b5c38a0a0333a1f6e77161470439704cf890600090a1565b60028054036112185760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60028055565b6040516001600160a01b038316602482015260448101829052610f9b90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611c1d565b6000546001600160a01b036101009091041633146105095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161120f565b6112e9611a1f565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60005460ff16156105095760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161120f565b60405163dc01f60d60e01b81523060048201526000906000805160206128eb8339815191529063dc01f60d90602401600060405180830381865afa1580156113c5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113ed9190810190612798565b8051604051637050ccd960e01b815230600482015260006024820152919250906000805160206128eb83398151915290637050ccd990604401600060405180830381600087803b15801561144057600080fd5b505af1158015611454573d6000803e3d6000fd5b5050505060005b81811015610f9b576000838281518110611477576114776125ef565b6020908102919091010151516040516370a0823160e01b81523060048201529091506000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156114cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f191906125ad565b60075490915061150e906001600160a01b0384811691168361121e565b505060010161145b565b611520611379565b604051630241d3fb60e11b81523060048201526000906000805160206128eb83398151915290630483a7f690602401600060405180830381865afa15801561156c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611594919081019061244a565b5050915050806000036115a45750565b60065460405162f697ff60e61b8152734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b60048201526000916001600160a01b031690633da5ffc0906024016020604051808303816000875af1158015611602573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061162691906125ad565b9050806000036116935760405163312ff83960e01b8152600160048201526000805160206128eb8339815191529063312ff83990602401600060405180830381600087803b15801561167757600080fd5b505af115801561168b573d6000803e3d6000fd5b505050505050565b60405163312ff83960e01b8152600060048201526000805160206128eb8339815191529063312ff83990602401600060405180830381600087803b1580156116da57600080fd5b505af11580156116ee573d6000803e3d6000fd5b505050506116fc8282611cef565b60065490915061172b90734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b906001600160a01b03168361121e565b60065460405163720536d760e01b8152734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6004820152602481018390526001600160a01b039091169063720536d790604401600060405180830381600087803b15801561178b57600080fd5b505af115801561179f573d6000803e3d6000fd5b50505050600081836117b191906125dc565b90508015610f9b57604051636eb1769f60e11b81523060048201526000805160206128eb8339815191526024820152734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b9063dd62ed3e90604401602060405180830381865afa15801561181c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184091906125ad565b1561187357611873734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6000805160206128eb8339815191526000611d09565b6118a0734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6000805160206128eb83398151915283611e1e565b60405163e2ab691d60e01b815230600482015260248101829052600060448201526000805160206128eb8339815191529063e2ab691d90606401600060405180830381600087803b1580156118f457600080fd5b505af11580156104c5573d6000803e3d6000fd5b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b611969611333565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113163390565b6040516317b0dca160e31b8152660c6ecf05ccae8d60cb1b60048201526001600160a01b038216602482015273469788fe6e9e9681c6ebf3bf78e7fd26fc0154469063bd86e508906044015b600060405180830381600087803b158015611a0457600080fd5b505af1158015611a18573d6000803e3d6000fd5b5050505050565b60005460ff166105095760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161120f565b60405163d36f12fb60e01b81526001600160a01b03821660048201526000805160206128eb8339815191529063d36f12fb90602401600060405180830381600087803b158015611ab757600080fd5b505af1158015611acb573d6000803e3d6000fd5b50505050610d51611379565b611af7734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b333084611ed6565b604051636eb1769f60e11b81523060048201526000805160206128eb8339815191526024820152734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b9063dd62ed3e90604401602060405180830381865afa158015611b5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b7e91906125ad565b15611bb157611bb1734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6000805160206128eb8339815191526000611d09565b611bde734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6000805160206128eb83398151915283611e1e565b60405163e2ab691d60e01b815230600482015260248101829052600060448201526000805160206128eb8339815191529063e2ab691d906064016119ea565b6000611c72826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611f0e9092919063ffffffff16565b805190915015610f9b5780806020019051810190611c90919061284c565b610f9b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161120f565b6000818310611cfe5781611d00565b825b90505b92915050565b801580611d835750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015611d5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8191906125ad565b155b611dee5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606482015260840161120f565b6040516001600160a01b038316602482015260448101829052610f9b90849063095ea7b360e01b9060640161124a565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e90604401602060405180830381865afa158015611e6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9391906125ad565b611e9d919061286e565b6040516001600160a01b038516602482015260448101829052909150611ed090859063095ea7b360e01b9060640161124a565b50505050565b6040516001600160a01b0380851660248301528316604482015260648101829052611ed09085906323b872dd60e01b9060840161124a565b6060611f1d8484600085611f25565b949350505050565b606082471015611f865760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161120f565b600080866001600160a01b03168587604051611fa291906128a5565b60006040518083038185875af1925050503d8060008114611fdf576040519150601f19603f3d011682016040523d82523d6000602084013e611fe4565b606091505b5091509150611ff587838387612000565b979650505050505050565b6060831561206f578251600003612068576001600160a01b0385163b6120685760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161120f565b5081611f1d565b611f1d83838151156120845781518083602001fd5b8060405162461bcd60e51b815260040161120f91906128b7565b6001600160a01b0381168114610d5157600080fd5b60008083601f8401126120c557600080fd5b50813567ffffffffffffffff8111156120dd57600080fd5b6020830191508360208260051b85010111156120f857600080fd5b9250929050565b600080600080600080600060c0888a03121561211a57600080fd5b87356121258161209e565b965060208801356121358161209e565b955060408801359450606088013561214c8161209e565b93506080880135925060a088013567ffffffffffffffff81111561216f57600080fd5b61217b8a828b016120b3565b989b979a50959850939692959293505050565b60008060008060008060008060e0898b0312156121aa57600080fd5b88356121b58161209e565b975060208901359650604089013595506060890135945060808901356121da8161209e565b935060a0890135925060c089013567ffffffffffffffff8111156121fd57600080fd5b6122098b828c016120b3565b999c989b5096995094979396929594505050565b60006020828403121561222f57600080fd5b813561223a8161209e565b9392505050565b6020808252825182820181905260009190848201906040850190845b818110156122825783516001600160a01b03168352928401929184019160010161225d565b50909695505050505050565b6000806000604084860312156122a357600080fd5b83356122ae8161209e565b9250602084013567ffffffffffffffff8111156122ca57600080fd5b6122d6868287016120b3565b9497909650939450505050565b6000602082840312156122f557600080fd5b5035919050565b81835260006001600160fb1b0383111561231557600080fd5b8260051b80836020870137939093016020019392505050565b6001600160a01b03878116825260208201879052851660408201526060810184905260a06080820181905260009061236990830184866122fc565b98975050505050505050565b634e487b7160e01b600052604160045260246000fd5b6040516060810167ffffffffffffffff811182821017156123ae576123ae612375565b60405290565b6040805190810167ffffffffffffffff811182821017156123ae576123ae612375565b604051601f8201601f1916810167ffffffffffffffff8111828210171561240057612400612375565b604052919050565b600067ffffffffffffffff82111561242257612422612375565b5060051b60200190565b80516dffffffffffffffffffffffffffff81168114610a5257600080fd5b6000806000806080858703121561246057600080fd5b845193506020808601519350604080870151935060608088015167ffffffffffffffff81111561248f57600080fd5b8801601f81018a136124a057600080fd5b80516124b36124ae82612408565b6123d7565b8181529083028201850190858101908c8311156124cf57600080fd5b928601925b828410156125385784848e0312156124ec5760008081fd5b6124f461238b565b6124fd8561242c565b815261250a88860161242c565b888201528685015163ffffffff811681146125255760008081fd5b81880152825292840192908601906124d4565b999c989b5096995050505050505050565b60006020828403121561255b57600080fd5b815161223a8161209e565b87815286602082015285604082015260018060a01b038516606082015283608082015260c060a082015260006125a060c0830184866122fc565b9998505050505050505050565b6000602082840312156125bf57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b81810381811115611d0357611d036125c6565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b60008235607e1983360301811261263157600080fd5b9190910192915050565b60006080828403121561264d57600080fd5b6040516080810181811067ffffffffffffffff8211171561267057612670612375565b604052825161267e8161209e565b808252506020830151602082015260408301516040820152606083015160608201528091505092915050565b60208082528181018390526000906040808401600586811b8601830188865b8981101561278957888303603f190185528135368c9003607e190181126126ef57600080fd5b8b01803584526080888201356127048161209e565b6001600160a01b0316858a0152818801358886015260608083013536849003601e1901811261273257600080fd5b90920189810192903567ffffffffffffffff81111561275057600080fd5b80881b360384131561276157600080fd5b828288015261277383880182866122fc565b988b0198965050509288019250506001016126c9565b50909998505050505050505050565b600060208083850312156127ab57600080fd5b825167ffffffffffffffff8111156127c257600080fd5b8301601f810185136127d357600080fd5b80516127e16124ae82612408565b81815260069190911b8201830190838101908783111561280057600080fd5b928401925b82841015611ff5576040848903121561281e5760008081fd5b6128266123b4565b84516128318161209e565b81528486015186820152825260409093019290840190612805565b60006020828403121561285e57600080fd5b8151801515811461223a57600080fd5b80820180821115611d0357611d036125c6565b60005b8381101561289c578181015183820152602001612884565b50506000910152565b60008251612631818460208701612881565b60208152600082518060208401526128d6816040850160208701612881565b601f01601f1916919091016040019291505056fe00000000000000000000000072a19342e8f1838460ebfccef09f6585e32db86ea2646970667358221220426750908bca1ab5ea96ae86445f22c89aedf25338b3ccf2a6faedcd3d3d662d64736f6c63430008100033000000000000000000000000fdeac9f9e4a5a7340ac57b47c67d383fb4f13dbb0000000000000000000000004787ef084c1d57ed87d58a716d991f8a9cd3828c000000000000000000000000144a689a8261f1863c89954930ecae46bd95034100000000000000000000000068378fcb3a27d5613afcfddb590d35a6e751972c
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063bf86d6901161010f578063ec4be0f3116100a2578063f8b4848c11610071578063f8b4848c146101ea578063fa957c2e146103d1578063fc0c546a146103e4578063fc0e74d1146103fe57600080fd5b8063ec4be0f314610385578063f2fde38b14610398578063f71a0acf146103ab578063f77c4791146103be57600080fd5b8063ce5494bb116100de578063ce5494bb14610339578063d830b3b21461034c578063dd4670641461035f578063e30c39781461037257600080fd5b8063bf86d690146102ea578063c2b18aa0146102fe578063c89e436114610313578063ca5eb5e11461032657600080fd5b80638456cb591161018757806392eefe9b1161015657806392eefe9b1461029e5780639c9b2e21146102b15780639e8c708e146102c4578063a4d5e67c146102d757600080fd5b80638456cb5914610243578063898d846f1461024b5780638c3dd16b146102615780638da5cb5b1461027457600080fd5b80635603c39c116101c35780635603c39c1461020f5780635c975abb14610217578063715018a61461023357806379ba50971461023b57600080fd5b80631803cf00146101ea5780633f4ba83a146101ff5780634641257d14610207575b600080fd5b6101fd6101f83660046120ff565b610406565b005b6101fd6104ce565b6101fd61050b565b6101fd61051b565b60005460ff165b60405190151581526020015b60405180910390f35b6101fd61053d565b6101fd61054f565b6101fd6105d8565b6102536105e8565b60405190815260200161022a565b6101fd61026f36600461218e565b610668565b60005461010090046001600160a01b03165b6040516001600160a01b03909116815260200161022a565b6101fd6102ac36600461221d565b6107a6565b6101fd6102bf36600461221d565b610859565b61021e6102d236600461221d565b610929565b6101fd6102e536600461221d565b610a57565b60085461021e90600160a01b900460ff1681565b610306610c38565b60405161022a9190612241565b600554610286906001600160a01b031681565b6101fd61033436600461221d565b610c9a565b6101fd61034736600461221d565b610cff565b6101fd61035a36600461228e565b610d54565b6101fd61036d3660046122e3565b610fa0565b600154610286906001600160a01b031681565b600654610286906001600160a01b031681565b6101fd6103a636600461221d565b611005565b600854610286906001600160a01b031681565b600754610286906001600160a01b031681565b6101fd6103df36600461221d565b6110c8565b734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b610286565b6101fd611174565b61040e6111c2565b6007546001600160a01b031633146104395760405163015783e960e51b815260040160405180910390fd5b604051630968c76b60e11b81526001600160a01b038816906312d18ed69061046f9089908990899089908990899060040161232e565b600060405180830381600087803b15801561048957600080fd5b505af115801561049d573d6000803e3d6000fd5b50506007546104bb92506001600160a01b038981169250168561121e565b6104c56001600255565b50505050505050565b6104d6611281565b600854600160a01b900460ff1615610501576040516372ce074560e01b815260040160405180910390fd5b6105096112e1565b565b610513611333565b610509611379565b6105236111c2565b61052b611333565b610533611518565b6105096001600255565b610545611281565b6105096000611908565b6001546001600160a01b0316331461057a576040516305e05b4b60e31b815260040160405180910390fd5b6001546001600160a01b031661058f81611908565b600180546001600160a01b03191690556040516000906001600160a01b038316907fb3d55174552271a4f1aaf36b72f50381e892171636b3fb5447fe00e995e7a37b908390a350565b6105e0611281565b610509611961565b604051630241d3fb60e11b815230600482015260009081906000805160206128eb83398151915290630483a7f690602401600060405180830381865afa158015610636573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261065e919081019061244a565b5091949350505050565b6106706111c2565b6007546001600160a01b0316331461069b5760405163015783e960e51b815260040160405180910390fd5b604051632561875760e21b81526004810188905288906000906001600160a01b038316906395861d5c90602401602060405180830381865afa1580156106e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107099190612549565b604051630c3a0fff60e01b81529091506001600160a01b03831690630c3a0fff90610744908c908c908c908c908c908c908c90600401612566565b600060405180830381600087803b15801561075e57600080fd5b505af1158015610772573d6000803e3d6000fd5b505060075461079092506001600160a01b038481169250168761121e565b505061079c6001600255565b5050505050505050565b6107ae611281565b6001600160a01b0381166107d55760405163d92e233d60e01b815260040160405180910390fd5b6007546001600160a01b03908116908216036108045760405163a741a04560e01b815260040160405180910390fd5b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f4ff638452bbf33c012645d18ae6f05515ff5f2d1dfb0cece8cbf018c60903f70906020015b60405180910390a150565b610861611281565b6001600160a01b0381166108885760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff16156108c25760405163a741a04560e01b815260040160405180910390fd5b6003805460018181019092557fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b039093166001600160a01b031990931683179055600091825260046020526040909120805460ff19169091179055565b6000610933611281565b734e3fbd56cd56c3e72c1403e103b45db9da5b9d2a196001600160a01b03831601610971576040516319a04a7160e21b815260040160405180910390fd5b6001600160a01b0382166109985760405163d92e233d60e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa1580156109df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0391906125ad565b905080600003610a2657604051637c946ed760e01b815260040160405180910390fd5b600054610a4c9061010090046001600160a01b03166001600160a01b038516908361121e565b60019150505b919050565b610a5f611281565b6001600160a01b038116610a865760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff16610abf5760405163804543b560e01b815260040160405180910390fd5b60006003805480602002602001604051908101604052809291908181526020018280548015610b1757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610af9575b5050835193945060009250610b31915060019050836125dc565b905060005b82811015610c1357846001600160a01b0316848281518110610b5a57610b5a6125ef565b60200260200101516001600160a01b031603610c0b57818114610bd357838281518110610b8957610b896125ef565b602002602001015160038281548110610ba457610ba46125ef565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b6003805480610be457610be4612605565b600082815260209020810160001990810180546001600160a01b0319169055019055610c13565b600101610b36565b505050506001600160a01b03166000908152600460205260409020805460ff19169055565b60606003805480602002602001604051908101604052809291908181526020018280548015610c9057602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610c72575b5050505050905090565b610ca2611281565b600580546001600160a01b0319166001600160a01b038316179055610cc68161199e565b6040516001600160a01b03821681527fe04946a482d4e81124cf46321be733aca4133ddfc19ce89a6106b4de11d33c8b9060200161084e565b610d076111c2565b610d0f611281565b610d17611a1f565b6001600160a01b038116610d3e5760405163d92e233d60e01b815260040160405180910390fd5b610d4781611a68565b610d516001600255565b50565b610d5c6111c2565b6007546001600160a01b03163314610d875760405163015783e960e51b815260040160405180910390fd5b60018114610d9457600080fd5b8260006001600160a01b03821663938d967a85858481610db657610db66125ef565b9050602002810190610dc8919061261b565b60405160e083901b6001600160e01b031916815290356004820152602401608060405180830381865afa158015610e03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e27919061263b565b516040516370a0823160e01b81523060048201529091506000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610e72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9691906125ad565b604051630ad0a67360e31b81529091506001600160a01b03841690635685339890610ec790889088906004016126aa565b600060405180830381600087803b158015610ee157600080fd5b505af1158015610ef5573d6000803e3d6000fd5b50506040516370a0823160e01b8152306004820152600092508391506001600160a01b038516906370a0823190602401602060405180830381865afa158015610f42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6691906125ad565b610f7091906125dc565b600754909150610f8d906001600160a01b0385811691168361121e565b50505050610f9b6001600255565b505050565b610fa86111c2565b610fb0611333565b6008546001600160a01b03163314610fdb5760405163015783e960e51b815260040160405180910390fd5b80600003610ffc57604051637c946ed760e01b815260040160405180910390fd5b610d4781611ad7565b61100d611281565b6001600160a01b03811661103457604051639c41f49560e01b815260040160405180910390fd5b60005461010090046001600160a01b03166001600160a01b0316816001600160a01b0316036110765760405163d5e889bf60e01b815260040160405180910390fd5b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fb3d55174552271a4f1aaf36b72f50381e892171636b3fb5447fe00e995e7a37b90600090a35050565b6110d0611281565b6001600160a01b0381166110f75760405163d92e233d60e01b815260040160405180910390fd5b6006546001600160a01b03908116908216036111265760405163a741a04560e01b815260040160405180910390fd5b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527f4a413d15e13f95a55a50d32f338063514ce78e1c48ca9bb8526841b33f9854f99060200161084e565b61117c611281565b611184611a1f565b6008805460ff60a01b1916600160a01b1790556040517f4426aa1fb73e391071491fcfe21a88b5c38a0a0333a1f6e77161470439704cf890600090a1565b60028054036112185760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60028055565b6040516001600160a01b038316602482015260448101829052610f9b90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611c1d565b6000546001600160a01b036101009091041633146105095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161120f565b6112e9611a1f565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60005460ff16156105095760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161120f565b60405163dc01f60d60e01b81523060048201526000906000805160206128eb8339815191529063dc01f60d90602401600060405180830381865afa1580156113c5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113ed9190810190612798565b8051604051637050ccd960e01b815230600482015260006024820152919250906000805160206128eb83398151915290637050ccd990604401600060405180830381600087803b15801561144057600080fd5b505af1158015611454573d6000803e3d6000fd5b5050505060005b81811015610f9b576000838281518110611477576114776125ef565b6020908102919091010151516040516370a0823160e01b81523060048201529091506000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156114cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f191906125ad565b60075490915061150e906001600160a01b0384811691168361121e565b505060010161145b565b611520611379565b604051630241d3fb60e11b81523060048201526000906000805160206128eb83398151915290630483a7f690602401600060405180830381865afa15801561156c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611594919081019061244a565b5050915050806000036115a45750565b60065460405162f697ff60e61b8152734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b60048201526000916001600160a01b031690633da5ffc0906024016020604051808303816000875af1158015611602573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061162691906125ad565b9050806000036116935760405163312ff83960e01b8152600160048201526000805160206128eb8339815191529063312ff83990602401600060405180830381600087803b15801561167757600080fd5b505af115801561168b573d6000803e3d6000fd5b505050505050565b60405163312ff83960e01b8152600060048201526000805160206128eb8339815191529063312ff83990602401600060405180830381600087803b1580156116da57600080fd5b505af11580156116ee573d6000803e3d6000fd5b505050506116fc8282611cef565b60065490915061172b90734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b906001600160a01b03168361121e565b60065460405163720536d760e01b8152734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6004820152602481018390526001600160a01b039091169063720536d790604401600060405180830381600087803b15801561178b57600080fd5b505af115801561179f573d6000803e3d6000fd5b50505050600081836117b191906125dc565b90508015610f9b57604051636eb1769f60e11b81523060048201526000805160206128eb8339815191526024820152734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b9063dd62ed3e90604401602060405180830381865afa15801561181c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184091906125ad565b1561187357611873734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6000805160206128eb8339815191526000611d09565b6118a0734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6000805160206128eb83398151915283611e1e565b60405163e2ab691d60e01b815230600482015260248101829052600060448201526000805160206128eb8339815191529063e2ab691d90606401600060405180830381600087803b1580156118f457600080fd5b505af11580156104c5573d6000803e3d6000fd5b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b611969611333565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113163390565b6040516317b0dca160e31b8152660c6ecf05ccae8d60cb1b60048201526001600160a01b038216602482015273469788fe6e9e9681c6ebf3bf78e7fd26fc0154469063bd86e508906044015b600060405180830381600087803b158015611a0457600080fd5b505af1158015611a18573d6000803e3d6000fd5b5050505050565b60005460ff166105095760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161120f565b60405163d36f12fb60e01b81526001600160a01b03821660048201526000805160206128eb8339815191529063d36f12fb90602401600060405180830381600087803b158015611ab757600080fd5b505af1158015611acb573d6000803e3d6000fd5b50505050610d51611379565b611af7734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b333084611ed6565b604051636eb1769f60e11b81523060048201526000805160206128eb8339815191526024820152734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b9063dd62ed3e90604401602060405180830381865afa158015611b5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b7e91906125ad565b15611bb157611bb1734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6000805160206128eb8339815191526000611d09565b611bde734e3fbd56cd56c3e72c1403e103b45db9da5b9d2b6000805160206128eb83398151915283611e1e565b60405163e2ab691d60e01b815230600482015260248101829052600060448201526000805160206128eb8339815191529063e2ab691d906064016119ea565b6000611c72826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611f0e9092919063ffffffff16565b805190915015610f9b5780806020019051810190611c90919061284c565b610f9b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161120f565b6000818310611cfe5781611d00565b825b90505b92915050565b801580611d835750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015611d5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8191906125ad565b155b611dee5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606482015260840161120f565b6040516001600160a01b038316602482015260448101829052610f9b90849063095ea7b360e01b9060640161124a565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e90604401602060405180830381865afa158015611e6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9391906125ad565b611e9d919061286e565b6040516001600160a01b038516602482015260448101829052909150611ed090859063095ea7b360e01b9060640161124a565b50505050565b6040516001600160a01b0380851660248301528316604482015260648101829052611ed09085906323b872dd60e01b9060840161124a565b6060611f1d8484600085611f25565b949350505050565b606082471015611f865760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161120f565b600080866001600160a01b03168587604051611fa291906128a5565b60006040518083038185875af1925050503d8060008114611fdf576040519150601f19603f3d011682016040523d82523d6000602084013e611fe4565b606091505b5091509150611ff587838387612000565b979650505050505050565b6060831561206f578251600003612068576001600160a01b0385163b6120685760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161120f565b5081611f1d565b611f1d83838151156120845781518083602001fd5b8060405162461bcd60e51b815260040161120f91906128b7565b6001600160a01b0381168114610d5157600080fd5b60008083601f8401126120c557600080fd5b50813567ffffffffffffffff8111156120dd57600080fd5b6020830191508360208260051b85010111156120f857600080fd5b9250929050565b600080600080600080600060c0888a03121561211a57600080fd5b87356121258161209e565b965060208801356121358161209e565b955060408801359450606088013561214c8161209e565b93506080880135925060a088013567ffffffffffffffff81111561216f57600080fd5b61217b8a828b016120b3565b989b979a50959850939692959293505050565b60008060008060008060008060e0898b0312156121aa57600080fd5b88356121b58161209e565b975060208901359650604089013595506060890135945060808901356121da8161209e565b935060a0890135925060c089013567ffffffffffffffff8111156121fd57600080fd5b6122098b828c016120b3565b999c989b5096995094979396929594505050565b60006020828403121561222f57600080fd5b813561223a8161209e565b9392505050565b6020808252825182820181905260009190848201906040850190845b818110156122825783516001600160a01b03168352928401929184019160010161225d565b50909695505050505050565b6000806000604084860312156122a357600080fd5b83356122ae8161209e565b9250602084013567ffffffffffffffff8111156122ca57600080fd5b6122d6868287016120b3565b9497909650939450505050565b6000602082840312156122f557600080fd5b5035919050565b81835260006001600160fb1b0383111561231557600080fd5b8260051b80836020870137939093016020019392505050565b6001600160a01b03878116825260208201879052851660408201526060810184905260a06080820181905260009061236990830184866122fc565b98975050505050505050565b634e487b7160e01b600052604160045260246000fd5b6040516060810167ffffffffffffffff811182821017156123ae576123ae612375565b60405290565b6040805190810167ffffffffffffffff811182821017156123ae576123ae612375565b604051601f8201601f1916810167ffffffffffffffff8111828210171561240057612400612375565b604052919050565b600067ffffffffffffffff82111561242257612422612375565b5060051b60200190565b80516dffffffffffffffffffffffffffff81168114610a5257600080fd5b6000806000806080858703121561246057600080fd5b845193506020808601519350604080870151935060608088015167ffffffffffffffff81111561248f57600080fd5b8801601f81018a136124a057600080fd5b80516124b36124ae82612408565b6123d7565b8181529083028201850190858101908c8311156124cf57600080fd5b928601925b828410156125385784848e0312156124ec5760008081fd5b6124f461238b565b6124fd8561242c565b815261250a88860161242c565b888201528685015163ffffffff811681146125255760008081fd5b81880152825292840192908601906124d4565b999c989b5096995050505050505050565b60006020828403121561255b57600080fd5b815161223a8161209e565b87815286602082015285604082015260018060a01b038516606082015283608082015260c060a082015260006125a060c0830184866122fc565b9998505050505050505050565b6000602082840312156125bf57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b81810381811115611d0357611d036125c6565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b60008235607e1983360301811261263157600080fd5b9190910192915050565b60006080828403121561264d57600080fd5b6040516080810181811067ffffffffffffffff8211171561267057612670612375565b604052825161267e8161209e565b808252506020830151602082015260408301516040820152606083015160608201528091505092915050565b60208082528181018390526000906040808401600586811b8601830188865b8981101561278957888303603f190185528135368c9003607e190181126126ef57600080fd5b8b01803584526080888201356127048161209e565b6001600160a01b0316858a0152818801358886015260608083013536849003601e1901811261273257600080fd5b90920189810192903567ffffffffffffffff81111561275057600080fd5b80881b360384131561276157600080fd5b828288015261277383880182866122fc565b988b0198965050509288019250506001016126c9565b50909998505050505050505050565b600060208083850312156127ab57600080fd5b825167ffffffffffffffff8111156127c257600080fd5b8301601f810185136127d357600080fd5b80516127e16124ae82612408565b81815260069190911b8201830190838101908783111561280057600080fd5b928401925b82841015611ff5576040848903121561281e5760008081fd5b6128266123b4565b84516128318161209e565b81528486015186820152825260409093019290840190612805565b60006020828403121561285e57600080fd5b8151801515811461223a57600080fd5b80820180821115611d0357611d036125c6565b60005b8381101561289c578181015183820152602001612884565b50506000910152565b60008251612631818460208701612881565b60208152600082518060208401526128d6816040850160208701612881565b601f01601f1916919091016040019291505056fe00000000000000000000000072a19342e8f1838460ebfccef09f6585e32db86ea2646970667358221220426750908bca1ab5ea96ae86445f22c89aedf25338b3ccf2a6faedcd3d3d662d64736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000fdeac9f9e4a5a7340ac57b47c67d383fb4f13dbb0000000000000000000000004787ef084c1d57ed87d58a716d991f8a9cd3828c000000000000000000000000144a689a8261f1863c89954930ecae46bd95034100000000000000000000000068378fcb3a27d5613afcfddb590d35a6e751972c
-----Decoded View---------------
Arg [0] : _controller (address): 0xFDeac9F9e4a5A7340Ac57B47C67d383fb4f13DBb
Arg [1] : _redeemModule (address): 0x4787Ef084c1d57ED87D58a716d991F8A9CD3828C
Arg [2] : _warMinter (address): 0x144a689A8261F1863c89954930ecae46Bd950341
Arg [3] : _delegatee (address): 0x68378fCB3A27D5613aFCfddB590d35a6e751972C
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000fdeac9f9e4a5a7340ac57b47c67d383fb4f13dbb
Arg [1] : 0000000000000000000000004787ef084c1d57ed87d58a716d991f8a9cd3828c
Arg [2] : 000000000000000000000000144a689a8261f1863c89954930ecae46bd950341
Arg [3] : 00000000000000000000000068378fcb3a27d5613afcfddb590d35a6e751972c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.