mirror of
https://github.com/status-im/status-go.git
synced 2025-02-10 05:45:30 +00:00
fix: add verification request to response fix: code review add missing functions and simplify timestamp usage fix: sync verification requests feat: add endpoint to fetch all received verification requests feat: add signal when trusting verification request Co-authored-by: Jonathan Rainville <rainville.jonathan@gmail.com>
23 lines
359 B
Protocol Buffer
23 lines
359 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 response = 3;
|
|
}
|
|
|
|
message ContactVerificationTrusted {
|
|
uint64 clock = 1;
|
|
}
|
|
|
|
message DeclineContactVerification {
|
|
uint64 clock = 1;
|
|
}
|