Sophon Testnet
    /

    Contract

    0x8113885357ffa05e98F9E80387CF7B088e2D4328

    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

    1 Internal Transaction found.

    Latest 1 internal transaction

    Advanced mode:
    Parent Transaction Hash Block Age From To Amount
    8080852025-03-28 16:07:0723 days ago1743178027
     Contract Creation
    0 SOPH
    Loading...
    Loading

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

    Contract Name:
    TokenMakerHelper

    Compiler Version
    v0.8.24+commit.e11b9ed9

    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 3 : TokenMakerHelper.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: BUSL-1.1
    pragma solidity ^0.8.23;
    import {LibClone} from "lib/solady/src/utils/LibClone.sol";
    import {ITokenMaker} from "contracts/interfaces/ITokenMaker.sol";
    contract TokenMakerHelper {
    bytes32 MAKE_ERC20_BYTECODE_HASH =
    0x0100018f124a9280dee40aa776d1de4d7c0111b78170097b7f74985c0e44bd5e; //zkout -> MakeErc20.json -> .hash
    bytes32 ZKSYNC_CREATE2_PREFIX =
    0x2020dba91b30cc0006188af794c2fb30dd8520db7e2c088b7fc7c103c00ca494; // or keccak256("zksyncCreate2")
    int24 internal constant MIN_TICK = -887272;
    int24 internal constant MAX_TICK = -MIN_TICK;
    uint160 internal constant MIN_SQRT_RATIO = 4295128739;
    uint160 internal constant MAX_SQRT_RATIO = 1461446703485210103287273052203988822378723970342;
    address public tokenMaker;
    constructor(address _tokenMaker) {
    tokenMaker = _tokenMaker;
    }
    function helpMakeToken(
    bytes32 salt,
    uint256 virtualNewTokenAmount,
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 3 : LibClone.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
    pragma solidity ^0.8.4;
    /// @notice Minimal proxy library.
    /// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/LibClone.sol)
    /// @author Minimal proxy by 0age (https://github.com/0age)
    /// @author Clones with immutable args by wighawag, zefram.eth, Saw-mon & Natalie
    /// (https://github.com/Saw-mon-and-Natalie/clones-with-immutable-args)
    /// @author Minimal ERC1967 proxy by jtriley-eth (https://github.com/jtriley-eth/minimum-viable-proxy)
    ///
    /// @dev Minimal proxy:
    /// Although the sw0nt pattern saves 5 gas over the ERC1167 pattern during runtime,
    /// it is not supported out-of-the-box on Etherscan. Hence, we choose to use the 0age pattern,
    /// which saves 4 gas over the ERC1167 pattern during runtime, and has the smallest bytecode.
    /// - Automatically verified on Etherscan.
    ///
    /// @dev Minimal proxy (PUSH0 variant):
    /// This is a new minimal proxy that uses the PUSH0 opcode introduced during Shanghai.
    /// It is optimized first for minimal runtime gas, then for minimal bytecode.
    /// The PUSH0 clone functions are intentionally postfixed with a jarring "_PUSH0" as
    /// many EVM chains may not support the PUSH0 opcode in the early months after Shanghai.
    /// Please use with caution.
    /// - Automatically verified on Etherscan.
    ///
    /// @dev Clones with immutable args (CWIA):
    /// The implementation of CWIA here is does NOT append the immutable args into the calldata
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 3 : ITokenMaker.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: BUSL-1.1
    pragma solidity ^0.8.23;
    interface ITokenMaker {
    // ======================= Struct =======================
    /**
    * @dev Parameters for creating a new token in the TokenMaker contract.
    * @param salt Unique identifier used to generate the token address deterministically.
    * @param totalSupply Total supply of the token being created.
    * @param startingTick Initial tick corresponding to initial price of the liquidity pool.
    * @param feeRecipients Array of addresses that will receive fees from token transactions.
    * @param feeBPS Array of fee basis points (BPS) corresponding to each fee recipient.
    */
    struct MakeParams {
    bytes32 salt;
    uint256 totalSupply;
    int24 startingTick;
    address[] feeRecipients;
    uint256[] feeBPS;
    }
    /**
    * @dev Initialization parameters for deploying the TokenMaker contract.
    * @param escrowImpl Address of the escrow implementation contract.
    * @param tokenImpl Address of the token implementation contract.
    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": [
    "forge-std/=lib/forge-std/src/",
    "zksync-oz/=lib/zksync-era/contracts/l1-contracts/lib/murky/lib/openzeppelin-contracts/",
    "@matterlabs/=lib/zksync-era/contracts/",
    "ds-test/=lib/zksync-era/contracts/l1-contracts/lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/zksync-era/contracts/lib/openzeppelin-contracts-upgradeable-v4/lib/erc4626-tests/",
    "forge-zksync-std/=lib/forge-zksync-std/src/",
    "murky/=lib/zksync-era/contracts/lib/murky/",
    "openzeppelin-contracts-upgradeable-v4/=lib/zksync-era/contracts/lib/openzeppelin-contracts-upgradeable-v4/",
    "openzeppelin-contracts-v4/=lib/zksync-era/contracts/lib/openzeppelin-contracts-v4/",
    "openzeppelin-contracts/=lib/zksync-era/contracts/lib/murky/lib/openzeppelin-contracts/",
    "solady/=lib/solady/src/",
    "zksync-era/=lib/zksync-era/"
    ],
    "evmVersion": "paris",
    "outputSelection": {
    "*": {
    "*": [
    "abi"
    ]
    }
    },
    "optimizer": {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract ABI

    API
    [{"inputs":[{"internalType":"address","name":"_tokenMaker","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"reserve1","type":"uint256"},{"internalType":"uint256","name":"reserve0","type":"uint256"}],"name":"encodePriceSqrt","outputs":[{"internalType":"uint160","name":"","type":"uint160"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256","name":"virtualNewTokenAmount","type":"uint256"},{"internalType":"uint256","name":"virtualCounterAssetAmount","type":"uint256"}],"name":"helpMakeToken","outputs":[{"internalType":"address","name":"newToken","type":"address"},{"internalType":"int24","name":"startingTick","type":"int24"},{"internalType":"uint160","name":"roundedPrice","type":"uint160"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"predictTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenMaker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

    Deployed Bytecode

    0x00060000000000020000006003100270000000e50330019700000001002001900000001a0000c13d0000008002000039000000400020043f000000040030008c0000010f0000413d000000000201043b000000e002200270000000ed0020009c0000004c0000213d000000f00020009c000000590000613d000000f10020009c0000010f0000c13d0000000001000416000000000001004b0000010f0000c13d0000000201000039000000000101041a000000e801100197000000800010043f000000f401000041000003900001042e0000000002000416000000000002004b0000010f0000c13d0000001f02300039000000e6022001970000008002200039000000400020043f0000001f0430018f000000e70530019800000080025000390000002b0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000000270000c13d000000000004004b000000380000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c0000010f0000413d000000800100043d000000e80010009c0000010f0000213d000000e902000041000000000020041b000000ea020000410000000103000039000000000023041b0000000202000039000000000302041a000000eb03300197000000000113019f000000000012041b000000200100003900000100001004430000012000000443000000ec01000041000003900001042e000000ee0020009c000000f80000613d000000ef0020009c0000010f0000c13d000000240030008c0000010f0000413d0000000002000416000000000002004b0000010f0000c13d0000000401100370000000000101043b038f02830000040f000001140000013d000000640030008c0000010f0000413d0000000002000416000000000002004b0000010f0000c13d0000000102000039000000000202041a000600000002001d0000000202000039000000000202041a000400000002001d0000000402100370000000000202043b000500000002001d0000004402100370000000000202043b000100000002001d0000002401100370000000000101043b000200000001001d000000000100041a000300000001001d000000800000043f000000a001000039000000400010043f0000000001000414000000e50010009c000000e501008041000000c001100210000000f5011001c70000801002000039038f038a0000040f00000001002001900000010f0000613d000000000101043b0000000602000029000000c00020043f0000000402000029000000e802200197000000e00020043f0000000502000029000001000020043f0000000302000029000001200020043f000001400010043f000000a001000039000000a00010043f0000016001000039000000400010043f0000000001000414000000e50010009c000000e501008041000000c001100210000000f6011001c70000801002000039038f038a0000040f00000001002001900000010f0000613d000000000101043b000500000001001d0000000201000039000000000201041a000000400300043d000600000003001d000000f7010000410000000000130435000000e50030009c000000e501000041000000000103401900000040011002100000000003000414000000e50030009c000000e503008041000000c003300210000000000113019f000000f8011001c7000000e802200197038f038a0000040f000000060b0000290000006003100270000000e503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000000b70000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000000b30000c13d000000000006004b000000c40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000011b0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000000f90010009c000001390000213d0000000100200190000001390000c13d000000400010043f000000200030008c0000010f0000413d00000000020b0433000000fa0020009c0000010f0000813d0000000503000029000000e80a3001970000000000a2004b00000001030000290000000202000029000000000203401900000000040300190000000204004029000000c003400210000000000004004b000000e40000613d00000000044300d9000000f30040009c000002420000c13d000000000002004b000001090000613d00000000022300d9000000040020008c000001450000413d00000001032002700000000104300039000000000024004b0000013f0000813d000000000004004b000001090000613d000000000304001900000000044200d9000000000034001a000002420000413d00000000043400190000000104400270000000000034004b000000ed0000413d000001400000013d000000440030008c0000010f0000413d0000000002000416000000000002004b0000010f0000c13d0000002402100370000000000202043b0000000401100370000000000301043b000000c001300210000000000003004b000001070000613d00000000033100d9000000f30030009c000002420000c13d000000000002004b000001110000c13d0000011e01000041000000000010043f0000001201000039000000040010043f0000011f0100004100000391000104300000000001000019000003910001043000000000012100d9038f03570000040f000000e801100197000000400200043d0000000000120435000000e50020009c000000e5020080410000004001200210000000f2011001c7000003900001042e0000001f0530018f000000e706300198000000400200043d0000000004620019000001260000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000001220000c13d000000000005004b000001330000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000000e50020009c000000e5020080410000004002200210000000000112019f00000391000104300000011e01000041000000000010043f0000004101000039000000040010043f0000011f0100004100000391000104300000000003020019000000e802300197000600000002001d000000fb0220009a000000fc0020009c000001550000813d00000044021000390000012003000041000000000032043500000024021000390000000103000039000000000032043500000121020000410000000000210435000000040210003900000020030000390000000000320435000000e50010009c000000e501008041000000400110021000000122011001c700000391000104300000002001300210000000fd01100197000000fe0010009c00000000020000390000008002002039000000000321022f000000f90030009c00000000040000390000004004002039000000000343022f000000e50030009c00000000050000390000002005002039000000000353022f0000ffff0030008c00000000060000390000001006002039000000000363022f000000ff0030008c00000000070000390000000807002039000000000373022f0000000f0030008c00000000080000390000000408002039000000000383022f000000030030008c00000000090000390000000209002039000000000393022f000000010030008c00000001022021bf000000000242019f000000000252019f000000000262019f000000000272019f000000000282019f000000000292019f0000007f0320008c000000000331022f0000007f0420008900000000014101cf000000000103201900000000011100a9000000ff031002700000007f04100270000000000334022f00000000033300a9000000ff043002700000007f05300270000000000445022f00000000044400a9000000ff054002700000007f06400270000000000556022f000000c001100270000000ff011001970000004002200210000000000112019f00000000025500a9000000ff052002700000007f06200270000000000556022f000000c1033002700000010003300197000000000131019f00000000035500a9000000ff053002700000007f06300270000000000556022f000000c2044002700000010104400197000000000141019f00000000045500a9000000ff054002700000007f06400270000000000556022f000000c3022002700000010202200197000000000121019f00000000025500a9000000ff052002700000007f06200270000000000556022f000000c4033002700000010303300197000000000131019f00000000035500a9000000ff053002700000007f06300270000000000556022f000000c5044002700000010404400197000001050110009a000000000114019f00000000045500a9000000ff054002700000007f06400270000000000556022f000000c6022002700000010602200197000000000121019f00000000025500a9000000ff052002700000007f06200270000000000556022f000000c7033002700000010703300197000000000131019f00000000035500a9000000ff053002700000007f06300270000000000556022f000000c8044002700000010804400197000000000141019f00000000045500a9000000ff054002700000007f06400270000000000556022f000000c9022002700000010902200197000000000121019f00000000025500a9000000ff052002700000007f06200270000000000556022f000000ca033002700000010a03300197000000000131019f000000cb034002700000010b03300197000000000131019f000000cc022002700000010c02200197000000000121019f00000000025500a9000000cd022002700000010d0220019700000000022101a00000010e012000d10000023e0000c13d000001110210009a000001130020019800000114030000410000000003006019000001150010009c000001eb0000213d000001160010009c000002420000213d00040000000a001d0000008002200270000001120220019700050000002301a3000001170110009a00000080021002700000011202200197000001130010019800000114010000410000000001006019000000000221019f000000050020006b000002000000613d0000000001020019000300000002001d038f02db0000040f000000060010006c000000030200002900000000010200190000000501002029000500000001001d00000005020000290000011201200197000001180020019800000114020000410000000002006019000000000112019f0000010f3210012c0000010f0330c0990000010f04000041000007d05440011b000000000442013f0000010f0550c09900000000235300d90000010f001001980000000005020019000000000550c089000000ff044002120000000006340049000000000446019f0000000004036019000000000003004b000000000304c019000000000002004b000000000205c0190000011204300197000001180030019800000114030000410000000003006019000000000343019f000007d0053000c90000011800500198000001140300004100000000030060190000011904500197000000000343019f000000000053004b000002420000c13d00000000040500190000011203200197000001180020019800000114020000410000000002006019000000000232019f000001150010009c000002630000a13d000001230020009c00000000010000190000010f010020410000010f022001970000010f032001670000010f0020009c00000000020000190000010f020040410000010f0030009c000000000201c019000000000002004b0000026c0000c13d0000011c0140009a0000011b0010009c000002420000413d000007d00100008a0000026b0000013d000001240020009c000002480000c13d0000010f0010009c000002480000c13d0000011e01000041000000000010043f0000001101000039000000040010043f0000011f0100004100000391000104300000010f3220012c0000010f0330c0990000010f5410012c000000000424013f0000010f0550c099000001100010009c00000000020000190000010f020040410000010f061001970000010f076001670000010f0060009c00000000060000190000010f060020410000010f0070009c000000000602c01900000000023500d9000000ff034002120000000004230049000000000334019f0000000003026019000000000002004b000000000203c019000000000006004b000002420000c13d0000010e0020009c000001e30000613d000002420000013d000001150020009c0000026c0000213d000003e80020008c0000026c0000413d0000011a0140009a0000011b0010009c000002420000413d000007d00100003900000000044100190000000001040019000500000004001d038f02db0000040f000000400300043d000300000003001d00000004020000290000000002230436000600000002001d000400000001001d00000002010000390000000502000029038f037c0000040f000000030300002900000040023000390000000404000029000000000042043500000006020000290000000000120435000000e50030009c000000e50300804100000040013002100000011d011001c7000003900001042e0006000000000002000500000001001d000000000100041a000400000001001d0000000101000039000000000101041a000600000001001d0000000201000039000000000101041a000300000001001d000000400200043d0000000001020436000001250020009c000002d30000813d000000400010043f000000e50010009c000200000001001d000000e5010080410000004001100210000100000002001d0000000002020433000000e50020009c000000e5020080410000006002200210000000000112019f0000000002000414000000e50020009c000000e502008041000000c002200210000000000112019f00000126011001c70000801002000039038f038a0000040f0000000100200190000002d90000613d000000000101043b0000000104000029000000c0024000390000000000120435000000a001400039000000040200002900000000002104350000008001400039000000050200002900000000002104350000000301000029000000e80110019700000060024000390000000000120435000000400140003900000006020000290000000000210435000000a00200003900000002030000290000000000230435000001270040009c000002d30000213d000000e002400039000000400020043f000000e50010009c000000e50100804100000040011002100000000002030433000000e50020009c000000e5020080410000006002200210000000000112019f0000000002000414000000e50020009c000000e502008041000000c002200210000000000112019f00000126011001c70000801002000039038f038a0000040f0000000100200190000002d90000613d000000000101043b000000e801100197000000000001042d0000011e01000041000000000010043f0000004101000039000000040010043f0000011f010000410000039100010430000000000100001900000391000104300000011202100197000001180010019800000114010000410000000001006019000000000121019f000001150010009c0000000003010019000002e60000a13d0000010f0010009c000003510000613d0000000003100089000001280030009c000003400000213d00000001003001900000012a0200004100000129020060410000012b042000d100000080044002700000000200300190000000000204c0190000012c042000d100000080044002700000000400300190000000000204c0190000012d042000d100000080044002700000000800300190000000000204c0190000012e042000d100000080044002700000001000300190000000000204c0190000012f042000d100000080044002700000002000300190000000000204c01900000130042000d100000080044002700000004000300190000000000204c01900000131042000d100000080044002700000008000300190000000000204c01900000132042000d100000080044002700000010000300190000000000204c01900000133042000d100000080044002700000020000300190000000000204c01900000134042000d100000080044002700000040000300190000000000204c01900000135042000d100000080044002700000080000300190000000000204c01900000136042000d100000080044002700000100000300190000000000204c01900000137042000d100000080044002700000200000300190000000000204c01900000138042000d100000080044002700000400000300190000000000204c01900000139042000d100000080044002700000800000300190000000000204c0190000013a042000d100000080044002700000013b00300198000000000204c0190000013c042000d100000080044002700000013d00300198000000000204c0190000013e042000d100000080044002700000013f00300198000000000204c019000001400030019800000141032000d1000000800230c270000001150010009c0000033b0000213d000000000001004b000000010100c08a000000000221c0d90000002001200270000000e500200198000000010110c039000000e801100197000000000001042d000000400100043d00000044021000390000014203000041000000000032043500000024021000390000000103000039000000000032043500000121020000410000000000210435000000040210003900000020030000390000000000320435000000e50010009c000000e501008041000000400110021000000122011001c700000391000104300000011e01000041000000000010043f0000001101000039000000040010043f0000011f010000410000039100010430000000040010008c0000035d0000813d000000000001004b0000036e0000613d0000000101000039000000000001042d00000001021002700000000103200039000000000013004b0000036f0000813d000000000003004b000003700000613d00000000023100d9000000000032001a000003760000413d00000000023200190000000104200270000000000034004b00000000020300190000000003040019000003610000413d0000000001020019000000000001042d0000000001000019000000000001042d0000011e01000041000000000010043f0000001201000039000000040010043f0000011f0100004100000391000104300000011e01000041000000000010043f0000001101000039000000040010043f0000011f0100004100000391000104300000001e0010008c000003880000213d000000030110021000000007011001bf000001240310021f000000000412022f00000001004001900000000003006019000001000110008900000000021201cf000000000112022f000000000213019f0000000001020019000000000001042d0000038d002104230000000102000039000000000001042d0000000002000019000000000001042d0000038f00000432000003900001042e00000391000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0100018f124a9280dee40aa776d1de4d7c0111b78170097b7f74985c0e44bd5e2020dba91b30cc0006188af794c2fb30dd8520db7e2c088b7fc7c103c00ca494ffffffffffffffffffffffff0000000000000000000000000000000000000000000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000cd309ec800000000000000000000000000000000000000000000000000000000cd309ec900000000000000000000000000000000000000000000000000000000ffb623df0000000000000000000000000000000000000000000000000000000024aea3700000000000000000000000000000000000000000000000000000000059956d460000000000000000000000000000000000000020000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000008000000000000000000200000000000000000000000000000000000000000000a0000000000000000002000000000000000000000000000000000000a0000000c00000000000000000eba08b2a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000000000000010000000000000000000000000000000000000000000000000000000000000000fffd8963efd1fc6a506488495d951d5263988d26ffffffffffffffffffffffff0002769c102e0395af9b77b6a26ae2ae9c69e97d0000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000003627a301d71055774c85800000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000028f6481ab7f045a5af012a19d003aaa00000000000000000000000000000000028f6481ab7f045a5af012a19d003aaa00000000000000000000000000000000000000000000000000000000007fffff0000000000000000000000000080000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffff24d20f617e6a657ebaa1d9f8665f9cd0ffffffffffffffffffffffffffffffff24d20f617e6a657ebaa1d9f8665f9cd1000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000007ffff000000000000000000000000000000000000000000000000000000000007ff830ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000008007d000000000000000000000000000000000000000600000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000520000000000000000000000000000000000000000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe00200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff1f00000000000000000000000000000000000000000000000000000000000d89e8000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000fffcb933bd6fad37aa2d162d1a59400100000000000000000000000000000000fff97272373d413259a46990580e213a00000000000000000000000000000000fff2e50f5f656932ef12357cf3c7fdcc00000000000000000000000000000000ffe5caca7e10e4e61c3624eaa0941cd000000000000000000000000000000000ffcb9843d60f6159c9db58835c92664400000000000000000000000000000000ff973b41fa98c081472e6896dfb254c000000000000000000000000000000000ff2ea16466c96a3843ec78b326b5286100000000000000000000000000000000fe5dee046a99a2a811c461f1969c305300000000000000000000000000000000fcbe86c7900a88aedcffc83b479aa3a400000000000000000000000000000000f987a7253ac413176f2b074cf7815e5400000000000000000000000000000000f3392b0822b70005940c7a398e4b70f300000000000000000000000000000000e7159475a2c29b7443b29c7fa6e889d900000000000000000000000000000000d097f3bdfd2022b8845ad8f792aa582500000000000000000000000000000000a9f746462d870fdf8a65dc1f90e061e50000000000000000000000000000000070d869a156d2a1b890bb3df62baf32f70000000000000000000000000000000031be135f97d08fd981231505542fcfa60000000000000000000000000000000009aa508b5b7a84e1c677de54f3e99bc9000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000005d6af8dedb81196699c329225ee60400000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000002216e584f5fa1ea926041bedfe98000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000048a170391f7dc42444e8fa254000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d79f3653a7d2acc8336219e832b85fabed6d7a18d79ccca7957f392d23bf1f0e

    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.