More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 2,365 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 21909827 | 7 days ago | IN | 0 ETH | 0.00013032 | ||||
Claim | 21850755 | 15 days ago | IN | 0 ETH | 0.00013933 | ||||
Claim | 21846945 | 16 days ago | IN | 0 ETH | 0.00013322 | ||||
Claim | 21816440 | 20 days ago | IN | 0 ETH | 0.00016598 | ||||
Claim | 21811018 | 21 days ago | IN | 0 ETH | 0.00014495 | ||||
Claim | 21789930 | 24 days ago | IN | 0 ETH | 0.00039501 | ||||
Claim | 21788992 | 24 days ago | IN | 0 ETH | 0.00023223 | ||||
Claim | 21788992 | 24 days ago | IN | 0 ETH | 0.00023223 | ||||
Claim | 21782424 | 25 days ago | IN | 0 ETH | 0.0002271 | ||||
Claim | 21750267 | 29 days ago | IN | 0 ETH | 0.00019821 | ||||
Claim | 21750254 | 29 days ago | IN | 0 ETH | 0.00016656 | ||||
Claim | 21750248 | 29 days ago | IN | 0 ETH | 0.00020428 | ||||
Claim | 21750236 | 29 days ago | IN | 0 ETH | 0.00019224 | ||||
Claim | 21735896 | 31 days ago | IN | 0 ETH | 0.00019803 | ||||
Claim | 21707004 | 36 days ago | IN | 0 ETH | 0.00025424 | ||||
Claim | 21706969 | 36 days ago | IN | 0 ETH | 0.00021264 | ||||
Claim | 21679331 | 39 days ago | IN | 0 ETH | 0.00111964 | ||||
Claim | 21651457 | 43 days ago | IN | 0 ETH | 0.00114781 | ||||
Claim | 21641131 | 45 days ago | IN | 0 ETH | 0.00045021 | ||||
Claim | 21636813 | 45 days ago | IN | 0 ETH | 0.00071281 | ||||
Claim | 21610111 | 49 days ago | IN | 0 ETH | 0.00039374 | ||||
Claim | 21607139 | 49 days ago | IN | 0 ETH | 0.00015418 | ||||
Claim | 21572535 | 54 days ago | IN | 0 ETH | 0.00068492 | ||||
Claim | 21571084 | 54 days ago | IN | 0 ETH | 0.00055326 | ||||
Claim | 21570451 | 55 days ago | IN | 0 ETH | 0.00060876 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
FPVesting
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 1 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; contract FPVesting is Ownable, Pausable { using Address for address; using SafeERC20 for IERC20; uint256 public tge; uint256 public linearUnlockAmount; uint256 public tgeAmount; uint256 public cliff; uint256 public duration; bool public initialized; mapping(address => bool) public vestingRole; mapping(address => bool) public canClaim; mapping(address => uint256) public claimedAmount; address public token; event AddVesting( address indexed account, uint256 amount, uint256 tgeAmounts, uint256 cliff, uint256 duration ); event Claim(address indexed account, uint256 amount); constructor(uint256 _tge,uint256 _linearUnlockAmount,uint256 _tgeAmount, uint256 _cliff, uint256 _duration , address _token) { vestingRole[_msgSender()] = true; tge = _tge; linearUnlockAmount = _linearUnlockAmount; tgeAmount = _tgeAmount; cliff = _cliff; duration = _duration; token = _token; initialized = false; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function setVestingRole(address _account, bool _role) public onlyOwner { vestingRole[_account] = _role; } function addVestingArray( address[] memory _accounts ) public whenNotPaused { require(vestingRole[_msgSender()] == true, "Permisionless"); require(!initialized,"Already Initialized"); for (uint256 i = 0; i < _accounts.length; i++) { require(!canClaim[_accounts[i]], "Already exist"); canClaim[_accounts[i]] = true; emit AddVesting( _accounts[i], tgeAmount, linearUnlockAmount, cliff, duration ); } } function initialize() external onlyOwner{ initialized = true; } function getClaimableAmount( address _account ) public view returns (uint256) { if(!canClaim[_account] || block.timestamp<tge){ return 0; } if ( block.timestamp <= tge + cliff ) { return tgeAmount - claimedAmount[_account]; } else { uint256 totalUnlock = tgeAmount+((linearUnlockAmount * (block.timestamp - (tge + cliff))) / duration); if (totalUnlock > (linearUnlockAmount+tgeAmount)) { totalUnlock = linearUnlockAmount+tgeAmount; } uint256 claimableAmount = totalUnlock - claimedAmount[_account]; return claimableAmount; } } function claim() public whenNotPaused { uint256 claimableAmount = getClaimableAmount(_msgSender()); require(claimableAmount > 0, "Nothing to claim"); claimedAmount[_msgSender()] += claimableAmount; IERC20(token).safeTransfer(_msgSender(), claimableAmount); emit Claim(_msgSender(), claimableAmount); } function returnTokenDecimal() external view returns(uint256){ return IERC20Metadata(token).decimals(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ 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)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ 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"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // 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 cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/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.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 1 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"_tge","type":"uint256"},{"internalType":"uint256","name":"_linearUnlockAmount","type":"uint256"},{"internalType":"uint256","name":"_tgeAmount","type":"uint256"},{"internalType":"uint256","name":"_cliff","type":"uint256"},{"internalType":"uint256","name":"_duration","type":"uint256"},{"internalType":"address","name":"_token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tgeAmounts","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"cliff","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"duration","type":"uint256"}],"name":"AddVesting","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"addVestingArray","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"canClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cliff","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getClaimableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"linearUnlockAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"returnTokenDecimal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_role","type":"bool"}],"name":"setVestingRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tge","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tgeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vestingRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5060405161109438038061109483398101604081905261002f916100f4565b610038336100a4565b6000805460ff60a01b19168155338152600760205260409020805460ff199081166001908117909255969055600294909455600392909255600455600555600a80546001600160a01b0319166001600160a01b0392909216919091179055600680549091169055610158565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060008060008060c0878903121561010d57600080fd5b86516020880151604089015160608a015160808b015160a08c0151949a50929850909650945092506001600160a01b038116811461014a57600080fd5b809150509295509295509295565b610f2d806101676000396000f3fe608060405234801561001057600080fd5b50600436106101125760003560e01c80630436fd6c1461011757806304e869031461012c5780630fb5a6b41461015f5780631091827a1461016857806313d033c014610171578063158ef93e1461017a5780633f4ba83a146101975780634c3969e71461019f5780634e71d92d146101a75780635aa24be8146101af5780635c975abb146101d2578063715018a6146101da5780638129fc1c146101e25780638456cb59146101ea5780638da5cb5b146101f25780639103a79c14610207578063a7497fa51461021a578063bf3506c114610223578063e12f3a6114610246578063f2fde38b14610259578063f410bc821461026c578063fc0c546a14610275575b600080fd5b61012a610125366004610c59565b610288565b005b61014c61013a366004610c90565b60096020526000908152604090205481565b6040519081526020015b60405180910390f35b61014c60055481565b61014c60035481565b61014c60045481565b6006546101879060ff1681565b6040519015158152602001610156565b61012a6102bb565b61014c6102cd565b61012a610343565b6101876101bd366004610c90565b60076020526000908152604090205460ff1681565b610187610413565b61012a610423565b61012a610435565b61012a61044c565b6101fa61045c565b6040516101569190610cb2565b61012a610215366004610cdc565b61046b565b61014c60015481565b610187610231366004610c90565b60086020526000908152604090205460ff1681565b61014c610254366004610c90565b610681565b61012a610267366004610c90565b610798565b61014c60025481565b600a546101fa906001600160a01b031681565b610290610811565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6102c3610811565b6102cb610870565b565b600a546040805163313ce56760e01b815290516000926001600160a01b03169163313ce5679160048083019260209291908290030181865afa158015610317573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061033b9190610da0565b60ff16905090565b61034b6108bf565b600061035633610681565b9050600081116103a05760405162461bcd60e51b815260206004820152601060248201526f4e6f7468696e6720746f20636c61696d60801b60448201526064015b60405180910390fd5b33600090815260096020526040812080548392906103bf908490610dd9565b9091555050600a546103db906001600160a01b03163383610907565b60405181815233907f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d49060200160405180910390a250565b600054600160a01b900460ff1690565b61042b610811565b6102cb600061095e565b61043d610811565b6006805460ff19166001179055565b610454610811565b6102cb6109ae565b6000546001600160a01b031690565b6104736108bf565b3360009081526007602052604090205460ff1615156001146104c75760405162461bcd60e51b815260206004820152600d60248201526c5065726d6973696f6e6c65737360981b6044820152606401610397565b60065460ff16156105105760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e48125b9a5d1a585b1a5e9959606a1b6044820152606401610397565b60005b815181101561067d576008600083838151811061053257610532610dec565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16156105965760405162461bcd60e51b815260206004820152600d60248201526c105b1c9958591e48195e1a5cdd609a1b6044820152606401610397565b6001600860008484815181106105ae576105ae610dec565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055508181815181106105ff576105ff610dec565b60200260200101516001600160a01b03167f8d486b51d4055882eba620aca7a04945f4a8f9d9af19ba7ce93f915f80e92309600354600254600454600554604051610663949392919093845260208401929092526040830152606082015260800190565b60405180910390a28061067581610e02565b915050610513565b5050565b6001600160a01b03811660009081526008602052604081205460ff1615806106aa575060015442105b156106b757506000919050565b6004546001546106c79190610dd9565b42116106f9576001600160a01b0382166000908152600960205260409020546003546106f39190610e1b565b92915050565b600060055460045460015461070e9190610dd9565b6107189042610e1b565b6002546107259190610e2e565b61072f9190610e45565b60035461073c9190610dd9565b905060035460025461074e9190610dd9565b811115610768576003546002546107659190610dd9565b90505b6001600160a01b03831660009081526009602052604081205461078b9083610e1b565b949350505050565b919050565b6107a0610811565b6001600160a01b0381166108055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610397565b61080e8161095e565b50565b3361081a61045c565b6001600160a01b0316146102cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610397565b6108786109f1565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516108b59190610cb2565b60405180910390a1565b6108c7610413565b156102cb5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610397565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610959908490610a3c565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109b66108bf565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586108a83390565b6109f9610413565b6102cb5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610397565b6000610a91826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b119092919063ffffffff16565b9050805160001480610ab2575080806020019051810190610ab29190610e67565b6109595760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610397565b606061078b848460008585600080866001600160a01b03168587604051610b389190610ea8565b60006040518083038185875af1925050503d8060008114610b75576040519150601f19603f3d011682016040523d82523d6000602084013e610b7a565b606091505b5091509150610b8b87838387610b96565b979650505050505050565b60608315610c05578251600003610bfe576001600160a01b0385163b610bfe5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610397565b508161078b565b61078b8383815115610c1a5781518083602001fd5b8060405162461bcd60e51b81526004016103979190610ec4565b80356001600160a01b038116811461079357600080fd5b801515811461080e57600080fd5b60008060408385031215610c6c57600080fd5b610c7583610c34565b91506020830135610c8581610c4b565b809150509250929050565b600060208284031215610ca257600080fd5b610cab82610c34565b9392505050565b6001600160a01b0391909116815260200190565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215610cef57600080fd5b82356001600160401b0380821115610d0657600080fd5b818501915085601f830112610d1a57600080fd5b813581811115610d2c57610d2c610cc6565b8060051b604051601f19603f83011681018181108582111715610d5157610d51610cc6565b604052918252848201925083810185019188831115610d6f57600080fd5b938501935b82851015610d9457610d8585610c34565b84529385019392850192610d74565b98975050505050505050565b600060208284031215610db257600080fd5b815160ff81168114610cab57600080fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156106f3576106f3610dc3565b634e487b7160e01b600052603260045260246000fd5b600060018201610e1457610e14610dc3565b5060010190565b818103818111156106f3576106f3610dc3565b80820281158282048414176106f3576106f3610dc3565b600082610e6257634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215610e7957600080fd5b8151610cab81610c4b565b60005b83811015610e9f578181015183820152602001610e87565b50506000910152565b60008251610eba818460208701610e84565b9190910192915050565b6020815260008251806020840152610ee3816040850160208701610e84565b601f01601f1916919091016040019291505056fea26469706673582212207870294566224c4ae1fc2a8588344b0ea6b631fc70923d45421d5afc42cc013f64736f6c634300081500330000000000000000000000000000000000000000000000000000000065d53d000000000000000000000000000000000000000000000004f68ca6d8cd91c60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ed4e00000000000000000000000000eeee2a2e650697d2a8e8bc990c2f3d04203be06f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101125760003560e01c80630436fd6c1461011757806304e869031461012c5780630fb5a6b41461015f5780631091827a1461016857806313d033c014610171578063158ef93e1461017a5780633f4ba83a146101975780634c3969e71461019f5780634e71d92d146101a75780635aa24be8146101af5780635c975abb146101d2578063715018a6146101da5780638129fc1c146101e25780638456cb59146101ea5780638da5cb5b146101f25780639103a79c14610207578063a7497fa51461021a578063bf3506c114610223578063e12f3a6114610246578063f2fde38b14610259578063f410bc821461026c578063fc0c546a14610275575b600080fd5b61012a610125366004610c59565b610288565b005b61014c61013a366004610c90565b60096020526000908152604090205481565b6040519081526020015b60405180910390f35b61014c60055481565b61014c60035481565b61014c60045481565b6006546101879060ff1681565b6040519015158152602001610156565b61012a6102bb565b61014c6102cd565b61012a610343565b6101876101bd366004610c90565b60076020526000908152604090205460ff1681565b610187610413565b61012a610423565b61012a610435565b61012a61044c565b6101fa61045c565b6040516101569190610cb2565b61012a610215366004610cdc565b61046b565b61014c60015481565b610187610231366004610c90565b60086020526000908152604090205460ff1681565b61014c610254366004610c90565b610681565b61012a610267366004610c90565b610798565b61014c60025481565b600a546101fa906001600160a01b031681565b610290610811565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6102c3610811565b6102cb610870565b565b600a546040805163313ce56760e01b815290516000926001600160a01b03169163313ce5679160048083019260209291908290030181865afa158015610317573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061033b9190610da0565b60ff16905090565b61034b6108bf565b600061035633610681565b9050600081116103a05760405162461bcd60e51b815260206004820152601060248201526f4e6f7468696e6720746f20636c61696d60801b60448201526064015b60405180910390fd5b33600090815260096020526040812080548392906103bf908490610dd9565b9091555050600a546103db906001600160a01b03163383610907565b60405181815233907f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d49060200160405180910390a250565b600054600160a01b900460ff1690565b61042b610811565b6102cb600061095e565b61043d610811565b6006805460ff19166001179055565b610454610811565b6102cb6109ae565b6000546001600160a01b031690565b6104736108bf565b3360009081526007602052604090205460ff1615156001146104c75760405162461bcd60e51b815260206004820152600d60248201526c5065726d6973696f6e6c65737360981b6044820152606401610397565b60065460ff16156105105760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e48125b9a5d1a585b1a5e9959606a1b6044820152606401610397565b60005b815181101561067d576008600083838151811061053257610532610dec565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16156105965760405162461bcd60e51b815260206004820152600d60248201526c105b1c9958591e48195e1a5cdd609a1b6044820152606401610397565b6001600860008484815181106105ae576105ae610dec565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055508181815181106105ff576105ff610dec565b60200260200101516001600160a01b03167f8d486b51d4055882eba620aca7a04945f4a8f9d9af19ba7ce93f915f80e92309600354600254600454600554604051610663949392919093845260208401929092526040830152606082015260800190565b60405180910390a28061067581610e02565b915050610513565b5050565b6001600160a01b03811660009081526008602052604081205460ff1615806106aa575060015442105b156106b757506000919050565b6004546001546106c79190610dd9565b42116106f9576001600160a01b0382166000908152600960205260409020546003546106f39190610e1b565b92915050565b600060055460045460015461070e9190610dd9565b6107189042610e1b565b6002546107259190610e2e565b61072f9190610e45565b60035461073c9190610dd9565b905060035460025461074e9190610dd9565b811115610768576003546002546107659190610dd9565b90505b6001600160a01b03831660009081526009602052604081205461078b9083610e1b565b949350505050565b919050565b6107a0610811565b6001600160a01b0381166108055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610397565b61080e8161095e565b50565b3361081a61045c565b6001600160a01b0316146102cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610397565b6108786109f1565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516108b59190610cb2565b60405180910390a1565b6108c7610413565b156102cb5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610397565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610959908490610a3c565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109b66108bf565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586108a83390565b6109f9610413565b6102cb5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610397565b6000610a91826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b119092919063ffffffff16565b9050805160001480610ab2575080806020019051810190610ab29190610e67565b6109595760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610397565b606061078b848460008585600080866001600160a01b03168587604051610b389190610ea8565b60006040518083038185875af1925050503d8060008114610b75576040519150601f19603f3d011682016040523d82523d6000602084013e610b7a565b606091505b5091509150610b8b87838387610b96565b979650505050505050565b60608315610c05578251600003610bfe576001600160a01b0385163b610bfe5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610397565b508161078b565b61078b8383815115610c1a5781518083602001fd5b8060405162461bcd60e51b81526004016103979190610ec4565b80356001600160a01b038116811461079357600080fd5b801515811461080e57600080fd5b60008060408385031215610c6c57600080fd5b610c7583610c34565b91506020830135610c8581610c4b565b809150509250929050565b600060208284031215610ca257600080fd5b610cab82610c34565b9392505050565b6001600160a01b0391909116815260200190565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215610cef57600080fd5b82356001600160401b0380821115610d0657600080fd5b818501915085601f830112610d1a57600080fd5b813581811115610d2c57610d2c610cc6565b8060051b604051601f19603f83011681018181108582111715610d5157610d51610cc6565b604052918252848201925083810185019188831115610d6f57600080fd5b938501935b82851015610d9457610d8585610c34565b84529385019392850192610d74565b98975050505050505050565b600060208284031215610db257600080fd5b815160ff81168114610cab57600080fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156106f3576106f3610dc3565b634e487b7160e01b600052603260045260246000fd5b600060018201610e1457610e14610dc3565b5060010190565b818103818111156106f3576106f3610dc3565b80820281158282048414176106f3576106f3610dc3565b600082610e6257634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215610e7957600080fd5b8151610cab81610c4b565b60005b83811015610e9f578181015183820152602001610e87565b50506000910152565b60008251610eba818460208701610e84565b9190910192915050565b6020815260008251806020840152610ee3816040850160208701610e84565b601f01601f1916919091016040019291505056fea26469706673582212207870294566224c4ae1fc2a8588344b0ea6b631fc70923d45421d5afc42cc013f64736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000065d53d000000000000000000000000000000000000000000000004f68ca6d8cd91c60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ed4e00000000000000000000000000eeee2a2e650697d2a8e8bc990c2f3d04203be06f
-----Decoded View---------------
Arg [0] : _tge (uint256): 1708473600
Arg [1] : _linearUnlockAmount (uint256): 23437500000000000000000
Arg [2] : _tgeAmount (uint256): 0
Arg [3] : _cliff (uint256): 0
Arg [4] : _duration (uint256): 15552000
Arg [5] : _token (address): 0xEeee2A2E650697d2A8e8BC990C2f3d04203bE06f
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000065d53d00
Arg [1] : 0000000000000000000000000000000000000000000004f68ca6d8cd91c60000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000ed4e00
Arg [5] : 000000000000000000000000eeee2a2e650697d2a8e8bc990c2f3d04203be06f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.000812 | 6,168,962.3752 | $5,011.79 |
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.