Overview
BERA Balance
BERA Value
$1,643,062.44 (@ $3.68/BERA)More Info
Private Name Tags
ContractCreator
Latest 7 from a total of 7 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 2818714 | 28 days ago | IN | 2.59998458 BERA | 0.00000002 | ||||
Transfer Ownersh... | 2818038 | 28 days ago | IN | 0 BERA | 0.00000005 | ||||
Claim | 2817892 | 28 days ago | IN | 0 BERA | 0.0000001 | ||||
Set Fee | 2817679 | 28 days ago | IN | 0 BERA | 0.00000016 | ||||
Transfer | 2817499 | 28 days ago | IN | 2 BERA | 0.00000007 | ||||
Toggle Active | 2817483 | 28 days ago | IN | 0 BERA | 0.00000024 | ||||
Set Claim Root | 2817474 | 28 days ago | IN | 0 BERA | 0.00000028 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
3957141 | 2 days ago | 95.069 BERA | ||||
3957141 | 2 days ago | 0.001 BERA | ||||
3755660 | 7 days ago | 670.289 BERA | ||||
3755660 | 7 days ago | 0.001 BERA | ||||
3752594 | 7 days ago | 213.899 BERA | ||||
3752594 | 7 days ago | 0.001 BERA | ||||
3752401 | 7 days ago | 213.899 BERA | ||||
3752401 | 7 days ago | 0.001 BERA | ||||
3695079 | 8 days ago | 164,198.659 BERA | ||||
3695079 | 8 days ago | 0.001 BERA | ||||
3635440 | 10 days ago | 345.479 BERA | ||||
3635440 | 10 days ago | 0.001 BERA | ||||
3578596 | 11 days ago | 80.799 BERA | ||||
3578596 | 11 days ago | 0.001 BERA | ||||
3544698 | 12 days ago | 188.439 BERA | ||||
3544698 | 12 days ago | 0.001 BERA | ||||
3479606 | 13 days ago | 173.959 BERA | ||||
3479606 | 13 days ago | 0.001 BERA | ||||
3390362 | 15 days ago | 348.989 BERA | ||||
3390362 | 15 days ago | 0.001 BERA | ||||
3342761 | 17 days ago | 16,419.869 BERA | ||||
3342761 | 17 days ago | 0.001 BERA | ||||
3305024 | 17 days ago | 1,877.679 BERA | ||||
3305024 | 17 days ago | 0.001 BERA | ||||
3239829 | 19 days ago | 131.579 BERA |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Distributor1
Compiler Version
v0.8.25+commit.b61c2a91
Optimization Enabled:
Yes with 200 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.25; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@solady/utils/MerkleProofLib.sol"; import "@solady/utils/ECDSA.sol"; import "@openzeppelin/contracts/access/Ownable2Step.sol"; import "./Transferable.sol"; // ____ _ _ // / ___| (_) __ _ _ _ ___ // | | | | |/ _` | | | |/ _ \ // | |___| | | (_| | |_| | __/ // \____|_|_|\__, |\__,_|\___| _ _ // | _ \(_)___| |_|_ __(_) |__ _ _| |_ ___ _ __ / | // | | | | / __| __| '__| | '_ \| | | | __/ _ \| '__| | | // | |_| | \__ \ |_| | | | |_) | |_| | || (_) | | | | // |____/|_|___/\__|_| |_|_.__/ \__,_|\__\___/|_| |_| /// @title Distributor1 /// @notice Clique Airdrop contract (Mekle + ECDSA + Paymaster) /// @author Clique (@Clique2046) /// @author Eillo (@0xEillo) contract Distributor1 is Ownable2Step, Transferable { // address signing the claims address public signer; // root of the merkle tree bytes32 public claimRoot; // whether the airdrop is active bool public active = false; // fee to be paid to the paymaster uint256 public fee; // mapping of addresses to whether they have claimed mapping(address => bool) public claimed; // errors error InsufficientBalance(); error AlreadyClaimed(); error InvalidSignature(); error InvalidMerkleProof(); error NotActive(); error InsufficientFee(); error MerkleRootNotSet(); event ClaimRootUpdated(bytes32 indexed claimRoot); event FeeUpdated(uint256 indexed fee); event ContractActivated(bool indexed active); event SignerUpdated(address indexed signer); event AirdropClaimed(address indexed paymaster, uint256 amount, address indexed onBehalfOf); /// @notice Construct a new Claim contract /// @param _signer address that can sign messages /// @param _token address of the token that will be claimed constructor(address _signer, address _token) Ownable(msg.sender) Transferable(_token) { signer = _signer; } /// @notice Set the signer /// @param _signer address that can sign messages function setSigner(address _signer) external onlyOwner { signer = _signer; emit SignerUpdated(_signer); } /// @notice Set the fee /// @param _fee fee to be paid to the paymaster function setFee(uint256 _fee) external onlyOwner { fee = _fee; emit FeeUpdated(_fee); } /// @notice Set the claim root /// @param _claimRoot root of the merkle tree function setClaimRoot(bytes32 _claimRoot) external onlyOwner { claimRoot = _claimRoot; emit ClaimRootUpdated(_claimRoot); } /// @notice Toggle the active state function toggleActive() external onlyOwner { if (claimRoot == bytes32(0)) revert MerkleRootNotSet(); active = !active; emit ContractActivated(active); } /// @notice Claim airdrop tokens. Checks for both merkle proof // and signature validation /// @param _proof merkle proof of the claim /// @param _signature signature of the claim /// @param _amount amount of tokens to claim /// @param _onBehalfOf address to claim on behalf of function claim(bytes32[] calldata _proof, bytes calldata _signature, uint256 _amount, address _onBehalfOf) external { if (balance() < _amount) { revert InsufficientBalance(); } if (claimed[_onBehalfOf]) revert AlreadyClaimed(); if (!active) revert NotActive(); claimed[_onBehalfOf] = true; _rootCheck(_proof, _amount, _onBehalfOf); _signatureCheck(_amount, _signature, _onBehalfOf); uint256 amount = _amount; if (tx.origin != _onBehalfOf) { uint256 _fee = fee; require(_fee != 0, "Gas fee not set"); amount -= _fee; transfer(tx.origin, _fee); } transfer(_onBehalfOf, amount); emit AirdropClaimed(tx.origin, amount, _onBehalfOf); } /// @notice Internal function to check the merkle proof /// @param _proof merkle proof of the claim /// @param _amount amount of tokens to claim /// @param _account address to check function _rootCheck(bytes32[] calldata _proof, uint256 _amount, address _account) internal view { bytes32 leaf = keccak256(abi.encodePacked(_account, _amount)); if (!MerkleProofLib.verify(_proof, claimRoot, leaf)) { revert InvalidMerkleProof(); } } /// @notice Internal function to check the signature /// @param _amount amount of tokens to claim /// @param _signature signature of the claim /// @param _account address to check function _signatureCheck(uint256 _amount, bytes calldata _signature, address _account) internal view { if (_signature.length == 0) revert InvalidSignature(); bytes32 messageHash = keccak256(abi.encodePacked(_account, _amount, address(this), block.chainid)); bytes32 prefixedHash = ECDSA.toEthSignedMessageHash(messageHash); address recoveredSigner = ECDSA.recoverCalldata(prefixedHash, _signature); if (recoveredSigner != signer) revert InvalidSignature(); } function withdraw(uint256 amount) external override onlyOwner { transfer(msg.sender, amount); } }
// 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 pragma solidity ^0.8.4; /// @notice Gas optimized verification of proof of inclusion for a leaf in a Merkle tree. /// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/MerkleProofLib.sol) /// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/MerkleProofLib.sol) /// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/MerkleProof.sol) library MerkleProofLib { /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* MERKLE PROOF VERIFICATION OPERATIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Returns whether `leaf` exists in the Merkle tree with `root`, given `proof`. function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool isValid) { /// @solidity memory-safe-assembly assembly { if mload(proof) { // Initialize `offset` to the offset of `proof` elements in memory. let offset := add(proof, 0x20) // Left shift by 5 is equivalent to multiplying by 0x20. let end := add(offset, shl(5, mload(proof))) // Iterate over proof elements to compute root hash. for {} 1 {} { // Slot of `leaf` in scratch space. // If the condition is true: 0x20, otherwise: 0x00. let scratch := shl(5, gt(leaf, mload(offset))) // Store elements to hash contiguously in scratch space. // Scratch space is 64 bytes (0x00 - 0x3f) and both elements are 32 bytes. mstore(scratch, leaf) mstore(xor(scratch, 0x20), mload(offset)) // Reuse `leaf` to store the hash to reduce stack operations. leaf := keccak256(0x00, 0x40) offset := add(offset, 0x20) if iszero(lt(offset, end)) { break } } } isValid := eq(leaf, root) } } /// @dev Returns whether `leaf` exists in the Merkle tree with `root`, given `proof`. function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool isValid) { /// @solidity memory-safe-assembly assembly { if proof.length { // Left shift by 5 is equivalent to multiplying by 0x20. let end := add(proof.offset, shl(5, proof.length)) // Initialize `offset` to the offset of `proof` in the calldata. let offset := proof.offset // Iterate over proof elements to compute root hash. for {} 1 {} { // Slot of `leaf` in scratch space. // If the condition is true: 0x20, otherwise: 0x00. let scratch := shl(5, gt(leaf, calldataload(offset))) // Store elements to hash contiguously in scratch space. // Scratch space is 64 bytes (0x00 - 0x3f) and both elements are 32 bytes. mstore(scratch, leaf) mstore(xor(scratch, 0x20), calldataload(offset)) // Reuse `leaf` to store the hash to reduce stack operations. leaf := keccak256(0x00, 0x40) offset := add(offset, 0x20) if iszero(lt(offset, end)) { break } } } isValid := eq(leaf, root) } } /// @dev Returns whether all `leaves` exist in the Merkle tree with `root`, /// given `proof` and `flags`. /// /// Note: /// - Breaking the invariant `flags.length == (leaves.length - 1) + proof.length` /// will always return false. /// - The sum of the lengths of `proof` and `leaves` must never overflow. /// - Any non-zero word in the `flags` array is treated as true. /// - The memory offset of `proof` must be non-zero /// (i.e. `proof` is not pointing to the scratch space). function verifyMultiProof( bytes32[] memory proof, bytes32 root, bytes32[] memory leaves, bool[] memory flags ) internal pure returns (bool isValid) { // Rebuilds the root by consuming and producing values on a queue. // The queue starts with the `leaves` array, and goes into a `hashes` array. // After the process, the last element on the queue is verified // to be equal to the `root`. // // The `flags` array denotes whether the sibling // should be popped from the queue (`flag == true`), or // should be popped from the `proof` (`flag == false`). /// @solidity memory-safe-assembly assembly { // Cache the lengths of the arrays. let leavesLength := mload(leaves) let proofLength := mload(proof) let flagsLength := mload(flags) // Advance the pointers of the arrays to point to the data. leaves := add(0x20, leaves) proof := add(0x20, proof) flags := add(0x20, flags) // If the number of flags is correct. for {} eq(add(leavesLength, proofLength), add(flagsLength, 1)) {} { // For the case where `proof.length + leaves.length == 1`. if iszero(flagsLength) { // `isValid = (proof.length == 1 ? proof[0] : leaves[0]) == root`. isValid := eq(mload(xor(leaves, mul(xor(proof, leaves), proofLength))), root) break } // The required final proof offset if `flagsLength` is not zero, otherwise zero. let proofEnd := add(proof, shl(5, proofLength)) // We can use the free memory space for the queue. // We don't need to allocate, since the queue is temporary. let hashesFront := mload(0x40) // Copy the leaves into the hashes. // Sometimes, a little memory expansion costs less than branching. // Should cost less, even with a high free memory offset of 0x7d00. leavesLength := shl(5, leavesLength) for { let i := 0 } iszero(eq(i, leavesLength)) { i := add(i, 0x20) } { mstore(add(hashesFront, i), mload(add(leaves, i))) } // Compute the back of the hashes. let hashesBack := add(hashesFront, leavesLength) // This is the end of the memory for the queue. // We recycle `flagsLength` to save on stack variables (sometimes save gas). flagsLength := add(hashesBack, shl(5, flagsLength)) for {} 1 {} { // Pop from `hashes`. let a := mload(hashesFront) // Pop from `hashes`. let b := mload(add(hashesFront, 0x20)) hashesFront := add(hashesFront, 0x40) // If the flag is false, load the next proof, // else, pops from the queue. if iszero(mload(flags)) { // Loads the next proof. b := mload(proof) proof := add(proof, 0x20) // Unpop from `hashes`. hashesFront := sub(hashesFront, 0x20) } // Advance to the next flag. flags := add(flags, 0x20) // Slot of `a` in scratch space. // If the condition is true: 0x20, otherwise: 0x00. let scratch := shl(5, gt(a, b)) // Hash the scratch space and push the result onto the queue. mstore(scratch, a) mstore(xor(scratch, 0x20), b) mstore(hashesBack, keccak256(0x00, 0x40)) hashesBack := add(hashesBack, 0x20) if iszero(lt(hashesBack, flagsLength)) { break } } isValid := and( // Checks if the last value in the queue is same as the root. eq(mload(sub(hashesBack, 0x20)), root), // And whether all the proofs are used, if required. eq(proofEnd, proof) ) break } } } /// @dev Returns whether all `leaves` exist in the Merkle tree with `root`, /// given `proof` and `flags`. /// /// Note: /// - Breaking the invariant `flags.length == (leaves.length - 1) + proof.length` /// will always return false. /// - Any non-zero word in the `flags` array is treated as true. /// - The calldata offset of `proof` must be non-zero /// (i.e. `proof` is from a regular Solidity function with a 4-byte selector). function verifyMultiProofCalldata( bytes32[] calldata proof, bytes32 root, bytes32[] calldata leaves, bool[] calldata flags ) internal pure returns (bool isValid) { // Rebuilds the root by consuming and producing values on a queue. // The queue starts with the `leaves` array, and goes into a `hashes` array. // After the process, the last element on the queue is verified // to be equal to the `root`. // // The `flags` array denotes whether the sibling // should be popped from the queue (`flag == true`), or // should be popped from the `proof` (`flag == false`). /// @solidity memory-safe-assembly assembly { // If the number of flags is correct. for {} eq(add(leaves.length, proof.length), add(flags.length, 1)) {} { // For the case where `proof.length + leaves.length == 1`. if iszero(flags.length) { // `isValid = (proof.length == 1 ? proof[0] : leaves[0]) == root`. // forgefmt: disable-next-item isValid := eq( calldataload( xor(leaves.offset, mul(xor(proof.offset, leaves.offset), proof.length)) ), root ) break } // The required final proof offset if `flagsLength` is not zero, otherwise zero. let proofEnd := add(proof.offset, shl(5, proof.length)) // We can use the free memory space for the queue. // We don't need to allocate, since the queue is temporary. let hashesFront := mload(0x40) // Copy the leaves into the hashes. // Sometimes, a little memory expansion costs less than branching. // Should cost less, even with a high free memory offset of 0x7d00. calldatacopy(hashesFront, leaves.offset, shl(5, leaves.length)) // Compute the back of the hashes. let hashesBack := add(hashesFront, shl(5, leaves.length)) // This is the end of the memory for the queue. // We recycle `flagsLength` to save on stack variables (sometimes save gas). flags.length := add(hashesBack, shl(5, flags.length)) // We don't need to make a copy of `proof.offset` or `flags.offset`, // as they are pass-by-value (this trick may not always save gas). for {} 1 {} { // Pop from `hashes`. let a := mload(hashesFront) // Pop from `hashes`. let b := mload(add(hashesFront, 0x20)) hashesFront := add(hashesFront, 0x40) // If the flag is false, load the next proof, // else, pops from the queue. if iszero(calldataload(flags.offset)) { // Loads the next proof. b := calldataload(proof.offset) proof.offset := add(proof.offset, 0x20) // Unpop from `hashes`. hashesFront := sub(hashesFront, 0x20) } // Advance to the next flag offset. flags.offset := add(flags.offset, 0x20) // Slot of `a` in scratch space. // If the condition is true: 0x20, otherwise: 0x00. let scratch := shl(5, gt(a, b)) // Hash the scratch space and push the result onto the queue. mstore(scratch, a) mstore(xor(scratch, 0x20), b) mstore(hashesBack, keccak256(0x00, 0x40)) hashesBack := add(hashesBack, 0x20) if iszero(lt(hashesBack, flags.length)) { break } } isValid := and( // Checks if the last value in the queue is same as the root. eq(mload(sub(hashesBack, 0x20)), root), // And whether all the proofs are used, if required. eq(proofEnd, proof.offset) ) break } } } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* EMPTY CALLDATA HELPERS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Returns an empty calldata bytes32 array. function emptyProof() internal pure returns (bytes32[] calldata proof) { /// @solidity memory-safe-assembly assembly { proof.length := 0 } } /// @dev Returns an empty calldata bytes32 array. function emptyLeaves() internal pure returns (bytes32[] calldata leaves) { /// @solidity memory-safe-assembly assembly { leaves.length := 0 } } /// @dev Returns an empty calldata bool array. function emptyFlags() internal pure returns (bool[] calldata flags) { /// @solidity memory-safe-assembly assembly { flags.length := 0 } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /// @notice Gas optimized ECDSA wrapper. /// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/ECDSA.sol) /// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/ECDSA.sol) /// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/ECDSA.sol) /// /// @dev Note: /// - The recovery functions use the ecrecover precompile (0x1). /// - As of Solady version 0.0.68, the `recover` variants will revert upon recovery failure. /// This is for more safety by default. /// Use the `tryRecover` variants if you need to get the zero address back /// upon recovery failure instead. /// - As of Solady version 0.0.134, all `bytes signature` variants accept both /// regular 65-byte `(r, s, v)` and EIP-2098 `(r, vs)` short form signatures. /// See: https://eips.ethereum.org/EIPS/eip-2098 /// This is for calldata efficiency on smart accounts prevalent on L2s. /// /// WARNING! Do NOT directly use signatures as unique identifiers: /// - The recovery operations do NOT check if a signature is non-malleable. /// - Use a nonce in the digest to prevent replay attacks on the same contract. /// - Use EIP-712 for the digest to prevent replay attacks across different chains and contracts. /// EIP-712 also enables readable signing of typed data for better user safety. /// - If you need a unique hash from a signature, please use the `canonicalHash` functions. library ECDSA { /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* CONSTANTS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev The order of the secp256k1 elliptic curve. uint256 internal constant N = 0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141; /// @dev `N/2 + 1`. Used for checking the malleability of the signature. uint256 private constant _HALF_N_PLUS_1 = 0x7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a1; /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* CUSTOM ERRORS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev The signature is invalid. error InvalidSignature(); /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* RECOVERY OPERATIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Recovers the signer's address from a message digest `hash`, and the `signature`. function recover(bytes32 hash, bytes memory signature) internal view returns (address result) { /// @solidity memory-safe-assembly assembly { for { let m := mload(0x40) } 1 { mstore(0x00, 0x8baa579f) // `InvalidSignature()`. revert(0x1c, 0x04) } { switch mload(signature) case 64 { let vs := mload(add(signature, 0x40)) mstore(0x20, add(shr(255, vs), 27)) // `v`. mstore(0x60, shr(1, shl(1, vs))) // `s`. } case 65 { mstore(0x20, byte(0, mload(add(signature, 0x60)))) // `v`. mstore(0x60, mload(add(signature, 0x40))) // `s`. } default { continue } mstore(0x00, hash) mstore(0x40, mload(add(signature, 0x20))) // `r`. result := mload(staticcall(gas(), 1, 0x00, 0x80, 0x01, 0x20)) mstore(0x60, 0) // Restore the zero slot. mstore(0x40, m) // Restore the free memory pointer. // `returndatasize()` will be `0x20` upon success, and `0x00` otherwise. if returndatasize() { break } } } } /// @dev Recovers the signer's address from a message digest `hash`, and the `signature`. function recoverCalldata(bytes32 hash, bytes calldata signature) internal view returns (address result) { /// @solidity memory-safe-assembly assembly { for { let m := mload(0x40) } 1 { mstore(0x00, 0x8baa579f) // `InvalidSignature()`. revert(0x1c, 0x04) } { switch signature.length case 64 { let vs := calldataload(add(signature.offset, 0x20)) mstore(0x20, add(shr(255, vs), 27)) // `v`. mstore(0x40, calldataload(signature.offset)) // `r`. mstore(0x60, shr(1, shl(1, vs))) // `s`. } case 65 { mstore(0x20, byte(0, calldataload(add(signature.offset, 0x40)))) // `v`. calldatacopy(0x40, signature.offset, 0x40) // Copy `r` and `s`. } default { continue } mstore(0x00, hash) result := mload(staticcall(gas(), 1, 0x00, 0x80, 0x01, 0x20)) mstore(0x60, 0) // Restore the zero slot. mstore(0x40, m) // Restore the free memory pointer. // `returndatasize()` will be `0x20` upon success, and `0x00` otherwise. if returndatasize() { break } } } } /// @dev Recovers the signer's address from a message digest `hash`, /// and the EIP-2098 short form signature defined by `r` and `vs`. function recover(bytes32 hash, bytes32 r, bytes32 vs) internal view returns (address result) { /// @solidity memory-safe-assembly assembly { let m := mload(0x40) // Cache the free memory pointer. mstore(0x00, hash) mstore(0x20, add(shr(255, vs), 27)) // `v`. mstore(0x40, r) mstore(0x60, shr(1, shl(1, vs))) // `s`. result := mload(staticcall(gas(), 1, 0x00, 0x80, 0x01, 0x20)) // `returndatasize()` will be `0x20` upon success, and `0x00` otherwise. if iszero(returndatasize()) { mstore(0x00, 0x8baa579f) // `InvalidSignature()`. revert(0x1c, 0x04) } mstore(0x60, 0) // Restore the zero slot. mstore(0x40, m) // Restore the free memory pointer. } } /// @dev Recovers the signer's address from a message digest `hash`, /// and the signature defined by `v`, `r`, `s`. function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal view returns (address result) { /// @solidity memory-safe-assembly assembly { let m := mload(0x40) // Cache the free memory pointer. mstore(0x00, hash) mstore(0x20, and(v, 0xff)) mstore(0x40, r) mstore(0x60, s) result := mload(staticcall(gas(), 1, 0x00, 0x80, 0x01, 0x20)) // `returndatasize()` will be `0x20` upon success, and `0x00` otherwise. if iszero(returndatasize()) { mstore(0x00, 0x8baa579f) // `InvalidSignature()`. revert(0x1c, 0x04) } mstore(0x60, 0) // Restore the zero slot. mstore(0x40, m) // Restore the free memory pointer. } } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* TRY-RECOVER OPERATIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ // WARNING! // These functions will NOT revert upon recovery failure. // Instead, they will return the zero address upon recovery failure. // It is critical that the returned address is NEVER compared against // a zero address (e.g. an uninitialized address variable). /// @dev Recovers the signer's address from a message digest `hash`, and the `signature`. function tryRecover(bytes32 hash, bytes memory signature) internal view returns (address result) { /// @solidity memory-safe-assembly assembly { for { let m := mload(0x40) } 1 {} { switch mload(signature) case 64 { let vs := mload(add(signature, 0x40)) mstore(0x20, add(shr(255, vs), 27)) // `v`. mstore(0x60, shr(1, shl(1, vs))) // `s`. } case 65 { mstore(0x20, byte(0, mload(add(signature, 0x60)))) // `v`. mstore(0x60, mload(add(signature, 0x40))) // `s`. } default { break } mstore(0x00, hash) mstore(0x40, mload(add(signature, 0x20))) // `r`. pop(staticcall(gas(), 1, 0x00, 0x80, 0x40, 0x20)) mstore(0x60, 0) // Restore the zero slot. // `returndatasize()` will be `0x20` upon success, and `0x00` otherwise. result := mload(xor(0x60, returndatasize())) mstore(0x40, m) // Restore the free memory pointer. break } } } /// @dev Recovers the signer's address from a message digest `hash`, and the `signature`. function tryRecoverCalldata(bytes32 hash, bytes calldata signature) internal view returns (address result) { /// @solidity memory-safe-assembly assembly { for { let m := mload(0x40) } 1 {} { switch signature.length case 64 { let vs := calldataload(add(signature.offset, 0x20)) mstore(0x20, add(shr(255, vs), 27)) // `v`. mstore(0x40, calldataload(signature.offset)) // `r`. mstore(0x60, shr(1, shl(1, vs))) // `s`. } case 65 { mstore(0x20, byte(0, calldataload(add(signature.offset, 0x40)))) // `v`. calldatacopy(0x40, signature.offset, 0x40) // Copy `r` and `s`. } default { break } mstore(0x00, hash) pop(staticcall(gas(), 1, 0x00, 0x80, 0x40, 0x20)) mstore(0x60, 0) // Restore the zero slot. // `returndatasize()` will be `0x20` upon success, and `0x00` otherwise. result := mload(xor(0x60, returndatasize())) mstore(0x40, m) // Restore the free memory pointer. break } } } /// @dev Recovers the signer's address from a message digest `hash`, /// and the EIP-2098 short form signature defined by `r` and `vs`. function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal view returns (address result) { /// @solidity memory-safe-assembly assembly { let m := mload(0x40) // Cache the free memory pointer. mstore(0x00, hash) mstore(0x20, add(shr(255, vs), 27)) // `v`. mstore(0x40, r) mstore(0x60, shr(1, shl(1, vs))) // `s`. pop(staticcall(gas(), 1, 0x00, 0x80, 0x40, 0x20)) mstore(0x60, 0) // Restore the zero slot. // `returndatasize()` will be `0x20` upon success, and `0x00` otherwise. result := mload(xor(0x60, returndatasize())) mstore(0x40, m) // Restore the free memory pointer. } } /// @dev Recovers the signer's address from a message digest `hash`, /// and the signature defined by `v`, `r`, `s`. function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal view returns (address result) { /// @solidity memory-safe-assembly assembly { let m := mload(0x40) // Cache the free memory pointer. mstore(0x00, hash) mstore(0x20, and(v, 0xff)) mstore(0x40, r) mstore(0x60, s) pop(staticcall(gas(), 1, 0x00, 0x80, 0x40, 0x20)) mstore(0x60, 0) // Restore the zero slot. // `returndatasize()` will be `0x20` upon success, and `0x00` otherwise. result := mload(xor(0x60, returndatasize())) mstore(0x40, m) // Restore the free memory pointer. } } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* HASHING OPERATIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Returns an Ethereum Signed Message, created from a `hash`. /// This produces a hash corresponding to the one signed with the /// [`eth_sign`](https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign) /// JSON-RPC method as part of EIP-191. function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 result) { /// @solidity memory-safe-assembly assembly { mstore(0x20, hash) // Store into scratch space for keccak256. mstore(0x00, "\x00\x00\x00\x00\x19Ethereum Signed Message:\n32") // 28 bytes. result := keccak256(0x04, 0x3c) // `32 * 2 - (32 - 28) = 60 = 0x3c`. } } /// @dev Returns an Ethereum Signed Message, created from `s`. /// This produces a hash corresponding to the one signed with the /// [`eth_sign`](https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign) /// JSON-RPC method as part of EIP-191. /// Note: Supports lengths of `s` up to 999999 bytes. function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32 result) { /// @solidity memory-safe-assembly assembly { let sLength := mload(s) let o := 0x20 mstore(o, "\x19Ethereum Signed Message:\n") // 26 bytes, zero-right-padded. mstore(0x00, 0x00) // Convert the `s.length` to ASCII decimal representation: `base10(s.length)`. for { let temp := sLength } 1 {} { o := sub(o, 1) mstore8(o, add(48, mod(temp, 10))) temp := div(temp, 10) if iszero(temp) { break } } let n := sub(0x3a, o) // Header length: `26 + 32 - o`. // Throw an out-of-offset error (consumes all gas) if the header exceeds 32 bytes. returndatacopy(returndatasize(), returndatasize(), gt(n, 0x20)) mstore(s, or(mload(0x00), mload(n))) // Temporarily store the header. result := keccak256(add(s, sub(0x20, n)), add(n, sLength)) mstore(s, sLength) // Restore the length. } } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* CANONICAL HASH FUNCTIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ // The following functions returns the hash of the signature in it's canonicalized format, // which is the 65-byte `abi.encodePacked(r, s, uint8(v))`, where `v` is either 27 or 28. // If `s` is greater than `N / 2` then it will be converted to `N - s` // and the `v` value will be flipped. // If the signature has an invalid length, or if `v` is invalid, // a uniquely corrupt hash will be returned. // These functions are useful for "poor-mans-VRF". /// @dev Returns the canonical hash of `signature`. function canonicalHash(bytes memory signature) internal pure returns (bytes32 result) { // @solidity memory-safe-assembly assembly { let l := mload(signature) for {} 1 {} { mstore(0x00, mload(add(signature, 0x20))) // `r`. let s := mload(add(signature, 0x40)) let v := mload(add(signature, 0x41)) if eq(l, 64) { v := add(shr(255, s), 27) s := shr(1, shl(1, s)) } if iszero(lt(s, _HALF_N_PLUS_1)) { v := xor(v, 7) s := sub(N, s) } mstore(0x21, v) mstore(0x20, s) result := keccak256(0x00, 0x41) mstore(0x21, 0) // Restore the overwritten part of the free memory pointer. break } // If the length is neither 64 nor 65, return a uniquely corrupted hash. if iszero(lt(sub(l, 64), 2)) { // `bytes4(keccak256("InvalidSignatureLength"))`. result := xor(keccak256(add(signature, 0x20), l), 0xd62f1ab2) } } } /// @dev Returns the canonical hash of `signature`. function canonicalHashCalldata(bytes calldata signature) internal pure returns (bytes32 result) { // @solidity memory-safe-assembly assembly { for {} 1 {} { mstore(0x00, calldataload(signature.offset)) // `r`. let s := calldataload(add(signature.offset, 0x20)) let v := calldataload(add(signature.offset, 0x21)) if eq(signature.length, 64) { v := add(shr(255, s), 27) s := shr(1, shl(1, s)) } if iszero(lt(s, _HALF_N_PLUS_1)) { v := xor(v, 7) s := sub(N, s) } mstore(0x21, v) mstore(0x20, s) result := keccak256(0x00, 0x41) mstore(0x21, 0) // Restore the overwritten part of the free memory pointer. break } // If the length is neither 64 nor 65, return a uniquely corrupted hash. if iszero(lt(sub(signature.length, 64), 2)) { calldatacopy(mload(0x40), signature.offset, signature.length) // `bytes4(keccak256("InvalidSignatureLength"))`. result := xor(keccak256(mload(0x40), signature.length), 0xd62f1ab2) } } } /// @dev Returns the canonical hash of `signature`. function canonicalHash(bytes32 r, bytes32 vs) internal pure returns (bytes32 result) { // @solidity memory-safe-assembly assembly { mstore(0x00, r) // `r`. let v := add(shr(255, vs), 27) let s := shr(1, shl(1, vs)) mstore(0x21, v) mstore(0x20, s) result := keccak256(0x00, 0x41) mstore(0x21, 0) // Restore the overwritten part of the free memory pointer. } } /// @dev Returns the canonical hash of `signature`. function canonicalHash(uint8 v, bytes32 r, bytes32 s) internal pure returns (bytes32 result) { // @solidity memory-safe-assembly assembly { mstore(0x00, r) // `r`. if iszero(lt(s, _HALF_N_PLUS_1)) { v := xor(v, 7) s := sub(N, s) } mstore(0x21, v) mstore(0x20, s) result := keccak256(0x00, 0x41) mstore(0x21, 0) // Restore the overwritten part of the free memory pointer. } } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* EMPTY CALLDATA HELPERS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Returns an empty calldata bytes. function emptySignature() internal pure returns (bytes calldata signature) { /// @solidity memory-safe-assembly assembly { signature.length := 0 } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (access/Ownable2Step.sol) pragma solidity ^0.8.20; import {Ownable} from "./Ownable.sol"; /** * @dev Contract module which provides access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This extension of the {Ownable} contract includes a two-step mechanism to transfer * ownership, where the new owner must call {acceptOwnership} in order to replace the * old one. This can help prevent common mistakes, such as transfers of ownership to * incorrect accounts, or to contracts that are unable to interact with the * permission system. * * The initial owner is specified at deployment time in the constructor for `Ownable`. This * can later be changed with {transferOwnership} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. * * Setting `newOwner` to the zero address is allowed; this can be used to cancel an initiated ownership transfer. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); if (pendingOwner() != sender) { revert OwnableUnauthorizedAccount(sender); } _transferOwnership(sender); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /// @title Transferable /// @notice Abstract contract that handles both native and ERC20 token transfers abstract contract Transferable { /// @notice The address of the ERC20 token. If address(0), represents native token address public token; /// @notice Sets the token address for this contract /// @param _token The address of the ERC20 token. Use address(0) for native token constructor(address _token) { token = _token; } /// @notice Abstract function to withdraw tokens/native currency /// @param amount The amount to withdraw function withdraw(uint256 amount) external virtual; /// @notice Internal function to transfer tokens or native currency to a recipient /// @param recipient The address to receive the transfer /// @param amount The amount to transfer /// @dev If token is address(0), transfers native currency, otherwise transfers ERC20 tokens function transfer(address recipient, uint256 amount) internal { if (token == address(0)) { (bool success,) = recipient.call{value: amount}(""); require(success, "Native token transfer failed"); } else { require(IERC20(token).transfer(recipient, amount), "ERC20 transfer failed"); } } /// @notice Returns the current balance of tokens or native currency held by this contract /// @return uint256 The balance amount /// @dev If token is address(0), returns native currency balance, otherwise returns ERC20 balance function balance() public view returns (uint256) { if (token == address(0)) { return address(this).balance; } else { return IERC20(token).balanceOf(address(this)); } } /// @notice Allows the contract to receive native currency receive() external payable {} fallback() external payable {} }
// 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.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; } }
{ "remappings": [ "@layerzerolabs/onft-evm/=lib/devtools/packages/onft-evm/", "@layerzerolabs/oapp-evm/=lib/devtools/packages/oapp-evm/", "@layerzerolabs/lz-evm-protocol-v2/=lib/layerzero-v2/packages/layerzero-v2/evm/protocol/", "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", "ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/", "layerzero-v2/=lib/layerzero-v2/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "@solady/=lib/solady/src/", "devtools/=lib/devtools/packages/toolbox-foundry/src/", "solady/=lib/solady/src/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "cancun", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_signer","type":"address"},{"internalType":"address","name":"_token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyClaimed","type":"error"},{"inputs":[],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"InsufficientFee","type":"error"},{"inputs":[],"name":"InvalidMerkleProof","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"MerkleRootNotSet","type":"error"},{"inputs":[],"name":"NotActive","type":"error"},{"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":"paymaster","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"AirdropClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"claimRoot","type":"bytes32"}],"name":"ClaimRootUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"active","type":"bool"}],"name":"ContractActivated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"signer","type":"address"}],"name":"SignerUpdated","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_onBehalfOf","type":"address"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_claimRoot","type":"bytes32"}],"name":"setClaimRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleActive","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526005805460ff19169055348015610019575f80fd5b50604051610ed9380380610ed983398101604081905261003891610124565b80338061005e57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100678161009e565b50600280546001600160a01b039283166001600160a01b031991821617909155600380549490921693169290921790915550610155565b600180546001600160a01b03191690556100b7816100ba565b50565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b038116811461011f575f80fd5b919050565b5f8060408385031215610135575f80fd5b61013e83610109565b915061014c60208401610109565b90509250929050565b610d77806101625f395ff3fe608060405260043610610100575f3560e01c8063715018a61161008e578063c884ef8311610060578063c884ef8314610298578063ddca3f43146102c6578063e30c3978146102db578063f2fde38b146102f8578063fc0c546a1461031757005b8063715018a61461024057806379ba5097146102545780638da5cb5b14610268578063b69ef8a81461028457005b806329c68dc1116100d257806329c68dc1146101b05780632e1a7d4d146101c4578063584ebf76146101e357806369fe0e2d146102025780636c19e7831461022157005b806302fb0c5e1461010957806314ea35e71461013757806321b97f201461015a578063238ac9331461017957005b3661010757005b005b348015610114575f80fd5b506005546101229060ff1681565b60405190151581526020015b60405180910390f35b348015610142575f80fd5b5061014c60045481565b60405190815260200161012e565b348015610165575f80fd5b50610107610174366004610ba2565b610336565b348015610184575f80fd5b50600354610198906001600160a01b031681565b6040516001600160a01b03909116815260200161012e565b3480156101bb575f80fd5b50610107610370565b3480156101cf575f80fd5b506101076101de366004610ba2565b6103dc565b3480156101ee575f80fd5b506101076101fd366004610c19565b6103f1565b34801561020d575f80fd5b5061010761021c366004610ba2565b610575565b34801561022c575f80fd5b5061010761023b366004610cc6565b6105af565b34801561024b575f80fd5b50610107610600565b34801561025f575f80fd5b50610107610613565b348015610273575f80fd5b505f546001600160a01b0316610198565b34801561028f575f80fd5b5061014c610654565b3480156102a3575f80fd5b506101226102b2366004610cc6565b60076020525f908152604090205460ff1681565b3480156102d1575f80fd5b5061014c60065481565b3480156102e6575f80fd5b506001546001600160a01b0316610198565b348015610303575f80fd5b50610107610312366004610cc6565b6106da565b348015610322575f80fd5b50600254610198906001600160a01b031681565b61033e61074a565b600481905560405181907f328447ebe089504a19c6360a1422330fd1ee2ffd1b4067e79a5113ec53c56024905f90a250565b61037861074a565b60045461039857604051634fc5147960e11b815260040160405180910390fd5b6005805460ff19811660ff9182161590811790925560405191161515907fe6a68321b9f24b644c19c3dd9a4b39f7f0e0ba442392cba43ec07190f0e40017905f90a2565b6103e461074a565b6103ee3382610776565b50565b816103fa610654565b101561041957604051631e9acf1760e31b815260040160405180910390fd5b6001600160a01b0381165f9081526007602052604090205460ff161561045257604051630c8d9eab60e31b815260040160405180910390fd5b60055460ff1661047557604051634065aaf160e11b815260040160405180910390fd5b6001600160a01b0381165f908152600760205260409020805460ff191660011790556104a3868684846108e6565b6104af8285858461098a565b81326001600160a01b03831614610522576006545f81900361050a5760405162461bcd60e51b815260206004820152600f60248201526e11d85cc8199959481b9bdd081cd95d608a1b60448201526064015b60405180910390fd5b6105148183610ce6565b91506105203282610776565b505b61052c8282610776565b6040518181526001600160a01b0383169032907f28672b08a5904865cb09482f9f364a3d524e93224e91c80e54175be8251dc0859060200160405180910390a350505050505050565b61057d61074a565b600681905560405181907f8c4d35e54a3f2ef1134138fd8ea3daee6a3c89e10d2665996babdf70261e2c76905f90a250565b6105b761074a565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f5553331329228fbd4123164423717a4a7539f6dfa1c3279a923b98fd681a6c73905f90a250565b61060861074a565b6106115f610a72565b565b60015433906001600160a01b0316811461064b5760405163118cdaa760e01b81526001600160a01b0382166004820152602401610501565b6103ee81610a72565b6002545f906001600160a01b031661066b57504790565b6002546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156106b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106d59190610d0b565b905090565b6106e261074a565b600180546001600160a01b0383166001600160a01b031990911681179091556107125f546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b5f546001600160a01b031633146106115760405163118cdaa760e01b8152336004820152602401610501565b6002546001600160a01b031661082a575f826001600160a01b0316826040515f6040518083038185875af1925050503d805f81146107cf576040519150601f19603f3d011682016040523d82523d5f602084013e6107d4565b606091505b50509050806108255760405162461bcd60e51b815260206004820152601c60248201527f4e617469766520746f6b656e207472616e73666572206661696c6564000000006044820152606401610501565b505050565b60025460405163a9059cbb60e01b81526001600160a01b038481166004830152602482018490529091169063a9059cbb906044016020604051808303815f875af115801561087a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061089e9190610d22565b6108e25760405162461bcd60e51b8152602060048201526015602482015274115490cc8c081d1c985b9cd9995c8819985a5b1959605a1b6044820152606401610501565b5050565b6040516bffffffffffffffffffffffff19606083901b166020820152603481018390525f906054016040516020818303038152906040528051906020012090506109668585808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250506004549150849050610a8b565b6109835760405163582f497d60e11b815260040160405180910390fd5b5050505050565b5f8290036109ab57604051638baa579f60e01b815260040160405180910390fd5b6040516bffffffffffffffffffffffff19606083811b821660208401526034830187905230901b1660548201524660688201525f906088016040516020818303038152906040528051906020012090505f610a2a826020527b19457468657265756d205369676e6564204d6573736167653a0a33325f52603c60042090565b90505f610a38828787610acb565b6003549091506001600160a01b03808316911614610a6957604051638baa579f60e01b815260040160405180910390fd5b50505050505050565b600180546001600160a01b03191690556103ee81610b53565b5f835115610ac45760208401845160051b81015b8151841160051b938452815160209485185260405f209390910190808210610a9f5750505b5014919050565b5f6040518260408114610ae65760418114610b0d5750610b3e565b60208581013560ff81901c601b0190915285356040526001600160ff1b0316606052610b1e565b60408501355f1a6020526040856040375b50845f526020600160805f60015afa5191505f606052806040523d610b4b575b638baa579f5f526004601cfd5b509392505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f60208284031215610bb2575f80fd5b5035919050565b5f8083601f840112610bc9575f80fd5b50813567ffffffffffffffff811115610be0575f80fd5b602083019150836020828501011115610bf7575f80fd5b9250929050565b80356001600160a01b0381168114610c14575f80fd5b919050565b5f805f805f8060808789031215610c2e575f80fd5b863567ffffffffffffffff80821115610c45575f80fd5b818901915089601f830112610c58575f80fd5b813581811115610c66575f80fd5b8a60208260051b8501011115610c7a575f80fd5b602092830198509650908801359080821115610c94575f80fd5b50610ca189828a01610bb9565b90955093505060408701359150610cba60608801610bfe565b90509295509295509295565b5f60208284031215610cd6575f80fd5b610cdf82610bfe565b9392505050565b81810381811115610d0557634e487b7160e01b5f52601160045260245ffd5b92915050565b5f60208284031215610d1b575f80fd5b5051919050565b5f60208284031215610d32575f80fd5b81518015158114610cdf575f80fdfea26469706673582212200f3a865020063c23f71f0025da04c9f1835474735fd6a51bc0e4835b4358145e64736f6c63430008190033000000000000000000000000f9c5c52d3ad7573ac10ad9da762e8d33cdf2ba3a0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405260043610610100575f3560e01c8063715018a61161008e578063c884ef8311610060578063c884ef8314610298578063ddca3f43146102c6578063e30c3978146102db578063f2fde38b146102f8578063fc0c546a1461031757005b8063715018a61461024057806379ba5097146102545780638da5cb5b14610268578063b69ef8a81461028457005b806329c68dc1116100d257806329c68dc1146101b05780632e1a7d4d146101c4578063584ebf76146101e357806369fe0e2d146102025780636c19e7831461022157005b806302fb0c5e1461010957806314ea35e71461013757806321b97f201461015a578063238ac9331461017957005b3661010757005b005b348015610114575f80fd5b506005546101229060ff1681565b60405190151581526020015b60405180910390f35b348015610142575f80fd5b5061014c60045481565b60405190815260200161012e565b348015610165575f80fd5b50610107610174366004610ba2565b610336565b348015610184575f80fd5b50600354610198906001600160a01b031681565b6040516001600160a01b03909116815260200161012e565b3480156101bb575f80fd5b50610107610370565b3480156101cf575f80fd5b506101076101de366004610ba2565b6103dc565b3480156101ee575f80fd5b506101076101fd366004610c19565b6103f1565b34801561020d575f80fd5b5061010761021c366004610ba2565b610575565b34801561022c575f80fd5b5061010761023b366004610cc6565b6105af565b34801561024b575f80fd5b50610107610600565b34801561025f575f80fd5b50610107610613565b348015610273575f80fd5b505f546001600160a01b0316610198565b34801561028f575f80fd5b5061014c610654565b3480156102a3575f80fd5b506101226102b2366004610cc6565b60076020525f908152604090205460ff1681565b3480156102d1575f80fd5b5061014c60065481565b3480156102e6575f80fd5b506001546001600160a01b0316610198565b348015610303575f80fd5b50610107610312366004610cc6565b6106da565b348015610322575f80fd5b50600254610198906001600160a01b031681565b61033e61074a565b600481905560405181907f328447ebe089504a19c6360a1422330fd1ee2ffd1b4067e79a5113ec53c56024905f90a250565b61037861074a565b60045461039857604051634fc5147960e11b815260040160405180910390fd5b6005805460ff19811660ff9182161590811790925560405191161515907fe6a68321b9f24b644c19c3dd9a4b39f7f0e0ba442392cba43ec07190f0e40017905f90a2565b6103e461074a565b6103ee3382610776565b50565b816103fa610654565b101561041957604051631e9acf1760e31b815260040160405180910390fd5b6001600160a01b0381165f9081526007602052604090205460ff161561045257604051630c8d9eab60e31b815260040160405180910390fd5b60055460ff1661047557604051634065aaf160e11b815260040160405180910390fd5b6001600160a01b0381165f908152600760205260409020805460ff191660011790556104a3868684846108e6565b6104af8285858461098a565b81326001600160a01b03831614610522576006545f81900361050a5760405162461bcd60e51b815260206004820152600f60248201526e11d85cc8199959481b9bdd081cd95d608a1b60448201526064015b60405180910390fd5b6105148183610ce6565b91506105203282610776565b505b61052c8282610776565b6040518181526001600160a01b0383169032907f28672b08a5904865cb09482f9f364a3d524e93224e91c80e54175be8251dc0859060200160405180910390a350505050505050565b61057d61074a565b600681905560405181907f8c4d35e54a3f2ef1134138fd8ea3daee6a3c89e10d2665996babdf70261e2c76905f90a250565b6105b761074a565b600380546001600160a01b0319166001600160a01b0383169081179091556040517f5553331329228fbd4123164423717a4a7539f6dfa1c3279a923b98fd681a6c73905f90a250565b61060861074a565b6106115f610a72565b565b60015433906001600160a01b0316811461064b5760405163118cdaa760e01b81526001600160a01b0382166004820152602401610501565b6103ee81610a72565b6002545f906001600160a01b031661066b57504790565b6002546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156106b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106d59190610d0b565b905090565b6106e261074a565b600180546001600160a01b0383166001600160a01b031990911681179091556107125f546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b5f546001600160a01b031633146106115760405163118cdaa760e01b8152336004820152602401610501565b6002546001600160a01b031661082a575f826001600160a01b0316826040515f6040518083038185875af1925050503d805f81146107cf576040519150601f19603f3d011682016040523d82523d5f602084013e6107d4565b606091505b50509050806108255760405162461bcd60e51b815260206004820152601c60248201527f4e617469766520746f6b656e207472616e73666572206661696c6564000000006044820152606401610501565b505050565b60025460405163a9059cbb60e01b81526001600160a01b038481166004830152602482018490529091169063a9059cbb906044016020604051808303815f875af115801561087a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061089e9190610d22565b6108e25760405162461bcd60e51b8152602060048201526015602482015274115490cc8c081d1c985b9cd9995c8819985a5b1959605a1b6044820152606401610501565b5050565b6040516bffffffffffffffffffffffff19606083901b166020820152603481018390525f906054016040516020818303038152906040528051906020012090506109668585808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250506004549150849050610a8b565b6109835760405163582f497d60e11b815260040160405180910390fd5b5050505050565b5f8290036109ab57604051638baa579f60e01b815260040160405180910390fd5b6040516bffffffffffffffffffffffff19606083811b821660208401526034830187905230901b1660548201524660688201525f906088016040516020818303038152906040528051906020012090505f610a2a826020527b19457468657265756d205369676e6564204d6573736167653a0a33325f52603c60042090565b90505f610a38828787610acb565b6003549091506001600160a01b03808316911614610a6957604051638baa579f60e01b815260040160405180910390fd5b50505050505050565b600180546001600160a01b03191690556103ee81610b53565b5f835115610ac45760208401845160051b81015b8151841160051b938452815160209485185260405f209390910190808210610a9f5750505b5014919050565b5f6040518260408114610ae65760418114610b0d5750610b3e565b60208581013560ff81901c601b0190915285356040526001600160ff1b0316606052610b1e565b60408501355f1a6020526040856040375b50845f526020600160805f60015afa5191505f606052806040523d610b4b575b638baa579f5f526004601cfd5b509392505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f60208284031215610bb2575f80fd5b5035919050565b5f8083601f840112610bc9575f80fd5b50813567ffffffffffffffff811115610be0575f80fd5b602083019150836020828501011115610bf7575f80fd5b9250929050565b80356001600160a01b0381168114610c14575f80fd5b919050565b5f805f805f8060808789031215610c2e575f80fd5b863567ffffffffffffffff80821115610c45575f80fd5b818901915089601f830112610c58575f80fd5b813581811115610c66575f80fd5b8a60208260051b8501011115610c7a575f80fd5b602092830198509650908801359080821115610c94575f80fd5b50610ca189828a01610bb9565b90955093505060408701359150610cba60608801610bfe565b90509295509295509295565b5f60208284031215610cd6575f80fd5b610cdf82610bfe565b9392505050565b81810381811115610d0557634e487b7160e01b5f52601160045260245ffd5b92915050565b5f60208284031215610d1b575f80fd5b5051919050565b5f60208284031215610d32575f80fd5b81518015158114610cdf575f80fdfea26469706673582212200f3a865020063c23f71f0025da04c9f1835474735fd6a51bc0e4835b4358145e64736f6c63430008190033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f9c5c52d3ad7573ac10ad9da762e8d33cdf2ba3a0000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _signer (address): 0xf9C5c52D3Ad7573ac10Ad9Da762E8D33CDF2Ba3A
Arg [1] : _token (address): 0x0000000000000000000000000000000000000000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f9c5c52d3ad7573ac10ad9da762e8d33cdf2ba3a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BERA | 100.00% | $3.68 | 446,006.19 | $1,643,062.44 |
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.