ETH Price: $4,485.55 (-5.08%)

Contract

0xB3911C121909736A9C1a76e5Cf078D19a3E7d233
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim Rewards235278672025-10-07 19:08:354 mins ago1759864115IN
0xB3911C12...9a3E7d233
0 ETH0.000209322.34179928
Claim Rewards235278302025-10-07 19:00:5912 mins ago1759863659IN
0xB3911C12...9a3E7d233
0 ETH0.00015671.75204379
Claim Rewards235278252025-10-07 18:59:5913 mins ago1759863599IN
0xB3911C12...9a3E7d233
0 ETH0.000062450.69821461
Claim Rewards235276352025-10-07 18:21:3551 mins ago1759861295IN
0xB3911C12...9a3E7d233
0 ETH0.000066990.74905099
Claim Rewards235275252025-10-07 17:59:351 hr ago1759859975IN
0xB3911C12...9a3E7d233
0 ETH0.000086020.96176893
Claim Rewards235275162025-10-07 17:57:471 hr ago1759859867IN
0xB3911C12...9a3E7d233
0 ETH0.000185392.07314531
Claim Rewards235275012025-10-07 17:54:351 hr ago1759859675IN
0xB3911C12...9a3E7d233
0 ETH0.000178521.99627703
Claim Rewards235274622025-10-07 17:46:471 hr ago1759859207IN
0xB3911C12...9a3E7d233
0 ETH0.000078251.0821055
Claim Rewards235274032025-10-07 17:34:591 hr ago1759858499IN
0xB3911C12...9a3E7d233
0 ETH0.000104911.17296701
Claim Rewards235273592025-10-07 17:26:111 hr ago1759857971IN
0xB3911C12...9a3E7d233
0 ETH0.000224682.51312154
Claim Rewards235273572025-10-07 17:25:471 hr ago1759857947IN
0xB3911C12...9a3E7d233
0 ETH0.000139561.55978428
Claim Rewards235273472025-10-07 17:23:471 hr ago1759857827IN
0xB3911C12...9a3E7d233
0 ETH0.000144171.6108941
Claim Rewards235273282025-10-07 17:19:591 hr ago1759857599IN
0xB3911C12...9a3E7d233
0 ETH0.000101981.59535924
Claim Rewards235273282025-10-07 17:19:591 hr ago1759857599IN
0xB3911C12...9a3E7d233
0 ETH0.000110411.52657707
Claim Rewards235272732025-10-07 17:08:592 hrs ago1759856939IN
0xB3911C12...9a3E7d233
0 ETH0.00017711.99787603
Claim Rewards235271542025-10-07 16:45:112 hrs ago1759855511IN
0xB3911C12...9a3E7d233
0 ETH0.000279933.86846909
Claim Rewards235270722025-10-07 16:28:352 hrs ago1759854515IN
0xB3911C12...9a3E7d233
0 ETH0.00033143.77013829
Claim Rewards235268942025-10-07 15:52:593 hrs ago1759852379IN
0xB3911C12...9a3E7d233
0 ETH0.000293473.27957554
Claim Rewards235268812025-10-07 15:50:233 hrs ago1759852223IN
0xB3911C12...9a3E7d233
0 ETH0.00033664.65185041
Claim Rewards235268352025-10-07 15:41:113 hrs ago1759851671IN
0xB3911C12...9a3E7d233
0 ETH0.000330434.66325263
Claim Rewards235267902025-10-07 15:32:113 hrs ago1759851131IN
0xB3911C12...9a3E7d233
0 ETH0.000391633.70338018
Claim Rewards235267672025-10-07 15:27:233 hrs ago1759850843IN
0xB3911C12...9a3E7d233
0 ETH0.000370125.11678031
Claim Rewards235266802025-10-07 15:09:474 hrs ago1759849787IN
0xB3911C12...9a3E7d233
0 ETH0.000592936.62892977
Claim Rewards235266732025-10-07 15:08:114 hrs ago1759849691IN
0xB3911C12...9a3E7d233
0 ETH0.000529615.92039988
Claim Rewards235266062025-10-07 14:54:354 hrs ago1759848875IN
0xB3911C12...9a3E7d233
0 ETH0.000240323.31928832
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x9D3d4c98...aF4D56999
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
RewardsClaim

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 800 runs

