Type Alias: ProcessedReceipt
type ProcessedReceipt: Omit<IReceipt, "gasUsed" | "gasPrice" | "outputReceipts"> & object;
Type declaration
gasPrice?
optional gasPrice: bigint;
gasUsed
gasUsed: bigint;
outputReceipts
outputReceipts: (ProcessedReceipt | null)[] | null;
Defined
@nilfoundation/niljs/src/types/IReceipt.ts:24