ETH Price: $1,821.56 (-4.89%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

1 Internal Transaction and 1 Token Transfer found.

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
0x61014034235664222025-10-13 4:30:11134 days ago1760329811  Contract Creation0 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xe626a83A...d057f85eD
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
EnsoVestingWallet

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
cancun EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.20;

// Based on OpenZeppelin's VestingWallet & VestingWalletCliff contracts:
// https://github.com/OpenZeppelin/openzeppelin-contracts/tree/master/contracts/finance

import { Ownable, Ownable2Step } from "openzeppelin-contracts/access/Ownable2Step.sol";
import { IERC20, SafeERC20 } from "openzeppelin-contracts/token/ERC20/utils/SafeERC20.sol";

contract EnsoVestingWallet is Ownable2Step {
    using SafeERC20 for IERC20;

    event TokenReleased(uint256 releasedAmount);
    event VestingRevoked(uint256 forfeitedAmount, address receiver);

    IERC20 public immutable TOKEN;
    address public immutable REVOKER;
    uint48 public immutable START;
    uint48 public immutable END;
    uint48 public immutable DURATION;
    uint48 public immutable CLIFF;

    uint48 public revocationTime;
    uint256 public totalReleased;

    error DurationIsZero();
    error CliffIsGtDuration(uint48 cliffSeconds, uint48 durationSeconds);
    error Revoked();
    error NotRevocable();
    error NotRevoker(address sender, address revoker);
    error NothingToRelease();

    constructor(
        IERC20 _token,
        address _beneficiary,
        uint48 _startTimestamp,
        uint48 _durationSeconds,
        uint48 _cliffSeconds,
        address _revoker
    )
        Ownable(_beneficiary)
    {
        // @dev Prevent division by zero in `_vestingSchedule`
        if (_durationSeconds == 0) {
            revert DurationIsZero();
        }
        if (_cliffSeconds > _durationSeconds) {
            revert CliffIsGtDuration(_cliffSeconds, _durationSeconds);
        }
        START = _startTimestamp;
        END = _startTimestamp + _durationSeconds;
        DURATION = _durationSeconds;
        CLIFF = _startTimestamp + _cliffSeconds;
        TOKEN = _token;
        REVOKER = _revoker;
    }

    /**
     * @dev Getter for the amount of releasable tokens.
     */
    function releasable() public view returns (uint256) {
        return vestedAmount(uint48(block.timestamp)) - totalReleased;
    }

    /**
     * @dev Calculates the amount of the token that has already vested.
     */
    function vestedAmount(uint48 timestamp) public view returns (uint256) {
        return _vestingSchedule(TOKEN.balanceOf(address(this)) + totalReleased, timestamp, revocationTime);
    }

    /**
     * @dev Release the tokens that have already vested.
     *
     * Emits a {TokenReleased} event.
     */
    function release() public {
        uint256 amount = releasable();
        if (amount == 0) revert NothingToRelease();
        _release(amount);
    }

    /**
     * @dev Revoke vesting contract. Send remaining funds to another account.
     *
     * Emits a {VestingRevoked} event.
     */
    function revoke(address receiver) external {
        if (!isRevocable()) revert NotRevocable();
        if (isRevoked()) revert Revoked();
        if (msg.sender != REVOKER) revert NotRevoker(msg.sender, REVOKER);
        uint256 releasableAmount = releasable();
        // first, release funds beneficiary is entitled to up to this point
        if (releasableAmount > 0) {
            _release(releasableAmount);
        }
        revocationTime = uint48(block.timestamp);
        uint256 forfeitableAmount = TOKEN.balanceOf(address(this));
        TOKEN.safeTransfer(receiver, forfeitableAmount);
        emit VestingRevoked(forfeitableAmount, receiver);
    }

    function isRevocable() public view returns (bool) {
        return REVOKER != address(0);
    }

    function isRevoked() public view returns (bool) {
        return revocationTime != 0;
    }

    function _release(uint256 amount) internal {
        totalReleased += amount;
        emit TokenReleased(amount);
        TOKEN.safeTransfer(owner(), amount);
    }

    /**
     * @dev Implementation of the vesting formula. This returns the amount vested, as a function of time, for
     * an asset given its total historical allocation. Returns 0 if the {cliff} timestamp is not met.
     */
    function _vestingSchedule(
        uint256 totalAllocation,
        uint48 timestamp,
        uint48 revocation
    )
        internal
        view
        returns (uint256)
    {
        if (timestamp < CLIFF) {
            // Before cliff, return 0
            return 0;
        } else if (timestamp >= END) {
            // After end timestamp, return total allocation regardless of revoke status
            return totalAllocation;
        } else if (revocation == 0) {
            // Not revoked, return normal vesting schedule
            return (totalAllocation * (timestamp - START)) / DURATION;
        } else if (revocation > timestamp) {
            // Revoked, but timestamp is from before revocation time, return shortened vesting schedule
            return (totalAllocation * (timestamp - START)) / (revocation - START);
        } else {
            // Revoked, timestamp is after revocation, return total allocation
            return totalAllocation;
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.20;

import {Ownable} from "./Ownable.sol";

/**
 * @dev Contract module which provides access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This extension of the {Ownable} contract includes a two-step mechanism to transfer
 * ownership, where the new owner must call {acceptOwnership} in order to replace the
 * old one. This can help prevent common mistakes, such as transfers of ownership to
 * incorrect accounts, or to contracts that are unable to interact with the
 * permission system.
 *
 * The initial owner is specified at deployment time in the constructor for `Ownable`. This
 * can later be changed with {transferOwnership} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     *
     * Setting `newOwner` to the zero address is allowed; this can be used to cancel an initiated ownership transfer.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        if (pendingOwner() != sender) {
            revert OwnableUnauthorizedAccount(sender);
        }
        _transferOwnership(sender);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC1363} from "../../../interfaces/IERC1363.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC-20 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 {
    /**
     * @dev An operation with an ERC-20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @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.encodeCall(token.transfer, (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.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Variant of {safeTransfer} that returns a bool instead of reverting if the operation is not successful.
     */
    function trySafeTransfer(IERC20 token, address to, uint256 value) internal returns (bool) {
        return _callOptionalReturnBool(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Variant of {safeTransferFrom} that returns a bool instead of reverting if the operation is not successful.
     */
    function trySafeTransferFrom(IERC20 token, address from, address to, uint256 value) internal returns (bool) {
        return _callOptionalReturnBool(token, abi.encodeCall(token.transferFrom, (from, to, 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.
     *
     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
     * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     *
     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
     * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @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.
     *
     * NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function
     * only sets the "standard" allowance. Any temporary allowance will remain active, in addition to the value being
     * set here.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no
     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * Reverts if the returned value is other than `true`.
     */
    function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
        if (to.code.length == 0) {
            safeTransfer(token, to, value);
        } else if (!token.transferAndCall(to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target
     * has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * Reverts if the returned value is other than `true`.
     */
    function transferFromAndCallRelaxed(
        IERC1363 token,
        address from,
        address to,
        uint256 value,
        bytes memory data
    ) internal {
        if (to.code.length == 0) {
            safeTransferFrom(token, from, to, value);
        } else if (!token.transferFromAndCall(from, to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no
     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.
     * Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}
     * once without retrying, and relies on the returned value to be true.
     *
     * Reverts if the returned value is other than `true`.
     */
    function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
        if (to.code.length == 0) {
            forceApprove(token, to, value);
        } else if (!token.approveAndCall(to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @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 {_callOptionalReturnBool} that reverts if call fails to meet the requirements.
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        uint256 returnSize;
        uint256 returnValue;
        assembly ("memory-safe") {
            let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
            // bubble errors
            if iszero(success) {
                let ptr := mload(0x40)
                returndatacopy(ptr, 0, returndatasize())
                revert(ptr, returndatasize())
            }
            returnSize := returndatasize()
            returnValue := mload(0)
        }

        if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 1) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @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 silently catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        bool success;
        uint256 returnSize;
        uint256 returnValue;
        assembly ("memory-safe") {
            success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
            returnSize := returndatasize()
            returnValue := mload(0)
        }
        return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC1363.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC165} from "./IERC165.sol";

/**
 * @title IERC1363
 * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].
 *
 * Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract
 * after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.
 */
interface IERC1363 is IERC20, IERC165 {
    /*
     * Note: the ERC-165 identifier for this interface is 0xb0202a11.
     * 0xb0202a11 ===
     *   bytes4(keccak256('transferAndCall(address,uint256)')) ^
     *   bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
     */

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param from The address which you want to send tokens from.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param from The address which you want to send tokens from.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value) external returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @param data Additional data with no specified format, sent in call to `spender`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 8 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../token/ERC20/IERC20.sol";

File 9 of 10 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../utils/introspection/IERC165.sol";

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[ERC].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "remappings": [
    "@layerzerolabs/oapp-evm/=dependencies/@layerzerolabs-oapp-evm-0.3.2/",
    "@layerzerolabs/oapp-evm-upgradeable/=dependencies/@layerzerolabs-oapp-evm-upgradeable-0.1.2/",
    "@layerzerolabs/oft-evm/=dependencies/@layerzerolabs-oft-evm-3.2.1/",
    "@layerzerolabs/lz-evm-protocol-v2/=dependencies/layerzero-v2-2.0.2/packages/layerzero-v2/evm/protocol/",
    "@layerzerolabs/lz-evm-oapp-v2/=dependencies/layerzero-v2-2.0.2/packages/layerzero-v2/evm/oapp/",
    "@layerzerolabs/lz-evm-messagelib-v2/=dependencies/layerzero-v2-2.0.2/packages/layerzero-v2/evm/messagelib/",
    "@layerzerolabs/lz-evm-v1-0.7/=node_modules/@layerzerolabs/lz-evm-v1-0.7/",
    "@layerzerolabs-oft-evm-upgradeable/=dependencies/@layerzerolabs-oft-evm-upgradeable-3.2.0/contracts/",
    "@layerzerolabs/oft-evm-upgradeable-3.2.0/=dependencies/@layerzerolabs-oft-evm-upgradeable-3.2.0/",
    "@layerzerolabs/oft-evm-upgradeable/=dependencies/@layerzerolabs-oft-evm-upgradeable-3.2.0/",
    "@layerzerolabs-oft-evm-upgradeable-3.2.0/=dependencies/@layerzerolabs-oft-evm-upgradeable-3.2.0/contracts/",
    "@openzeppelin-contracts-5.3.0/=dependencies/@openzeppelin-contracts-5.3.0/contracts/",
    "@openzeppelin-contracts-upgradeable-5.3.0/=dependencies/@openzeppelin-contracts-upgradeable-5.3.0/contracts/",
    "@openzeppelin/contracts-upgradeable/=dependencies/@openzeppelin-contracts-upgradeable-5.3.0/contracts/",
    "@openzeppelin/contracts/=dependencies/@openzeppelin-contracts-5.3.0/contracts/",
    "@openzeppelin-foundry-upgrades-0.4.0/=dependencies/@openzeppelin-foundry-upgrades-0.4.0/src/",
    "devtools/=dependencies/devtools-0.0.1/packages/toolbox-foundry/src/",
    "devtools-0.0.1/=dependencies/devtools-0.0.1/",
    "erc4626-tests/=dependencies/@openzeppelin-contracts-upgradeable-5.3/lib/erc4626-tests/",
    "forge-std-1.10.0/=dependencies/forge-std-1.10.0/src/",
    "forge-std/=dependencies/forge-std-1.10.0/src/",
    "halmos-cheatcodes/=dependencies/@openzeppelin-contracts-upgradeable-5.3.0/lib/halmos-cheatcodes/src/",
    "layerzero-v2/=dependencies/layerzero-v2-2.0.2/packages/layerzero-v2/evm/",
    "layerzero-v2-2.0.2/=dependencies/layerzero-v2-2.0.2/packages/layerzero-v2/evm/",
    "layerzero-oft-evm-upgradeable/=dependencies/@layerzerolabs-oft-evm-upgradeable-3.2.0/contracts/",
    "layerzero-oft-evm-upgradeable-3.2.0/=dependencies/@layerzerolabs-oft-evm-upgradeable-3.2.0/contracts/",
    "solidity-bytes-utils/=dependencies/solidity-bytes-utils-0.8.4/",
    "openzeppelin-contracts-upgradeable/=dependencies/@openzeppelin-contracts-upgradeable-5.3.0/contracts/",
    "openzeppelin-contracts/=dependencies/@openzeppelin-contracts-5.3.0/contracts/",
    "openzeppelin-foundry-upgrades/=dependencies/@openzeppelin-foundry-upgrades-0.4.0/src/",
    "test-devtools-evm-foundry/=dependencies/devtools-0.0.1/packages/test-devtools-evm-foundry/",
    "@layerzerolabs-oapp-evm-0.3.2/=dependencies/@layerzerolabs-oapp-evm-0.3.2/contracts/",
    "@layerzerolabs-oapp-evm-upgradeable-0.1.2/=dependencies/@layerzerolabs-oapp-evm-upgradeable-0.1.2/contracts/",
    "@layerzerolabs-oft-evm-3.2.1/=dependencies/@layerzerolabs-oft-evm-3.2.1/contracts/",
    "ds-test/=dependencies/solidity-bytes-utils-0.8.4/lib/forge-std/lib/ds-test/src/",
    "solidity-bytes-utils-0.8.4/=dependencies/solidity-bytes-utils-0.8.4/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "none",
    "appendCBOR": false
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "cancun",
  "viaIR": true
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"address","name":"_beneficiary","type":"address"},{"internalType":"uint48","name":"_startTimestamp","type":"uint48"},{"internalType":"uint48","name":"_durationSeconds","type":"uint48"},{"internalType":"uint48","name":"_cliffSeconds","type":"uint48"},{"internalType":"address","name":"_revoker","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint48","name":"cliffSeconds","type":"uint48"},{"internalType":"uint48","name":"durationSeconds","type":"uint48"}],"name":"CliffIsGtDuration","type":"error"},{"inputs":[],"name":"DurationIsZero","type":"error"},{"inputs":[],"name":"NotRevocable","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"revoker","type":"address"}],"name":"NotRevoker","type":"error"},{"inputs":[],"name":"NothingToRelease","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"Revoked","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":"uint256","name":"releasedAmount","type":"uint256"}],"name":"TokenReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"forfeitedAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"}],"name":"VestingRevoked","type":"event"},{"inputs":[],"name":"CLIFF","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DURATION","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"END","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVOKER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isRevocable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevoked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revocationTime","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint48","name":"timestamp","type":"uint48"}],"name":"vestedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

0x610140346101fe57601f610d7038819003918201601f19168301916001600160401b038311848410176102025780849260c0946040528339810103126101fe5780516001600160a01b03811681036101fe5761005d60208301610216565b9061006a6040840161022a565b926100776060820161022a565b9361009060a06100896080850161022a565b9301610216565b936001600160a01b031680156101eb57600180546001600160a01b03199081169091555f8054918216831781556001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09080a365ffffffffffff85169485156101dc5765ffffffffffff83168681116101c557509061012e92918160c052610122818361023d565b60e0526101005261023d565b6101205260805260a052604051610b009081610270823960805181818161036e015281816104d8015281816107980152610a4c015260a0518181816101da015281816104490152610652015260c05181818161026c0152818161093b01526109b7015260e0518181816101a101526108e30152610100518181816106d301526109700152610120518181816102ae01526108b10152f35b869063466f6cdd60e01b5f5260045260245260445ffd5b63cb3f434d60e01b5f5260045ffd5b631e4fbdf760e01b5f525f60045260245ffd5b5f80fd5b634e487b7160e01b5f52604160045260245ffd5b51906001600160a01b03821682036101fe57565b519065ffffffffffff821682036101fe57565b9065ffffffffffff8091169116019065ffffffffffff821161025b57565b634e487b7160e01b5f52601160045260245ffdfe60806040526004361015610011575f80fd5b5f3560e01c806311be861b146106f75780631be05289146106b55780632bc9ed02146106835780635ffd1bad1461063d578063715018a6146105da57806374a8f1031461042257806379ba50971461039d57806382bfefc81461035957806386d1a69f146103215780638da5cb5b146102fa578063af8ee94a146102d2578063b87592f214610290578063ba9a061a1461024e578063e30c397814610226578063e33b7de314610209578063e7d68290146101c5578063efe7a50414610183578063f2fde38b146101105763fbccedae146100ea575f80fd5b3461010c575f36600319011261010c57602061010461082f565b604051908152f35b5f80fd5b3461010c57602036600319011261010c576004356001600160a01b0381169081900361010c5761013e6109ef565b600180546001600160a01b031916821790555f80546001600160a01b0316907f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227009080a3005b3461010c575f36600319011261010c57602060405165ffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461010c575f36600319011261010c576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b3461010c575f36600319011261010c576020600254604051908152f35b3461010c575f36600319011261010c576001546040516001600160a01b039091168152602090f35b3461010c575f36600319011261010c57602060405165ffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461010c575f36600319011261010c57602060405165ffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461010c575f36600319011261010c57602065ffffffffffff60015460a01c16604051908152f35b3461010c575f36600319011261010c575f546040516001600160a01b039091168152602090f35b3461010c575f36600319011261010c5761033961082f565b801561034a5761034890610a02565b005b63b10205ed60e01b5f5260045ffd5b3461010c575f36600319011261010c576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b3461010c575f36600319011261010c57600154336001600160a01b039091160361040f57600180546001600160a01b03199081169091555f805433928116831782556001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09080a3005b63118cdaa760e01b5f523360045260245ffd5b3461010c57602036600319011261010c576004356001600160a01b03811680820361010c577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031680156105cb5760015460a01c65ffffffffffff166105bc578033036105a6575061049961082f565b80610597575b506001805465ffffffffffff60a01b19164260a01b65ffffffffffff60a01b161790556040516370a0823160e01b8152306004820152917f00000000000000000000000000000000000000000000000000000000000000006020846024816001600160a01b0385165afa93841561058c575f94610554575b7fa434ad0e0bfc9ff6db2dad7866c6821e3c72611af76e11bcc7d6a0ba0d19239260408686610547828888610a72565b82519182526020820152a1005b9350916020843d602011610584575b8161057060209383610725565b8101031261010c5792519291610547610517565b3d9150610563565b6040513d5f823e3d90fd5b6105a090610a02565b8261049f565b6319516ce560e31b5f523360045260245260445ffd5b6344825a4b60e01b5f5260045ffd5b639414820d60e01b5f5260045ffd5b3461010c575f36600319011261010c576105f26109ef565b600180546001600160a01b03199081169091555f80549182168155906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b3461010c575f36600319011261010c576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615158152602090f35b3461010c575f36600319011261010c5760206106ab65ffffffffffff60015460a01c16151590565b6040519015158152f35b3461010c575f36600319011261010c57602060405165ffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461010c57602036600319011261010c5760043565ffffffffffff8116810361010c5761010460209161077c565b90601f8019910116810190811067ffffffffffffffff82111761074757604052565b634e487b7160e01b5f52604160045260245ffd5b9190820180921161076857565b634e487b7160e01b5f52601160045260245ffd5b6040516370a0823160e01b8152306004820152906020826024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa91821561058c575f926107f9575b506107e16107f6926002549061075b565b9065ffffffffffff60015460a01c169161089e565b90565b91506020823d602011610827575b8161081460209383610725565b8101031261010c579051906107e16107d0565b3d9150610807565b61084065ffffffffffff421661077c565b60025481039081116107685790565b9065ffffffffffff8091169116039065ffffffffffff821161076857565b8181029291811591840414171561076857565b811561088a570490565b634e487b7160e01b5f52601260045260245ffd5b9165ffffffffffff821665ffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001681105f146108e157505050505f90565b7f000000000000000000000000000000000000000000000000000000000000000065ffffffffffff1681106109165750505090565b65ffffffffffff821680610996575050506107f69165ffffffffffff610960610967937f00000000000000000000000000000000000000000000000000000000000000009061084f565b169061086d565b65ffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001690610880565b91929111156109ea576109e365ffffffffffff916109dd6107f695846109607f0000000000000000000000000000000000000000000000000000000000000000809561084f565b9361084f565b1690610880565b505090565b5f546001600160a01b0316330361040f57565b610a7090610a128160025461075b565b6002557f059ea9d6426bbae6ac9c53283977ee93577f8e299e1f7d7314b3d23eecfb2b086020604051838152a15f546001600160a01b03167f0000000000000000000000000000000000000000000000000000000000000000610a72565b565b60405163a9059cbb60e01b60208281019182526001600160a01b03909416602483015260448083019590955293815290925f91610ab0606482610725565b519082855af11561058c575f513d610af757506001600160a01b0381163b155b610ad75750565b635274afe760e01b5f9081526001600160a01b0391909116600452602490fd5b60011415610ad056000000000000000000000000699f088b5dddcafb7c4824db5b10b57b37cb0c6600000000000000000000000060fee3faacc8c66653be84410e41f7e51c5b714d000000000000000000000000000000000000000000000000000000006acf4b980000000000000000000000000000000000000000000000000000000003c2670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361015610011575f80fd5b5f3560e01c806311be861b146106f75780631be05289146106b55780632bc9ed02146106835780635ffd1bad1461063d578063715018a6146105da57806374a8f1031461042257806379ba50971461039d57806382bfefc81461035957806386d1a69f146103215780638da5cb5b146102fa578063af8ee94a146102d2578063b87592f214610290578063ba9a061a1461024e578063e30c397814610226578063e33b7de314610209578063e7d68290146101c5578063efe7a50414610183578063f2fde38b146101105763fbccedae146100ea575f80fd5b3461010c575f36600319011261010c57602061010461082f565b604051908152f35b5f80fd5b3461010c57602036600319011261010c576004356001600160a01b0381169081900361010c5761013e6109ef565b600180546001600160a01b031916821790555f80546001600160a01b0316907f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227009080a3005b3461010c575f36600319011261010c57602060405165ffffffffffff7f000000000000000000000000000000000000000000000000000000006e91b298168152f35b3461010c575f36600319011261010c576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b3461010c575f36600319011261010c576020600254604051908152f35b3461010c575f36600319011261010c576001546040516001600160a01b039091168152602090f35b3461010c575f36600319011261010c57602060405165ffffffffffff7f000000000000000000000000000000000000000000000000000000006acf4b98168152f35b3461010c575f36600319011261010c57602060405165ffffffffffff7f000000000000000000000000000000000000000000000000000000006acf4b98168152f35b3461010c575f36600319011261010c57602065ffffffffffff60015460a01c16604051908152f35b3461010c575f36600319011261010c575f546040516001600160a01b039091168152602090f35b3461010c575f36600319011261010c5761033961082f565b801561034a5761034890610a02565b005b63b10205ed60e01b5f5260045ffd5b3461010c575f36600319011261010c576040517f000000000000000000000000699f088b5dddcafb7c4824db5b10b57b37cb0c666001600160a01b03168152602090f35b3461010c575f36600319011261010c57600154336001600160a01b039091160361040f57600180546001600160a01b03199081169091555f805433928116831782556001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09080a3005b63118cdaa760e01b5f523360045260245ffd5b3461010c57602036600319011261010c576004356001600160a01b03811680820361010c577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031680156105cb5760015460a01c65ffffffffffff166105bc578033036105a6575061049961082f565b80610597575b506001805465ffffffffffff60a01b19164260a01b65ffffffffffff60a01b161790556040516370a0823160e01b8152306004820152917f000000000000000000000000699f088b5dddcafb7c4824db5b10b57b37cb0c666020846024816001600160a01b0385165afa93841561058c575f94610554575b7fa434ad0e0bfc9ff6db2dad7866c6821e3c72611af76e11bcc7d6a0ba0d19239260408686610547828888610a72565b82519182526020820152a1005b9350916020843d602011610584575b8161057060209383610725565b8101031261010c5792519291610547610517565b3d9150610563565b6040513d5f823e3d90fd5b6105a090610a02565b8261049f565b6319516ce560e31b5f523360045260245260445ffd5b6344825a4b60e01b5f5260045ffd5b639414820d60e01b5f5260045ffd5b3461010c575f36600319011261010c576105f26109ef565b600180546001600160a01b03199081169091555f80549182168155906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b3461010c575f36600319011261010c576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615158152602090f35b3461010c575f36600319011261010c5760206106ab65ffffffffffff60015460a01c16151590565b6040519015158152f35b3461010c575f36600319011261010c57602060405165ffffffffffff7f0000000000000000000000000000000000000000000000000000000003c26700168152f35b3461010c57602036600319011261010c5760043565ffffffffffff8116810361010c5761010460209161077c565b90601f8019910116810190811067ffffffffffffffff82111761074757604052565b634e487b7160e01b5f52604160045260245ffd5b9190820180921161076857565b634e487b7160e01b5f52601160045260245ffd5b6040516370a0823160e01b8152306004820152906020826024817f000000000000000000000000699f088b5dddcafb7c4824db5b10b57b37cb0c666001600160a01b03165afa91821561058c575f926107f9575b506107e16107f6926002549061075b565b9065ffffffffffff60015460a01c169161089e565b90565b91506020823d602011610827575b8161081460209383610725565b8101031261010c579051906107e16107d0565b3d9150610807565b61084065ffffffffffff421661077c565b60025481039081116107685790565b9065ffffffffffff8091169116039065ffffffffffff821161076857565b8181029291811591840414171561076857565b811561088a570490565b634e487b7160e01b5f52601260045260245ffd5b9165ffffffffffff821665ffffffffffff7f000000000000000000000000000000000000000000000000000000006acf4b981681105f146108e157505050505f90565b7f000000000000000000000000000000000000000000000000000000006e91b29865ffffffffffff1681106109165750505090565b65ffffffffffff821680610996575050506107f69165ffffffffffff610960610967937f000000000000000000000000000000000000000000000000000000006acf4b989061084f565b169061086d565b65ffffffffffff7f0000000000000000000000000000000000000000000000000000000003c267001690610880565b91929111156109ea576109e365ffffffffffff916109dd6107f695846109607f000000000000000000000000000000000000000000000000000000006acf4b98809561084f565b9361084f565b1690610880565b505090565b5f546001600160a01b0316330361040f57565b610a7090610a128160025461075b565b6002557f059ea9d6426bbae6ac9c53283977ee93577f8e299e1f7d7314b3d23eecfb2b086020604051838152a15f546001600160a01b03167f000000000000000000000000699f088b5dddcafb7c4824db5b10b57b37cb0c66610a72565b565b60405163a9059cbb60e01b60208281019182526001600160a01b03909416602483015260448083019590955293815290925f91610ab0606482610725565b519082855af11561058c575f513d610af757506001600160a01b0381163b155b610ad75750565b635274afe760e01b5f9081526001600160a01b0391909116600452602490fd5b60011415610ad056

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.