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
committerFred Carlsen <fred@sjelfull.no>2018-12-13 01:11:52 +0800
commitc46d2f8f9d4e632352637376b2556101bccad748 (patch)
tree9a5dbfd6df21ac523aa9cbb9e0a9a2d0242cd64c /packages/pipeline/src/artifacts.ts
parenteb1317a59abec368f3855eb3690e40d8db2a8984 (diff)
downloaddexon-sol-tools-c46d2f8f9d4e632352637376b2556101bccad748.tar
dexon-sol-tools-c46d2f8f9d4e632352637376b2556101bccad748.tar.gz
dexon-sol-tools-c46d2f8f9d4e632352637376b2556101bccad748.tar.bz2
dexon-sol-tools-c46d2f8f9d4e632352637376b2556101bccad748.tar.lz
dexon-sol-tools-c46d2f8f9d4e632352637376b2556101bccad748.tar.xz
dexon-sol-tools-c46d2f8f9d4e632352637376b2556101bccad748.tar.zst
dexon-sol-tools-c46d2f8f9d4e632352637376b2556101bccad748.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,
+};