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/data-sources/etherscan/events.ts | |
parent | d1026a64ba670a7c46ff3015cf907aee5a562de8 (diff) | |
download | dexon-0x-contracts-cc5ea80aa346c5318a6c18d82d49368b08aae152.tar dexon-0x-contracts-cc5ea80aa346c5318a6c18d82d49368b08aae152.tar.gz dexon-0x-contracts-cc5ea80aa346c5318a6c18d82d49368b08aae152.tar.bz2 dexon-0x-contracts-cc5ea80aa346c5318a6c18d82d49368b08aae152.tar.lz dexon-0x-contracts-cc5ea80aa346c5318a6c18d82d49368b08aae152.tar.xz dexon-0x-contracts-cc5ea80aa346c5318a6c18d82d49368b08aae152.tar.zst dexon-0x-contracts-cc5ea80aa346c5318a6c18d82d49368b08aae152.zip |
Restructure pipeline package. Create data-sources dir
Diffstat (limited to 'packages/pipeline/src/data-sources/etherscan/events.ts')
-rw-r--r-- | packages/pipeline/src/data-sources/etherscan/events.ts | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/packages/pipeline/src/data-sources/etherscan/events.ts b/packages/pipeline/src/data-sources/etherscan/events.ts new file mode 100644 index 000000000..50962a266 --- /dev/null +++ b/packages/pipeline/src/data-sources/etherscan/events.ts @@ -0,0 +1,54 @@ +import { AbiDecoder } from '@0xproject/utils'; +import { DecodedLogArgs, LogEntry, LogWithDecodedArgs } from 'ethereum-types'; +import * as R from 'ramda'; + +import { artifacts } from '../../artifacts'; + +// 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; +} + +function convertResponseToLogEntry(result: EventsResponseResult): LogEntry { + const radix = 10; + return { + logIndex: parseInt(result.logIndex, radix), + transactionIndex: parseInt(result.logIndex, radix), + transactionHash: result.transactionHash, + blockHash: '', + blockNumber: parseInt(result.blockNumber, radix), + address: result.address, + data: result.data, + topics: result.topics, + }; +} + +function tryToDecodeLogOrNoop(log: LogEntry): LogWithDecodedArgs<DecodedLogArgs> { + const abiDecoder = new AbiDecoder([artifacts.Exchange.compilerOutput.abi]); + const logWithDecodedArgs = abiDecoder.tryToDecodeLogOrNoop(log); + // tslint:disable-next-line:no-unnecessary-type-assertion + return logWithDecodedArgs as LogWithDecodedArgs<DecodedLogArgs>; +} + +/** + * Parses and abi-decodes the raw events response from etherscan.io. + * @param rawEventsResponse The raw events response from etherescan.io. + * @returns Parsed and decoded events. + */ +export const parseRawEventsResponse = R.pipe(R.map(convertResponseToLogEntry), R.map(tryToDecodeLogOrNoop)); |