2019-08-14 19:16:17 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2019-12-21 03:47:00 +00:00
|
|
|
package ethereum.slashing;
|
2019-08-14 19:16:17 +00:00
|
|
|
|
2019-11-27 05:08:18 +00:00
|
|
|
import "eth/v1alpha1/beacon_block.proto";
|
2020-01-03 02:41:31 +00:00
|
|
|
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
|
2019-08-14 19:16:17 +00:00
|
|
|
|
|
|
|
// Slasher service API
|
2019-12-21 03:47:00 +00:00
|
|
|
//
|
2019-08-14 19:16:17 +00:00
|
|
|
// Slasher service provides an interface for validators and beacon chain server to query
|
2019-12-21 03:47:00 +00:00
|
|
|
// and subscribe for slashable events on the network as well as to make sure that the
|
|
|
|
// attestation or proposal they are going to submit to the network are not going to
|
2019-08-14 19:16:17 +00:00
|
|
|
// produce a slashable event.
|
|
|
|
service Slasher {
|
2020-03-03 22:09:35 +00:00
|
|
|
// Returns any found attester slashings if the passed in attestation conflicts with a validators history.
|
2019-11-20 05:14:50 +00:00
|
|
|
rpc IsSlashableAttestation(ethereum.eth.v1alpha1.IndexedAttestation) returns (AttesterSlashingResponse);
|
2019-08-14 19:16:17 +00:00
|
|
|
|
2020-03-03 22:09:35 +00:00
|
|
|
// Returns any found proposer slashings if the passed in proposal conflicts with a validators history.
|
|
|
|
rpc IsSlashableBlock(ethereum.eth.v1alpha1.SignedBeaconBlockHeader) returns (ProposerSlashingResponse);
|
2020-06-11 18:50:12 +00:00
|
|
|
|
|
|
|
// Returns if a given indexed attestation could be slashable when compared to the slashers history for the attesters.
|
|
|
|
// This function is read-only, and does not need the indexed attestation to be signed.
|
|
|
|
rpc IsSlashableAttestationNoUpdate(ethereum.eth.v1alpha1.IndexedAttestation) returns (Slashable);
|
|
|
|
|
|
|
|
// Returns if a given beacon block header could be slashable when compared to the slashers history for the proposer.
|
|
|
|
// This function is read-only, and does not need the beacon block header to be signed.
|
|
|
|
rpc IsSlashableBlockNoUpdate(ethereum.eth.v1alpha1.BeaconBlockHeader) returns (Slashable);
|
2020-03-03 22:09:35 +00:00
|
|
|
}
|
2019-08-14 19:16:17 +00:00
|
|
|
|
2020-03-03 22:09:35 +00:00
|
|
|
message ProposerSlashingResponse {
|
|
|
|
repeated ethereum.eth.v1alpha1.ProposerSlashing proposer_slashing = 1;
|
|
|
|
}
|
2019-12-21 03:47:00 +00:00
|
|
|
|
2020-06-11 18:50:12 +00:00
|
|
|
message Slashable {
|
|
|
|
bool slashable = 1;
|
|
|
|
}
|
|
|
|
|
2020-03-03 22:09:35 +00:00
|
|
|
message AttesterSlashingResponse {
|
|
|
|
repeated ethereum.eth.v1alpha1.AttesterSlashing attester_slashing = 1;
|
2019-08-14 19:16:17 +00:00
|
|
|
}
|
2019-10-19 03:35:09 +00:00
|
|
|
|
2020-01-18 19:46:33 +00:00
|
|
|
// ProposalHistory defines the structure for recording a validator's historical proposals.
|
2020-01-03 02:41:31 +00:00
|
|
|
// Using a bitlist to represent the epochs and an uint64 to mark the latest marked
|
|
|
|
// epoch of the bitlist, we can easily store which epochs a validator has proposed
|
|
|
|
// a block for while pruning the older data.
|
|
|
|
message ProposalHistory {
|
|
|
|
bytes epoch_bits = 1 [(gogoproto.casttype) = "github.com/prysmaticlabs/go-bitfield.Bitlist"];
|
|
|
|
uint64 latest_epoch_written = 2;
|
|
|
|
}
|
2020-01-18 19:46:33 +00:00
|
|
|
|
|
|
|
// AttestationHistory defines the structure for recording a validator's historical attestation.
|
|
|
|
// Using a map[uint64]uint64 to map its target epoch to its source epoch, in order to detect if a
|
|
|
|
// vote being created is not a double vote and surrounded by, or surrounding any other votes.
|
|
|
|
// Using an uint64 to mark the latest written epoch, we can safely perform a rolling prune whenever
|
|
|
|
// the history is updated.
|
|
|
|
message AttestationHistory {
|
|
|
|
map<uint64, uint64> target_to_source = 1;
|
|
|
|
uint64 latest_epoch_written = 2;
|
|
|
|
}
|