Other Settings:
paris EvmVersion, MIT license

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/cryptography/Hashes.sol";

contract RewardsClaim is Ownable {
    using SafeERC20 for IERC20;

    modifier onlyRootUpdater() {
        require(rootUpdaters[msg.sender], "only root updaters allowed");
        _;
    }
    event TopRootUpdated(uint64 indexed epoch, bytes32 topRoot);
    event RewardsClaimed(address indexed user, uint256 amount, uint256 cumulativeAmount);
    event RootUpdaterAdded(address indexed rootUpdater);
    event RootUpdaterRemoved(address indexed rootUpdater);

    address public immutable rewardToken;

    mapping(address => bool) public rootUpdaters;
    uint64 public epoch;
    bytes32 public topRoot;
    mapping(address => uint256) public cumulativeClaimed;

    constructor(address _rewardToken) Ownable(msg.sender) {
        require(_rewardToken != address(0), "zero reward token address");

        rewardToken = _rewardToken;
    }

    function verifyMerkleProof(bytes32[] memory proof, bytes32 root, bytes32 leafHash) internal pure returns (bool) {
        bytes32 hash = leafHash;
        for (uint256 i = 0; i < proof.length; i++) {
            hash = Hashes.commutativeKeccak256(hash, proof[i]);
        }
        return hash == root;
    }

    /**
     * @notice Claims rewards for a user using a combined sub tree + top tree Merkle proof.
     * @param user The user address.
     * @param cumulativeRewards The cumulative reward amount.
     * @param proof The Merkle proof from the sub tree leaf node to the top tree root.
     */
    function claimRewards(uint64 _epoch, address user, uint256 cumulativeRewards, bytes32[] memory proof) external {
        require(_epoch == epoch, "invalid epoch");

        bytes32 leafHash = keccak256(abi.encodePacked(user, cumulativeRewards));
        require(verifyMerkleProof(proof, topRoot, leafHash), "verification failed");

        uint256 amountToClaim = cumulativeRewards - cumulativeClaimed[user];
        cumulativeClaimed[user] += amountToClaim;
        // Send reward token
        IERC20(rewardToken).safeTransfer(user, amountToClaim);
        emit RewardsClaimed(user, amountToClaim, cumulativeRewards);
    }

    /**
     * @notice Updates the epoch and top Merkle root info
     * @param _epoch The epoch number.
     * @param _topRoot The Merkle root for the top tree.
     */
    function updateRoot(uint64 _epoch, bytes32 _topRoot) external onlyRootUpdater {
        epoch = _epoch;
        topRoot = _topRoot;

        emit TopRootUpdated(epoch, topRoot);
    }

    // ----------- Admin -----------

    /**
     * @notice Adds a root updater address.
     * @param rootUpdater The root updater address.
     */
    function addRootUpdater(address rootUpdater) external onlyOwner {
        rootUpdaters[rootUpdater] = true;
        emit RootUpdaterAdded(rootUpdater);
    }

    /**
     * @notice Removes a root updater address.
     * @param rootUpdater The root updater address.
     */
    function removeRooUpdater(address rootUpdater) external onlyOwner {
        delete rootUpdaters[rootUpdater];
        emit RootUpdaterRemoved(rootUpdater);
    }
}

// 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) (interfaces/IERC1363.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC165} from "./IERC165.sol";

/**
 * @title IERC1363
 * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].
 *
 * Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract
 * after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.
 */
interface IERC1363 is IERC20, IERC165 {
    /*
     * Note: the ERC-165 identifier for this interface is 0xb0202a11.
     * 0xb0202a11 ===
     *   bytes4(keccak256('transferAndCall(address,uint256)')) ^
     *   bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
     */

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param from The address which you want to send tokens from.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param from The address which you want to send tokens from.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value) external returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @param data Additional data with no specified format, sent in call to `spender`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);
}

File 4 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../utils/introspection/IERC165.sol";

File 5 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../token/ERC20/IERC20.sol";

