Sonic Blaze Testnet

Contract

0xA0f5703aCEd39D593cedfd7F440e34C218D16fB2

Overview

S Balance

Sonic Blaze LogoSonic Blaze LogoSonic Blaze Logo0 S

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Update205929252025-02-15 16:31:569 days ago1739637116IN
0xA0f5703a...218D16fB2
0 S0.000060391.1

Latest 2 internal transactions

Parent Transaction Hash Block From To
205929252025-02-15 16:31:569 days ago1739637116
0xA0f5703a...218D16fB2
0 S
205929252025-02-15 16:31:569 days ago1739637116
0xA0f5703a...218D16fB2
0 S
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Pools

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 1000 runs

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 5 : Pool.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;

import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "./interfaces/IBurnToken.sol";
import "./interfaces/IManager.sol";

contract Pools is ReentrancyGuard {
    IManager private Manager;
    IBurnToken private BurnToken;

    uint256 public totalStaked;
    uint256 private accRewardPerToken;

    struct UserInfos {
        uint256 amountStaked;
        uint256 rewardDebt;
    }

    mapping(address => UserInfos) public userInfos;

    constructor(address _manager) {
        Manager = IManager(_manager);
    }

    modifier onlyOwner() {
        require(msg.sender == Manager.owner(), "Not authorized");
        _;
    }

    function setManager(address _manager) external onlyOwner {
        Manager = IManager(_manager);
    }

    function update() external onlyOwner {
        BurnToken = IBurnToken(_getContract("Burn"));
    }

    function distributeRewards() external payable onlyOwner {
        require(totalStaked > 0, "No staked tokens");
        uint256 reward = msg.value;
        accRewardPerToken += (reward * 1e18) / totalStaked;
    }

    function deposit(uint256 amount) external nonReentrant {
        UserInfos storage _userInfo = userInfos[msg.sender];
        _userInfo.amountStaked += amount;
        totalStaked += amount;
        _updateDebt(msg.sender);

        BurnToken.transferFrom(msg.sender, address(this), amount);
    }

    function withdraw(uint256 amount) external nonReentrant {
        UserInfos storage _userInfo = userInfos[msg.sender];
        require(_userInfo.amountStaked >= amount, "Not enough staked");

        unchecked {
            _userInfo.amountStaked -= amount;
            totalStaked -= amount;
        }

        _updateDebt(msg.sender);

        BurnToken.transfer(msg.sender, amount);
    }

    function claim() external nonReentrant {
        uint256 reward = _getPendingRewards(msg.sender);
        _updateDebt(msg.sender);

        bool tmpSuccess;
        (tmpSuccess, ) = payable(msg.sender).call{value: reward}("");
        require(tmpSuccess, "Transfer failed");
    }

    function _getPendingRewards(
        address account
    ) private view returns (uint256) {
        UserInfos memory _userInfo = userInfos[account];
        return
            ((_userInfo.amountStaked * accRewardPerToken) / 1e18) -
            _userInfo.rewardDebt;
    }

    function _updateDebt(address account) private {
        UserInfos storage _userInfo = userInfos[account];
        _userInfo.rewardDebt =
            (_userInfo.amountStaked * accRewardPerToken) /
            1e18;
    }

    /*------------------------------------*
                    GETTERS
    *------------------------------------*/

    function getPendingRewards(address account) external view returns (uint256) {
        return _getPendingRewards(account);
    }

    /*------------------------------------*
                    UTILS
    *------------------------------------*/

    receive() external payable {}

    function _getContract(
        string memory contractName
    ) internal view returns (address) {
        return Manager.getContract(contractName);
    }
}

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

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

File 3 of 5 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol)

