Remove excesive exports
This commit is contained in:
@@ -8,7 +8,7 @@ export {
|
|||||||
Sources,
|
Sources,
|
||||||
} from '@0x/sol-tracing-utils';
|
} from '@0x/sol-tracing-utils';
|
||||||
|
|
||||||
export { JSONRPCRequestPayload, JSONRPCResponsePayload, JSONRPCResponseError, ContractAbi } from 'ethereum-types';
|
export { JSONRPCRequestPayload, JSONRPCResponsePayload, JSONRPCResponseError } from 'ethereum-types';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
JSONRPCRequestPayloadWithMethod,
|
JSONRPCRequestPayloadWithMethod,
|
||||||
|
@@ -10,7 +10,7 @@ export {
|
|||||||
// HACK: ProfilerSubprovider is a hacky way to do profiling using coverage tools. Not production ready
|
// HACK: ProfilerSubprovider is a hacky way to do profiling using coverage tools. Not production ready
|
||||||
export { ProfilerSubprovider } from './profiler_subprovider';
|
export { ProfilerSubprovider } from './profiler_subprovider';
|
||||||
|
|
||||||
export { JSONRPCRequestPayload, JSONRPCResponsePayload, JSONRPCResponseError, ContractAbi } from 'ethereum-types';
|
export { JSONRPCRequestPayload, JSONRPCResponsePayload, JSONRPCResponseError } from 'ethereum-types';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
JSONRPCRequestPayloadWithMethod,
|
JSONRPCRequestPayloadWithMethod,
|
||||||
|
@@ -59,7 +59,6 @@ export class SolCompilerArtifactAdapter extends AbstractArtifactAdapter {
|
|||||||
sourceCodes[value.id] = source.source;
|
sourceCodes[value.id] = source.source;
|
||||||
});
|
});
|
||||||
const contractData = {
|
const contractData = {
|
||||||
abi: artifact.compilerOutput.abi,
|
|
||||||
name: artifact.contractName,
|
name: artifact.contractName,
|
||||||
sourceCodes,
|
sourceCodes,
|
||||||
sources,
|
sources,
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
import { ContractAbi, StructLog, TransactionTrace } from 'ethereum-types';
|
import { StructLog, TransactionTrace } from 'ethereum-types';
|
||||||
|
|
||||||
export interface LineColumn {
|
export interface LineColumn {
|
||||||
line: number;
|
line: number;
|
||||||
@@ -83,7 +83,6 @@ export interface Sources {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface ContractData {
|
export interface ContractData {
|
||||||
abi: ContractAbi;
|
|
||||||
name: string;
|
name: string;
|
||||||
bytecode: string;
|
bytecode: string;
|
||||||
sourceMap: string;
|
sourceMap: string;
|
||||||
|
Reference in New Issue
Block a user