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