aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contract-wrappers/src/artifacts.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-07-05 21:59:12 +0800
committerGitHub <noreply@github.com>2018-07-05 21:59:12 +0800
commit22cf7bee5b089384d43e6df0101699491c17847f (patch)
tree15cbda739d8a319ba8b3d71227406bdbb32b4bfb /packages/contract-wrappers/src/artifacts.ts
parent1ee2d6ed54b6159d1e8952692f4ddba0ebd65012 (diff)
parentef890aeac45cc8f3078a87dc1668317158e462fd (diff)
downloaddexon-sol-tools-22cf7bee5b089384d43e6df0101699491c17847f.tar
dexon-sol-tools-22cf7bee5b089384d43e6df0101699491c17847f.tar.gz
dexon-sol-tools-22cf7bee5b089384d43e6df0101699491c17847f.tar.bz2
dexon-sol-tools-22cf7bee5b089384d43e6df0101699491c17847f.tar.lz
dexon-sol-tools-22cf7bee5b089384d43e6df0101699491c17847f.tar.xz
dexon-sol-tools-22cf7bee5b089384d43e6df0101699491c17847f.tar.zst
dexon-sol-tools-22cf7bee5b089384d43e6df0101699491c17847f.zip
Merge pull request #814 from 0xProject/feature/fill-scenarios-v2
@0xproject/contract-wrappers V2 refactor. Part 2
Diffstat (limited to 'packages/contract-wrappers/src/artifacts.ts')
-rw-r--r--packages/contract-wrappers/src/artifacts.ts18
1 files changed, 9 insertions, 9 deletions
diff --git a/packages/contract-wrappers/src/artifacts.ts b/packages/contract-wrappers/src/artifacts.ts
index e5daa73be..742d0e1b2 100644
--- a/packages/contract-wrappers/src/artifacts.ts
+++ b/packages/contract-wrappers/src/artifacts.ts
@@ -1,14 +1,14 @@
import { ContractArtifact } from '@0xproject/sol-compiler';
-import * as DummyERC20Token from './compact_artifacts/DummyERC20Token.json';
-import * as DummyERC721Token from './compact_artifacts/DummyERC721Token.json';
-import * as ERC20Proxy from './compact_artifacts/ERC20Proxy.json';
-import * as ERC20Token from './compact_artifacts/ERC20Token.json';
-import * as ERC721Proxy from './compact_artifacts/ERC721Proxy.json';
-import * as ERC721Token from './compact_artifacts/ERC721Token.json';
-import * as Exchange from './compact_artifacts/Exchange.json';
-import * as EtherToken from './compact_artifacts/WETH9.json';
-import * as ZRXToken from './compact_artifacts/ZRXToken.json';
+import * as DummyERC20Token from './artifacts/DummyERC20Token.json';
+import * as DummyERC721Token from './artifacts/DummyERC721Token.json';
+import * as ERC20Proxy from './artifacts/ERC20Proxy.json';
+import * as ERC20Token from './artifacts/ERC20Token.json';
+import * as ERC721Proxy from './artifacts/ERC721Proxy.json';
+import * as ERC721Token from './artifacts/ERC721Token.json';
+import * as Exchange from './artifacts/Exchange.json';
+import * as EtherToken from './artifacts/WETH9.json';
+import * as ZRXToken from './artifacts/ZRXToken.json';
export const artifacts = {
ZRXToken: (ZRXToken as any) as ContractArtifact,