zebra/zebra-rpc/proto/indexer.proto

10 lines
225 B
Protocol Buffer

syntax = "proto3";
package zebra.indexer.rpc;
// Used by methods that take no arguments.
message Empty {};
service Indexer {
// Notifies listeners of chain tip changes
rpc ChainTipChange(Empty) returns (stream Empty);
}