mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-06 02:52:19 +00:00
2fd96a0b1c
Co-authored-by: giuliorebuffo <giuliorebuffo@system76-pc.localdomain>
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);
|
|
}
|