10 lines
225 B
Protocol Buffer
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);
|
||
|
}
|