aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/migrations/4_configure_proxy.ts
blob: cbf3695dd444aaea3b75ef325d4cddc11d618f21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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);
  });
};