Sophon Testnet
    /

    Contract

    0xb8A52327d30Ba5097B2Cdc72322D9A6e55bB36Dc

    Overview

    SOPH Balance

    Sophon Sepolia  LogoSophon Sepolia  LogoSophon Sepolia  Logo0 SOPH

    Multichain Info

    N/A
    Transaction Hash
    Method
    Block
    Age
    From
    To

    There are no matching entries

    2 Internal Transactions found.

    Latest 2 internal transactions

    Advanced mode:
    Parent Transaction Hash Block Age From To Amount
    7453982025-03-18 12:10:3734 days ago1742299837
    0xb8A52327...e55bB36Dc
    0 SOPH
    7453982025-03-18 12:10:3734 days ago1742299837
     Contract Creation
    0 SOPH
    Loading...
    Loading

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

    Contract Name:
    SPHNX

    Compiler Version
    v0.8.27+commit.40a35a09

    ZkSolc Version
    v1.5.11

    Optimization Enabled:
    Yes with Mode 3

    Other Settings:
    paris EvmVersion

    Contract Source Code (Solidity Standard Json-Input format)

    File 1 of 4 : SPHNX.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
    import "@openzeppelin/contracts/access/Ownable.sol";
    import "@openzeppelin/contracts/utils/Pausable.sol";
    pragma solidity ^0.8.13;
    contract SPHNX is Ownable, Pausable {
    // State variables
    uint256 public messagePrice;
    uint256 public messagesProcessed;
    address public winner;
    // Constants for withdrawal splits
    uint256 private constant WINNER_SHARE = 70;
    uint256 private constant OWNER_SHARE = 30;
    // Mapping to track user's paid messages
    mapping(address => uint256) public userMessages;
    // Mapping to track if a transaction hash has been used
    mapping(bytes32 => bool) public usedTransactionHashes;
    // Events
    event MessagePaid(address indexed user, uint256 amount, uint256 timestamp);
    event PriceUpdated(uint256 newPrice);
    event FundsWithdrawn(address indexed to, uint256 amount);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 4 : 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 3 of 4 : Pausable.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) (utils/Pausable.sol)
    pragma solidity ^0.8.20;
    import {Context} from "../utils/Context.sol";
    /**
    * @dev Contract module which allows children to implement an emergency stop
    * mechanism that can be triggered by an authorized account.
    *
    * This module is used through inheritance. It will make available the
    * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
    * the functions of your contract. Note that they will not be pausable by
    * simply including this module, only once the modifiers are put in place.
    */
    abstract contract Pausable is Context {
    bool private _paused;
    /**
    * @dev Emitted when the pause is triggered by `account`.
    */
    event Paused(address account);
    /**
    * @dev Emitted when the pause is lifted by `account`.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 4 : 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

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    {
    "evmVersion": "paris",
    "optimizer": {
    "enabled": true,
    "mode": "3"
    },
    "outputSelection": {
    "*": {
    "*": [
    "abi"
    ]
    }
    },
    "detectMissingLibraries": false,
    "forceEVMLA": false,
    "enableEraVMExtensions": false,
    "libraries": {}
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract ABI

    API
    [{"inputs":[{"internalType":"uint256","name":"_initialPrice","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"InsufficientPayment","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"NoWinnerSet","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TransactionAlreadyUsed","type":"error"},{"inputs":[],"name":"UnauthorizedWithdrawal","type":"error"},{"inputs":[],"name":"WithdrawalFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FundsWithdrawn","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":"timestamp","type":"uint256"}],"name":"MessagePaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"OwnerWithdrawal","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"PriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"winner","type":"address"}],"name":"WinnerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"winner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WinnerWithdrawal","type":"event"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getMessageCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"txHash","type":"bytes32"}],"name":"isTransactionUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"messagePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"messagesProcessed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payForMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_winner","type":"address"}],"name":"setWinner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"usedTransactionHashes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMessages","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"winner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

    Deployed Bytecode

    0x00030000000000020000006003100270000000d3033001970000000100200190000000180000c13d0000008002000039000000400020043f000000040030008c000000400000413d000000000201043b000000e002200270000000dc0020009c000000440000213d000000e90020009c000000880000a13d000000ea0020009c000000ba0000a13d000000eb0020009c000001470000613d000000ec0020009c0000014f0000613d000000ed0020009c000001070000613d000002150000013d0000000002000416000000000002004b000002150000c13d0000001f02300039000000d4022001970000008002200039000000400020043f0000001f0430018f000000d5053001980000008002500039000000290000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000000250000c13d000000000004004b000000360000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c000002150000413d0000000006000411000000000006004b0000006a0000c13d000000f801000041000000000010043f000000040000043f000000f6010000410000034b00010430000000000003004b000002150000c13d00000000010000190000034a0001042e000000dd0020009c0000009d0000a13d000000de0020009c000000cc0000a13d000000df0020009c000001590000613d000000e00020009c000001620000613d000000e10020009c000002150000c13d000000240030008c000002150000413d0000000002000416000000000002004b000002150000c13d0000000401100370000000000101043b000000d70010009c000002150000213d000000000200041a000000d7032001970000000005000411000000000053004b0000018e0000c13d000000d7061001980000003b0000613d000000f701200197000000000161019f000000000010041b0000000001000414000000d30010009c000000d301008041000000c001100210000000d6011001c70000800d020000390000000303000039000000d804000041000002120000013d000000800100043d000200000001001d000000000200041a0000000001000414000000d30010009c000000d301008041000000c001100210000000d6011001c7000100000002001d000000d7052001970000800d020000390000000303000039000000d8040000410349033f0000040f0000000100200190000002150000613d0000000001000411000000d9011001970000000102000029000000da02200197000000000112019f000000000010041b00000001010000390000000202000029000000000021041b000000200100003900000100001004430000012000000443000000db010000410000034a0001042e000000f00020009c000000ea0000213d000000f30020009c000000ee0000613d000000f40020009c000002150000c13d0000000001000416000000000001004b000002150000c13d0000000001000410000300000001001d0000800a0100003900000024030000390000000004000415000000030440008a00000005044002100000010e02000041034903280000040f000000800010043f00000102010000410000034a0001042e000000e40020009c000000fe0000213d000000e70020009c000001170000613d000000e80020009c000002150000c13d0000000001000416000000000001004b000002150000c13d000000000200041a000000d7032001970000000001000411000000000013004b000001890000c13d000000f900200198000001850000c13d000000d9022001970000010a022001c7000000000020041b000000800010043f0000000001000414000000d30010009c000000d301008041000000c00110021000000107011001c70000800d0200003900000001030000390000010b04000041000002120000013d000000ee0020009c0000016e0000613d000000ef0020009c000002150000c13d0000000001000416000000000001004b000002150000c13d000000000200041a000000d7032001970000000001000411000000000013004b000001890000c13d000000f900200198000002070000c13d0000010d01000041000000000010043f000000ff010000410000034b00010430000000e20020009c000001070000613d000000e30020009c000002150000c13d000000240030008c000002150000413d0000000002000416000000000002004b000002150000c13d0000000401100370000000000101043b000000d70010009c000002150000213d000000000200041a000000d7032001970000000002000411000000000023004b000001930000c13d000000d705100198000002230000c13d0000010401000041000000800010043f0000002001000039000000840010043f0000001601000039000000a40010043f0000010501000041000000c40010043f00000106010000410000034b00010430000000f10020009c0000012b0000613d000000f20020009c000002150000c13d000000240030008c000002150000413d0000000002000416000000000002004b000002150000c13d0000000401100370000000000101043b000000000010043f0000000501000039000000200010043f00000040020000390000000001000019034903130000040f000000000101041a000000ff00100190000001540000013d000000e50020009c000001300000613d000000e60020009c000002150000c13d0000000001000416000000000001004b000002150000c13d000000000100041a0000015e0000013d000000240030008c000002150000413d0000000002000416000000000002004b000002150000c13d0000000401100370000000000101043b000000d70010009c000002150000213d000000000010043f0000000401000039000000200010043f00000040020000390000000001000019034903130000040f0000014b0000013d0000000001000416000000000001004b000002150000c13d000000000100041a000000d7021001970000000005000411000000000052004b0000018e0000c13d000000f701100197000000000010041b0000000001000414000000d30010009c000000d301008041000000c001100210000000d6011001c70000800d020000390000000303000039000000d8040000410000000006000019000002120000013d0000000001000416000000000001004b000002150000c13d00000002010000390000014b0000013d000000240030008c000002150000413d0000000002000416000000000002004b000002150000c13d000000000200041a000000d7032001970000000002000411000000000023004b000001930000c13d0000000401100370000000000101043b0000000103000039000000000013041b000000800010043f0000000001000414000000d30010009c000000d301008041000000c00110021000000107011001c70000800d020000390000010804000041000002120000013d0000000001000416000000000001004b000002150000c13d0000000101000039000000000101041a000000800010043f00000102010000410000034a0001042e0000000001000416000000000001004b000002150000c13d000000000100041a000000f9001001980000000001000039000000010100c039000000800010043f00000102010000410000034a0001042e0000000001000416000000000001004b000002150000c13d0000000301000039000000000101041a000000d701100197000000800010043f00000102010000410000034a0001042e000000000100041a000000f900100198000001850000c13d0000000101000039000000000101041a0000000002000416000000000012004b000001980000813d0000010101000041000000000010043f000000ff010000410000034b000104300000000001000416000000000001004b000002150000c13d0000010e010000410000000000100443000000000100041000000004001004430000000001000414000000d30010009c000000d301008041000000c0011002100000010f011001c70000800a02000039034903440000040f0000000100200190000002060000613d000000000101043b000000000001004b000002170000c13d0000011a01000041000000000010043f000000ff010000410000034b000104300000010901000041000000000010043f000000ff010000410000034b00010430000000f502000041000000000020043f000000040010043f000000f6010000410000034b00010430000000f501000041000000000010043f000000040050043f000000f6010000410000034b00010430000000f501000041000000000010043f000000040020043f000000f6010000410000034b0001043000000000010004110000006001100210000000a00010043f000000fa0100004100000000001004430000000001000414000000d30010009c000000d301008041000000c001100210000000fb011001c70000800b02000039034903440000040f0000000100200190000002060000613d000000000101043b000200000001001d000000b40010043f0000000001000416000000d40010043f0000005401000039000000800010043f0000010001000039000000400010043f0000000001000414000000d30010009c000000d301008041000000c001100210000000fc011001c70000801002000039034903440000040f0000000100200190000002150000613d000000000101043b000100000001001d000000000010043f0000000501000039000000200010043f0000000001000414000000d30010009c000000d301008041000000c001100210000000fd011001c70000801002000039034903440000040f0000000100200190000002150000613d000000000101043b000000000101041a000000ff001001900000025b0000c13d0000000101000029000000000010043f0000000501000039000000200010043f0000000001000414000000d30010009c000000d301008041000000c001100210000000fd011001c70000801002000039034903440000040f0000000100200190000002150000613d000000000101043b000000000201041a0000011b0220019700000001022001bf000000000021041b0000000001000411000000000010043f0000000401000039000000200010043f0000000001000414000000d30010009c000000d301008041000000c001100210000000fd011001c70000801002000039034903440000040f0000000100200190000002150000613d000000000101043b000000000201041a000000010220003a000002510000613d000000000021041b0000000203000039000000000103041a000000010110003a000002510000613d000000000013041b000000400100043d00000020021000390000000204000029000000000042043500000000020004160000000000210435000000d30010009c000000d30100804100000040011002100000000002000414000000d30020009c000000d302008041000000c002200210000000000112019f000000fd011001c70000800d0200003900000100040000410000000005000411000002120000013d000000000001042f000000d902200197000000000020041b000000800010043f0000000001000414000000d30010009c000000d301008041000000c00110021000000107011001c70000800d0200003900000001030000390000010c040000410349033f0000040f0000000100200190000000420000c13d00000000010000190000034b000104300000000302000039000000000202041a000000d7022001970000000004000411000000000024004b000002310000c13d000000000004004b000002430000c13d0000011901000041000000000010043f000000ff010000410000034b000104300000000301000039000000000201041a000000f702200197000000000252019f000000000021041b0000000001000414000000d30010009c000000d301008041000000c001100210000000d6011001c70000800d0200003900000002030000390000010304000041000002120000013d000000000200041a000000d702200197000000000024004b000002570000c13d0000001e021000c900000000011200d90000001e0010008c000002510000c13d000000640320011a0000000001000414000000d30010009c000000d301008041000000c001100210000000630020008c000200000003001d0000025f0000213d0000000002040019000002620000013d00000046021000c900000000011200d9000000460010008c000002510000c13d000000640320011a0000000001000414000000d30010009c000000d301008041000000c001100210000000630020008c000200000003001d0000028d0000213d0000000002040019000002900000013d0000011601000041000000000010043f0000001101000039000000040010043f000000f6010000410000034b000104300000011001000041000000000010043f000000ff010000410000034b00010430000000fe01000041000000000010043f000000ff010000410000034b00010430000000d6011001c7000080090200003900000000050000190349033f0000040f0000006003100270000000d303300198000002c00000c13d0000000100200190000002bc0000613d000000400100043d00000002020000290000000000210435000000d30010009c000000d30100804100000040011002100000000002000414000000d30020009c000000d302008041000000c002200210000000000112019f00000113011001c70000800d020000390000000203000039000001140400004100000000050004110349033f0000040f0000000100200190000002150000613d000000000200041a000000400100043d00000002030000290000000000310435000000d30010009c000000d30100804100000040011002100000000003000414000000d30030009c000000d303008041000000c003300210000000000113019f00000113011001c7000000d7052001970000800d0200003900000002030000390000011504000041000002120000013d000000d6011001c7000080090200003900000000050000190349033f0000040f0000006003100270000000d303300198000002e60000c13d0000000100200190000002bc0000613d000000400100043d00000002020000290000000000210435000000d30010009c000000d30100804100000040011002100000000002000414000000d30020009c000000d302008041000000c002200210000000000112019f00000113011001c70000800d020000390000000203000039000001140400004100000000050004110349033f0000040f0000000100200190000002150000613d0000000301000039000000000201041a000000400100043d00000002030000290000000000310435000000d30010009c000000d30100804100000040011002100000000003000414000000d30030009c000000d303008041000000c003300210000000000113019f00000113011001c7000000d7052001970000800d0200003900000002030000390000011804000041000002120000013d0000011701000041000000000010043f000000ff010000410000034b000104300000001f04300039000000d4044001970000003f044000390000011104400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000001120040009c0000030c0000213d00000001006001900000030c0000c13d000000400040043f0000001f0430018f0000000006350436000000d5053001980000000003560019000002d80000613d000000000701034f000000007807043c0000000006860436000000000036004b000002d40000c13d000000000004004b000002660000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000002660000013d0000001f04300039000000d4044001970000003f044000390000011104400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000001120040009c0000030c0000213d00000001006001900000030c0000c13d000000400040043f0000001f0430018f0000000006350436000000d5053001980000000003560019000002fe0000613d000000000701034f000000007807043c0000000006860436000000000036004b000002fa0000c13d000000000004004b000002940000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000002940000013d0000011601000041000000000010043f0000004101000039000000040010043f000000f6010000410000034b00010430000000000001042f000000d30010009c000000d3010080410000004001100210000000d30020009c000000d3020080410000006002200210000000000112019f0000000002000414000000d30020009c000000d302008041000000c002200210000000000112019f000000d6011001c70000801002000039034903440000040f0000000100200190000003260000613d000000000101043b000000000001042d00000000010000190000034b0001043000000000050100190000000000200443000000040030008c0000032f0000a13d000000050140027000000000010100310000000400100443000000d30030009c000000d30300804100000060013002100000000002000414000000d30020009c000000d302008041000000c002200210000000000112019f0000011c011001c70000000002050019034903440000040f00000001002001900000033e0000613d000000000101043b000000000001042d000000000001042f00000342002104210000000102000039000000000001042d0000000002000019000000000001042d00000347002104230000000102000039000000000001042d0000000002000019000000000001042d00000349000004320000034a0001042e0000034b0001043000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe00200000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000d7363ce600000000000000000000000000000000000000000000000000000000dfbf53ad00000000000000000000000000000000000000000000000000000000dfbf53ae00000000000000000000000000000000000000000000000000000000ecbe141400000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000d7363ce700000000000000000000000000000000000000000000000000000000d9fca769000000000000000000000000000000000000000000000000000000008d6cc56c000000000000000000000000000000000000000000000000000000008d6cc56d000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008456cb59000000000000000000000000000000000000000000000000000000003ccfd60a0000000000000000000000000000000000000000000000000000000054cc76a60000000000000000000000000000000000000000000000000000000054cc76a7000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000006cd947ee000000000000000000000000000000000000000000000000000000003ccfd60b000000000000000000000000000000000000000000000000000000003f4ba83a000000000000000000000000000000000000000000000000000000002ab9a047000000000000000000000000000000000000000000000000000000002ab9a048000000000000000000000000000000000000000000000000000000002d0a0b7c000000000000000000000000000000000000000000000000000000000aaea3a40000000000000000000000000000000000000000000000000000000012065fe0118cdaa7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000001e4fbdf7000000000000000000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000200000000000000000000000000000000000054000000a000000000000000000200000000000000000000000000000000000040000000000000000000000000830b785a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000c58f58cb6075afc65ac73e7df65ba8302aaf02b642c1d77615bf45b85d548fddcd1c88670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000008000000000000000009d5b5758df7039aae25e6ca959e5d46a5b27446b5aaa5ae9880a09de7578207908c379a000000000000000000000000000000000000000000000000000000000496e76616c69642077696e6e65722061646472657373000000000000000000000000000000000000000000000000000000000064000000800000000000000000020000000000000000000000000000000000002000000080000000000000000066cbca4f3c64fecf1dcb9ce094abcf7f68c3450a1d4e3a8e917dd621edb4ebe0d93c066500000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000062e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa8dfc202b000000000000000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f39020000020000000000000000000000000000002400000000000000000000000060b39bc50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000eaff4b37086828766ad3268786972c0cd24259d4c87a80f9d3963a3c3d999b0da919fadcfa556a012bab31b15f596ea7ccd397adbf10e15f176db9055ab361c44e487b710000000000000000000000000000000000000000000000000000000027fcd9d1000000000000000000000000000000000000000000000000000000002f12888580ba6a1c49bcb3ea76c339e3535e8043fe8f81a918dbca99a5f75b1e67ebc3cb000000000000000000000000000000000000000000000000000000002c5211c600000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00020000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005e5f0b562dfb29b8ff4ac9a21ccc6c4031b693412123bb1a1f1629b4b5010cc7

    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
    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.