mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
19 lines
405 B
Protocol Buffer
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);
|
|
} |