OBJECT

Block

link GraphQL Schema definition

  • type Block {
  • # Public key of account that produced this block
  • creator: PublicKey! @deprecated( reason: "use creatorAccount field instead" )
  • # Account that produced this block
  • creatorAccount: Account!
  • # Base58Check-encoded hash of the state after this block
  • stateHash: String!
  • # Bigint field-element representation of stateHash
  • stateHashField: String!
  • protocolState: ProtocolState!
  • # Snark proof of blockchain state
  • protocolStateProof: protocolStateProof!
  • transactions: Transactions!
  • snarkJobs: [CompletedWork!]!
  • }