Blocks

This EndPoint is contains all the geeky details one needs to understand about a block on any chain

Blocks - building units of any blockchain. If a developer or any app is required to understand all the technical details of a particular block in a blockchain, this is the one stop EndPoint for the same.

Request

{
  blocks(blockNumberDecimal: 13035232) {
    difficulty
    extraData
    gasLimit
    gasUsed
    hash
    logsBloom
    miner
    mixHash
    nonce
    number
    blockNumberDecimal
    parentHash
    receiptsRoot
    sha3Uncles
    size
    stateRoot
    timestamp
    totalDifficulty
    transactionsRoot
    totalConfirmations
  }
}

Response

{
  "data": {
    "blocks": [
      {
        "difficulty": "7807198343184805",
        "extraData": "0xe4b883e5bda9e7a59ee4bb99e9b1bc050025",
        "gasLimit": "29970705",
        "gasUsed": "1396759",
        "hash": "0xe2e80fdad5ad7763b6092134cbfcc95fde0ff72ac866584a9c1c493c7f960196",
        "logsBloom": "TJGBjcJQDENXevEFFMapuCFu/NNLW4QlaJs4jv0/f0xoCBVEX38DxJIvUJbPJiWbtgm0hM7JmPPxsgG8nszhS7pn2InkzbgxcKxiMjg39BzMdseFNTshRosPfJ7YgsZyykI5i6Syq62FSl/4kboGP4zFs0KZvinNwrGE3mIpmtwz8qqYPHZ78wu2uRzOTZTZn7GFX3vYE0+xTNa6IrV38Q0XeRNX3CUvPBl/Braryo0z8Wa8BcgqdW/+fgMAqX8AAAD//wEAAP//",
        "miner": "0x829bd824b016326a401d083b33d092293333a830",
        "mixHash": "0xab1886f5654250f4f0b865802cc228dc5bb583b5eb6a2c1d122defd8bb4ca44e",
        "nonce": "0x3853f5000b01e054",
        "number": "0xc6e6e0",
        "blockNumberDecimal": 13035232,
        "parentHash": "0xef66ca4853f2cb85b3fa6c7555bd3b50dfcfc9fe1b1f23ecff60196a6e9d3bf1",
        "receiptsRoot": "0xaae2761ebb8dc7154130d1208b979f3c586a1e9cfe44a041b1eb71e9dc41e85b",
        "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
        "size": "5059",
        "stateRoot": "0xf882465ab6e8f9e31ac4bde19b0eb2c61ed7b8d0fa84d79f492cb5e9ae8c6fce",
        "timestamp": 1629102832,
        "totalDifficulty": "29033046781183285654072",
        "transactionsRoot": "0xc104295ebc77fa767c1f97f1ade3605946b64b50f21071e5437ac995018b2400",
        "totalConfirmations": 100
      }
    ]
  }
}

Last updated