{"id":25703419,"url":"https://github.com/dashpay/rs-tenderdash-abci","last_synced_at":"2026-01-27T15:08:44.558Z","repository":{"id":141114562,"uuid":"607692313","full_name":"dashpay/rs-tenderdash-abci","owner":"dashpay","description":"Application Blockchain Interface library written in Rust.","archived":false,"fork":false,"pushed_at":"2026-01-20T12:50:40.000Z","size":541,"stargazers_count":8,"open_issues_count":2,"forks_count":0,"subscribers_count":6,"default_branch":"develop","last_synced_at":"2026-01-20T19:49:52.227Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dashpay.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2023-02-28T13:44:15.000Z","updated_at":"2026-01-13T15:49:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"503b9347-25d0-4602-9120-6dfacbbe63de","html_url":"https://github.com/dashpay/rs-tenderdash-abci","commit_stats":null,"previous_names":[],"tags_count":25,"template":false,"template_full_name":null,"purl":"pkg:github/dashpay/rs-tenderdash-abci","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashpay%2Frs-tenderdash-abci","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashpay%2Frs-tenderdash-abci/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashpay%2Frs-tenderdash-abci/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashpay%2Frs-tenderdash-abci/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dashpay","download_url":"https://codeload.github.com/dashpay/rs-tenderdash-abci/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashpay%2Frs-tenderdash-abci/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28815386,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T12:25:15.069Z","status":"ssl_error","status_checked_at":"2026-01-27T12:25:05.297Z","response_time":168,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-25T05:29:30.267Z","updated_at":"2026-01-27T15:08:44.543Z","avatar_url":"https://github.com/dashpay.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rust bindings and server for Tenderdash ABCI++ protocol\n\n## Introduction\n\n![example workflow](https://github.com/dashpay/rs-tenderdash-abci/actions/workflows/test.yml/badge.svg?branch=master)\n\nThis repository contains Rust bindings for Tenderdash. It includes:\n\n* data types, requests and responses required on [Tenderdash]\n* ABCI++ protocol server, supporting **Unix sockets** and **TCP** connections\n* [tonic](https://docs.rs/tonic/latest/tonic/)-based ABCI++ protocol client/server, supporting grpc connections\n\n## Structure\n\nThe repository contains the following crates:\n\n* [tenderdash-abci](./abci/) - main crate, including ABCI++ socket and tcp server implementation, `Application` trait and re-exporting `tenderdash-proto` crate\n* [tenderdash-proto](./proto/) - ABCI++ messages and data types definitions, and gRPC client/server implementation, generated based on Tenderdash protobuf specifications\n* [tenderdash-proto-compiler](./proto-compiler/) - an internal tool that fetches tenderdash repository and converts protobuf files to Rust\n\n## Version Compatibility\n\nVersioning of this library follows the Semantic Versioning 2.0.0 specification. Specifically, it consists of\n`MAJOR.MINOR.PATCH`.\n\nThis library also includes built-in support for ABCI protocol version verification. The ABCI protocol version, as defined in Tenderdash's [version.go](https://github.com/dashpay/tenderdash/blob/HEAD/version/version.go) under the `ABCISemVer` constant, must align with the ABCI protocol version of this library. You can find the library's ABCI protocol version in [proto/src/tenderdash.rs](proto/src/tenderdash.rs) under the `ABCI_VERSION` constant.\n\n## Quick start\n\n1. Install dependencies. You can find a current list of dependencies in the [Dockerfile](Dockerfile-debian).\n   * Ensure to install `protoc` from \u003chttps://github.com/protocolbuffers/protobuf/releases\u003e and place it in your `$PATH`, as we\n   **don't support protoc shipped with your distribution** (like Ubuntu).\n2. Add tenderdash-abci crate to your project:\n\n    ```bash\n    cargo add --git https://github.com/dashpay/rs-tenderdash-abci tenderdash-abci\n    ```\n\n3. Implement the [Application](abci/src/application.rs) trait with your custom logic. You can check [kvstore](abci/tests/kvstore.rs) as a minimal example.\n\n## Using custom protocol buffers definitions\n\nIf you want to build `rs-tenderdash-abci` using protocol buffers definitions from a custom Tenderdash version, you can do so by setting the `TENDERDASH_COMMITISH` environment variable to the desired Tenderdash commit ID before initiating the build process.\n\nFor instance, if you want to build the library with support for Tenderdash `v0.14-dev.3`, which corresponds to the commit ID `688ee3e3f2624e6ebb20f5d74e0812109b7b9a27`, you can use the following command:\n\n```bash\nexport TENDERDASH_COMMITISH=688ee3e3f2624e6ebb20f5d74e0812109b7b9a27\ncargo build\n```\n\n## Credits\n\nThis project is a partial fork of [tendermint-rs] project.\n\n## License\n\n[MIT](LICENSE.md)\n\n[Tenderdash]: https://github.com/dashpay/tenderdash\n[tendermint-rs]: https://github.com/informalsystems/tendermint-rs\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdashpay%2Frs-tenderdash-abci","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdashpay%2Frs-tenderdash-abci","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdashpay%2Frs-tenderdash-abci/lists"}