go-ethereum
go-ethereum copied to clipboard
Go implementation of the Ethereum protocol
Reading a single transaction out of a block shouldn't need decoding the entire body
Done here means reviewed and merged to master. ### Fusaka devnet 0 Specs: https://notes.ethereum.org/@ethpandaops/fusaka-devnet-0 Branch: #31825 - [x] ~~EOFv1~~ - ~~#30511~~ - [x] MODEXP repricing - #31606 - [x] Modexp...
Following some benchmarking that has been done, we've decided these new numbers could support easily the 100MGas limit and this should be tested for next week. More information can be...
Towards https://github.com/ethereum/go-ethereum/issues/26974 Best reviewed commit by commit. From my benchmarks, it seems that the dominant cost is still the DB reads. Sender derivation seems to be negligible. Currently for a...
Here's an idea for speeding up RPC method `eth_getTransactionReceipt`, i.e. the operation that loads a single receipt by txhash. Right now, this operation is very slow because it has to:...
I've built [esplr](https://github.com/paulmillr/esplr) - private eth explorer. It's getting more popular, but still can't be ran on geth. The functionality of fetching account data from a node can be useful...
This adds a short example section showing how to use curl to verify that a Beacon API endpoint is reachable and returns valid light client headers. Helps developers quickly test...