I'm trying to implement the logic for my code to return more than 200K Events using /{address}/events endpoint in Web3 API.
Request queries are executed async with max 20 threads simultaneously.
After the result list reaches ~150K zone I'm starting to get random errors 500/504.
So I'm trying to implement slicing. from_block -> to_block . I just found out that from_block and to_block filters don't work properly on /{address}/events.
I'm trying to implement the logic for my code to return more than 200K Events using /{address}/events endpoint in Web3 API. Request queries are executed async with max 20 threads simultaneously.
After the result list reaches ~150K zone I'm starting to get random errors 500/504.
So I'm trying to implement slicing. from_block -> to_block . I just found out that from_block and to_block filters don't work properly on /{address}/events.
Params used:
The results I get are way above to_block limit.