Is your feature request related to a problem? Please describe.
The eth_getLogs implementation in hethers was implemented before pagination was added to the contract logs REST API endpoints. Paging just by timestamp could miss logs since it doesn't take into account the log index.
Describe the solution you'd like
Change eth_getLogs to use the links.next in the response if populated
Change limit params to not be greater than 100
Remove throwing of error if results > 100 as it's not possible or worthwhile to check
Is your feature request related to a problem? Please describe.
The eth_getLogs implementation in hethers was implemented before pagination was added to the contract logs REST API endpoints. Paging just by timestamp could miss logs since it doesn't take into account the log index.
Describe the solution you'd like
links.next
in the response if populatedDescribe alternatives you've considered
Additional context