Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x01e933718ed6c951fef62f94ed9c78e424ff627548cd6c53d4f71ef0a338f50c | Claim | (pending) | 2 days ago | IN | 0 ETH | (Pending) | |||
0x1703fa695e4a528b825849cb5aca700c00326a1c6ec47fefe7d27101a827f279 | Claim | (pending) | 9 days ago | IN | 0 ETH | (Pending) | |||
Claim | 22040859 | 39 days ago | IN | 0 ETH | 0.00004265 | ||||
Claim | 22040035 | 39 days ago | IN | 0 ETH | 0.00009976 | ||||
Claim | 22039036 | 40 days ago | IN | 0 ETH | 0.00013228 | ||||
Claim | 22038670 | 40 days ago | IN | 0 ETH | 0.00009876 | ||||
Claim | 22038144 | 40 days ago | IN | 0 ETH | 0.00004538 | ||||
Claim | 22038144 | 40 days ago | IN | 0 ETH | 0.00010967 | ||||
Claim | 22037102 | 40 days ago | IN | 0 ETH | 0.0000925 | ||||
Claim | 22037087 | 40 days ago | IN | 0 ETH | 0.00009563 | ||||
Claim | 22036802 | 40 days ago | IN | 0 ETH | 0.00009751 | ||||
Claim | 22036799 | 40 days ago | IN | 0 ETH | 0.00009608 | ||||
Claim | 22036795 | 40 days ago | IN | 0 ETH | 0.00009916 | ||||
Claim | 22036792 | 40 days ago | IN | 0 ETH | 0.00010545 | ||||
Claim | 22036761 | 40 days ago | IN | 0 ETH | 0.00010058 | ||||
Claim | 22036714 | 40 days ago | IN | 0 ETH | 0.00009617 | ||||
Claim | 22036621 | 40 days ago | IN | 0 ETH | 0.00012229 | ||||
Claim | 22036569 | 40 days ago | IN | 0 ETH | 0.00009584 | ||||
Claim | 22036448 | 40 days ago | IN | 0 ETH | 0.0000973 | ||||
Claim | 22036365 | 40 days ago | IN | 0 ETH | 0.00009648 | ||||
Claim | 22035773 | 40 days ago | IN | 0 ETH | 0.00009745 | ||||
Claim | 22035473 | 40 days ago | IN | 0 ETH | 0.00005478 | ||||
Claim | 22034429 | 40 days ago | IN | 0 ETH | 0.00009818 | ||||
Claim | 22033392 | 40 days ago | IN | 0 ETH | 0.00010553 | ||||
Claim | 22033278 | 40 days ago | IN | 0 ETH | 0.00009894 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
OlaAirdrop
Compiler Version
v0.8.27+commit.40a35a09
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.27; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract OlaAirdrop is Ownable { IERC20 public immutable olaToken; bytes32 public merkleRoot; mapping(address => uint256) public claimedAmount; event Claimed(address indexed account, uint256 newClaimAmount, uint256 totalClaimedAmount); constructor(address _olaToken, bytes32 _merkleRoot, address initialOwner) Ownable(initialOwner) { olaToken = IERC20(_olaToken); merkleRoot = _merkleRoot; } function claim(uint256 totalAmount, bytes32[] calldata merkleProof) external { // Verify user's total claimable amount bytes32 leaf = keccak256(bytes.concat(keccak256(abi.encode(msg.sender, totalAmount)))); require(MerkleProof.verify(merkleProof, merkleRoot, leaf), "Invalid proof"); // Calculate new claimable amount uint256 alreadyClaimed = claimedAmount[msg.sender]; require(totalAmount > alreadyClaimed, "No new tokens to claim"); uint256 newClaimAmount = totalAmount - alreadyClaimed; claimedAmount[msg.sender] = totalAmount; require(olaToken.transfer(msg.sender, newClaimAmount), "Transfer failed"); emit Claimed(msg.sender, newClaimAmount, totalAmount); } function updateMerkleRoot(bytes32 _newMerkleRoot) external onlyOwner { merkleRoot = _newMerkleRoot; } function withdrawTokens(address to, uint256 amount) external onlyOwner { require(olaToken.transfer(to, amount), "Transfer failed"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/Hashes.sol) pragma solidity ^0.8.20; /** * @dev Library of standard hash functions. * * _Available since v5.1._ */ library Hashes { /** * @dev Commutative Keccak256 hash of a sorted pair of bytes32. Frequently used when working with merkle proofs. * * NOTE: Equivalent to the `standardNodeHash` in our https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. */ function commutativeKeccak256(bytes32 a, bytes32 b) internal pure returns (bytes32) { return a < b ? _efficientKeccak256(a, b) : _efficientKeccak256(b, a); } /** * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory. */ function _efficientKeccak256(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly ("memory-safe") { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/MerkleProof.sol) // This file was procedurally generated from scripts/generate/templates/MerkleProof.js. pragma solidity ^0.8.20; import {Hashes} from "./Hashes.sol"; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the Merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates Merkle trees that are safe * against this attack out of the box. * * IMPORTANT: Consider memory side-effects when using custom hashing functions * that access memory in an unsafe way. * * NOTE: This library supports proof verification for merkle trees built using * custom _commutative_ hashing functions (i.e. `H(a, b) == H(b, a)`). Proving * leaf inclusion in trees built using non-commutative hashing functions requires * additional logic that is not supported by this library. */ library MerkleProof { /** *@dev The multiproof provided is not valid. */ error MerkleProofInvalidMultiproof(); /** * @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. * * This version handles proofs in memory with the default hashing function. */ function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leaves & pre-images are assumed to be sorted. * * This version handles proofs in memory with the default hashing function. */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = Hashes.commutativeKeccak256(computedHash, proof[i]); } return computedHash; } /** * @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. * * This version handles proofs in memory with a custom hashing function. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf, function(bytes32, bytes32) view returns (bytes32) hasher ) internal view returns (bool) { return processProof(proof, leaf, hasher) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leaves & pre-images are assumed to be sorted. * * This version handles proofs in memory with a custom hashing function. */ function processProof( bytes32[] memory proof, bytes32 leaf, function(bytes32, bytes32) view returns (bytes32) hasher ) internal view returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = hasher(computedHash, proof[i]); } return computedHash; } /** * @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. * * This version handles proofs in calldata with the default hashing function. */ function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leaves & pre-images are assumed to be sorted. * * This version handles proofs in calldata with the default hashing function. */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = Hashes.commutativeKeccak256(computedHash, proof[i]); } return computedHash; } /** * @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. * * This version handles proofs in calldata with a custom hashing function. */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf, function(bytes32, bytes32) view returns (bytes32) hasher ) internal view returns (bool) { return processProofCalldata(proof, leaf, hasher) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leaves & pre-images are assumed to be sorted. * * This version handles proofs in calldata with a custom hashing function. */ function processProofCalldata( bytes32[] calldata proof, bytes32 leaf, function(bytes32, bytes32) view returns (bytes32) hasher ) internal view returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = hasher(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * This version handles multiproofs in memory with the default hashing function. * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. * * NOTE: Consider the case where `root == proof[0] && leaves.length == 0` as it will return `true`. * The `leaves` must be validated independently. See {processMultiProof}. */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * This version handles multiproofs in memory with the default hashing function. * * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * NOTE: The _empty set_ (i.e. the case where `proof.length == 1 && leaves.length == 0`) is considered a no-op, * and therefore a valid multiproof (i.e. it returns `proof[0]`). Consider disallowing this case if you're not * validating the leaves elsewhere. */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the Merkle tree. uint256 leavesLen = leaves.length; uint256 proofFlagsLen = proofFlags.length; // Check proof validity. if (leavesLen + proof.length != proofFlagsLen + 1) { revert MerkleProofInvalidMultiproof(); } // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](proofFlagsLen); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < proofFlagsLen; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = Hashes.commutativeKeccak256(a, b); } if (proofFlagsLen > 0) { if (proofPos != proof.length) { revert MerkleProofInvalidMultiproof(); } unchecked { return hashes[proofFlagsLen - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * This version handles multiproofs in memory with a custom hashing function. * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. * * NOTE: Consider the case where `root == proof[0] && leaves.length == 0` as it will return `true`. * The `leaves` must be validated independently. See {processMultiProof}. */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves, function(bytes32, bytes32) view returns (bytes32) hasher ) internal view returns (bool) { return processMultiProof(proof, proofFlags, leaves, hasher) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * This version handles multiproofs in memory with a custom hashing function. * * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * NOTE: The _empty set_ (i.e. the case where `proof.length == 1 && leaves.length == 0`) is considered a no-op, * and therefore a valid multiproof (i.e. it returns `proof[0]`). Consider disallowing this case if you're not * validating the leaves elsewhere. */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves, function(bytes32, bytes32) view returns (bytes32) hasher ) internal view returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the Merkle tree. uint256 leavesLen = leaves.length; uint256 proofFlagsLen = proofFlags.length; // Check proof validity. if (leavesLen + proof.length != proofFlagsLen + 1) { revert MerkleProofInvalidMultiproof(); } // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](proofFlagsLen); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < proofFlagsLen; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = hasher(a, b); } if (proofFlagsLen > 0) { if (proofPos != proof.length) { revert MerkleProofInvalidMultiproof(); } unchecked { return hashes[proofFlagsLen - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * This version handles multiproofs in calldata with the default hashing function. * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. * * NOTE: Consider the case where `root == proof[0] && leaves.length == 0` as it will return `true`. * The `leaves` must be validated independently. See {processMultiProofCalldata}. */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * This version handles multiproofs in calldata with the default hashing function. * * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * NOTE: The _empty set_ (i.e. the case where `proof.length == 1 && leaves.length == 0`) is considered a no-op, * and therefore a valid multiproof (i.e. it returns `proof[0]`). Consider disallowing this case if you're not * validating the leaves elsewhere. */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the Merkle tree. uint256 leavesLen = leaves.length; uint256 proofFlagsLen = proofFlags.length; // Check proof validity. if (leavesLen + proof.length != proofFlagsLen + 1) { revert MerkleProofInvalidMultiproof(); } // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](proofFlagsLen); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < proofFlagsLen; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = Hashes.commutativeKeccak256(a, b); } if (proofFlagsLen > 0) { if (proofPos != proof.length) { revert MerkleProofInvalidMultiproof(); } unchecked { return hashes[proofFlagsLen - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * This version handles multiproofs in calldata with a custom hashing function. * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. * * NOTE: Consider the case where `root == proof[0] && leaves.length == 0` as it will return `true`. * The `leaves` must be validated independently. See {processMultiProofCalldata}. */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves, function(bytes32, bytes32) view returns (bytes32) hasher ) internal view returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves, hasher) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * This version handles multiproofs in calldata with a custom hashing function. * * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * NOTE: The _empty set_ (i.e. the case where `proof.length == 1 && leaves.length == 0`) is considered a no-op, * and therefore a valid multiproof (i.e. it returns `proof[0]`). Consider disallowing this case if you're not * validating the leaves elsewhere. */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves, function(bytes32, bytes32) view returns (bytes32) hasher ) internal view returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the Merkle tree. uint256 leavesLen = leaves.length; uint256 proofFlagsLen = proofFlags.length; // Check proof validity. if (leavesLen + proof.length != proofFlagsLen + 1) { revert MerkleProofInvalidMultiproof(); } // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](proofFlagsLen); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < proofFlagsLen; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = hasher(a, b); } if (proofFlagsLen > 0) { if (proofPos != proof.length) { revert MerkleProofInvalidMultiproof(); } unchecked { return hashes[proofFlagsLen - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_olaToken","type":"address"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"newClaimAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalClaimedAmount","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":"totalAmount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"olaToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405234801561001057600080fd5b506040516111bd3803806111bd83398181016040528101906100329190610255565b80600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100a55760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161009c91906102b7565b60405180910390fd5b6100b4816100f860201b60201c565b508273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050816001819055505050506102d2565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006101ec826101c1565b9050919050565b6101fc816101e1565b811461020757600080fd5b50565b600081519050610219816101f3565b92915050565b6000819050919050565b6102328161021f565b811461023d57600080fd5b50565b60008151905061024f81610229565b92915050565b60008060006060848603121561026e5761026d6101bc565b5b600061027c8682870161020a565b935050602061028d86828701610240565b925050604061029e8682870161020a565b9150509250925092565b6102b1816101e1565b82525050565b60006020820190506102cc60008301846102a8565b92915050565b608051610ec26102fb600039600081816101be0152818161045f01526105ba0152610ec26000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c80634783f0ef116100665780634783f0ef1461011e578063715018a61461013a57806385f4404b146101445780638da5cb5b14610162578063f2fde38b1461018057610093565b806304e869031461009857806306b091f9146100c85780632eb4a7ab146100e45780632f52ebb714610102575b600080fd5b6100b260048036038101906100ad91906108ef565b61019c565b6040516100bf9190610935565b60405180910390f35b6100e260048036038101906100dd919061097c565b6101b4565b005b6100ec61029d565b6040516100f991906109d5565b60405180910390f35b61011c60048036038101906101179190610a55565b6102a3565b005b61013860048036038101906101339190610ae1565b610592565b005b6101426105a4565b005b61014c6105b8565b6040516101599190610b6d565b60405180910390f35b61016a6105dc565b6040516101779190610b97565b60405180910390f35b61019a600480360381019061019591906108ef565b610605565b005b60026020528060005260406000206000915090505481565b6101bc61068b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610217929190610bb2565b6020604051808303816000875af1158015610236573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061025a9190610c13565b610299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161029090610c9d565b60405180910390fd5b5050565b60015481565b600033846040516020016102b8929190610bb2565b604051602081830303815290604052805190602001206040516020016102de9190610cde565b604051602081830303815290604052805190602001209050610344838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060015483610712565b610383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161037a90610d45565b60405180910390fd5b6000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808511610409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161040090610db1565b60405180910390fd5b600081866104179190610e00565b905085600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016104b8929190610bb2565b6020604051808303816000875af11580156104d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104fb9190610c13565b61053a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053190610c9d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f987d620f307ff6b94d58743cb7a7509f24071586a77759b77c2d4e29f75a2f9a8288604051610582929190610e34565b60405180910390a2505050505050565b61059a61068b565b8060018190555050565b6105ac61068b565b6105b66000610729565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61060d61068b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361067f5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106769190610b97565b60405180910390fd5b61068881610729565b50565b6106936107ed565b73ffffffffffffffffffffffffffffffffffffffff166106b16105dc565b73ffffffffffffffffffffffffffffffffffffffff1614610710576106d46107ed565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107079190610b97565b60405180910390fd5b565b60008261071f85846107f5565b1490509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b60008082905060005b845181101561083a5761082b8286838151811061081e5761081d610e5d565b5b6020026020010151610845565b915080806001019150506107fe565b508091505092915050565b600081831061085d576108588284610870565b610868565b6108678383610870565b5b905092915050565b600082600052816020526040600020905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006108bc82610891565b9050919050565b6108cc816108b1565b81146108d757600080fd5b50565b6000813590506108e9816108c3565b92915050565b60006020828403121561090557610904610887565b5b6000610913848285016108da565b91505092915050565b6000819050919050565b61092f8161091c565b82525050565b600060208201905061094a6000830184610926565b92915050565b6109598161091c565b811461096457600080fd5b50565b60008135905061097681610950565b92915050565b6000806040838503121561099357610992610887565b5b60006109a1858286016108da565b92505060206109b285828601610967565b9150509250929050565b6000819050919050565b6109cf816109bc565b82525050565b60006020820190506109ea60008301846109c6565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112610a1557610a146109f0565b5b8235905067ffffffffffffffff811115610a3257610a316109f5565b5b602083019150836020820283011115610a4e57610a4d6109fa565b5b9250929050565b600080600060408486031215610a6e57610a6d610887565b5b6000610a7c86828701610967565b935050602084013567ffffffffffffffff811115610a9d57610a9c61088c565b5b610aa9868287016109ff565b92509250509250925092565b610abe816109bc565b8114610ac957600080fd5b50565b600081359050610adb81610ab5565b92915050565b600060208284031215610af757610af6610887565b5b6000610b0584828501610acc565b91505092915050565b6000819050919050565b6000610b33610b2e610b2984610891565b610b0e565b610891565b9050919050565b6000610b4582610b18565b9050919050565b6000610b5782610b3a565b9050919050565b610b6781610b4c565b82525050565b6000602082019050610b826000830184610b5e565b92915050565b610b91816108b1565b82525050565b6000602082019050610bac6000830184610b88565b92915050565b6000604082019050610bc76000830185610b88565b610bd46020830184610926565b9392505050565b60008115159050919050565b610bf081610bdb565b8114610bfb57600080fd5b50565b600081519050610c0d81610be7565b92915050565b600060208284031215610c2957610c28610887565b5b6000610c3784828501610bfe565b91505092915050565b600082825260208201905092915050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000610c87600f83610c40565b9150610c9282610c51565b602082019050919050565b60006020820190508181036000830152610cb681610c7a565b9050919050565b6000819050919050565b610cd8610cd3826109bc565b610cbd565b82525050565b6000610cea8284610cc7565b60208201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000610d2f600d83610c40565b9150610d3a82610cf9565b602082019050919050565b60006020820190508181036000830152610d5e81610d22565b9050919050565b7f4e6f206e657720746f6b656e7320746f20636c61696d00000000000000000000600082015250565b6000610d9b601683610c40565b9150610da682610d65565b602082019050919050565b60006020820190508181036000830152610dca81610d8e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610e0b8261091c565b9150610e168361091c565b9250828203905081811115610e2e57610e2d610dd1565b5b92915050565b6000604082019050610e496000830185610926565b610e566020830184610926565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122011e879bf65829d67a4740512a41517fede39333c5124a1fba4d2f9878ca0c45c64736f6c634300081b00330000000000000000000000002353f7e7b74c045a5dfbaafee5d21bfd948dc170ceb8ce12bfa4c3d92cbf30e3c3dbe5186eb9e33456adc7a13661e624593c3edb000000000000000000000000dc450a3729bb0578ba3b00f58a037d32a088cf29
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100935760003560e01c80634783f0ef116100665780634783f0ef1461011e578063715018a61461013a57806385f4404b146101445780638da5cb5b14610162578063f2fde38b1461018057610093565b806304e869031461009857806306b091f9146100c85780632eb4a7ab146100e45780632f52ebb714610102575b600080fd5b6100b260048036038101906100ad91906108ef565b61019c565b6040516100bf9190610935565b60405180910390f35b6100e260048036038101906100dd919061097c565b6101b4565b005b6100ec61029d565b6040516100f991906109d5565b60405180910390f35b61011c60048036038101906101179190610a55565b6102a3565b005b61013860048036038101906101339190610ae1565b610592565b005b6101426105a4565b005b61014c6105b8565b6040516101599190610b6d565b60405180910390f35b61016a6105dc565b6040516101779190610b97565b60405180910390f35b61019a600480360381019061019591906108ef565b610605565b005b60026020528060005260406000206000915090505481565b6101bc61068b565b7f0000000000000000000000002353f7e7b74c045a5dfbaafee5d21bfd948dc17073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610217929190610bb2565b6020604051808303816000875af1158015610236573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061025a9190610c13565b610299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161029090610c9d565b60405180910390fd5b5050565b60015481565b600033846040516020016102b8929190610bb2565b604051602081830303815290604052805190602001206040516020016102de9190610cde565b604051602081830303815290604052805190602001209050610344838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060015483610712565b610383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161037a90610d45565b60405180910390fd5b6000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808511610409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161040090610db1565b60405180910390fd5b600081866104179190610e00565b905085600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0000000000000000000000002353f7e7b74c045a5dfbaafee5d21bfd948dc17073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016104b8929190610bb2565b6020604051808303816000875af11580156104d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104fb9190610c13565b61053a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053190610c9d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f987d620f307ff6b94d58743cb7a7509f24071586a77759b77c2d4e29f75a2f9a8288604051610582929190610e34565b60405180910390a2505050505050565b61059a61068b565b8060018190555050565b6105ac61068b565b6105b66000610729565b565b7f0000000000000000000000002353f7e7b74c045a5dfbaafee5d21bfd948dc17081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61060d61068b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361067f5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106769190610b97565b60405180910390fd5b61068881610729565b50565b6106936107ed565b73ffffffffffffffffffffffffffffffffffffffff166106b16105dc565b73ffffffffffffffffffffffffffffffffffffffff1614610710576106d46107ed565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107079190610b97565b60405180910390fd5b565b60008261071f85846107f5565b1490509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b60008082905060005b845181101561083a5761082b8286838151811061081e5761081d610e5d565b5b6020026020010151610845565b915080806001019150506107fe565b508091505092915050565b600081831061085d576108588284610870565b610868565b6108678383610870565b5b905092915050565b600082600052816020526040600020905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006108bc82610891565b9050919050565b6108cc816108b1565b81146108d757600080fd5b50565b6000813590506108e9816108c3565b92915050565b60006020828403121561090557610904610887565b5b6000610913848285016108da565b91505092915050565b6000819050919050565b61092f8161091c565b82525050565b600060208201905061094a6000830184610926565b92915050565b6109598161091c565b811461096457600080fd5b50565b60008135905061097681610950565b92915050565b6000806040838503121561099357610992610887565b5b60006109a1858286016108da565b92505060206109b285828601610967565b9150509250929050565b6000819050919050565b6109cf816109bc565b82525050565b60006020820190506109ea60008301846109c6565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112610a1557610a146109f0565b5b8235905067ffffffffffffffff811115610a3257610a316109f5565b5b602083019150836020820283011115610a4e57610a4d6109fa565b5b9250929050565b600080600060408486031215610a6e57610a6d610887565b5b6000610a7c86828701610967565b935050602084013567ffffffffffffffff811115610a9d57610a9c61088c565b5b610aa9868287016109ff565b92509250509250925092565b610abe816109bc565b8114610ac957600080fd5b50565b600081359050610adb81610ab5565b92915050565b600060208284031215610af757610af6610887565b5b6000610b0584828501610acc565b91505092915050565b6000819050919050565b6000610b33610b2e610b2984610891565b610b0e565b610891565b9050919050565b6000610b4582610b18565b9050919050565b6000610b5782610b3a565b9050919050565b610b6781610b4c565b82525050565b6000602082019050610b826000830184610b5e565b92915050565b610b91816108b1565b82525050565b6000602082019050610bac6000830184610b88565b92915050565b6000604082019050610bc76000830185610b88565b610bd46020830184610926565b9392505050565b60008115159050919050565b610bf081610bdb565b8114610bfb57600080fd5b50565b600081519050610c0d81610be7565b92915050565b600060208284031215610c2957610c28610887565b5b6000610c3784828501610bfe565b91505092915050565b600082825260208201905092915050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000610c87600f83610c40565b9150610c9282610c51565b602082019050919050565b60006020820190508181036000830152610cb681610c7a565b9050919050565b6000819050919050565b610cd8610cd3826109bc565b610cbd565b82525050565b6000610cea8284610cc7565b60208201915081905092915050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000610d2f600d83610c40565b9150610d3a82610cf9565b602082019050919050565b60006020820190508181036000830152610d5e81610d22565b9050919050565b7f4e6f206e657720746f6b656e7320746f20636c61696d00000000000000000000600082015250565b6000610d9b601683610c40565b9150610da682610d65565b602082019050919050565b60006020820190508181036000830152610dca81610d8e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610e0b8261091c565b9150610e168361091c565b9250828203905081811115610e2e57610e2d610dd1565b5b92915050565b6000604082019050610e496000830185610926565b610e566020830184610926565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122011e879bf65829d67a4740512a41517fede39333c5124a1fba4d2f9878ca0c45c64736f6c634300081b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002353f7e7b74c045a5dfbaafee5d21bfd948dc170ceb8ce12bfa4c3d92cbf30e3c3dbe5186eb9e33456adc7a13661e624593c3edb000000000000000000000000dc450a3729bb0578ba3b00f58a037d32a088cf29
-----Decoded View---------------
Arg [0] : _olaToken (address): 0x2353F7e7b74C045a5dfbaaFeE5d21BFD948dC170
Arg [1] : _merkleRoot (bytes32): 0xceb8ce12bfa4c3d92cbf30e3c3dbe5186eb9e33456adc7a13661e624593c3edb
Arg [2] : initialOwner (address): 0xDc450A3729bb0578BA3B00f58a037D32a088cf29
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000002353f7e7b74c045a5dfbaafee5d21bfd948dc170
Arg [1] : ceb8ce12bfa4c3d92cbf30e3c3dbe5186eb9e33456adc7a13661e624593c3edb
Arg [2] : 000000000000000000000000dc450a3729bb0578ba3b00f58a037d32a088cf29
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
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.