ETH Price: $3,420.05 (-1.72%)
Gas: 6 Gwei

Contract

0xd55532905B48936a10AC8E6a528151ff33F2b59a
 
Transaction Hash
Method
Block
From
To
Claim175566342023-06-25 12:56:11388 days ago1687697771IN
0xd5553290...f33F2b59a
0 ETH0.0011148513.33371202
Claim173005232023-05-20 12:03:59424 days ago1684584239IN
0xd5553290...f33F2b59a
0 ETH0.0027405633.26737738
Claim171412302023-04-28 1:01:11447 days ago1682643671IN
0xd5553290...f33F2b59a
0 ETH0.0025863131.41024667
Claim171085912023-04-23 11:03:11451 days ago1682247791IN
0xd5553290...f33F2b59a
0 ETH0.0032263139.16387306
Claim168125152023-03-12 14:23:23493 days ago1678631003IN
0xd5553290...f33F2b59a
0 ETH0.0016000719.4254231
Claim168123602023-03-12 13:52:11493 days ago1678629131IN
0xd5553290...f33F2b59a
0 ETH0.0015538918.59125158
Claim161085892022-12-04 2:53:35591 days ago1670122415IN
0xd5553290...f33F2b59a
0 ETH0.0009657411.55
Claim161085482022-12-04 2:45:23591 days ago1670121923IN
0xd5553290...f33F2b59a
0 ETH0.0009649711.55
Claim158780112022-11-01 21:58:11624 days ago1667339891IN
0xd5553290...f33F2b59a
0 ETH0.0008948710.70628674
Claim158780052022-11-01 21:56:59624 days ago1667339819IN
0xd5553290...f33F2b59a
0 ETH0.000887110.61253626
Claim158779962022-11-01 21:55:11624 days ago1667339711IN
0xd5553290...f33F2b59a
0 ETH0.0008894810.64098785
Claim158779892022-11-01 21:53:47624 days ago1667339627IN
0xd5553290...f33F2b59a
0 ETH0.0008658810.51489474
Claim158779822022-11-01 21:52:23624 days ago1667339543IN
0xd5553290...f33F2b59a
0 ETH0.0009638511.53626341
Claim158779712022-11-01 21:50:11624 days ago1667339411IN
0xd5553290...f33F2b59a
0 ETH0.0008933110.84806688
Claim158779632022-11-01 21:48:35624 days ago1667339315IN
0xd5553290...f33F2b59a
0 ETH0.0009232311.04485191
Claim158779512022-11-01 21:46:11624 days ago1667339171IN
0xd5553290...f33F2b59a
0 ETH0.0009197411.1670763
Claim158779432022-11-01 21:44:35624 days ago1667339075IN
0xd5553290...f33F2b59a
0 ETH0.0008792910.67992332
Claim158779342022-11-01 21:42:47624 days ago1667338967IN
0xd5553290...f33F2b59a
0 ETH0.0009475111.34041082
Claim158779272022-11-01 21:41:23624 days ago1667338883IN
0xd5553290...f33F2b59a
0 ETH0.0009584911.46744147
Claim158779192022-11-01 21:39:47624 days ago1667338787IN
0xd5553290...f33F2b59a
0 ETH0.0010213712.2250277
Claim158779092022-11-01 21:37:47624 days ago1667338667IN
0xd5553290...f33F2b59a
0 ETH0.0012044114.41174996
Claim158779002022-11-01 21:35:59624 days ago1667338559IN
0xd5553290...f33F2b59a
0 ETH0.001249114.9450466
Claim158778922022-11-01 21:34:23624 days ago1667338463IN
0xd5553290...f33F2b59a
0 ETH0.0010678412.77780573
Claim158778812022-11-01 21:32:11624 days ago1667338331IN
0xd5553290...f33F2b59a
0 ETH0.0009561511.4454374
Claim158777722022-11-01 21:10:23624 days ago1667337023IN
0xd5553290...f33F2b59a
0 ETH0.0014114216.88309978
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:
MetisTokenDistributor

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-05-13
*/

// SPDX-License-Identifier: MIT
// File: contracts/interfaces/IMerkleDistributor.sol

pragma solidity ^0.8.0;

