ceremonyclient/node/protobufs/data.proto
Cassie Heart ebb31fd792 v1.4.19
2024-06-08 11:32:45 +00:00

19 lines
405 B
Protocol Buffer

syntax = "proto3";
package quilibrium.node.data.pb;
option go_package = "source.quilibrium.com/quilibrium/monorepo/node/protobufs";
message ChallengeProofRequest {
bytes challenge = 1;
uint32 core = 2;
uint32 increment = 3;
}
message ChallengeProofResponse {
bytes output = 1;
}
service DataIPCService {
rpc CalculateChallengeProof(ChallengeProofRequest) returns (ChallengeProofResponse);
}