Type alias ValidatorTransactionResponse

ValidatorTransactionResponse: {
    accumulator_root_hash: string;
    changes: WriteSetChange[];
    event_root_hash: string;
    events: Event[];
    gas_used: string;
    hash: string;
    state_change_hash: string;
    state_checkpoint_hash: string | null;
    success: boolean;
    timestamp: string;
    type: Validator;
    version: string;
    vm_status: string;
}

Type declaration

  • accumulator_root_hash: string
  • changes: WriteSetChange[]

    Final state of resources changed by the transaction

  • event_root_hash: string
  • events: Event[]

    The events emitted by the validator transaction

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

    Whether the transaction was successful

  • timestamp: string
  • type: Validator
  • version: string
  • vm_status: string

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

Generated using TypeDoc