aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/data-sources/etherscan/index.ts
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-09-20 02:25:46 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-06 19:03:11 +0800
commitcc5ea80aa346c5318a6c18d82d49368b08aae152 (patch)
tree1ba390a890dbb0bcb9e12afb4418a9bf6122b440 /packages/pipeline/src/data-sources/etherscan/index.ts
parentd1026a64ba670a7c46ff3015cf907aee5a562de8 (diff)
downloaddexon-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/data-sources/etherscan/index.ts')
-rw-r--r--packages/pipeline/src/data-sources/etherscan/index.ts34
1 files changed, 34 insertions, 0 deletions
diff --git a/packages/pipeline/src/data-sources/etherscan/index.ts b/packages/pipeline/src/data-sources/etherscan/index.ts
new file mode 100644
index 000000000..0891d351a
--- /dev/null
+++ b/packages/pipeline/src/data-sources/etherscan/index.ts
@@ -0,0 +1,34 @@
+import { default as axios } from 'axios';
+import { BlockParam, BlockParamLiteral, DecodedLogArgs, LogWithDecodedArgs } from 'ethereum-types';
+
+import { EventsResponse, parseRawEventsResponse } from './events';
+
+const ETHERSCAN_URL = 'https://api.etherscan.io/api';
+
+export class Etherscan {
+ private readonly _apiKey: string;
+ constructor(apiKey: string) {
+ this._apiKey = apiKey;
+ }
+
+ /**
+ * Gets the decoded events for a specific contract and block range.
+ * @param contractAddress The address of the contract to get the events for.
+ * @param fromBlock The start of the block range to get events for (inclusive).
+ * @param toBlock The end of the block range to get events for (inclusive).
+ * @returns A list of decoded events.
+ */
+ public async getContractEventsAsync(
+ contractAddress: string,
+ fromBlock: BlockParam = BlockParamLiteral.Earliest,
+ toBlock: BlockParam = BlockParamLiteral.Latest,
+ ): Promise<Array<LogWithDecodedArgs<DecodedLogArgs>>> {
+ const fullURL = `${ETHERSCAN_URL}?module=logs&action=getLogs&address=${contractAddress}&fromBlock=${fromBlock}&toBlock=${toBlock}&apikey=${
+ this._apiKey
+ }`;
+ const resp = await axios.get<EventsResponse>(fullURL);
+ // TODO(albrow): Check response code.
+ const decodedEvents = parseRawEventsResponse(resp.data.result);
+ return decodedEvents;
+ }
+}