Interface IContractReadOperationResponse

Represents the output of a smart contract non persistent execution. (this operation did not modify the blockchain state)

See

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

Properties

Properties

returnValue: Uint8Array

Generated using TypeDoc