aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/util/artifacts.ts
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-02-08 02:27:22 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-02-08 02:27:22 +0800
commitf3c6cce4559d096a2f3babfc7af670d078a6f0dd (patch)
tree580c59d474d52affc57593d25eb1d0acd480d4b0 /packages/contracts/util/artifacts.ts
parentd9b1d31e7310f7f554f1740f93e4ccd5b5db90f5 (diff)
parenta26e77074fdf5ea7a754a7a676ebd752668d3c82 (diff)
downloaddexon-sol-tools-f3c6cce4559d096a2f3babfc7af670d078a6f0dd.tar
dexon-sol-tools-f3c6cce4559d096a2f3babfc7af670d078a6f0dd.tar.gz
dexon-sol-tools-f3c6cce4559d096a2f3babfc7af670d078a6f0dd.tar.bz2
dexon-sol-tools-f3c6cce4559d096a2f3babfc7af670d078a6f0dd.tar.lz
dexon-sol-tools-f3c6cce4559d096a2f3babfc7af670d078a6f0dd.tar.xz
dexon-sol-tools-f3c6cce4559d096a2f3babfc7af670d078a6f0dd.tar.zst
dexon-sol-tools-f3c6cce4559d096a2f3babfc7af670d078a6f0dd.zip
Merge branch 'development' into feature/testnet-faucets/queue-by-network
* development: (24 commits) Fix Remco's github name in CODEOWNERS Fix ABI error message Stop using definite assignment assertion cause prettier doesn't handle that Special-case ZRXToken snake case conversion Fix linter errors Generate contract wrappers on pre-build Add missing async Remove noImplicitThis Tslint disable no-consecutive-blank-lines in generated files Change compiled sources in contracts Change utils Change tests Add base_contract.ts Remove generated files .gitignore gemerated files Change the list of generated wrappers Change contract templates Add indices for index parameters so that their names don't collide Use abi-gen for events in 0x.js Fix artifacts path ...
Diffstat (limited to 'packages/contracts/util/artifacts.ts')
-rw-r--r--packages/contracts/util/artifacts.ts20
1 files changed, 10 insertions, 10 deletions
diff --git a/packages/contracts/util/artifacts.ts b/packages/contracts/util/artifacts.ts
index fd9380d1d..7c375c1b7 100644
--- a/packages/contracts/util/artifacts.ts
+++ b/packages/contracts/util/artifacts.ts
@@ -1,13 +1,13 @@
-import * as DummyTokenArtifact from '../artifacts/DummyToken.json';
-import * as ExchangeArtifact from '../artifacts/Exchange.json';
-import * as MaliciousTokenArtifact from '../artifacts/MaliciousToken.json';
-import * as MultiSigWalletWithTimeLockArtifact from '../artifacts/MultiSigWalletWithTimeLock.json';
-import * as MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddressArtifact from '../artifacts/MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress.json';
-import * as TokenArtifact from '../artifacts/Token.json';
-import * as TokenRegistryArtifact from '../artifacts/TokenRegistry.json';
-import * as TokenTransferProxyArtifact from '../artifacts/TokenTransferProxy.json';
-import * as EtherTokenArtifact from '../artifacts/WETH9.json';
-import * as ZRXArtifact from '../artifacts/ZRXToken.json';
+import * as DummyTokenArtifact from '../src/artifacts/DummyToken.json';
+import * as ExchangeArtifact from '../src/artifacts/Exchange.json';
+import * as MaliciousTokenArtifact from '../src/artifacts/MaliciousToken.json';
+import * as MultiSigWalletWithTimeLockArtifact from '../src/artifacts/MultiSigWalletWithTimeLock.json';
+import * as MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddressArtifact from '../src/artifacts/MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress.json';
+import * as TokenArtifact from '../src/artifacts/Token.json';
+import * as TokenRegistryArtifact from '../src/artifacts/TokenRegistry.json';
+import * as TokenTransferProxyArtifact from '../src/artifacts/TokenTransferProxy.json';
+import * as EtherTokenArtifact from '../src/artifacts/WETH9.json';
+import * as ZRXArtifact from '../src/artifacts/ZRXToken.json';
import { Artifact } from './types';