aboutsummaryrefslogtreecommitdiffstats
path: root/packages/migrations/src/2.0.0/migration.ts
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2018-06-30 08:30:47 +0800
committerAmir Bandeali <abandeali1@gmail.com>2018-06-30 08:41:25 +0800
commit6c6f34ee72da94b40aac64a3ded73bbf7824c3f0 (patch)
tree843d6df5c6f4075332203e3bbe0e97855d0d890f /packages/migrations/src/2.0.0/migration.ts
parente58e35e098952259c0c3f59ea1132669aab7d36d (diff)
downloaddexon-sol-tools-6c6f34ee72da94b40aac64a3ded73bbf7824c3f0.tar
dexon-sol-tools-6c6f34ee72da94b40aac64a3ded73bbf7824c3f0.tar.gz
dexon-sol-tools-6c6f34ee72da94b40aac64a3ded73bbf7824c3f0.tar.bz2
dexon-sol-tools-6c6f34ee72da94b40aac64a3ded73bbf7824c3f0.tar.lz
dexon-sol-tools-6c6f34ee72da94b40aac64a3ded73bbf7824c3f0.tar.xz
dexon-sol-tools-6c6f34ee72da94b40aac64a3ded73bbf7824c3f0.tar.zst
dexon-sol-tools-6c6f34ee72da94b40aac64a3ded73bbf7824c3f0.zip
Update 2.0.0 artifacts
Diffstat (limited to 'packages/migrations/src/2.0.0/migration.ts')
-rw-r--r--packages/migrations/src/2.0.0/migration.ts11
1 files changed, 3 insertions, 8 deletions
diff --git a/packages/migrations/src/2.0.0/migration.ts b/packages/migrations/src/2.0.0/migration.ts
index 91a4cbd13..8978a12d6 100644
--- a/packages/migrations/src/2.0.0/migration.ts
+++ b/packages/migrations/src/2.0.0/migration.ts
@@ -1,4 +1,4 @@
-import { assetProxyUtils, constants } from '@0xproject/order-utils';
+import { assetProxyUtils } from '@0xproject/order-utils';
import { BigNumber } from '@0xproject/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper';
import { Provider, TxData } from 'ethereum-types';
@@ -96,16 +96,11 @@ export const runV2MigrationsAsync = async (provider: Provider, artifactsDir: str
);
// Register the Asset Proxies to the Exchange
- // HACK: These are exposed in the types package but migrations currently uses an older version
- // but we can pull the asset data id from the proxies
- const erc20ProxyId = await erc20proxy.getProxyId.callAsync();
- const erc721ProxyId = await erc721proxy.getProxyId.callAsync();
- const oldAddress = constants.NULL_ADDRESS;
await web3Wrapper.awaitTransactionSuccessAsync(
- await exchange.registerAssetProxy.sendTransactionAsync(erc20ProxyId, erc20proxy.address, oldAddress),
+ await exchange.registerAssetProxy.sendTransactionAsync(erc20proxy.address),
);
await web3Wrapper.awaitTransactionSuccessAsync(
- await exchange.registerAssetProxy.sendTransactionAsync(erc721ProxyId, erc721proxy.address, oldAddress),
+ await exchange.registerAssetProxy.sendTransactionAsync(erc721proxy.address),
);
// Dummy ERC20 tokens