erigon-pulse/turbo
2023-08-11 23:07:36 +02:00
..
adapter Add parentBeaconBlockRoot to RPCMarshalHeader (EIP-4788) (#7997) 2023-08-11 10:26:44 +02:00
app Caplin block persistence (#7941) 2023-08-09 01:21:19 +02:00
backup mdbx_to_mdbx: increase read-ahead threads amount (#7905) 2023-07-18 13:27:33 +07:00
builder Fix CopyTxs for BlobTxWrapper (EIP-4844) (#8002) 2023-08-11 20:30:02 +02:00
cli Replaced old version of Engine API with newer version (#7972) 2023-08-05 23:33:10 +02:00
cmdtest move all packages from "internal" folder - to simplify users live (#5857) 2022-10-25 09:58:25 +07:00
debug [devnet] Always select first node, fix configuration mess up between nodes (#7863) 2023-07-10 11:37:55 +01:00
engineapi Added gnosis fields and removed body gap. (#7993) 2023-08-11 23:07:36 +02:00
execution/eth1 Added gnosis fields and removed body gap. (#7993) 2023-08-11 23:07:36 +02:00
jsonrpc Call InitializeBlockExecution in SpawnMiningExecStage (EIP-4788) (#7999) 2023-08-11 14:04:53 +02:00
logging added --log.dir.prefix flag (#7714) 2023-06-12 15:30:05 +01:00
mock reference hash, address, and chain config from lib (#6536) 2023-01-13 18:12:18 +00:00
node [devnet] Always select first node, fix configuration mess up between nodes (#7863) 2023-07-10 11:37:55 +01:00
rlphacks Use go:build lines and remove obsolete +build lines (#4175) 2022-05-17 14:46:53 +07:00
rpchelper Removed GRPC layer from Engine API (#7878) 2023-07-12 18:11:41 +02:00
services Enforce blockReader interface (#7737) 2023-06-15 13:11:51 +07:00
shards [interfaces] lower_snake_case field names (#7293) 2023-04-12 10:35:54 +00:00
snapshotsync Recsplit: cancelable build (#7994) 2023-08-11 11:54:59 +06:00
stages Update execution-spec-tests to v1.0.1 (#7980) 2023-08-08 15:01:35 +02:00
testlog Introduce logger into etl (#7537) 2023-05-18 21:20:07 +01:00
transactions Call InitializeBlockExecution in SpawnMiningExecStage (EIP-4788) (#7999) 2023-08-11 14:04:53 +02:00
trie [devnet tool] Side-quest logging - replace quiet parameter (#7464) 2023-05-08 17:52:31 +01: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