More Info
Private Name Tags
ContractCreator
Multichain Info
No addresses found
Latest 25 from a total of 78 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 21852657 | 35 days ago | IN | 0 ETH | 0.00004199 | ||||
Claim | 21514448 | 82 days ago | IN | 0 ETH | 0.00016321 | ||||
Claim | 21350561 | 105 days ago | IN | 0 ETH | 0.00054624 | ||||
Claim | 21208280 | 125 days ago | IN | 0 ETH | 0.00051733 | ||||
Claim | 21206298 | 125 days ago | IN | 0 ETH | 0.00049974 | ||||
Claim | 20970846 | 158 days ago | IN | 0 ETH | 0.00200475 | ||||
Claim | 20969718 | 158 days ago | IN | 0 ETH | 0.00070981 | ||||
Claim | 20969687 | 158 days ago | IN | 0 ETH | 0.00085909 | ||||
Claim | 20969678 | 158 days ago | IN | 0 ETH | 0.00071558 | ||||
Claim | 20898582 | 168 days ago | IN | 0 ETH | 0.00021599 | ||||
Claim | 20883518 | 170 days ago | IN | 0 ETH | 0.00028626 | ||||
Claim | 20847887 | 175 days ago | IN | 0 ETH | 0.00060547 | ||||
Claim | 20748689 | 189 days ago | IN | 0 ETH | 0.00011026 | ||||
Claim | 20672761 | 200 days ago | IN | 0 ETH | 0.00015053 | ||||
Claim | 20629097 | 206 days ago | IN | 0 ETH | 0.0002502 | ||||
Claim | 20446843 | 231 days ago | IN | 0 ETH | 0.00022586 | ||||
Claim | 20417763 | 235 days ago | IN | 0 ETH | 0.00014249 | ||||
Claim | 20310348 | 250 days ago | IN | 0 ETH | 0.00080083 | ||||
Claim | 20055173 | 286 days ago | IN | 0 ETH | 0.00117954 | ||||
Claim | 20047664 | 287 days ago | IN | 0 ETH | 0.00172346 | ||||
Claim | 20034860 | 289 days ago | IN | 0 ETH | 0.00139425 | ||||
Claim | 19867221 | 312 days ago | IN | 0 ETH | 0.00140794 | ||||
Claim | 19799274 | 322 days ago | IN | 0 ETH | 0.00031734 | ||||
Claim | 19599177 | 350 days ago | IN | 0 ETH | 0.00231399 | ||||
Claim | 19597079 | 350 days ago | IN | 0 ETH | 0.00097324 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
LiqVestedEscrow
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; import { ILiqLocker } from "../interfaces/ILiqLocker.sol"; import { IERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/utils/SafeERC20.sol"; import { ReentrancyGuard } from "@openzeppelin/contracts-0.8/security/ReentrancyGuard.sol"; import { AuraMath } from "../utils/AuraMath.sol"; /** * @title LiqVestedEscrow * @author Aura, adapted from ConvexFinance (convex-platform/contracts/contracts/VestedEscrow) * @notice Vests tokens over a given timeframe to an array of recipients. * Allows locking of these tokens directly to staking contract. * @dev Adaptations: * - One time initialisation * - Consolidation of fundAdmin/admin * - Lock in LiqLocker by default * - Start and end time */ contract LiqVestedEscrow is ReentrancyGuard { using SafeERC20 for IERC20; IERC20 public immutable rewardToken; address public admin; address public immutable funder; ILiqLocker public liqLocker; uint256 public immutable startTime; uint256 public immutable endTime; uint256 public immutable totalTime; bool public initialised = false; mapping(address => uint256) public totalLocked; mapping(address => uint256) public totalClaimed; event Funded(address indexed recipient, uint256 reward); event Cancelled(address indexed recipient); event Claim(address indexed user, uint256 amount, bool locked); /** * @param rewardToken_ Reward token (LIQ) * @param admin_ Admin to cancel rewards * @param liqLocker_ Contract where rewardToken can be staked * @param startTime_ Timestamp when claim starts * @param endTime_ When vesting ends */ constructor( address rewardToken_, address admin_, address liqLocker_, uint256 startTime_, uint256 endTime_ ) { require(startTime_ >= block.timestamp, "start must be future"); require(endTime_ > startTime_, "end must be greater"); rewardToken = IERC20(rewardToken_); admin = admin_; funder = msg.sender; liqLocker = ILiqLocker(liqLocker_); startTime = startTime_; endTime = endTime_; totalTime = endTime - startTime; require(totalTime >= 16 weeks, "!short"); } /*************************************** SETUP ****************************************/ /** * @notice Change contract admin * @param _admin New admin address */ function setAdmin(address _admin) external { require(msg.sender == admin, "!auth"); admin = _admin; } /** * @notice Change locker contract address * @param _liqLocker Aura Locker address */ function setLocker(address _liqLocker) external { require(msg.sender == admin, "!auth"); liqLocker = ILiqLocker(_liqLocker); } /** * @notice Fund recipients with rewardTokens * @param _recipient Array of recipients to vest rewardTokens for * @param _amount Array of amount of rewardTokens to vest */ function fund(address[] calldata _recipient, uint256[] calldata _amount) external nonReentrant { require(_recipient.length == _amount.length, "!arr"); require(!initialised, "initialised already"); require(msg.sender == funder, "!funder"); require(block.timestamp < startTime, "already started"); uint256 totalAmount = 0; for (uint256 i = 0; i < _recipient.length; i++) { uint256 amount = _amount[i]; totalLocked[_recipient[i]] += amount; totalAmount += amount; emit Funded(_recipient[i], amount); } rewardToken.safeTransferFrom(msg.sender, address(this), totalAmount); initialised = true; } /** * @notice Cancel recipients vesting rewardTokens * @param _recipient Recipient address */ function cancel(address _recipient) external nonReentrant { require(msg.sender == admin, "!auth"); require(totalLocked[_recipient] > 0, "!funding"); _claim(_recipient, false); uint256 delta = remaining(_recipient); rewardToken.safeTransfer(admin, delta); totalLocked[_recipient] = 0; emit Cancelled(_recipient); } /*************************************** VIEWS ****************************************/ /** * @notice Available amount to claim * @param _recipient Recipient to lookup */ function available(address _recipient) public view returns (uint256) { uint256 vested = _totalVestedOf(_recipient, block.timestamp); return vested - totalClaimed[_recipient]; } /** * @notice Total remaining vested amount * @param _recipient Recipient to lookup */ function remaining(address _recipient) public view returns (uint256) { uint256 vested = _totalVestedOf(_recipient, block.timestamp); return totalLocked[_recipient] - vested; } /** * @notice Get total amount vested for this timestamp * @param _recipient Recipient to lookup * @param _time Timestamp to check vesting amount for */ function _totalVestedOf(address _recipient, uint256 _time) internal view returns (uint256 total) { if (_time < startTime) { return 0; } uint256 locked = totalLocked[_recipient]; uint256 elapsed = _time - startTime; total = AuraMath.min((locked * elapsed) / totalTime, locked); } /*************************************** CLAIM ****************************************/ function claim(bool _lock) external nonReentrant { _claim(msg.sender, _lock); } /** * @dev Claim reward token (Aura) and lock it. * @param _recipient Address to receive rewards. * @param _lock Lock rewards immediately. */ function _claim(address _recipient, bool _lock) internal { uint256 claimable = available(_recipient); totalClaimed[_recipient] += claimable; if (_lock) { require(address(liqLocker) != address(0), "!liqLocker"); rewardToken.safeApprove(address(liqLocker), claimable); liqLocker.lock(_recipient, claimable); } else { rewardToken.safeTransfer(_recipient, claimable); } emit Claim(_recipient, claimable, _lock); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; interface ILiqLocker { function lock(address _account, uint256 _amount) external; function checkpointEpoch() external; function epochCount() external view returns (uint256); function balanceAtEpochOf(uint256 _epoch, address _user) external view returns (uint256 amount); function totalSupplyAtEpoch(uint256 _epoch) external view returns (uint256 supply); function queueNewRewards(address _rewardsToken, uint256 reward) external; function getReward(address _account, bool _stake) external; function getReward(address _account) external; function getRewardFor(address _account) external returns (uint256 rewardAmount); function earned(address _account, address token) external view returns (uint256 userRewards); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^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 // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; /// @notice A library for performing overflow-/underflow-safe math, /// updated with awesomeness from of DappHub (https://github.com/dapphub/ds-math). library AuraMath { /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; } function sub(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a - b; } function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a * b; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return 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, so we distribute. return (a / 2) + (b / 2) + (((a % 2) + (b % 2)) / 2); } function to224(uint256 a) internal pure returns (uint224 c) { require(a <= type(uint224).max, "AuraMath: uint224 Overflow"); c = uint224(a); } function to128(uint256 a) internal pure returns (uint128 c) { require(a <= type(uint128).max, "AuraMath: uint128 Overflow"); c = uint128(a); } function to112(uint256 a) internal pure returns (uint112 c) { require(a <= type(uint112).max, "AuraMath: uint112 Overflow"); c = uint112(a); } function to96(uint256 a) internal pure returns (uint96 c) { require(a <= type(uint96).max, "AuraMath: uint96 Overflow"); c = uint96(a); } function to32(uint256 a) internal pure returns (uint32 c) { require(a <= type(uint32).max, "AuraMath: uint32 Overflow"); c = uint32(a); } } /// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint32. library AuraMath32 { function sub(uint32 a, uint32 b) internal pure returns (uint32 c) { c = a - b; } } /// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint112. library AuraMath112 { function add(uint112 a, uint112 b) internal pure returns (uint112 c) { c = a + b; } function sub(uint112 a, uint112 b) internal pure returns (uint112 c) { c = a - b; } } /// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint224. library AuraMath224 { function add(uint224 a, uint224 b) internal pure returns (uint224 c) { c = a + b; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^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; 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"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"rewardToken_","type":"address"},{"internalType":"address","name":"admin_","type":"address"},{"internalType":"address","name":"liqLocker_","type":"address"},{"internalType":"uint256","name":"startTime_","type":"uint256"},{"internalType":"uint256","name":"endTime_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"}],"name":"Cancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"locked","type":"bool"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"Funded","type":"event"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"available","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"cancel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_lock","type":"bool"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipient","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"fund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"funder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialised","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liqLocker","outputs":[{"internalType":"contract ILiqLocker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"remaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liqLocker","type":"address"}],"name":"setLocker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalLocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6101206040526002805460ff60a01b191690553480156200001f57600080fd5b50604051620016b7380380620016b78339810160408190526200004291620001a8565b6001600055428210156200009d5760405162461bcd60e51b815260206004820152601460248201527f7374617274206d7573742062652066757475726500000000000000000000000060448201526064015b60405180910390fd5b818111620000ee5760405162461bcd60e51b815260206004820152601360248201527f656e64206d757374206265206772656174657200000000000000000000000000604482015260640162000094565b6001600160a01b03858116608052600180546001600160a01b0319908116878416179091553360a0526002805490911691851691909117905560c082905260e08190526200013d828262000205565b6101008190526293a8001115620001805760405162461bcd60e51b8152602060048201526006602482015265085cda1bdc9d60d21b604482015260640162000094565b50505050506200022b565b80516001600160a01b0381168114620001a357600080fd5b919050565b600080600080600060a08688031215620001c157600080fd5b620001cc866200018b565b9450620001dc602087016200018b565b9350620001ec604087016200018b565b6060870151608090970151959894975095949392505050565b6000828210156200022657634e487b7160e01b600052601160045260246000fd5b500390565b60805160a05160c05160e05161010051611408620002af600039600081816102230152610a63015260006101d601526000818161025d015281816107c3015281816109ea0152610a3701526000818161012501526107540152600081816102ea015281816105620152818161095001528181610b530152610c0d01526114086000f3fe608060405234801561001057600080fd5b506004361061011b5760003560e01c806358533e0a116100b2578063b399b0bc11610081578063ef5d9ae811610066578063ef5d9ae8146102c5578063f7c618c1146102e5578063f851a4401461030c57600080fd5b8063b399b0bc14610292578063d8fb9337146102a557600080fd5b806358533e0a1461021e578063704b6c021461024557806378e9792514610258578063b1e56f6b1461027f57600080fd5b80632d81a78e116100ee5780632d81a78e146101be5780633197cbb6146101d15780633f9628c1146101f85780634c33fe941461020b57600080fd5b8063041ae8801461012057806307003bb41461016457806310098ad514610188578063171060ec146101a9575b600080fd5b6101477f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b60025461017890600160a01b900460ff1681565b604051901515815260200161015b565b61019b61019636600461115b565b61031f565b60405190815260200161015b565b6101bc6101b736600461115b565b610359565b005b6101bc6101cc366004611195565b6103cf565b61019b7f000000000000000000000000000000000000000000000000000000000000000081565b600254610147906001600160a01b031681565b6101bc61021936600461115b565b610439565b61019b7f000000000000000000000000000000000000000000000000000000000000000081565b6101bc61025336600461115b565b6105d5565b61019b7f000000000000000000000000000000000000000000000000000000000000000081565b6101bc61028d3660046111fe565b610646565b61019b6102a036600461115b565b6109b2565b61019b6102b336600461115b565b60036020526000908152604090205481565b61019b6102d336600461115b565b60046020526000908152604090205481565b6101477f000000000000000000000000000000000000000000000000000000000000000081565b600154610147906001600160a01b031681565b60008061032c83426109e6565b6001600160a01b0384166000908152600460205260409020549091506103529082611280565b9392505050565b6001546001600160a01b031633146103a05760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b60448201526064015b60405180910390fd5b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600260005414156104225760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610397565b60026000556104313382610aa7565b506001600055565b6002600054141561048c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610397565b60026000556001546001600160a01b031633146104d35760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610397565b6001600160a01b0381166000908152600360205260409020546105385760405162461bcd60e51b815260206004820152600860248201527f2166756e64696e670000000000000000000000000000000000000000000000006044820152606401610397565b610543816000610aa7565b600061054e826109b2565b60015490915061058b906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116911683610c7e565b6001600160a01b038216600081815260036020526040808220829055517f398bd6b21ae4164ec322fb0eb8c2eb6277f36fd41903fbbed594dfe1255912819190a250506001600055565b6001546001600160a01b031633146106175760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610397565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600260005414156106995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610397565b60026000558281146106ef5760405162461bcd60e51b81526004016103979060208082526004908201527f2161727200000000000000000000000000000000000000000000000000000000604082015260600190565b600254600160a01b900460ff16156107495760405162461bcd60e51b815260206004820152601360248201527f696e697469616c6973656420616c7265616479000000000000000000000000006044820152606401610397565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146107c15760405162461bcd60e51b815260206004820152600760248201527f2166756e646572000000000000000000000000000000000000000000000000006044820152606401610397565b7f000000000000000000000000000000000000000000000000000000000000000042106108305760405162461bcd60e51b815260206004820152600f60248201527f616c7265616479207374617274656400000000000000000000000000000000006044820152606401610397565b6000805b8481101561094257600084848381811061085057610850611297565b905060200201359050806003600089898681811061087057610870611297565b9050602002016020810190610885919061115b565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546108b491906112ad565b909155506108c4905081846112ad565b92508686838181106108d8576108d8611297565b90506020020160208101906108ed919061115b565b6001600160a01b03167f5af8184bef8e4b45eb9f6ed7734d04da38ced226495548f46e0c8ff8d7d9a5248260405161092791815260200190565b60405180910390a2508061093a816112c5565b915050610834565b506109786001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333084610d2c565b5050600280547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b1790555050600160005550565b6000806109bf83426109e6565b6001600160a01b038416600090815260036020526040902054909150610352908290611280565b60007f0000000000000000000000000000000000000000000000000000000000000000821015610a1857506000610aa1565b6001600160a01b03831660009081526003602052604081205490610a5c7f000000000000000000000000000000000000000000000000000000000000000085611280565b9050610a9c7f0000000000000000000000000000000000000000000000000000000000000000610a8c83856112e0565b610a9691906112ff565b83610d83565b925050505b92915050565b6000610ab28361031f565b6001600160a01b038416600090815260046020526040812080549293508392909190610adf9084906112ad565b90915550508115610c00576002546001600160a01b0316610b425760405162461bcd60e51b815260206004820152600a60248201527f216c69714c6f636b6572000000000000000000000000000000000000000000006044820152606401610397565b600254610b7c906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116911683610d99565b6002546040517f282d3fdf0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152602482018490529091169063282d3fdf90604401600060405180830381600087803b158015610be357600080fd5b505af1158015610bf7573d6000803e3d6000fd5b50505050610c34565b610c346001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168483610c7e565b6040805182815283151560208201526001600160a01b038516917fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf092910160405180910390a2505050565b6040516001600160a01b038316602482015260448101829052610d279084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610ee7565b505050565b6040516001600160a01b0380851660248301528316604482015260648101829052610d7d9085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401610cc3565b50505050565b6000818310610d925781610352565b5090919050565b801580610e2c57506040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610e06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2a9190611321565b155b610e9e5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610397565b6040516001600160a01b038316602482015260448101829052610d279084907f095ea7b30000000000000000000000000000000000000000000000000000000090606401610cc3565b6000610f3c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610fcc9092919063ffffffff16565b805190915015610d275780806020019051810190610f5a919061133a565b610d275760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610397565b6060610fdb8484600085610fe3565b949350505050565b60608247101561105b5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610397565b843b6110a95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610397565b600080866001600160a01b031685876040516110c59190611383565b60006040518083038185875af1925050503d8060008114611102576040519150601f19603f3d011682016040523d82523d6000602084013e611107565b606091505b5091509150611117828286611122565b979650505050505050565b60608315611131575081610352565b8251156111415782518084602001fd5b8160405162461bcd60e51b8152600401610397919061139f565b60006020828403121561116d57600080fd5b81356001600160a01b038116811461035257600080fd5b801515811461119257600080fd5b50565b6000602082840312156111a757600080fd5b813561035281611184565b60008083601f8401126111c457600080fd5b50813567ffffffffffffffff8111156111dc57600080fd5b6020830191508360208260051b85010111156111f757600080fd5b9250929050565b6000806000806040858703121561121457600080fd5b843567ffffffffffffffff8082111561122c57600080fd5b611238888389016111b2565b9096509450602087013591508082111561125157600080fd5b5061125e878288016111b2565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b6000828210156112925761129261126a565b500390565b634e487b7160e01b600052603260045260246000fd5b600082198211156112c0576112c061126a565b500190565b60006000198214156112d9576112d961126a565b5060010190565b60008160001904831182151516156112fa576112fa61126a565b500290565b60008261131c57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561133357600080fd5b5051919050565b60006020828403121561134c57600080fd5b815161035281611184565b60005b8381101561137257818101518382015260200161135a565b83811115610d7d5750506000910152565b60008251611395818460208701611357565b9190910192915050565b60208152600082518060208401526113be816040850160208701611357565b601f01601f1916919091016040019291505056fea26469706673582212206e12145fd1b31659bddc6b28498395b80b6bb7fc06ee3e89e14056c516efb9f664736f6c634300080b0033000000000000000000000000d82fd4d6d62f89a1e50b1db69ad19932314aa408000000000000000000000000cd3010d150b9674294a0589678e020372d8e5d8c000000000000000000000000748a0f458b9e71061ca0ac543b984473f203e1cb0000000000000000000000000000000000000000000000000000000064f9b3b30000000000000000000000000000000000000000000000000000000068b977b3
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061011b5760003560e01c806358533e0a116100b2578063b399b0bc11610081578063ef5d9ae811610066578063ef5d9ae8146102c5578063f7c618c1146102e5578063f851a4401461030c57600080fd5b8063b399b0bc14610292578063d8fb9337146102a557600080fd5b806358533e0a1461021e578063704b6c021461024557806378e9792514610258578063b1e56f6b1461027f57600080fd5b80632d81a78e116100ee5780632d81a78e146101be5780633197cbb6146101d15780633f9628c1146101f85780634c33fe941461020b57600080fd5b8063041ae8801461012057806307003bb41461016457806310098ad514610188578063171060ec146101a9575b600080fd5b6101477f000000000000000000000000a35e14f9d731ddb1994b5590574b32a838646ccf81565b6040516001600160a01b0390911681526020015b60405180910390f35b60025461017890600160a01b900460ff1681565b604051901515815260200161015b565b61019b61019636600461115b565b61031f565b60405190815260200161015b565b6101bc6101b736600461115b565b610359565b005b6101bc6101cc366004611195565b6103cf565b61019b7f0000000000000000000000000000000000000000000000000000000068b977b381565b600254610147906001600160a01b031681565b6101bc61021936600461115b565b610439565b61019b7f0000000000000000000000000000000000000000000000000000000003bfc40081565b6101bc61025336600461115b565b6105d5565b61019b7f0000000000000000000000000000000000000000000000000000000064f9b3b381565b6101bc61028d3660046111fe565b610646565b61019b6102a036600461115b565b6109b2565b61019b6102b336600461115b565b60036020526000908152604090205481565b61019b6102d336600461115b565b60046020526000908152604090205481565b6101477f000000000000000000000000d82fd4d6d62f89a1e50b1db69ad19932314aa40881565b600154610147906001600160a01b031681565b60008061032c83426109e6565b6001600160a01b0384166000908152600460205260409020549091506103529082611280565b9392505050565b6001546001600160a01b031633146103a05760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b60448201526064015b60405180910390fd5b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600260005414156104225760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610397565b60026000556104313382610aa7565b506001600055565b6002600054141561048c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610397565b60026000556001546001600160a01b031633146104d35760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610397565b6001600160a01b0381166000908152600360205260409020546105385760405162461bcd60e51b815260206004820152600860248201527f2166756e64696e670000000000000000000000000000000000000000000000006044820152606401610397565b610543816000610aa7565b600061054e826109b2565b60015490915061058b906001600160a01b037f000000000000000000000000d82fd4d6d62f89a1e50b1db69ad19932314aa4088116911683610c7e565b6001600160a01b038216600081815260036020526040808220829055517f398bd6b21ae4164ec322fb0eb8c2eb6277f36fd41903fbbed594dfe1255912819190a250506001600055565b6001546001600160a01b031633146106175760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610397565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600260005414156106995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610397565b60026000558281146106ef5760405162461bcd60e51b81526004016103979060208082526004908201527f2161727200000000000000000000000000000000000000000000000000000000604082015260600190565b600254600160a01b900460ff16156107495760405162461bcd60e51b815260206004820152601360248201527f696e697469616c6973656420616c7265616479000000000000000000000000006044820152606401610397565b336001600160a01b037f000000000000000000000000a35e14f9d731ddb1994b5590574b32a838646ccf16146107c15760405162461bcd60e51b815260206004820152600760248201527f2166756e646572000000000000000000000000000000000000000000000000006044820152606401610397565b7f0000000000000000000000000000000000000000000000000000000064f9b3b342106108305760405162461bcd60e51b815260206004820152600f60248201527f616c7265616479207374617274656400000000000000000000000000000000006044820152606401610397565b6000805b8481101561094257600084848381811061085057610850611297565b905060200201359050806003600089898681811061087057610870611297565b9050602002016020810190610885919061115b565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546108b491906112ad565b909155506108c4905081846112ad565b92508686838181106108d8576108d8611297565b90506020020160208101906108ed919061115b565b6001600160a01b03167f5af8184bef8e4b45eb9f6ed7734d04da38ced226495548f46e0c8ff8d7d9a5248260405161092791815260200190565b60405180910390a2508061093a816112c5565b915050610834565b506109786001600160a01b037f000000000000000000000000d82fd4d6d62f89a1e50b1db69ad19932314aa40816333084610d2c565b5050600280547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b1790555050600160005550565b6000806109bf83426109e6565b6001600160a01b038416600090815260036020526040902054909150610352908290611280565b60007f0000000000000000000000000000000000000000000000000000000064f9b3b3821015610a1857506000610aa1565b6001600160a01b03831660009081526003602052604081205490610a5c7f0000000000000000000000000000000000000000000000000000000064f9b3b385611280565b9050610a9c7f0000000000000000000000000000000000000000000000000000000003bfc400610a8c83856112e0565b610a9691906112ff565b83610d83565b925050505b92915050565b6000610ab28361031f565b6001600160a01b038416600090815260046020526040812080549293508392909190610adf9084906112ad565b90915550508115610c00576002546001600160a01b0316610b425760405162461bcd60e51b815260206004820152600a60248201527f216c69714c6f636b6572000000000000000000000000000000000000000000006044820152606401610397565b600254610b7c906001600160a01b037f000000000000000000000000d82fd4d6d62f89a1e50b1db69ad19932314aa4088116911683610d99565b6002546040517f282d3fdf0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152602482018490529091169063282d3fdf90604401600060405180830381600087803b158015610be357600080fd5b505af1158015610bf7573d6000803e3d6000fd5b50505050610c34565b610c346001600160a01b037f000000000000000000000000d82fd4d6d62f89a1e50b1db69ad19932314aa408168483610c7e565b6040805182815283151560208201526001600160a01b038516917fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf092910160405180910390a2505050565b6040516001600160a01b038316602482015260448101829052610d279084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610ee7565b505050565b6040516001600160a01b0380851660248301528316604482015260648101829052610d7d9085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401610cc3565b50505050565b6000818310610d925781610352565b5090919050565b801580610e2c57506040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610e06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2a9190611321565b155b610e9e5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610397565b6040516001600160a01b038316602482015260448101829052610d279084907f095ea7b30000000000000000000000000000000000000000000000000000000090606401610cc3565b6000610f3c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610fcc9092919063ffffffff16565b805190915015610d275780806020019051810190610f5a919061133a565b610d275760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610397565b6060610fdb8484600085610fe3565b949350505050565b60608247101561105b5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610397565b843b6110a95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610397565b600080866001600160a01b031685876040516110c59190611383565b60006040518083038185875af1925050503d8060008114611102576040519150601f19603f3d011682016040523d82523d6000602084013e611107565b606091505b5091509150611117828286611122565b979650505050505050565b60608315611131575081610352565b8251156111415782518084602001fd5b8160405162461bcd60e51b8152600401610397919061139f565b60006020828403121561116d57600080fd5b81356001600160a01b038116811461035257600080fd5b801515811461119257600080fd5b50565b6000602082840312156111a757600080fd5b813561035281611184565b60008083601f8401126111c457600080fd5b50813567ffffffffffffffff8111156111dc57600080fd5b6020830191508360208260051b85010111156111f757600080fd5b9250929050565b6000806000806040858703121561121457600080fd5b843567ffffffffffffffff8082111561122c57600080fd5b611238888389016111b2565b9096509450602087013591508082111561125157600080fd5b5061125e878288016111b2565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b6000828210156112925761129261126a565b500390565b634e487b7160e01b600052603260045260246000fd5b600082198211156112c0576112c061126a565b500190565b60006000198214156112d9576112d961126a565b5060010190565b60008160001904831182151516156112fa576112fa61126a565b500290565b60008261131c57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561133357600080fd5b5051919050565b60006020828403121561134c57600080fd5b815161035281611184565b60005b8381101561137257818101518382015260200161135a565b83811115610d7d5750506000910152565b60008251611395818460208701611357565b9190910192915050565b60208152600082518060208401526113be816040850160208701611357565b601f01601f1916919091016040019291505056fea26469706673582212206e12145fd1b31659bddc6b28498395b80b6bb7fc06ee3e89e14056c516efb9f664736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d82fd4d6d62f89a1e50b1db69ad19932314aa408000000000000000000000000cd3010d150b9674294a0589678e020372d8e5d8c000000000000000000000000748a0f458b9e71061ca0ac543b984473f203e1cb0000000000000000000000000000000000000000000000000000000064f9b3b30000000000000000000000000000000000000000000000000000000068b977b3
-----Decoded View---------------
Arg [0] : rewardToken_ (address): 0xD82fd4D6D62f89A1E50b1db69AD19932314aa408
Arg [1] : admin_ (address): 0xcd3010D150B9674294A0589678E020372D8E5d8c
Arg [2] : liqLocker_ (address): 0x748A0F458B9E71061ca0aC543B984473F203E1CB
Arg [3] : startTime_ (uint256): 1694086067
Arg [4] : endTime_ (uint256): 1756985267
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000d82fd4d6d62f89a1e50b1db69ad19932314aa408
Arg [1] : 000000000000000000000000cd3010d150b9674294a0589678e020372d8e5d8c
Arg [2] : 000000000000000000000000748a0f458b9e71061ca0ac543b984473f203e1cb
Arg [3] : 0000000000000000000000000000000000000000000000000000000064f9b3b3
Arg [4] : 0000000000000000000000000000000000000000000000000000000068b977b3
Loading...
Loading
Loading...
Loading
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.