crypto-org-chain / cronos

Cronos is the first Ethereum-compatible blockchain network built on Cosmos SDK technology. Cronos aims to massively scale the DeFi, GameFi, and overall Web3 user community by providing builders with the ability to instantly port apps and crypto assets from other chains while benefiting from low transaction fees, high throughput, and fast finality.
Other
290 stars 235 forks source link

Feedback on latest release #1365

Open kaber2 opened 6 months ago

kaber2 commented 6 months ago

I thought you might appreciate some feedback from your latest release. First of all, performance has improved a lot, the RPC streams API pays of and RPC latencies have gone done a lot, and foremost of all, I'm very happy about the support of the tracing API. Thanks guys, good job.

Two things for the wishlist: backfilling data is rather slow, in my local fork I'm using a LRU cache for blocks received through internal RPC, which speeds up things 10x, also while not strictly necessary for Cronos, the accesslist API is useful for analyzing smart contract behaviour and should be easy to support.

Cheers!

yihuang commented 6 months ago

Thanks for your feedback.

the RPC streams API pays of

Do you mean the subscribe/filter APIs and the code refactors we released?

backfilling data

What do you mean by this?

in my local fork I'm using a LRU cache for blocks received through internal RPC, which speeds up things 10x

It'd be great if you can submit a PR, even if a rough one, to help me understand what you mean here.