I have transitioned from getContractEvents to getContractLogs and face the problem of cursor pagination.
I understand that the cursor pagination is more flexible and sustainable for large datasets, but is it possible to maintain both parameters? Meaning to also keep the offset based approach.
But Iβd like to execute parallelized requests.
Basically, I first get the total count of elements in a block range and then execute all pages as different requests under my own rate limitations according to my subscription for optimal usage. This parallelisation and optimal usage of the requests is now no longer possible with the sequential cursor implementation.
Am I missing something or is it possible to somehow use offset with getContractLogs instead?
Thanks for any insights!