erigon-pulse/turbo
ledgerwatch 7554428884
POC of header downloader - splitting into 2 processes: sentry + downloader (via gRPC) (#1291)
* Splitting sentry and downloader - the beginning

* A bit more

* More on sentry

* More gRPC

* Sentry and downloader separated

* Update binding for stable version of grpc

* Better bufferSize flag

* Fix lint

* Send pelanties

* Fix lint

* Remove hard-coded tips on connect

* Tidy the logs a bit

* Deal with hardTips on Recovery

* Print hard tips

* Hide empty anchors

* Request headers after receiving a message

* Better waking up

* Print hard-coded block numbers

* Print outgoing requests

* Debug logging

* In the middle protection

* Sentry not to lose peers when core disconnects
2020-10-25 22:05:37 +00:00
..
adapter Protect from wrong class use: make ethdb.Tx incompatible with rawdb.DatabaseReader (#1288) 2020-10-24 09:09:20 +01:00
cli Vary batch size for execution stage (#1274) 2020-10-21 18:01:40 +01:00
node pass_root_ctx_to_p2p_server (#1192) 2020-10-06 20:25:01 +01:00
rlphacks move ./trie to ./turbo/trie (#1114) 2020-09-14 11:33:39 +01:00
rpchelper rawdb to return errors: part 1 (#1286) 2020-10-24 07:57:09 +01:00
stages/headerdownload POC of header downloader - splitting into 2 processes: sentry + downloader (via gRPC) (#1291) 2020-10-25 22:05:37 +00:00
torrent stop on error: headers stage (#1289) 2020-10-24 18:05:12 +01:00
transactions rawdb to return errors: part 1 (#1286) 2020-10-24 07:57:09 +01:00
trie Store receipts separately - one record per tx (#1271) 2020-10-25 08:38:55 +00:00
README.md turbo-api: Add docs to some public structs, methods and fields (#1127) 2020-09-21 16:10:25 +02:00

Turbo-API

Turbo-API is a set of tools for building applications containing turbo-geth node.

Our own binary tg is built using it.

Modules

  • cli - turbo-cli, methods & helpers to run a CLI app with turbo-geth node.

  • node - represents an Ethereum node, running devp2p and sync and writing state to the database.

  • stagedsync - staged sync algorithm.

Examples

  • tg - our binary is using turbo-api with all defaults

  • tgcustom - a very simple example of adding a custom stage, a custom bucket and a custom command-line parameter

  • turbo-api-examples - a series of examples for turbo-geth api