ETH Price: $2,529.33 (+0.42%)

Contract

0x046667C768da32EF1e81A5cbbCD49103a207e72c
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim204561612024-08-04 15:43:1126 days ago1722786191IN
0x046667C7...3a207e72c
0 ETH0.0011504311.17006975
Claim204431572024-08-02 20:10:2328 days ago1722629423IN
0x046667C7...3a207e72c
0 ETH0.00036265.27095671
Claim203409672024-07-19 13:46:1142 days ago1721396771IN
0x046667C7...3a207e72c
0 ETH0.000480626.9865479
Claim203121432024-07-15 13:14:5946 days ago1721049299IN
0x046667C7...3a207e72c
0 ETH0.000591326.8844601
Claim202799622024-07-11 1:24:4751 days ago1720661087IN
0x046667C7...3a207e72c
0 ETH0.000218073.15931685
Claim202111962024-07-01 10:53:2360 days ago1719831203IN
0x046667C7...3a207e72c
0 ETH0.000314674.55887046
Claim201385202024-06-21 7:11:5970 days ago1718953919IN
0x046667C7...3a207e72c
0 ETH0.000249922.90184938
Claim201340032024-06-20 16:02:2371 days ago1718899343IN
0x046667C7...3a207e72c
0 ETH0.0009999414.53555804
Claim201339942024-06-20 16:00:3571 days ago1718899235IN
0x046667C7...3a207e72c
0 ETH0.0009287613.45552713
Claim200649882024-06-11 0:24:3581 days ago1718065475IN
0x046667C7...3a207e72c
0 ETH0.00050257.3058166
Claim200578712024-06-10 0:32:5982 days ago1717979579IN
0x046667C7...3a207e72c
0 ETH0.000455935.29461813
Claim200406962024-06-07 14:58:3584 days ago1717772315IN
0x046667C7...3a207e72c
0 ETH0.0013794716.01713832
Claim200323652024-06-06 11:03:2385 days ago1717671803IN
0x046667C7...3a207e72c
0 ETH0.0013093618.9726857
Claim200176562024-06-04 9:47:2387 days ago1717494443IN
0x046667C7...3a207e72c
0 ETH0.000582698.44322337
Claim200142142024-06-03 22:16:1188 days ago1717452971IN
0x046667C7...3a207e72c
0 ETH0.000618518.96234731
Claim200134102024-06-03 19:34:2388 days ago1717443263IN
0x046667C7...3a207e72c
0 ETH0.000675789.79037856
Claim200134072024-06-03 19:33:4788 days ago1717443227IN
0x046667C7...3a207e72c
0 ETH0.000624949.05382555
Claim200041792024-06-02 12:37:1189 days ago1717331831IN
0x046667C7...3a207e72c
0 ETH0.000640996.20967708
Claim199960312024-06-01 9:19:4790 days ago1717233587IN
0x046667C7...3a207e72c
0 ETH0.000443015.14459821
Claim199627752024-05-27 17:44:1195 days ago1716831851IN
0x046667C7...3a207e72c
0 ETH0.0011834117.14479688
Claim199627702024-05-27 17:43:1195 days ago1716831791IN
0x046667C7...3a207e72c
0 ETH0.0015356822.24830273
Claim199583032024-05-27 2:44:3596 days ago1716777875IN
0x046667C7...3a207e72c
0 ETH0.000533117.72485623
Claim199227272024-05-22 3:23:47101 days ago1716348227IN
0x046667C7...3a207e72c
0 ETH0.000588318.52320881
Claim199227232024-05-22 3:22:59101 days ago1716348179IN
0x046667C7...3a207e72c
0 ETH0.000562358.1471924
Claim199227142024-05-22 3:20:59101 days ago1716348059IN
0x046667C7...3a207e72c
0 ETH0.000549697.96372517
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Vesting

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.8.4;

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


