aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/util/artifacts.ts
blob: cb06739afd1b94228cb3ef237da1e334d3368fb2 (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
export class Artifacts {
    public Migrations: any;
    public TokenTransferProxy: any;
    public TokenRegistry: any;
    public MultiSigWalletWithTimeLock: any;
    public Exchange: any;
    public ZRXToken: any;
    public DummyToken: any;
    public EtherToken: any;
    public EtherTokenV2: any;
    public MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress: any;
    public MaliciousToken: any;
    constructor(artifacts: any) {
        this.Migrations = artifacts.require('Migrations');
        this.TokenTransferProxy = artifacts.require('TokenTransferProxy');
        this.TokenRegistry = artifacts.require('TokenRegistry');
        this.MultiSigWalletWithTimeLock = artifacts.require('MultiSigWalletWithTimeLock');
        this.Exchange = artifacts.require('Exchange');
        this.ZRXToken = artifacts.require('ZRXToken');
        this.DummyToken = artifacts.require('DummyToken');
        this.EtherToken = artifacts.require('EtherToken');
        this.EtherTokenV2 = artifacts.require('EtherToken_v2');
        this.MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress = artifacts.require(
                'MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress');
        this.MaliciousToken = artifacts.require('MaliciousToken');
    }
}