aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-cov/src/index.ts
blob: cb9e108fbedfec39e415d1e637c976f6d4910937 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
export { CoverageSubprovider } from './coverage_subprovider';
export { SolCompilerArtifactAdapter } from './artifact_adapters/sol_compiler_artifact_adapter';
export { TruffleArtifactAdapter } from './artifact_adapters/truffle_artifact_adapter';
export { AbstractArtifactAdapter } from './artifact_adapters/abstract_artifact_adapter';

// HACK: ProfilerSubprovider is a hacky way to do profiling using coverage tools. Not production ready
export { ProfilerSubprovider } from './profiler_subprovider';
export { RevertTraceSubprovider } from './revert_trace_subprovider';

export { ContractData, TraceInfo, Subtrace, TraceInfoNewContract, TraceInfoExistingContract } from './types';
export {
    StructLog,
    JSONRPCRequestPayload,
    Provider,
    JSONRPCErrorCallback,
    OpCode,
    JSONRPCResponsePayload,
} from 'ethereum-types';

export { JSONRPCRequestPayloadWithMethod } from '@0xproject/subproviders';