/** * Possible permutations of transaction. * BLOCK TYPE * TYPE OF TRANSACTION * EXECUTION (Reverted or not) * FINALITY (Rejected on not) Receipt do not have Rejected */ export type IsPreConfirmed = Extract; export type IsInBlock = T extends { block_hash: string; block_number: number; } ? T extends { block_hash: never; } ? never : T : never; export type IsType = Extract; export type IsSucceeded = Extract; export type IsReverted = Extract; //# sourceMappingURL=transactionReceipt.d.ts.map