aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-compiler/src/utils/compiler.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-08-22 06:58:06 +0800
committerFabio Berger <me@fabioberger.com>2018-08-22 06:58:06 +0800
commit301cb296ec77e8af5c1722679e04cb983c848153 (patch)
treec4f3c94c2f76e47d7b12d3761af57c15819c9cc2 /packages/sol-compiler/src/utils/compiler.ts
parent1bbd7bf870730dfe2146819e3740522990eb83ca (diff)
downloaddexon-0x-contracts-301cb296ec77e8af5c1722679e04cb983c848153.tar
dexon-0x-contracts-301cb296ec77e8af5c1722679e04cb983c848153.tar.gz
dexon-0x-contracts-301cb296ec77e8af5c1722679e04cb983c848153.tar.bz2
dexon-0x-contracts-301cb296ec77e8af5c1722679e04cb983c848153.tar.lz
dexon-0x-contracts-301cb296ec77e8af5c1722679e04cb983c848153.tar.xz
dexon-0x-contracts-301cb296ec77e8af5c1722679e04cb983c848153.tar.zst
dexon-0x-contracts-301cb296ec77e8af5c1722679e04cb983c848153.zip
Move types from sol-compiler to types so they can be used in other places without requiring sol-compiler as a dep
Diffstat (limited to 'packages/sol-compiler/src/utils/compiler.ts')
-rw-r--r--packages/sol-compiler/src/utils/compiler.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/sol-compiler/src/utils/compiler.ts b/packages/sol-compiler/src/utils/compiler.ts
index 968fcc5b2..c918ed1f3 100644
--- a/packages/sol-compiler/src/utils/compiler.ts
+++ b/packages/sol-compiler/src/utils/compiler.ts
@@ -1,10 +1,10 @@
import { ContractSource } from '@0xproject/sol-resolver';
import { logUtils } from '@0xproject/utils';
+import { ContractArtifact } from 'ethereum-types';
import * as _ from 'lodash';
import * as path from 'path';
import { fsWrapper } from './fs_wrapper';
-import { ContractArtifact } from './types';
/**
* Gets contract data on network or returns if an artifact does not exist.