mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-06 02:52:19 +00:00
a8338e4dd2
Co-authored-by: giuliorebuffo <giuliorebuffo@system76-pc.localdomain>
12 lines
205 B
Protocol Buffer
12 lines
205 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package lightrpc;
|
|
|
|
import "beacon_block.proto";
|
|
|
|
message GossipRequest {}
|
|
|
|
service Sentinel {
|
|
rpc SubscribeBeaconBlock(GossipRequest) returns (stream SignedBeaconBlockBellatrix);
|
|
}
|