erigon-pulse/turbo
battlmonstr d78cbfeceb
silkworm: disable on incompatible Linux versions (#8893)
Silkworm built on Ubuntu 22 depends on glibc 2.34. In order to run on an
older OS, Silkworm needs to be built and linked with an older glibc, but
to build on an older OS we need a compatible compiler. Silkworm requires
gcc 11+ that is not available on Ubuntu 20 or Debian 11.

To simplify the deployment disable Silkworm support on versions before
Ubuntu 22, Debian 12, and glibc prior to 2.34. The check for Ubuntu and
Debian is explicit, because some Ubuntu 16 installations report glibc
2.35 with ldd, but `go build` still uses an older system one and fails.
2023-12-06 16:01:44 +01:00
..
adapter Sentinel refactor (#8296) 2023-10-22 01:17:18 +02:00
app bor snaps: "erigon snapshots retire" to build bor files (#8912) 2023-12-06 12:12:43 +00:00
backup touch data when do warmup (#8268) 2023-09-22 14:36:54 +07:00
builder turbo: run tests in parallel (#8738) 2023-11-16 16:29:31 +07:00
cli Caplin: Parallel historical states reconstruction (#8817) 2023-12-06 10:48:36 +01:00
cmdtest
debug [beacon handler] framework (#8851) 2023-12-05 00:13:52 +01:00
engineapi added logging for slow RPC requests (#8818) 2023-11-28 16:11:39 +07:00
execution/eth1 Revisit getPayloadBodiesByHash (#8758) 2023-11-17 13:04:02 +01:00
jsonrpc debug_trace*: root gas should use tx.gasLimit (#8858) 2023-12-01 10:04:32 +01:00
logging allow disable file logging (#8884) 2023-12-04 11:11:11 +07:00
mock
node Add support for amoy testnet (#8674) 2023-11-30 08:19:52 +07:00
rlphacks turbo: run tests in parallel (#8738) 2023-11-16 16:29:31 +07:00
rpchelper turbo: run tests in parallel (#8738) 2023-11-16 16:29:31 +07:00
services Introduce extra functions for BorSpans (no-op) (#8648) 2023-11-04 10:59:07 +00:00
shards turbo: run tests in parallel (#8738) 2023-11-16 16:29:31 +07:00
silkworm silkworm: disable on incompatible Linux versions (#8893) 2023-12-06 16:01:44 +01:00
snapshotsync bor snaps: "erigon snapshots retire" to build bor files (#8912) 2023-12-06 12:12:43 +00:00
stages Backfill only with flag (#8913) 2023-12-06 14:22:13 +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 Bor proof findpath (#8764) 2023-11-17 16:39:59 +00: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