// 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.1.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC1363} from "../../../interfaces/IERC1363.sol";
import {Address} from "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC-20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    /**
     * @dev An operation with an ERC-20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     *
     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
     * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     *
     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
     * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     *
     * NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function
     * only sets the "standard" allowance. Any temporary allowance will remain active, in addition to the value being
     * set here.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no
     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * Reverts if the returned value is other than `true`.
     */
    function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
        if (to.code.length == 0) {
            safeTransfer(token, to, value);
        } else if (!token.transferAndCall(to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target
     * has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * Reverts if the returned value is other than `true`.
     */
    function transferFromAndCallRelaxed(
        IERC1363 token,
        address from,
        address to,
        uint256 value,
        bytes memory data
    ) internal {
        if (to.code.length == 0) {
            safeTransferFrom(token, from, to, value);
        } else if (!token.transferFromAndCall(from, to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no
     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.
     * Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}
     * once without retrying, and relies on the returned value to be true.
     *
     * Reverts if the returned value is other than `true`.
     */
    function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
        if (to.code.length == 0) {
            forceApprove(token, to, value);
        } else if (!token.approveAndCall(to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturnBool} that reverts if call fails to meet the requirements.
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        uint256 returnSize;
        uint256 returnValue;
        assembly ("memory-safe") {
            let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
            // bubble errors
            if iszero(success) {
                let ptr := mload(0x40)
                returndatacopy(ptr, 0, returndatasize())
                revert(ptr, returndatasize())
            }
            returnSize := returndatasize()
            returnValue := mload(0)
        }

        if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 1) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silently catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        bool success;
        uint256 returnSize;
        uint256 returnValue;
        assembly ("memory-safe") {
            success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
            returnSize := returndatasize()
            returnValue := mload(0)
        }
        return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Address.sol)

pragma solidity ^0.8.20;

import {Errors} from "./Errors.sol";

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert Errors.InsufficientBalance(address(this).balance, amount);
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert Errors.FailedCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {Errors.FailedCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert Errors.InsufficientBalance(address(this).balance, value);
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case
     * of an unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {Errors.FailedCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            assembly ("memory-safe") {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert Errors.FailedCall();
        }
    }
}

// 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;
    }
}

File 10 of 12 : Errors.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of common custom errors used in multiple contracts
 *
 * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.
 * It is recommended to avoid relying on the error API for critical functionality.
 *
 * _Available since v5.1._
 */
library Errors {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error InsufficientBalance(uint256 balance, uint256 needed);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedCall();

    /**
     * @dev The deployment failed.
     */
    error FailedDeployment();

    /**
     * @dev A necessary precompile is missing.
     */
    error MissingPrecompile(address);
}

// 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/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[ERC].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "evmVersion": "paris",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 800
  },
  "remappings": [],
  "viaIR": true,
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_rewardToken","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"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"cumulativeAmount","type":"uint256"}],"name":"RewardsClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"rootUpdater","type":"address"}],"name":"RootUpdaterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"rootUpdater","type":"address"}],"name":"RootUpdaterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"epoch","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"topRoot","type":"bytes32"}],"name":"TopRootUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"rootUpdater","type":"address"}],"name":"addRootUpdater","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_epoch","type":"uint64"},{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"cumulativeRewards","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cumulativeClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epoch","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rootUpdater","type":"address"}],"name":"removeRooUpdater","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rootUpdaters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"topRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_epoch","type":"uint64"},{"internalType":"bytes32","name":"_topRoot","type":"bytes32"}],"name":"updateRoot","outputs":[],"stateMutability":"nonpayable","type":"function"}]

