aboutsummaryrefslogblamecommitdiffstats
path: root/packages/contracts/util/artifacts.ts
blob: b15c9216ff0384a8e45701cd57df87decca51b77 (plain) (tree)
1
                        






















                                                                                          
 
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 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.MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress = artifacts.require(
                'MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress');
        this.MaliciousToken = artifacts.require('MaliciousToken');
    }
}