pragma solidity ^0.8.20;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant NOT_ENTERED = 1;
    uint256 private constant ENTERED = 2;

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    constructor() {
        _status = NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be NOT_ENTERED
        if (_status == ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

        // Any calls to nonReentrant after this point will fail
        _status = ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}

File 4 of 5 : IBurnToken.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

interface IBurnToken is IERC20 {
    function mint(address account, uint256 amount) external;
    function manageLPPower(address sender, uint256 amount) external;
    function getLpPower(address account) external view returns (uint256);
}

File 5 of 5 : IManager.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.20;

interface IManager {
    function getContract(string memory name) external view returns (address);
    function owner() external view returns (address);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract ABI

[{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributeRewards","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getPendingRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfos","outputs":[{"internalType":"uint256","name":"amountStaked","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052348015600f57600080fd5b50604051610b7f380380610b7f833981016040819052602c916055565b6001600081905580546001600160a01b0319166001600160a01b03929092169190911790556083565b600060208284031215606657600080fd5b81516001600160a01b0381168114607c57600080fd5b9392505050565b610aed806100926000396000f3fe60806040526004361061009a5760003560e01c8063817b1cd211610069578063b6b55f251161004e578063b6b55f251461016c578063d0ebdbe71461018c578063f6ed2017146101ac57600080fd5b8063817b1cd214610133578063a2e620451461015757600080fd5b80632e1a7d4d146100a657806343b0215f146100c85780634e71d92d146101165780636f4a2cd01461012b57600080fd5b366100a157005b600080fd5b3480156100b257600080fd5b506100c66100c136600461096a565b6101cc565b005b3480156100d457600080fd5b506100fc6100e3366004610998565b6005602052600090815260409020805460019091015482565b604080519283526020830191909152015b60405180910390f35b34801561012257600080fd5b506100c66102f0565b6100c66103b6565b34801561013f57600080fd5b5061014960035481565b60405190815260200161010d565b34801561016357600080fd5b506100c661050a565b34801561017857600080fd5b506100c661018736600461096a565b61063f565b34801561019857600080fd5b506100c66101a7366004610998565b6106e8565b3480156101b857600080fd5b506101496101c7366004610998565b6107df565b6101d46107f0565b33600090815260056020526040902080548211156102395760405162461bcd60e51b815260206004820152601160248201527f4e6f7420656e6f756768207374616b656400000000000000000000000000000060448201526064015b60405180910390fd5b8054829003815560038054839003905561025233610833565b6002546040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018490526001600160a01b039091169063a9059cbb906044015b6020604051808303816000875af11580156102bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102e191906109b5565b50506102ed6001600055565b50565b6102f86107f0565b600061030333610876565b905061030e33610833565b604051600090339083908381818185875af1925050503d8060008114610350576040519150601f19603f3d011682016040523d82523d6000602084013e610355565b606091505b505080915050806103a85760405162461bcd60e51b815260206004820152600f60248201527f5472616e73666572206661696c656400000000000000000000000000000000006044820152606401610230565b50506103b46001600055565b565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610409573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061042d91906109d7565b6001600160a01b0316336001600160a01b03161461047e5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610230565b6000600354116104d05760405162461bcd60e51b815260206004820152601060248201527f4e6f207374616b656420746f6b656e73000000000000000000000000000000006044820152606401610230565b60035434906104e782670de0b6b3a7640000610a0a565b6104f19190610a21565b600460008282546105029190610a43565b909155505050565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561055d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058191906109d7565b6001600160a01b0316336001600160a01b0316146105d25760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610230565b6106106040518060400160405280600481526020017f4275726e000000000000000000000000000000000000000000000000000000008152506108df565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6106476107f0565b33600090815260056020526040812080549091839183919061066a908490610a43565b9250508190555081600360008282546106839190610a43565b90915550610692905033610833565b6002546040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018490526001600160a01b03909116906323b872dd9060640161029e565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561073b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061075f91906109d7565b6001600160a01b0316336001600160a01b0316146107b05760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610230565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60006107ea82610876565b92915050565b60026000540361082c576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600055565b6001600160a01b03811660009081526005602052604090206004548154670de0b6b3a76400009161086391610a0a565b61086d9190610a21565b60019091015550565b6001600160a01b038116600090815260056020908152604080832081518083019092528054808352600190910154928201839052600454919291670de0b6b3a7640000916108c49190610a0a565b6108ce9190610a21565b6108d89190610a56565b9392505050565b6001546040517f358177730000000000000000000000000000000000000000000000000000000081526000916001600160a01b031690633581777390610929908590600401610a69565b602060405180830381865afa158015610946573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ea91906109d7565b60006020828403121561097c57600080fd5b5035919050565b6001600160a01b03811681146102ed57600080fd5b6000602082840312156109aa57600080fd5b81356108d881610983565b6000602082840312156109c757600080fd5b815180151581146108d857600080fd5b6000602082840312156109e957600080fd5b81516108d881610983565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107ea576107ea6109f4565b600082610a3e57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156107ea576107ea6109f4565b818103818111156107ea576107ea6109f4565b602081526000825180602084015260005b81811015610a975760208186018101516040868401015201610a7a565b506000604082850101526040601f19601f8301168401019150509291505056fea264697066735822122001e8e36f69f6235412160478ff7064d12a01719e71b3c7fac65ad65ab7210f6d64736f6c634300081a0033000000000000000000000000781a403332280b6e96b9968082b6c175b05d5ea1

Deployed Bytecode

0x60806040526004361061009a5760003560e01c8063817b1cd211610069578063b6b55f251161004e578063b6b55f251461016c578063d0ebdbe71461018c578063f6ed2017146101ac57600080fd5b8063817b1cd214610133578063a2e620451461015757600080fd5b80632e1a7d4d146100a657806343b0215f146100c85780634e71d92d146101165780636f4a2cd01461012b57600080fd5b366100a157005b600080fd5b3480156100b257600080fd5b506100c66100c136600461096a565b6101cc565b005b3480156100d457600080fd5b506100fc6100e3366004610998565b6005602052600090815260409020805460019091015482565b604080519283526020830191909152015b60405180910390f35b34801561012257600080fd5b506100c66102f0565b6100c66103b6565b34801561013f57600080fd5b5061014960035481565b60405190815260200161010d565b34801561016357600080fd5b506100c661050a565b34801561017857600080fd5b506100c661018736600461096a565b61063f565b34801561019857600080fd5b506100c66101a7366004610998565b6106e8565b3480156101b857600080fd5b506101496101c7366004610998565b6107df565b6101d46107f0565b33600090815260056020526040902080548211156102395760405162461bcd60e51b815260206004820152601160248201527f4e6f7420656e6f756768207374616b656400000000000000000000000000000060448201526064015b60405180910390fd5b8054829003815560038054839003905561025233610833565b6002546040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018490526001600160a01b039091169063a9059cbb906044015b6020604051808303816000875af11580156102bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102e191906109b5565b50506102ed6001600055565b50565b6102f86107f0565b600061030333610876565b905061030e33610833565b604051600090339083908381818185875af1925050503d8060008114610350576040519150601f19603f3d011682016040523d82523d6000602084013e610355565b606091505b505080915050806103a85760405162461bcd60e51b815260206004820152600f60248201527f5472616e73666572206661696c656400000000000000000000000000000000006044820152606401610230565b50506103b46001600055565b565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610409573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061042d91906109d7565b6001600160a01b0316336001600160a01b03161461047e5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610230565b6000600354116104d05760405162461bcd60e51b815260206004820152601060248201527f4e6f207374616b656420746f6b656e73000000000000000000000000000000006044820152606401610230565b60035434906104e782670de0b6b3a7640000610a0a565b6104f19190610a21565b600460008282546105029190610a43565b909155505050565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561055d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058191906109d7565b6001600160a01b0316336001600160a01b0316146105d25760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610230565b6106106040518060400160405280600481526020017f4275726e000000000000000000000000000000000000000000000000000000008152506108df565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6106476107f0565b33600090815260056020526040812080549091839183919061066a908490610a43565b9250508190555081600360008282546106839190610a43565b90915550610692905033610833565b6002546040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018490526001600160a01b03909116906323b872dd9060640161029e565b600160009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561073b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061075f91906109d7565b6001600160a01b0316336001600160a01b0316146107b05760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610230565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60006107ea82610876565b92915050565b60026000540361082c576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600055565b6001600160a01b03811660009081526005602052604090206004548154670de0b6b3a76400009161086391610a0a565b61086d9190610a21565b60019091015550565b6001600160a01b038116600090815260056020908152604080832081518083019092528054808352600190910154928201839052600454919291670de0b6b3a7640000916108c49190610a0a565b6108ce9190610a21565b6108d89190610a56565b9392505050565b6001546040517f358177730000000000000000000000000000000000000000000000000000000081526000916001600160a01b031690633581777390610929908590600401610a69565b602060405180830381865afa158015610946573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ea91906109d7565b60006020828403121561097c57600080fd5b5035919050565b6001600160a01b03811681146102ed57600080fd5b6000602082840312156109aa57600080fd5b81356108d881610983565b6000602082840312156109c757600080fd5b815180151581146108d857600080fd5b6000602082840312156109e957600080fd5b81516108d881610983565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107ea576107ea6109f4565b600082610a3e57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156107ea576107ea6109f4565b818103818111156107ea576107ea6109f4565b602081526000825180602084015260005b81811015610a975760208186018101516040868401015201610a7a565b506000604082850101526040601f19601f8301168401019150509291505056fea264697066735822122001e8e36f69f6235412160478ff7064d12a01719e71b3c7fac65ad65ab7210f6d64736f6c634300081a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000781a403332280b6e96b9968082b6c175b05d5ea1

-----Decoded View---------------
Arg [0] : _manager (address): 0x781a403332280b6E96b9968082B6c175b05d5Ea1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000781a403332280b6e96b9968082b6c175b05d5ea1


Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.