Interface IExecuteReadOnlyData

Represents the inputs of a read-only operation on a deployed contract.

See

  • executed_at of type ISlot represents the slot when the read operation was executed.
  • result of type IReadOperationResult represents the result of the read operation.
  • output_events of type Array<IEvent> represents any events that were emitted during the execution of the read operation.
  • gas_cost of type number represents the amount of gas that was consumed by the read operation.
interface IExecuteReadOnlyData {
    executed_at: ISlot;
    gas_cost: number;
    output_events: IEvent[];
    result: IReadOperationResult;
}

Properties

executed_at: ISlot
gas_cost: number
output_events: IEvent[]

Generated using TypeDoc