nimbus-eth1 icon indicating copy to clipboard operation
nimbus-eth1 copied to clipboard

Nimbus: an Ethereum Execution Client for Resource-Restricted Devices

Results 193 nimbus-eth1 issues
Sort by recently updated
recently updated
newest added

Current specification indicates to use the `TalkReq` message to send data over an `uTP` stream: https://github.com/ethereum/stateless-ethereum-specs/blob/master/discv5-utp.md#specification , with no `TalkResp` message. This actually violates the current Discovery v5 specification. For...

Fluffy

pre London gasLimit in sealing engine ```nim computeGasLimit( parent.gasUsed, parent.gasLimit, gasFloor = DEFAULT_GAS_LIMIT, gasCeil = DEFAULT_GAS_LIMIT) ``` post London gasLimit in sealing engine ```Nim if isLondon(conf, header.blockNumber): var parentGasLimit =...

Here is some idea of the logic employed by the transaction pool. maybe somebody has an opinion about that. The _txPool_ can prioritise transactions for packing. This is done by...

enhancement
docs
EL

Specs are unfinished, but it would be nice to have something available that allows us to do the block number to hash and tx to block mapping. This would allow...

Fluffy

Issue to better track the implementation of required features for the overlay network functionality in the Fluffy Portal client, in order to know what to work in still and to...

Portal Network

A saving of about 24,000 GB over current Mainnet disk usage! A smaller 25.03 GiB file is available for 90k blocks pruned state. Files for Goerli are also available. The...

This is work in progress on the replacement account+storage state history database. Files have been prepared that fit the Mainnet state history history, full archive of all blocks, into <...

This meta issue is to write down a few observations when we run `nimbus --mainnet` (now changed to `nimbus --network=mainnet`). Nobody tested `nimbus --mainnet` with the serious goal of _completing_...

Sync
Security
Networking

In the current implementation, a rather quick approach was taken where only 1 content item is offered as part of the neighborhood gossip. It is probably better to pack lists...

Portal Network

see for more detailed explanation in ethereum/evmc#611 and ethereum/evmc#615

bug
EVMC