erigon-pulse/turbo
Mark Holt 529d359ca6
Bor span testing (#7897)
An update to the devnet to introduce a local heimdall to facilitate
multiple validators without the need for an external process, and hence
validator registration/staking etc.

In this initial release only span generation is supported.  

It has the following changes:

* Introduction of a local grpc heimdall interface
* Allocation of accounts via a devnet account generator ()
* Introduction on 'Services' for the network config

"--chain bor-devnet --bor.localheimdall" will run a 2 validator network
with a local service
"--chain bor-devnet --bor.withoutheimdall" will sun a single validator
with no heimdall service as before

---------

Co-authored-by: Alex Sharp <alexsharp@Alexs-MacBook-Pro-2.local>
2023-07-18 09:47:04 +01:00
..
adapter Base BlobTx on DynamicFeeTransaction (#7736) 2023-06-15 10:57:27 +02:00
app added bor tx indexing with tests (#7826) 2023-07-12 23:31:38 +01:00
backup mdbx_to_mdbx: increase read-ahead threads amount (#7905) 2023-07-18 13:27:33 +07:00
builder Separated PendingBlock behaviour to be chain agnostic (#7859) 2023-07-10 19:22:03 +02:00
cli Bor span testing (#7897) 2023-07-18 09:47:04 +01:00
cmdtest move all packages from "internal" folder - to simplify users live (#5857) 2022-10-25 09:58:25 +07:00
debug [devnet] Always select first node, fix configuration mess up between nodes (#7863) 2023-07-10 11:37:55 +01:00
engineapi Removed GRPC layer from Engine API (#7878) 2023-07-12 18:11:41 +02:00
execution/eth1 Added insertions and chainDb overlay (#7899) 2023-07-15 18:31:15 +02:00
jsonrpc turbo/jsonrpc: eth_getBlockReceipts support by by hash (#7886) 2023-07-14 08:57:09 +01: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 [devnet] Always select first node, fix configuration mess up between nodes (#7863) 2023-07-10 11:37:55 +01:00
rlphacks Use go:build lines and remove obsolete +build lines (#4175) 2022-05-17 14:46:53 +07:00
rpchelper Removed GRPC layer from Engine API (#7878) 2023-07-12 18:11:41 +02:00
services Enforce blockReader interface (#7737) 2023-06-15 13:11:51 +07:00
shards [interfaces] lower_snake_case field names (#7293) 2023-04-12 10:35:54 +00:00
snapshotsync added bor tx indexing with tests (#7826) 2023-07-12 23:31:38 +01:00
stages Removed unused stages (Cumulative index + Translation) (#7884) 2023-07-13 16:55:48 +02:00
testlog Introduce logger into etl (#7537) 2023-05-18 21:20:07 +01:00
transactions Base BlobTx on DynamicFeeTransaction (#7736) 2023-06-15 10:57:27 +02:00
trie [devnet tool] Side-quest logging - replace quiet parameter (#7464) 2023-05-08 17:52:31 +01: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