Remove excesive exports
This commit is contained in:
@@ -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,
|
||||
|
@@ -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,
|
||||
|
@@ -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,
|
||||
|
@@ -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;
|
||||
|
Reference in New Issue
Block a user