OBJECT

LedgerHeader

Represents a ledger header

link GraphQL Schema definition

  • type LedgerHeader {
  • # Protocol version of this ledger
  • ledgerVersion: LedgerSeq!
  • previousLedgerHash: String!
  • # Hash of the results of applying the transaction set
  • txSetResultHash: String!
  • # The fee the network charges per operation in a transaction
  • baseFee: Int!
  • # The reserve the network uses when calculating an account’s minimum balance
  • baseReserve: Int!
  • # The maximum number of transactions the validators have agreed to process in this
  • # ledger
  • maxTxSetSize: Int!
  • }