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.pb.ex
Raw

lib/abci_protos/core_grpc.pb.ex

defmodule CoreGrpc.BroadcastAPI.Service do
@moduledoc false
use GRPC.Service, name: "core_grpc.BroadcastAPI"
rpc :Ping, ForgeVendor.RequestPing, ForgeVendor.ResponsePing
rpc :BroadcastTx, ForgeVendor.RequestBroadcastTx, ForgeVendor.ResponseBroadcastTx
end
defmodule CoreGrpc.BroadcastAPI.Stub do
@moduledoc false
use GRPC.Stub, service: CoreGrpc.BroadcastAPI.Service
end