aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/exchange/src/artifacts/index.ts
blob: 43dd77e581fe72ce27f6080232e4bc16457ad47a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { ContractArtifact } from 'ethereum-types';

import * as Exchange from '../../generated-artifacts/Exchange.json';
import * as TestAssetProxyDispatcher from '../../generated-artifacts/TestAssetProxyDispatcher.json';
import * as TestExchangeInternals from '../../generated-artifacts/TestExchangeInternals.json';
import * as TestSignatureValidator from '../../generated-artifacts/TestSignatureValidator.json';
import * as TestStaticCallReceiver from '../../generated-artifacts/TestStaticCallReceiver.json';

export const artifacts = {
    Exchange: Exchange as ContractArtifact,
    TestAssetProxyDispatcher: TestAssetProxyDispatcher as ContractArtifact,
    TestExchangeInternals: TestExchangeInternals as ContractArtifact,
    TestSignatureValidator: TestSignatureValidator as ContractArtifact,
    TestStaticCallReceiver: TestStaticCallReceiver as ContractArtifact,
};