erigon-pulse/turbo
2022-11-11 23:22:47 +01: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 Customizable networking for Erigon Lightclient (#6032) 2022-11-11 23:22:47 +01: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 fix(test): eliminate race conditions (#6019) 2022-11-11 15:22:09 +00:00
services Transaction count fix (#4888) 2022-08-04 18:49:53 +07:00
shards Update interfaces (#6031) 2022-11-11 17:16:39 +01:00
snapshotsync e3: recon reduce ram (#6004) 2022-11-09 14:32:44 +07:00
stages Allow bigger jumps in 1 RwTx - for consistency (#6026) 2022-11-11 16:30:28 +07: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