Packages

[Tendermint ABCI protos](https://github.com/tendermint/tendermint/wiki/Application-Developers). Extracted from [ex_abci](https://github.com/arcblock/ex_abci).

Current section

Files

Jump to
ex_abci_proto lib protos core_grpc.pb.ex
Raw

lib/protos/core_grpc.pb.ex

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