2021-06-02 20:20:11 +00:00
|
|
|
// Copyright 2020 Prysmatic Labs.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package ethereum.eth.v1;
|
|
|
|
|
|
|
|
import "google/protobuf/descriptor.proto";
|
|
|
|
|
|
|
|
import "proto/eth/ext/options.proto";
|
2021-08-13 09:12:18 +00:00
|
|
|
import "proto/eth/v1/attestation.proto";
|
|
|
|
import "proto/eth/v1/beacon_block.proto";
|
2021-06-02 20:20:11 +00:00
|
|
|
|
2021-08-13 09:12:18 +00:00
|
|
|
option csharp_namespace = "Ethereum.Eth.V1";
|
2021-06-02 20:20:11 +00:00
|
|
|
option go_package = "github.com/prysmaticlabs/prysm/proto/eth/v1";
|
|
|
|
option java_multiple_files = true;
|
|
|
|
option java_outer_classname = "ValidatorProto";
|
|
|
|
option java_package = "org.ethereum.eth.v1";
|
|
|
|
option php_namespace = "Ethereum\\Eth\\v1";
|
|
|
|
|
|
|
|
message ValidatorContainer {
|
|
|
|
uint64 index = 1 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.ValidatorIndex"];;
|
|
|
|
uint64 balance = 2;
|
|
|
|
ValidatorStatus status = 3;
|
|
|
|
Validator validator = 4;
|
|
|
|
}
|
|
|
|
|
2021-06-26 19:00:33 +00:00
|
|
|
// An Ethereum validator.
|
2021-06-02 20:20:11 +00:00
|
|
|
message Validator {
|
|
|
|
// 48 byte BLS public key used for the validator's activities.
|
|
|
|
bytes pubkey = 1 [(ethereum.eth.ext.ssz_size) = "48", (ethereum.eth.ext.spec_name) = "pubkey"];
|
|
|
|
|
|
|
|
// 32 byte hash of the withdrawal destination public key.
|
|
|
|
bytes withdrawal_credentials = 2 [(ethereum.eth.ext.ssz_size) = "32"];
|
|
|
|
|
|
|
|
// The validators current effective balance in gwei.
|
|
|
|
uint64 effective_balance = 3;
|
|
|
|
|
|
|
|
// Whether or not the validator has been slashed.
|
|
|
|
bool slashed = 4;
|
|
|
|
|
|
|
|
// Epoch when the validator became eligible for activation. This field may
|
2021-06-26 19:00:33 +00:00
|
|
|
// be zero if the validator was present in the Ethereum proof of stake genesis. This
|
2021-06-02 20:20:11 +00:00
|
|
|
// field is FAR_FUTURE_EPOCH if the validator has not been activated.
|
|
|
|
uint64 activation_eligibility_epoch = 5 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.Epoch"];
|
|
|
|
|
|
|
|
// Epoch when the validator was activated. This field may be zero if the
|
2021-06-26 19:00:33 +00:00
|
|
|
// validator was present in the Ethereum proof of stake genesis. This field is
|
2021-06-02 20:20:11 +00:00
|
|
|
// FAR_FUTURE_EPOCH if the validator has not been activated.
|
|
|
|
uint64 activation_epoch = 6 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.Epoch"];
|
|
|
|
|
|
|
|
// Epoch when the validator was exited. This field is FAR_FUTURE_EPOCH if
|
|
|
|
// the validator has not exited.
|
2021-06-26 19:00:33 +00:00
|
|
|
// FAR_FUTURE_EPOCH is a constant defined by the official Ethereum Beacon Chain specification:
|
2021-08-19 18:00:57 +00:00
|
|
|
// https://github.com/ethereum/consensus-specs/blob/v0.9.2/specs/core/0_beacon-chain.md#constants
|
2021-06-02 20:20:11 +00:00
|
|
|
uint64 exit_epoch = 7 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.Epoch"];
|
|
|
|
|
|
|
|
// Epoch when the validator is eligible to withdraw their funds. This field
|
|
|
|
// is FAR_FUTURE_EPOCH if the validator has not exited.
|
2021-06-26 19:00:33 +00:00
|
|
|
// FAR_FUTURE_EPOCH is a constant defined by the official Ethereum Beacon Chain specification:
|
2021-08-19 18:00:57 +00:00
|
|
|
// https://github.com/ethereum/consensus-specs/blob/v0.9.2/specs/core/0_beacon-chain.md#constants
|
2021-06-02 20:20:11 +00:00
|
|
|
uint64 withdrawable_epoch = 8 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.Epoch"];
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ValidatorStatus {
|
|
|
|
PENDING_INITIALIZED = 0;
|
|
|
|
PENDING_QUEUED = 1;
|
|
|
|
ACTIVE_ONGOING = 2;
|
|
|
|
ACTIVE_EXITING = 3;
|
|
|
|
ACTIVE_SLASHED = 4;
|
|
|
|
EXITED_UNSLASHED = 5;
|
|
|
|
EXITED_SLASHED = 6;
|
|
|
|
WITHDRAWAL_POSSIBLE = 7;
|
|
|
|
WITHDRAWAL_DONE = 8;
|
|
|
|
ACTIVE = 9;
|
|
|
|
PENDING = 10;
|
|
|
|
EXITED = 11;
|
|
|
|
WITHDRAWAL = 12;
|
2021-08-13 09:12:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message AttesterDutiesRequest {
|
|
|
|
// Epoch to request, should only be allowed 1 epoch ahead.
|
|
|
|
uint64 epoch = 1 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.Epoch"];
|
|
|
|
|
|
|
|
// Validator indices to request duties for.
|
|
|
|
repeated uint64 index = 2 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.ValidatorIndex"];
|
|
|
|
}
|
|
|
|
|
|
|
|
message AttesterDutiesResponse {
|
|
|
|
bytes dependent_root = 1 [(ethereum.eth.ext.ssz_size) = "32"];
|
|
|
|
repeated AttesterDuty data = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message AttesterDuty {
|
|
|
|
// 48 byte BLS public key for the validator who's assigned to perform a duty.
|
|
|
|
bytes pubkey = 1 [(ethereum.eth.ext.ssz_size) = "48"];
|
|
|
|
|
|
|
|
// The index of the validator in the beacon state.
|
|
|
|
uint64 validator_index = 2 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.ValidatorIndex"];
|
|
|
|
|
|
|
|
// The index of the committee where the validator belongs to.
|
|
|
|
uint64 committee_index = 3 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.CommitteeIndex"];
|
|
|
|
|
|
|
|
// The length of the committee the validator belongs to.
|
|
|
|
uint64 committee_length = 4;
|
|
|
|
|
|
|
|
// The total amount of committees for this slot.
|
|
|
|
uint64 committees_at_slot = 5;
|
|
|
|
|
|
|
|
// The index of the validator in the committee.
|
|
|
|
uint64 validator_committee_index = 6 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.CommitteeIndex"];
|
|
|
|
|
|
|
|
// The slot this duty is for.
|
|
|
|
uint64 slot = 7 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.Slot"];
|
|
|
|
}
|
|
|
|
|
|
|
|
message ProposerDutiesRequest {
|
|
|
|
// Epoch to request duties for.
|
|
|
|
uint64 epoch = 1 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.Epoch"];
|
|
|
|
}
|
|
|
|
|
|
|
|
message ProposerDutiesResponse {
|
|
|
|
bytes dependent_root = 1 [(ethereum.eth.ext.ssz_size) = "32"];
|
|
|
|
repeated ProposerDuty data = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ProposerDuty {
|
|
|
|
// 48 byte BLS public key for the validator who's assigned to perform a duty.
|
|
|
|
bytes pubkey = 1 [(ethereum.eth.ext.ssz_size) = "48"];
|
|
|
|
|
|
|
|
// The index of the validator in the beacon state.
|
|
|
|
uint64 validator_index = 2 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.ValidatorIndex"];
|
|
|
|
|
|
|
|
// The slot this duty is for.
|
|
|
|
uint64 slot = 3 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.Slot"];
|
|
|
|
}
|
|
|
|
|
|
|
|
message ProduceBlockRequest {
|
|
|
|
// The slot to request a block for.
|
|
|
|
uint64 slot = 1 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.Slot"];
|
|
|
|
|
|
|
|
// The validators RANDAO reveal 96 byte value.
|
|
|
|
bytes randao_reveal = 2 [(ethereum.eth.ext.ssz_size) = "96"];
|
|
|
|
|
|
|
|
// 32 byte field of arbitrary data. This field may contain any data and
|
|
|
|
// is not used for anything other than a fun message.
|
|
|
|
optional bytes graffiti = 3 [(ethereum.eth.ext.ssz_size) = "32"];
|
|
|
|
}
|
|
|
|
|
|
|
|
message ProduceBlockResponse {
|
|
|
|
BeaconBlock data = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ProduceAttestationDataRequest {
|
|
|
|
// Slot for which the attestation data should be retrieved for.
|
|
|
|
uint64 slot = 1 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.Slot"];
|
|
|
|
|
|
|
|
// Committee index for which the attestation data should be retrieved for.
|
|
|
|
uint64 committee_index = 2 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.CommitteeIndex"];
|
|
|
|
}
|
|
|
|
|
|
|
|
message ProduceAttestationDataResponse {
|
|
|
|
AttestationData data = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message AggregateAttestationRequest {
|
|
|
|
// The root of the attestation data requesting the aggregate for.
|
|
|
|
bytes attestation_data_root = 1 [(ethereum.eth.ext.ssz_size) = "32"];
|
|
|
|
|
|
|
|
// The slot for the requested aggregate attestation.
|
|
|
|
uint64 slot = 2 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.Slot"];
|
|
|
|
}
|
|
|
|
|
|
|
|
message AggregateAttestationResponse {
|
|
|
|
Attestation data = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message SubmitAggregateAndProofsRequest {
|
|
|
|
repeated SignedAggregateAttestationAndProof data = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message SubmitBeaconCommitteeSubscriptionsRequest {
|
|
|
|
repeated BeaconCommitteeSubscribe data = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message BeaconCommitteeSubscribe {
|
|
|
|
// The validator index to subscribe for.
|
|
|
|
uint64 validator_index = 1 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.ValidatorIndex"];
|
|
|
|
|
|
|
|
// The committee index to be subscribed to.
|
|
|
|
uint64 committee_index = 2 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.CommitteeIndex"];
|
|
|
|
|
|
|
|
// The total amount of committees for the given slot.
|
|
|
|
uint64 committees_at_slot = 3;
|
|
|
|
|
|
|
|
// The slot to be subscribed to.
|
|
|
|
uint64 slot = 4 [(ethereum.eth.ext.cast_type) = "github.com/prysmaticlabs/eth2-types.Slot"];
|
|
|
|
|
|
|
|
// If subscribing for aggregator, the beacon node will aggregate all attestations received.
|
|
|
|
bool is_aggregator = 5;
|
|
|
|
}
|