ceremonyclient/node/protobufs
Cassandra Heart 55a6fd8452
hypersync
2025-02-12 22:41:45 -06:00
..
application_grpc.pb.go hypersync 2025-02-12 22:41:45 -06:00
application.pb.go hypersync 2025-02-12 22:41:45 -06:00
application.pb.gw.go hypersync 2025-02-12 22:41:45 -06:00
application.proto hypersync 2025-02-12 22:41:45 -06:00
channel.pb.go DHT Bootstrap Verification 2023-09-03 18:47:09 -05:00
channel.proto DHT Bootstrap Verification 2023-09-03 18:47:09 -05:00
clock.go v1.2.4 (#43) 2024-02-13 01:04:56 -06:00
clock.pb.go hypersync 2025-02-12 22:41:45 -06:00
clock.proto Support frame fragmentation and dissemination (#396) 2024-12-02 16:25:10 -06:00
data_grpc.pb.go -b4 2024-10-21 22:32:08 -05:00
data.pb.go hypersync 2025-02-12 22:41:45 -06:00
data.pb.gw.go -b4 2024-10-21 22:32:08 -05:00
data.proto Prefer connected peers for sync (#395) 2024-12-01 15:07:08 -06:00
keys.go Add transaction request validation (#390) 2024-11-27 18:13:57 -06:00
keys.pb.go 1.0.0 – Dawn 2023-09-24 21:43:35 -05:00
keys.proto 1.0.0 – Dawn 2023-09-24 21:43:35 -05:00
Makefile 1.1.2 – Experimental gRPC/REST Support 2023-10-08 23:52:19 -05:00
node_grpc.pb.go roll up v2.0.1-b2 to develop 2024-10-20 20:00:36 -05:00
node.go Add transaction request validation (#390) 2024-11-27 18:13:57 -06:00
node.pb.go bump patch version, support filtering on patch version 2024-11-24 18:44:14 -06:00
node.pb.gw.go roll up v2.0.1-b2 to develop 2024-10-20 20:00:36 -05:00
node.proto bump patch version, support filtering on patch version 2024-11-24 18:44:14 -06:00
protobufs.go Support frame fragmentation and dissemination (#396) 2024-12-02 16:25:10 -06:00
README.md add -node-info command (#141) 2024-03-24 03:11:58 -05:00
validation_internal_test.go Add transaction request validation (#390) 2024-11-27 18:13:57 -06:00
validation_test.go Support frame fragmentation and dissemination (#396) 2024-12-02 16:25:10 -06:00
validation.go Support frame fragmentation and dissemination (#396) 2024-12-02 16:25:10 -06:00

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.