erigon-pulse/turbo
Mark Holt 8ea0096d56
moved metrics sub packages types to metrics (#8119)
This is a non functional change which consolidates the various packages
under metrics into the top level package now that the dead code is
removed.

It is a precursor to the removal of Victoria metrics after which all
erigon metrics code will be contained in this single package.
2023-09-03 08:09:27 +07:00
..
adapter Add parentBeaconBlockRoot to RPCMarshalHeader (EIP-4788) (#7997) 2023-08-11 10:26:44 +02:00
app pprof flags in erigon sub-commands 2023-09-01 12:22:24 +07:00
backup move mdbx to new org (#8061) 2023-08-24 18:00:24 +07:00
builder Fix CopyTxs for BlobTxWrapper (EIP-4844) (#8002) 2023-08-11 20:30:02 +02:00
cli add flag --force.partial.commit: to workaround problem "start from backup takes long time and can't save partial progress" (#8090) 2023-08-30 08:49:16 +07:00
cmdtest move all packages from "internal" folder - to simplify users live (#5857) 2022-10-25 09:58:25 +07:00
debug moved metrics sub packages types to metrics (#8119) 2023-09-03 08:09:27 +07:00
engineapi demote logs for fork validator (#8118) 2023-09-02 00:20:14 +02:00
execution/eth1 Fixed canonical chain truncation (#8117) 2023-09-01 23:44:18 +02:00
jsonrpc RPCdaemon: fix to work also with snapshot (#8111) 2023-09-02 09:55:48 +07: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 Support for --chain=holesky (#8064) 2023-08-26 16:31:29 +06:00
rlphacks
rpchelper Removed GRPC layer from Engine API (#7878) 2023-07-12 18:11:41 +02:00
services Snapshots of Bor events (#7901) 2023-08-18 17:10:35 +01:00
shards moved metrics sub packages types to metrics (#8119) 2023-09-03 08:09:27 +07:00
snapshotsync Bor snapshot block production (#8065) 2023-08-30 08:06:09 +01:00
stages Bor snapshot block production (#8065) 2023-08-30 08:06:09 +01:00
testlog Introduce logger into etl (#7537) 2023-05-18 21:20:07 +01:00
transactions Move ApplyDAOHardFork & UpgradeBuildInSystemContract to engine.Initialize (#8095) 2023-08-30 15:51:19 +02:00
trie [devnet tool] Side-quest logging - replace quiet parameter (#7464) 2023-05-08 17:52:31 +01:00
README.md

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