Interface IExecuteReadOnlyResponse

Represents the response from a read-only operation on a deployed contract.

See

  • returnValue of type Uint8Array represents the return value of the read operation.
  • info of type IExecuteReadOnlyData represents the inputs of the read operation.
interface IExecuteReadOnlyResponse {
    info: IExecuteReadOnlyData;
    returnValue: Uint8Array;
}

Properties

Properties

returnValue: Uint8Array

Generated using TypeDoc