diff options
author | Fabio Berger <me@fabioberger.com> | 2018-05-23 07:37:04 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-05-23 07:38:26 +0800 |
commit | 706bfafe74f289feb98021c1303ca27c342c2f14 (patch) | |
tree | 105eebe39368c6bdb3afdf2b76b506794f7c9933 /packages | |
parent | 056ef9ccd11b3e1fdeb0bf435382e16cc640d338 (diff) | |
download | dexon-sol-tools-706bfafe74f289feb98021c1303ca27c342c2f14.tar dexon-sol-tools-706bfafe74f289feb98021c1303ca27c342c2f14.tar.gz dexon-sol-tools-706bfafe74f289feb98021c1303ca27c342c2f14.tar.bz2 dexon-sol-tools-706bfafe74f289feb98021c1303ca27c342c2f14.tar.lz dexon-sol-tools-706bfafe74f289feb98021c1303ca27c342c2f14.tar.xz dexon-sol-tools-706bfafe74f289feb98021c1303ca27c342c2f14.tar.zst dexon-sol-tools-706bfafe74f289feb98021c1303ca27c342c2f14.zip |
Fix TokenTransferProxy artifact name since it's now suffixed with _v1
Diffstat (limited to 'packages')
-rw-r--r-- | packages/contract-wrappers/package.json | 2 | ||||
-rw-r--r-- | packages/migrations/src/artifacts.ts | 2 | ||||
-rw-r--r-- | packages/order-watcher/package.json | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/packages/contract-wrappers/package.json b/packages/contract-wrappers/package.json index 9dd6f097d..10719c831 100644 --- a/packages/contract-wrappers/package.json +++ b/packages/contract-wrappers/package.json @@ -27,7 +27,7 @@ }, "config": { "compact_artifacts": "Exchange DummyToken ZRXToken Token EtherToken TokenTransferProxy TokenRegistry", - "contracts": "Exchange DummyToken ZRXToken Token WETH9 TokenTransferProxy MultiSigWallet MultiSigWalletWithTimeLock MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress MaliciousToken TokenRegistry Arbitrage EtherDelta AccountLevels", + "contracts": "Exchange DummyToken ZRXToken Token WETH9 TokenTransferProxy_v1 MultiSigWallet MultiSigWalletWithTimeLock MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress MaliciousToken TokenRegistry Arbitrage EtherDelta AccountLevels", "postpublish": { "assets": [ "packages/contract-wrappers/_bundles/index.js", diff --git a/packages/migrations/src/artifacts.ts b/packages/migrations/src/artifacts.ts index 61b0c3085..acc267256 100644 --- a/packages/migrations/src/artifacts.ts +++ b/packages/migrations/src/artifacts.ts @@ -5,7 +5,7 @@ import * as Exchange from '../artifacts/1.0.0/Exchange_v1.json'; import * as MultiSigWalletWithTimeLock from '../artifacts/1.0.0/MultiSigWalletWithTimeLock.json'; import * as MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress from '../artifacts/1.0.0/MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress.json'; import * as TokenRegistry from '../artifacts/1.0.0/TokenRegistry.json'; -import * as TokenTransferProxy from '../artifacts/1.0.0/TokenTransferProxy.json'; +import * as TokenTransferProxy from '../artifacts/1.0.0/TokenTransferProxy_v1.json'; import * as EtherToken from '../artifacts/1.0.0/WETH9.json'; import * as ZRX from '../artifacts/1.0.0/ZRXToken.json'; diff --git a/packages/order-watcher/package.json b/packages/order-watcher/package.json index 2bd7e4dcb..c84858bfd 100644 --- a/packages/order-watcher/package.json +++ b/packages/order-watcher/package.json @@ -28,7 +28,7 @@ }, "config": { "compact_artifacts": "Exchange DummyToken ZRXToken Token EtherToken TokenTransferProxy TokenRegistry", - "contracts": "Exchange DummyToken ZRXToken Token WETH9 TokenTransferProxy MultiSigWallet MultiSigWalletWithTimeLock MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress MaliciousToken TokenRegistry Arbitrage EtherDelta AccountLevels", + "contracts": "Exchange DummyToken ZRXToken Token WETH9 TokenTransferProxy_v1 MultiSigWallet MultiSigWalletWithTimeLock MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress MaliciousToken TokenRegistry Arbitrage EtherDelta AccountLevels", "postpublish": { "assets": [ "packages/order-watcher/_bundles/index.js", |