mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-01 00:31:21 +00:00
d3e05fb352
* Remove interfaces for replacement * Squashed 'interfaces/' content from commit 4b4b765 git-subtree-dir: interfaces git-subtree-split: 4b4b76598f956abcdeae67c50b7c37f055d11b17 * Regenerate bindings * Remove interfaces for replacement * Squashed 'interfaces/' content from commit a0b1e1c git-subtree-dir: interfaces git-subtree-split: a0b1e1cdbce09fd62c369f25e8ef35cf3972357e * Rebuild gointerfaces * Remove interfaces for replacement * Squashed 'interfaces/' content from commit eea9297 git-subtree-dir: interfaces git-subtree-split: eea92977065e217c385db8eefe261671fb72c529 * Update to new interfaces * Remove interfaces for replacement * Squashed 'interfaces/' content from commit 548970d git-subtree-dir: interfaces git-subtree-split: 548970d40b288ed7ef80412e5fdb1144c8ffe129 * Update to gointerfaces * Update pb * Add subslogs * Upd pb * Add direct for logs Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local> Co-authored-by: Alex Sharp <alexsharp@Alexs-MacBook-Pro.local> Co-authored-by: Andrey Rybnov <ryban92@gmail.com> |
||
---|---|---|
.. | ||
_docs | ||
.github/workflows | ||
consensus_engine | ||
downloader | ||
p2psentry | ||
remote | ||
src | ||
starknet | ||
testing | ||
txpool | ||
types | ||
web3 | ||
.gitignore | ||
build.rs | ||
Cargo.toml | ||
db_tables.toml | ||
LICENSE | ||
README.md | ||
turbo-geth-architecture.png | ||
turbo-geth.drawio |
Interfaces
Interfaces for turbo-geth components. Currently it is a collection of .proto
files describing gRPC interfaces between components, but later documentation about each interface, its components, as well as required version of gRPC will be added
See more info on the component and descriptions in Components
What's in this repo
- Protobuf definitions
- Wrappers:
- Rust crate with autogenerated client and server based on Tonic
NOTE: You are free to ignore provided wrappers and use the .proto files directly
Suggested integration into other repositories
git subtree add --prefix interfaces --squash https://github.com/ledgerwatch/interfaces master
When you need to update the subtree to a specific commit or tag, you can use these commands:
git rm -rf interfaces
git commit -m"Remove interfaces for replacement"
git subtree add --prefix interfaces --squash https://github.com/ledgerwatch/interfaces <tag_or_commit>
Unfortunately git subtree pull
does not work if we use Squash-Merge for pull requests in this repository
and also automatically delete merged branches.