Proxima
  • 🎉Introduction
    • Welcome to Proxima
  • 🌊Streams
    • Overview
    • Quick start
    • Using streams
    • Our streams
      • Block headers
      • New tokens/collections
      • DEX events
      • Exchange rates
      • Private streams
        • Mangrove
        • All ERC20 events
        • All ERC721 events
        • Raw Uniswap events
      • Smart contract's events
    • Understanding streams
    • Architecture
  • 💾Data APIs
    • APIs
      • Fungible tokens
      • Decentralized exchanges
      • Account balances
  • 🚧Maru
    • Introduction
    • Programming Model
    • How Maru works
      • Architecture
      • Dataflow
      • Economics
      • Domain Specific Language
      • Arrangements
      • Open Problems
    • Background Knowledge
      • Multiset Hashes
      • Plonky2
    • Use Cases
      • Lifting Expensive Computation Off-Chain
      • Social Graph Database
      • Indexer
Powered by GitBook
On this page
  1. Streams
  2. Our streams

Block headers

proxima.{network}.blocks.1_0

These streams contain brief info for each mined block in the network (but not transactions info)

Schema:

  • number (number)

  • hash (hex string)

  • parentHash (hex string)

  • receiptsRoot (hex string)

  • transactionsRoot (hex string)

  • timestamp (number)

  • miner (hex string)

  • gasUsed (number)

  • gasLimit (number)

  • difficulty (decimal string)

  • extraData (hex string): hex-encoded

  • nonce: (hex string)

  • sha3Uncles (hex string)

  • mixHash (hex string)

  • stateRoot (hex string)

  • logsBloom (hex string)

  • baseFeePerGas (decimal string)

PreviousOur streamsNextNew tokens/collections

Last updated 2 years ago

All the fields correspond to values.

🌊
Ethereum RPC API