aboutsummaryrefslogtreecommitdiffstats
path: root/packages/migrations/src/2.0.0-beta-testnet/artifacts.ts
blob: a9c7235c12a9973bf9055b99f0c2e5c6d7d9c548 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { ContractArtifact } from 'ethereum-types';

import * as AssetProxyOwner from '../../artifacts/2.0.0-beta-testnet/AssetProxyOwner.json';
import * as ERC20Proxy from '../../artifacts/2.0.0-beta-testnet/ERC20Proxy.json';
import * as ERC721Proxy from '../../artifacts/2.0.0-beta-testnet/ERC721Proxy.json';
import * as Exchange from '../../artifacts/2.0.0-beta-testnet/Exchange.json';
import * as OrderValidator from '../../artifacts/2.0.0-beta-testnet/OrderValidator.json';

export const artifacts = {
    AssetProxyOwner: (AssetProxyOwner as any) as ContractArtifact,
    Exchange: (Exchange as any) as ContractArtifact,
    ERC20Proxy: (ERC20Proxy as any) as ContractArtifact,
    ERC721Proxy: (ERC721Proxy as any) as ContractArtifact,
    OrderValidator: (OrderValidator as any) as ContractArtifact,
};