More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 248 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deposit | 15357407 | 887 days ago | IN | 0 ETH | 0.00093754 | ||||
Withdraw | 15357401 | 887 days ago | IN | 0 ETH | 0.00087818 | ||||
Withdraw | 15357396 | 887 days ago | IN | 0 ETH | 0.00047094 | ||||
Claim Reward | 15357394 | 887 days ago | IN | 0 ETH | 0.00048607 | ||||
Claim Reward | 15219367 | 908 days ago | IN | 0 ETH | 0.0018685 | ||||
Claim Reward | 15184880 | 914 days ago | IN | 0 ETH | 0.00122954 | ||||
Claim Reward | 15125377 | 923 days ago | IN | 0 ETH | 0.00202188 | ||||
Withdraw | 15089351 | 928 days ago | IN | 0 ETH | 0.0029097 | ||||
Deposit | 14931312 | 956 days ago | IN | 0 ETH | 0.00179094 | ||||
Deposit | 14931312 | 956 days ago | IN | 0 ETH | 0.00179094 | ||||
Deposit | 14931312 | 956 days ago | IN | 0 ETH | 0.00179094 | ||||
Deposit | 14931312 | 956 days ago | IN | 0 ETH | 0.00179094 | ||||
Deposit | 14931312 | 956 days ago | IN | 0 ETH | 0.00447007 | ||||
Withdraw | 14921446 | 957 days ago | IN | 0 ETH | 0.00479335 | ||||
Withdraw | 14921441 | 957 days ago | IN | 0 ETH | 0.00360096 | ||||
Claim Reward | 14921440 | 957 days ago | IN | 0 ETH | 0.00385894 | ||||
Claim Reward | 14836756 | 971 days ago | IN | 0 ETH | 0.00470401 | ||||
Claim Reward | 14735459 | 987 days ago | IN | 0 ETH | 0.00168798 | ||||
Withdraw | 14647713 | 1001 days ago | IN | 0 ETH | 0.00463578 | ||||
Claim Reward | 14647061 | 1001 days ago | IN | 0 ETH | 0.00273185 | ||||
Claim Reward | 14528673 | 1020 days ago | IN | 0 ETH | 0.00587171 | ||||
Withdraw | 14512944 | 1022 days ago | IN | 0 ETH | 0.00465694 | ||||
Claim Reward | 14490152 | 1026 days ago | IN | 0 ETH | 0.00507923 | ||||
Claim Reward | 14481434 | 1027 days ago | IN | 0 ETH | 0.00431217 | ||||
Withdraw | 14467101 | 1030 days ago | IN | 0 ETH | 0.0025682 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
LiquidityMining
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 9999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract LiquidityMining is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; uint256 private constant DECIMALS = 18; uint256 private constant UNITS = 10**DECIMALS; // Info of each user. struct UserInfo { uint256 amount; // How many LP tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. } // Info of each pool. struct PoolInfo { IERC20 token; // Address of LP token contract. uint256 tokenPerBlock; // TOKENs to distribute per block. uint256 lastRewardBlock; // Last block number that TOKEN distribution occurs. uint256 accTokenPerShare; // Accumulated TOKENs per share, times 1e18 (UNITS). } IERC20 public immutable token; address public tokenRewardsAddress; // The block number when TOKEN mining starts. uint256 public immutable START_BLOCK; // Info of each pool. PoolInfo[] public poolInfo; // tokenToPoolId mapping(address => uint256) public tokenToPoolId; // Info of each user that stakes LP tokens. pid => user address => info mapping(uint256 => mapping(address => UserInfo)) public userInfo; event Deposit(address indexed user, uint256 indexed poolId, uint256 amount); event Withdraw( address indexed user, uint256 indexed poolId, uint256 amount ); event EmergencyWithdraw( address indexed user, uint256 indexed poolId, uint256 amount ); event SendTokenReward( address indexed user, uint256 indexed poolId, uint256 amount ); //set token sc, reward address and start block constructor( address _tokenAddress, address _tokenRewardsAddress, uint256 _startBlock ) public { require(_tokenAddress != address(0),"error zero address"); require(_tokenRewardsAddress != address(0),"error zero address"); token = IERC20(_tokenAddress); tokenRewardsAddress = _tokenRewardsAddress; START_BLOCK = _startBlock; } /********************** PUBLIC ********************************/ // Add a new erc20 token to the pool. Can only be called by the owner. function add( uint256 _tokenPerBlock, IERC20 _token, bool _withUpdate ) external onlyOwner { require( tokenToPoolId[address(_token)] == 0, "Token is already in pool" ); if (_withUpdate) { massUpdatePools(); } uint256 lastRewardBlock = block.number > START_BLOCK ? block.number : START_BLOCK; tokenToPoolId[address(_token)] = poolInfo.length + 1; poolInfo.push( PoolInfo({ token: _token, tokenPerBlock: _tokenPerBlock, lastRewardBlock: lastRewardBlock, accTokenPerShare: 0 }) ); } // Update the given pool's TOKEN allocation point. Can only be called by the owner. function set( uint256 _poolId, uint256 _tokenPerBlock, bool _withUpdate ) external onlyOwner { if (_withUpdate) { massUpdatePools(); } poolInfo[_poolId].tokenPerBlock = _tokenPerBlock; } // Update reward variables for all pools. Be careful of gas spending! function massUpdatePools() public { uint256 length = poolInfo.length; for (uint256 poolId = 0; poolId < length; ++poolId) { updatePool(poolId); } } // Update reward variables of the given pool to be up-to-date. function updatePool(uint256 _poolId) public { PoolInfo storage pool = poolInfo[_poolId]; // Return if it's too early (if START_BLOCK is in the future probably) if (block.number <= pool.lastRewardBlock) return; // Retrieve amount of tokens held in contract uint256 poolBalance = pool.token.balanceOf(address(this)); // If the contract holds no tokens at all, don't proceed. if (poolBalance == 0) { pool.lastRewardBlock = block.number; return; } // Calculate the amount of TOKEN to send to the contract to pay out for this pool uint256 rewards = getPoolReward(pool.lastRewardBlock, block.number, pool.tokenPerBlock); // Update the accumulated TOKENPerShare pool.accTokenPerShare = pool.accTokenPerShare.add( rewards.mul(UNITS).div(poolBalance) ); // Update the last block pool.lastRewardBlock = block.number; } // Get rewards for a specific amount of TOKENPerBlocks function getPoolReward( uint256 _from, uint256 _to, uint256 _tokenPerBlock ) public view returns (uint256 rewards) { // Calculate number of blocks covered. uint256 blockCount = _to.sub(_from); // Get the amount of TOKEN for this pool uint256 amount = blockCount.mul(_tokenPerBlock); // Retrieve allowance and balance uint256 allowedToken = token.allowance(tokenRewardsAddress, address(this)); uint256 farmingBalance = token.balanceOf(tokenRewardsAddress); // If the actual balance is less than the allowance, use the balance. allowedToken = farmingBalance < allowedToken ? farmingBalance : allowedToken; // If we reached the total amount allowed already, return the allowedToken if (allowedToken < amount) { rewards = allowedToken; } else { rewards = amount; } } function claimReward(uint256 _poolId) external { updatePool(_poolId); _harvest(_poolId); } // Deposit LP tokens to TOKENStaking for TOKEN allocation. function deposit(uint256 _poolId, uint256 _amount) external { require(_amount > 0, "Amount cannot be 0"); PoolInfo storage pool = poolInfo[_poolId]; UserInfo storage user = userInfo[_poolId][msg.sender]; updatePool(_poolId); _harvest(_poolId); pool.token.safeTransferFrom( address(msg.sender), address(this), _amount ); user.amount = user.amount.add(_amount); user.rewardDebt = user.amount.mul(pool.accTokenPerShare).div(UNITS); emit Deposit(msg.sender, _poolId, _amount); } // Withdraw LP tokens from TOKENStaking. function withdraw(uint256 _poolId, uint256 _amount) external { PoolInfo storage pool = poolInfo[_poolId]; UserInfo storage user = userInfo[_poolId][msg.sender]; require(_amount > 0, "Amount cannot be 0"); updatePool(_poolId); _harvest(_poolId); user.amount = user.amount.sub(_amount); pool.token.safeTransfer(address(msg.sender), _amount); user.rewardDebt = user.amount.mul(pool.accTokenPerShare).div(UNITS); emit Withdraw(msg.sender, _poolId, _amount); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw(uint256 _poolId) external { PoolInfo storage pool = poolInfo[_poolId]; UserInfo storage user = userInfo[_poolId][msg.sender]; uint256 amountToSend = user.amount; user.amount = 0; user.rewardDebt = 0; pool.token.safeTransfer(address(msg.sender), amountToSend); emit EmergencyWithdraw(msg.sender, _poolId, amountToSend); } /********************** EXTERNAL ********************************/ // Return the number of added pools function poolLength() external view returns (uint256) { return poolInfo.length; } // View function to see pending TOKENs on frontend. function pendingReward(uint256 _poolId, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_poolId]; UserInfo storage user = userInfo[_poolId][_user]; uint256 accTokenPerShare = pool.accTokenPerShare; uint256 poolBalance = pool.token.balanceOf(address(this)); if (block.number > pool.lastRewardBlock && poolBalance > 0) { uint256 rewards = getPoolReward( pool.lastRewardBlock, block.number, pool.tokenPerBlock ); accTokenPerShare = accTokenPerShare.add( rewards.mul(UNITS).div(poolBalance) ); } uint256 pending = user.amount.mul(accTokenPerShare).div(UNITS).sub(user.rewardDebt); return pending; } /********************** INTERNAL ********************************/ function _harvest(uint256 _poolId) internal { PoolInfo storage pool = poolInfo[_poolId]; UserInfo storage user = userInfo[_poolId][msg.sender]; if (user.amount == 0) return; uint256 pending = user.amount.mul(pool.accTokenPerShare).div(UNITS).sub( user.rewardDebt ); if (pending > 0) { // Retrieve allowance and balance uint256 allowedToken = token.allowance(tokenRewardsAddress, address(this)); uint256 farmingBalance = token.balanceOf(tokenRewardsAddress); require(pending < allowedToken, "Reward wallet approve amount is not high enough!"); require(pending < farmingBalance, "Reward wallet balance is not high enough!"); user.rewardDebt = user.amount.mul(pool.accTokenPerShare).div(UNITS); // Pay out the pending rewards token.safeTransferFrom(tokenRewardsAddress, msg.sender, pending); emit SendTokenReward(msg.sender, _poolId, pending); return; } user.rewardDebt = user.amount.mul(pool.accTokenPerShare).div(UNITS); } /********************** ADMIN ********************************/ function changeRewardAddress(address _rewardAddress) external onlyOwner { require(_rewardAddress != address(0),"Address can't be 0"); tokenRewardsAddress = _rewardAddress; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 9999 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_tokenRewardsAddress","type":"address"},{"internalType":"uint256","name":"_startBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","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":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendTokenReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"poolId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"START_BLOCK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenPerBlock","type":"uint256"},{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rewardAddress","type":"address"}],"name":"changeRewardAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"},{"internalType":"uint256","name":"_tokenPerBlock","type":"uint256"}],"name":"getPoolReward","outputs":[{"internalType":"uint256","name":"rewards","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"tokenPerBlock","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accTokenPerShare","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"uint256","name":"_tokenPerBlock","type":"uint256"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenRewardsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokenToPoolId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c060405234801561001057600080fd5b5060405162002054380380620020548339818101604052606081101561003557600080fd5b50805160208201516040909201519091906000610050610175565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600160a01b0383166100ea576040805162461bcd60e51b81526020600482015260126024820152716572726f72207a65726f206164647265737360701b604482015290519081900360640190fd5b6001600160a01b03821661013a576040805162461bcd60e51b81526020600482015260126024820152716572726f72207a65726f206164647265737360701b604482015290519081900360640190fd5b60609290921b6001600160601b031916608052600180546001600160a01b0319166001600160a01b039290921691909117905560a052610179565b3390565b60805160601c60a051611e91620001c36000398061060d5280610634528061079f52508061101752806110dd5280611435528061152a52806115ed52806117235250611e916000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c806364482f79116100d8578063ae169a501161008c578063e2bbb15811610066578063e2bbb15814610443578063f2fde38b14610466578063fc0c546a1461049957610177565b8063ae169a50146103ca578063c8ed7680146103e7578063d587d3631461041057610177565b80638da5cb5b116100bd5780638da5cb5b1461033757806393f1a40b1461033f57806398969e821461039157610177565b806364482f7914610304578063715018a61461032f57610177565b8063441a3e701161012f57806351eb05a61161011457806351eb05a6146102c25780635312ea8e146102df578063630b5ba1146102fc57610177565b8063441a3e701461026c5780634d2aab9a1461028f57610177565b80631eaaa045116101605780631eaaa045146101f0578063339afb7f1461023357806339b3e8261461026457610177565b8063081e3eda1461017c5780631526fe2714610196575b600080fd5b6101846104a1565b60408051918252519081900360200190f35b6101b3600480360360208110156101ac57600080fd5b50356104a7565b6040805173ffffffffffffffffffffffffffffffffffffffff90951685526020850193909352838301919091526060830152519081900360800190f35b6102316004803603606081101561020657600080fd5b5080359073ffffffffffffffffffffffffffffffffffffffff602082013516906040013515156104f5565b005b61023b610781565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b61018461079d565b6102316004803603604081101561028257600080fd5b50803590602001356107c1565b610231600480360360208110156102a557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166108f3565b610231600480360360208110156102d857600080fd5b5035610a30565b610231600480360360208110156102f557600080fd5b5035610b5d565b610231610c03565b6102316004803603606081101561031a57600080fd5b50803590602081013590604001351515610c26565b610231610cea565b61023b610de7565b6103786004803603604081101561035557600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610e03565b6040805192835260208301919091528051918290030190f35b610184600480360360408110156103a757600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610e27565b610231600480360360208110156103e057600080fd5b5035610f93565b610184600480360360608110156103fd57600080fd5b5080359060208101359060400135610fa5565b6101846004803603602081101561042657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611184565b6102316004803603604081101561045957600080fd5b5080359060200135611196565b6102316004803603602081101561047c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166112c6565b61023b611433565b60025490565b600281815481106104b457fe5b6000918252602090912060049091020180546001820154600283015460039093015473ffffffffffffffffffffffffffffffffffffffff9092169350919084565b6104fd611457565b73ffffffffffffffffffffffffffffffffffffffff1661051b610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610583576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040902054156105fb576040805162461bcd60e51b815260206004820152601860248201527f546f6b656e20697320616c726561647920696e20706f6f6c0000000000000000604482015290519081900360640190fd5b801561060957610609610c03565b60007f00000000000000000000000000000000000000000000000000000000000000004311610658577f000000000000000000000000000000000000000000000000000000000000000061065a565b435b6002805473ffffffffffffffffffffffffffffffffffffffff9586166000818152600360209081526040808320600195860190558051608081018252938452908301998a5282019485526060820181815284549384018555939052517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace600490920291820180547fffffffffffffffffffffffff000000000000000000000000000000000000000016919097161790955594517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf850155517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad0840155505090517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad190910155565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600283815481106107d057fe5b600091825260208083208684526004808352604080862033875290935291909320910290910191508261084a576040805162461bcd60e51b815260206004820152601260248201527f416d6f756e742063616e6e6f7420626520300000000000000000000000000000604482015290519081900360640190fd5b61085384610a30565b61085c8461145b565b805461086890846117ba565b8155815461088d9073ffffffffffffffffffffffffffffffffffffffff163385611817565b600382015481546108b191670de0b6b3a7640000916108ab916118a9565b90611909565b6001820155604080518481529051859133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a350505050565b6108fb611457565b73ffffffffffffffffffffffffffffffffffffffff16610919610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610981576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166109e9576040805162461bcd60e51b815260206004820152601260248201527f416464726573732063616e277420626520300000000000000000000000000000604482015290519081900360640190fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600060028281548110610a3f57fe5b9060005260206000209060040201905080600201544311610a605750610b5a565b8054604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b158015610ad057600080fd5b505afa158015610ae4573d6000803e3d6000fd5b505050506040513d6020811015610afa57600080fd5b5051905080610b10575043600290910155610b5a565b6000610b258360020154438560010154610fa5565b9050610b4b610b40836108ab84670de0b6b3a76400006118a9565b600385015490611970565b60038401555050436002909101555b50565b600060028281548110610b6c57fe5b60009182526020808320858452600480835260408086203380885294528520805486825560018201969096559302018054909450919291610bc69173ffffffffffffffffffffffffffffffffffffffff9091169083611817565b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a350505050565b60025460005b81811015610c2257610c1a81610a30565b600101610c09565b5050565b610c2e611457565b73ffffffffffffffffffffffffffffffffffffffff16610c4c610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610cb4576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b8015610cc257610cc2610c03565b8160028481548110610cd057fe5b906000526020600020906004020160010181905550505050565b610cf2611457565b73ffffffffffffffffffffffffffffffffffffffff16610d10610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610d78576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b60046020908152600092835260408084209091529082529020805460019091015482565b60008060028481548110610e3757fe5b600091825260208083208784526004808352604080862073ffffffffffffffffffffffffffffffffffffffff8a811688529085528187209583029093016003810154815483517f70a082310000000000000000000000000000000000000000000000000000000081523095810195909552925191985095969491909316926370a08231926024808201939291829003018186803b158015610ed757600080fd5b505afa158015610eeb573d6000803e3d6000fd5b505050506040513d6020811015610f0157600080fd5b5051600285015490915043118015610f195750600081115b15610f59576000610f338560020154438760010154610fa5565b9050610f55610f4e836108ab84670de0b6b3a76400006118a9565b8490611970565b9250505b60018301548354600091610f8591610f7f90670de0b6b3a7640000906108ab90886118a9565b906117ba565b955050505050505b92915050565b610f9c81610a30565b610b5a8161145b565b600080610fb284866117ba565b90506000610fc082856118a9565b600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff928316600482015230602482015290519293506000927f00000000000000000000000000000000000000000000000000000000000000009092169163dd62ed3e91604480820192602092909190829003018186803b15801561106057600080fd5b505afa158015611074573d6000803e3d6000fd5b505050506040513d602081101561108a57600080fd5b5051600154604080517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff928316600482015290519293506000927f0000000000000000000000000000000000000000000000000000000000000000909216916370a0823191602480820192602092909190829003018186803b15801561112657600080fd5b505afa15801561113a573d6000803e3d6000fd5b505050506040513d602081101561115057600080fd5b505190508181106111615781611163565b805b91508282101561117557819450611179565b8294505b505050509392505050565b60036020526000908152604090205481565b600081116111eb576040805162461bcd60e51b815260206004820152601260248201527f416d6f756e742063616e6e6f7420626520300000000000000000000000000000604482015290519081900360640190fd5b6000600283815481106111fa57fe5b6000918252602080832086845260048083526040808620338752909352919093209102909101915061122b84610a30565b6112348461145b565b81546112589073ffffffffffffffffffffffffffffffffffffffff163330866119ca565b80546112649084611970565b808255600383015461128491670de0b6b3a7640000916108ab91906118a9565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b6112ce611457565b73ffffffffffffffffffffffffffffffffffffffff166112ec610de7565b73ffffffffffffffffffffffffffffffffffffffff1614611354576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166113a65760405162461bcd60e51b8152600401808060200182810382526026815260200180611d6c6026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b7f000000000000000000000000000000000000000000000000000000000000000081565b3390565b60006002828154811061146a57fe5b60009182526020808320858452600480835260408086203387529093529190932080549290910290920192506114a1575050610b5a565b60006114ce8260010154610f7f6012600a0a6108ab876003015487600001546118a990919063ffffffff16565b9050801561178e57600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff928316600482015230602482015290516000927f0000000000000000000000000000000000000000000000000000000000000000169163dd62ed3e916044808301926020929190829003018186803b15801561157057600080fd5b505afa158015611584573d6000803e3d6000fd5b505050506040513d602081101561159a57600080fd5b5051600154604080517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff928316600482015290519293506000927f0000000000000000000000000000000000000000000000000000000000000000909216916370a0823191602480820192602092909190829003018186803b15801561163657600080fd5b505afa15801561164a573d6000803e3d6000fd5b505050506040513d602081101561166057600080fd5b505190508183106116a25760405162461bcd60e51b8152600401808060200182810382526030815260200180611e2c6030913960400191505060405180910390fd5b8083106116e05760405162461bcd60e51b8152600401808060200182810382526029815260200180611db86029913960400191505060405180910390fd5b600385015484546116fe91670de0b6b3a7640000916108ab916118a9565b6001858101919091555461174d9073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000008116911633866119ca565b604080518481529051879133917ff31910c3d752a6b51c4eb8e090fb7e85228ffafddb8fb2fb8818ea9719ed174c9181900360200190a35050505050610b5a565b600383015482546117ac91670de0b6b3a7640000916108ab916118a9565b826001018190555050505050565b600082821115611811576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526118a4908490611a65565b505050565b6000826118b857506000610f8d565b828202828482816118c557fe5b04146119025760405162461bcd60e51b8152600401808060200182810382526021815260200180611de16021913960400191505060405180910390fd5b9392505050565b600080821161195f576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161196857fe5b049392505050565b600082820183811015611902576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052611a5f908590611a65565b50505050565b6060611ac7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611b239092919063ffffffff16565b8051909150156118a457808060200190516020811015611ae657600080fd5b50516118a45760405162461bcd60e51b815260040180806020018281038252602a815260200180611e02602a913960400191505060405180910390fd5b6060611b328484600085611b3a565b949350505050565b606082471015611b7b5760405162461bcd60e51b8152600401808060200182810382526026815260200180611d926026913960400191505060405180910390fd5b611b8485611cc1565b611bd5576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310611c3f57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101611c02565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611ca1576040519150601f19603f3d011682016040523d82523d6000602084013e611ca6565b606091505b5091509150611cb6828286611cc7565b979650505050505050565b3b151590565b60608315611cd6575081611902565b825115611ce65782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d30578181015183820152602001611d18565b50505050905090810190601f168015611d5d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c5265776172642077616c6c65742062616c616e6365206973206e6f74206869676820656e6f75676821536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645265776172642077616c6c657420617070726f766520616d6f756e74206973206e6f74206869676820656e6f75676821a2646970667358221220c3397ac8e57296eff5ab1599cde633e2d5c5a5cf1d6f0d91d74bea246420d09264736f6c634300060c0033000000000000000000000000c6065b9fc8171ad3d29bad510709249681758972000000000000000000000000397f93bad40ae795fd5d0bd4e5048d0115539a4b0000000000000000000000000000000000000000000000000000000000cd36a1
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101775760003560e01c806364482f79116100d8578063ae169a501161008c578063e2bbb15811610066578063e2bbb15814610443578063f2fde38b14610466578063fc0c546a1461049957610177565b8063ae169a50146103ca578063c8ed7680146103e7578063d587d3631461041057610177565b80638da5cb5b116100bd5780638da5cb5b1461033757806393f1a40b1461033f57806398969e821461039157610177565b806364482f7914610304578063715018a61461032f57610177565b8063441a3e701161012f57806351eb05a61161011457806351eb05a6146102c25780635312ea8e146102df578063630b5ba1146102fc57610177565b8063441a3e701461026c5780634d2aab9a1461028f57610177565b80631eaaa045116101605780631eaaa045146101f0578063339afb7f1461023357806339b3e8261461026457610177565b8063081e3eda1461017c5780631526fe2714610196575b600080fd5b6101846104a1565b60408051918252519081900360200190f35b6101b3600480360360208110156101ac57600080fd5b50356104a7565b6040805173ffffffffffffffffffffffffffffffffffffffff90951685526020850193909352838301919091526060830152519081900360800190f35b6102316004803603606081101561020657600080fd5b5080359073ffffffffffffffffffffffffffffffffffffffff602082013516906040013515156104f5565b005b61023b610781565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b61018461079d565b6102316004803603604081101561028257600080fd5b50803590602001356107c1565b610231600480360360208110156102a557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166108f3565b610231600480360360208110156102d857600080fd5b5035610a30565b610231600480360360208110156102f557600080fd5b5035610b5d565b610231610c03565b6102316004803603606081101561031a57600080fd5b50803590602081013590604001351515610c26565b610231610cea565b61023b610de7565b6103786004803603604081101561035557600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610e03565b6040805192835260208301919091528051918290030190f35b610184600480360360408110156103a757600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610e27565b610231600480360360208110156103e057600080fd5b5035610f93565b610184600480360360608110156103fd57600080fd5b5080359060208101359060400135610fa5565b6101846004803603602081101561042657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611184565b6102316004803603604081101561045957600080fd5b5080359060200135611196565b6102316004803603602081101561047c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166112c6565b61023b611433565b60025490565b600281815481106104b457fe5b6000918252602090912060049091020180546001820154600283015460039093015473ffffffffffffffffffffffffffffffffffffffff9092169350919084565b6104fd611457565b73ffffffffffffffffffffffffffffffffffffffff1661051b610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610583576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040902054156105fb576040805162461bcd60e51b815260206004820152601860248201527f546f6b656e20697320616c726561647920696e20706f6f6c0000000000000000604482015290519081900360640190fd5b801561060957610609610c03565b60007f0000000000000000000000000000000000000000000000000000000000cd36a14311610658577f0000000000000000000000000000000000000000000000000000000000cd36a161065a565b435b6002805473ffffffffffffffffffffffffffffffffffffffff9586166000818152600360209081526040808320600195860190558051608081018252938452908301998a5282019485526060820181815284549384018555939052517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace600490920291820180547fffffffffffffffffffffffff000000000000000000000000000000000000000016919097161790955594517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf850155517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad0840155505090517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad190910155565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b7f0000000000000000000000000000000000000000000000000000000000cd36a181565b6000600283815481106107d057fe5b600091825260208083208684526004808352604080862033875290935291909320910290910191508261084a576040805162461bcd60e51b815260206004820152601260248201527f416d6f756e742063616e6e6f7420626520300000000000000000000000000000604482015290519081900360640190fd5b61085384610a30565b61085c8461145b565b805461086890846117ba565b8155815461088d9073ffffffffffffffffffffffffffffffffffffffff163385611817565b600382015481546108b191670de0b6b3a7640000916108ab916118a9565b90611909565b6001820155604080518481529051859133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a350505050565b6108fb611457565b73ffffffffffffffffffffffffffffffffffffffff16610919610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610981576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166109e9576040805162461bcd60e51b815260206004820152601260248201527f416464726573732063616e277420626520300000000000000000000000000000604482015290519081900360640190fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600060028281548110610a3f57fe5b9060005260206000209060040201905080600201544311610a605750610b5a565b8054604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b158015610ad057600080fd5b505afa158015610ae4573d6000803e3d6000fd5b505050506040513d6020811015610afa57600080fd5b5051905080610b10575043600290910155610b5a565b6000610b258360020154438560010154610fa5565b9050610b4b610b40836108ab84670de0b6b3a76400006118a9565b600385015490611970565b60038401555050436002909101555b50565b600060028281548110610b6c57fe5b60009182526020808320858452600480835260408086203380885294528520805486825560018201969096559302018054909450919291610bc69173ffffffffffffffffffffffffffffffffffffffff9091169083611817565b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a350505050565b60025460005b81811015610c2257610c1a81610a30565b600101610c09565b5050565b610c2e611457565b73ffffffffffffffffffffffffffffffffffffffff16610c4c610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610cb4576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b8015610cc257610cc2610c03565b8160028481548110610cd057fe5b906000526020600020906004020160010181905550505050565b610cf2611457565b73ffffffffffffffffffffffffffffffffffffffff16610d10610de7565b73ffffffffffffffffffffffffffffffffffffffff1614610d78576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b60046020908152600092835260408084209091529082529020805460019091015482565b60008060028481548110610e3757fe5b600091825260208083208784526004808352604080862073ffffffffffffffffffffffffffffffffffffffff8a811688529085528187209583029093016003810154815483517f70a082310000000000000000000000000000000000000000000000000000000081523095810195909552925191985095969491909316926370a08231926024808201939291829003018186803b158015610ed757600080fd5b505afa158015610eeb573d6000803e3d6000fd5b505050506040513d6020811015610f0157600080fd5b5051600285015490915043118015610f195750600081115b15610f59576000610f338560020154438760010154610fa5565b9050610f55610f4e836108ab84670de0b6b3a76400006118a9565b8490611970565b9250505b60018301548354600091610f8591610f7f90670de0b6b3a7640000906108ab90886118a9565b906117ba565b955050505050505b92915050565b610f9c81610a30565b610b5a8161145b565b600080610fb284866117ba565b90506000610fc082856118a9565b600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff928316600482015230602482015290519293506000927f000000000000000000000000c6065b9fc8171ad3d29bad5107092496817589729092169163dd62ed3e91604480820192602092909190829003018186803b15801561106057600080fd5b505afa158015611074573d6000803e3d6000fd5b505050506040513d602081101561108a57600080fd5b5051600154604080517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff928316600482015290519293506000927f000000000000000000000000c6065b9fc8171ad3d29bad510709249681758972909216916370a0823191602480820192602092909190829003018186803b15801561112657600080fd5b505afa15801561113a573d6000803e3d6000fd5b505050506040513d602081101561115057600080fd5b505190508181106111615781611163565b805b91508282101561117557819450611179565b8294505b505050509392505050565b60036020526000908152604090205481565b600081116111eb576040805162461bcd60e51b815260206004820152601260248201527f416d6f756e742063616e6e6f7420626520300000000000000000000000000000604482015290519081900360640190fd5b6000600283815481106111fa57fe5b6000918252602080832086845260048083526040808620338752909352919093209102909101915061122b84610a30565b6112348461145b565b81546112589073ffffffffffffffffffffffffffffffffffffffff163330866119ca565b80546112649084611970565b808255600383015461128491670de0b6b3a7640000916108ab91906118a9565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b6112ce611457565b73ffffffffffffffffffffffffffffffffffffffff166112ec610de7565b73ffffffffffffffffffffffffffffffffffffffff1614611354576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166113a65760405162461bcd60e51b8152600401808060200182810382526026815260200180611d6c6026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b7f000000000000000000000000c6065b9fc8171ad3d29bad51070924968175897281565b3390565b60006002828154811061146a57fe5b60009182526020808320858452600480835260408086203387529093529190932080549290910290920192506114a1575050610b5a565b60006114ce8260010154610f7f6012600a0a6108ab876003015487600001546118a990919063ffffffff16565b9050801561178e57600154604080517fdd62ed3e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff928316600482015230602482015290516000927f000000000000000000000000c6065b9fc8171ad3d29bad510709249681758972169163dd62ed3e916044808301926020929190829003018186803b15801561157057600080fd5b505afa158015611584573d6000803e3d6000fd5b505050506040513d602081101561159a57600080fd5b5051600154604080517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff928316600482015290519293506000927f000000000000000000000000c6065b9fc8171ad3d29bad510709249681758972909216916370a0823191602480820192602092909190829003018186803b15801561163657600080fd5b505afa15801561164a573d6000803e3d6000fd5b505050506040513d602081101561166057600080fd5b505190508183106116a25760405162461bcd60e51b8152600401808060200182810382526030815260200180611e2c6030913960400191505060405180910390fd5b8083106116e05760405162461bcd60e51b8152600401808060200182810382526029815260200180611db86029913960400191505060405180910390fd5b600385015484546116fe91670de0b6b3a7640000916108ab916118a9565b6001858101919091555461174d9073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c6065b9fc8171ad3d29bad5107092496817589728116911633866119ca565b604080518481529051879133917ff31910c3d752a6b51c4eb8e090fb7e85228ffafddb8fb2fb8818ea9719ed174c9181900360200190a35050505050610b5a565b600383015482546117ac91670de0b6b3a7640000916108ab916118a9565b826001018190555050505050565b600082821115611811576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526118a4908490611a65565b505050565b6000826118b857506000610f8d565b828202828482816118c557fe5b04146119025760405162461bcd60e51b8152600401808060200182810382526021815260200180611de16021913960400191505060405180910390fd5b9392505050565b600080821161195f576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161196857fe5b049392505050565b600082820183811015611902576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052611a5f908590611a65565b50505050565b6060611ac7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611b239092919063ffffffff16565b8051909150156118a457808060200190516020811015611ae657600080fd5b50516118a45760405162461bcd60e51b815260040180806020018281038252602a815260200180611e02602a913960400191505060405180910390fd5b6060611b328484600085611b3a565b949350505050565b606082471015611b7b5760405162461bcd60e51b8152600401808060200182810382526026815260200180611d926026913960400191505060405180910390fd5b611b8485611cc1565b611bd5576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310611c3f57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101611c02565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611ca1576040519150601f19603f3d011682016040523d82523d6000602084013e611ca6565b606091505b5091509150611cb6828286611cc7565b979650505050505050565b3b151590565b60608315611cd6575081611902565b825115611ce65782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d30578181015183820152602001611d18565b50505050905090810190601f168015611d5d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c5265776172642077616c6c65742062616c616e6365206973206e6f74206869676820656e6f75676821536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645265776172642077616c6c657420617070726f766520616d6f756e74206973206e6f74206869676820656e6f75676821a2646970667358221220c3397ac8e57296eff5ab1599cde633e2d5c5a5cf1d6f0d91d74bea246420d09264736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c6065b9fc8171ad3d29bad510709249681758972000000000000000000000000397f93bad40ae795fd5d0bd4e5048d0115539a4b0000000000000000000000000000000000000000000000000000000000cd36a1
-----Decoded View---------------
Arg [0] : _tokenAddress (address): 0xC6065B9fc8171Ad3D29bad510709249681758972
Arg [1] : _tokenRewardsAddress (address): 0x397f93bAd40Ae795FD5d0bd4E5048d0115539A4B
Arg [2] : _startBlock (uint256): 13448865
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000c6065b9fc8171ad3d29bad510709249681758972
Arg [1] : 000000000000000000000000397f93bad40ae795fd5d0bd4e5048d0115539a4b
Arg [2] : 0000000000000000000000000000000000000000000000000000000000cd36a1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.