OBJECT

ConsensusState

link GraphQL Schema definition

  • type ConsensusState {
  • # Length of the blockchain at this block
  • blockchainLength: UInt32!
  • epochCount: UInt32!
  • minWindowDensity: UInt32!
  • lastVrfOutput: String!
  • # Total currency in circulation at this block
  • totalCurrency: UInt64!
  • stakingEpochData: StakingEpochData!
  • nextEpochData: NextEpochData!
  • hasAncestorInSameCheckpointWindow: Boolean!
  • # Slot in which this block was created
  • slot: UInt32!
  • # Epoch in which this block was created
  • epoch: UInt32!
  • }