@latticexyz/services 0.16.4 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,821 @@
1
+ // Code generated by protoc-gen-go. DO NOT EDIT.
2
+ // versions:
3
+ // protoc-gen-go v1.28.1
4
+ // protoc v3.21.3
5
+ // source: proto/faucet.proto
6
+
7
+ package faucet
8
+
9
+ import (
10
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
11
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
12
+ reflect "reflect"
13
+ sync "sync"
14
+ )
15
+
16
+ const (
17
+ // Verify that this generated code is sufficiently up-to-date.
18
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
19
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
20
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
21
+ )
22
+
23
+ type LinkedTwitterPair struct {
24
+ state protoimpl.MessageState
25
+ sizeCache protoimpl.SizeCache
26
+ unknownFields protoimpl.UnknownFields
27
+
28
+ Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
29
+ Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
30
+ }
31
+
32
+ func (x *LinkedTwitterPair) Reset() {
33
+ *x = LinkedTwitterPair{}
34
+ if protoimpl.UnsafeEnabled {
35
+ mi := &file_proto_faucet_proto_msgTypes[0]
36
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
37
+ ms.StoreMessageInfo(mi)
38
+ }
39
+ }
40
+
41
+ func (x *LinkedTwitterPair) String() string {
42
+ return protoimpl.X.MessageStringOf(x)
43
+ }
44
+
45
+ func (*LinkedTwitterPair) ProtoMessage() {}
46
+
47
+ func (x *LinkedTwitterPair) ProtoReflect() protoreflect.Message {
48
+ mi := &file_proto_faucet_proto_msgTypes[0]
49
+ if protoimpl.UnsafeEnabled && x != nil {
50
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
51
+ if ms.LoadMessageInfo() == nil {
52
+ ms.StoreMessageInfo(mi)
53
+ }
54
+ return ms
55
+ }
56
+ return mi.MessageOf(x)
57
+ }
58
+
59
+ // Deprecated: Use LinkedTwitterPair.ProtoReflect.Descriptor instead.
60
+ func (*LinkedTwitterPair) Descriptor() ([]byte, []int) {
61
+ return file_proto_faucet_proto_rawDescGZIP(), []int{0}
62
+ }
63
+
64
+ func (x *LinkedTwitterPair) GetUsername() string {
65
+ if x != nil {
66
+ return x.Username
67
+ }
68
+ return ""
69
+ }
70
+
71
+ func (x *LinkedTwitterPair) GetAddress() string {
72
+ if x != nil {
73
+ return x.Address
74
+ }
75
+ return ""
76
+ }
77
+
78
+ type FaucetStore struct {
79
+ state protoimpl.MessageState
80
+ sizeCache protoimpl.SizeCache
81
+ unknownFields protoimpl.UnknownFields
82
+
83
+ AddressToUsername map[string]string `protobuf:"bytes,1,rep,name=addressToUsername,proto3" json:"addressToUsername,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
84
+ UsernameToAddress map[string]string `protobuf:"bytes,2,rep,name=usernameToAddress,proto3" json:"usernameToAddress,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
85
+ // Username to timestamp of latest drip.
86
+ LatestDrip map[string]int64 `protobuf:"bytes,3,rep,name=latestDrip,proto3" json:"latestDrip,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
87
+ // Global drip counter.
88
+ TotalDripCount uint64 `protobuf:"varint,4,opt,name=totalDripCount,proto3" json:"totalDripCount,omitempty"`
89
+ }
90
+
91
+ func (x *FaucetStore) Reset() {
92
+ *x = FaucetStore{}
93
+ if protoimpl.UnsafeEnabled {
94
+ mi := &file_proto_faucet_proto_msgTypes[1]
95
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
96
+ ms.StoreMessageInfo(mi)
97
+ }
98
+ }
99
+
100
+ func (x *FaucetStore) String() string {
101
+ return protoimpl.X.MessageStringOf(x)
102
+ }
103
+
104
+ func (*FaucetStore) ProtoMessage() {}
105
+
106
+ func (x *FaucetStore) ProtoReflect() protoreflect.Message {
107
+ mi := &file_proto_faucet_proto_msgTypes[1]
108
+ if protoimpl.UnsafeEnabled && x != nil {
109
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
110
+ if ms.LoadMessageInfo() == nil {
111
+ ms.StoreMessageInfo(mi)
112
+ }
113
+ return ms
114
+ }
115
+ return mi.MessageOf(x)
116
+ }
117
+
118
+ // Deprecated: Use FaucetStore.ProtoReflect.Descriptor instead.
119
+ func (*FaucetStore) Descriptor() ([]byte, []int) {
120
+ return file_proto_faucet_proto_rawDescGZIP(), []int{1}
121
+ }
122
+
123
+ func (x *FaucetStore) GetAddressToUsername() map[string]string {
124
+ if x != nil {
125
+ return x.AddressToUsername
126
+ }
127
+ return nil
128
+ }
129
+
130
+ func (x *FaucetStore) GetUsernameToAddress() map[string]string {
131
+ if x != nil {
132
+ return x.UsernameToAddress
133
+ }
134
+ return nil
135
+ }
136
+
137
+ func (x *FaucetStore) GetLatestDrip() map[string]int64 {
138
+ if x != nil {
139
+ return x.LatestDrip
140
+ }
141
+ return nil
142
+ }
143
+
144
+ func (x *FaucetStore) GetTotalDripCount() uint64 {
145
+ if x != nil {
146
+ return x.TotalDripCount
147
+ }
148
+ return 0
149
+ }
150
+
151
+ type VerifyTweetRequest struct {
152
+ state protoimpl.MessageState
153
+ sizeCache protoimpl.SizeCache
154
+ unknownFields protoimpl.UnknownFields
155
+
156
+ Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
157
+ Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
158
+ }
159
+
160
+ func (x *VerifyTweetRequest) Reset() {
161
+ *x = VerifyTweetRequest{}
162
+ if protoimpl.UnsafeEnabled {
163
+ mi := &file_proto_faucet_proto_msgTypes[2]
164
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
165
+ ms.StoreMessageInfo(mi)
166
+ }
167
+ }
168
+
169
+ func (x *VerifyTweetRequest) String() string {
170
+ return protoimpl.X.MessageStringOf(x)
171
+ }
172
+
173
+ func (*VerifyTweetRequest) ProtoMessage() {}
174
+
175
+ func (x *VerifyTweetRequest) ProtoReflect() protoreflect.Message {
176
+ mi := &file_proto_faucet_proto_msgTypes[2]
177
+ if protoimpl.UnsafeEnabled && x != nil {
178
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
179
+ if ms.LoadMessageInfo() == nil {
180
+ ms.StoreMessageInfo(mi)
181
+ }
182
+ return ms
183
+ }
184
+ return mi.MessageOf(x)
185
+ }
186
+
187
+ // Deprecated: Use VerifyTweetRequest.ProtoReflect.Descriptor instead.
188
+ func (*VerifyTweetRequest) Descriptor() ([]byte, []int) {
189
+ return file_proto_faucet_proto_rawDescGZIP(), []int{2}
190
+ }
191
+
192
+ func (x *VerifyTweetRequest) GetUsername() string {
193
+ if x != nil {
194
+ return x.Username
195
+ }
196
+ return ""
197
+ }
198
+
199
+ func (x *VerifyTweetRequest) GetAddress() string {
200
+ if x != nil {
201
+ return x.Address
202
+ }
203
+ return ""
204
+ }
205
+
206
+ type VerifyTweetResponse struct {
207
+ state protoimpl.MessageState
208
+ sizeCache protoimpl.SizeCache
209
+ unknownFields protoimpl.UnknownFields
210
+
211
+ TxHash string `protobuf:"bytes,1,opt,name=txHash,proto3" json:"txHash,omitempty"`
212
+ }
213
+
214
+ func (x *VerifyTweetResponse) Reset() {
215
+ *x = VerifyTweetResponse{}
216
+ if protoimpl.UnsafeEnabled {
217
+ mi := &file_proto_faucet_proto_msgTypes[3]
218
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
219
+ ms.StoreMessageInfo(mi)
220
+ }
221
+ }
222
+
223
+ func (x *VerifyTweetResponse) String() string {
224
+ return protoimpl.X.MessageStringOf(x)
225
+ }
226
+
227
+ func (*VerifyTweetResponse) ProtoMessage() {}
228
+
229
+ func (x *VerifyTweetResponse) ProtoReflect() protoreflect.Message {
230
+ mi := &file_proto_faucet_proto_msgTypes[3]
231
+ if protoimpl.UnsafeEnabled && x != nil {
232
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
233
+ if ms.LoadMessageInfo() == nil {
234
+ ms.StoreMessageInfo(mi)
235
+ }
236
+ return ms
237
+ }
238
+ return mi.MessageOf(x)
239
+ }
240
+
241
+ // Deprecated: Use VerifyTweetResponse.ProtoReflect.Descriptor instead.
242
+ func (*VerifyTweetResponse) Descriptor() ([]byte, []int) {
243
+ return file_proto_faucet_proto_rawDescGZIP(), []int{3}
244
+ }
245
+
246
+ func (x *VerifyTweetResponse) GetTxHash() string {
247
+ if x != nil {
248
+ return x.TxHash
249
+ }
250
+ return ""
251
+ }
252
+
253
+ type GetLinkedTwittersRequest struct {
254
+ state protoimpl.MessageState
255
+ sizeCache protoimpl.SizeCache
256
+ unknownFields protoimpl.UnknownFields
257
+ }
258
+
259
+ func (x *GetLinkedTwittersRequest) Reset() {
260
+ *x = GetLinkedTwittersRequest{}
261
+ if protoimpl.UnsafeEnabled {
262
+ mi := &file_proto_faucet_proto_msgTypes[4]
263
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
264
+ ms.StoreMessageInfo(mi)
265
+ }
266
+ }
267
+
268
+ func (x *GetLinkedTwittersRequest) String() string {
269
+ return protoimpl.X.MessageStringOf(x)
270
+ }
271
+
272
+ func (*GetLinkedTwittersRequest) ProtoMessage() {}
273
+
274
+ func (x *GetLinkedTwittersRequest) ProtoReflect() protoreflect.Message {
275
+ mi := &file_proto_faucet_proto_msgTypes[4]
276
+ if protoimpl.UnsafeEnabled && x != nil {
277
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
278
+ if ms.LoadMessageInfo() == nil {
279
+ ms.StoreMessageInfo(mi)
280
+ }
281
+ return ms
282
+ }
283
+ return mi.MessageOf(x)
284
+ }
285
+
286
+ // Deprecated: Use GetLinkedTwittersRequest.ProtoReflect.Descriptor instead.
287
+ func (*GetLinkedTwittersRequest) Descriptor() ([]byte, []int) {
288
+ return file_proto_faucet_proto_rawDescGZIP(), []int{4}
289
+ }
290
+
291
+ type GetLinkedTwittersResponse struct {
292
+ state protoimpl.MessageState
293
+ sizeCache protoimpl.SizeCache
294
+ unknownFields protoimpl.UnknownFields
295
+
296
+ LinkedTwitters []*LinkedTwitterPair `protobuf:"bytes,1,rep,name=linkedTwitters,proto3" json:"linkedTwitters,omitempty"`
297
+ }
298
+
299
+ func (x *GetLinkedTwittersResponse) Reset() {
300
+ *x = GetLinkedTwittersResponse{}
301
+ if protoimpl.UnsafeEnabled {
302
+ mi := &file_proto_faucet_proto_msgTypes[5]
303
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
304
+ ms.StoreMessageInfo(mi)
305
+ }
306
+ }
307
+
308
+ func (x *GetLinkedTwittersResponse) String() string {
309
+ return protoimpl.X.MessageStringOf(x)
310
+ }
311
+
312
+ func (*GetLinkedTwittersResponse) ProtoMessage() {}
313
+
314
+ func (x *GetLinkedTwittersResponse) ProtoReflect() protoreflect.Message {
315
+ mi := &file_proto_faucet_proto_msgTypes[5]
316
+ if protoimpl.UnsafeEnabled && x != nil {
317
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
318
+ if ms.LoadMessageInfo() == nil {
319
+ ms.StoreMessageInfo(mi)
320
+ }
321
+ return ms
322
+ }
323
+ return mi.MessageOf(x)
324
+ }
325
+
326
+ // Deprecated: Use GetLinkedTwittersResponse.ProtoReflect.Descriptor instead.
327
+ func (*GetLinkedTwittersResponse) Descriptor() ([]byte, []int) {
328
+ return file_proto_faucet_proto_rawDescGZIP(), []int{5}
329
+ }
330
+
331
+ func (x *GetLinkedTwittersResponse) GetLinkedTwitters() []*LinkedTwitterPair {
332
+ if x != nil {
333
+ return x.LinkedTwitters
334
+ }
335
+ return nil
336
+ }
337
+
338
+ type LinkedTwitterForAddressRequest struct {
339
+ state protoimpl.MessageState
340
+ sizeCache protoimpl.SizeCache
341
+ unknownFields protoimpl.UnknownFields
342
+
343
+ Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
344
+ }
345
+
346
+ func (x *LinkedTwitterForAddressRequest) Reset() {
347
+ *x = LinkedTwitterForAddressRequest{}
348
+ if protoimpl.UnsafeEnabled {
349
+ mi := &file_proto_faucet_proto_msgTypes[6]
350
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
351
+ ms.StoreMessageInfo(mi)
352
+ }
353
+ }
354
+
355
+ func (x *LinkedTwitterForAddressRequest) String() string {
356
+ return protoimpl.X.MessageStringOf(x)
357
+ }
358
+
359
+ func (*LinkedTwitterForAddressRequest) ProtoMessage() {}
360
+
361
+ func (x *LinkedTwitterForAddressRequest) ProtoReflect() protoreflect.Message {
362
+ mi := &file_proto_faucet_proto_msgTypes[6]
363
+ if protoimpl.UnsafeEnabled && x != nil {
364
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
365
+ if ms.LoadMessageInfo() == nil {
366
+ ms.StoreMessageInfo(mi)
367
+ }
368
+ return ms
369
+ }
370
+ return mi.MessageOf(x)
371
+ }
372
+
373
+ // Deprecated: Use LinkedTwitterForAddressRequest.ProtoReflect.Descriptor instead.
374
+ func (*LinkedTwitterForAddressRequest) Descriptor() ([]byte, []int) {
375
+ return file_proto_faucet_proto_rawDescGZIP(), []int{6}
376
+ }
377
+
378
+ func (x *LinkedTwitterForAddressRequest) GetAddress() string {
379
+ if x != nil {
380
+ return x.Address
381
+ }
382
+ return ""
383
+ }
384
+
385
+ type LinkedTwitterForAddressResponse struct {
386
+ state protoimpl.MessageState
387
+ sizeCache protoimpl.SizeCache
388
+ unknownFields protoimpl.UnknownFields
389
+
390
+ Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
391
+ }
392
+
393
+ func (x *LinkedTwitterForAddressResponse) Reset() {
394
+ *x = LinkedTwitterForAddressResponse{}
395
+ if protoimpl.UnsafeEnabled {
396
+ mi := &file_proto_faucet_proto_msgTypes[7]
397
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
398
+ ms.StoreMessageInfo(mi)
399
+ }
400
+ }
401
+
402
+ func (x *LinkedTwitterForAddressResponse) String() string {
403
+ return protoimpl.X.MessageStringOf(x)
404
+ }
405
+
406
+ func (*LinkedTwitterForAddressResponse) ProtoMessage() {}
407
+
408
+ func (x *LinkedTwitterForAddressResponse) ProtoReflect() protoreflect.Message {
409
+ mi := &file_proto_faucet_proto_msgTypes[7]
410
+ if protoimpl.UnsafeEnabled && x != nil {
411
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
412
+ if ms.LoadMessageInfo() == nil {
413
+ ms.StoreMessageInfo(mi)
414
+ }
415
+ return ms
416
+ }
417
+ return mi.MessageOf(x)
418
+ }
419
+
420
+ // Deprecated: Use LinkedTwitterForAddressResponse.ProtoReflect.Descriptor instead.
421
+ func (*LinkedTwitterForAddressResponse) Descriptor() ([]byte, []int) {
422
+ return file_proto_faucet_proto_rawDescGZIP(), []int{7}
423
+ }
424
+
425
+ func (x *LinkedTwitterForAddressResponse) GetUsername() string {
426
+ if x != nil {
427
+ return x.Username
428
+ }
429
+ return ""
430
+ }
431
+
432
+ type LinkedAddressForTwitterRequest struct {
433
+ state protoimpl.MessageState
434
+ sizeCache protoimpl.SizeCache
435
+ unknownFields protoimpl.UnknownFields
436
+
437
+ Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
438
+ }
439
+
440
+ func (x *LinkedAddressForTwitterRequest) Reset() {
441
+ *x = LinkedAddressForTwitterRequest{}
442
+ if protoimpl.UnsafeEnabled {
443
+ mi := &file_proto_faucet_proto_msgTypes[8]
444
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
445
+ ms.StoreMessageInfo(mi)
446
+ }
447
+ }
448
+
449
+ func (x *LinkedAddressForTwitterRequest) String() string {
450
+ return protoimpl.X.MessageStringOf(x)
451
+ }
452
+
453
+ func (*LinkedAddressForTwitterRequest) ProtoMessage() {}
454
+
455
+ func (x *LinkedAddressForTwitterRequest) ProtoReflect() protoreflect.Message {
456
+ mi := &file_proto_faucet_proto_msgTypes[8]
457
+ if protoimpl.UnsafeEnabled && x != nil {
458
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
459
+ if ms.LoadMessageInfo() == nil {
460
+ ms.StoreMessageInfo(mi)
461
+ }
462
+ return ms
463
+ }
464
+ return mi.MessageOf(x)
465
+ }
466
+
467
+ // Deprecated: Use LinkedAddressForTwitterRequest.ProtoReflect.Descriptor instead.
468
+ func (*LinkedAddressForTwitterRequest) Descriptor() ([]byte, []int) {
469
+ return file_proto_faucet_proto_rawDescGZIP(), []int{8}
470
+ }
471
+
472
+ func (x *LinkedAddressForTwitterRequest) GetUsername() string {
473
+ if x != nil {
474
+ return x.Username
475
+ }
476
+ return ""
477
+ }
478
+
479
+ type LinkedAddressForTwitterResponse struct {
480
+ state protoimpl.MessageState
481
+ sizeCache protoimpl.SizeCache
482
+ unknownFields protoimpl.UnknownFields
483
+
484
+ Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
485
+ }
486
+
487
+ func (x *LinkedAddressForTwitterResponse) Reset() {
488
+ *x = LinkedAddressForTwitterResponse{}
489
+ if protoimpl.UnsafeEnabled {
490
+ mi := &file_proto_faucet_proto_msgTypes[9]
491
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
492
+ ms.StoreMessageInfo(mi)
493
+ }
494
+ }
495
+
496
+ func (x *LinkedAddressForTwitterResponse) String() string {
497
+ return protoimpl.X.MessageStringOf(x)
498
+ }
499
+
500
+ func (*LinkedAddressForTwitterResponse) ProtoMessage() {}
501
+
502
+ func (x *LinkedAddressForTwitterResponse) ProtoReflect() protoreflect.Message {
503
+ mi := &file_proto_faucet_proto_msgTypes[9]
504
+ if protoimpl.UnsafeEnabled && x != nil {
505
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
506
+ if ms.LoadMessageInfo() == nil {
507
+ ms.StoreMessageInfo(mi)
508
+ }
509
+ return ms
510
+ }
511
+ return mi.MessageOf(x)
512
+ }
513
+
514
+ // Deprecated: Use LinkedAddressForTwitterResponse.ProtoReflect.Descriptor instead.
515
+ func (*LinkedAddressForTwitterResponse) Descriptor() ([]byte, []int) {
516
+ return file_proto_faucet_proto_rawDescGZIP(), []int{9}
517
+ }
518
+
519
+ func (x *LinkedAddressForTwitterResponse) GetAddress() string {
520
+ if x != nil {
521
+ return x.Address
522
+ }
523
+ return ""
524
+ }
525
+
526
+ var File_proto_faucet_proto protoreflect.FileDescriptor
527
+
528
+ var file_proto_faucet_proto_rawDesc = []byte{
529
+ 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x66, 0x61, 0x75, 0x63, 0x65, 0x74, 0x2e, 0x70,
530
+ 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x06, 0x66, 0x61, 0x75, 0x63, 0x65, 0x74, 0x22, 0x49, 0x0a, 0x11,
531
+ 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x50, 0x61, 0x69,
532
+ 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
533
+ 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a,
534
+ 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
535
+ 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x22, 0xf9, 0x03, 0x0a, 0x0b, 0x46, 0x61, 0x75, 0x63,
536
+ 0x65, 0x74, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x12, 0x58, 0x0a, 0x11, 0x61, 0x64, 0x64, 0x72, 0x65,
537
+ 0x73, 0x73, 0x54, 0x6f, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x03,
538
+ 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x66, 0x61, 0x75, 0x63, 0x65, 0x74, 0x2e, 0x46, 0x61, 0x75, 0x63,
539
+ 0x65, 0x74, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x2e, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x54,
540
+ 0x6f, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11,
541
+ 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
542
+ 0x65, 0x12, 0x58, 0x0a, 0x11, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x54, 0x6f, 0x41,
543
+ 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x66,
544
+ 0x61, 0x75, 0x63, 0x65, 0x74, 0x2e, 0x46, 0x61, 0x75, 0x63, 0x65, 0x74, 0x53, 0x74, 0x6f, 0x72,
545
+ 0x65, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x54, 0x6f, 0x41, 0x64, 0x64, 0x72,
546
+ 0x65, 0x73, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61,
547
+ 0x6d, 0x65, 0x54, 0x6f, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x43, 0x0a, 0x0a, 0x6c,
548
+ 0x61, 0x74, 0x65, 0x73, 0x74, 0x44, 0x72, 0x69, 0x70, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
549
+ 0x23, 0x2e, 0x66, 0x61, 0x75, 0x63, 0x65, 0x74, 0x2e, 0x46, 0x61, 0x75, 0x63, 0x65, 0x74, 0x53,
550
+ 0x74, 0x6f, 0x72, 0x65, 0x2e, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x44, 0x72, 0x69, 0x70, 0x45,
551
+ 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x6c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x44, 0x72, 0x69, 0x70,
552
+ 0x12, 0x26, 0x0a, 0x0e, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x44, 0x72, 0x69, 0x70, 0x43, 0x6f, 0x75,
553
+ 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x44,
554
+ 0x72, 0x69, 0x70, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x1a, 0x44, 0x0a, 0x16, 0x41, 0x64, 0x64, 0x72,
555
+ 0x65, 0x73, 0x73, 0x54, 0x6f, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x45, 0x6e, 0x74,
556
+ 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
557
+ 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
558
+ 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x44,
559
+ 0x0a, 0x16, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x54, 0x6f, 0x41, 0x64, 0x64, 0x72,
560
+ 0x65, 0x73, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
561
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
562
+ 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
563
+ 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x3d, 0x0a, 0x0f, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x44, 0x72,
564
+ 0x69, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
565
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
566
+ 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
567
+ 0x02, 0x38, 0x01, 0x22, 0x4a, 0x0a, 0x12, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x77, 0x65,
568
+ 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65,
569
+ 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65,
570
+ 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
571
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x22,
572
+ 0x2d, 0x0a, 0x13, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x77, 0x65, 0x65, 0x74, 0x52, 0x65,
573
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x78, 0x48, 0x61, 0x73, 0x68,
574
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x78, 0x48, 0x61, 0x73, 0x68, 0x22, 0x1a,
575
+ 0x0a, 0x18, 0x47, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x54, 0x77, 0x69, 0x74, 0x74,
576
+ 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x5e, 0x0a, 0x19, 0x47, 0x65,
577
+ 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x73, 0x52,
578
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x41, 0x0a, 0x0e, 0x6c, 0x69, 0x6e, 0x6b, 0x65,
579
+ 0x64, 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
580
+ 0x19, 0x2e, 0x66, 0x61, 0x75, 0x63, 0x65, 0x74, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x54,
581
+ 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x50, 0x61, 0x69, 0x72, 0x52, 0x0e, 0x6c, 0x69, 0x6e, 0x6b,
582
+ 0x65, 0x64, 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x73, 0x22, 0x3a, 0x0a, 0x1e, 0x4c, 0x69,
583
+ 0x6e, 0x6b, 0x65, 0x64, 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x46, 0x6f, 0x72, 0x41, 0x64,
584
+ 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07,
585
+ 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61,
586
+ 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x22, 0x3d, 0x0a, 0x1f, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64,
587
+ 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x46, 0x6f, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73,
588
+ 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65,
589
+ 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65,
590
+ 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3c, 0x0a, 0x1e, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x41,
591
+ 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x46, 0x6f, 0x72, 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72,
592
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e,
593
+ 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e,
594
+ 0x61, 0x6d, 0x65, 0x22, 0x3b, 0x0a, 0x1f, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x41, 0x64, 0x64,
595
+ 0x72, 0x65, 0x73, 0x73, 0x46, 0x6f, 0x72, 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x52, 0x65,
596
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73,
597
+ 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
598
+ 0x32, 0x97, 0x03, 0x0a, 0x0d, 0x46, 0x61, 0x75, 0x63, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69,
599
+ 0x63, 0x65, 0x12, 0x48, 0x0a, 0x0b, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x77, 0x65, 0x65,
600
+ 0x74, 0x12, 0x1a, 0x2e, 0x66, 0x61, 0x75, 0x63, 0x65, 0x74, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66,
601
+ 0x79, 0x54, 0x77, 0x65, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e,
602
+ 0x66, 0x61, 0x75, 0x63, 0x65, 0x74, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x77, 0x65,
603
+ 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x11,
604
+ 0x47, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72,
605
+ 0x73, 0x12, 0x20, 0x2e, 0x66, 0x61, 0x75, 0x63, 0x65, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x4c, 0x69,
606
+ 0x6e, 0x6b, 0x65, 0x64, 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75,
607
+ 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x66, 0x61, 0x75, 0x63, 0x65, 0x74, 0x2e, 0x47, 0x65, 0x74,
608
+ 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65,
609
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6f, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x4c,
610
+ 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x46, 0x6f, 0x72, 0x41,
611
+ 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x26, 0x2e, 0x66, 0x61, 0x75, 0x63, 0x65, 0x74, 0x2e,
612
+ 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x46, 0x6f, 0x72,
613
+ 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27,
614
+ 0x2e, 0x66, 0x61, 0x75, 0x63, 0x65, 0x74, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x54, 0x77,
615
+ 0x69, 0x74, 0x74, 0x65, 0x72, 0x46, 0x6f, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52,
616
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6f, 0x0a, 0x1a, 0x47, 0x65, 0x74,
617
+ 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x46, 0x6f, 0x72,
618
+ 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x12, 0x26, 0x2e, 0x66, 0x61, 0x75, 0x63, 0x65, 0x74,
619
+ 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x46, 0x6f,
620
+ 0x72, 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
621
+ 0x27, 0x2e, 0x66, 0x61, 0x75, 0x63, 0x65, 0x74, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x41,
622
+ 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x46, 0x6f, 0x72, 0x54, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72,
623
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x14, 0x5a, 0x12, 0x70, 0x72,
624
+ 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x67, 0x6f, 0x2f, 0x66, 0x61, 0x75, 0x63, 0x65, 0x74,
625
+ 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
626
+ }
627
+
628
+ var (
629
+ file_proto_faucet_proto_rawDescOnce sync.Once
630
+ file_proto_faucet_proto_rawDescData = file_proto_faucet_proto_rawDesc
631
+ )
632
+
633
+ func file_proto_faucet_proto_rawDescGZIP() []byte {
634
+ file_proto_faucet_proto_rawDescOnce.Do(func() {
635
+ file_proto_faucet_proto_rawDescData = protoimpl.X.CompressGZIP(file_proto_faucet_proto_rawDescData)
636
+ })
637
+ return file_proto_faucet_proto_rawDescData
638
+ }
639
+
640
+ var file_proto_faucet_proto_msgTypes = make([]protoimpl.MessageInfo, 13)
641
+ var file_proto_faucet_proto_goTypes = []interface{}{
642
+ (*LinkedTwitterPair)(nil), // 0: faucet.LinkedTwitterPair
643
+ (*FaucetStore)(nil), // 1: faucet.FaucetStore
644
+ (*VerifyTweetRequest)(nil), // 2: faucet.VerifyTweetRequest
645
+ (*VerifyTweetResponse)(nil), // 3: faucet.VerifyTweetResponse
646
+ (*GetLinkedTwittersRequest)(nil), // 4: faucet.GetLinkedTwittersRequest
647
+ (*GetLinkedTwittersResponse)(nil), // 5: faucet.GetLinkedTwittersResponse
648
+ (*LinkedTwitterForAddressRequest)(nil), // 6: faucet.LinkedTwitterForAddressRequest
649
+ (*LinkedTwitterForAddressResponse)(nil), // 7: faucet.LinkedTwitterForAddressResponse
650
+ (*LinkedAddressForTwitterRequest)(nil), // 8: faucet.LinkedAddressForTwitterRequest
651
+ (*LinkedAddressForTwitterResponse)(nil), // 9: faucet.LinkedAddressForTwitterResponse
652
+ nil, // 10: faucet.FaucetStore.AddressToUsernameEntry
653
+ nil, // 11: faucet.FaucetStore.UsernameToAddressEntry
654
+ nil, // 12: faucet.FaucetStore.LatestDripEntry
655
+ }
656
+ var file_proto_faucet_proto_depIdxs = []int32{
657
+ 10, // 0: faucet.FaucetStore.addressToUsername:type_name -> faucet.FaucetStore.AddressToUsernameEntry
658
+ 11, // 1: faucet.FaucetStore.usernameToAddress:type_name -> faucet.FaucetStore.UsernameToAddressEntry
659
+ 12, // 2: faucet.FaucetStore.latestDrip:type_name -> faucet.FaucetStore.LatestDripEntry
660
+ 0, // 3: faucet.GetLinkedTwittersResponse.linkedTwitters:type_name -> faucet.LinkedTwitterPair
661
+ 2, // 4: faucet.FaucetService.VerifyTweet:input_type -> faucet.VerifyTweetRequest
662
+ 4, // 5: faucet.FaucetService.GetLinkedTwitters:input_type -> faucet.GetLinkedTwittersRequest
663
+ 6, // 6: faucet.FaucetService.GetLinkedTwitterForAddress:input_type -> faucet.LinkedTwitterForAddressRequest
664
+ 8, // 7: faucet.FaucetService.GetLinkedAddressForTwitter:input_type -> faucet.LinkedAddressForTwitterRequest
665
+ 3, // 8: faucet.FaucetService.VerifyTweet:output_type -> faucet.VerifyTweetResponse
666
+ 5, // 9: faucet.FaucetService.GetLinkedTwitters:output_type -> faucet.GetLinkedTwittersResponse
667
+ 7, // 10: faucet.FaucetService.GetLinkedTwitterForAddress:output_type -> faucet.LinkedTwitterForAddressResponse
668
+ 9, // 11: faucet.FaucetService.GetLinkedAddressForTwitter:output_type -> faucet.LinkedAddressForTwitterResponse
669
+ 8, // [8:12] is the sub-list for method output_type
670
+ 4, // [4:8] is the sub-list for method input_type
671
+ 4, // [4:4] is the sub-list for extension type_name
672
+ 4, // [4:4] is the sub-list for extension extendee
673
+ 0, // [0:4] is the sub-list for field type_name
674
+ }
675
+
676
+ func init() { file_proto_faucet_proto_init() }
677
+ func file_proto_faucet_proto_init() {
678
+ if File_proto_faucet_proto != nil {
679
+ return
680
+ }
681
+ if !protoimpl.UnsafeEnabled {
682
+ file_proto_faucet_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
683
+ switch v := v.(*LinkedTwitterPair); i {
684
+ case 0:
685
+ return &v.state
686
+ case 1:
687
+ return &v.sizeCache
688
+ case 2:
689
+ return &v.unknownFields
690
+ default:
691
+ return nil
692
+ }
693
+ }
694
+ file_proto_faucet_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
695
+ switch v := v.(*FaucetStore); i {
696
+ case 0:
697
+ return &v.state
698
+ case 1:
699
+ return &v.sizeCache
700
+ case 2:
701
+ return &v.unknownFields
702
+ default:
703
+ return nil
704
+ }
705
+ }
706
+ file_proto_faucet_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
707
+ switch v := v.(*VerifyTweetRequest); i {
708
+ case 0:
709
+ return &v.state
710
+ case 1:
711
+ return &v.sizeCache
712
+ case 2:
713
+ return &v.unknownFields
714
+ default:
715
+ return nil
716
+ }
717
+ }
718
+ file_proto_faucet_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
719
+ switch v := v.(*VerifyTweetResponse); i {
720
+ case 0:
721
+ return &v.state
722
+ case 1:
723
+ return &v.sizeCache
724
+ case 2:
725
+ return &v.unknownFields
726
+ default:
727
+ return nil
728
+ }
729
+ }
730
+ file_proto_faucet_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
731
+ switch v := v.(*GetLinkedTwittersRequest); i {
732
+ case 0:
733
+ return &v.state
734
+ case 1:
735
+ return &v.sizeCache
736
+ case 2:
737
+ return &v.unknownFields
738
+ default:
739
+ return nil
740
+ }
741
+ }
742
+ file_proto_faucet_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
743
+ switch v := v.(*GetLinkedTwittersResponse); i {
744
+ case 0:
745
+ return &v.state
746
+ case 1:
747
+ return &v.sizeCache
748
+ case 2:
749
+ return &v.unknownFields
750
+ default:
751
+ return nil
752
+ }
753
+ }
754
+ file_proto_faucet_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
755
+ switch v := v.(*LinkedTwitterForAddressRequest); i {
756
+ case 0:
757
+ return &v.state
758
+ case 1:
759
+ return &v.sizeCache
760
+ case 2:
761
+ return &v.unknownFields
762
+ default:
763
+ return nil
764
+ }
765
+ }
766
+ file_proto_faucet_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
767
+ switch v := v.(*LinkedTwitterForAddressResponse); i {
768
+ case 0:
769
+ return &v.state
770
+ case 1:
771
+ return &v.sizeCache
772
+ case 2:
773
+ return &v.unknownFields
774
+ default:
775
+ return nil
776
+ }
777
+ }
778
+ file_proto_faucet_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
779
+ switch v := v.(*LinkedAddressForTwitterRequest); i {
780
+ case 0:
781
+ return &v.state
782
+ case 1:
783
+ return &v.sizeCache
784
+ case 2:
785
+ return &v.unknownFields
786
+ default:
787
+ return nil
788
+ }
789
+ }
790
+ file_proto_faucet_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
791
+ switch v := v.(*LinkedAddressForTwitterResponse); i {
792
+ case 0:
793
+ return &v.state
794
+ case 1:
795
+ return &v.sizeCache
796
+ case 2:
797
+ return &v.unknownFields
798
+ default:
799
+ return nil
800
+ }
801
+ }
802
+ }
803
+ type x struct{}
804
+ out := protoimpl.TypeBuilder{
805
+ File: protoimpl.DescBuilder{
806
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
807
+ RawDescriptor: file_proto_faucet_proto_rawDesc,
808
+ NumEnums: 0,
809
+ NumMessages: 13,
810
+ NumExtensions: 0,
811
+ NumServices: 1,
812
+ },
813
+ GoTypes: file_proto_faucet_proto_goTypes,
814
+ DependencyIndexes: file_proto_faucet_proto_depIdxs,
815
+ MessageInfos: file_proto_faucet_proto_msgTypes,
816
+ }.Build()
817
+ File_proto_faucet_proto = out.File
818
+ file_proto_faucet_proto_rawDesc = nil
819
+ file_proto_faucet_proto_goTypes = nil
820
+ file_proto_faucet_proto_depIdxs = nil
821
+ }