aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-utils/src/artifacts.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/order-utils/src/artifacts.ts')
-rw-r--r--packages/order-utils/src/artifacts.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/order-utils/src/artifacts.ts b/packages/order-utils/src/artifacts.ts
new file mode 100644
index 000000000..f6fd00472
--- /dev/null
+++ b/packages/order-utils/src/artifacts.ts
@@ -0,0 +1,10 @@
+import { Artifact } from '@0xproject/types';
+
+import * as Exchange from './artifacts/Exchange.json';
+import * as IValidator from './artifacts/IValidator.json';
+import * as IWallet from './artifacts/IWallet.json';
+export const artifacts = {
+ Exchange: (Exchange as any) as Artifact,
+ IWallet: (IWallet as any) as Artifact,
+ IValidator: (IValidator as any) as Artifact,
+};