mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-04 00:44:27 +00:00
28 lines
562 B
Protocol Buffer
28 lines
562 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package ethereum.beacon.rpc.v1;
|
|
|
|
import "google/protobuf/empty.proto";
|
|
|
|
// Deprecated: Do not use any service or message in this proto. All RPC messages
|
|
// should live in ethereumapis.
|
|
option deprecated = true;
|
|
|
|
message ExitedValidatorsRequest {
|
|
option deprecated = true;
|
|
repeated bytes public_keys = 1;
|
|
}
|
|
|
|
message ExitedValidatorsResponse {
|
|
option deprecated = true;
|
|
repeated bytes public_keys = 1;
|
|
}
|
|
|
|
enum ValidatorRole {
|
|
option deprecated = true;
|
|
UNKNOWN = 0;
|
|
ATTESTER = 1;
|
|
PROPOSER = 2;
|
|
AGGREGATOR = 3;
|
|
}
|