mollysocket 1.7.0

MollySocket allows getting signal notifications via UnifiedPush.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
/**
 * Copyright (C) 2014-2016 Open Whisper Systems
 *
 * Licensed according to the LICENSE file in this repository.
 */
syntax = "proto2";

package proto.signalservice;

option java_package         = "org.whispersystems.signalservice.internal.push";
option java_outer_classname = "SignalServiceProtos";

message Envelope {
  enum Type {
    UNKNOWN             = 0;
    CIPHERTEXT          = 1;
    KEY_EXCHANGE        = 2;
    PREKEY_BUNDLE       = 3;
    RECEIPT             = 5;
    UNIDENTIFIED_SENDER = 6;
    reserved 7; // SENDERKEY_MESSAGE
    PLAINTEXT_CONTENT   = 8;
  }

  optional Type   type                 = 1;
  reserved      /*sourceE164*/           2;
  optional string sourceServiceId      = 11;
  optional uint32 sourceDevice         = 7;
  optional string destinationServiceId = 13;
  reserved      /*relay*/                3;
  optional uint64 timestamp            = 5;
  reserved      /*legacyMessage*/        6;
  optional bytes  content              = 8; // Contains an encrypted Content
  optional string serverGuid           = 9;
  optional uint64 serverTimestamp      = 10;
  optional bool   urgent               = 14 [default = true];
  optional string updatedPni           = 15; // MOLLY: Used by linked device if primary device changes phone number
  optional bool   story                = 16;
  optional bytes  reportingToken       = 17;
  // NEXT ID: 18
}

message Content {
  optional DataMessage         dataMessage                  = 1;
  optional SyncMessage         syncMessage                  = 2;
  optional CallMessage         callMessage                  = 3;
  optional NullMessage         nullMessage                  = 4;
  optional ReceiptMessage      receiptMessage               = 5;
  optional TypingMessage       typingMessage                = 6;
  optional bytes               senderKeyDistributionMessage = 7;
  optional bytes               decryptionErrorMessage       = 8;
  optional StoryMessage        storyMessage                 = 9;
  optional PniSignatureMessage pniSignatureMessage          = 10;
  optional EditMessage         editMessage                  = 11;
}

message CallMessage {
  message Offer {
    enum Type {
      OFFER_AUDIO_CALL                   = 0;
      OFFER_VIDEO_CALL                   = 1;
      reserved /* OFFER_NEED_PERMISSION */ 2; // removed
    }

    optional uint64 id     = 1;
    // Legacy/deprecated; replaced by 'opaque'
    optional string sdp    = 2;
    optional Type   type   = 3;
    optional bytes  opaque = 4;
  }

  message Answer {
    optional uint64 id     = 1;
    // Legacy/deprecated; replaced by 'opaque'
    optional string sdp    = 2;
    optional bytes  opaque = 3;
  }

  message IceUpdate {
    optional uint64 id     = 1;
    // Legacy/deprecated; remove when old clients are gone.
    optional string mid    = 2;
    // Legacy/deprecated; remove when old clients are gone.
    optional uint32 line   = 3;
    // Legacy/deprecated; replaced by 'opaque'
    optional string sdp    = 4;
    optional bytes  opaque = 5;
  }

  message Busy {
    optional uint64 id = 1;
  }

  message Hangup {
    enum Type {
      HANGUP_NORMAL          = 0;
      HANGUP_ACCEPTED        = 1;
      HANGUP_DECLINED        = 2;
      HANGUP_BUSY            = 3;
      HANGUP_NEED_PERMISSION = 4;
    }

    optional uint64 id       = 1;
    optional Type   type     = 2;
    optional uint32 deviceId = 3;
  }

  message Opaque {
    enum Urgency {
      DROPPABLE          = 0;
      HANDLE_IMMEDIATELY = 1;
    }

    optional bytes   data    = 1;
    optional Urgency urgency = 2;
  }

  optional Offer     offer               = 1;
  optional Answer    answer              = 2;
  repeated IceUpdate iceUpdate           = 3;
  optional Hangup    legacyHangup        = 4;
  optional Busy      busy                = 5;
  reserved        /* profileKey */         6;
  optional Hangup    hangup              = 7;
  reserved        /* multiRing */          8;
  optional uint32    destinationDeviceId = 9;
  optional Opaque    opaque              = 10;
}

