aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-utils/src/artifacts.ts
blob: 6eb5ad0c00c26a2630a358c5d2c2f460be434e10 (plain) (blame)
1
2
3
4
5
6
7
8
import { Artifact } from '@0xproject/types';

import * as Exchange from './artifacts/Exchange.json';
import * as ISigner from './artifacts/ISigner.json';
export const artifacts = {
    Exchange: (Exchange as any) as Artifact,
    ISigner: (ISigner as any) as Artifact,
};