contract Vesting is Ownable {
    IERC20 public immutable CPOOL;

    struct VestingParams {
        uint amount;
        uint vestingBegin;
        uint vestingCliff;
        uint vestingEnd;
        uint lastUpdate;
        uint claimed;
    }

    mapping (address => VestingParams) public recipients;
    uint public totalVest;

    constructor(address tokenAddress) {
        CPOOL = IERC20(tokenAddress);
    }


    function holdTokens(
        address recipient_,
        uint amount_,
        uint vestingBegin_,
        uint vestingCliff_,
        uint vestingEnd_
    )
        onlyOwner
        external
    {
        require(vestingBegin_ >= block.timestamp, 'Vesting::holdTokens: vesting begin too early');
        require(vestingEnd_ > vestingCliff_, 'Vesting::holdTokens: end is too early');
        require(vestingCliff_ >= vestingBegin_, 'Vesting::holdTokens: cliff is too early');
        require(totalVest + amount_ <= CPOOL.balanceOf(address(this)), 'Vesting::holdTokens: notEnoughFunds');
        require(recipients[recipient_].amount == 0, 'Vesting::holdTokens: recipient already have lockup');

        totalVest += amount_;
        recipients[recipient_] = VestingParams({
            amount: amount_,
            vestingBegin: vestingBegin_,
            vestingCliff: vestingCliff_,
            vestingEnd: vestingEnd_,
            lastUpdate: vestingBegin_,
            claimed: 0
        });
    }

    function claim(address recipient_) external {
        require(block.timestamp >= recipients[recipient_].vestingCliff, 'Vesting::claim: not time yet');
        require(recipients[recipient_].amount > 0, 'Vesting::claim: recipient not valid');

        uint amount = getAvailableBalance(recipient_);
        recipients[recipient_].lastUpdate = block.timestamp;
        recipients[recipient_].claimed += amount;
        totalVest -= amount;
        require(IERC20(CPOOL).transfer(recipient_, amount), 'Vesting::claim: transfer error');
    }

    function getAvailableBalance(address recipient_) public view returns(uint) {
        VestingParams memory vestParams = recipients[recipient_];
        uint amount;
        if (block.timestamp < vestParams.vestingCliff) {
            return 0;
        }
        if (block.timestamp >= vestParams.vestingEnd) {
            amount = vestParams.amount - vestParams.claimed;
        } else {
            amount = vestParams.amount * (block.timestamp - vestParams.lastUpdate) / (vestParams.vestingEnd - vestParams.vestingBegin);
        }
        return amount;
    }
}

File 2 of 4 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 4 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

