erigon-pulse/turbo
ledgerwatch 17b2a9ba93
Bor fixes (#3553)
* Integration to work with bor

* Turn off validator set check

* disable verifySeal, add skeleton of postExec stage

* Pass around syscall

* Print

* Print more

* Default heimdall values for integration

* restore contract

* Print

* Print

* Print

* Print

* Print

* Print

* Print

* Print

* Fix nonce of system contract

* Remove prints

* Revert some more printing

* More fixes

* Print log

* Fix transfer log

* More printing

* More printing

* Print

* Print

* Print

* Print

* Print

* Print

* Print

* Fix validaor reward

* Remove printing

* Remove more prints

* Less printing

* Fetch validators from heimdall

* Remove syscall from Seal and CalcDifficulty

* Remove syscall from Prepare

* Print

* Remove DNS discovery

* Print apply snapshot

* Print

* Chunk up snapshot generation

* Chunk up snapshot generation

* Better logs when snapshotting

* Handle parents

* Prevent shadowing of snap

* Fix heimdall fetch

* Logging fixes

* Save generated snapshots

* Add header

* Less logging

Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local>
Co-authored-by: Alex Sharp <alexsharp@Alexs-MacBook-Pro.local>
2022-02-24 00:03:10 +00:00
..
adapter grpc GetBlock api (#2955) 2021-11-14 11:08:52 +07:00
app Rename Datadir/dataDir to follow conventions. (#3576) 2022-02-22 17:39:48 +00:00
cli Rename Datadir/dataDir to follow conventions. (#3576) 2022-02-22 17:39:48 +00:00
mock rpcdaemon: add txpool_status() (#2407) 2021-08-06 09:45:44 +07:00
node path -> filepath (path package is for urls) (#3493) 2022-02-12 20:33:09 +07:00
rlphacks rename (#1978) 2021-05-20 19:25:53 +01:00
rpchelper Auto detect latest block for optimal use of plain state and state cache (#3598) 2022-02-23 23:42:14 +00:00
shards Add blockGasLimit to the state stream (#3321) 2022-01-25 10:49:28 +00:00
snapshotsync snapshots: fix test 2022-02-23 13:18:00 +07:00
stages Fix coinbase in stage_mining_exec (#3564) 2022-02-21 18:05:39 +01:00
transactions Auto detect latest block for optimal use of plain state and state cache (#3598) 2022-02-23 23:42:14 +00:00
trie Bor fixes (#3553) 2022-02-24 00:03:10 +00: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