mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-23 19:37:27 +08:00
* roll up v2.0.1-b2 to develop * b2-fixed * adjust return data of fast sync so it doesn't return the earliest frame * -b3 * fix: announce peer based on leading frame, not initial frame; fix: looping bug * fix: last batch fails due to underflow; qol: make logging chattier * -b4 * resolve frame cache issue * fix: mint loop + re-migrate * fix: register execution panic * fix: mint loop, other side * fix: handle unexpected return of nil status * final -b4 * handle subtle change to migration * qol: add heuristic to handle corruption scenario * bump genesis * qol: use separate channel for worker * final parameterization, parallelize streams * deprecate signers 10, 11, 14, 17 * adjust signatory check size to match rotated out signers |
||
|---|---|---|
| .. | ||
| application.pb.go | ||
| application.proto | ||
| channel.pb.go | ||
| channel.proto | ||
| clock.go | ||
| clock.pb.go | ||
| clock.proto | ||
| data_grpc.pb.go | ||
| data.pb.go | ||
| data.pb.gw.go | ||
| data.proto | ||
| keys.go | ||
| keys.pb.go | ||
| keys.proto | ||
| Makefile | ||
| node_grpc.pb.go | ||
| node.pb.go | ||
| node.pb.gw.go | ||
| node.proto | ||
| protobufs.go | ||
| README.md | ||
The protoc ProtoBuf most be installed, currently version 3.21.12 is being used:
https://github.com/protocolbuffers/protobuf/releases/tag/v21.12
The versioning is rather confusing, described here: https://protobuf.dev/support/version-support/
Most likely you want https://github.com/protocolbuffers/protobuf/releases/download/v21.12/protoc-21.12-linux-x86_64.zip
Very summary installation instructions are in an enclosed readme,txt file.
You can try to install from apt on Ubuntu, but you have no control on what exact version you are getting:
sudo apt install protobuf-compiler
Also install the following protoc plugins:
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.30.0
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.3.0
go install github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway@v2.18.0
In order to rebuild the ProtoBuf interfaces, in case you make changes to any of the *.proto files,
run make in this folder.