erigon-pulse/turbo
a d8d7d8d5df
Enable h2c for http handler. add https handler for http2 (#8610)
new flag examples.

--https.enabled
--https.addr="0.0.0.0"
--https.port=443
--https.url="unix:///file.wow"
--https.cert="keyfile.cert" 
--https.key="certfile.cert"

also adds support for h2c to the http handler - http2 protocol without tls.
2023-10-31 04:14:20 -05:00
..
adapter Sentinel refactor (#8296) 2023-10-22 01:17:18 +02:00
app downloader: preparations for reducing blocks merge limit (#8612) 2023-10-30 13:46:35 +07:00
backup touch data when do warmup (#8268) 2023-09-22 14:36:54 +07:00
builder Fix CopyTxs for BlobTxWrapper (EIP-4844) (#8002) 2023-08-11 20:30:02 +02:00
cli Enable h2c for http handler. add https handler for http2 (#8610) 2023-10-31 04:14:20 -05:00
cmdtest move all packages from "internal" folder - to simplify users live (#5857) 2022-10-25 09:58:25 +07:00
debug Sentinel refactor (#8296) 2023-10-22 01:17:18 +02:00
engineapi Sentinel refactor (#8296) 2023-10-22 01:17:18 +02:00
execution/eth1 Numerical instead of lexicographic sorting in borKeyValueConfigHelper (#8560) 2023-10-23 14:11:32 +02:00
jsonrpc Sentinel refactor (#8296) 2023-10-22 01:17:18 +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 move chainname and snapcfg packages to erigon-lib (#8508) 2023-10-18 13:37:39 +07:00
rlphacks Use go:build lines and remove obsolete +build lines (#4175) 2022-05-17 14:46:53 +07:00
rpchelper move borfinality package out of eth (#8407) 2023-10-09 19:13:31 +01:00
services Revert "Move validator set snapshot computation to bor_heimdall stage… (#8580) 2023-10-25 14:02:31 +02:00
shards Sentinel refactor (#8296) 2023-10-22 01:17:18 +02:00
silkworm Add RPC daemon using Silkworm (#8486) 2023-10-18 06:37:16 +07:00
snapshotsync Compress snapshots for Caplin with lz4 level=1 (#8609) 2023-10-30 13:48:14 +01:00
stages downloader: preparations for reducing blocks merge limit (#8612) 2023-10-30 13:46:35 +07: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 Sentinel refactor (#8296) 2023-10-22 01:17:18 +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