status-im/status-go

View on GitHub
protocol/protobuf/community_shard_key.proto

Summary

Maintainability
Test Coverage
syntax = "proto3";

option go_package = "./;protobuf";

package protobuf;

import "shard.proto";

message CommunityShardKey {
  bytes community_id = 1;
  bytes private_key = 2;
  uint64 clock = 3;
  Shard shard = 4;
}