Remove excesive exports

This commit is contained in:
Leonid Logvinov 2019-02-22 17:43:40 -08:00
parent 23a7ffb167
commit eda8dc278b
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4
4 changed files with 3 additions and 5 deletions

View File

@ -8,7 +8,7 @@ export {
Sources,
} from '@0x/sol-tracing-utils';
export { JSONRPCRequestPayload, JSONRPCResponsePayload, JSONRPCResponseError, ContractAbi } from 'ethereum-types';
export { JSONRPCRequestPayload, JSONRPCResponsePayload, JSONRPCResponseError } from 'ethereum-types';
export {
JSONRPCRequestPayloadWithMethod,

View File

@ -10,7 +10,7 @@ export {
// HACK: ProfilerSubprovider is a hacky way to do profiling using coverage tools. Not production ready
export { ProfilerSubprovider } from './profiler_subprovider';
export { JSONRPCRequestPayload, JSONRPCResponsePayload, JSONRPCResponseError, ContractAbi } from 'ethereum-types';
export { JSONRPCRequestPayload, JSONRPCResponsePayload, JSONRPCResponseError } from 'ethereum-types';
export {
JSONRPCRequestPayloadWithMethod,

View File

@ -59,7 +59,6 @@ export class SolCompilerArtifactAdapter extends AbstractArtifactAdapter {
sourceCodes[value.id] = source.source;
});
const contractData = {
abi: artifact.compilerOutput.abi,
name: artifact.contractName,
sourceCodes,
sources,

View File

@ -1,4 +1,4 @@
import { ContractAbi, StructLog, TransactionTrace } from 'ethereum-types';
import { StructLog, TransactionTrace } from 'ethereum-types';
export interface LineColumn {
line: number;
@ -83,7 +83,6 @@ export interface Sources {
}
export interface ContractData {
abi: ContractAbi;
name: string;
bytecode: string;
sourceMap: string;