erigon-pulse/turbo
2023-03-29 07:27:06 +00:00
..
adapter eip-4844: small additions and modified gaspool (#7190) 2023-03-27 21:39:15 +00:00
app Break dependency of ethcfg package to core/consensus/etc... move genesis struct to 'types' package (#7206) 2023-03-29 07:27:06 +00:00
builder blockValue should use gasUsed rather than gasLimit (#6875) 2023-02-14 15:05:27 +00:00
cli Break dependency of ethcfg package to core/consensus/etc... move genesis struct to 'types' package (#7206) 2023-03-29 07:27:06 +00:00
cmdtest move all packages from "internal" folder - to simplify users live (#5857) 2022-10-25 09:58:25 +07:00
debug fix for reading yaml/toml config in cmd/integration (#7101) 2023-03-14 08:33:59 +00:00
engineapi go 1.19 atomics (#7164) 2023-03-23 05:11:28 +00:00
logging Upgrade urfave/cli to v2 (#6047) 2022-11-14 17:33:57 +01:00
mock reference hash, address, and chain config from lib (#6536) 2023-01-13 18:12:18 +00:00
node e3: read files list from db (#6833) 2023-02-13 05:17:01 +00:00
rlphacks Use go:build lines and remove obsolete +build lines (#4175) 2022-05-17 14:46:53 +07:00
rpchelper enable more linters #954 (#7179) 2023-03-25 05:13:27 +00:00
services reference hash, address, and chain config from lib (#6536) 2023-01-13 18:12:18 +00:00
shards enable more linters #954 (#7179) 2023-03-25 05:13:27 +00:00
snapshotsync go 1.19 atomics (#7164) 2023-03-23 05:11:28 +00:00
stages Break dependency of ethcfg package to core/consensus/etc... move genesis struct to 'types' package (#7206) 2023-03-29 07:27:06 +00:00
testlog move all packages from "internal" folder - to simplify users live (#5857) 2022-10-25 09:58:25 +07:00
transactions eip-4844: NewEVMBlockContext now expects excessDataGas (#7203) 2023-03-29 06:39:36 +00:00
trie enable more linters #954 (#7179) 2023-03-25 05:13:27 +00: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