message BodyRange {
  enum Style {
    NONE          = 0;
    BOLD          = 1;
    ITALIC        = 2;
    SPOILER       = 3;
    STRIKETHROUGH = 4;
    MONOSPACE     = 5;
  }

  optional uint32 start  = 1;
  optional uint32 length = 2;

  oneof associatedValue {
    string mentionAci = 3;
    Style  style      = 4;
  }
}

message DataMessage {
  enum Flags {
    END_SESSION             = 1;
    EXPIRATION_TIMER_UPDATE = 2;
    PROFILE_KEY_UPDATE      = 4;
  }

  message Quote {
    enum Type {
      NORMAL     = 0;
      GIFT_BADGE = 1;
    }

    message QuotedAttachment {
      optional string            contentType = 1;
      optional string            fileName    = 2;
      optional AttachmentPointer thumbnail   = 3;
    }

    optional uint64           id          = 1;
    reserved                /*authorE164*/  2;
    optional string           authorAci   = 5;
    optional string           text        = 3;
    repeated QuotedAttachment attachments = 4;
    repeated BodyRange        bodyRanges  = 6;
    optional Type             type        = 7;
  }

  message Contact {
    message Name {
      optional string givenName   = 1;
      optional string familyName  = 2;
      optional string prefix      = 3;
      optional string suffix      = 4;
      optional string middleName  = 5;
      optional string displayName = 6;
    }

    message Phone {
      enum Type {
        HOME   = 1;
        MOBILE = 2;
        WORK   = 3;
        CUSTOM = 4;
      }

      optional string value = 1;
      optional Type   type  = 2;
      optional string label = 3;
    }

    message Email {
      enum Type {
        HOME   = 1;
        MOBILE = 2;
        WORK   = 3;
        CUSTOM = 4;
      }

      optional string value = 1;
      optional Type   type  = 2;
      optional string label = 3;
    }

    message PostalAddress {
      enum Type {
        HOME   = 1;
        WORK   = 2;
        CUSTOM = 3;
      }

      optional Type   type         = 1;
      optional string label        = 2;
      optional string street       = 3;
      optional string pobox        = 4;
      optional string neighborhood = 5;
      optional string city         = 6;
      optional string region       = 7;
      optional string postcode     = 8;
      optional string country      = 9;
    }

    message Avatar {
      optional AttachmentPointer avatar    = 1;
      optional bool              isProfile = 2;
    }

    optional Name              name            = 1;
    repeated Phone             number          = 3;
    repeated Email             email           = 4;
    repeated PostalAddress     address         = 5;
    optional Avatar            avatar          = 6;
    optional string            organization    = 7;
  }

  message Sticker {
    optional bytes             packId    = 1;
    optional bytes             packKey   = 2;
    optional uint32            stickerId = 3;
    optional AttachmentPointer data      = 4;
    optional string            emoji     = 5;
  }

  message Reaction {
    optional string emoji               = 1;
    optional bool   remove              = 2;
    reserved      /*targetAuthorE164*/    3;
    optional string targetAuthorAci     = 4;
    optional uint64 targetSentTimestamp = 5;
  }

  message Delete {
    optional uint64 targetSentTimestamp = 1;
  }

  message GroupCallUpdate {
    optional string eraId = 1;
  }

  message StoryContext {
    optional string authorAci     = 1;
    optional uint64 sentTimestamp = 2;
  }

  message Payment {
    message Amount {
      message MobileCoin {
        optional uint64 picoMob = 1;
      }

      oneof Amount {
        MobileCoin mobileCoin = 1;
      }
    }

    message Notification {
      message MobileCoin {
        optional bytes receipt = 1;
      }

      oneof Transaction {
        MobileCoin mobileCoin = 1;
      }

      optional string note = 2;
      reserved /*requestId*/ 1003;
    }

    message Activation {
      enum Type {
        REQUEST   = 0;
        ACTIVATED = 1;
      }

      optional Type type = 1;
    }

    oneof Item {
      Notification notification = 1;
      Activation   activation   = 2;
    }

    reserved /*request*/      1002;
    reserved /*cancellation*/ 1003;
  }

  message GiftBadge {
    optional bytes receiptCredentialPresentation = 1;
  }

  enum ProtocolVersion {
    option allow_alias = true;

    INITIAL                  = 0;
    MESSAGE_TIMERS           = 1;
    VIEW_ONCE                = 2;
    VIEW_ONCE_VIDEO          = 3;
    REACTIONS                = 4;
    CDN_SELECTOR_ATTACHMENTS = 5;
    MENTIONS                 = 6;
    PAYMENTS                 = 7;
    CURRENT                  = 7;
  }

  optional string             body                    = 1;
  repeated AttachmentPointer  attachments             = 2;
  reserved                  /*groupV1*/                 3;
  optional GroupContextV2     groupV2                 = 15;
  optional uint32             flags                   = 4;
  optional uint32             expireTimer             = 5;
  optional bytes              profileKey              = 6;
  optional uint64             timestamp               = 7;
  optional Quote              quote                   = 8;
  repeated Contact            contact                 = 9;
  repeated Preview            preview                 = 10;
  optional Sticker            sticker                 = 11;
  optional uint32             requiredProtocolVersion = 12;
  optional bool               isViewOnce              = 14;
  optional Reaction           reaction                = 16;
  optional Delete             delete                  = 17;
  repeated BodyRange          bodyRanges              = 18;
  optional GroupCallUpdate    groupCallUpdate         = 19;
  optional Payment            payment                 = 20;
  optional StoryContext       storyContext            = 21;
  optional GiftBadge          giftBadge               = 22;
}

