More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 16,763 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 17065874 | 646 days ago | IN | 0 ETH | 0.00223216 | ||||
Claim | 15784376 | 826 days ago | IN | 0 ETH | 0.00088241 | ||||
Claim | 15784376 | 826 days ago | IN | 0 ETH | 0.0011202 | ||||
Claim | 15650852 | 844 days ago | IN | 0 ETH | 0.00144652 | ||||
Claim | 15650852 | 844 days ago | IN | 0 ETH | 0.00235458 | ||||
Claim | 15650852 | 844 days ago | IN | 0 ETH | 0.00353405 | ||||
Claim | 15650852 | 844 days ago | IN | 0 ETH | 0.0021936 | ||||
Claim | 15650852 | 844 days ago | IN | 0 ETH | 0.0015825 | ||||
Claim | 15650852 | 844 days ago | IN | 0 ETH | 0.00176565 | ||||
Claim | 15489964 | 868 days ago | IN | 0 ETH | 0.00116904 | ||||
Claim | 15015546 | 943 days ago | IN | 0 ETH | 0.00052522 | ||||
Claim | 15008889 | 945 days ago | IN | 0 ETH | 0.0027778 | ||||
Claim | 15008550 | 945 days ago | IN | 0 ETH | 0.00332443 | ||||
Claim | 15008550 | 945 days ago | IN | 0 ETH | 0.00273037 | ||||
Claim | 15007988 | 945 days ago | IN | 0 ETH | 0.00320048 | ||||
Claim | 15007708 | 945 days ago | IN | 0 ETH | 0.00369746 | ||||
Claim | 15001194 | 946 days ago | IN | 0 ETH | 0.00064817 | ||||
Claim | 14978753 | 950 days ago | IN | 0 ETH | 0.0008124 | ||||
Claim | 14967164 | 952 days ago | IN | 0 ETH | 0.00120421 | ||||
Claim | 14961926 | 953 days ago | IN | 0 ETH | 0.00160809 | ||||
Claim | 14931700 | 958 days ago | IN | 0 ETH | 0.00154906 | ||||
Claim | 14931700 | 958 days ago | IN | 0 ETH | 0.0022074 | ||||
Claim | 14931700 | 958 days ago | IN | 0 ETH | 0.00259485 | ||||
Claim | 14931700 | 958 days ago | IN | 0 ETH | 0.0015825 | ||||
Claim | 14902868 | 963 days ago | IN | 0 ETH | 0.00167257 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
MerkleDistributor
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 pragma solidity 0.7.6; import "IERC20.sol"; import "Ownable.sol"; import "MerkleProof.sol"; import "IMerkleDistributor.sol"; contract MerkleDistributor is IMerkleDistributor, Ownable { address public immutable override token; bytes32 public immutable override merkleRoot; uint256 public immutable startTime; uint256 public immutable endTime; // This is a packed array of booleans. mapping(uint256 => uint256) private claimedBitMap; constructor(address token_, bytes32 merkleRoot_, uint256 startTime_, uint256 endTime_) public { require(token_ != address(0), 'Invalid token address'); require(startTime_ > block.timestamp, 'Invalid start time'); require(endTime_ > startTime_, 'Invalid end time'); token = token_; merkleRoot = merkleRoot_; startTime = startTime_; endTime = endTime_; } 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(block.timestamp >= startTime, 'Drop not yet available.'); require(block.timestamp <= endTime, 'Drop already expired.'); require(!isClaimed(index), 'Drop already claimed.'); // Verify the merkle proof. bytes32 node = keccak256(abi.encodePacked(index, account, amount)); require(MerkleProof.verify(merkleProof, merkleRoot, node), 'Invalid proof.'); // Mark it claimed and send the token. _setClaimed(index); require(IERC20(token).transfer(account, amount), 'Transfer failed.'); emit Claimed(index, account, amount); } function withdrawRemaining(address recipient) external onlyOwner { uint256 balance = IERC20(token).balanceOf(address(this)); require(IERC20(token).transfer(recipient, balance), 'Withdraw remaining failed.'); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev These functions deal with verification of Merkle trees (hash trees), */ 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; } }
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.5.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); }
{ "evmVersion": "istanbul", "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"},{"internalType":"uint256","name":"startTime_","type":"uint256"},{"internalType":"uint256","name":"endTime_","type":"uint256"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawRemaining","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61010060405234801561001157600080fd5b50604051610d3f380380610d3f8339818101604052608081101561003457600080fd5b508051602082015160408301516060909301519192909160006100556101ae565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600160a01b0384166100fa576040805162461bcd60e51b815260206004820152601560248201527f496e76616c696420746f6b656e20616464726573730000000000000000000000604482015290519081900360640190fd5b428211610143576040805162461bcd60e51b8152602060048201526012602482015271496e76616c69642073746172742074696d6560701b604482015290519081900360640190fd5b81811161018a576040805162461bcd60e51b815260206004820152601060248201526f496e76616c696420656e642074696d6560801b604482015290519081900360640190fd5b60609390931b6001600160601b03191660805260a09190915260c05260e0526101b2565b3390565b60805160601c60a05160c05160e051610b3761020860003980610283528061059052508061020e52806106725250806103bd528061056c52508061043552806107dd5280610877528061093a5250610b376000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c80638da5cb5b116100665780638da5cb5b146101635780639e34070f14610187578063f2fde38b146101b8578063fc0c546a146101de578063fd0cdcdb146101e65761009e565b80632e7ba6ef146100a35780632eb4a7ab146101315780633197cbb61461014b578063715018a61461015357806378e979251461015b575b600080fd5b61012f600480360360808110156100b957600080fd5b8135916001600160a01b0360208201351691604082013591908101906080810160608201356401000000008111156100f057600080fd5b82018360208201111561010257600080fd5b8035906020019184602083028401116401000000008311171561012457600080fd5b50909250905061020c565b005b61013961056a565b60408051918252519081900360200190f35b61013961058e565b61012f6105b2565b610139610670565b61016b610694565b604080516001600160a01b039092168252519081900360200190f35b6101a46004803603602081101561019d57600080fd5b50356106a3565b604080519115158252519081900360200190f35b61012f600480360360208110156101ce57600080fd5b50356001600160a01b03166106c7565b61016b6107db565b61012f600480360360208110156101fc57600080fd5b50356001600160a01b03166107ff565b7f0000000000000000000000000000000000000000000000000000000000000000421015610281576040805162461bcd60e51b815260206004820152601760248201527f44726f70206e6f742079657420617661696c61626c652e000000000000000000604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000004211156102ee576040805162461bcd60e51b8152602060048201526015602482015274223937b81030b63932b0b23c9032bc3834b932b21760591b604482015290519081900360640190fd5b6102f7856106a3565b15610341576040805162461bcd60e51b8152602060048201526015602482015274223937b81030b63932b0b23c9031b630b4b6b2b21760591b604482015290519081900360640190fd5b600085858560405160200180848152602001836001600160a01b031660601b815260140182815260200193505050506040516020818303038152906040528051906020012090506103e88383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152507f00000000000000000000000000000000000000000000000000000000000000009250859150610a069050565b61042a576040805162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b604482015290519081900360640190fd5b61043386610aaf565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb86866040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156104aa57600080fd5b505af11580156104be573d6000803e3d6000fd5b505050506040513d60208110156104d457600080fd5b505161051a576040805162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015290519081900360640190fd5b604080518781526001600160a01b038716602082015280820186905290517f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed0269181900360600190a1505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6105ba610ad7565b6001600160a01b03166105cb610694565b6001600160a01b031614610626576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b031690565b610100810460009081526001602081905260409091205460ff9092161b9081161490565b6106cf610ad7565b6001600160a01b03166106e0610694565b6001600160a01b03161461073b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166107805760405162461bcd60e51b8152600401808060200182810382526026815260200180610adc6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b7f000000000000000000000000000000000000000000000000000000000000000081565b610807610ad7565b6001600160a01b0316610818610694565b6001600160a01b031614610873576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156108e257600080fd5b505afa1580156108f6573d6000803e3d6000fd5b505050506040513d602081101561090c57600080fd5b50516040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820184905291519293507f00000000000000000000000000000000000000000000000000000000000000009091169163a9059cbb916044808201926020929091908290030181600087803b15801561098557600080fd5b505af1158015610999573d6000803e3d6000fd5b505050506040513d60208110156109af57600080fd5b5051610a02576040805162461bcd60e51b815260206004820152601a60248201527f57697468647261772072656d61696e696e67206661696c65642e000000000000604482015290519081900360640190fd5b5050565b600081815b8551811015610aa4576000868281518110610a2257fe5b60200260200101519050808311610a695782816040516020018083815260200182815260200192505050604051602081830303815290604052805190602001209250610a9b565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b50600101610a0b565b509092149392505050565b61010081046000908152600160208190526040909120805460ff9093169190911b9091179055565b339056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373a264697066735822122068bda5d9f129fc3de8799d637e9af6a711f2b326d45212097ad23480a484457a64736f6c634300070600330000000000000000000000005faa989af96af85384b8a938c2ede4a7378d98755e28e016578fc0dba8cebad19c4b73f061f9f5c80efbdb5ca3c22e0954c1424d000000000000000000000000000000000000000000000000000000006273bc4000000000000000000000000000000000000000000000000000000000629b4940
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061009e5760003560e01c80638da5cb5b116100665780638da5cb5b146101635780639e34070f14610187578063f2fde38b146101b8578063fc0c546a146101de578063fd0cdcdb146101e65761009e565b80632e7ba6ef146100a35780632eb4a7ab146101315780633197cbb61461014b578063715018a61461015357806378e979251461015b575b600080fd5b61012f600480360360808110156100b957600080fd5b8135916001600160a01b0360208201351691604082013591908101906080810160608201356401000000008111156100f057600080fd5b82018360208201111561010257600080fd5b8035906020019184602083028401116401000000008311171561012457600080fd5b50909250905061020c565b005b61013961056a565b60408051918252519081900360200190f35b61013961058e565b61012f6105b2565b610139610670565b61016b610694565b604080516001600160a01b039092168252519081900360200190f35b6101a46004803603602081101561019d57600080fd5b50356106a3565b604080519115158252519081900360200190f35b61012f600480360360208110156101ce57600080fd5b50356001600160a01b03166106c7565b61016b6107db565b61012f600480360360208110156101fc57600080fd5b50356001600160a01b03166107ff565b7f000000000000000000000000000000000000000000000000000000006273bc40421015610281576040805162461bcd60e51b815260206004820152601760248201527f44726f70206e6f742079657420617661696c61626c652e000000000000000000604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000629b49404211156102ee576040805162461bcd60e51b8152602060048201526015602482015274223937b81030b63932b0b23c9032bc3834b932b21760591b604482015290519081900360640190fd5b6102f7856106a3565b15610341576040805162461bcd60e51b8152602060048201526015602482015274223937b81030b63932b0b23c9031b630b4b6b2b21760591b604482015290519081900360640190fd5b600085858560405160200180848152602001836001600160a01b031660601b815260140182815260200193505050506040516020818303038152906040528051906020012090506103e88383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152507f5e28e016578fc0dba8cebad19c4b73f061f9f5c80efbdb5ca3c22e0954c1424d9250859150610a069050565b61042a576040805162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b604482015290519081900360640190fd5b61043386610aaf565b7f0000000000000000000000005faa989af96af85384b8a938c2ede4a7378d98756001600160a01b031663a9059cbb86866040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156104aa57600080fd5b505af11580156104be573d6000803e3d6000fd5b505050506040513d60208110156104d457600080fd5b505161051a576040805162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015290519081900360640190fd5b604080518781526001600160a01b038716602082015280820186905290517f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed0269181900360600190a1505050505050565b7f5e28e016578fc0dba8cebad19c4b73f061f9f5c80efbdb5ca3c22e0954c1424d81565b7f00000000000000000000000000000000000000000000000000000000629b494081565b6105ba610ad7565b6001600160a01b03166105cb610694565b6001600160a01b031614610626576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b7f000000000000000000000000000000000000000000000000000000006273bc4081565b6000546001600160a01b031690565b610100810460009081526001602081905260409091205460ff9092161b9081161490565b6106cf610ad7565b6001600160a01b03166106e0610694565b6001600160a01b03161461073b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166107805760405162461bcd60e51b8152600401808060200182810382526026815260200180610adc6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b7f0000000000000000000000005faa989af96af85384b8a938c2ede4a7378d987581565b610807610ad7565b6001600160a01b0316610818610694565b6001600160a01b031614610873576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60007f0000000000000000000000005faa989af96af85384b8a938c2ede4a7378d98756001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156108e257600080fd5b505afa1580156108f6573d6000803e3d6000fd5b505050506040513d602081101561090c57600080fd5b50516040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820184905291519293507f0000000000000000000000005faa989af96af85384b8a938c2ede4a7378d98759091169163a9059cbb916044808201926020929091908290030181600087803b15801561098557600080fd5b505af1158015610999573d6000803e3d6000fd5b505050506040513d60208110156109af57600080fd5b5051610a02576040805162461bcd60e51b815260206004820152601a60248201527f57697468647261772072656d61696e696e67206661696c65642e000000000000604482015290519081900360640190fd5b5050565b600081815b8551811015610aa4576000868281518110610a2257fe5b60200260200101519050808311610a695782816040516020018083815260200182815260200192505050604051602081830303815290604052805190602001209250610a9b565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b50600101610a0b565b509092149392505050565b61010081046000908152600160208190526040909120805460ff9093169190911b9091179055565b339056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373a264697066735822122068bda5d9f129fc3de8799d637e9af6a711f2b326d45212097ad23480a484457a64736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005faa989af96af85384b8a938c2ede4a7378d98755e28e016578fc0dba8cebad19c4b73f061f9f5c80efbdb5ca3c22e0954c1424d000000000000000000000000000000000000000000000000000000006273bc4000000000000000000000000000000000000000000000000000000000629b4940
-----Decoded View---------------
Arg [0] : token_ (address): 0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875
Arg [1] : merkleRoot_ (bytes32): 0x5e28e016578fc0dba8cebad19c4b73f061f9f5c80efbdb5ca3c22e0954c1424d
Arg [2] : startTime_ (uint256): 1651752000
Arg [3] : endTime_ (uint256): 1654344000
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000005faa989af96af85384b8a938c2ede4a7378d9875
Arg [1] : 5e28e016578fc0dba8cebad19c4b73f061f9f5c80efbdb5ca3c22e0954c1424d
Arg [2] : 000000000000000000000000000000000000000000000000000000006273bc40
Arg [3] : 00000000000000000000000000000000000000000000000000000000629b4940
Deployed Bytecode Sourcemap
166:2300:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1504:725;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1504:725:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1504:725:3;;-1:-1:-1;1504:725:3;-1:-1:-1;1504:725:3;:::i;:::-;;275:44;;;:::i;:::-;;;;;;;;;;;;;;;;365:32;;;:::i;1708:145:5:-;;;:::i;325:34:3:-;;;:::i;1076:85:5:-;;;:::i;:::-;;;;-1:-1:-1;;;;;1076:85:5;;;;;;;;;;;;;;921:325:3;;;;;;;;;;;;;;;;-1:-1:-1;921:325:3;;:::i;:::-;;;;;;;;;;;;;;;;;;2002:240:5;;;;;;;;;;;;;;;;-1:-1:-1;2002:240:5;-1:-1:-1;;;;;2002:240:5;;:::i;230:39:3:-;;;:::i;2235:229::-;;;;;;;;;;;;;;;;-1:-1:-1;2235:229:3;-1:-1:-1;;;;;2235:229:3;;:::i;1504:725::-;1654:9;1635:15;:28;;1627:64;;;;;-1:-1:-1;;;1627:64:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;1728:7;1709:15;:26;;1701:60;;;;;-1:-1:-1;;;1701:60:3;;;;;;;;;;;;-1:-1:-1;;;1701:60:3;;;;;;;;;;;;;;;1780:16;1790:5;1780:9;:16::i;:::-;1779:17;1771:51;;;;;-1:-1:-1;;;1771:51:3;;;;;;;;;;;;-1:-1:-1;;;1771:51:3;;;;;;;;;;;;;;;1869:12;1911:5;1918:7;1927:6;1894:40;;;;;;;;;;;-1:-1:-1;;;;;1894:40:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1884:51;;;;;;1869:66;;1953:49;1972:11;;1953:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1985:10:3;;-1:-1:-1;1997:4:3;;-1:-1:-1;1953:18:3;;-1:-1:-1;1953:49:3:i;:::-;1945:76;;;;;-1:-1:-1;;;1945:76:3;;;;;;;;;;;;-1:-1:-1;;;1945:76:3;;;;;;;;;;;;;;;2079:18;2091:5;2079:11;:18::i;:::-;2122:5;-1:-1:-1;;;;;2115:22:3;;2138:7;2147:6;2115:39;;;;;;;;;;;;;-1:-1:-1;;;;;2115:39:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2115:39:3;2107:68;;;;;-1:-1:-1;;;2107:68:3;;;;;;;;;;;;-1:-1:-1;;;2107:68:3;;;;;;;;;;;;;;;2191:31;;;;;;-1:-1:-1;;;;;2191:31:3;;;;;;;;;;;;;;;;;;;;;;;1504:725;;;;;;:::o;275:44::-;;;:::o;365:32::-;;;:::o;1708:145:5:-;1299:12;:10;:12::i;:::-;-1:-1:-1;;;;;1288:23:5;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1288:23:5;;1280:68;;;;;-1:-1:-1;;;1280:68:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1814:1:::1;1798:6:::0;;1777:40:::1;::::0;-1:-1:-1;;;;;1798:6:5;;::::1;::::0;1777:40:::1;::::0;1814:1;;1777:40:::1;1844:1;1827:19:::0;;-1:-1:-1;;;;;;1827:19:5::1;::::0;;1708:145::o;325:34:3:-;;;:::o;1076:85:5:-;1122:7;1148:6;-1:-1:-1;;;;;1148:6:5;1076:85;:::o;921:325:3:-;1036:3;1028:11;;985:4;1118:31;;;:13;:31;;;;;;;;;1075:11;;;;1175:20;1213:18;;;:26;;921:325::o;2002:240:5:-;1299:12;:10;:12::i;:::-;-1:-1:-1;;;;;1288:23:5;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1288:23:5;;1280:68;;;;;-1:-1:-1;;;1280:68:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2090:22:5;::::1;2082:73;;;;-1:-1:-1::0;;;2082:73:5::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2191:6;::::0;;2170:38:::1;::::0;-1:-1:-1;;;;;2170:38:5;;::::1;::::0;2191:6;::::1;::::0;2170:38:::1;::::0;::::1;2218:6;:17:::0;;-1:-1:-1;;;;;;2218:17:5::1;-1:-1:-1::0;;;;;2218:17:5;;;::::1;::::0;;;::::1;::::0;;2002:240::o;230:39:3:-;;;:::o;2235:229::-;1299:12:5;:10;:12::i;:::-;-1:-1:-1;;;;;1288:23:5;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1288:23:5;;1280:68;;;;;-1:-1:-1;;;1280:68:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310:15:3::1;2335:5;-1:-1:-1::0;;;;;2328:23:3::1;;2360:4;2328:38;;;;;;;;;;;;;-1:-1:-1::0;;;;;2328:38:3::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;2328:38:3;2384:42:::1;::::0;;-1:-1:-1;;;2384:42:3;;-1:-1:-1;;;;;2384:42:3;;::::1;;::::0;::::1;::::0;;;;;;;;;2328:38;;-1:-1:-1;2391:5:3::1;2384:22:::0;;::::1;::::0;::::1;::::0;:42;;;;;2328:38:::1;::::0;2384:42;;;;;;;;-1:-1:-1;2384:22:3;:42;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;2384:42:3;2376:81:::1;;;::::0;;-1:-1:-1;;;2376:81:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;1358:1:5;2235:229:3::0;:::o;505:779:4:-;596:4;635;596;650:515;674:5;:12;670:1;:16;650:515;;;707:20;730:5;736:1;730:8;;;;;;;;;;;;;;707:31;;773:12;757;:28;753:402;;925:12;939;908:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;898:55;;;;;;883:70;;753:402;;;1112:12;1126;1095:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1085:55;;;;;;1070:70;;753:402;-1:-1:-1;688:3:4;;650:515;;;-1:-1:-1;1257:20:4;;;;505:779;-1:-1:-1;;;505:779:4:o;1252:246:3:-;1341:3;1333:11;;1306:24;1435:31;;;1470:1;1435:31;;;;;;;;;;1380:11;;;;1470:20;;;;1435:56;;;1401:90;;1252:246::o;598:104:0:-;685:10;598:104;:::o
Swarm Source
ipfs://68bda5d9f129fc3de8799d637e9af6a711f2b326d45212097ad23480a484457a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $1.7 | 173,594.87 | $295,111.28 |
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.