Type alias BlockEpilogueTransactionResponse

BlockEpilogueTransactionResponse: {
    accumulator_root_hash: string;
    block_end_info: BlockEndInfo | null;
    changes: WriteSetChange[];
    event_root_hash: string;
    gas_used: string;
    hash: string;
    state_change_hash: string;
    state_checkpoint_hash: string | null;
    success: boolean;
    timestamp: string;
    type: BlockEpilogue;
    version: string;
    vm_status: string;
}

BlockEpilogueTransactionResponse is a transaction that is executed at the end of a block keeping track of data from the whole block

Type declaration

  • accumulator_root_hash: string
  • block_end_info: BlockEndInfo | null
  • changes: WriteSetChange[]

    Final state of resources changed by the transaction

  • event_root_hash: string
  • gas_used: string
  • hash: string
  • state_change_hash: string
  • state_checkpoint_hash: string | null
  • success: boolean

    Whether the transaction was successful

  • timestamp: string
  • type: BlockEpilogue
  • version: string
  • vm_status: string

    The VM status of the transaction, can tell useful information in a failure