erigon-pulse/turbo
Alex Sharov 331dcd45eb
Store receipts separately - one record per tx (#1271)
* squash

* add --database flag to integration

* clean

* split to 2 buckets

* split to 2 buckets

* split to 2 buckets

* split to 2 buckets

* split to 2 buckets

* save progress

* save progress

* improve test

* improve test

* save progress

* change app logic

* change app logic

* return err from rawdb package

* don't clean automatically

* don't clean automatically

* clean

* clean

* clean

* don't rely on `make clean`

* improve cbor code

* clean

* clean

* clean

* fix tests

* rebase master

* stop on error: headers stage

* make TxDb walk and multiwalk safe

* Fix panics

Co-authored-by: Alexey Akhunov <akhounov@gmail.com>
2020-10-25 08:38:55 +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 Headers poc 5 - Intermediate (#1145) 2020-09-27 21:32:05 +01: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