export interface RawExecutionData {
readonly trigger: TriggerTypeJSON;
readonly vmState: 'HALT' | 'FAULT';
readonly exception?: string;
readonly gasConsumed: BigNumber;
readonly stack: readonly ContractParameter[] | string;
readonly notifications: readonly RawVMNotification[];
readonly logs: readonly RawVMLog[];
}