Interface IReadOperationResult

Represents the result of a read operation on the blockchain.

See

  • Ok - Included in case of success. The result of the execution
  • Error - Included in case of error. The error message
interface IReadOperationResult {
    Error?: string;
    Ok?: Uint8Array;
}

Properties

Properties

Error?: string
Ok?: Uint8Array

Generated using TypeDoc