File 4 of 4 : Context.sol
// SPDX-License-Identifier: MIT

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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"CPOOL","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"}],"name":"getAvailableBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"uint256","name":"vestingBegin_","type":"uint256"},{"internalType":"uint256","name":"vestingCliff_","type":"uint256"},{"internalType":"uint256","name":"vestingEnd_","type":"uint256"}],"name":"holdTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"recipients","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"vestingBegin","type":"uint256"},{"internalType":"uint256","name":"vestingCliff","type":"uint256"},{"internalType":"uint256","name":"vestingEnd","type":"uint256"},{"internalType":"uint256","name":"lastUpdate","type":"uint256"},{"internalType":"uint256","name":"claimed","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalVest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405234801561001057600080fd5b50604051610bd7380380610bd783398101604081905261002f9161009d565b6100383361004d565b60601b6001600160601b0319166080526100cb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100ae578081fd5b81516001600160a01b03811681146100c4578182fd5b9392505050565b60805160601c610ae06100f7600039600081816101210152818161032d015261055a0152610ae06000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c8063715018a611610066578063715018a6146100ef5780638da5cb5b146100f7578063dd7bec531461011c578063eb82031214610143578063f2fde38b146101b457600080fd5b80631e83409a146100985780633c910d48146100ad57806361ab45ab146100c95780636c24a76f146100dc575b600080fd5b6100ab6100a636600461095e565b6101c7565b005b6100b660025481565b6040519081526020015b60405180910390f35b6100ab6100d7366004610978565b6103f9565b6100b66100ea36600461095e565b61074c565b6100ab610821565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016100c0565b6101047f000000000000000000000000000000000000000000000000000000000000000081565b61018761015136600461095e565b60016020819052600091825260409091208054918101546002820154600383015460048401546005909401549293919290919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c0016100c0565b6100ab6101c236600461095e565b610857565b6001600160a01b0381166000908152600160205260409020600201544210156102375760405162461bcd60e51b815260206004820152601c60248201527f56657374696e673a3a636c61696d3a206e6f742074696d65207965740000000060448201526064015b60405180910390fd5b6001600160a01b0381166000908152600160205260409020546102a85760405162461bcd60e51b815260206004820152602360248201527f56657374696e673a3a636c61696d3a20726563697069656e74206e6f742076616044820152621b1a5960ea1b606482015260840161022e565b60006102b38261074c565b6001600160a01b0383166000908152600160205260408120426004820155600501805492935083929091906102e9908490610a26565b9250508190555080600260008282546103029190610a7d565b909155505060405163a9059cbb60e01b81526001600160a01b038381166004830152602482018390527f0000000000000000000000000000000000000000000000000000000000000000169063a9059cbb90604401602060405180830381600087803b15801561037157600080fd5b505af1158015610385573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103a991906109b9565b6103f55760405162461bcd60e51b815260206004820152601e60248201527f56657374696e673a3a636c61696d3a207472616e73666572206572726f720000604482015260640161022e565b5050565b6000546001600160a01b031633146104235760405162461bcd60e51b815260040161022e906109f1565b428310156104885760405162461bcd60e51b815260206004820152602c60248201527f56657374696e673a3a686f6c64546f6b656e733a2076657374696e672062656760448201526b696e20746f6f206561726c7960a01b606482015260840161022e565b8181116104e55760405162461bcd60e51b815260206004820152602560248201527f56657374696e673a3a686f6c64546f6b656e733a20656e6420697320746f6f206044820152646561726c7960d81b606482015260840161022e565b828210156105455760405162461bcd60e51b815260206004820152602760248201527f56657374696e673a3a686f6c64546f6b656e733a20636c69666620697320746f6044820152666f206561726c7960c81b606482015260840161022e565b6040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b1580156105a457600080fd5b505afa1580156105b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105dc91906109d9565b846002546105ea9190610a26565b11156106445760405162461bcd60e51b815260206004820152602360248201527f56657374696e673a3a686f6c64546f6b656e733a206e6f74456e6f75676846756044820152626e647360e81b606482015260840161022e565b6001600160a01b038516600090815260016020526040902054156106c55760405162461bcd60e51b815260206004820152603260248201527f56657374696e673a3a686f6c64546f6b656e733a20726563697069656e74206160448201527106c72656164792068617665206c6f636b75760741b606482015260840161022e565b83600260008282546106d79190610a26565b90915550506040805160c08101825294855260208086018581528683019485526060870193845260808701958652600060a088018181526001600160a01b0390991681526001928390529290922095518655905190850155905160028401555160038301555160048201559051600590910155565b6001600160a01b0381166000908152600160208181526040808420815160c0810183528154815293810154928401929092526002820154908301819052600382015460608401526004820154608084015260059091015460a083015282904210156107bb575060009392505050565b816060015142106107de5760a082015182516107d79190610a7d565b905061081a565b816020015182606001516107f29190610a7d565b60808301516108019042610a7d565b835161080d9190610a5e565b6108179190610a3e565b90505b9392505050565b6000546001600160a01b0316331461084b5760405162461bcd60e51b815260040161022e906109f1565b61085560006108f2565b565b6000546001600160a01b031633146108815760405162461bcd60e51b815260040161022e906109f1565b6001600160a01b0381166108e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161022e565b6108ef816108f2565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461095957600080fd5b919050565b60006020828403121561096f578081fd5b61081a82610942565b600080600080600060a0868803121561098f578081fd5b61099886610942565b97602087013597506040870135966060810135965060800135945092505050565b6000602082840312156109ca578081fd5b8151801515811461081a578182fd5b6000602082840312156109ea578081fd5b5051919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610a3957610a39610a94565b500190565b600082610a5957634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610a7857610a78610a94565b500290565b600082821015610a8f57610a8f610a94565b500390565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220deeab60aaa44ed1740838b205ab2d23184d58eb7c1f9946076ba16fa7920385964736f6c6343000804003300000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac5

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100935760003560e01c8063715018a611610066578063715018a6146100ef5780638da5cb5b146100f7578063dd7bec531461011c578063eb82031214610143578063f2fde38b146101b457600080fd5b80631e83409a146100985780633c910d48146100ad57806361ab45ab146100c95780636c24a76f146100dc575b600080fd5b6100ab6100a636600461095e565b6101c7565b005b6100b660025481565b6040519081526020015b60405180910390f35b6100ab6100d7366004610978565b6103f9565b6100b66100ea36600461095e565b61074c565b6100ab610821565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016100c0565b6101047f00000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac581565b61018761015136600461095e565b60016020819052600091825260409091208054918101546002820154600383015460048401546005909401549293919290919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c0016100c0565b6100ab6101c236600461095e565b610857565b6001600160a01b0381166000908152600160205260409020600201544210156102375760405162461bcd60e51b815260206004820152601c60248201527f56657374696e673a3a636c61696d3a206e6f742074696d65207965740000000060448201526064015b60405180910390fd5b6001600160a01b0381166000908152600160205260409020546102a85760405162461bcd60e51b815260206004820152602360248201527f56657374696e673a3a636c61696d3a20726563697069656e74206e6f742076616044820152621b1a5960ea1b606482015260840161022e565b60006102b38261074c565b6001600160a01b0383166000908152600160205260408120426004820155600501805492935083929091906102e9908490610a26565b9250508190555080600260008282546103029190610a7d565b909155505060405163a9059cbb60e01b81526001600160a01b038381166004830152602482018390527f00000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac5169063a9059cbb90604401602060405180830381600087803b15801561037157600080fd5b505af1158015610385573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103a991906109b9565b6103f55760405162461bcd60e51b815260206004820152601e60248201527f56657374696e673a3a636c61696d3a207472616e73666572206572726f720000604482015260640161022e565b5050565b6000546001600160a01b031633146104235760405162461bcd60e51b815260040161022e906109f1565b428310156104885760405162461bcd60e51b815260206004820152602c60248201527f56657374696e673a3a686f6c64546f6b656e733a2076657374696e672062656760448201526b696e20746f6f206561726c7960a01b606482015260840161022e565b8181116104e55760405162461bcd60e51b815260206004820152602560248201527f56657374696e673a3a686f6c64546f6b656e733a20656e6420697320746f6f206044820152646561726c7960d81b606482015260840161022e565b828210156105455760405162461bcd60e51b815260206004820152602760248201527f56657374696e673a3a686f6c64546f6b656e733a20636c69666620697320746f6044820152666f206561726c7960c81b606482015260840161022e565b6040516370a0823160e01b81523060048201527f00000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac56001600160a01b0316906370a082319060240160206040518083038186803b1580156105a457600080fd5b505afa1580156105b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105dc91906109d9565b846002546105ea9190610a26565b11156106445760405162461bcd60e51b815260206004820152602360248201527f56657374696e673a3a686f6c64546f6b656e733a206e6f74456e6f75676846756044820152626e647360e81b606482015260840161022e565b6001600160a01b038516600090815260016020526040902054156106c55760405162461bcd60e51b815260206004820152603260248201527f56657374696e673a3a686f6c64546f6b656e733a20726563697069656e74206160448201527106c72656164792068617665206c6f636b75760741b606482015260840161022e565b83600260008282546106d79190610a26565b90915550506040805160c08101825294855260208086018581528683019485526060870193845260808701958652600060a088018181526001600160a01b0390991681526001928390529290922095518655905190850155905160028401555160038301555160048201559051600590910155565b6001600160a01b0381166000908152600160208181526040808420815160c0810183528154815293810154928401929092526002820154908301819052600382015460608401526004820154608084015260059091015460a083015282904210156107bb575060009392505050565b816060015142106107de5760a082015182516107d79190610a7d565b905061081a565b816020015182606001516107f29190610a7d565b60808301516108019042610a7d565b835161080d9190610a5e565b6108179190610a3e565b90505b9392505050565b6000546001600160a01b0316331461084b5760405162461bcd60e51b815260040161022e906109f1565b61085560006108f2565b565b6000546001600160a01b031633146108815760405162461bcd60e51b815260040161022e906109f1565b6001600160a01b0381166108e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161022e565b6108ef816108f2565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461095957600080fd5b919050565b60006020828403121561096f578081fd5b61081a82610942565b600080600080600060a0868803121561098f578081fd5b61099886610942565b97602087013597506040870135966060810135965060800135945092505050565b6000602082840312156109ca578081fd5b8151801515811461081a578182fd5b6000602082840312156109ea578081fd5b5051919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610a3957610a39610a94565b500190565b600082610a5957634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610a7857610a78610a94565b500290565b600082821015610a8f57610a8f610a94565b500390565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220deeab60aaa44ed1740838b205ab2d23184d58eb7c1f9946076ba16fa7920385964736f6c63430008040033

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

00000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac5

-----Decoded View---------------
Arg [0] : tokenAddress (address): 0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000066761fa41377003622aee3c7675fc7b5c1c2fac5


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.