diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-09-20 01:51:12 +0800 |
---|---|---|
committer | Alex Browne <stephenalexbrowne@gmail.com> | 2018-12-05 06:23:29 +0800 |
commit | cd73a047efbc1b7afa884ef27a1cc4991e20efd8 (patch) | |
tree | 4355fd034ec22a5e5412aca1876ee09a9d848eb4 /packages/pipeline/src/artifacts.ts | |
parent | 57e7119c0d4f1ab7dd1d4c0118e72dc1706e2151 (diff) | |
download | dexon-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.ts | 7 |
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, +}; |