message NullMessage {
  optional bytes padding = 1;
}

message ReceiptMessage {
  enum Type {
    DELIVERY = 0;
    READ     = 1;
    VIEWED   = 2;
  }

  optional Type   type      = 1;
  repeated uint64 timestamp = 2;
}

message TypingMessage {
    enum Action {
        STARTED = 0;
        STOPPED = 1;
    }

    optional uint64 timestamp = 1;
    optional Action action    = 2;
    optional bytes  groupId   = 3;
}

message StoryMessage {
  optional bytes             profileKey    = 1;
  optional GroupContextV2    group         = 2;
  oneof attachment {
    AttachmentPointer fileAttachment = 3;
    TextAttachment    textAttachment = 4;
  }
  optional bool              allowsReplies = 5;
  repeated BodyRange         bodyRanges    = 6;
}

message Preview {
  optional string            url         = 1;
  optional string            title       = 2;
  optional AttachmentPointer image       = 3;
  optional string            description = 4;
  optional uint64            date        = 5;
}

message TextAttachment {
  enum Style {
    DEFAULT   = 0;
    REGULAR   = 1;
    BOLD      = 2;
    SERIF     = 3;
    SCRIPT    = 4;
    CONDENSED = 5;
  }

  message Gradient {
    optional uint32 startColor = 1; // deprecated: this field will be removed in a future release.
    optional uint32 endColor   = 2; // deprecated: this field will be removed in a future release.
    optional uint32 angle      = 3; // degrees
    repeated uint32 colors     = 4;
    repeated float  positions  = 5; // percent from 0 to 1
  }

  optional string  text                = 1;
  optional Style   textStyle           = 2;
  optional uint32  textForegroundColor = 3; // integer representation of hex color
  optional uint32  textBackgroundColor = 4;
  optional Preview preview             = 5;
  oneof background {
    Gradient gradient = 6;
    uint32   color    = 7;
  }
}

message Verified {
  enum State {
    DEFAULT    = 0;
    VERIFIED   = 1;
    UNVERIFIED = 2;
  }

  reserved      /*destinationE164*/ 1;
  optional string destinationAci  = 5;
  optional bytes  identityKey     = 2;
  optional State  state           = 3;
  optional bytes  nullMessage     = 4;
}

