pegasys-orchestrate
Version:
The PegaSys Orchestrate library provides convenient access to the Codefi Orchestrate API from applications written in server-side JavaScript
15 lines (14 loc) • 336 B
TypeScript
import { IContextLabels } from './IContextLabels';
export interface IEventLog {
address?: string;
topics?: string[];
data?: string;
event?: string;
decodedData?: IContextLabels;
blockNumber?: number;
txHash?: string;
txIndex?: number;
blockHash?: string;
index?: number;
removed?: boolean;
}