mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
3d8bb73f15
* initial validator attesthead rewrite based on proposer rewrite * proceed with fetching committees and tree hashing the canonical head at assigned attester slot * complete filling the properties of attestation data and all associated root hashes * add when to attest todo * finish entire attester client logic * tests with mocks checked in * tests passing in client * stubbed out server implementation * fixed build due to old property * regen mocks with new mockgen version * fixed broken tests * complete bazel build fix * address some review comments * deep proto test * server implementation logic * attestation info tests * completed passing tests, tree hash still blocked by error with nil fields unfortunately * fix todo failure * gazelle rerun and master merge * testing full behavior of attestation info server * finished all required server tests and implementation * break loop * fix tests due to genesis slot updates |
||
---|---|---|
.. | ||
beacon | ||
common | ||
sharding/p2p/v1 | ||
testing | ||
README.md |
Ethereum Serenity Protocol Buffers
This package defines common protobuf messages and services used by Ethereum Serenity clients. Following the structure of:
proto/
beacon/
p2p/
v1/
rpc/
v1/
sharding/
p2p/
v1/
testing/
We specify messages available for p2p communication common to beacon chain nodes and sharding clients.
For now, we are checking in all generated code to support native go dependency management. The generated pb.go files can be derived from bazel's bin directory.
For example, when we build the testing go proto library
bazel build //proto/testing:ethereum_testing_go_proto
there is a pb.go
generated at
bazel-bin/proto/testing/linux_amd64_stripped/ethereum_testing_go_proto\~/github.com/prysmaticlabs/prysm/proto/testing/test.pb.go
.
This generated file can be copied, or you can use you protoc locally if you
prefer.