mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
5005b7b3cf
* feat(ActivityCenter): Add missing AC notifications for verification requests * fix(Contacts): Fix updates for trusted and untrustworthy statuses * feat(ActivityCenter): Add test for trusted verification request and AC notifications * feat(Contacts): Trusted and untrustworthy statuses should be unknown for verificated side
26 lines
409 B
Protocol Buffer
26 lines
409 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 DeclineContactVerification {
|
|
uint64 clock = 1;
|
|
string id = 2;
|
|
}
|
|
|
|
message CancelContactVerification {
|
|
uint64 clock = 1;
|
|
string id = 2;
|
|
}
|