ETH Price: $1,584.55 (-2.85%)
    /

    Contract

    0xDf70075737E9F96B078ab4461EeE3e055E061223

    Overview

    ETH Balance

    0 ETH

    ETH Value

    $0.00
    Amount:Between 1-10
    Reset Filter

    Transaction Hash
    Method
    Block
    Age
    From
    To
    Amount

    There are no matching entries

    2 Internal Transactions and 8 Token Transfers found.

    Latest 2 internal transactions

    Parent Transaction Hash Block Age From To Amount
    64704202025-04-11 14:12:434 days ago1744380763
    0xDf700757...55E061223
    0.04648913 ETH
    56062822025-04-01 5:24:1014 days ago1743485050
     Contract Creation
    0 ETH
    Loading...
    Loading

    Contract Source Code Verified (Exact Match)

    Contract Name:
    Bigcoin

    Compiler Version
    v0.8.26+commit.8a97fa7a

    ZkSolc Version
    v1.5.11

    Optimization Enabled:
    Yes with Mode 3

    Other Settings:
    cancun EvmVersion
    File 1 of 7 : Bigcoin.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    //SPDX-License-Identifier: Unlicense
    pragma solidity ^0.8.19;
    import "@openzeppelin/token/ERC20/IERC20.sol";
    import "@openzeppelin/token/ERC20/ERC20.sol";
    import "@openzeppelin/access/Ownable.sol";
    contract Bigcoin is ERC20, Ownable {
    error NotMinter();
    uint256 public constant MAX_SUPPLY = 21_000_000e18;
    /// @dev is Main.sol
    address public minter;
    uint256 public amtBurned;
    constructor() ERC20("Bigcoin", "BIG") Ownable(msg.sender) {}
    /**
    * @dev Mints tokens when a miner claims their rewards.
    */
    function mint(address to, uint256 amount) external {
    if (msg.sender != minter) revert NotMinter();
    uint256 newSupply = totalSupply() + amount;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 7 : IERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // 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.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 7 : ERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/ERC20.sol)
    pragma solidity ^0.8.20;
    import {IERC20} from "./IERC20.sol";
    import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
    import {Context} from "../../utils/Context.sol";
    import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";
    /**
    * @dev Implementation of the {IERC20} interface.
    *
    * This implementation is agnostic to the way tokens are created. This means
    * that a supply mechanism has to be added in a derived contract using {_mint}.
    *
    * TIP: For a detailed writeup see our guide
    * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
    * to implement supply mechanisms].
    *
    * The default value of {decimals} is 18. To change this, you should override
    * this function so it returns a different value.
    *
    * We have followed general OpenZeppelin Contracts guidelines: functions revert
    * instead returning `false` on failure. This behavior is nonetheless
    * conventional and does not conflict with the expectations of ERC-20
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 7 : Ownable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // 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);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 5 of 7 : IERC20Metadata.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)
    pragma solidity ^0.8.20;
    import {IERC20} from "../IERC20.sol";
    /**
    * @dev Interface for the optional metadata functions from the ERC-20 standard.
    */
    interface IERC20Metadata is IERC20 {
    /**
    * @dev Returns the name of the token.
    */
    function name() external view returns (string memory);
    /**
    * @dev Returns the symbol of the token.
    */
    function symbol() external view returns (string memory);
    /**
    * @dev Returns the decimals places of the token.
    */
    function decimals() external view returns (uint8);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 6 of 7 : Context.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // 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;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 7 of 7 : draft-IERC6093.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Standard ERC-20 Errors
    * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
    */
    interface IERC20Errors {
    /**
    * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    * @param balance Current balance for the interacting account.
    * @param needed Minimum amount required to perform a transfer.
    */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
    /**
    * @dev Indicates a failure with the token `sender`. Used in transfers.
    * @param sender Address whose tokens are being transferred.
    */
    error ERC20InvalidSender(address sender);
    /**
    * @dev Indicates a failure with the token `receiver`. Used in transfers.
    * @param receiver Address to which tokens are being transferred.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    {
    "viaIR": false,
    "codegen": "yul",
    "remappings": [
    "@openzeppelin/=lib/openzeppelin-contracts/contracts/",
    "solady/=lib/solady/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/"
    ],
    "evmVersion": "cancun",
    "outputSelection": {
    "*": {
    "*": [
    "abi"
    ]
    }
    },
    "optimizer": {
    "enabled": true,
    "mode": "3",
    "fallback_to_optimizing_for_size": false,
    "disable_system_request_memoization": true
    },
    "metadata": {},
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract Security Audit

    Contract ABI

    API
    [{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"NotMinter","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amtBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

    9c4d535b000000000000000000000000000000000000000000000000000000000000000001000133613093e0ec02900a8a4c1f314c351d4f1a993971d79bc505e6c1a32200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

    Deployed Bytecode

    0x00050000000000020000008003000039000000400030043f0000000100200190000000370000c13d0000006002100270000000f302200197000000040020008c000002de0000413d000000000301043b000000e003300270000001010030009c0000006b0000213d0000010e0030009c0000009c0000a13d0000010f0030009c000000cf0000a13d000001100030009c000001390000613d000001110030009c000001400000613d000001120030009c000002de0000c13d000000440020008c000002de0000413d0000000002000416000000000002004b000002de0000c13d0000000402100370000000000402043b000000fd0040009c000002de0000213d0000002401100370000000000501043b0000000601000039000000000101041a000000fd011001970000000002000411000000000012004b000002100000c13d0000000201000039000000000201041a000000000052001a000000310000413d0000000003520019000001280030009c000002ad0000a13d000001280020009c000002ac0000a13d0000012a01000041000000000010043f0000001101000039000000040010043f0000011b01000041000003ca000104300000000001000416000000000001004b000002de0000c13d0000000701000039000000800010043f000000f401000041000000a00010043f0000010001000039000000400010043f0000000301000039000000c00010043f000000f502000041000000e00020043f000000000201041a000000010320019000000001022002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000043004b000000650000c13d000000200020008c000000580000413d000000000010043f000000f6030000410000001f022000390000000502200270000000f70220009a000000000003041b0000000103300039000000000023004b000000540000413d000000f802000041000000000021041b0000000401000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000000870000613d0000012a01000041000000000010043f0000002201000039000000040010043f0000011b01000041000003ca00010430000001020030009c000000a70000a13d000001030030009c0000010a0000a13d000001040030009c000001470000613d000001050030009c000001600000613d000001060030009c000002de0000c13d000000240020008c000002de0000413d0000000002000416000000000002004b000002de0000c13d0000000401100370000000000101043b000000fd0010009c000002de0000213d000500000001001d03c803a10000040f0000000601000039000000000201041a000000fc0220019700000005022001af000000000021041b0000000001000019000003c90001042e000000200020008c000000920000413d000000000010043f000000f9030000410000001f022000390000000502200270000000fa0220009a000000000003041b0000000103300039000000000023004b0000008e0000413d000000fb02000041000000000021041b0000000006000411000000000006004b000000b90000c13d0000011c01000041000000000010043f000000040000043f0000011b01000041000003ca00010430000001150030009c000001230000213d000001180030009c000001800000613d000001190030009c000002de0000c13d0000000001000416000000000001004b000002de0000c13d0000000601000039000001340000013d000001090030009c0000012c0000213d0000010c0030009c000001980000613d0000010d0030009c000002de0000c13d000000240020008c000002de0000413d0000000002000416000000000002004b000002de0000c13d0000000401100370000000000101043b000000fd0010009c000002de0000213d000000000010043f000000200000043f0000015d0000013d0000000501000039000000000201041a000000fc03200197000000000363019f000000000031041b0000000001000414000000fd05200197000000f30010009c000000f301008041000000c001100210000000fe011001c70000800d020000390000000303000039000000ff0400004103c803be0000040f0000000100200190000002de0000613d0000002001000039000001000010044300000120000004430000010001000041000003c90001042e000001130030009c000001aa0000613d000001140030009c000002de0000c13d000000640020008c000002de0000413d0000000002000416000000000002004b000002de0000c13d0000000402100370000000000302043b000000fd0030009c000002de0000213d0000002402100370000000000202043b000500000002001d000000fd0020009c000002de0000213d0000004401100370000000000101043b000300000001001d000000000030043f0000000101000039000000200010043f0000000001000414000000f30010009c000000f301008041000000c00110021000000120011001c70000801002000039000400000003001d03c803c30000040f0000000100200190000002de0000613d000000000101043b0000000002000411000000fd02200197000200000002001d000000000020043f000000200010043f0000000001000414000000f30010009c000000f301008041000000c00110021000000120011001c7000080100200003903c803c30000040f00000004030000290000000100200190000002de0000613d000000000101043b000000000101041a0000012f0010009c000002e00000c13d00000000010300190000000502000029000000030300002903c803450000040f000002a40000013d000001070030009c000001b20000613d000001080030009c000002de0000c13d000000440020008c000002de0000413d0000000002000416000000000002004b000002de0000c13d0000000402100370000000000202043b000000fd0020009c000002de0000213d0000002401100370000000000301043b000000000100041103c803450000040f0000000101000039000000400200043d0000000000120435000000f30020009c000000f30200804100000040012002100000011e011001c7000003c90001042e000001160030009c000001ca0000613d000001170030009c000002de0000c13d0000000001000416000000000001004b000002de0000c13d0000000701000039000001ae0000013d0000010a0030009c000001da0000613d0000010b0030009c000002de0000c13d0000000001000416000000000001004b000002de0000c13d0000000501000039000000000101041a000000fd01100197000000800010043f0000011d01000041000003c90001042e0000000001000416000000000001004b000002de0000c13d0000001201000039000000800010043f0000011d01000041000003c90001042e0000000001000416000000000001004b000002de0000c13d0000012801000041000000800010043f0000011d01000041000003c90001042e000000440020008c000002de0000413d0000000002000416000000000002004b000002de0000c13d0000000402100370000000000202043b000000fd0020009c000002de0000213d0000002401100370000000000101043b000000fd0010009c000002de0000213d000000000020043f000500000001001d0000000101000039000000200010043f000000400100003903c803ad0000040f0000000502000029000000000020043f000000200010043f000000400100003903c803ad0000040f000001ae0000013d000000240020008c000002de0000413d0000000002000416000000000002004b000002de0000c13d0000000401100370000000000601043b000000fd0060009c000002de0000213d0000000501000039000000000201041a000000fd032001970000000005000411000000000053004b000001f20000c13d000000000006004b000000970000613d000000fc02200197000000000262019f000000000021041b0000000001000414000000f30010009c000000f301008041000000c001100210000000fe011001c70000800d020000390000000303000039000000ff0400004103c803be0000040f0000000100200190000002de0000613d000002af0000013d0000000001000416000000000001004b000002de0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000650000c13d000000800010043f000000000005004b000002140000c13d0000013001200197000000a00010043f000000000004004b00000020020000390000000002006039000002200000013d000000240020008c000002de0000413d0000000002000416000000000002004b000002de0000c13d0000000702000039000000000302041a0000000401100370000000000401043b000000000043001a000000310000413d0000000001430019000000000012041b0000000001000411000000000001004b000001f70000c13d0000012501000041000000980000013d0000000001000416000000000001004b000002de0000c13d0000000201000039000000000101041a000000800010043f0000011d01000041000003c90001042e0000000001000416000000000001004b000002de0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000650000c13d000000800010043f000000000005004b000002220000c13d0000013001200197000000a00010043f000000000004004b000000c001000039000000a0010060390000025a0000013d000000440020008c000002de0000413d0000000002000416000000000002004b000002de0000c13d0000000402100370000000000302043b000000fd0030009c000002de0000213d0000002401100370000000000201043b0000000001000411000000000001004b000002270000c13d0000012e01000041000000980000013d0000000001000416000000000001004b000002de0000c13d0000000501000039000000000201041a000000fd032001970000000005000411000000000053004b000001f20000c13d000000fc02200197000000000021041b0000000001000414000000f30010009c000000f301008041000000c001100210000000fe011001c70000800d020000390000000303000039000000ff04000041000000000600001903c803be0000040f0000000100200190000002af0000c13d000002de0000013d0000011a01000041000000000010043f000000040050043f0000011b01000041000003ca00010430000500000004001d000000000010043f000000200000043f0000000001000414000000f30010009c000000f301008041000000c00110021000000120011001c7000080100200003903c803c30000040f0000000100200190000002de0000613d0000000003000411000000000101043b000000000101041a0000000504000029000000000241004b0000022b0000813d0000012302000041000000000020043f000000040030043f000000240010043f000000440040043f0000012401000041000003ca000104300000012601000041000000000010043f0000012701000041000003ca00010430000000000030043f000000020020008c000002250000413d000000f6030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000002190000413d0000003f012000390000025b0000013d000000000030043f000000020020008c0000024f0000813d0000002001000039000002640000013d000000000003004b000002730000c13d0000012d01000041000000980000013d000400000002001d000000000030043f000000200000043f0000000001000414000000f30010009c000000f301008041000000c00110021000000120011001c7000080100200003903c803c30000040f0000000100200190000002de0000613d000000000101043b0000000402000029000000000021041b0000000201000039000000000201041a00000005030000290000000002320049000000000021041b000000400100043d0000000000310435000000f30010009c000000f30100804100000040011002100000000002000414000000f30020009c000000f302008041000000c002200210000000000112019f00000121011001c70000800d02000039000000030300003900000122040000410000000005000411000001ed0000013d000000f90200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002510000413d000000c001300039000000610110008a00000131011001970000011f0010009c000002640000a13d0000012a01000041000000000010043f0000004101000039000000040010043f0000011b01000041000003ca000104300000008001100039000500000001001d000000400010043f000000800200003903c803100000040f00000005020000290000000001210049000000f30010009c000000f3010080410000006001100210000000f30020009c000000f3020080410000004002200210000000000121019f000003c90001042e000400000002001d000000000010043f0000000101000039000000200010043f0000000001000414000000f30010009c000000f301008041000000c00110021000000120011001c70000801002000039000500000003001d03c803c30000040f00000005030000290000000100200190000002de0000613d000000000101043b000000000030043f000000200010043f0000000001000414000000f30010009c000000f301008041000000c00110021000000120011001c7000080100200003903c803c30000040f00000005060000290000000100200190000002de0000613d000000000101043b0000000402000029000000000021041b000000400100043d0000000000210435000000f30010009c000000f30100804100000040011002100000000002000414000000f30020009c000000f302008041000000c002200210000000000112019f00000121011001c70000800d0200003900000003030000390000012c04000041000000000500041103c803be0000040f0000000100200190000002de0000613d000000400100043d00000001020000390000000000210435000000f30010009c000000f30100804100000040011002100000011e011001c7000003c90001042e0000012805200099000000000005004b000002b10000c13d0000000001000019000003c90001042e000000000004004b000002b50000c13d0000012901000041000000980000013d000000000025001a000000310000413d0000000002250019000000000021041b000000000040043f000000200000043f0000000001000414000000f30010009c000000f301008041000000c00110021000000120011001c70000801002000039000500000004001d000400000005001d03c803c30000040f000000040300002900000005060000290000000100200190000002de0000613d000000000101043b000000000201041a0000000002320019000000000021041b000000400100043d0000000000310435000000f30010009c000000f30100804100000040011002100000000002000414000000f30020009c000000f302008041000000c002200210000000000112019f00000121011001c70000800d0200003900000003030000390000012204000041000000000500001903c803be0000040f0000000100200190000002af0000c13d0000000001000019000003ca00010430000000030210006c000002eb0000813d0000012b02000041000000000020043f0000000002000411000000040020043f000000240010043f0000000301000029000000440010043f0000012401000041000003ca00010430000100000002001d000000000003004b000001d80000613d0000000001000411000000000001004b000002290000613d0000000401000029000000000010043f0000000101000039000000200010043f0000000001000414000000f30010009c000000f301008041000000c00110021000000120011001c7000080100200003903c803c30000040f0000000100200190000002de0000613d000000000101043b0000000202000029000000000020043f000000200010043f0000000001000414000000f30010009c000000f301008041000000c00110021000000120011001c7000080100200003903c803c30000040f00000004030000290000000100200190000002de0000613d000000000101043b0000000102000029000000000021041b000001050000013d000000200300003900000000033104360000000042020434000000000023043500000131062001970000001f0520018f0000004001100039000000000014004b000003290000813d000000000006004b000003250000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c0000031f0000c13d000000000005004b0000033f0000613d0000000007010019000003350000013d0000000007610019000000000006004b000003320000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b0000032e0000c13d000000000005004b0000033f0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000421001900000000000404350000001f0220003900000131022001970000000001210019000000000001042d0004000000000002000400000003001d000000fd01100198000003910000613d000200fd0020019c000003930000613d000300000001001d000000000010043f000000200000043f0000000001000414000000f30010009c000000f301008041000000c00110021000000120011001c7000080100200003903c803c30000040f00000001002001900000038f0000613d000000000101043b000000000101041a0001000400100074000003980000413d0000000301000029000000000010043f000000200000043f0000000001000414000000f30010009c000000f301008041000000c00110021000000120011001c7000080100200003903c803c30000040f00000001002001900000038f0000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f000000200000043f0000000001000414000000f30010009c000000f301008041000000c00110021000000120011001c7000080100200003903c803c30000040f00000001002001900000038f0000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000000f30010009c000000f30100804100000040011002100000000002000414000000f30020009c000000f302008041000000c002200210000000000112019f00000121011001c70000800d02000039000000030300003900000122040000410000000305000029000000020600002903c803be0000040f00000001002001900000038f0000613d000000000001042d0000000001000019000003ca000104300000012501000041000003940000013d0000012901000041000000000010043f000000040000043f0000011b01000041000003ca000104300000012302000041000000000020043f0000000302000029000000040020043f000000240010043f0000000401000029000000440010043f0000012401000041000003ca000104300000000501000039000000000101041a000000fd021001970000000001000411000000000012004b000003a80000c13d000000000001042d0000011a02000041000000000020043f000000040010043f0000011b01000041000003ca00010430000000f30010009c000000f30100804100000060011002100000000002000414000000f30020009c000000f302008041000000c002200210000000000112019f000000fe011001c7000080100200003903c803c30000040f0000000100200190000003bc0000613d000000000101043b000000000001042d0000000001000019000003ca00010430000003c1002104210000000102000039000000000001042d0000000002000019000000000001042d000003c6002104230000000102000039000000000001042d0000000002000019000000000001042d000003c800000432000003c90001042e000003ca00010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff426967636f696e000000000000000000000000000000000000000000000000004249470000000000000000000000000000000000000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5426967636f696e0000000000000000000000000000000000000000000000000e8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b75ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e654249470000000000000000000000000000000000000000000000000000000006ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000002000000000000000000000000000000400000010000000000000000000000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000fca3b5aa0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000018160ddc00000000000000000000000000000000000000000000000000000000313ce56600000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000032cb6b0c0000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000095ea7b200000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000a7d242c0000000000000000000000000000000000000000000000000000000006fdde030000000000000000000000000000000000000000000000000000000007546172118cdaa70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000001e4fbdf70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000008000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f02000000000000000000000000000000000000400000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efe450d38c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000096c6fd1e00000000000000000000000000000000000000000000000000000000f8d2906c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000115eec47f6cf7e35000000ec442f05000000000000000000000000000000000000000000000000000000004e487b7100000000000000000000000000000000000000000000000000000000fb8f41b2000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92594280d6200000000000000000000000000000000000000000000000000000000e602df0500000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0f0bd2000a72e1a531757081ba789e6cbe3318126eec5e6fc5da6cb4ce2a1bae2

    Block Age Transaction Gas Used Reward
    view all blocks produced

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

    Validator Index Block Age Amount
    View All Withdrawals

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