Closed
Description
- Speed up light client startup - easiest way to do this at this point would be to hard code some nimbus nodes which servers light client data as bootstrap nodes
- Fetch full blocks on demand - currently proxy just follow the block gossip which is validated by light client and then caches them for subsequent queries. This is pretty efficient and painless, but it makes only most recent blocks available for validated queries.
- Add missing endpoints - probably most important ones are
eth_call
,eth_estimateGas
,eth_getCode
.