erigon-pulse/turbo
leonardchinonso 3102a04d7f
Draft PR for the devnet automation (#4057)
* Draft PR for the devnet automation

* Committing to save for later edit

* Finished creating shells, to test

* Changes:
* Added a shell for picking eth commands
* Implemented erigon node running with the --http flag to save processes
* Shell commands for get-balance and send-tx implemented
TODO:
* Make UX more friendly by adding start, stop and exit commands
* Add progress bar to show wait in progress
* Add flag or input to enable mining option for erigon node
* Implemented stress tests for other eth methods

* Experimenting

* little clean up

* lint

* Transitioned to static runs and tests from shell

* Finished stress test methods

* Rendering fixes

* save

* Cleanup

* Fixed lint

* Still fixing lint

* Removed args append ineffect

* Removed println in genesis init.go

* Removed println in genesis init.go

Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local>
Co-authored-by: Enrique Avila <eavilaasapche@gmail.com>
2022-05-26 13:08:25 +01:00
..
adapter grpc GetBlock api (#2955) 2021-11-14 11:08:52 +07:00
app Torrent: verify all files (#4270) 2022-05-26 12:27:44 +07:00
cli Torrent: verify all files (#4270) 2022-05-26 12:27:44 +07:00
engineapi Refactor PoS downloader (#3717) 2022-03-22 17:49:12 +01:00
mock rpcdaemon: add txpool_status() (#2407) 2021-08-06 09:45:44 +07:00
node Draft PR for the devnet automation (#4057) 2022-05-26 13:08:25 +01:00
rlphacks Use go:build lines and remove obsolete +build lines (#4175) 2022-05-17 14:46:53 +07:00
rpchelper create turbo/services pkg (#4269) 2022-05-26 10:31:06 +07:00
services create turbo/services pkg (#4269) 2022-05-26 10:31:06 +07:00
shards up linter version (#4108) 2022-05-10 10:14:09 +07:00
snapshotsync bsc snap hashes to 17.5M #4249 2022-05-24 13:32:54 +07:00
stages TangerineWhistle instead of EIP150 & SpuriousDragon instead of EIP155/158 (#4273) 2022-05-26 12:08:59 +02:00
transactions TangerineWhistle instead of EIP150 & SpuriousDragon instead of EIP155/158 (#4273) 2022-05-26 12:08:59 +02:00
trie kv_mdbx: atomic closed flag #464 (#4247) 2022-05-24 12:24:20 +07: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