sos-protocol 0.17.1

Networking and sync protocol types for the Save Our Secrets SDK.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
syntax = "proto3";

package notifications;

import "protobuf/common.proto";
import "protobuf/sync.proto";

message WireNetworkChangeEvent {
  // Account identifier.
  bytes account_id = 1;
  // Connection identifier.
  string connection_id = 2;
  // Root commit of the account status.
  common.WireCommitHash root = 3;
  // Merge outcome information.
  sync.WireMergeOutcome outcome = 4;
}