aboutsummaryrefslogtreecommitdiffstats
path: root/packages/fill-scenarios/src/artifacts.ts
blob: f75374ba2a4e1fcbfb0dd995c811fe7c98e287b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { ContractArtifact } from '@0xproject/sol-compiler';

import * as ERC20Token from './artifacts/ERC20Token.json';
import * as Exchange from './artifacts/Exchange.json';

export const artifacts = {
    ERC20Token: (ERC20Token as any) as ContractArtifact,
    Exchange: (Exchange as any) as ContractArtifact,
};