erigon-pulse/turbo
hexoscott 12ed9d22cf
eth_estimateGas performance tweaks (#6001)
Will gain more perf improvements when the change for kvcache goes in
from erigon-lib.

Hopefully can be validated with hive? My main concern is the re-use of
the state reader, I couldn't find any manipulation of it so it looks
safe to re-use.
2022-11-08 21:48:11 +00:00
..
adapter AuRa service transactions are free (#5873) 2022-10-26 13:03:47 +02:00
app cache state check (#5844) 2022-11-07 13:04:31 +00:00
builder Fix potential nil pointer dereference in NewBlockBuilder (#5792) 2022-10-19 11:38:03 +02:00
cli cache state check (#5844) 2022-11-07 13:04:31 +00:00
cmdtest move all packages from "internal" folder - to simplify users live (#5857) 2022-10-25 09:58:25 +07:00
debug move all packages from "internal" folder - to simplify users live (#5857) 2022-10-25 09:58:25 +07:00
engineapi Create in-memory MDBX inside dirs.Tmp (#5702) 2022-10-11 16:49:38 +01:00
logging move all packages from "internal" folder - to simplify users live (#5857) 2022-10-25 09:58:25 +07:00
mock rpcdaemon: add txpool_status() (#2407) 2021-08-06 09:45:44 +07:00
node erigon22: history.v2 flag, align rpcdaemon22 (#5016) 2022-08-12 16:13:14 +07:00
rlphacks Use go:build lines and remove obsolete +build lines (#4175) 2022-05-17 14:46:53 +07:00
rpchelper eth_estimateGas performance tweaks (#6001) 2022-11-08 21:48:11 +00:00
services Transaction count fix (#4888) 2022-08-04 18:49:53 +07:00
shards cache state check (#5844) 2022-11-07 13:04:31 +00:00
snapshotsync Fix panic in txpool (due to modificatin with read lock) and snapshot … (#5931) 2022-11-04 12:43:59 +00:00
stages fixes for POS header downloader (#5991) 2022-11-07 16:13:59 +00:00
testlog move all packages from "internal" folder - to simplify users live (#5857) 2022-10-25 09:58:25 +07:00
transactions e3: eth_traceTransaction implementation (#5909) 2022-10-31 12:31:38 +07:00
trie Added complete verkle trie regeneration (#5310) 2022-09-10 20:00:03 +02: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