0x60a03461011f57601f61095338819003918201601f19168301916001600160401b038311848410176101245780849260209460405283398101031261011f57516001600160a01b03811680820361011f5733156101095760008054336001600160a01b0319821681178355604051939290916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09080a3156100c75750608052604051610818908161013b823960805181818161012f01526105180152f35b62461bcd60e51b815260206004820152601960248201527f7a65726f2072657761726420746f6b656e2061646472657373000000000000006044820152606490fd5b631e4fbdf760e01b600052600060045260246000fd5b600080fd5b634e487b7160e01b600052604160045260246000fdfe608080604052600436101561001357600080fd5b60003560e01c9081631b4fc38b1461074f575080632b8be275146106e5578063372b102d146106a657806367ff84f7146103a0578063715018a61461033a5780638da5cb5b14610313578063900cf0cf146102eb578063a9919576146102b1578063c9daddad146101e9578063f2fde38b14610153578063f7c618c11461010f5763fc32cab5146100a357600080fd5b3461010a57602036600319011261010a576001600160a01b036100c461076a565b6100cc6107b9565b16806000526001602052604060002060ff1981541690557fbd880d6371280cfdf29171407a94db851a8408297f746898b4f4295706ce0b28600080a2005b600080fd5b3461010a57600036600319011261010a5760206040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461010a57602036600319011261010a576001600160a01b0361017461076a565b61017c6107b9565b1680156101d3576001600160a01b036000548273ffffffffffffffffffffffffffffffffffffffff19821617600055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3005b631e4fbdf760e01b600052600060045260246000fd5b3461010a57604036600319011261010a57610202610780565b6024359033600052600160205260ff604060002054161561026c57602067ffffffffffffffff7f67039b7f29c2d4367d3562c53c1d8bf1c9b99e22cb742b7a8c1c78940ae7cf669216928367ffffffffffffffff19600254161760025580600355604051908152a2005b60405162461bcd60e51b815260206004820152601a60248201527f6f6e6c7920726f6f7420757064617465727320616c6c6f7765640000000000006044820152606490fd5b3461010a57602036600319011261010a576001600160a01b036102d261076a565b1660005260046020526020604060002054604051908152f35b3461010a57600036600319011261010a57602067ffffffffffffffff60025416604051908152f35b3461010a57600036600319011261010a5760206001600160a01b0360005416604051908152f35b3461010a57600036600319011261010a576103536107b9565b60006001600160a01b03815473ffffffffffffffffffffffffffffffffffffffff1981168355167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b3461010a57608036600319011261010a576103b9610780565b602435906001600160a01b0382169081830361010a57604435926064359167ffffffffffffffff831161010a573660238401121561010a5782600401359267ffffffffffffffff8411610690578360051b6040519461041b6020830187610797565b8552602460208601918301019136831161010a57602401905b8282106106805750505067ffffffffffffffff806002541691160361063b5760405160208101916bffffffffffffffffffffffff199060601b16825284603482015260348152610485605482610797565b5190209160035492936000945b83518610156104d357604060019160009060208960051b88010151908181106000146104c7578252602052205b950194610492565b908252602052206104bf565b84036105f6578160005260046020526040600020548103908082116105e05782600052600460205260406000208054908382018092116105e057556001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016602060006040518281019063a9059cbb60e01b825287602482015286604482015260448152610568606482610797565b519082855af1156105d4576000513d6105cb5750803b155b6105b757507fdacbdde355ba930696a362ea6738feb9f8bd52dfb3d81947558fd3217e23e3259160409182519182526020820152a2005b635274afe760e01b60005260045260246000fd5b60011415610580565b6040513d6000823e3d90fd5b634e487b7160e01b600052601160045260246000fd5b60405162461bcd60e51b815260206004820152601360248201527f766572696669636174696f6e206661696c6564000000000000000000000000006044820152606490fd5b60405162461bcd60e51b815260206004820152600d60248201527f696e76616c69642065706f6368000000000000000000000000000000000000006044820152606490fd5b8135815260209182019101610434565b634e487b7160e01b600052604160045260246000fd5b3461010a57602036600319011261010a576001600160a01b036106c761076a565b166000526001602052602060ff604060002054166040519015158152f35b3461010a57602036600319011261010a576001600160a01b0361070661076a565b61070e6107b9565b168060005260016020526040600020600160ff198254161790557f8827f9b6e9692510361272fd9d33d9cb13917c057e046fd71de5446103f21fb1600080a2005b3461010a57600036600319011261010a576020906003548152f35b600435906001600160a01b038216820361010a57565b6004359067ffffffffffffffff8216820361010a57565b90601f8019910116810190811067ffffffffffffffff82111761069057604052565b6001600160a01b036000541633036107cd57565b63118cdaa760e01b6000523360045260246000fdfea264697066735822122073e04c8264d7ff6cc11f7fbc9f0a279fbdbb6f0f8907963da730211ef6d2279364736f6c634300081c003300000000000000000000000073a15fed60bf67631dc6cd7bc5b6e8da8190acf5

Deployed Bytecode

