ETH Price: $3,244.38 (-1.44%)

Contract

0x92a451708e1542fe5f8Be9a6CF6a7a96C01238Cd
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer Ownersh...184215772023-10-24 17:22:47452 days ago1698168167IN
0x92a45170...6C01238Cd
0 ETH0.0014317550
Set Garbage Sale184215762023-10-24 17:22:35452 days ago1698168155IN
0x92a45170...6C01238Cd
0 ETH0.002367950

Advanced mode:
Parent Transaction Hash Block
From
To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
GarbageVesting

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : GarbageVesting.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.18;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./IGarbageVesting.sol";

contract GarbageVesting is Ownable, IGarbageVesting {
    using SafeERC20 for IERC20;
    struct Beneficiary {
        uint256 amount;
        uint256 vestingAmount;
        uint256 claimed;
    }

    // _______________ Storage _______________

    /// @dev Number of vesting periods.
    uint256 public vestingPeriods;

    /// @dev Vesting period duration.
    uint256 public vestingPeriodDuration;

    /// @dev Vesting start timestamp.
    uint256 public startTimestamp;

    /// @dev Vesting end timestamp.
    uint256 public endTimestamp;

    /// @dev Sum of all vesting amounts added to the contract.
    uint256 public totalVestingAmount;

    /// @dev vestingToken $GARBAGE token address.
    IERC20 public vestingToken;

    /// @dev Garbage sale contract address.
    address public garbageSale;

    // beneficiary address => beneficiary data struct
    mapping(address => Beneficiary) public beneficiaries;

    // amount of tokens claimed by all beneficiaries
    uint256 public totalClaimed;

    uint256 public constant VESTING_DURATION = 10 weeks;

    // _______________ Errors _______________

    /// @dev Revert is zero address is passed.
    error ZeroAddress();

    /// @dev Revert if zero vesting amount is passed.
    error ZeroVestingAmount(address _beneficiary);

    error LessThanTwoVestingPeriods(uint256 _vestingPeriods);

    /// @dev Revert if beneficiary does not exist.
    error NotABeneficiary(address _user);

    /// @dev Revert if caller is not a garbage sale contract.
    error NotAGarbageSale(address _caller);

    /// @dev Revert if vesting is not initialized.
    error VestingDatesNotSet();

    /// @dev Revert if vesting period is not set.
    error VestingPeriodNotSet();

    /// @dev Revert if user has already claimed.
    error NothingToClaim(address user);

    /// @dev Revert when trying to rescue vesting tokens.
    error VestingTokenRescue(IERC20 vestingToken);

    /// @dev Revert if end timestamp is before start timestamp.
    error EndTimestampBeforeStartTimestamp(uint256 end, uint256 start);

    /// @dev Revert if claim amount exceeds vesting amount.
    error ClaimAmountExceedsVestingAmount(address _beneficiary, uint256 _claimAmount, uint256 _amount);

    /// @dev Revert if start timestamp is before current timestamp (now).
    error StartTimestampBeforeCurrentTimestamp(uint256 start, uint256 current);

    /// @dev Revert if vesting already started.
    error VestingAlreadyStarted();

    // _______________ Events _______________

    /**
     * @dev Emitted when the claim is successful.
     *
     * @param _user   Address of the user.
     * @param _amount   Amount of the claim.
     */
    event Claim(address indexed _user, uint256 indexed _amount);

    /**
     * @dev Emitted when a new beneficiary is added or when additional amount is added to the existing beneficiary.
     *
     * @param _beneficiary   Address of the beneficiary.
     * @param _newAmount   Total amount to vest to the user.
     * @param _newVestingAmount   Token amount per one vesting period.
     */
    event BeneficiaryUpdated(address indexed _beneficiary, uint256 indexed _newAmount, uint256 _newVestingAmount);

    /**
     * @dev Emitted when the start and/or end date is updated.
     */
    event VestingDatesUpdated(uint256 indexed _startTimestamp, uint256 indexed _endTimestamp);

    /**
     * @dev Emitted when the vestingToken token address is updated.
     */
    event VestingTokenUpdated(address indexed _vestingToken);

    /**
     * @dev Emitted when the garbage sale contract address is updated.
     */
    event GarbageVestingUpdated(address indexed _garbageVesting);

    /**
     * @dev Emitted when the number of vesting periods is updated.
     */
    event VestingPeriodsNumberUpdated(uint256 _vestingPeriodsNumber);

    /**
     * @dev Emitted when ERC20 tokens are rescued.
     */
    event ERC20Rescued(address indexed _token, address indexed _to, uint256 indexed _amount);

    // _______________ Modifiers _______________

    /**
     * @dev Zero address check.
     */
    modifier notZeroAddress(address _address) {
        if (_address == address(0)) {
            revert ZeroAddress();
        }
        _;
    }

    /**
     * @dev Check if _user is a beneficiary.
     */
    modifier onlyBeneficiary(address _user) {
        if (beneficiaries[_user].amount == 0) {
            revert NotABeneficiary(_user);
        }
        _;
    }

    /**
     * @dev Check if mgs.sender is a garbage sale contract.
     */
    modifier onlyGarbageSale() {
        if (msg.sender != garbageSale) {
            revert NotAGarbageSale(msg.sender);
        }
        _;
    }

    // _______________ Constructor ______________

    /**
     * @dev Initialize vesting.
     *
     * @param _startTimestamp   Start timestamp of the vesting.
     * @param _vestingToken   Address of the vestingToken token.
     * @param _vestingPeriods   Number of vesting periods.
     */
    constructor(
        IERC20 _vestingToken,
        uint256 _startTimestamp,
        uint256 _vestingPeriods
    ) Ownable() {
        if (_startTimestamp <= block.timestamp)
            revert StartTimestampBeforeCurrentTimestamp(_startTimestamp, block.timestamp);
        // init variables
        _setVestingStartDate(_startTimestamp);
        _setVestingToken(_vestingToken);
        _setVestingPeriods(_vestingPeriods);
    }

    // _______________ External functions _______________

    /**
     * @dev Claim tokens.
     */
    function claim() external onlyBeneficiary(msg.sender) {
        uint256 amount = calculateClaimAmount(msg.sender);
        if (amount == 0) {
            revert NothingToClaim(msg.sender);
        }
        beneficiaries[msg.sender].claimed += amount;
        totalClaimed += amount;

        vestingToken.safeTransfer(msg.sender, amount);

        emit Claim(msg.sender, amount);
    }

    /**
     * @dev Update start timestamp. End timestamp is calculated based on the start timestamp.
     * @param _startTimestamp  Start timestamp of the vesting.
     */
    function setStartTimestamp(uint256 _startTimestamp) external onlyOwner {
        _setVestingStartDate(_startTimestamp);
    }

    /**
     * @dev Set new GarbageSale contract address.
     * @param _garbageSale Address of the new GarbageSale contract.
     */
    function setGarbageSale(address _garbageSale) external onlyOwner {
        _setGarbageSale(_garbageSale);
    }

    /**
     * @dev Rescue ERC20 tokens from the contract. Token must be not vestingToken.
     * @param _token Address of the token to rescue.
     * @param _to Address to send tokens to.
     */
    function rescueERC20(IERC20 _token, address _to)
        external
        onlyOwner
        notZeroAddress(address(_token))
        notZeroAddress(_to)
    {
        if (vestingToken == _token) {
            revert VestingTokenRescue(vestingToken);
        }
        emit ERC20Rescued(address(_token), _to, _token.balanceOf(address(this)));
        _token.safeTransfer(_to, _token.balanceOf(address(this)));
    }

    // _______________ Garbage sale functions _______________

    /**
     * @dev Allows GarbageSale contract to add beneficiary. If beneficiary already exists, it adds amount to the existing beneficiary.
     * @param _beneficiary Address of the beneficiary.
     * @param _amount Amount of tokens to be vested.
     */
    function addAmountToBeneficiary(address _beneficiary, uint256 _amount) external onlyGarbageSale {
        vestingToken.safeTransferFrom(msg.sender, address(this), _amount);
        _addAmountToBeneficiary(_beneficiary, _amount);
    }

    // _______________ Public functions _______________

    /**
     * @dev Calculate claim amount for the beneficiary. It returns 0 if vesting is not active or beneficiary has already claimed all tokens.
     *
     * @param _beneficiary   Address of the beneficiary.
     * @return claimAmount   Amount of tokens that can be claimed by the beneficiary.
     */
    function calculateClaimAmount(address _beneficiary)
        public
        view
        onlyBeneficiary(_beneficiary)
        returns (uint256 claimAmount)
    {
        Beneficiary storage beneficiary = beneficiaries[_beneficiary];

        // theoretically should never happen, but just in case
        if (startTimestamp == 0 || endTimestamp == 0) return 0;
        if (beneficiary.amount == 0 || beneficiary.amount <= beneficiary.claimed) return 0;
        if (block.timestamp <= startTimestamp) return 0;

        uint256 vestedPeriods = (block.timestamp - startTimestamp) / vestingPeriodDuration;
        // because we already checked that block.timestamp > initialUnlockTimestamp, so user can claim at least initialAmount
        uint256 claimableAmount = 0;

        if (vestedPeriods >= vestingPeriods) {
            claimableAmount = beneficiary.amount;
        } else {
            claimableAmount += vestedPeriods * beneficiary.vestingAmount;
        }
        claimAmount = claimableAmount - beneficiary.claimed;
        // should never happen, but just in case
        if (claimAmount + beneficiary.claimed > beneficiary.amount)
            revert ClaimAmountExceedsVestingAmount(_beneficiary, claimAmount, beneficiary.amount);
    }

    /**
     * @dev Returns all vesting data.
     *
     * @return _totalVestingAmount   Total amount of vesting tokens.
     * @return _startTimestamp   Start timestamp of the vesting.
     * @return _endTimestamp   End timestamp of the vesting.
     * @return _vestingPeriods   Number of vesting periods.
     * @return _vestingPeriodDuration   Duration of the vesting period.
     * @return _vestingToken   Address of the vestingToken token.
     */
    function getAllVestingData()
        external
        view
        returns (
            uint256 _totalVestingAmount,
            uint256 _startTimestamp,
            uint256 _endTimestamp,
            uint256 _vestingPeriods,
            uint256 _vestingPeriodDuration,
            address _vestingToken
        )
    {
        _totalVestingAmount = totalVestingAmount;
        _startTimestamp = startTimestamp;
        _endTimestamp = endTimestamp;
        _vestingPeriods = vestingPeriods;
        _vestingPeriodDuration = vestingPeriodDuration;
        _vestingToken = address(vestingToken);
    }

    // _______________ Internal functions _______________

    /**
     * @dev Add beneficiary to the vesting.
     *
     * @param _beneficiary   Address of the beneficiary.
     * @param _amount   Amount of tokens to be vested.
     */
    function _addAmountToBeneficiary(address _beneficiary, uint256 _amount) internal notZeroAddress(_beneficiary) {
        // theoretically it should never happen, but just in case
        if (vestingPeriods == 0) revert VestingPeriodNotSet();
        if (_amount == 0) revert ZeroVestingAmount(_beneficiary);

        beneficiaries[_beneficiary].amount += _amount;
        beneficiaries[_beneficiary].vestingAmount = beneficiaries[_beneficiary].amount / vestingPeriods;

        emit BeneficiaryUpdated(
            _beneficiary,
            beneficiaries[_beneficiary].amount,
            beneficiaries[_beneficiary].vestingAmount
        );
        totalVestingAmount = totalVestingAmount + _amount;
    }

    /**
     * @dev Set the claim start timestamp. End timestamp is calculated based on the start timestamp.
     *
     * @param _startTimestamp Claim start timestamp.
     */
    function _setVestingStartDate(uint256 _startTimestamp) internal {
        if (block.timestamp > startTimestamp && startTimestamp != 0) revert VestingAlreadyStarted();
        startTimestamp = _startTimestamp;
        endTimestamp = startTimestamp + VESTING_DURATION;
        emit VestingDatesUpdated(_startTimestamp, endTimestamp);
    }

    /**
     * @dev Set the vestingToken token address.
     * Requirements:
     * - vestingToken token address must not be zero address.
     * @param _vestingToken vestingToken token address.
     */
    function _setVestingToken(IERC20 _vestingToken) internal notZeroAddress(address(_vestingToken)) {
        vestingToken = _vestingToken;
        emit VestingTokenUpdated(address(_vestingToken));
    }

    /**
     * @dev Set address of the garbage sale contract.
     * Requirements:
     * - garbage sale contract address must not be zero address.
     * @param _garbageSale Address of the garbage sale contract.
     */
    function _setGarbageSale(address _garbageSale) internal notZeroAddress(_garbageSale) {
        garbageSale = _garbageSale;
        emit GarbageVestingUpdated(_garbageSale);
    }

    /**
     * @dev Set the vesting periods.
     * Requirements:
     * - vesting periods must be greater than 1.
     * @param _vestingPeriods Number of vesting periods.
     */
    function _setVestingPeriods(uint256 _vestingPeriods) internal {
        if (_vestingPeriods < 2) revert LessThanTwoVestingPeriods(_vestingPeriods);
        // theoretically it should never happen, but just in case
        if (endTimestamp == 0 || startTimestamp == 0) revert VestingDatesNotSet();
        // theoretically it should never happen, but just in case
        if (endTimestamp <= startTimestamp) revert EndTimestampBeforeStartTimestamp(endTimestamp, startTimestamp);
        vestingPeriods = _vestingPeriods;
        vestingPeriodDuration = (endTimestamp - startTimestamp) / vestingPeriods;
        emit VestingPeriodsNumberUpdated(_vestingPeriods);
    }
}

