status-go/protocol/protobuf/contact.proto
2022-03-14 13:48:34 -04:00

12 lines
198 B
Protocol Buffer

syntax = "proto3";
option go_package = "./;protobuf";
package protobuf;
message ContactUpdate {
uint64 clock = 1;
string ens_name = 2;
string profile_image = 3;
string display_name = 4;
}