aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/data_sources
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-09-26 03:54:10 +0800
committerAlex Browne <stephenalexbrowne@gmail.com>2018-12-05 06:24:06 +0800
commitfe523e1f3f765077bdaf4dfc345c9dca67693668 (patch)
tree240544ddca2ecc3e96dfd7079b3192bb3827bb97 /packages/pipeline/src/data_sources
parent9e9104578c8526ff48ecdda8b87d61ccb3d66a2d (diff)
downloaddexon-sol-tools-fe523e1f3f765077bdaf4dfc345c9dca67693668.tar
dexon-sol-tools-fe523e1f3f765077bdaf4dfc345c9dca67693668.tar.gz
dexon-sol-tools-fe523e1f3f765077bdaf4dfc345c9dca67693668.tar.bz2
dexon-sol-tools-fe523e1f3f765077bdaf4dfc345c9dca67693668.tar.lz
dexon-sol-tools-fe523e1f3f765077bdaf4dfc345c9dca67693668.tar.xz
dexon-sol-tools-fe523e1f3f765077bdaf4dfc345c9dca67693668.tar.zst
dexon-sol-tools-fe523e1f3f765077bdaf4dfc345c9dca67693668.zip
Re-organize event parsing and decoding
Diffstat (limited to 'packages/pipeline/src/data_sources')
-rw-r--r--packages/pipeline/src/data_sources/etherscan/index.ts52
1 files changed, 52 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..044fff02e
--- /dev/null
+++ b/packages/pipeline/src/data_sources/etherscan/index.ts
@@ -0,0 +1,52 @@
+import { default as axios } from 'axios';
+import { BlockParam, BlockParamLiteral } from 'ethereum-types';
+
+const ETHERSCAN_URL = 'https://api.etherscan.io/api';
+
+export class Etherscan {
+ private readonly _apiKey: string;
+ constructor(apiKey: string) {
+ this._apiKey = apiKey;
+ }
+
+ /**
+ * Gets the raw 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<EventsResponse> {
+ 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.
+ return resp.data;
+ }
+}
+
+// Raw events response from etherescan.io
+export interface EventsResponse {
+ status: string;
+ message: string;
+ result: EventsResponseResult[];
+}
+
+// Events as represented in the response from etherscan.io
+export interface EventsResponseResult {
+ address: string;
+ topics: string[];
+ data: string;
+ blockNumber: string;
+ timeStamp: string;
+ gasPrice: string;
+ gasUsed: string;
+ logIndex: string;
+ transactionHash: string;
+ transactionIndex: string;
+}