diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-09-20 02:25:46 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-06 19:03:11 +0800 |
commit | cc5ea80aa346c5318a6c18d82d49368b08aae152 (patch) | |
tree | 1ba390a890dbb0bcb9e12afb4418a9bf6122b440 /packages/pipeline/src/index.ts | |
parent | d1026a64ba670a7c46ff3015cf907aee5a562de8 (diff) | |
download | dexon-sol-tools-cc5ea80aa346c5318a6c18d82d49368b08aae152.tar dexon-sol-tools-cc5ea80aa346c5318a6c18d82d49368b08aae152.tar.gz dexon-sol-tools-cc5ea80aa346c5318a6c18d82d49368b08aae152.tar.bz2 dexon-sol-tools-cc5ea80aa346c5318a6c18d82d49368b08aae152.tar.lz dexon-sol-tools-cc5ea80aa346c5318a6c18d82d49368b08aae152.tar.xz dexon-sol-tools-cc5ea80aa346c5318a6c18d82d49368b08aae152.tar.zst dexon-sol-tools-cc5ea80aa346c5318a6c18d82d49368b08aae152.zip |
Restructure pipeline package. Create data-sources dir
Diffstat (limited to 'packages/pipeline/src/index.ts')
-rw-r--r-- | packages/pipeline/src/index.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/pipeline/src/index.ts b/packages/pipeline/src/index.ts new file mode 100644 index 000000000..c9254cc2a --- /dev/null +++ b/packages/pipeline/src/index.ts @@ -0,0 +1,8 @@ +import { Etherscan } from './data-sources/etherscan'; + +const etherscan = new Etherscan(process.env.ETHERSCAN_API_KEY as string); + +(async () => { + const events = await etherscan.getContractEventsAsync('0x4f833a24e1f95d70f028921e27040ca56e09ab0b'); + console.log(events); +})(); |