aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/migrations/4_configure_proxy.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/contracts/migrations/4_configure_proxy.ts')
-rw-r--r--packages/contracts/migrations/4_configure_proxy.ts22
1 files changed, 0 insertions, 22 deletions
diff --git a/packages/contracts/migrations/4_configure_proxy.ts b/packages/contracts/migrations/4_configure_proxy.ts
deleted file mode 100644
index ff3b844d6..000000000
--- a/packages/contracts/migrations/4_configure_proxy.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-import { Artifacts } from '../util/artifacts';
-import { ContractInstance } from '../util/types';
-const { TokenTransferProxy, Exchange, TokenRegistry } = new Artifacts(artifacts);
-
-let tokenTransferProxy: ContractInstance;
-module.exports = (deployer: any) => {
- deployer
- .then(async () => {
- return Promise.all([TokenTransferProxy.deployed(), TokenRegistry.deployed()]);
- })
- .then((instances: ContractInstance[]) => {
- let tokenRegistry: ContractInstance;
- [tokenTransferProxy, tokenRegistry] = instances;
- return tokenRegistry.getTokenAddressBySymbol('ZRX');
- })
- .then((ptAddress: string) => {
- return deployer.deploy(Exchange, ptAddress, tokenTransferProxy.address);
- })
- .then(() => {
- return tokenTransferProxy.addAuthorizedAddress(Exchange.address);
- });
-};