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

SVG graph with per-process statistics provided by `pidstat` (missing the network activity, for now, but still interesting): ![SVG graph](https://gist.githubusercontent.com/stefantalpalaru/b0dac8033588ff957f46a353f96bf9bd/raw/cf62406ae59a36c582f4b15a50b0a74c45a0a605/nimbus8.svg?sanitize=true) That CPU usage over 100% must come from the multi-threaded rocksdb...

Sync

As shown by https://github.com/status-im/nim-beacon-chain/issues/370#issuecomment-527252425, putting too much data on the stack will have serious impact on the GC as it scans it to find live objects (100x slowdown). It seems...

EL

* [x] add genesis data for: Ropsten, Rinkeby, Kovan, and Goerli * [x] modify the VM a bit so we can sync with those testnet * [ ] add difficulty...

Sync

Following on from a conversation at https://github.com/status-im/nimbus-eth1/issues/635#issuecomment-833406720 Behaviour flags would say which EIP (and other) behaviours are active for the current block. They would replace all occurrences of `fork >=`...

see https://github.com/ethereum/devp2p/pull/167

For the purposes of creating browser-based light clients or development environments such as [Embark cockpit](https://framework.embarklabs.io/docs/cockpit_editor.html), we want to ship our EVM implementation as an easy-to-use WebAssembly module. Nimbus may also...

bounty

# Nimbus 1.0 TODO ## Summary Meta-issue of the currently known work remaining to reach 1.0. ### Chain, State & VM - [ ] Missing functionality: - [x] Fetch block...

EL

Given the potential fallout of security issues in Nimbus, I'd like to keep track of solutions to make sure we're comfortable with shipping this: * American Fuzzy Loop: https://github.com/nim-lang/Nim/wiki/Fuzzing-your-nim-code-to-rabbit-out-all-the-hard-bugs *...

tests

Here is a list of items that I deem useful to get Whisper (and underlying protocols) more stable & secure + also get some additional features. For the Status nim...

according to EIP161, empty accounts shall be removed after transaction execution. current implementation: empty accounts are removed, but the contract code and storage trie are not removed. but removing those...

bug
EL