status-go/protocol/protobuf/contact.proto

12 lines
198 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
option go_package = "./;protobuf";
package protobuf;
message ContactUpdate {
uint64 clock = 1;
string ens_name = 2;
string profile_image = 3;
2022-02-17 15:13:10 +00:00
string display_name = 4;
}