aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/extensions/src/artifacts/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'contracts/extensions/src/artifacts/index.ts')
-rw-r--r--contracts/extensions/src/artifacts/index.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/contracts/extensions/src/artifacts/index.ts b/contracts/extensions/src/artifacts/index.ts
new file mode 100644
index 000000000..380bf0497
--- /dev/null
+++ b/contracts/extensions/src/artifacts/index.ts
@@ -0,0 +1,11 @@
+import { ContractArtifact } from 'ethereum-types';
+
+import * as DutchAuction from '../../generated-artifacts/DutchAuction.json';
+import * as Forwarder from '../../generated-artifacts/Forwarder.json';
+import * as OrderValidator from '../../generated-artifacts/OrderValidator.json';
+
+export const artifacts = {
+ DutchAuction: DutchAuction as ContractArtifact,
+ Forwarder: Forwarder as ContractArtifact,
+ OrderValidator: OrderValidator as ContractArtifact,
+};