Sina M
Sina M
When proof for multiple leaves of the trie are required simultaneously, batching the proofs together as proposed [here](https://ethresear.ch/t/optimizing-merkle-tree-multi-queries/4912) can reduce the total overhead. A new method can be added, e.g....
As of https://github.com/ethereum/go-ethereum/pull/25971 in case a call frame of type CREATE fails it will clear the `to` field to the zero address instead of displaying the created address. This can...
Adds an optional config parameter to `eth_call` which allows users to: - Override block context fields (same functionality that was added to `traceCall` in https://github.com/ethereum/go-ethereum/pull/24871) - Mock caller in the...
This PR lets users run a long-running tracer. The tracer will run alongside normal chain processing operations. It will be aware of practically all observable changes to the chain. This...
Dev mode is failing to mine blocks when configured for cancun via `--override.cancun 0`
Collecting the list of changes we need in various points of the API to fully support Cancun: - [x] Accept blob hashes and blob fee cap for eth_call, eth_estimateGas https://github.com/ethereum/go-ethereum/pull/28786...
This is a successor PR to #25743. This PR is based on a new iteration of the spec: https://github.com/ethereum/execution-apis/pull/484. `eth_multicall` takes in a list of blocks, each optionally overriding fields...
Modifications to the trie (put and del) are protected via a semaphore. The locking period however can be quite long, as after taking the semaphore `put` calls `findPath` and possibly...
As mentioned in #23, the research being done on account abstraction could be quite relevant to meta transactions. This issue tracks the resources on the topic. Please feel free to...
One of the differences I have seen among projects is how they transmit the signature of the meta tx, with some sending `v, r, s` fields separately, and some using...