Protocol
Overview
GRPC for Other Nodes
service V1 {
// Returns status information regarding the specific point in time
rpc GetCurrent(google.protobuf.Empty) returns (V1Status);
// Returns any type of object (Header, Body, Receipts...)
rpc GetObjectsByHash(HashRequest) returns (Response);
// Returns a range of headers
rpc GetHeaders(GetHeadersRequest) returns (Response);
// Watches what new blocks get included
rpc Watch(google.protobuf.Empty) returns (stream V1Status);
}Status Object
Last updated