UNPKG

pegasys-orchestrate

Version:

The PegaSys Orchestrate library provides convenient access to the Codefi Orchestrate API from applications written in server-side JavaScript

23 lines (22 loc) 553 B
import { IEventLog } from './IEventLog'; export interface IReceipt { txHash?: string; blockHash?: string; blockNumber?: number; txIndex?: number; contractAddress?: string; postState?: string; status?: boolean; bloom?: string; logs?: IEventLog[]; gasUsed?: number; cumulativeGasUsed?: number; effectiveGasPrice?: string; revertReason?: string; output?: string; privateFrom?: string; privateFor?: string[]; privacyGroupId?: string; contractName?: string; contractTag?: string; }