Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 602 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Claim | 24044885 | 76 days ago | IN | 0 ETH | 0.0000379 | ||||
| Claim | 24004267 | 82 days ago | IN | 0 ETH | 0.00000404 | ||||
| Claim | 23998039 | 83 days ago | IN | 0 ETH | 0.00000321 | ||||
| Claim | 23984990 | 85 days ago | IN | 0 ETH | 0.00001064 | ||||
| Claim | 23984083 | 85 days ago | IN | 0 ETH | 0.00001139 | ||||
| Claim | 23977996 | 86 days ago | IN | 0 ETH | 0.00001496 | ||||
| Claim | 23977970 | 86 days ago | IN | 0 ETH | 0.00001574 | ||||
| Claim | 23970174 | 87 days ago | IN | 0 ETH | 0.00002331 | ||||
| Claim | 23967686 | 87 days ago | IN | 0 ETH | 0.00002656 | ||||
| Claim | 23967679 | 87 days ago | IN | 0 ETH | 0.00002672 | ||||
| Claim | 23962995 | 88 days ago | IN | 0 ETH | 0.00001037 | ||||
| Claim | 23960389 | 88 days ago | IN | 0 ETH | 0.00001476 | ||||
| Claim | 23960313 | 88 days ago | IN | 0 ETH | 0.00001535 | ||||
| Claim | 23960274 | 88 days ago | IN | 0 ETH | 0.00001459 | ||||
| Claim | 23960180 | 88 days ago | IN | 0 ETH | 0.0000096 | ||||
| Claim | 23960161 | 88 days ago | IN | 0 ETH | 0.00000912 | ||||
| Claim | 23959108 | 88 days ago | IN | 0 ETH | 0.00002891 | ||||
| Claim | 23955626 | 89 days ago | IN | 0 ETH | 0.00000202 | ||||
| Claim | 23954656 | 89 days ago | IN | 0 ETH | 0.00000179 | ||||
| Claim | 23952615 | 89 days ago | IN | 0 ETH | 0.00000178 | ||||
| Claim | 23952243 | 89 days ago | IN | 0 ETH | 0.0000018 | ||||
| Claim | 23951296 | 89 days ago | IN | 0 ETH | 0.00000188 | ||||
| Claim | 23951248 | 89 days ago | IN | 0 ETH | 0.00000167 | ||||
| Claim | 23950160 | 90 days ago | IN | 0 ETH | 0.00000178 | ||||
| Claim | 23949794 | 90 days ago | IN | 0 ETH | 0.00000157 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MerkleAirdrop
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
Yes with 200 runs
Other Settings:
prague EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
/*
████████╗ █████╗ ██╗ ██╗███████╗███╗ ███╗ █████╗ ███╗ ██╗
╚══██╔══╝██╔══██╗██║ ██║██╔════╝████╗ ████║██╔══██╗████╗ ██║
██║ ███████║██║ ██║███████╗██╔████╔██║███████║██╔██╗ ██║
██║ ██╔══██║██║ ██║╚════██║██║╚██╔╝██║██╔══██║██║╚██╗██║
██║ ██║ ██║███████╗██║███████║██║ ╚═╝ ██║██║ ██║██║ ╚████║
╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝
*/
import {IERC20} from "lib/forge-std/src/interfaces/IERC20.sol";
/// @title MerkleAirdrop
/// @notice ERC20 airdrop contract backed by an immutable Merkle root and claim deadline.
contract MerkleAirdrop {
/// @dev ERC20 being distributed.
IERC20 public immutable token;
/// @dev Merkle root describing all valid claims.
bytes32 public immutable merkleRoot;
/// @dev Last timestamp (inclusive) when claims are allowed.
uint64 public immutable deadline;
/// @dev Current contract owner allowed to sweep leftover tokens.
address public owner;
/// @dev Tracks which claim indices have already been redeemed (bit-packed).
mapping(uint256 => uint256) private claimedBitMap;
/// @dev Emitted whenever a claim succeeds.
event Claimed(uint256 indexed index, address indexed account, uint256 amount);
/// @dev Emitted after ownership changes.
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/// @dev Emitted when leftover tokens are swept post-deadline.
event OwnerSweep(address indexed owner, uint256 amount);
/// @dev Thrown when attempting to claim or sweep after the deadline has passed.
error ClaimWindowClosed();
/// @dev Thrown when attempting to sweep before the deadline passed.
error ClaimWindowOpen();
/// @dev Thrown when caller lacks the required permissions.
error Unauthorized();
/// @dev Thrown when providing invalid constructor arguments.
error InvalidParams();
/// @dev Thrown when attempting to claim the same allocation twice.
error AlreadyClaimed();
/// @dev Thrown when a supplied Merkle proof does not match the stored root.
error InvalidProof();
/// @dev Thrown when an ERC20 transfer fails.
error TransferFailed();
constructor(IERC20 token_, bytes32 merkleRoot_, uint64 deadline_, address owner_) {
if (
address(token_) == address(0) || merkleRoot_ == bytes32(0) || deadline_ <= block.timestamp
|| owner_ == address(0)
) {
revert InvalidParams();
}
token = token_;
merkleRoot = merkleRoot_;
deadline = deadline_;
owner = owner_;
emit OwnershipTransferred(address(0), owner_);
}
/// @notice Claim tokens if the provided proof validates against the Merkle root.
function claim(uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof) external {
if (block.timestamp > deadline) revert ClaimWindowClosed();
if (_isClaimed(index)) revert AlreadyClaimed();
bytes32 node = keccak256(abi.encodePacked(index, account, amount));
if (!_verify(merkleProof, merkleRoot, node)) revert InvalidProof();
_setClaimed(index);
_safeTransfer(account, amount);
emit Claimed(index, account, amount);
}
/// @notice Sweep remaining tokens to the owner after the claim window closes.
function sweep() external {
if (msg.sender != owner) revert Unauthorized();
if (block.timestamp <= deadline) revert ClaimWindowOpen();
uint256 balance = token.balanceOf(address(this));
if (balance > 0) {
_safeTransfer(owner, balance);
}
emit OwnerSweep(owner, balance);
}
/// @notice Transfer contract ownership.
function transferOwnership(address newOwner) external {
if (msg.sender != owner) revert Unauthorized();
if (newOwner == address(0)) revert InvalidParams();
emit OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
/// @notice Returns true if the claim at `index` has already been made.
function isClaimed(uint256 index) external view returns (bool) {
return _isClaimed(index);
}
/// @dev Sets the bit for the given index in the bitmap.
function _setClaimed(uint256 index) private {
uint256 wordIndex = index >> 8;
uint256 bitIndex = index & 0xff;
claimedBitMap[wordIndex] |= 1 << bitIndex;
}
/// @dev Returns true if the given index has been claimed.
function _isClaimed(uint256 index) private view returns (bool) {
uint256 wordIndex = index >> 8;
uint256 bitIndex = index & 0xff;
return claimedBitMap[wordIndex] & (1 << bitIndex) != 0;
}
/// @dev Performs an ERC20 transfer that tolerates missing return values.
function _safeTransfer(address to, uint256 amount) private {
(bool success, bytes memory data) =
address(token).call(abi.encodeWithSelector(IERC20.transfer.selector, to, amount));
if (!success || (data.length != 0 && !abi.decode(data, (bool)))) revert TransferFailed();
}
/// @dev Verifies the provided Merkle proof against `root`.
function _verify(bytes32[] calldata proof, bytes32 root, bytes32 leaf) private pure returns (bool) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
} else {
computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
}
}
return computedHash == root;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2;
/// @dev Interface of the ERC20 standard as defined in the EIP.
/// @dev This includes the optional name, symbol, and decimals metadata.
interface IERC20 {
/// @dev Emitted when `value` tokens are moved from one account (`from`) to another (`to`).
event Transfer(address indexed from, address indexed to, uint256 value);
/// @dev Emitted when the allowance of a `spender` for an `owner` is set, where `value`
/// is the new allowance.
event Approval(address indexed owner, address indexed spender, uint256 value);
/// @notice Returns the amount of tokens in existence.
function totalSupply() external view returns (uint256);
/// @notice Returns the amount of tokens owned by `account`.
function balanceOf(address account) external view returns (uint256);
/// @notice Moves `amount` tokens from the caller's account to `to`.
function transfer(address to, uint256 amount) external returns (bool);
/// @notice Returns the remaining number of tokens that `spender` is allowed
/// to spend on behalf of `owner`
function allowance(address owner, address spender) external view returns (uint256);
/// @notice Sets `amount` as the allowance of `spender` over the caller's tokens.
/// @dev Be aware of front-running risks: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
function approve(address spender, uint256 amount) external returns (bool);
/// @notice Moves `amount` tokens from `from` to `to` using the allowance mechanism.
/// `amount` is then deducted from the caller's allowance.
function transferFrom(address from, address to, uint256 amount) external returns (bool);
/// @notice Returns the name of the token.
function name() external view returns (string memory);
/// @notice Returns the symbol of the token.
function symbol() external view returns (string memory);
/// @notice Returns the decimals places of the token.
function decimals() external view returns (uint8);
}{
"remappings": [
"forge-std/=lib/forge-std/src/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "prague",
"viaIR": false
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IERC20","name":"token_","type":"address"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"},{"internalType":"uint64","name":"deadline_","type":"uint64"},{"internalType":"address","name":"owner_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyClaimed","type":"error"},{"inputs":[],"name":"ClaimWindowClosed","type":"error"},{"inputs":[],"name":"ClaimWindowOpen","type":"error"},{"inputs":[],"name":"InvalidParams","type":"error"},{"inputs":[],"name":"InvalidProof","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":true,"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":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"OwnerSweep","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":"deadline","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"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":"sweep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60e060405234801561000f575f5ffd5b50604051610a30380380610a3083398101604081905261002e91610103565b6001600160a01b0384161580610042575082155b80610056575042826001600160401b031611155b8061006857506001600160a01b038116155b1561008657604051635435b28960e11b815260040160405180910390fd5b6001600160a01b0384811660805260a08490526001600160401b03831660c0525f80546001600160a01b03191691831691821781556040517f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350505050610160565b6001600160a01b0381168114610100575f5ffd5b50565b5f5f5f5f60808587031215610116575f5ffd5b8451610121816100ec565b6020860151604087015191955093506001600160401b0381168114610144575f5ffd5b6060860151909250610155816100ec565b939692955090935050565b60805160a05160c0516108856101ab5f395f8181608e015281816101c6015261038401525f818160e8015261029d01525f81816101a2015281816103e3015261064f01526108855ff3fe608060405234801561000f575f5ffd5b5060043610610085575f3560e01c80638da5cb5b116100585780638da5cb5b146101205780639e34070f1461014a578063f2fde38b1461018a578063fc0c546a1461019d575f5ffd5b806329dcb0cf146100895780632e7ba6ef146100ce5780632eb4a7ab146100e357806335faa41614610118575b5f5ffd5b6100b07f000000000000000000000000000000000000000000000000000000000000000081565b60405167ffffffffffffffff90911681526020015b60405180910390f35b6100e16100dc366004610727565b6101c4565b005b61010a7f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020016100c5565b6100e1610359565b5f54610132906001600160a01b031681565b6040516001600160a01b0390911681526020016100c5565b61017a6101583660046107b8565b600881901c5f9081526001602081905260409091205460ff9092161b16151590565b60405190151581526020016100c5565b6100e16101983660046107cf565b6104b5565b6101327f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff1642111561020f5760405163f0f25a3360e01b815260040160405180910390fd5b61023585600881901c5f9081526001602081905260409091205460ff9092161b16151590565b1561025357604051630c8d9eab60e31b815260040160405180910390fd5b604080516020808201889052606087901b6bffffffffffffffffffffffff191682840152605480830187905283518084039091018152607490920190925280519101206102c283837f00000000000000000000000000000000000000000000000000000000000000008461055e565b6102df576040516309bde33960e01b815260040160405180910390fd5b600886901c5f908152600160208190526040909120805460ff89169290921b909117905561030d8585610600565b846001600160a01b0316867f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed0268660405161034991815260200190565b60405180910390a3505050505050565b5f546001600160a01b03163314610382576040516282b42960e81b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff1642116103cc576040516314efd1e760e11b815260040160405180910390fd5b6040516370a0823160e01b81523060048201525f907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610430573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061045491906107ef565b90508015610471575f54610471906001600160a01b031682610600565b5f546040518281526001600160a01b03909116907fee1da9534dff57517dbf44d5e959d4844b18f494c453608bd53b62e9a6092b589060200160405180910390a250565b5f546001600160a01b031633146104de576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03811661050557604051635435b28960e11b815260040160405180910390fd5b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b5f81815b858110156105f4575f87878381811061057d5761057d610806565b9050602002013590508083116105be5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506105eb565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50600101610562565b50909214949350505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291515f9283927f00000000000000000000000000000000000000000000000000000000000000009091169161067c919061081a565b5f604051808303815f865af19150503d805f81146106b5576040519150601f19603f3d011682016040523d82523d5f602084013e6106ba565b606091505b50915091508115806106e857508051158015906106e85750808060200190518101906106e69190610830565b155b15610706576040516312171d8360e31b815260040160405180910390fd5b50505050565b80356001600160a01b0381168114610722575f5ffd5b919050565b5f5f5f5f5f6080868803121561073b575f5ffd5b8535945061074b6020870161070c565b935060408601359250606086013567ffffffffffffffff81111561076d575f5ffd5b8601601f8101881361077d575f5ffd5b803567ffffffffffffffff811115610793575f5ffd5b8860208260051b84010111156107a7575f5ffd5b959894975092955050506020019190565b5f602082840312156107c8575f5ffd5b5035919050565b5f602082840312156107df575f5ffd5b6107e88261070c565b9392505050565b5f602082840312156107ff575f5ffd5b5051919050565b634e487b7160e01b5f52603260045260245ffd5b5f82518060208501845e5f920191825250919050565b5f60208284031215610840575f5ffd5b815180151581146107e8575f5ffdfea2646970667358221220a4067aa06adfa639c2f1768cbcc27553444b5b14b9147d302adacece2a090a5264736f6c634300081c003300000000000000000000000007c3e739c65f81ea79d19a88d27de4c9f15f8df0d953088147501960dcc2f35d6718579d32357cd4069cb2552226c4954d6867e500000000000000000000000000000000000000000000000000000000695baec8000000000000000000000000acf542427a9a53ced2226646376f9eb9102088d3
Deployed Bytecode
0x608060405234801561000f575f5ffd5b5060043610610085575f3560e01c80638da5cb5b116100585780638da5cb5b146101205780639e34070f1461014a578063f2fde38b1461018a578063fc0c546a1461019d575f5ffd5b806329dcb0cf146100895780632e7ba6ef146100ce5780632eb4a7ab146100e357806335faa41614610118575b5f5ffd5b6100b07f00000000000000000000000000000000000000000000000000000000695baec881565b60405167ffffffffffffffff90911681526020015b60405180910390f35b6100e16100dc366004610727565b6101c4565b005b61010a7fd953088147501960dcc2f35d6718579d32357cd4069cb2552226c4954d6867e581565b6040519081526020016100c5565b6100e1610359565b5f54610132906001600160a01b031681565b6040516001600160a01b0390911681526020016100c5565b61017a6101583660046107b8565b600881901c5f9081526001602081905260409091205460ff9092161b16151590565b60405190151581526020016100c5565b6100e16101983660046107cf565b6104b5565b6101327f00000000000000000000000007c3e739c65f81ea79d19a88d27de4c9f15f8df081565b7f00000000000000000000000000000000000000000000000000000000695baec867ffffffffffffffff1642111561020f5760405163f0f25a3360e01b815260040160405180910390fd5b61023585600881901c5f9081526001602081905260409091205460ff9092161b16151590565b1561025357604051630c8d9eab60e31b815260040160405180910390fd5b604080516020808201889052606087901b6bffffffffffffffffffffffff191682840152605480830187905283518084039091018152607490920190925280519101206102c283837fd953088147501960dcc2f35d6718579d32357cd4069cb2552226c4954d6867e58461055e565b6102df576040516309bde33960e01b815260040160405180910390fd5b600886901c5f908152600160208190526040909120805460ff89169290921b909117905561030d8585610600565b846001600160a01b0316867f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed0268660405161034991815260200190565b60405180910390a3505050505050565b5f546001600160a01b03163314610382576040516282b42960e81b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000695baec867ffffffffffffffff1642116103cc576040516314efd1e760e11b815260040160405180910390fd5b6040516370a0823160e01b81523060048201525f907f00000000000000000000000007c3e739c65f81ea79d19a88d27de4c9f15f8df06001600160a01b0316906370a0823190602401602060405180830381865afa158015610430573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061045491906107ef565b90508015610471575f54610471906001600160a01b031682610600565b5f546040518281526001600160a01b03909116907fee1da9534dff57517dbf44d5e959d4844b18f494c453608bd53b62e9a6092b589060200160405180910390a250565b5f546001600160a01b031633146104de576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03811661050557604051635435b28960e11b815260040160405180910390fd5b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b5f81815b858110156105f4575f87878381811061057d5761057d610806565b9050602002013590508083116105be5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506105eb565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50600101610562565b50909214949350505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291515f9283927f00000000000000000000000007c3e739c65f81ea79d19a88d27de4c9f15f8df09091169161067c919061081a565b5f604051808303815f865af19150503d805f81146106b5576040519150601f19603f3d011682016040523d82523d5f602084013e6106ba565b606091505b50915091508115806106e857508051158015906106e85750808060200190518101906106e69190610830565b155b15610706576040516312171d8360e31b815260040160405180910390fd5b50505050565b80356001600160a01b0381168114610722575f5ffd5b919050565b5f5f5f5f5f6080868803121561073b575f5ffd5b8535945061074b6020870161070c565b935060408601359250606086013567ffffffffffffffff81111561076d575f5ffd5b8601601f8101881361077d575f5ffd5b803567ffffffffffffffff811115610793575f5ffd5b8860208260051b84010111156107a7575f5ffd5b959894975092955050506020019190565b5f602082840312156107c8575f5ffd5b5035919050565b5f602082840312156107df575f5ffd5b6107e88261070c565b9392505050565b5f602082840312156107ff575f5ffd5b5051919050565b634e487b7160e01b5f52603260045260245ffd5b5f82518060208501845e5f920191825250919050565b5f60208284031215610840575f5ffd5b815180151581146107e8575f5ffdfea2646970667358221220a4067aa06adfa639c2f1768cbcc27553444b5b14b9147d302adacece2a090a5264736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000007c3e739c65f81ea79d19a88d27de4c9f15f8df0d953088147501960dcc2f35d6718579d32357cd4069cb2552226c4954d6867e500000000000000000000000000000000000000000000000000000000695baec8000000000000000000000000acf542427a9a53ced2226646376f9eb9102088d3
-----Decoded View---------------
Arg [0] : token_ (address): 0x07C3E739C65f81Ea79d19A88d27de4C9f15f8Df0
Arg [1] : merkleRoot_ (bytes32): 0xd953088147501960dcc2f35d6718579d32357cd4069cb2552226c4954d6867e5
Arg [2] : deadline_ (uint64): 1767616200
Arg [3] : owner_ (address): 0xaCf542427a9a53ced2226646376f9eb9102088D3
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000007c3e739c65f81ea79d19a88d27de4c9f15f8df0
Arg [1] : d953088147501960dcc2f35d6718579d32357cd4069cb2552226c4954d6867e5
Arg [2] : 00000000000000000000000000000000000000000000000000000000695baec8
Arg [3] : 000000000000000000000000acf542427a9a53ced2226646376f9eb9102088d3
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.