mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-07 11:32:20 +00:00
12 lines
228 B
Protocol Buffer
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);
|
||
|
}
|