mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-14 20:25:17 +00:00
58456c1057
* feat: IPC for wesolowski * update self peer info * remove digests and signatures * add new binaries and digests * Signatory #13 added * Signatory #4 added (#231) * added sig.6 files (#232) * Signatory #9 added (#233) * Added signatories #1, #2, #3, #5, #8, #12, #14, #15, #16, #17 * remove binaries, release ready --------- Co-authored-by: 0xOzgur <29779769+0xOzgur@users.noreply.github.com> Co-authored-by: Demipoet <161999657+demipoet@users.noreply.github.com> Co-authored-by: Freekers <1370857+Freekers@users.noreply.github.com>
21 lines
442 B
Protocol Buffer
21 lines
442 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;
|
|
int64 skew = 3;
|
|
int64 now_ms = 4;
|
|
}
|
|
|
|
message ChallengeProofResponse {
|
|
bytes output = 1;
|
|
int64 next_skew = 2;
|
|
}
|
|
|
|
service DataIPCService {
|
|
rpc CalculateChallengeProof(ChallengeProofRequest) returns (ChallengeProofResponse);
|
|
} |