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)
For performance & security considerations, only the first 1000 results are return. So please narrow down the filter parameters.
Sample Log API Queries
Get Event Logs from block number 1092029 to 'latest' , where log address = 0xbb81e4ff47f4401cb932df724fa15e315fa5c9d7 and topic[0] = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
https://api-testnet.wemixscan.com/api
?module=logs
&action=getLogs
&fromBlock=1092029
&toBlock=latest
&address=0xbb81e4ff47f4401cb932df724fa15e315fa5c9d7
&topic0=0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Get Event Logs from block number 1089604 to block 'latest', where log address = 0x244c72ab61f11dd44bfa4aaf11e2efd89ca789fe, topic[0] = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef 'AND' topic[1] = 0x000000000000000000000000e9086c38a7cf49d3b8547e3d9e085a5f0050701d
https://api-testnet.wemixscan.com/api
?module=logs
&action=getLogs
&fromBlock=1089604
&toBlock=latest
&address=0x244c72ab61f11dd44bfa4aaf11e2efd89ca789fe
&topic0=0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
&topic0_1_opr=and
&topic1=0x000000000000000000000000e9086c38a7cf49d3b8547e3d9e085a5f0050701d
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Last updated