In order to build a full (and useful) index, blocktop will need the ability to retrieve historical blocks and add them to the index. There are certainly quite a few ways to go about this, but the naive method is just to hammer the endpoint with eth_getBlockByNumber for all historical blocks. This is obviously not sustainable nor performant.
In order to build a full (and useful) index,
blocktopwill need the ability to retrieve historical blocks and add them to the index. There are certainly quite a few ways to go about this, but the naive method is just to hammer the endpoint witheth_getBlockByNumberfor all historical blocks. This is obviously not sustainable nor performant.