erigon-pulse/turbo
Giulio rebuffo 7a2b575e56
Added memory execution (#4446)
* add

* added in memory execution draft

* func to state

* added functionality

* backend function for memory execution

* simplified stage state

* haltable stage execution

* added mod sum

* hd

* sl

* LOL

* LOL again

* need trace

* more logs

* added cleanup on fcu

* fcu

* mod

* bunch of prtln

* feed

* ops

* headers notify

* revert

* slightly more commented

* head

* nil block retire

* comments

* prevent clean

* corrected occasional panics

* fixed lint
2022-06-19 20:45:36 +01:00
..
adapter grpc GetBlock api (#2955) 2021-11-14 11:08:52 +07:00
app more usage of dirs object #4390 2022-06-07 11:54:04 +07:00
builder Interruptible PoS block building (#4438) 2022-06-13 15:43:09 +02:00
cli Added memory execution (#4446) 2022-06-19 20:45:36 +01:00
engineapi Refactor PoS downloader (#3717) 2022-03-22 17:49:12 +01:00
mock rpcdaemon: add txpool_status() (#2407) 2021-08-06 09:45:44 +07:00
node Bor devnet option (#4428) 2022-06-10 15:32:04 +07:00
rlphacks Use go:build lines and remove obsolete +build lines (#4175) 2022-05-17 14:46:53 +07:00
rpchelper safe and finalized blocks from eth_getBlockByNumber (#4436) 2022-06-14 11:07:46 +03:00
services trace_filter implementation based on erigon 2 update 2 data (#4431) 2022-06-12 12:44:01 +01:00
shards up linter version (#4108) 2022-05-10 10:14:09 +07:00
snapshotsync [erigon2.2] Reduce allocations when replaying historical txs (#4460) 2022-06-17 13:40:49 +01:00
stages Added memory execution (#4446) 2022-06-19 20:45:36 +01:00
transactions trace_filter implementation based on erigon 2 update 2 data (#4431) 2022-06-12 12:44:01 +01:00
trie kv_mdbx: atomic closed flag #464 (#4247) 2022-05-24 12:24:20 +07:00
README.md Rename to Erigon (#2018) 2021-05-26 11:35:39 +01:00

Erigon-API

Erigon-API is a set of tools for building applications containing Erigon node.

Our own binary erigon is built using it.

Modules

  • cli - erigon-cli, methods & helpers to run a CLI app with Erigon node.

  • node - represents an Ethereum node, running devp2p and sync and writing state to the database.

  • stagedsync - staged sync algorithm.

Examples

  • erigon - our binary is using erigon-api with all defaults

  • erigoncustom - a very simple example of adding a custom stage, a custom bucket and a custom command-line parameter

  • erigon-examples - a series of examples for Erigon api