export interface RawApplicationLogData {
readonly txId?: string;
readonly trigger: TriggerTypeJSON;
readonly vmState: VMStateJSON;
readonly gasConsumed: BigNumber;
readonly stack: string | readonly RawStackItem[];
readonly notifications: readonly RawNotification[];
readonly logs: readonly RawLog[];
}