Packages
ex_abci_proto
0.9.0
[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
Current section
Files
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