Logs

The Event Log API was designed to provide an alternative to the native eth_getLogs.

Below are the list of supported filter parameters:

  • fromBlock, toBlock, address

  • topic0, topic1, topic2, topic3 (32 Bytes per topic)

  • topic0_1_opr (and|or between topic0 & topic1), topic1_2_opr (and|or between topic1 & topic2), topic2_3_opr (and|or between topic2 & topic3), topic0_2_opr (and|or between topic0 & topic2), topic0_3_opr (and|or between topic0 & topic3), topic1_3_opr (and|or between topic1 & topic3)

  • FromBlock & ToBlock accepts the blocknumber (integer, NOT hex) or 'latest' (earliest & pending is NOT supported yet)

  • Topic Operator (opr) choices are either 'and' or 'or' and are restricted to the above choices only

  • FromBlock & ToBlock parameters are required

  • An address and/or topic(X) parameters are required, when multiple topic(X) parameters are used the topicX_X_opr (and|or operator) is also required

For performance & security considerations, only the first 1000 results are returned. So please narrow down the filter parameters.

Sample Log API Queries

Get Event Logs from block number 0 to 'latest' block, where log address = 0x4200000000000000000000000000000000000010 and topic[0] = 0xb0444523268717a02698be47d0803aa7468c00acbed2f8bd93a0459cde61dd89

https://api.fraxscan.com/api
   ?module=logs
   &action=getLogs
   &fromBlock=0
   &toBlock=latest
   &address=0x4200000000000000000000000000000000000010 
   &topic0=0xb0444523268717a02698be47d0803aa7468c00acbed2f8bd93a0459cde61dd89
   &apikey=YourApiKeyToken

Get Event Logs from block number 0 to block latest, where log address = 0x4200000000000000000000000000000000000010, topic[0] = 0x31b2166ff604fc5672ea5df08a78081d2bc6d746cadce880747f3643d819e83d'AND' topic[1] = 0x000000000000000000000000e7c147cd1a7c05a6e73217645547582024e87a9b

https://api.fraxscan.com/api
   ?module=logs
   &action=getLogs
   &fromBlock=0
   &toBlock=latest
   &address=0x4200000000000000000000000000000000000010
   &topic0=0x31b2166ff604fc5672ea5df08a78081d2bc6d746cadce880747f3643d819e83d
   &topic0_1_opr=and
   &topic1=0x000000000000000000000000e7c147cd1a7c05a6e73217645547582024e87a9b
   &apikey=YourApiKeyToken

Last updated