Type alias Result<T, HasTxHash>

Result<T, HasTxHash>: HasTxHash extends true
    ? {
        data: T;
        transactionHash: Address;
    }
    : {
        data: T;
    }

The result of a call to a transaction / get function.

Type Parameters

  • T
  • HasTxHash extends boolean = false

Generated using TypeDoc