mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 14:17:17 +00:00
0326be86b5
* starting on patch * finish determining all required patches * properly redefine the patch rules * new patch * rem double semicolon * fix patch file * Merge branch 'master' of github.com:prysmaticlabs/prysm into deprecate-eth-protos * building the deps * test target passes using ethereumapis * compile gateway * attempting to build everything * e2e use ethereumapis * more fixes for slasher * other item * getting closer to compiling slasher * build slasher package * Merge branch 'master' into deprecate-eth-protos * Merge branch 'master' into deprecate-eth-protos * fix benches * lint gazelle * Merge branch 'deprecate-eth-protos' of github.com:prysmaticlabs/prysm into deprecate-eth-protos * proper gateway * lint * Merge branch 'master' into deprecate-eth-protos * fix build * Merge branch 'deprecate-eth-protos' of github.com:prysmaticlabs/prysm into deprecate-eth-protos * use swag * resolve * ignore change * include new patch changes * fix test * builds * fix e2e * gaz
44 lines
1.7 KiB
Protocol Buffer
44 lines
1.7 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package ethereum.beacon.p2p.v1;
|
|
|
|
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
|
|
import "eth/v1alpha1/beacon_block.proto";
|
|
|
|
// ArchivedActiveSetChanges represents the changes to the active validator registry
|
|
// between epoch N and N-1. In particular, it keeps track of validator indices
|
|
// which were newly activated, exited, or slashed, along with those particular
|
|
// block operations.
|
|
message ArchivedActiveSetChanges {
|
|
// Activated validator indices.
|
|
repeated uint64 activated = 1;
|
|
|
|
// Exited validator indices.
|
|
repeated uint64 exited = 2;
|
|
|
|
// Proposer indices slashed.
|
|
repeated uint64 slashed = 4;
|
|
|
|
// Voluntary exit objects corresponding 1-to-1 to the exited indices
|
|
// list in this same data structure.
|
|
repeated ethereum.eth.v1alpha1.VoluntaryExit voluntary_exits = 6;
|
|
|
|
// Proposer slashing objects corresponding 1-to-1 to the slashed proposer indices
|
|
// list in this same data structure.
|
|
repeated ethereum.eth.v1alpha1.ProposerSlashing proposer_slashings = 7;
|
|
|
|
// Attester slashing objects corresponding 1-to-1 to the slashed attester indices
|
|
// list in this same data structure.
|
|
repeated ethereum.eth.v1alpha1.AttesterSlashing attester_slashings = 8;
|
|
}
|
|
|
|
// ArchivedCommitteeInfo representing the minimal data required to reconstruct
|
|
// validator committee assignments for an epoch N.
|
|
message ArchivedCommitteeInfo {
|
|
// Proposer seed represents the random seed used in shuffling proposers.
|
|
bytes proposer_seed = 1 [(gogoproto.moretags) = "ssz-size:\"32\""];
|
|
|
|
// Attester seed represents the random seed used in shuffling attesters.
|
|
bytes attester_seed = 2 [(gogoproto.moretags) = "ssz-size:\"32\""];
|
|
}
|