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

import * as BalanceThresholdFilter from '../../generated-artifacts/BalanceThresholdFilter.json';
import * as DutchAuction from '../../generated-artifacts/DutchAuction.json';
import * as Forwarder from '../../generated-artifacts/Forwarder.json';

export const artifacts = {
    BalanceThresholdFilter: BalanceThresholdFilter as ContractArtifact,
    DutchAuction: DutchAuction as ContractArtifact,
    Forwarder: Forwarder as ContractArtifact,
};