Packages

[Tendermint ABCI spec](https://github.com/tendermint/tendermint/wiki/Application-Developers) implementation. Inspired by [abci_server](https://github.com/KrzysiekJ/abci_server) and [js-abci](https://github.com/tendermint/js-abci).

Current section

Files

Jump to
ex_abci lib abci_protos core_grpc.proto
Raw

lib/abci_protos/core_grpc.proto

syntax = "proto3";
package core_grpc;
import "vendor.proto";
//----------------------------------------
// Service Definition
service BroadcastAPI {
rpc Ping(forge_vendor.RequestPing) returns (forge_vendor.ResponsePing);
rpc BroadcastTx(forge_vendor.RequestBroadcastTx)
returns (forge_vendor.ResponseBroadcastTx);
}