mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
15 lines
218 B
Protocol Buffer
15 lines
218 B
Protocol Buffer
|
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;
|
||
|
}
|