mirror of
https://github.com/status-im/status-go.git
synced 2025-01-22 20:54:23 +00:00
26 lines
410 B
Protocol Buffer
26 lines
410 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./;protobuf";
|
|
package protobuf;
|
|
|
|
message RequestContactVerification {
|
|
uint64 clock = 1;
|
|
string challenge = 3;
|
|
}
|
|
|
|
message AcceptContactVerification {
|
|
uint64 clock = 1;
|
|
string id = 2;
|
|
string response = 3;
|
|
}
|
|
|
|
message ContactVerificationTrusted {
|
|
uint64 clock = 1;
|
|
string id = 2;
|
|
}
|
|
|
|
message DeclineContactVerification {
|
|
uint64 clock = 1;
|
|
string id = 2;
|
|
}
|