message SyncMessage {
  message Sent {
    message UnidentifiedDeliveryStatus {
      reserved      /*destinationE164*/ 1;
      optional string destinationServiceId = 3;
      optional bool   unidentified         = 2;
    }

    message StoryMessageRecipient {
      optional string destinationServiceId = 1;
      repeated string distributionListIds  = 2;
      optional bool   isAllowedToReply     = 3;
    }

    optional string                     destinationE164          = 1;
    optional string                     destinationServiceId     = 7;
    optional uint64                     timestamp                = 2;
    optional DataMessage                message                  = 3;
    optional uint64                     expirationStartTimestamp = 4;
    repeated UnidentifiedDeliveryStatus unidentifiedStatus       = 5;
    optional bool                       isRecipientUpdate        = 6 [default = false];
    optional StoryMessage               storyMessage             = 8;
    repeated StoryMessageRecipient      storyMessageRecipients   = 9;
    optional EditMessage                editMessage              = 10;
  }

  message Contacts {
    optional AttachmentPointer blob     = 1;
    optional bool              complete = 2 [default = false];
  }

  message Blocked {
    repeated string numbers  = 1;
    repeated string acis     = 3;
    repeated bytes  groupIds = 2;
  }

  message Request {
    enum Type {
      UNKNOWN       = 0;
      CONTACTS      = 1;
//      GROUPS        = 2;
      BLOCKED       = 3;
      CONFIGURATION = 4;
      KEYS          = 5;
      PNI_IDENTITY  = 6;
    }

    optional Type type = 1;
  }

  message Read {
    reserved      /*senderE164*/ 1;
    optional string senderAci  = 3;
    optional uint64 timestamp  = 2;
  }

  message Viewed {
    reserved      /*senderE164*/ 1;
    optional string senderAci  = 3;
    optional uint64 timestamp  = 2;
  }

  message Configuration {
    optional bool   readReceipts                   = 1;
    optional bool   unidentifiedDeliveryIndicators = 2;
    optional bool   typingIndicators               = 3;
    reserved     /* linkPreviews */                  4;
    optional uint32 provisioningVersion            = 5;
    optional bool   linkPreviews                   = 6;
  }

  message StickerPackOperation {
    enum Type {
      INSTALL = 0;
      REMOVE  = 1;
    }

    optional bytes packId  = 1;
    optional bytes packKey = 2;
    optional Type  type    = 3;
  }

  message ViewOnceOpen {
    reserved      /*senderE164*/ 1;
    optional string senderAci  = 3;
    optional uint64 timestamp  = 2;
  }

  message FetchLatest {
    enum Type {
      UNKNOWN             = 0;
      LOCAL_PROFILE       = 1;
      STORAGE_MANIFEST    = 2;
      SUBSCRIPTION_STATUS = 3;
    }

    optional Type type = 1;
  }

  message Keys {
    // @deprecated
    optional bytes storageService = 1;
    optional bytes master         = 2;
  }

  message MessageRequestResponse {
    enum Type {
      UNKNOWN          = 0;
      ACCEPT           = 1;
      DELETE           = 2;
      BLOCK            = 3;
      BLOCK_AND_DELETE = 4;
    }

    reserved      /*threadE164*/ 1;
    optional string threadAci  = 2;
    optional bytes  groupId    = 3;
    optional Type   type       = 4;
  }

  message OutgoingPayment {
    message MobileCoin {
      optional bytes  recipientAddress     = 1;
      // @required
      optional uint64 amountPicoMob        = 2;
      // @required
      optional uint64 feePicoMob           = 3;
      optional bytes  receipt              = 4;
      optional uint64 ledgerBlockTimestamp = 5;
      // @required
      optional uint64 ledgerBlockIndex     = 6;
      repeated bytes  spentKeyImages       = 7;
      repeated bytes  outputPublicKeys     = 8;
    }
    optional string recipientServiceId = 1;
    optional string note               = 2;

    oneof paymentDetail {
      MobileCoin mobileCoin = 3;
    }
  }

  message PniChangeNumber {
    optional bytes  identityKeyPair       = 1; // Serialized libsignal-client IdentityKeyPair
    optional bytes  signedPreKey          = 2; // Serialized libsignal-client SignedPreKeyRecord
    optional bytes  lastResortKyberPreKey = 5; // Serialized libsignal-client KyberPreKeyRecord
    optional uint32 registrationId        = 3;
    optional string newE164               = 4; // The e164 we have changed our number to
    // Next ID: 6
  }

  message CallEvent {
    enum Type {
      UNKNOWN_TYPE = 0;
      AUDIO_CALL   = 1;
      VIDEO_CALL   = 2;
      GROUP_CALL   = 3;
      AD_HOC_CALL  = 4;
    }

    enum Direction {
      UNKNOWN_DIRECTION = 0;
      INCOMING          = 1;
      OUTGOING          = 2;
    }

    enum Event {
      UNKNOWN_ACTION = 0;
      ACCEPTED       = 1;
      NOT_ACCEPTED   = 2;
      DELETE         = 3;
    }

    optional bytes     conversationId = 1;
    optional uint64    id             = 2;
    optional uint64    timestamp      = 3;
    optional Type      type           = 4;
    optional Direction direction      = 5;
    optional Event     event          = 6;
  }

  message CallLinkUpdate {
    optional bytes rootKey      = 1;
    optional bytes adminPassKey = 2;
  }

  message CallLogEvent {
    enum Type {
      CLEAR = 0;
    }

    optional Type   type      = 1;
    optional uint64 timestamp = 2;
  }

  optional Sent                   sent                   = 1;
  optional Contacts               contacts               = 2;
  reserved                      /*groups*/                 3;
  optional Request                request                = 4;
  repeated Read                   read                   = 5;
  optional Blocked                blocked                = 6;
  optional Verified               verified               = 7;
  optional Configuration          configuration          = 9;
  optional bytes                  padding                = 8;
  repeated StickerPackOperation   stickerPackOperation   = 10;
  optional ViewOnceOpen           viewOnceOpen           = 11;
  optional FetchLatest            fetchLatest            = 12;
  optional Keys                   keys                   = 13;
  optional MessageRequestResponse messageRequestResponse = 14;
  optional OutgoingPayment        outgoingPayment        = 15;
  repeated Viewed                 viewed                 = 16;
  reserved                      /*pniIdentity*/            17;
  optional PniChangeNumber        pniChangeNumber        = 18;
  optional CallEvent              callEvent              = 19;
  optional CallLinkUpdate         callLinkUpdate         = 20;
  optional CallLogEvent           callLogEvent           = 21;
}