// Allows anyone to claim a token if they exist in a merkle root.
interface IMerkleDistributor {
    // Returns the address of the token distributed by this contract.
    function token() external view returns (address);
    // Returns the merkle root of the merkle tree containing account balances available to claim.
    function merkleRoot() external view returns (bytes32);
    // Returns true if the index has been marked claimed.
    function isClaimed(uint256 index) external view returns (bool);
    // Claim the given amount of the token to the given address. Reverts if the inputs are invalid.
    function claim(uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof) external;

    // This event is triggered whenever a call to #claim succeeds.
    event Claimed(uint256 index, address account, uint256 amount);
}
// File: contracts/libs/MerkleProof.sol


pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}
// File: contracts/interfaces/IERC20.sol


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;




contract MetisTokenDistributor is IMerkleDistributor {
    address public immutable override token;
    bytes32 public immutable override merkleRoot;

    // This is a packed array of booleans.
    mapping(uint256 => uint256) private claimedBitMap;

    constructor(address token_, bytes32 merkleRoot_) {
        token = token_;
        merkleRoot = merkleRoot_;
    }

    function isClaimed(uint256 index) public view override returns (bool) {
        uint256 claimedWordIndex = index / 256;
        uint256 claimedBitIndex = index % 256;
        uint256 claimedWord = claimedBitMap[claimedWordIndex];
        uint256 mask = (1 << claimedBitIndex);
        return claimedWord & mask == mask;
    }

    function _setClaimed(uint256 index) private {
        uint256 claimedWordIndex = index / 256;
        uint256 claimedBitIndex = index % 256;
        claimedBitMap[claimedWordIndex] = claimedBitMap[claimedWordIndex] | (1 << claimedBitIndex);
    }

    function claim(uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof) external override {
        require(!isClaimed(index), 'MerkleDistributor: Drop already claimed.');

        // Verify the merkle proof.
        bytes32 node = keccak256(abi.encodePacked(index, account, amount));
        require(MerkleProof.verify(merkleProof, merkleRoot, node), 'MerkleDistributor: Invalid proof.');

        // Mark it claimed and send the token.
        _setClaimed(index);
        require(IERC20(token).transfer(account, amount), 'MerkleDistributor: Transfer failed.');

        emit Claimed(index, account, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c06040523480156200001157600080fd5b5060405162000d7338038062000d738339818101604052810190620000379190620000ac565b8173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508060a0818152505050506200015f565b6000815190506200008f816200012b565b92915050565b600081519050620000a68162000145565b92915050565b60008060408385031215620000c057600080fd5b6000620000d0858286016200007e565b9250506020620000e38582860162000095565b9150509250929050565b6000620000fa826200010b565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6200013681620000ed565b81146200014257600080fd5b50565b620001508162000101565b81146200015c57600080fd5b50565b60805160601c60a051610bdd6200019660003960008181610198015261033601526000818161020701526103af0152610bdd6000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80632e7ba6ef146100515780632eb4a7ab1461006d5780639e34070f1461008b578063fc0c546a146100bb575b600080fd5b61006b600480360381019061006691906105e0565b6100d9565b005b610075610334565b6040516100829190610812565b60405180910390f35b6100a560048036038101906100a091906105b7565b610358565b6040516100b291906107f7565b60405180910390f35b6100c36103ad565b6040516100d091906107b3565b60405180910390f35b6100e285610358565b15610122576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101199061082d565b60405180910390fd5b600085858560405160200161013993929190610776565b6040516020818303038152906040528051906020012090506101bd838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507f0000000000000000000000000000000000000000000000000000000000000000836103d1565b6101fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101f39061084d565b60405180910390fd5b610205866104ad565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86866040518363ffffffff1660e01b81526004016102609291906107ce565b602060405180830381600087803b15801561027a57600080fd5b505af115801561028e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b2919061058e565b6102f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102e89061086d565b60405180910390fd5b7f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed0268686866040516103249392919061088d565b60405180910390a1505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806101008361036991906108d5565b905060006101008461037b91906109d9565b905060008060008481526020019081526020016000205490506000826001901b90508081831614945050505050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008082905060005b855181101561049f57600086828151811061041e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161045f57828160405160200161044292919061074a565b60405160208183030381529060405280519060200120925061048b565b808360405160200161047292919061074a565b6040516020818303038152906040528051906020012092505b50808061049790610958565b9150506103da565b508381149150509392505050565b6000610100826104bd91906108d5565b90506000610100836104cf91906109d9565b9050806001901b600080848152602001908152602001600020541760008084815260200190815260200160002081905550505050565b60008135905061051481610b62565b92915050565b60008083601f84011261052c57600080fd5b8235905067ffffffffffffffff81111561054557600080fd5b60208301915083602082028301111561055d57600080fd5b9250929050565b60008151905061057381610b79565b92915050565b60008135905061058881610b90565b92915050565b6000602082840312156105a057600080fd5b60006105ae84828501610564565b91505092915050565b6000602082840312156105c957600080fd5b60006105d784828501610579565b91505092915050565b6000806000806000608086880312156105f857600080fd5b600061060688828901610579565b955050602061061788828901610505565b945050604061062888828901610579565b935050606086013567ffffffffffffffff81111561064557600080fd5b6106518882890161051a565b92509250509295509295909350565b61066981610906565b82525050565b61068061067b82610906565b6109a1565b82525050565b61068f81610918565b82525050565b61069e81610924565b82525050565b6106b56106b082610924565b6109b3565b82525050565b60006106c86028836108c4565b91506106d382610a75565b604082019050919050565b60006106eb6021836108c4565b91506106f682610ac4565b604082019050919050565b600061070e6023836108c4565b915061071982610b13565b604082019050919050565b61072d8161094e565b82525050565b61074461073f8261094e565b6109cf565b82525050565b600061075682856106a4565b60208201915061076682846106a4565b6020820191508190509392505050565b60006107828286610733565b602082019150610792828561066f565b6014820191506107a28284610733565b602082019150819050949350505050565b60006020820190506107c86000830184610660565b92915050565b60006040820190506107e36000830185610660565b6107f06020830184610724565b9392505050565b600060208201905061080c6000830184610686565b92915050565b60006020820190506108276000830184610695565b92915050565b60006020820190508181036000830152610846816106bb565b9050919050565b60006020820190508181036000830152610866816106de565b9050919050565b6000602082019050818103600083015261088681610701565b9050919050565b60006060820190506108a26000830186610724565b6108af6020830185610660565b6108bc6040830184610724565b949350505050565b600082825260208201905092915050565b60006108e08261094e565b91506108eb8361094e565b9250826108fb576108fa610a39565b5b828204905092915050565b60006109118261092e565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006109638261094e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561099657610995610a0a565b5b600182019050919050565b60006109ac826109bd565b9050919050565b6000819050919050565b60006109c882610a68565b9050919050565b6000819050919050565b60006109e48261094e565b91506109ef8361094e565b9250826109ff576109fe610a39565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008160601b9050919050565b7f4d65726b6c654469737472696275746f723a2044726f7020616c72656164792060008201527f636c61696d65642e000000000000000000000000000000000000000000000000602082015250565b7f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f6660008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d65726b6c654469737472696275746f723a205472616e73666572206661696c60008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b610b6b81610906565b8114610b7657600080fd5b50565b610b8281610918565b8114610b8d57600080fd5b50565b610b998161094e565b8114610ba457600080fd5b5056fea26469706673582212207f934dd6b7fd3cc4996f30faa5f789e32382f2d081d9f555c2380b13539a635a64736f6c634300080100330000000000000000000000009e32b13ce7f2e80a01932b42553652e053d6ed8eee7beea362df63cfacc34b3eee986d84ed0ff6a40c9c70b5cb351f0ae831123b

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061004c5760003560e01c80632e7ba6ef146100515780632eb4a7ab1461006d5780639e34070f1461008b578063fc0c546a146100bb575b600080fd5b61006b600480360381019061006691906105e0565b6100d9565b005b610075610334565b6040516100829190610812565b60405180910390f35b6100a560048036038101906100a091906105b7565b610358565b6040516100b291906107f7565b60405180910390f35b6100c36103ad565b6040516100d091906107b3565b60405180910390f35b6100e285610358565b15610122576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101199061082d565b60405180910390fd5b600085858560405160200161013993929190610776565b6040516020818303038152906040528051906020012090506101bd838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507fee7beea362df63cfacc34b3eee986d84ed0ff6a40c9c70b5cb351f0ae831123b836103d1565b6101fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101f39061084d565b60405180910390fd5b610205866104ad565b7f0000000000000000000000009e32b13ce7f2e80a01932b42553652e053d6ed8e73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86866040518363ffffffff1660e01b81526004016102609291906107ce565b602060405180830381600087803b15801561027a57600080fd5b505af115801561028e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b2919061058e565b6102f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102e89061086d565b60405180910390fd5b7f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed0268686866040516103249392919061088d565b60405180910390a1505050505050565b7fee7beea362df63cfacc34b3eee986d84ed0ff6a40c9c70b5cb351f0ae831123b81565b6000806101008361036991906108d5565b905060006101008461037b91906109d9565b905060008060008481526020019081526020016000205490506000826001901b90508081831614945050505050919050565b7f0000000000000000000000009e32b13ce7f2e80a01932b42553652e053d6ed8e81565b60008082905060005b855181101561049f57600086828151811061041e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161045f57828160405160200161044292919061074a565b60405160208183030381529060405280519060200120925061048b565b808360405160200161047292919061074a565b6040516020818303038152906040528051906020012092505b50808061049790610958565b9150506103da565b508381149150509392505050565b6000610100826104bd91906108d5565b90506000610100836104cf91906109d9565b9050806001901b600080848152602001908152602001600020541760008084815260200190815260200160002081905550505050565b60008135905061051481610b62565b92915050565b60008083601f84011261052c57600080fd5b8235905067ffffffffffffffff81111561054557600080fd5b60208301915083602082028301111561055d57600080fd5b9250929050565b60008151905061057381610b79565b92915050565b60008135905061058881610b90565b92915050565b6000602082840312156105a057600080fd5b60006105ae84828501610564565b91505092915050565b6000602082840312156105c957600080fd5b60006105d784828501610579565b91505092915050565b6000806000806000608086880312156105f857600080fd5b600061060688828901610579565b955050602061061788828901610505565b945050604061062888828901610579565b935050606086013567ffffffffffffffff81111561064557600080fd5b6106518882890161051a565b92509250509295509295909350565b61066981610906565b82525050565b61068061067b82610906565b6109a1565b82525050565b61068f81610918565b82525050565b61069e81610924565b82525050565b6106b56106b082610924565b6109b3565b82525050565b60006106c86028836108c4565b91506106d382610a75565b604082019050919050565b60006106eb6021836108c4565b91506106f682610ac4565b604082019050919050565b600061070e6023836108c4565b915061071982610b13565b604082019050919050565b61072d8161094e565b82525050565b61074461073f8261094e565b6109cf565b82525050565b600061075682856106a4565b60208201915061076682846106a4565b6020820191508190509392505050565b60006107828286610733565b602082019150610792828561066f565b6014820191506107a28284610733565b602082019150819050949350505050565b60006020820190506107c86000830184610660565b92915050565b60006040820190506107e36000830185610660565b6107f06020830184610724565b9392505050565b600060208201905061080c6000830184610686565b92915050565b60006020820190506108276000830184610695565b92915050565b60006020820190508181036000830152610846816106bb565b9050919050565b60006020820190508181036000830152610866816106de565b9050919050565b6000602082019050818103600083015261088681610701565b9050919050565b60006060820190506108a26000830186610724565b6108af6020830185610660565b6108bc6040830184610724565b949350505050565b600082825260208201905092915050565b60006108e08261094e565b91506108eb8361094e565b9250826108fb576108fa610a39565b5b828204905092915050565b60006109118261092e565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006109638261094e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561099657610995610a0a565b5b600182019050919050565b60006109ac826109bd565b9050919050565b6000819050919050565b60006109c882610a68565b9050919050565b6000819050919050565b60006109e48261094e565b91506109ef8361094e565b9250826109ff576109fe610a39565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008160601b9050919050565b7f4d65726b6c654469737472696275746f723a2044726f7020616c72656164792060008201527f636c61696d65642e000000000000000000000000000000000000000000000000602082015250565b7f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f6660008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d65726b6c654469737472696275746f723a205472616e73666572206661696c60008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b610b6b81610906565b8114610b7657600080fd5b50565b610b8281610918565b8114610b8d57600080fd5b50565b610b998161094e565b8114610ba457600080fd5b5056fea26469706673582212207f934dd6b7fd3cc4996f30faa5f789e32382f2d081d9f555c2380b13539a635a64736f6c63430008010033

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

0000000000000000000000009e32b13ce7f2e80a01932b42553652e053d6ed8eee7beea362df63cfacc34b3eee986d84ed0ff6a40c9c70b5cb351f0ae831123b

-----Decoded View---------------
Arg [0] : token_ (address): 0x9E32b13ce7f2E80A01932B42553652E053D6ed8e
Arg [1] : merkleRoot_ (bytes32): 0xee7beea362df63cfacc34b3eee986d84ed0ff6a40c9c70b5cb351f0ae831123b

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000009e32b13ce7f2e80a01932b42553652e053d6ed8e
Arg [1] : ee7beea362df63cfacc34b3eee986d84ed0ff6a40c9c70b5cb351f0ae831123b


Deployed Bytecode Sourcemap

5453:1636:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6436:650;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5559:44;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5839:331;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5513:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6436:650;6569:16;6579:5;6569:9;:16::i;:::-;6568:17;6560:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;6680:12;6722:5;6729:7;6738:6;6705:40;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6695:51;;;;;;6680:66;;6765:49;6784:11;;6765:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6797:10;6809:4;6765:18;:49::i;:::-;6757:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;6913:18;6925:5;6913:11;:18::i;:::-;6957:5;6950:22;;;6973:7;6982:6;6950:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6942:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;7047:31;7055:5;7062:7;7071:6;7047:31;;;;;;;;:::i;:::-;;;;;;;;6436:650;;;;;;:::o;5559:44::-;;;:::o;5839:331::-;5903:4;5920:24;5955:3;5947:5;:11;;;;:::i;:::-;5920:38;;5969:23;6003:3;5995:5;:11;;;;:::i;:::-;5969:37;;6017:19;6039:13;:31;6053:16;6039:31;;;;;;;;;;;;6017:53;;6081:12;6102:15;6097:1;:20;;6081:37;;6158:4;6150;6136:11;:18;:26;6129:33;;;;;;5839:331;;;:::o;5513:39::-;;;:::o;1787:796::-;1878:4;1895:20;1918:4;1895:27;;1940:9;1935:525;1959:5;:12;1955:1;:16;1935:525;;;1993:20;2016:5;2022:1;2016:8;;;;;;;;;;;;;;;;;;;;;;1993:31;;2061:12;2045;:28;2041:408;;2215:12;2229;2198:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2188:55;;;;;;2173:70;;2041:408;;;2405:12;2419;2388:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2378:55;;;;;;2363:70;;2041:408;1935:525;1973:3;;;;;:::i;:::-;;;;1935:525;;;;2571:4;2555:12;:20;2548:27;;;1787:796;;;;;:::o;6178:250::-;6233:24;6268:3;6260:5;:11;;;;:::i;:::-;6233:38;;6282:23;6316:3;6308:5;:11;;;;:::i;:::-;6282:37;;6404:15;6399:1;:20;;6364:13;:31;6378:16;6364:31;;;;;;;;;;;;:56;6330:13;:31;6344:16;6330:31;;;;;;;;;;;:90;;;;6178:250;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;169:367::-;;;302:3;295:4;287:6;283:17;279:27;269:2;;320:1;317;310:12;269:2;356:6;343:20;333:30;;386:18;378:6;375:30;372:2;;;418:1;415;408:12;372:2;455:4;447:6;443:17;431:29;;509:3;501:4;493:6;489:17;479:8;475:32;472:41;469:2;;;526:1;523;516:12;469:2;259:277;;;;;:::o;542:137::-;;627:6;621:13;612:22;;643:30;667:5;643:30;:::i;:::-;602:77;;;;:::o;685:139::-;;769:6;756:20;747:29;;785:33;812:5;785:33;:::i;:::-;737:87;;;;:::o;830:278::-;;946:2;934:9;925:7;921:23;917:32;914:2;;;962:1;959;952:12;914:2;1005:1;1030:61;1083:7;1074:6;1063:9;1059:22;1030:61;:::i;:::-;1020:71;;976:125;904:204;;;;:::o;1114:262::-;;1222:2;1210:9;1201:7;1197:23;1193:32;1190:2;;;1238:1;1235;1228:12;1190:2;1281:1;1306:53;1351:7;1342:6;1331:9;1327:22;1306:53;:::i;:::-;1296:63;;1252:117;1180:196;;;;:::o;1382:861::-;;;;;;1576:3;1564:9;1555:7;1551:23;1547:33;1544:2;;;1593:1;1590;1583:12;1544:2;1636:1;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1607:117;1763:2;1789:53;1834:7;1825:6;1814:9;1810:22;1789:53;:::i;:::-;1779:63;;1734:118;1891:2;1917:53;1962:7;1953:6;1942:9;1938:22;1917:53;:::i;:::-;1907:63;;1862:118;2047:2;2036:9;2032:18;2019:32;2078:18;2070:6;2067:30;2064:2;;;2110:1;2107;2100:12;2064:2;2146:80;2218:7;2209:6;2198:9;2194:22;2146:80;:::i;:::-;2128:98;;;;1990:246;1534:709;;;;;;;;:::o;2249:118::-;2336:24;2354:5;2336:24;:::i;:::-;2331:3;2324:37;2314:53;;:::o;2373:157::-;2478:45;2498:24;2516:5;2498:24;:::i;:::-;2478:45;:::i;:::-;2473:3;2466:58;2456:74;;:::o;2536:109::-;2617:21;2632:5;2617:21;:::i;:::-;2612:3;2605:34;2595:50;;:::o;2651:118::-;2738:24;2756:5;2738:24;:::i;:::-;2733:3;2726:37;2716:53;;:::o;2775:157::-;2880:45;2900:24;2918:5;2900:24;:::i;:::-;2880:45;:::i;:::-;2875:3;2868:58;2858:74;;:::o;2938:366::-;;3101:67;3165:2;3160:3;3101:67;:::i;:::-;3094:74;;3177:93;3266:3;3177:93;:::i;:::-;3295:2;3290:3;3286:12;3279:19;;3084:220;;;:::o;3310:366::-;;3473:67;3537:2;3532:3;3473:67;:::i;:::-;3466:74;;3549:93;3638:3;3549:93;:::i;:::-;3667:2;3662:3;3658:12;3651:19;;3456:220;;;:::o;3682:366::-;;3845:67;3909:2;3904:3;3845:67;:::i;:::-;3838:74;;3921:93;4010:3;3921:93;:::i;:::-;4039:2;4034:3;4030:12;4023:19;;3828:220;;;:::o;4054:118::-;4141:24;4159:5;4141:24;:::i;:::-;4136:3;4129:37;4119:53;;:::o;4178:157::-;4283:45;4303:24;4321:5;4303:24;:::i;:::-;4283:45;:::i;:::-;4278:3;4271:58;4261:74;;:::o;4341:397::-;;4496:75;4567:3;4558:6;4496:75;:::i;:::-;4596:2;4591:3;4587:12;4580:19;;4609:75;4680:3;4671:6;4609:75;:::i;:::-;4709:2;4704:3;4700:12;4693:19;;4729:3;4722:10;;4485:253;;;;;:::o;4744:538::-;;4927:75;4998:3;4989:6;4927:75;:::i;:::-;5027:2;5022:3;5018:12;5011:19;;5040:75;5111:3;5102:6;5040:75;:::i;:::-;5140:2;5135:3;5131:12;5124:19;;5153:75;5224:3;5215:6;5153:75;:::i;:::-;5253:2;5248:3;5244:12;5237:19;;5273:3;5266:10;;4916:366;;;;;;:::o;5288:222::-;;5419:2;5408:9;5404:18;5396:26;;5432:71;5500:1;5489:9;5485:17;5476:6;5432:71;:::i;:::-;5386:124;;;;:::o;5516:332::-;;5675:2;5664:9;5660:18;5652:26;;5688:71;5756:1;5745:9;5741:17;5732:6;5688:71;:::i;:::-;5769:72;5837:2;5826:9;5822:18;5813:6;5769:72;:::i;:::-;5642:206;;;;;:::o;5854:210::-;;5979:2;5968:9;5964:18;5956:26;;5992:65;6054:1;6043:9;6039:17;6030:6;5992:65;:::i;:::-;5946:118;;;;:::o;6070:222::-;;6201:2;6190:9;6186:18;6178:26;;6214:71;6282:1;6271:9;6267:17;6258:6;6214:71;:::i;:::-;6168:124;;;;:::o;6298:419::-;;6502:2;6491:9;6487:18;6479:26;;6551:9;6545:4;6541:20;6537:1;6526:9;6522:17;6515:47;6579:131;6705:4;6579:131;:::i;:::-;6571:139;;6469:248;;;:::o;6723:419::-;;6927:2;6916:9;6912:18;6904:26;;6976:9;6970:4;6966:20;6962:1;6951:9;6947:17;6940:47;7004:131;7130:4;7004:131;:::i;:::-;6996:139;;6894:248;;;:::o;7148:419::-;;7352:2;7341:9;7337:18;7329:26;;7401:9;7395:4;7391:20;7387:1;7376:9;7372:17;7365:47;7429:131;7555:4;7429:131;:::i;:::-;7421:139;;7319:248;;;:::o;7573:442::-;;7760:2;7749:9;7745:18;7737:26;;7773:71;7841:1;7830:9;7826:17;7817:6;7773:71;:::i;:::-;7854:72;7922:2;7911:9;7907:18;7898:6;7854:72;:::i;:::-;7936;8004:2;7993:9;7989:18;7980:6;7936:72;:::i;:::-;7727:288;;;;;;:::o;8021:169::-;;8139:6;8134:3;8127:19;8179:4;8174:3;8170:14;8155:29;;8117:73;;;;:::o;8196:185::-;;8253:20;8271:1;8253:20;:::i;:::-;8248:25;;8287:20;8305:1;8287:20;:::i;:::-;8282:25;;8326:1;8316:2;;8331:18;;:::i;:::-;8316:2;8373:1;8370;8366:9;8361:14;;8238:143;;;;:::o;8387:96::-;;8453:24;8471:5;8453:24;:::i;:::-;8442:35;;8432:51;;;:::o;8489:90::-;;8566:5;8559:13;8552:21;8541:32;;8531:48;;;:::o;8585:77::-;;8651:5;8640:16;;8630:32;;;:::o;8668:126::-;;8745:42;8738:5;8734:54;8723:65;;8713:81;;;:::o;8800:77::-;;8866:5;8855:16;;8845:32;;;:::o;8883:233::-;;8945:24;8963:5;8945:24;:::i;:::-;8936:33;;8991:66;8984:5;8981:77;8978:2;;;9061:18;;:::i;:::-;8978:2;9108:1;9101:5;9097:13;9090:20;;8926:190;;;:::o;9122:100::-;;9190:26;9210:5;9190:26;:::i;:::-;9179:37;;9169:53;;;:::o;9228:79::-;;9296:5;9285:16;;9275:32;;;:::o;9313:94::-;;9381:20;9395:5;9381:20;:::i;:::-;9370:31;;9360:47;;;:::o;9413:79::-;;9481:5;9470:16;;9460:32;;;:::o;9498:176::-;;9547:20;9565:1;9547:20;:::i;:::-;9542:25;;9581:20;9599:1;9581:20;:::i;:::-;9576:25;;9620:1;9610:2;;9625:18;;:::i;:::-;9610:2;9666:1;9663;9659:9;9654:14;;9532:142;;;;:::o;9680:180::-;9728:77;9725:1;9718:88;9825:4;9822:1;9815:15;9849:4;9846:1;9839:15;9866:180;9914:77;9911:1;9904:88;10011:4;10008:1;10001:15;10035:4;10032:1;10025:15;10052:94;;10133:5;10129:2;10125:14;10104:35;;10094:52;;;:::o;10152:227::-;10292:34;10288:1;10280:6;10276:14;10269:58;10361:10;10356:2;10348:6;10344:15;10337:35;10258:121;:::o;10385:220::-;10525:34;10521:1;10513:6;10509:14;10502:58;10594:3;10589:2;10581:6;10577:15;10570:28;10491:114;:::o;10611:222::-;10751:34;10747:1;10739:6;10735:14;10728:58;10820:5;10815:2;10807:6;10803:15;10796:30;10717:116;:::o;10839:122::-;10912:24;10930:5;10912:24;:::i;:::-;10905:5;10902:35;10892:2;;10951:1;10948;10941:12;10892:2;10882:79;:::o;10967:116::-;11037:21;11052:5;11037:21;:::i;:::-;11030:5;11027:32;11017:2;;11073:1;11070;11063:12;11017:2;11007:76;:::o;11089:122::-;11162:24;11180:5;11162:24;:::i;:::-;11155:5;11152:35;11142:2;;11201:1;11198;11191:12;11142:2;11132:79;:::o

Swarm Source

ipfs://7f934dd6b7fd3cc4996f30faa5f789e32382f2d081d9f555c2380b13539a635a

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.