-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
reflection.pb.go
5613 lines (5339 loc) · 150 KB
/
reflection.pb.go
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
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: cosmos/base/reflection/v2alpha1/reflection.proto
package v2alpha1
import (
context "context"
fmt "fmt"
grpc1 "github.com/cosmos/gogoproto/grpc"
proto "github.com/cosmos/gogoproto/proto"
_ "google.golang.org/genproto/googleapis/api/annotations"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
io "io"
math "math"
math_bits "math/bits"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
// AppDescriptor describes a cosmos-sdk based application
type AppDescriptor struct {
// AuthnDescriptor provides information on how to authenticate transactions on the application
// NOTE: experimental and subject to change in future releases.
Authn *AuthnDescriptor `protobuf:"bytes,1,opt,name=authn,proto3" json:"authn,omitempty"`
// chain provides the chain descriptor
Chain *ChainDescriptor `protobuf:"bytes,2,opt,name=chain,proto3" json:"chain,omitempty"`
// codec provides metadata information regarding codec related types
Codec *CodecDescriptor `protobuf:"bytes,3,opt,name=codec,proto3" json:"codec,omitempty"`
// configuration provides metadata information regarding the sdk.Config type
Configuration *ConfigurationDescriptor `protobuf:"bytes,4,opt,name=configuration,proto3" json:"configuration,omitempty"`
// query_services provides metadata information regarding the available queriable endpoints
QueryServices *QueryServicesDescriptor `protobuf:"bytes,5,opt,name=query_services,json=queryServices,proto3" json:"query_services,omitempty"`
// tx provides metadata information regarding how to send transactions to the given application
Tx *TxDescriptor `protobuf:"bytes,6,opt,name=tx,proto3" json:"tx,omitempty"`
}
func (m *AppDescriptor) Reset() { *m = AppDescriptor{} }
func (m *AppDescriptor) String() string { return proto.CompactTextString(m) }
func (*AppDescriptor) ProtoMessage() {}
func (*AppDescriptor) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{0}
}
func (m *AppDescriptor) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *AppDescriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_AppDescriptor.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *AppDescriptor) XXX_Merge(src proto.Message) {
xxx_messageInfo_AppDescriptor.Merge(m, src)
}
func (m *AppDescriptor) XXX_Size() int {
return m.Size()
}
func (m *AppDescriptor) XXX_DiscardUnknown() {
xxx_messageInfo_AppDescriptor.DiscardUnknown(m)
}
var xxx_messageInfo_AppDescriptor proto.InternalMessageInfo
func (m *AppDescriptor) GetAuthn() *AuthnDescriptor {
if m != nil {
return m.Authn
}
return nil
}
func (m *AppDescriptor) GetChain() *ChainDescriptor {
if m != nil {
return m.Chain
}
return nil
}
func (m *AppDescriptor) GetCodec() *CodecDescriptor {
if m != nil {
return m.Codec
}
return nil
}
func (m *AppDescriptor) GetConfiguration() *ConfigurationDescriptor {
if m != nil {
return m.Configuration
}
return nil
}
func (m *AppDescriptor) GetQueryServices() *QueryServicesDescriptor {
if m != nil {
return m.QueryServices
}
return nil
}
func (m *AppDescriptor) GetTx() *TxDescriptor {
if m != nil {
return m.Tx
}
return nil
}
// TxDescriptor describes the accepted transaction type
type TxDescriptor struct {
// fullname is the protobuf fullname of the raw transaction type (for instance the tx.Tx type)
// it is not meant to support polymorphism of transaction types, it is supposed to be used by
// reflection clients to understand if they can handle a specific transaction type in an application.
Fullname string `protobuf:"bytes,1,opt,name=fullname,proto3" json:"fullname,omitempty"`
// msgs lists the accepted application messages (sdk.Msg)
Msgs []*MsgDescriptor `protobuf:"bytes,2,rep,name=msgs,proto3" json:"msgs,omitempty"`
}
func (m *TxDescriptor) Reset() { *m = TxDescriptor{} }
func (m *TxDescriptor) String() string { return proto.CompactTextString(m) }
func (*TxDescriptor) ProtoMessage() {}
func (*TxDescriptor) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{1}
}
func (m *TxDescriptor) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *TxDescriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_TxDescriptor.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *TxDescriptor) XXX_Merge(src proto.Message) {
xxx_messageInfo_TxDescriptor.Merge(m, src)
}
func (m *TxDescriptor) XXX_Size() int {
return m.Size()
}
func (m *TxDescriptor) XXX_DiscardUnknown() {
xxx_messageInfo_TxDescriptor.DiscardUnknown(m)
}
var xxx_messageInfo_TxDescriptor proto.InternalMessageInfo
func (m *TxDescriptor) GetFullname() string {
if m != nil {
return m.Fullname
}
return ""
}
func (m *TxDescriptor) GetMsgs() []*MsgDescriptor {
if m != nil {
return m.Msgs
}
return nil
}
// AuthnDescriptor provides information on how to sign transactions without relying
// on the online RPCs GetTxMetadata and CombineUnsignedTxAndSignatures
type AuthnDescriptor struct {
// sign_modes defines the supported signature algorithm
SignModes []*SigningModeDescriptor `protobuf:"bytes,1,rep,name=sign_modes,json=signModes,proto3" json:"sign_modes,omitempty"`
}
func (m *AuthnDescriptor) Reset() { *m = AuthnDescriptor{} }
func (m *AuthnDescriptor) String() string { return proto.CompactTextString(m) }
func (*AuthnDescriptor) ProtoMessage() {}
func (*AuthnDescriptor) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{2}
}
func (m *AuthnDescriptor) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *AuthnDescriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_AuthnDescriptor.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *AuthnDescriptor) XXX_Merge(src proto.Message) {
xxx_messageInfo_AuthnDescriptor.Merge(m, src)
}
func (m *AuthnDescriptor) XXX_Size() int {
return m.Size()
}
func (m *AuthnDescriptor) XXX_DiscardUnknown() {
xxx_messageInfo_AuthnDescriptor.DiscardUnknown(m)
}
var xxx_messageInfo_AuthnDescriptor proto.InternalMessageInfo
func (m *AuthnDescriptor) GetSignModes() []*SigningModeDescriptor {
if m != nil {
return m.SignModes
}
return nil
}
// SigningModeDescriptor provides information on a signing flow of the application
// NOTE(fdymylja): here we could go as far as providing an entire flow on how
// to sign a message given a SigningModeDescriptor, but it's better to think about
// this another time
type SigningModeDescriptor struct {
// name defines the unique name of the signing mode
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// number is the unique int32 identifier for the sign_mode enum
Number int32 `protobuf:"varint,2,opt,name=number,proto3" json:"number,omitempty"`
// authn_info_provider_method_fullname defines the fullname of the method to call to get
// the metadata required to authenticate using the provided sign_modes
AuthnInfoProviderMethodFullname string `protobuf:"bytes,3,opt,name=authn_info_provider_method_fullname,json=authnInfoProviderMethodFullname,proto3" json:"authn_info_provider_method_fullname,omitempty"`
}
func (m *SigningModeDescriptor) Reset() { *m = SigningModeDescriptor{} }
func (m *SigningModeDescriptor) String() string { return proto.CompactTextString(m) }
func (*SigningModeDescriptor) ProtoMessage() {}
func (*SigningModeDescriptor) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{3}
}
func (m *SigningModeDescriptor) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *SigningModeDescriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_SigningModeDescriptor.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *SigningModeDescriptor) XXX_Merge(src proto.Message) {
xxx_messageInfo_SigningModeDescriptor.Merge(m, src)
}
func (m *SigningModeDescriptor) XXX_Size() int {
return m.Size()
}
func (m *SigningModeDescriptor) XXX_DiscardUnknown() {
xxx_messageInfo_SigningModeDescriptor.DiscardUnknown(m)
}
var xxx_messageInfo_SigningModeDescriptor proto.InternalMessageInfo
func (m *SigningModeDescriptor) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *SigningModeDescriptor) GetNumber() int32 {
if m != nil {
return m.Number
}
return 0
}
func (m *SigningModeDescriptor) GetAuthnInfoProviderMethodFullname() string {
if m != nil {
return m.AuthnInfoProviderMethodFullname
}
return ""
}
// ChainDescriptor describes chain information of the application
type ChainDescriptor struct {
// id is the chain id
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
}
func (m *ChainDescriptor) Reset() { *m = ChainDescriptor{} }
func (m *ChainDescriptor) String() string { return proto.CompactTextString(m) }
func (*ChainDescriptor) ProtoMessage() {}
func (*ChainDescriptor) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{4}
}
func (m *ChainDescriptor) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *ChainDescriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_ChainDescriptor.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *ChainDescriptor) XXX_Merge(src proto.Message) {
xxx_messageInfo_ChainDescriptor.Merge(m, src)
}
func (m *ChainDescriptor) XXX_Size() int {
return m.Size()
}
func (m *ChainDescriptor) XXX_DiscardUnknown() {
xxx_messageInfo_ChainDescriptor.DiscardUnknown(m)
}
var xxx_messageInfo_ChainDescriptor proto.InternalMessageInfo
func (m *ChainDescriptor) GetId() string {
if m != nil {
return m.Id
}
return ""
}
// CodecDescriptor describes the registered interfaces and provides metadata information on the types
type CodecDescriptor struct {
// interfaces is a list of the registerted interfaces descriptors
Interfaces []*InterfaceDescriptor `protobuf:"bytes,1,rep,name=interfaces,proto3" json:"interfaces,omitempty"`
}
func (m *CodecDescriptor) Reset() { *m = CodecDescriptor{} }
func (m *CodecDescriptor) String() string { return proto.CompactTextString(m) }
func (*CodecDescriptor) ProtoMessage() {}
func (*CodecDescriptor) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{5}
}
func (m *CodecDescriptor) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *CodecDescriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_CodecDescriptor.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *CodecDescriptor) XXX_Merge(src proto.Message) {
xxx_messageInfo_CodecDescriptor.Merge(m, src)
}
func (m *CodecDescriptor) XXX_Size() int {
return m.Size()
}
func (m *CodecDescriptor) XXX_DiscardUnknown() {
xxx_messageInfo_CodecDescriptor.DiscardUnknown(m)
}
var xxx_messageInfo_CodecDescriptor proto.InternalMessageInfo
func (m *CodecDescriptor) GetInterfaces() []*InterfaceDescriptor {
if m != nil {
return m.Interfaces
}
return nil
}
// InterfaceDescriptor describes the implementation of an interface
type InterfaceDescriptor struct {
// fullname is the name of the interface
Fullname string `protobuf:"bytes,1,opt,name=fullname,proto3" json:"fullname,omitempty"`
// interface_accepting_messages contains information regarding the proto messages which contain the interface as
// google.protobuf.Any field
InterfaceAcceptingMessages []*InterfaceAcceptingMessageDescriptor `protobuf:"bytes,2,rep,name=interface_accepting_messages,json=interfaceAcceptingMessages,proto3" json:"interface_accepting_messages,omitempty"`
// interface_implementers is a list of the descriptors of the interface implementers
InterfaceImplementers []*InterfaceImplementerDescriptor `protobuf:"bytes,3,rep,name=interface_implementers,json=interfaceImplementers,proto3" json:"interface_implementers,omitempty"`
}
func (m *InterfaceDescriptor) Reset() { *m = InterfaceDescriptor{} }
func (m *InterfaceDescriptor) String() string { return proto.CompactTextString(m) }
func (*InterfaceDescriptor) ProtoMessage() {}
func (*InterfaceDescriptor) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{6}
}
func (m *InterfaceDescriptor) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *InterfaceDescriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_InterfaceDescriptor.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *InterfaceDescriptor) XXX_Merge(src proto.Message) {
xxx_messageInfo_InterfaceDescriptor.Merge(m, src)
}
func (m *InterfaceDescriptor) XXX_Size() int {
return m.Size()
}
func (m *InterfaceDescriptor) XXX_DiscardUnknown() {
xxx_messageInfo_InterfaceDescriptor.DiscardUnknown(m)
}
var xxx_messageInfo_InterfaceDescriptor proto.InternalMessageInfo
func (m *InterfaceDescriptor) GetFullname() string {
if m != nil {
return m.Fullname
}
return ""
}
func (m *InterfaceDescriptor) GetInterfaceAcceptingMessages() []*InterfaceAcceptingMessageDescriptor {
if m != nil {
return m.InterfaceAcceptingMessages
}
return nil
}
func (m *InterfaceDescriptor) GetInterfaceImplementers() []*InterfaceImplementerDescriptor {
if m != nil {
return m.InterfaceImplementers
}
return nil
}
// InterfaceImplementerDescriptor describes an interface implementer
type InterfaceImplementerDescriptor struct {
// fullname is the protobuf queryable name of the interface implementer
Fullname string `protobuf:"bytes,1,opt,name=fullname,proto3" json:"fullname,omitempty"`
// type_url defines the type URL used when marshalling the type as any
// this is required so we can provide type safe google.protobuf.Any marshalling and
// unmarshalling, making sure that we don't accept just 'any' type
// in our interface fields
TypeUrl string `protobuf:"bytes,2,opt,name=type_url,json=typeUrl,proto3" json:"type_url,omitempty"`
}
func (m *InterfaceImplementerDescriptor) Reset() { *m = InterfaceImplementerDescriptor{} }
func (m *InterfaceImplementerDescriptor) String() string { return proto.CompactTextString(m) }
func (*InterfaceImplementerDescriptor) ProtoMessage() {}
func (*InterfaceImplementerDescriptor) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{7}
}
func (m *InterfaceImplementerDescriptor) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *InterfaceImplementerDescriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_InterfaceImplementerDescriptor.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *InterfaceImplementerDescriptor) XXX_Merge(src proto.Message) {
xxx_messageInfo_InterfaceImplementerDescriptor.Merge(m, src)
}
func (m *InterfaceImplementerDescriptor) XXX_Size() int {
return m.Size()
}
func (m *InterfaceImplementerDescriptor) XXX_DiscardUnknown() {
xxx_messageInfo_InterfaceImplementerDescriptor.DiscardUnknown(m)
}
var xxx_messageInfo_InterfaceImplementerDescriptor proto.InternalMessageInfo
func (m *InterfaceImplementerDescriptor) GetFullname() string {
if m != nil {
return m.Fullname
}
return ""
}
func (m *InterfaceImplementerDescriptor) GetTypeUrl() string {
if m != nil {
return m.TypeUrl
}
return ""
}
// InterfaceAcceptingMessageDescriptor describes a protobuf message which contains
// an interface represented as a google.protobuf.Any
type InterfaceAcceptingMessageDescriptor struct {
// fullname is the protobuf fullname of the type containing the interface
Fullname string `protobuf:"bytes,1,opt,name=fullname,proto3" json:"fullname,omitempty"`
// field_descriptor_names is a list of the protobuf name (not fullname) of the field
// which contains the interface as google.protobuf.Any (the interface is the same, but
// it can be in multiple fields of the same proto message)
FieldDescriptorNames []string `protobuf:"bytes,2,rep,name=field_descriptor_names,json=fieldDescriptorNames,proto3" json:"field_descriptor_names,omitempty"`
}
func (m *InterfaceAcceptingMessageDescriptor) Reset() { *m = InterfaceAcceptingMessageDescriptor{} }
func (m *InterfaceAcceptingMessageDescriptor) String() string { return proto.CompactTextString(m) }
func (*InterfaceAcceptingMessageDescriptor) ProtoMessage() {}
func (*InterfaceAcceptingMessageDescriptor) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{8}
}
func (m *InterfaceAcceptingMessageDescriptor) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *InterfaceAcceptingMessageDescriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_InterfaceAcceptingMessageDescriptor.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *InterfaceAcceptingMessageDescriptor) XXX_Merge(src proto.Message) {
xxx_messageInfo_InterfaceAcceptingMessageDescriptor.Merge(m, src)
}
func (m *InterfaceAcceptingMessageDescriptor) XXX_Size() int {
return m.Size()
}
func (m *InterfaceAcceptingMessageDescriptor) XXX_DiscardUnknown() {
xxx_messageInfo_InterfaceAcceptingMessageDescriptor.DiscardUnknown(m)
}
var xxx_messageInfo_InterfaceAcceptingMessageDescriptor proto.InternalMessageInfo
func (m *InterfaceAcceptingMessageDescriptor) GetFullname() string {
if m != nil {
return m.Fullname
}
return ""
}
func (m *InterfaceAcceptingMessageDescriptor) GetFieldDescriptorNames() []string {
if m != nil {
return m.FieldDescriptorNames
}
return nil
}
// ConfigurationDescriptor contains metadata information on the sdk.Config
type ConfigurationDescriptor struct {
// bech32_account_address_prefix is the account address prefix
Bech32AccountAddressPrefix string `protobuf:"bytes,1,opt,name=bech32_account_address_prefix,json=bech32AccountAddressPrefix,proto3" json:"bech32_account_address_prefix,omitempty"`
}
func (m *ConfigurationDescriptor) Reset() { *m = ConfigurationDescriptor{} }
func (m *ConfigurationDescriptor) String() string { return proto.CompactTextString(m) }
func (*ConfigurationDescriptor) ProtoMessage() {}
func (*ConfigurationDescriptor) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{9}
}
func (m *ConfigurationDescriptor) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *ConfigurationDescriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_ConfigurationDescriptor.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *ConfigurationDescriptor) XXX_Merge(src proto.Message) {
xxx_messageInfo_ConfigurationDescriptor.Merge(m, src)
}
func (m *ConfigurationDescriptor) XXX_Size() int {
return m.Size()
}
func (m *ConfigurationDescriptor) XXX_DiscardUnknown() {
xxx_messageInfo_ConfigurationDescriptor.DiscardUnknown(m)
}
var xxx_messageInfo_ConfigurationDescriptor proto.InternalMessageInfo
func (m *ConfigurationDescriptor) GetBech32AccountAddressPrefix() string {
if m != nil {
return m.Bech32AccountAddressPrefix
}
return ""
}
// MsgDescriptor describes a cosmos-sdk message that can be delivered with a transaction
type MsgDescriptor struct {
// msg_type_url contains the TypeURL of a sdk.Msg.
MsgTypeUrl string `protobuf:"bytes,1,opt,name=msg_type_url,json=msgTypeUrl,proto3" json:"msg_type_url,omitempty"`
}
func (m *MsgDescriptor) Reset() { *m = MsgDescriptor{} }
func (m *MsgDescriptor) String() string { return proto.CompactTextString(m) }
func (*MsgDescriptor) ProtoMessage() {}
func (*MsgDescriptor) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{10}
}
func (m *MsgDescriptor) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgDescriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgDescriptor.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *MsgDescriptor) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgDescriptor.Merge(m, src)
}
func (m *MsgDescriptor) XXX_Size() int {
return m.Size()
}
func (m *MsgDescriptor) XXX_DiscardUnknown() {
xxx_messageInfo_MsgDescriptor.DiscardUnknown(m)
}
var xxx_messageInfo_MsgDescriptor proto.InternalMessageInfo
func (m *MsgDescriptor) GetMsgTypeUrl() string {
if m != nil {
return m.MsgTypeUrl
}
return ""
}
// GetAuthnDescriptorRequest is the request used for the GetAuthnDescriptor RPC
type GetAuthnDescriptorRequest struct {
}
func (m *GetAuthnDescriptorRequest) Reset() { *m = GetAuthnDescriptorRequest{} }
func (m *GetAuthnDescriptorRequest) String() string { return proto.CompactTextString(m) }
func (*GetAuthnDescriptorRequest) ProtoMessage() {}
func (*GetAuthnDescriptorRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{11}
}
func (m *GetAuthnDescriptorRequest) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *GetAuthnDescriptorRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_GetAuthnDescriptorRequest.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *GetAuthnDescriptorRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetAuthnDescriptorRequest.Merge(m, src)
}
func (m *GetAuthnDescriptorRequest) XXX_Size() int {
return m.Size()
}
func (m *GetAuthnDescriptorRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetAuthnDescriptorRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetAuthnDescriptorRequest proto.InternalMessageInfo
// GetAuthnDescriptorResponse is the response returned by the GetAuthnDescriptor RPC
type GetAuthnDescriptorResponse struct {
// authn describes how to authenticate to the application when sending transactions
Authn *AuthnDescriptor `protobuf:"bytes,1,opt,name=authn,proto3" json:"authn,omitempty"`
}
func (m *GetAuthnDescriptorResponse) Reset() { *m = GetAuthnDescriptorResponse{} }
func (m *GetAuthnDescriptorResponse) String() string { return proto.CompactTextString(m) }
func (*GetAuthnDescriptorResponse) ProtoMessage() {}
func (*GetAuthnDescriptorResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{12}
}
func (m *GetAuthnDescriptorResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *GetAuthnDescriptorResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_GetAuthnDescriptorResponse.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *GetAuthnDescriptorResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetAuthnDescriptorResponse.Merge(m, src)
}
func (m *GetAuthnDescriptorResponse) XXX_Size() int {
return m.Size()
}
func (m *GetAuthnDescriptorResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetAuthnDescriptorResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetAuthnDescriptorResponse proto.InternalMessageInfo
func (m *GetAuthnDescriptorResponse) GetAuthn() *AuthnDescriptor {
if m != nil {
return m.Authn
}
return nil
}
// GetChainDescriptorRequest is the request used for the GetChainDescriptor RPC
type GetChainDescriptorRequest struct {
}
func (m *GetChainDescriptorRequest) Reset() { *m = GetChainDescriptorRequest{} }
func (m *GetChainDescriptorRequest) String() string { return proto.CompactTextString(m) }
func (*GetChainDescriptorRequest) ProtoMessage() {}
func (*GetChainDescriptorRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{13}
}
func (m *GetChainDescriptorRequest) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *GetChainDescriptorRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_GetChainDescriptorRequest.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *GetChainDescriptorRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetChainDescriptorRequest.Merge(m, src)
}
func (m *GetChainDescriptorRequest) XXX_Size() int {
return m.Size()
}
func (m *GetChainDescriptorRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetChainDescriptorRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetChainDescriptorRequest proto.InternalMessageInfo
// GetChainDescriptorResponse is the response returned by the GetChainDescriptor RPC
type GetChainDescriptorResponse struct {
// chain describes application chain information
Chain *ChainDescriptor `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
}
func (m *GetChainDescriptorResponse) Reset() { *m = GetChainDescriptorResponse{} }
func (m *GetChainDescriptorResponse) String() string { return proto.CompactTextString(m) }
func (*GetChainDescriptorResponse) ProtoMessage() {}
func (*GetChainDescriptorResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{14}
}
func (m *GetChainDescriptorResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *GetChainDescriptorResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_GetChainDescriptorResponse.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *GetChainDescriptorResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetChainDescriptorResponse.Merge(m, src)
}
func (m *GetChainDescriptorResponse) XXX_Size() int {
return m.Size()
}
func (m *GetChainDescriptorResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetChainDescriptorResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetChainDescriptorResponse proto.InternalMessageInfo
func (m *GetChainDescriptorResponse) GetChain() *ChainDescriptor {
if m != nil {
return m.Chain
}
return nil
}
// GetCodecDescriptorRequest is the request used for the GetCodecDescriptor RPC
type GetCodecDescriptorRequest struct {
}
func (m *GetCodecDescriptorRequest) Reset() { *m = GetCodecDescriptorRequest{} }
func (m *GetCodecDescriptorRequest) String() string { return proto.CompactTextString(m) }
func (*GetCodecDescriptorRequest) ProtoMessage() {}
func (*GetCodecDescriptorRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{15}
}
func (m *GetCodecDescriptorRequest) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *GetCodecDescriptorRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_GetCodecDescriptorRequest.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *GetCodecDescriptorRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetCodecDescriptorRequest.Merge(m, src)
}
func (m *GetCodecDescriptorRequest) XXX_Size() int {
return m.Size()
}
func (m *GetCodecDescriptorRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetCodecDescriptorRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetCodecDescriptorRequest proto.InternalMessageInfo
// GetCodecDescriptorResponse is the response returned by the GetCodecDescriptor RPC
type GetCodecDescriptorResponse struct {
// codec describes the application codec such as registered interfaces and implementations
Codec *CodecDescriptor `protobuf:"bytes,1,opt,name=codec,proto3" json:"codec,omitempty"`
}
func (m *GetCodecDescriptorResponse) Reset() { *m = GetCodecDescriptorResponse{} }
func (m *GetCodecDescriptorResponse) String() string { return proto.CompactTextString(m) }
func (*GetCodecDescriptorResponse) ProtoMessage() {}
func (*GetCodecDescriptorResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{16}
}
func (m *GetCodecDescriptorResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *GetCodecDescriptorResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_GetCodecDescriptorResponse.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *GetCodecDescriptorResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetCodecDescriptorResponse.Merge(m, src)
}
func (m *GetCodecDescriptorResponse) XXX_Size() int {
return m.Size()
}
func (m *GetCodecDescriptorResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetCodecDescriptorResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetCodecDescriptorResponse proto.InternalMessageInfo
func (m *GetCodecDescriptorResponse) GetCodec() *CodecDescriptor {
if m != nil {
return m.Codec
}
return nil
}
// GetConfigurationDescriptorRequest is the request used for the GetConfigurationDescriptor RPC
type GetConfigurationDescriptorRequest struct {
}
func (m *GetConfigurationDescriptorRequest) Reset() { *m = GetConfigurationDescriptorRequest{} }
func (m *GetConfigurationDescriptorRequest) String() string { return proto.CompactTextString(m) }
func (*GetConfigurationDescriptorRequest) ProtoMessage() {}
func (*GetConfigurationDescriptorRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{17}
}
func (m *GetConfigurationDescriptorRequest) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *GetConfigurationDescriptorRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_GetConfigurationDescriptorRequest.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *GetConfigurationDescriptorRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetConfigurationDescriptorRequest.Merge(m, src)
}
func (m *GetConfigurationDescriptorRequest) XXX_Size() int {
return m.Size()
}
func (m *GetConfigurationDescriptorRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetConfigurationDescriptorRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetConfigurationDescriptorRequest proto.InternalMessageInfo
// GetConfigurationDescriptorResponse is the response returned by the GetConfigurationDescriptor RPC
type GetConfigurationDescriptorResponse struct {
// config describes the application's sdk.Config
Config *ConfigurationDescriptor `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
}
func (m *GetConfigurationDescriptorResponse) Reset() { *m = GetConfigurationDescriptorResponse{} }
func (m *GetConfigurationDescriptorResponse) String() string { return proto.CompactTextString(m) }
func (*GetConfigurationDescriptorResponse) ProtoMessage() {}
func (*GetConfigurationDescriptorResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{18}
}
func (m *GetConfigurationDescriptorResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *GetConfigurationDescriptorResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_GetConfigurationDescriptorResponse.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *GetConfigurationDescriptorResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetConfigurationDescriptorResponse.Merge(m, src)
}
func (m *GetConfigurationDescriptorResponse) XXX_Size() int {
return m.Size()
}
func (m *GetConfigurationDescriptorResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetConfigurationDescriptorResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetConfigurationDescriptorResponse proto.InternalMessageInfo
func (m *GetConfigurationDescriptorResponse) GetConfig() *ConfigurationDescriptor {
if m != nil {
return m.Config
}
return nil
}
// GetQueryServicesDescriptorRequest is the request used for the GetQueryServicesDescriptor RPC
type GetQueryServicesDescriptorRequest struct {
}
func (m *GetQueryServicesDescriptorRequest) Reset() { *m = GetQueryServicesDescriptorRequest{} }
func (m *GetQueryServicesDescriptorRequest) String() string { return proto.CompactTextString(m) }
func (*GetQueryServicesDescriptorRequest) ProtoMessage() {}
func (*GetQueryServicesDescriptorRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_15c91f0b8d6bf3d0, []int{19}