message AttachmentPointer {
  enum Flags {
    VOICE_MESSAGE = 1;
    BORDERLESS    = 2;
    reserved        3;
    GIF           = 4;
  }

  oneof attachment_identifier {
    fixed64        cdnId           = 1;
    string         cdnKey          = 15;
  }
  optional string  contentType             = 2;
  optional bytes   key                     = 3;
  optional uint32  size                    = 4;
  optional bytes   thumbnail               = 5;
  optional bytes   digest                  = 6;
  reserved                                   16;
  optional bytes   incrementalMac          = 18;
  optional uint32  incrementalMacChunkSize = 17;
  optional string  fileName                = 7;
  optional uint32  flags                   = 8;
  optional uint32  width                   = 9;
  optional uint32  height                  = 10;
  optional string  caption                 = 11;
  optional string  blurHash                = 12;
  optional uint64  uploadTimestamp         = 13;
  optional uint32  cdnNumber               = 14;
  // Next ID: 19
}

message GroupContext {
  enum Type {
    UNKNOWN      = 0;
    UPDATE       = 1;
    DELIVER      = 2;
    QUIT         = 3;
    REQUEST_INFO = 4;
  }

  message Member {
    reserved     /* uuid */ 1; // removed
    optional string e164  = 2;
  }

  optional bytes             id          = 1;
  optional Type              type        = 2;
  optional string            name        = 3;
  repeated string            membersE164 = 4;
  repeated Member            members     = 6;
  optional AttachmentPointer avatar      = 5;
}

message GroupContextV2 {
  optional bytes  masterKey   = 1;
  optional uint32 revision    = 2;
  optional bytes  groupChange = 3;
}

message ContactDetails {
  message Avatar {
    optional string contentType = 1;
    optional uint32 length      = 2;
  }

  optional string   number        = 1;
  optional string   aci           = 9;
  optional string   name          = 2;
  optional Avatar   avatar        = 3;
  optional string   color         = 4;
  optional Verified verified      = 5;
  optional bytes    profileKey    = 6;
  optional bool     blocked       = 7;
  optional uint32   expireTimer   = 8;
  optional uint32   inboxPosition = 10;
  optional bool     archived      = 11;
}

message GroupDetails {
  message Avatar {
    optional string contentType = 1;
    optional uint32 length      = 2;
  }

  message Member {
    reserved     /* uuid */ 1; // removed
    optional string e164  = 2;
  }

  optional bytes  id            = 1;
  optional string name          = 2;
  repeated string membersE164   = 3;
  repeated Member members       = 9;
  optional Avatar avatar        = 4;
  optional bool   active        = 5 [default = true];
  optional uint32 expireTimer   = 6;
  optional string color         = 7;
  optional bool   blocked       = 8;
  optional uint32 inboxPosition = 10;
  optional bool   archived      = 11;
}

message PaymentAddress {
  oneof Address {
    MobileCoinAddress mobileCoinAddress = 1;
  }

  message MobileCoinAddress {
    optional bytes address   = 1;
    optional bytes signature = 2;
  }
}

message DecryptionErrorMessage {
  optional bytes  ratchetKey = 1;
  optional uint64 timestamp  = 2;
  optional uint32 deviceId   = 3;
}

message PniSignatureMessage {
  optional bytes pni       = 1;
  optional bytes signature = 2;
}

message EditMessage {
  optional uint64      targetSentTimestamp = 1;
  optional DataMessage dataMessage         = 2;
}