16 releases

0.7.1 Jun 30, 2020
0.7.0 Mar 3, 2020
0.6.5 Jan 2, 2020
0.6.4 Nov 18, 2019
0.4.0 Dec 11, 2018

#3 in #abci

Download history 10/week @ 2023-10-13 14/week @ 2023-10-20 40/week @ 2023-10-27 15/week @ 2023-11-03 12/week @ 2023-11-10 26/week @ 2023-11-17 43/week @ 2023-11-24 39/week @ 2023-12-01 13/week @ 2023-12-08 26/week @ 2023-12-15 40/week @ 2023-12-22 7/week @ 2023-12-29 8/week @ 2024-01-05 10/week @ 2024-01-12 50/week @ 2024-01-19 96/week @ 2024-01-26

164 downloads per month

MIT/Apache

435KB
10K SLoC

Rust ABCI

Tendermint ABCI server, written in the Rust programming language.

Current Version CircleCI

This library implements the ABCI protocol and can be used to write ABCI applications for Tendermint.

Supported Version

  • Tendermint 0.33.5
  • ABCI 0.16.2

Installation

Dependencies

Make sure that you have Rust and Cargo installed. The easiest way is to follow the instructions on rustup.

To test the examples, please clone this repository.

git clone https://github.com/tendermint/rust-abci.git

The empty_app example, found under the examples folder, is a good demonstration/bare minimum foundation for a Rust ABCI app.

To use this library to build your own ABCI apps in Rust you have to include the following in your Cargo.toml file.

[dependencies]
abci = "0.7.1"

Development

This crate already contains the compiled ABCI protobuf messages. If you want to update protobuf messages to a newer version of Tendermint. Run make update-proto

Running the examples

Tendermint

To run either of the example apps you have to have Tendermint installed and initialised (Remember to run tendermint init!). Please install it according to these instructions. After initializing and configuring the node, Tendermint can be run with:

tendermint node

After the node is online, you can run the empty_app example using cargo run --example empty_app.

To run the counter_app run cargo run --example counter_app and send transaction to Tendermint via:

curl localhost:26657/broadcast_tx_commit?tx=0x01
curl localhost:26657/broadcast_tx_commit?tx=0x02

For a real life example of an ABCI application you can checkout Cosmos SDK or Ethermint.

Tendermint Compatibility Table

Tendermint Rust-abci
0.33.5 0.7.1
0.33.1 0.7.0
0.32.9 0.6.5
0.31.7 0.5.4

Documentation

Coming soon!

Join the Community

Find us through a variety of channels here.

Code of Conduct

Please read, understand and adhere to our code of conduct.

Credits

Original rust-tsp made by Adrian Brink.

Dependencies

~12MB
~200K SLoC