diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2018-08-21 05:23:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-21 05:23:44 +0800 |
commit | a21bfc5f2c9e7e8b660f9ea6671e1dfd229ab75d (patch) | |
tree | fffbc9357d3f30dba4c887a2ac5fd839288c2fe8 /packages/order-watcher | |
parent | 254d88ffa094a6b4c7887c182298cbd786b1e87e (diff) | |
parent | 6405c70d0753dceaade9f8eef940bdfbdde45bb9 (diff) | |
download | dexon-sol-tools-a21bfc5f2c9e7e8b660f9ea6671e1dfd229ab75d.tar dexon-sol-tools-a21bfc5f2c9e7e8b660f9ea6671e1dfd229ab75d.tar.gz dexon-sol-tools-a21bfc5f2c9e7e8b660f9ea6671e1dfd229ab75d.tar.bz2 dexon-sol-tools-a21bfc5f2c9e7e8b660f9ea6671e1dfd229ab75d.tar.lz dexon-sol-tools-a21bfc5f2c9e7e8b660f9ea6671e1dfd229ab75d.tar.xz dexon-sol-tools-a21bfc5f2c9e7e8b660f9ea6671e1dfd229ab75d.tar.zst dexon-sol-tools-a21bfc5f2c9e7e8b660f9ea6671e1dfd229ab75d.zip |
Merge pull request #976 from feuGeneA/remove-v2-artifacts
[migrations, 0x.js, contract-wrappers, fill-scenarios, order-utils, order-watcher] remove v2 contract artifacts
Diffstat (limited to 'packages/order-watcher')
-rw-r--r-- | packages/order-watcher/package.json | 2 | ||||
-rw-r--r-- | packages/order-watcher/test/global_hooks.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/order-watcher/package.json b/packages/order-watcher/package.json index 59d80fd08..9c8f7f411 100644 --- a/packages/order-watcher/package.json +++ b/packages/order-watcher/package.json @@ -29,7 +29,7 @@ "manual:postpublish": "yarn build; node ./scripts/postpublish.js" }, "config": { - "contracts_v2_beta": "Exchange WETH9 ERC20Token ERC721Token" + "contracts_v2_beta": "AssetProxyOwner ERC20Proxy ERC20Token ERC721Proxy ERC721Token Exchange Forwarder WETH9 ZRXToken" }, "repository": { "type": "git", diff --git a/packages/order-watcher/test/global_hooks.ts b/packages/order-watcher/test/global_hooks.ts index f64f1df78..99df04a51 100644 --- a/packages/order-watcher/test/global_hooks.ts +++ b/packages/order-watcher/test/global_hooks.ts @@ -12,6 +12,6 @@ before('migrate contracts', async function(): Promise<void> { gas: devConstants.GAS_LIMIT, from: devConstants.TESTRPC_FIRST_ADDRESS, }; - const artifactsDir = `../migrations/artifacts/2.0.0`; + const artifactsDir = `src/artifacts`; await runV2MigrationsAsync(provider, artifactsDir, txDefaults); }); |