erigon-pulse/cmd/lightclient/rpc/proto/lightclient.proto
Giulio rebuffo 2fd96a0b1c
[Experimental] GRPC Prototype with --experimental.lightclient to have Erigon listen on ConsenSUS gossip. (#5590)
Co-authored-by: giuliorebuffo <giuliorebuffo@system76-pc.localdomain>
2022-10-06 11:01:56 +02:00

12 lines
228 B
Protocol Buffer

syntax = "proto3";
package lightrpc;
import "beacon_block.proto";
message NotificationStatus { uint64 Status = 1; }
service Lightclient {
rpc NotifyBeaconBlock(SignedBeaconBlockBellatrix) returns (NotificationStatus);
}