0x608080604052600436101561001357600080fd5b60003560e01c9081631b4fc38b1461074f575080632b8be275146106e5578063372b102d146106a657806367ff84f7146103a0578063715018a61461033a5780638da5cb5b14610313578063900cf0cf146102eb578063a9919576146102b1578063c9daddad146101e9578063f2fde38b14610153578063f7c618c11461010f5763fc32cab5146100a357600080fd5b3461010a57602036600319011261010a576001600160a01b036100c461076a565b6100cc6107b9565b16806000526001602052604060002060ff1981541690557fbd880d6371280cfdf29171407a94db851a8408297f746898b4f4295706ce0b28600080a2005b600080fd5b3461010a57600036600319011261010a5760206040516001600160a01b037f00000000000000000000000073a15fed60bf67631dc6cd7bc5b6e8da8190acf5168152f35b3461010a57602036600319011261010a576001600160a01b0361017461076a565b61017c6107b9565b1680156101d3576001600160a01b036000548273ffffffffffffffffffffffffffffffffffffffff19821617600055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3005b631e4fbdf760e01b600052600060045260246000fd5b3461010a57604036600319011261010a57610202610780565b6024359033600052600160205260ff604060002054161561026c57602067ffffffffffffffff7f67039b7f29c2d4367d3562c53c1d8bf1c9b99e22cb742b7a8c1c78940ae7cf669216928367ffffffffffffffff19600254161760025580600355604051908152a2005b60405162461bcd60e51b815260206004820152601a60248201527f6f6e6c7920726f6f7420757064617465727320616c6c6f7765640000000000006044820152606490fd5b3461010a57602036600319011261010a576001600160a01b036102d261076a565b1660005260046020526020604060002054604051908152f35b3461010a57600036600319011261010a57602067ffffffffffffffff60025416604051908152f35b3461010a57600036600319011261010a5760206001600160a01b0360005416604051908152f35b3461010a57600036600319011261010a576103536107b9565b60006001600160a01b03815473ffffffffffffffffffffffffffffffffffffffff1981168355167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b3461010a57608036600319011261010a576103b9610780565b602435906001600160a01b0382169081830361010a57604435926064359167ffffffffffffffff831161010a573660238401121561010a5782600401359267ffffffffffffffff8411610690578360051b6040519461041b6020830187610797565b8552602460208601918301019136831161010a57602401905b8282106106805750505067ffffffffffffffff806002541691160361063b5760405160208101916bffffffffffffffffffffffff199060601b16825284603482015260348152610485605482610797565b5190209160035492936000945b83518610156104d357604060019160009060208960051b88010151908181106000146104c7578252602052205b950194610492565b908252602052206104bf565b84036105f6578160005260046020526040600020548103908082116105e05782600052600460205260406000208054908382018092116105e057556001600160a01b037f00000000000000000000000073a15fed60bf67631dc6cd7bc5b6e8da8190acf516602060006040518281019063a9059cbb60e01b825287602482015286604482015260448152610568606482610797565b519082855af1156105d4576000513d6105cb5750803b155b6105b757507fdacbdde355ba930696a362ea6738feb9f8bd52dfb3d81947558fd3217e23e3259160409182519182526020820152a2005b635274afe760e01b60005260045260246000fd5b60011415610580565b6040513d6000823e3d90fd5b634e487b7160e01b600052601160045260246000fd5b60405162461bcd60e51b815260206004820152601360248201527f766572696669636174696f6e206661696c6564000000000000000000000000006044820152606490fd5b60405162461bcd60e51b815260206004820152600d60248201527f696e76616c69642065706f6368000000000000000000000000000000000000006044820152606490fd5b8135815260209182019101610434565b634e487b7160e01b600052604160045260246000fd5b3461010a57602036600319011261010a576001600160a01b036106c761076a565b166000526001602052602060ff604060002054166040519015158152f35b3461010a57602036600319011261010a576001600160a01b0361070661076a565b61070e6107b9565b168060005260016020526040600020600160ff198254161790557f8827f9b6e9692510361272fd9d33d9cb13917c057e046fd71de5446103f21fb1600080a2005b3461010a57600036600319011261010a576020906003548152f35b600435906001600160a01b038216820361010a57565b6004359067ffffffffffffffff8216820361010a57565b90601f8019910116810190811067ffffffffffffffff82111761069057604052565b6001600160a01b036000541633036107cd57565b63118cdaa760e01b6000523360045260246000fdfea264697066735822122073e04c8264d7ff6cc11f7fbc9f0a279fbdbb6f0f8907963da730211ef6d2279364736f6c634300081c0033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
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.