aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/artifacts.ts
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-09-20 01:51:12 +0800
committerAlex Browne <stephenalexbrowne@gmail.com>2018-12-05 06:23:29 +0800
commitcd73a047efbc1b7afa884ef27a1cc4991e20efd8 (patch)
tree4355fd034ec22a5e5412aca1876ee09a9d848eb4 /packages/pipeline/src/artifacts.ts
parent57e7119c0d4f1ab7dd1d4c0118e72dc1706e2151 (diff)
downloaddexon-sol-tools-cd73a047efbc1b7afa884ef27a1cc4991e20efd8.tar
dexon-sol-tools-cd73a047efbc1b7afa884ef27a1cc4991e20efd8.tar.gz
dexon-sol-tools-cd73a047efbc1b7afa884ef27a1cc4991e20efd8.tar.bz2
dexon-sol-tools-cd73a047efbc1b7afa884ef27a1cc4991e20efd8.tar.lz
dexon-sol-tools-cd73a047efbc1b7afa884ef27a1cc4991e20efd8.tar.xz
dexon-sol-tools-cd73a047efbc1b7afa884ef27a1cc4991e20efd8.tar.zst
dexon-sol-tools-cd73a047efbc1b7afa884ef27a1cc4991e20efd8.zip
Remove old code. Create function for getting contract events via etherscan
Diffstat (limited to 'packages/pipeline/src/artifacts.ts')
-rw-r--r--packages/pipeline/src/artifacts.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/pipeline/src/artifacts.ts b/packages/pipeline/src/artifacts.ts
new file mode 100644
index 000000000..c0d7e11f6
--- /dev/null
+++ b/packages/pipeline/src/artifacts.ts
@@ -0,0 +1,7 @@
+import { ContractArtifact } from 'ethereum-types';
+
+import * as Exchange from './artifacts/Exchange.json';
+
+export const artifacts = {
+ Exchange: (Exchange as any) as ContractArtifact,
+};