Noah Citron
Noah Citron
This should be good to go now. I've made a couple of changes so that instead of directly calling eth_estimateGas, I make all gas estimations through `seth estimate` (which I...
I've actually been working on wasm bindings for the huff compiler. Once we've got them working I'd be happy to submit a PR if you don't mind @Saw-mon-and-Natalie?
Yep. Eventually we probably want to support all the parts of driving the execution layer, but `engine_forkchoiceUpdatedV1` is a good one to start with because it turns out Akula only...
That sounds great! I think `eth_getLogs` is the more used one, so that would probably be best to start with. The filter one's are a bit more complex, since they...
Yeah it does change, but looking at the bottom chart, it seems like 14 days is a good metric since it increases with the validator set size. Even at 250k...
Would something that mimics the websocket block subscription api make sense here potentially?
The `eth_subscribe` rpc method with the `newHeads` subscription type I think would make sense. We don't support these right now, but would something sort of inspired by this where you...
That's a good point @sk1122. Is it possible to check filter validity ourselves? I don't think it's a huge deal anyway though, as for the log methods we sort of...
> Understood, I think we should check it once before handing filter id over to user, what do you think? How would we check it before handing the id to...
@sk1122 that would be great!