mukan-consensus/abci
Mukan Erkin Törük c6a41110d1
Some checks are pending
docker-build-cometbft / vars (push) Waiting to run
docker-build-cometbft / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-cometbft / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-cometbft / merge-images (push) Blocked by required conditions
docker-build-e2e-node / vars (push) Waiting to run
docker-build-e2e-node / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-e2e-node / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-e2e-node / merge-images (push) Blocked by required conditions
refactor: replace all github.com upstream refs with git.cw.tr/mukan-network
2026-05-11 03:36:20 +03:00
..
client refactor: replace all github.com upstream refs with git.cw.tr/mukan-network 2026-05-11 03:36:20 +03:00
cmd/abci-cli refactor: replace all github.com upstream refs with git.cw.tr/mukan-network 2026-05-11 03:36:20 +03:00
example/kvstore refactor: replace all github.com upstream refs with git.cw.tr/mukan-network 2026-05-11 03:36:20 +03:00
server refactor: replace all github.com upstream refs with git.cw.tr/mukan-network 2026-05-11 03:36:20 +03:00
tests refactor: replace all github.com upstream refs with git.cw.tr/mukan-network 2026-05-11 03:36:20 +03:00
types refactor: replace all github.com upstream refs with git.cw.tr/mukan-network 2026-05-11 03:36:20 +03:00
version refactor: replace all github.com upstream refs with git.cw.tr/mukan-network 2026-05-11 03:36:20 +03:00
README.md initial: sovereign Mukan Network fork 2026-05-11 03:18:27 +03:00

Application BlockChain Interface (ABCI)

Blockchains are systems for multi-master state machine replication. ABCI is an interface that defines the boundary between the replication engine (the blockchain), and the state machine (the application). Using a socket protocol, a consensus engine running in one process can manage an application state running in another.

Previously, the ABCI was referred to as TMSP.

Installation & Usage

To get up and running quickly, see the getting started guide along with the abci-cli documentation which will go through the examples found in the examples directory.

Specification

A detailed description of the ABCI methods and message types is contained in:

Protocol Buffers

To compile the protobuf file, run (from the root of the repo):

make protoc_abci

See protoc --help and the Protocol Buffers site for details on compiling for other languages. Note we also include a GRPC service definition.