File 2 of 8 : IGarbageVesting.sol
pragma solidity 0.8.18;

interface IGarbageVesting {
    function addAmountToBeneficiary(address _beneficiary, uint256 _amount) external;
}

File 3 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 5 of 8 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 6 of 8 : Context.sol
// 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;
    }
}

File 7 of 8 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 8 of 8 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_vestingToken","type":"address"},{"internalType":"uint256","name":"_startTimestamp","type":"uint256"},{"internalType":"uint256","name":"_vestingPeriods","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"},{"internalType":"uint256","name":"_claimAmount","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ClaimAmountExceedsVestingAmount","type":"error"},{"inputs":[{"internalType":"uint256","name":"end","type":"uint256"},{"internalType":"uint256","name":"start","type":"uint256"}],"name":"EndTimestampBeforeStartTimestamp","type":"error"},{"inputs":[{"internalType":"uint256","name":"_vestingPeriods","type":"uint256"}],"name":"LessThanTwoVestingPeriods","type":"error"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"NotABeneficiary","type":"error"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"}],"name":"NotAGarbageSale","type":"error"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"NothingToClaim","type":"error"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"current","type":"uint256"}],"name":"StartTimestampBeforeCurrentTimestamp","type":"error"},{"inputs":[],"name":"VestingAlreadyStarted","type":"error"},{"inputs":[],"name":"VestingDatesNotSet","type":"error"},{"inputs":[],"name":"VestingPeriodNotSet","type":"error"},{"inputs":[{"internalType":"contract IERC20","name":"vestingToken","type":"address"}],"name":"VestingTokenRescue","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"}],"name":"ZeroVestingAmount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_beneficiary","type":"address"},{"indexed":true,"internalType":"uint256","name":"_newAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_newVestingAmount","type":"uint256"}],"name":"BeneficiaryUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_token","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ERC20Rescued","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_garbageVesting","type":"address"}],"name":"GarbageVestingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_startTimestamp","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_endTimestamp","type":"uint256"}],"name":"VestingDatesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_vestingPeriodsNumber","type":"uint256"}],"name":"VestingPeriodsNumberUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_vestingToken","type":"address"}],"name":"VestingTokenUpdated","type":"event"},{"inputs":[],"name":"VESTING_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"addAmountToBeneficiary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"beneficiaries","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"vestingAmount","type":"uint256"},{"internalType":"uint256","name":"claimed","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"}],"name":"calculateClaimAmount","outputs":[{"internalType":"uint256","name":"claimAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"garbageSale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllVestingData","outputs":[{"internalType":"uint256","name":"_totalVestingAmount","type":"uint256"},{"internalType":"uint256","name":"_startTimestamp","type":"uint256"},{"internalType":"uint256","name":"_endTimestamp","type":"uint256"},{"internalType":"uint256","name":"_vestingPeriods","type":"uint256"},{"internalType":"uint256","name":"_vestingPeriodDuration","type":"uint256"},{"internalType":"address","name":"_vestingToken","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_garbageSale","type":"address"}],"name":"setGarbageSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTimestamp","type":"uint256"}],"name":"setStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalVestingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vestingPeriodDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingPeriods","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162001358380380620013588339810160408190526200003491620002bb565b6200003f3362000098565b4282116200006e57604051639d4dc21160e01b8152600481018390524260248201526044015b60405180910390fd5b6200007982620000e8565b620000848362000161565b6200008f81620001d5565b5050506200036b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60035442118015620000fb575060035415155b156200011a576040516372de7acd60e01b815260040160405180910390fd5b60038190556200012e625c49008262000316565b600481905560405182907f0cd53351054928c71dc72be9e4b1e61418cda48b19239926bde4ca390c48b0a090600090a350565b806001600160a01b0381166200018a5760405163d92e233d60e01b815260040160405180910390fd5b600680546001600160a01b0319166001600160a01b0384169081179091556040517f46c55ef9996a0eea1aa73e1e870aac3f09ee53687a0f8015413f6dd6427857a090600090a25050565b6002811015620001fb5760405162063c5f60e41b81526004810182905260240162000065565b60045415806200020b5750600354155b156200022a576040516376ccf58360e01b815260040160405180910390fd5b600354600454116200025e57600480546003546040516320f2525760e01b8152620000659301918252602082015260400190565b60018190556003546004548291620002769162000332565b62000282919062000348565b6002556040518181527fb7535d674a213d3331be7c7951be403a651b42615cbe41c31e225f6111f01a3d9060200160405180910390a150565b600080600060608486031215620002d157600080fd5b83516001600160a01b0381168114620002e957600080fd5b602085015160409095015190969495509392505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156200032c576200032c62000300565b92915050565b818103818111156200032c576200032c62000300565b6000826200036657634e487b7160e01b600052601260045260246000fd5b500490565b610fdd806200037b6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063a85adeab116100ad578063deec5a8e11610071578063deec5a8e1461029e578063e6fd48bc146102b1578063f1930caf146102ba578063f2fde38b146102cd578063fdc149ef146102e057600080fd5b8063a85adeab1461021e578063c44bef7514610227578063d54ad2a11461023a578063db6c850b14610243578063dd978de11461025657600080fd5b80634e71d92d116100f45780634e71d92d146101d55780635d799f87146101df578063715018a6146101f25780638da5cb5b146101fa578063a40d1cbd1461020b57600080fd5b806301567739146101315780630640d9411461018057806319d152fa146101975780632db94d19146101c25780634cfc4d30146101cb575b600080fd5b61016061013f366004610de3565b60086020526000908152604090208054600182015460029092015490919083565b604080519384526020840192909252908201526060015b60405180910390f35b61018960025481565b604051908152602001610177565b6006546101aa906001600160a01b031681565b6040516001600160a01b039091168152602001610177565b61018960055481565b610189625c490081565b6101dd6102e9565b005b6101dd6101ed366004610e00565b6103e0565b6101dd6105a2565b6000546001600160a01b03166101aa565b610189610219366004610de3565b6105b6565b61018960045481565b6101dd610235366004610e39565b61071d565b61018960095481565b6101dd610251366004610de3565b610731565b60055460035460045460015460025460065460408051968752602087019590955293850192909252606084015260808301526001600160a01b031660a082015260c001610177565b6101dd6102ac366004610e52565b610742565b61018960035481565b6007546101aa906001600160a01b031681565b6101dd6102db366004610de3565b610795565b61018960015481565b336000818152600860205260408120549003610328576040516301b6d7df60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b6000610333336105b6565b905080600003610358576040516332559a3360e11b815233600482015260240161031f565b336000908152600860205260408120600201805483929061037a908490610e94565b9250508190555080600960008282546103939190610e94565b90915550506006546103af906001600160a01b0316338361080b565b604051819033907f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d490600090a35050565b6103e8610873565b816001600160a01b0381166104105760405163d92e233d60e01b815260040160405180910390fd5b816001600160a01b0381166104385760405163d92e233d60e01b815260040160405180910390fd5b6006546001600160a01b03808616911603610475576006546040516305b9ca9b60e31b81526001600160a01b03909116600482015260240161031f565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa1580156104b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104dd9190610ead565b836001600160a01b0316856001600160a01b03167f8bbfbb5d7fcacf6fc74005cdede0635561638507f576c95f7f294c22141be2e560405160405180910390a46040516370a0823160e01b815230600482015261059c9084906001600160a01b038716906370a0823190602401602060405180830381865afa158015610567573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058b9190610ead565b6001600160a01b038716919061080b565b50505050565b6105aa610873565b6105b460006108cd565b565b6001600160a01b038116600090815260086020526040812054829082036105fb576040516301b6d7df60e01b81526001600160a01b038216600482015260240161031f565b6001600160a01b038316600090815260086020526040902060035415806106225750600454155b15610631576000925050610717565b8054158061064457506002810154815411155b15610653576000925050610717565b6003544211610666576000925050610717565b6000600254600354426106799190610ec6565b6106839190610ed9565b905060006001548210610698575081546106b4565b60018301546106a79083610efb565b6106b19082610e94565b90505b60028301546106c39082610ec6565b83546002850154919650906106d89087610e94565b111561071357825460405163a935770360e01b81526001600160a01b038816600482015260248101879052604481019190915260640161031f565b5050505b50919050565b610725610873565b61072e8161091d565b50565b610739610873565b61072e81610992565b6007546001600160a01b0316331461076f57604051633c35c65f60e21b815233600482015260240161031f565b600654610787906001600160a01b0316333084610a05565b6107918282610a3d565b5050565b61079d610873565b6001600160a01b0381166108025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161031f565b61072e816108cd565b6040516001600160a01b03831660248201526044810182905261086e90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610b79565b505050565b6000546001600160a01b031633146105b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161031f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6003544211801561092f575060035415155b1561094d576040516372de7acd60e01b815260040160405180910390fd5b600381905561095f625c490082610e94565b600481905560405182907f0cd53351054928c71dc72be9e4b1e61418cda48b19239926bde4ca390c48b0a090600090a350565b806001600160a01b0381166109ba5760405163d92e233d60e01b815260040160405180910390fd5b600780546001600160a01b0319166001600160a01b0384169081179091556040517fb6a5e60f9abedc836809c6ab249f2b966fa5930c919c7096b7c0af53ca566e4690600090a25050565b6040516001600160a01b038085166024830152831660448201526064810182905261059c9085906323b872dd60e01b90608401610837565b816001600160a01b038116610a655760405163d92e233d60e01b815260040160405180910390fd5b600154600003610a885760405163d30c113560e01b815260040160405180910390fd5b81600003610ab457604051635ea6437160e01b81526001600160a01b038416600482015260240161031f565b6001600160a01b03831660009081526008602052604081208054849290610adc908490610e94565b90915550506001546001600160a01b038416600090815260086020526040902054610b079190610ed9565b6001600160a01b038416600081815260086020526040908190206001810184905554905190927f9d45e2aef20053093589f016fb8deae1cd7bb218eefd02eb5f38ccf22512c8dd91610b5b91815260200190565b60405180910390a381600554610b719190610e94565b600555505050565b6000610bce826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610c4b9092919063ffffffff16565b80519091501561086e5780806020019051810190610bec9190610f12565b61086e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161031f565b6060610c5a8484600085610c64565b90505b9392505050565b606082471015610cc55760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161031f565b6001600160a01b0385163b610d1c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161031f565b600080866001600160a01b03168587604051610d389190610f58565b60006040518083038185875af1925050503d8060008114610d75576040519150601f19603f3d011682016040523d82523d6000602084013e610d7a565b606091505b5091509150610d8a828286610d95565b979650505050505050565b60608315610da4575081610c5d565b825115610db45782518084602001fd5b8160405162461bcd60e51b815260040161031f9190610f74565b6001600160a01b038116811461072e57600080fd5b600060208284031215610df557600080fd5b8135610c5d81610dce565b60008060408385031215610e1357600080fd5b8235610e1e81610dce565b91506020830135610e2e81610dce565b809150509250929050565b600060208284031215610e4b57600080fd5b5035919050565b60008060408385031215610e6557600080fd5b8235610e7081610dce565b946020939093013593505050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610ea757610ea7610e7e565b92915050565b600060208284031215610ebf57600080fd5b5051919050565b81810381811115610ea757610ea7610e7e565b600082610ef657634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417610ea757610ea7610e7e565b600060208284031215610f2457600080fd5b81518015158114610c5d57600080fd5b60005b83811015610f4f578181015183820152602001610f37565b50506000910152565b60008251610f6a818460208701610f34565b9190910192915050565b6020815260008251806020840152610f93816040850160208701610f34565b601f01601f1916919091016040019291505056fea2646970667358221220c9aa500c1227c5391cbd997d11b45a1b41879e1e6a021ad13b79d746280f7d3364736f6c63430008120033000000000000000000000000ad9c91e521c50e98ba457c47b0ddd785fa8f022a000000000000000000000000000000000000000000000000000000006e9df288000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063a85adeab116100ad578063deec5a8e11610071578063deec5a8e1461029e578063e6fd48bc146102b1578063f1930caf146102ba578063f2fde38b146102cd578063fdc149ef146102e057600080fd5b8063a85adeab1461021e578063c44bef7514610227578063d54ad2a11461023a578063db6c850b14610243578063dd978de11461025657600080fd5b80634e71d92d116100f45780634e71d92d146101d55780635d799f87146101df578063715018a6146101f25780638da5cb5b146101fa578063a40d1cbd1461020b57600080fd5b806301567739146101315780630640d9411461018057806319d152fa146101975780632db94d19146101c25780634cfc4d30146101cb575b600080fd5b61016061013f366004610de3565b60086020526000908152604090208054600182015460029092015490919083565b604080519384526020840192909252908201526060015b60405180910390f35b61018960025481565b604051908152602001610177565b6006546101aa906001600160a01b031681565b6040516001600160a01b039091168152602001610177565b61018960055481565b610189625c490081565b6101dd6102e9565b005b6101dd6101ed366004610e00565b6103e0565b6101dd6105a2565b6000546001600160a01b03166101aa565b610189610219366004610de3565b6105b6565b61018960045481565b6101dd610235366004610e39565b61071d565b61018960095481565b6101dd610251366004610de3565b610731565b60055460035460045460015460025460065460408051968752602087019590955293850192909252606084015260808301526001600160a01b031660a082015260c001610177565b6101dd6102ac366004610e52565b610742565b61018960035481565b6007546101aa906001600160a01b031681565b6101dd6102db366004610de3565b610795565b61018960015481565b336000818152600860205260408120549003610328576040516301b6d7df60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b6000610333336105b6565b905080600003610358576040516332559a3360e11b815233600482015260240161031f565b336000908152600860205260408120600201805483929061037a908490610e94565b9250508190555080600960008282546103939190610e94565b90915550506006546103af906001600160a01b0316338361080b565b604051819033907f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d490600090a35050565b6103e8610873565b816001600160a01b0381166104105760405163d92e233d60e01b815260040160405180910390fd5b816001600160a01b0381166104385760405163d92e233d60e01b815260040160405180910390fd5b6006546001600160a01b03808616911603610475576006546040516305b9ca9b60e31b81526001600160a01b03909116600482015260240161031f565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa1580156104b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104dd9190610ead565b836001600160a01b0316856001600160a01b03167f8bbfbb5d7fcacf6fc74005cdede0635561638507f576c95f7f294c22141be2e560405160405180910390a46040516370a0823160e01b815230600482015261059c9084906001600160a01b038716906370a0823190602401602060405180830381865afa158015610567573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058b9190610ead565b6001600160a01b038716919061080b565b50505050565b6105aa610873565b6105b460006108cd565b565b6001600160a01b038116600090815260086020526040812054829082036105fb576040516301b6d7df60e01b81526001600160a01b038216600482015260240161031f565b6001600160a01b038316600090815260086020526040902060035415806106225750600454155b15610631576000925050610717565b8054158061064457506002810154815411155b15610653576000925050610717565b6003544211610666576000925050610717565b6000600254600354426106799190610ec6565b6106839190610ed9565b905060006001548210610698575081546106b4565b60018301546106a79083610efb565b6106b19082610e94565b90505b60028301546106c39082610ec6565b83546002850154919650906106d89087610e94565b111561071357825460405163a935770360e01b81526001600160a01b038816600482015260248101879052604481019190915260640161031f565b5050505b50919050565b610725610873565b61072e8161091d565b50565b610739610873565b61072e81610992565b6007546001600160a01b0316331461076f57604051633c35c65f60e21b815233600482015260240161031f565b600654610787906001600160a01b0316333084610a05565b6107918282610a3d565b5050565b61079d610873565b6001600160a01b0381166108025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161031f565b61072e816108cd565b6040516001600160a01b03831660248201526044810182905261086e90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610b79565b505050565b6000546001600160a01b031633146105b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161031f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6003544211801561092f575060035415155b1561094d576040516372de7acd60e01b815260040160405180910390fd5b600381905561095f625c490082610e94565b600481905560405182907f0cd53351054928c71dc72be9e4b1e61418cda48b19239926bde4ca390c48b0a090600090a350565b806001600160a01b0381166109ba5760405163d92e233d60e01b815260040160405180910390fd5b600780546001600160a01b0319166001600160a01b0384169081179091556040517fb6a5e60f9abedc836809c6ab249f2b966fa5930c919c7096b7c0af53ca566e4690600090a25050565b6040516001600160a01b038085166024830152831660448201526064810182905261059c9085906323b872dd60e01b90608401610837565b816001600160a01b038116610a655760405163d92e233d60e01b815260040160405180910390fd5b600154600003610a885760405163d30c113560e01b815260040160405180910390fd5b81600003610ab457604051635ea6437160e01b81526001600160a01b038416600482015260240161031f565b6001600160a01b03831660009081526008602052604081208054849290610adc908490610e94565b90915550506001546001600160a01b038416600090815260086020526040902054610b079190610ed9565b6001600160a01b038416600081815260086020526040908190206001810184905554905190927f9d45e2aef20053093589f016fb8deae1cd7bb218eefd02eb5f38ccf22512c8dd91610b5b91815260200190565b60405180910390a381600554610b719190610e94565b600555505050565b6000610bce826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610c4b9092919063ffffffff16565b80519091501561086e5780806020019051810190610bec9190610f12565b61086e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161031f565b6060610c5a8484600085610c64565b90505b9392505050565b606082471015610cc55760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161031f565b6001600160a01b0385163b610d1c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161031f565b600080866001600160a01b03168587604051610d389190610f58565b60006040518083038185875af1925050503d8060008114610d75576040519150601f19603f3d011682016040523d82523d6000602084013e610d7a565b606091505b5091509150610d8a828286610d95565b979650505050505050565b60608315610da4575081610c5d565b825115610db45782518084602001fd5b8160405162461bcd60e51b815260040161031f9190610f74565b6001600160a01b038116811461072e57600080fd5b600060208284031215610df557600080fd5b8135610c5d81610dce565b60008060408385031215610e1357600080fd5b8235610e1e81610dce565b91506020830135610e2e81610dce565b809150509250929050565b600060208284031215610e4b57600080fd5b5035919050565b60008060408385031215610e6557600080fd5b8235610e7081610dce565b946020939093013593505050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610ea757610ea7610e7e565b92915050565b600060208284031215610ebf57600080fd5b5051919050565b81810381811115610ea757610ea7610e7e565b600082610ef657634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417610ea757610ea7610e7e565b600060208284031215610f2457600080fd5b81518015158114610c5d57600080fd5b60005b83811015610f4f578181015183820152602001610f37565b50506000910152565b60008251610f6a818460208701610f34565b9190910192915050565b6020815260008251806020840152610f93816040850160208701610f34565b601f01601f1916919091016040019291505056fea2646970667358221220c9aa500c1227c5391cbd997d11b45a1b41879e1e6a021ad13b79d746280f7d3364736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000ad9c91e521c50e98ba457c47b0ddd785fa8f022a000000000000000000000000000000000000000000000000000000006e9df288000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : _vestingToken (address): 0xAD9c91e521c50E98Ba457c47B0dDd785FA8F022a
Arg [1] : _startTimestamp (uint256): 1855845000
Arg [2] : _vestingPeriods (uint256): 10

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000ad9c91e521c50e98ba457c47b0ddd785fa8f022a
Arg [1] : 000000000000000000000000000000000000000000000000000000006e9df288
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.