-
Notifications
You must be signed in to change notification settings - Fork 4
/
tx.pb.go
5883 lines (5684 loc) · 154 KB
/
tx.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: nova/icacontrol/v1/tx.proto
package types
import (
context "context"
fmt "fmt"
types "github.com/cosmos/cosmos-sdk/types"
authz "github.com/cosmos/cosmos-sdk/x/authz"
_ "github.com/cosmos/gogoproto/gogoproto"
grpc1 "github.com/gogo/protobuf/grpc"
proto "github.com/gogo/protobuf/proto"
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
// MsgRegisterZone is the message you use to register a new zone.
type MsgRegisterZone struct {
ZoneId string `protobuf:"bytes,1,opt,name=zone_id,json=zoneId,proto3" json:"zone_id,omitempty"`
IcaInfo *IcaConnectionInfo `protobuf:"bytes,2,opt,name=ica_info,json=icaInfo,proto3" json:"ica_info,omitempty"`
IcaAccount *IcaAccount `protobuf:"bytes,3,opt,name=ica_account,json=icaAccount,proto3" json:"ica_account,omitempty"`
TransferInfo *TransferConnectionInfo `protobuf:"bytes,4,opt,name=transfer_info,json=transferInfo,proto3" json:"transfer_info,omitempty"`
ValidatorAddress string `protobuf:"bytes,5,opt,name=validator_address,json=validatorAddress,proto3" json:"validator_address,omitempty"`
BaseDenom string `protobuf:"bytes,6,opt,name=base_denom,json=baseDenom,proto3" json:"base_denom,omitempty"`
Decimal int64 `protobuf:"varint,7,opt,name=decimal,proto3" json:"decimal,omitempty"`
UndelegateMaxEntries int64 `protobuf:"varint,8,opt,name=undelegate_max_entries,json=undelegateMaxEntries,proto3" json:"undelegate_max_entries,omitempty"`
DepositMaxEntries int64 `protobuf:"varint,9,opt,name=deposit_max_entries,json=depositMaxEntries,proto3" json:"deposit_max_entries,omitempty"`
}
func (m *MsgRegisterZone) Reset() { *m = MsgRegisterZone{} }
func (m *MsgRegisterZone) String() string { return proto.CompactTextString(m) }
func (*MsgRegisterZone) ProtoMessage() {}
func (*MsgRegisterZone) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{0}
}
func (m *MsgRegisterZone) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgRegisterZone) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgRegisterZone.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 *MsgRegisterZone) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgRegisterZone.Merge(m, src)
}
func (m *MsgRegisterZone) XXX_Size() int {
return m.Size()
}
func (m *MsgRegisterZone) XXX_DiscardUnknown() {
xxx_messageInfo_MsgRegisterZone.DiscardUnknown(m)
}
var xxx_messageInfo_MsgRegisterZone proto.InternalMessageInfo
// MsgRegisterZoneResponse is a response message for MsgRegisterZone
type MsgRegisterZoneResponse struct {
ZoneId string `protobuf:"bytes,1,opt,name=zone_id,json=zoneId,proto3" json:"zone_id,omitempty"`
IcaInfo *IcaConnectionInfo `protobuf:"bytes,2,opt,name=ica_info,json=icaInfo,proto3" json:"ica_info,omitempty"`
IcaAccount *IcaAccount `protobuf:"bytes,3,opt,name=ica_account,json=icaAccount,proto3" json:"ica_account,omitempty"`
TransferInfo *TransferConnectionInfo `protobuf:"bytes,4,opt,name=transfer_info,json=transferInfo,proto3" json:"transfer_info,omitempty"`
ValidatorAddress string `protobuf:"bytes,5,opt,name=validator_address,json=validatorAddress,proto3" json:"validator_address,omitempty"`
BaseDenom string `protobuf:"bytes,6,opt,name=base_denom,json=baseDenom,proto3" json:"base_denom,omitempty"`
SnDenom string `protobuf:"bytes,7,opt,name=sn_denom,json=snDenom,proto3" json:"sn_denom,omitempty"`
Decimal int64 `protobuf:"varint,8,opt,name=decimal,proto3" json:"decimal,omitempty"`
UndelegateMaxEntries int64 `protobuf:"varint,9,opt,name=undelegate_max_entries,json=undelegateMaxEntries,proto3" json:"undelegate_max_entries,omitempty"`
DepositMaxEntries int64 `protobuf:"varint,10,opt,name=deposit_max_entries,json=depositMaxEntries,proto3" json:"deposit_max_entries,omitempty"`
}
func (m *MsgRegisterZoneResponse) Reset() { *m = MsgRegisterZoneResponse{} }
func (m *MsgRegisterZoneResponse) String() string { return proto.CompactTextString(m) }
func (*MsgRegisterZoneResponse) ProtoMessage() {}
func (*MsgRegisterZoneResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{1}
}
func (m *MsgRegisterZoneResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgRegisterZoneResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgRegisterZoneResponse.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 *MsgRegisterZoneResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgRegisterZoneResponse.Merge(m, src)
}
func (m *MsgRegisterZoneResponse) XXX_Size() int {
return m.Size()
}
func (m *MsgRegisterZoneResponse) XXX_DiscardUnknown() {
xxx_messageInfo_MsgRegisterZoneResponse.DiscardUnknown(m)
}
var xxx_messageInfo_MsgRegisterZoneResponse proto.InternalMessageInfo
// MsgChangeRegisteredZoneInfo modifies the information in the registeredZone.
type MsgChangeRegisteredZone struct {
ZoneId string `protobuf:"bytes,1,opt,name=zone_id,json=zoneId,proto3" json:"zone_id,omitempty"`
IcaInfo *IcaConnectionInfo `protobuf:"bytes,2,opt,name=ica_info,json=icaInfo,proto3" json:"ica_info,omitempty"`
IcaAccount *IcaAccount `protobuf:"bytes,3,opt,name=ica_account,json=icaAccount,proto3" json:"ica_account,omitempty"`
TransferInfo *TransferConnectionInfo `protobuf:"bytes,4,opt,name=transfer_info,json=transferInfo,proto3" json:"transfer_info,omitempty"`
ValidatorAddress string `protobuf:"bytes,5,opt,name=validator_address,json=validatorAddress,proto3" json:"validator_address,omitempty"`
BaseDenom string `protobuf:"bytes,6,opt,name=base_denom,json=baseDenom,proto3" json:"base_denom,omitempty"`
Decimal int64 `protobuf:"varint,7,opt,name=decimal,proto3" json:"decimal,omitempty"`
UndelegateMaxEntries int64 `protobuf:"varint,8,opt,name=undelegate_max_entries,json=undelegateMaxEntries,proto3" json:"undelegate_max_entries,omitempty"`
DepositMaxEntries int64 `protobuf:"varint,9,opt,name=deposit_max_entries,json=depositMaxEntries,proto3" json:"deposit_max_entries,omitempty"`
}
func (m *MsgChangeRegisteredZone) Reset() { *m = MsgChangeRegisteredZone{} }
func (m *MsgChangeRegisteredZone) String() string { return proto.CompactTextString(m) }
func (*MsgChangeRegisteredZone) ProtoMessage() {}
func (*MsgChangeRegisteredZone) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{2}
}
func (m *MsgChangeRegisteredZone) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgChangeRegisteredZone) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgChangeRegisteredZone.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 *MsgChangeRegisteredZone) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgChangeRegisteredZone.Merge(m, src)
}
func (m *MsgChangeRegisteredZone) XXX_Size() int {
return m.Size()
}
func (m *MsgChangeRegisteredZone) XXX_DiscardUnknown() {
xxx_messageInfo_MsgChangeRegisteredZone.DiscardUnknown(m)
}
var xxx_messageInfo_MsgChangeRegisteredZone proto.InternalMessageInfo
// MsgChangeRegisteredZoneInfoResponse is a response message for MsgChangeRegisteredZone.
type MsgChangeRegisteredZoneResponse struct {
ZoneId string `protobuf:"bytes,1,opt,name=zone_id,json=zoneId,proto3" json:"zone_id,omitempty"`
IcaInfo *IcaConnectionInfo `protobuf:"bytes,2,opt,name=ica_info,json=icaInfo,proto3" json:"ica_info,omitempty"`
IcaAccount *IcaAccount `protobuf:"bytes,3,opt,name=ica_account,json=icaAccount,proto3" json:"ica_account,omitempty"`
TransferInfo *TransferConnectionInfo `protobuf:"bytes,4,opt,name=transfer_info,json=transferInfo,proto3" json:"transfer_info,omitempty"`
ValidatorAddress string `protobuf:"bytes,5,opt,name=validator_address,json=validatorAddress,proto3" json:"validator_address,omitempty"`
BaseDenom string `protobuf:"bytes,6,opt,name=base_denom,json=baseDenom,proto3" json:"base_denom,omitempty"`
SnDenom string `protobuf:"bytes,7,opt,name=sn_denom,json=snDenom,proto3" json:"sn_denom,omitempty"`
Decimal int64 `protobuf:"varint,8,opt,name=decimal,proto3" json:"decimal,omitempty"`
UndelegateMaxEntries int64 `protobuf:"varint,9,opt,name=undelegate_max_entries,json=undelegateMaxEntries,proto3" json:"undelegate_max_entries,omitempty"`
DepositMaxEntries int64 `protobuf:"varint,10,opt,name=deposit_max_entries,json=depositMaxEntries,proto3" json:"deposit_max_entries,omitempty"`
}
func (m *MsgChangeRegisteredZoneResponse) Reset() { *m = MsgChangeRegisteredZoneResponse{} }
func (m *MsgChangeRegisteredZoneResponse) String() string { return proto.CompactTextString(m) }
func (*MsgChangeRegisteredZoneResponse) ProtoMessage() {}
func (*MsgChangeRegisteredZoneResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{3}
}
func (m *MsgChangeRegisteredZoneResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgChangeRegisteredZoneResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgChangeRegisteredZoneResponse.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 *MsgChangeRegisteredZoneResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgChangeRegisteredZoneResponse.Merge(m, src)
}
func (m *MsgChangeRegisteredZoneResponse) XXX_Size() int {
return m.Size()
}
func (m *MsgChangeRegisteredZoneResponse) XXX_DiscardUnknown() {
xxx_messageInfo_MsgChangeRegisteredZoneResponse.DiscardUnknown(m)
}
var xxx_messageInfo_MsgChangeRegisteredZoneResponse proto.InternalMessageInfo
// MsgDeleteRegisteredZone deletes registered Zone information.
type MsgDeleteRegisteredZone struct {
ZoneId string `protobuf:"bytes,1,opt,name=zone_id,json=zoneId,proto3" json:"zone_id,omitempty"`
ControllerAddress string `protobuf:"bytes,2,opt,name=controller_address,json=controllerAddress,proto3" json:"controller_address,omitempty"`
}
func (m *MsgDeleteRegisteredZone) Reset() { *m = MsgDeleteRegisteredZone{} }
func (m *MsgDeleteRegisteredZone) String() string { return proto.CompactTextString(m) }
func (*MsgDeleteRegisteredZone) ProtoMessage() {}
func (*MsgDeleteRegisteredZone) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{4}
}
func (m *MsgDeleteRegisteredZone) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgDeleteRegisteredZone) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgDeleteRegisteredZone.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 *MsgDeleteRegisteredZone) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgDeleteRegisteredZone.Merge(m, src)
}
func (m *MsgDeleteRegisteredZone) XXX_Size() int {
return m.Size()
}
func (m *MsgDeleteRegisteredZone) XXX_DiscardUnknown() {
xxx_messageInfo_MsgDeleteRegisteredZone.DiscardUnknown(m)
}
var xxx_messageInfo_MsgDeleteRegisteredZone proto.InternalMessageInfo
// MsgDeleteRegisteredZoneResponse is a response message for MsgDeleteRegisteredZone.
type MsgDeleteRegisteredZoneResponse struct {
}
func (m *MsgDeleteRegisteredZoneResponse) Reset() { *m = MsgDeleteRegisteredZoneResponse{} }
func (m *MsgDeleteRegisteredZoneResponse) String() string { return proto.CompactTextString(m) }
func (*MsgDeleteRegisteredZoneResponse) ProtoMessage() {}
func (*MsgDeleteRegisteredZoneResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{5}
}
func (m *MsgDeleteRegisteredZoneResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgDeleteRegisteredZoneResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgDeleteRegisteredZoneResponse.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 *MsgDeleteRegisteredZoneResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgDeleteRegisteredZoneResponse.Merge(m, src)
}
func (m *MsgDeleteRegisteredZoneResponse) XXX_Size() int {
return m.Size()
}
func (m *MsgDeleteRegisteredZoneResponse) XXX_DiscardUnknown() {
xxx_messageInfo_MsgDeleteRegisteredZoneResponse.DiscardUnknown(m)
}
var xxx_messageInfo_MsgDeleteRegisteredZoneResponse proto.InternalMessageInfo
// MsgIcaDelegate is a message used for remote delegation using ICA.
type MsgIcaDelegate struct {
ZoneId string `protobuf:"bytes,1,opt,name=zone_id,json=zoneId,proto3" json:"zone_id,omitempty"`
ControllerAddress string `protobuf:"bytes,2,opt,name=controller_address,json=controllerAddress,proto3" json:"controller_address,omitempty"`
Amount types.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"`
}
func (m *MsgIcaDelegate) Reset() { *m = MsgIcaDelegate{} }
func (m *MsgIcaDelegate) String() string { return proto.CompactTextString(m) }
func (*MsgIcaDelegate) ProtoMessage() {}
func (*MsgIcaDelegate) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{6}
}
func (m *MsgIcaDelegate) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgIcaDelegate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgIcaDelegate.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 *MsgIcaDelegate) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgIcaDelegate.Merge(m, src)
}
func (m *MsgIcaDelegate) XXX_Size() int {
return m.Size()
}
func (m *MsgIcaDelegate) XXX_DiscardUnknown() {
xxx_messageInfo_MsgIcaDelegate.DiscardUnknown(m)
}
var xxx_messageInfo_MsgIcaDelegate proto.InternalMessageInfo
// MsgIcaDelegateResponse is a response message for MsgIcaDelegate.
type MsgIcaDelegateResponse struct {
}
func (m *MsgIcaDelegateResponse) Reset() { *m = MsgIcaDelegateResponse{} }
func (m *MsgIcaDelegateResponse) String() string { return proto.CompactTextString(m) }
func (*MsgIcaDelegateResponse) ProtoMessage() {}
func (*MsgIcaDelegateResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{7}
}
func (m *MsgIcaDelegateResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgIcaDelegateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgIcaDelegateResponse.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 *MsgIcaDelegateResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgIcaDelegateResponse.Merge(m, src)
}
func (m *MsgIcaDelegateResponse) XXX_Size() int {
return m.Size()
}
func (m *MsgIcaDelegateResponse) XXX_DiscardUnknown() {
xxx_messageInfo_MsgIcaDelegateResponse.DiscardUnknown(m)
}
var xxx_messageInfo_MsgIcaDelegateResponse proto.InternalMessageInfo
// MsgIcaUndelegate is a message used to de-delegate remote using ICA.
type MsgIcaUndelegate struct {
ZoneId string `protobuf:"bytes,1,opt,name=zone_id,json=zoneId,proto3" json:"zone_id,omitempty"`
ControllerAddress string `protobuf:"bytes,2,opt,name=controller_address,json=controllerAddress,proto3" json:"controller_address,omitempty"`
Amount types.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"`
}
func (m *MsgIcaUndelegate) Reset() { *m = MsgIcaUndelegate{} }
func (m *MsgIcaUndelegate) String() string { return proto.CompactTextString(m) }
func (*MsgIcaUndelegate) ProtoMessage() {}
func (*MsgIcaUndelegate) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{8}
}
func (m *MsgIcaUndelegate) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgIcaUndelegate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgIcaUndelegate.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 *MsgIcaUndelegate) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgIcaUndelegate.Merge(m, src)
}
func (m *MsgIcaUndelegate) XXX_Size() int {
return m.Size()
}
func (m *MsgIcaUndelegate) XXX_DiscardUnknown() {
xxx_messageInfo_MsgIcaUndelegate.DiscardUnknown(m)
}
var xxx_messageInfo_MsgIcaUndelegate proto.InternalMessageInfo
// MsgIcaUndelegateResponse is a response message for MsgIcaUndelegate.
type MsgIcaUndelegateResponse struct {
}
func (m *MsgIcaUndelegateResponse) Reset() { *m = MsgIcaUndelegateResponse{} }
func (m *MsgIcaUndelegateResponse) String() string { return proto.CompactTextString(m) }
func (*MsgIcaUndelegateResponse) ProtoMessage() {}
func (*MsgIcaUndelegateResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{9}
}
func (m *MsgIcaUndelegateResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgIcaUndelegateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgIcaUndelegateResponse.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 *MsgIcaUndelegateResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgIcaUndelegateResponse.Merge(m, src)
}
func (m *MsgIcaUndelegateResponse) XXX_Size() int {
return m.Size()
}
func (m *MsgIcaUndelegateResponse) XXX_DiscardUnknown() {
xxx_messageInfo_MsgIcaUndelegateResponse.DiscardUnknown(m)
}
var xxx_messageInfo_MsgIcaUndelegateResponse proto.InternalMessageInfo
// MsgIcaAutoStaking is a message for remote auto-compound using ICA.
type MsgIcaAutoStaking struct {
ZoneId string `protobuf:"bytes,1,opt,name=zone_id,json=zoneId,proto3" json:"zone_id,omitempty"`
ControllerAddress string `protobuf:"bytes,2,opt,name=controller_address,json=controllerAddress,proto3" json:"controller_address,omitempty"`
Amount types.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"`
Version uint64 `protobuf:"varint,4,opt,name=version,proto3" json:"version,omitempty"`
}
func (m *MsgIcaAutoStaking) Reset() { *m = MsgIcaAutoStaking{} }
func (m *MsgIcaAutoStaking) String() string { return proto.CompactTextString(m) }
func (*MsgIcaAutoStaking) ProtoMessage() {}
func (*MsgIcaAutoStaking) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{10}
}
func (m *MsgIcaAutoStaking) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgIcaAutoStaking) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgIcaAutoStaking.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 *MsgIcaAutoStaking) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgIcaAutoStaking.Merge(m, src)
}
func (m *MsgIcaAutoStaking) XXX_Size() int {
return m.Size()
}
func (m *MsgIcaAutoStaking) XXX_DiscardUnknown() {
xxx_messageInfo_MsgIcaAutoStaking.DiscardUnknown(m)
}
var xxx_messageInfo_MsgIcaAutoStaking proto.InternalMessageInfo
// MsgIcaAutoStakingResponse is a response message for MsgIcaAutoStaking.
type MsgIcaAutoStakingResponse struct {
}
func (m *MsgIcaAutoStakingResponse) Reset() { *m = MsgIcaAutoStakingResponse{} }
func (m *MsgIcaAutoStakingResponse) String() string { return proto.CompactTextString(m) }
func (*MsgIcaAutoStakingResponse) ProtoMessage() {}
func (*MsgIcaAutoStakingResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{11}
}
func (m *MsgIcaAutoStakingResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgIcaAutoStakingResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgIcaAutoStakingResponse.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 *MsgIcaAutoStakingResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgIcaAutoStakingResponse.Merge(m, src)
}
func (m *MsgIcaAutoStakingResponse) XXX_Size() int {
return m.Size()
}
func (m *MsgIcaAutoStakingResponse) XXX_DiscardUnknown() {
xxx_messageInfo_MsgIcaAutoStakingResponse.DiscardUnknown(m)
}
var xxx_messageInfo_MsgIcaAutoStakingResponse proto.InternalMessageInfo
// MsgIcaTransfer is a message for IBC transfer from the counterpart to the Supernova chain using ICA.
type MsgIcaTransfer struct {
ZoneId string `protobuf:"bytes,1,opt,name=zone_id,json=zoneId,proto3" json:"zone_id,omitempty"`
ControllerAddress string `protobuf:"bytes,2,opt,name=controller_address,json=controllerAddress,proto3" json:"controller_address,omitempty"`
ReceiverAddress string `protobuf:"bytes,3,opt,name=receiver_address,json=receiverAddress,proto3" json:"receiver_address,omitempty"`
IcaTransferPortId string `protobuf:"bytes,4,opt,name=ica_transfer_port_id,json=icaTransferPortId,proto3" json:"ica_transfer_port_id,omitempty"`
IcaTransferChannelId string `protobuf:"bytes,5,opt,name=ica_transfer_channel_id,json=icaTransferChannelId,proto3" json:"ica_transfer_channel_id,omitempty"`
Amount types.Coin `protobuf:"bytes,6,opt,name=amount,proto3" json:"amount"`
}
func (m *MsgIcaTransfer) Reset() { *m = MsgIcaTransfer{} }
func (m *MsgIcaTransfer) String() string { return proto.CompactTextString(m) }
func (*MsgIcaTransfer) ProtoMessage() {}
func (*MsgIcaTransfer) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{12}
}
func (m *MsgIcaTransfer) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgIcaTransfer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgIcaTransfer.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 *MsgIcaTransfer) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgIcaTransfer.Merge(m, src)
}
func (m *MsgIcaTransfer) XXX_Size() int {
return m.Size()
}
func (m *MsgIcaTransfer) XXX_DiscardUnknown() {
xxx_messageInfo_MsgIcaTransfer.DiscardUnknown(m)
}
var xxx_messageInfo_MsgIcaTransfer proto.InternalMessageInfo
// MsgIcaTransferResponse is a response message for MsgIcaTransfer.
type MsgIcaTransferResponse struct {
}
func (m *MsgIcaTransferResponse) Reset() { *m = MsgIcaTransferResponse{} }
func (m *MsgIcaTransferResponse) String() string { return proto.CompactTextString(m) }
func (*MsgIcaTransferResponse) ProtoMessage() {}
func (*MsgIcaTransferResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{13}
}
func (m *MsgIcaTransferResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgIcaTransferResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgIcaTransferResponse.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 *MsgIcaTransferResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgIcaTransferResponse.Merge(m, src)
}
func (m *MsgIcaTransferResponse) XXX_Size() int {
return m.Size()
}
func (m *MsgIcaTransferResponse) XXX_DiscardUnknown() {
xxx_messageInfo_MsgIcaTransferResponse.DiscardUnknown(m)
}
var xxx_messageInfo_MsgIcaTransferResponse proto.InternalMessageInfo
// MsgIcaAuthzGrant is a message used to transfer authority through authz between two accounts in the other chain using ICA.
type MsgIcaAuthzGrant struct {
ZoneId string `protobuf:"bytes,1,opt,name=zone_id,json=zoneId,proto3" json:"zone_id,omitempty"`
Grantee string `protobuf:"bytes,2,opt,name=grantee,proto3" json:"grantee,omitempty"`
ControllerAddress string `protobuf:"bytes,3,opt,name=controller_address,json=controllerAddress,proto3" json:"controller_address,omitempty"`
Grant authz.Grant `protobuf:"bytes,4,opt,name=grant,proto3" json:"grant"`
}
func (m *MsgIcaAuthzGrant) Reset() { *m = MsgIcaAuthzGrant{} }
func (m *MsgIcaAuthzGrant) String() string { return proto.CompactTextString(m) }
func (*MsgIcaAuthzGrant) ProtoMessage() {}
func (*MsgIcaAuthzGrant) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{14}
}
func (m *MsgIcaAuthzGrant) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgIcaAuthzGrant) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgIcaAuthzGrant.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 *MsgIcaAuthzGrant) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgIcaAuthzGrant.Merge(m, src)
}
func (m *MsgIcaAuthzGrant) XXX_Size() int {
return m.Size()
}
func (m *MsgIcaAuthzGrant) XXX_DiscardUnknown() {
xxx_messageInfo_MsgIcaAuthzGrant.DiscardUnknown(m)
}
var xxx_messageInfo_MsgIcaAuthzGrant proto.InternalMessageInfo
// MsgIcaAuthzGrantResponse is a response messasge for MsgIcaAuthzGrant.
type MsgIcaAuthzGrantResponse struct {
}
func (m *MsgIcaAuthzGrantResponse) Reset() { *m = MsgIcaAuthzGrantResponse{} }
func (m *MsgIcaAuthzGrantResponse) String() string { return proto.CompactTextString(m) }
func (*MsgIcaAuthzGrantResponse) ProtoMessage() {}
func (*MsgIcaAuthzGrantResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{15}
}
func (m *MsgIcaAuthzGrantResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgIcaAuthzGrantResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgIcaAuthzGrantResponse.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 *MsgIcaAuthzGrantResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgIcaAuthzGrantResponse.Merge(m, src)
}
func (m *MsgIcaAuthzGrantResponse) XXX_Size() int {
return m.Size()
}
func (m *MsgIcaAuthzGrantResponse) XXX_DiscardUnknown() {
xxx_messageInfo_MsgIcaAuthzGrantResponse.DiscardUnknown(m)
}
var xxx_messageInfo_MsgIcaAuthzGrantResponse proto.InternalMessageInfo
// MsgIcaAuthzRevoke is a message used for proxy execution between accounts linked to authz via ICA.
type MsgIcaAuthzRevoke struct {
ZoneId string `protobuf:"bytes,1,opt,name=zone_id,json=zoneId,proto3" json:"zone_id,omitempty"`
Grantee string `protobuf:"bytes,2,opt,name=grantee,proto3" json:"grantee,omitempty"`
ControllerAddress string `protobuf:"bytes,3,opt,name=controller_address,json=controllerAddress,proto3" json:"controller_address,omitempty"`
MsgTypeUrl string `protobuf:"bytes,4,opt,name=msg_type_url,json=msgTypeUrl,proto3" json:"msg_type_url,omitempty"`
}
func (m *MsgIcaAuthzRevoke) Reset() { *m = MsgIcaAuthzRevoke{} }
func (m *MsgIcaAuthzRevoke) String() string { return proto.CompactTextString(m) }
func (*MsgIcaAuthzRevoke) ProtoMessage() {}
func (*MsgIcaAuthzRevoke) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{16}
}
func (m *MsgIcaAuthzRevoke) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgIcaAuthzRevoke) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgIcaAuthzRevoke.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 *MsgIcaAuthzRevoke) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgIcaAuthzRevoke.Merge(m, src)
}
func (m *MsgIcaAuthzRevoke) XXX_Size() int {
return m.Size()
}
func (m *MsgIcaAuthzRevoke) XXX_DiscardUnknown() {
xxx_messageInfo_MsgIcaAuthzRevoke.DiscardUnknown(m)
}
var xxx_messageInfo_MsgIcaAuthzRevoke proto.InternalMessageInfo
// MsgIcaAuthzRevokeResponse is a response message for MsgIcaAuthzRevoke.
type MsgIcaAuthzRevokeResponse struct {
}
func (m *MsgIcaAuthzRevokeResponse) Reset() { *m = MsgIcaAuthzRevokeResponse{} }
func (m *MsgIcaAuthzRevokeResponse) String() string { return proto.CompactTextString(m) }
func (*MsgIcaAuthzRevokeResponse) ProtoMessage() {}
func (*MsgIcaAuthzRevokeResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{17}
}
func (m *MsgIcaAuthzRevokeResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgIcaAuthzRevokeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgIcaAuthzRevokeResponse.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 *MsgIcaAuthzRevokeResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgIcaAuthzRevokeResponse.Merge(m, src)
}
func (m *MsgIcaAuthzRevokeResponse) XXX_Size() int {
return m.Size()
}
func (m *MsgIcaAuthzRevokeResponse) XXX_DiscardUnknown() {
xxx_messageInfo_MsgIcaAuthzRevokeResponse.DiscardUnknown(m)
}
var xxx_messageInfo_MsgIcaAuthzRevokeResponse proto.InternalMessageInfo
// MsgRegisterControllerAddr is a message used for
type MsgRegisterControllerAddr struct {
ZoneId string `protobuf:"bytes,1,opt,name=zone_id,json=zoneId,proto3" json:"zone_id,omitempty"`
ControllerAddress string `protobuf:"bytes,2,opt,name=controller_address,json=controllerAddress,proto3" json:"controller_address,omitempty"`
FromAddress string `protobuf:"bytes,3,opt,name=from_address,json=fromAddress,proto3" json:"from_address,omitempty"`
}
func (m *MsgRegisterControllerAddr) Reset() { *m = MsgRegisterControllerAddr{} }
func (m *MsgRegisterControllerAddr) String() string { return proto.CompactTextString(m) }
func (*MsgRegisterControllerAddr) ProtoMessage() {}
func (*MsgRegisterControllerAddr) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{18}
}
func (m *MsgRegisterControllerAddr) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgRegisterControllerAddr) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgRegisterControllerAddr.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 *MsgRegisterControllerAddr) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgRegisterControllerAddr.Merge(m, src)
}
func (m *MsgRegisterControllerAddr) XXX_Size() int {
return m.Size()
}
func (m *MsgRegisterControllerAddr) XXX_DiscardUnknown() {
xxx_messageInfo_MsgRegisterControllerAddr.DiscardUnknown(m)
}
var xxx_messageInfo_MsgRegisterControllerAddr proto.InternalMessageInfo
// MsgRegisterControllerAddrResponse is a response message for MsgRegisterControllerAddr.
type MsgRegisterControllerAddrResponse struct {
}
func (m *MsgRegisterControllerAddrResponse) Reset() { *m = MsgRegisterControllerAddrResponse{} }
func (m *MsgRegisterControllerAddrResponse) String() string { return proto.CompactTextString(m) }
func (*MsgRegisterControllerAddrResponse) ProtoMessage() {}
func (*MsgRegisterControllerAddrResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_27d7493cc67bb856, []int{19}
}
func (m *MsgRegisterControllerAddrResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgRegisterControllerAddrResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgRegisterControllerAddrResponse.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 *MsgRegisterControllerAddrResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgRegisterControllerAddrResponse.Merge(m, src)
}
func (m *MsgRegisterControllerAddrResponse) XXX_Size() int {
return m.Size()
}
func (m *MsgRegisterControllerAddrResponse) XXX_DiscardUnknown() {
xxx_messageInfo_MsgRegisterControllerAddrResponse.DiscardUnknown(m)
}
var xxx_messageInfo_MsgRegisterControllerAddrResponse proto.InternalMessageInfo
func init() {
proto.RegisterType((*MsgRegisterZone)(nil), "nova.icacontrol.v1.MsgRegisterZone")
proto.RegisterType((*MsgRegisterZoneResponse)(nil), "nova.icacontrol.v1.MsgRegisterZoneResponse")
proto.RegisterType((*MsgChangeRegisteredZone)(nil), "nova.icacontrol.v1.MsgChangeRegisteredZone")
proto.RegisterType((*MsgChangeRegisteredZoneResponse)(nil), "nova.icacontrol.v1.MsgChangeRegisteredZoneResponse")
proto.RegisterType((*MsgDeleteRegisteredZone)(nil), "nova.icacontrol.v1.MsgDeleteRegisteredZone")
proto.RegisterType((*MsgDeleteRegisteredZoneResponse)(nil), "nova.icacontrol.v1.MsgDeleteRegisteredZoneResponse")
proto.RegisterType((*MsgIcaDelegate)(nil), "nova.icacontrol.v1.MsgIcaDelegate")
proto.RegisterType((*MsgIcaDelegateResponse)(nil), "nova.icacontrol.v1.MsgIcaDelegateResponse")
proto.RegisterType((*MsgIcaUndelegate)(nil), "nova.icacontrol.v1.MsgIcaUndelegate")
proto.RegisterType((*MsgIcaUndelegateResponse)(nil), "nova.icacontrol.v1.MsgIcaUndelegateResponse")
proto.RegisterType((*MsgIcaAutoStaking)(nil), "nova.icacontrol.v1.MsgIcaAutoStaking")
proto.RegisterType((*MsgIcaAutoStakingResponse)(nil), "nova.icacontrol.v1.MsgIcaAutoStakingResponse")
proto.RegisterType((*MsgIcaTransfer)(nil), "nova.icacontrol.v1.MsgIcaTransfer")
proto.RegisterType((*MsgIcaTransferResponse)(nil), "nova.icacontrol.v1.MsgIcaTransferResponse")
proto.RegisterType((*MsgIcaAuthzGrant)(nil), "nova.icacontrol.v1.MsgIcaAuthzGrant")
proto.RegisterType((*MsgIcaAuthzGrantResponse)(nil), "nova.icacontrol.v1.MsgIcaAuthzGrantResponse")
proto.RegisterType((*MsgIcaAuthzRevoke)(nil), "nova.icacontrol.v1.MsgIcaAuthzRevoke")
proto.RegisterType((*MsgIcaAuthzRevokeResponse)(nil), "nova.icacontrol.v1.MsgIcaAuthzRevokeResponse")
proto.RegisterType((*MsgRegisterControllerAddr)(nil), "nova.icacontrol.v1.MsgRegisterControllerAddr")
proto.RegisterType((*MsgRegisterControllerAddrResponse)(nil), "nova.icacontrol.v1.MsgRegisterControllerAddrResponse")
}
func init() { proto.RegisterFile("nova/icacontrol/v1/tx.proto", fileDescriptor_27d7493cc67bb856) }
var fileDescriptor_27d7493cc67bb856 = []byte{
// 1070 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0xcd, 0x6f, 0x1b, 0x45,
0x14, 0xf7, 0xd6, 0x69, 0xec, 0xbc, 0xa4, 0x6d, 0xb2, 0x58, 0xcd, 0xc6, 0x11, 0x8e, 0xe3, 0x34,
0x52, 0x68, 0xc9, 0xae, 0xd2, 0x52, 0x21, 0x71, 0x81, 0xd4, 0x41, 0xc8, 0x12, 0x11, 0xc8, 0xb4,
0x97, 0x4a, 0xc8, 0x8c, 0x77, 0xc7, 0xeb, 0x51, 0xd7, 0x33, 0xd6, 0xce, 0xd8, 0x72, 0x73, 0xe3,
0xc2, 0x19, 0xc4, 0x81, 0x2b, 0x07, 0xae, 0x70, 0xe5, 0x5f, 0xc8, 0x31, 0xc7, 0x9e, 0x10, 0x24,
0x17, 0x2e, 0x1c, 0xb9, 0xa3, 0x9d, 0xfd, 0xf4, 0xc6, 0xeb, 0x38, 0x55, 0x44, 0x05, 0xca, 0x6d,
0x67, 0xde, 0xef, 0xbd, 0xf9, 0xbd, 0xcf, 0x9d, 0x5d, 0x58, 0xa7, 0x6c, 0x88, 0x0c, 0x62, 0x22,
0x93, 0x51, 0xe1, 0x32, 0xc7, 0x18, 0xee, 0x19, 0x62, 0xa4, 0xf7, 0x5d, 0x26, 0x98, 0xaa, 0x7a,
0x42, 0x3d, 0x16, 0xea, 0xc3, 0xbd, 0x72, 0xc9, 0x66, 0x36, 0x93, 0x62, 0xc3, 0x7b, 0xf2, 0x91,
0xe5, 0x8a, 0xc9, 0x78, 0x8f, 0x71, 0xa3, 0x8d, 0x38, 0x36, 0x86, 0x7b, 0x6d, 0x2c, 0xd0, 0x9e,
0x61, 0x32, 0x42, 0x03, 0x79, 0x35, 0x90, 0xa3, 0x81, 0xe8, 0x1e, 0x45, 0x00, 0xb9, 0x0a, 0x10,
0x5b, 0x13, 0x88, 0x24, 0x4e, 0x96, 0xa0, 0xda, 0x49, 0x1e, 0xee, 0x1c, 0x72, 0xbb, 0x89, 0x6d,
0xc2, 0x05, 0x76, 0x9f, 0x33, 0x8a, 0xd5, 0x55, 0x28, 0x1c, 0x31, 0x8a, 0x5b, 0xc4, 0xd2, 0x94,
0xaa, 0xb2, 0xb3, 0xd0, 0x9c, 0xf7, 0x96, 0x0d, 0x4b, 0xfd, 0x08, 0x8a, 0xc4, 0x44, 0x2d, 0x42,
0x3b, 0x4c, 0xbb, 0x51, 0x55, 0x76, 0x16, 0x1f, 0x6e, 0xeb, 0xe7, 0x1d, 0xd2, 0x1b, 0x26, 0xaa,
0x33, 0x4a, 0xb1, 0x29, 0x08, 0xa3, 0x0d, 0xda, 0x61, 0xcd, 0x02, 0x31, 0x91, 0xf7, 0xa0, 0x7e,
0x08, 0x8b, 0x9e, 0x05, 0x64, 0x9a, 0x6c, 0x40, 0x85, 0x96, 0x97, 0x46, 0x2a, 0x19, 0x46, 0xf6,
0x7d, 0x54, 0x13, 0x48, 0xf4, 0xac, 0x7e, 0x06, 0xb7, 0x84, 0x8b, 0x28, 0xef, 0x60, 0xd7, 0xe7,
0x31, 0x27, 0x4d, 0xdc, 0x9f, 0x64, 0xe2, 0x69, 0x00, 0x4c, 0x91, 0x59, 0x0a, 0x0d, 0x48, 0x46,
0x0f, 0x60, 0x65, 0x88, 0x1c, 0x62, 0x21, 0xc1, 0xdc, 0x16, 0xb2, 0x2c, 0x17, 0x73, 0xae, 0xdd,
0x94, 0x6e, 0x2f, 0x47, 0x82, 0x7d, 0x7f, 0x5f, 0x7d, 0x1b, 0xc0, 0xcb, 0x47, 0xcb, 0xc2, 0x94,
0xf5, 0xb4, 0x79, 0x89, 0x5a, 0xf0, 0x76, 0x0e, 0xbc, 0x0d, 0x55, 0x83, 0x82, 0x85, 0x4d, 0xd2,
0x43, 0x8e, 0x56, 0xa8, 0x2a, 0x3b, 0xf9, 0x66, 0xb8, 0x54, 0xdf, 0x83, 0xbb, 0x03, 0x6a, 0x61,
0x07, 0xdb, 0x48, 0xe0, 0x56, 0x0f, 0x8d, 0x5a, 0x98, 0x0a, 0x97, 0x60, 0xae, 0x15, 0x25, 0xb0,
0x14, 0x4b, 0x0f, 0xd1, 0xe8, 0x63, 0x5f, 0xa6, 0xea, 0xf0, 0x96, 0x85, 0xfb, 0x8c, 0x13, 0x31,
0xa6, 0xb2, 0x20, 0x55, 0x56, 0x02, 0x51, 0x8c, 0xff, 0x60, 0xee, 0xcf, 0x1f, 0x37, 0x72, 0xb5,
0xbf, 0xf2, 0xb0, 0x9a, 0x4a, 0x69, 0x13, 0xf3, 0x3e, 0xa3, 0xfc, 0x3a, 0xb5, 0xaf, 0x9d, 0xda,
0x35, 0x28, 0x72, 0x1a, 0x08, 0x0b, 0x52, 0x58, 0xe0, 0xf4, 0x5c, 0xd6, 0x8b, 0xb3, 0x66, 0x7d,
0xe1, 0xf2, 0x59, 0x87, 0x8c, 0xac, 0xd7, 0x5e, 0xf9, 0xf9, 0xae, 0x77, 0x11, 0xb5, 0x71, 0x98,
0x75, 0x6c, 0x5d, 0xb7, 0xf2, 0x7f, 0xbf, 0x95, 0xff, 0xce, 0xc3, 0x46, 0x46, 0x6a, 0xaf, 0x5b,
0xfa, 0x7f, 0xdc, 0xd2, 0x48, 0x76, 0xf4, 0x01, 0x76, 0xb0, 0x98, 0xb9, 0xa3, 0x77, 0x41, 0x0d,
0xa2, 0xe9, 0xe0, 0x38, 0x36, 0x37, 0x24, 0x66, 0x25, 0x96, 0x04, 0xc1, 0xa9, 0x6d, 0xca, 0xca,
0x9a, 0x74, 0x44, 0x58, 0x59, 0xb5, 0xef, 0x14, 0xb8, 0x7d, 0xc8, 0xed, 0x86, 0x89, 0x0e, 0x02,
0x97, 0xae, 0xea, 0x74, 0xf5, 0x7d, 0x98, 0x47, 0xbd, 0x44, 0x51, 0xad, 0xe9, 0xfe, 0x75, 0x46,
0xf7, 0xd2, 0xa3, 0x07, 0xb7, 0x19, 0xbd, 0xce, 0x08, 0x7d, 0x32, 0x77, 0xfc, 0xdb, 0x46, 0xae,
0x19, 0xc0, 0x6b, 0x1a, 0xdc, 0x1d, 0xa7, 0x14, 0xb1, 0xfd, 0x5e, 0x81, 0x65, 0x5f, 0xf4, 0x2c,
0x4a, 0xc1, 0x9b, 0xe7, 0x5b, 0x06, 0x2d, 0x4d, 0x2a, 0x62, 0xfc, 0x8b, 0x02, 0x2b, 0xbe, 0x70,
0x7f, 0x20, 0xd8, 0x17, 0x02, 0xbd, 0x20, 0xd4, 0x7e, 0xe3, 0x94, 0xbd, 0xe2, 0x1f, 0x62, 0x97,
0x13, 0x46, 0x65, 0xbb, 0xce, 0x35, 0xc3, 0x65, 0x6d, 0x1d, 0xd6, 0xce, 0xf1, 0x8d, 0xbc, 0xf9,
0xe9, 0x46, 0x58, 0x2d, 0x61, 0x27, 0x5f, 0x99, 0x2b, 0xef, 0xc0, 0xb2, 0x8b, 0x4d, 0x4c, 0x86,
0x09, 0x70, 0x5e, 0x82, 0xef, 0x84, 0xfb, 0x21, 0xd4, 0x80, 0x92, 0x37, 0xb2, 0xa2, 0xa9, 0xd3,
0x67, 0xae, 0xf0, 0xce, 0x9f, 0xf3, 0x6d, 0x93, 0x98, 0xdd, 0xe7, 0xcc, 0x15, 0x0d, 0x4b, 0x7d,
0x0c, 0xab, 0x63, 0x0a, 0x66, 0x17, 0x51, 0x8a, 0x1d, 0x4f, 0xc7, 0x9f, 0x2b, 0xa5, 0x84, 0x4e,
0xdd, 0x17, 0x36, 0xac, 0x44, 0x74, 0xe7, 0x5f, 0xb3, 0x80, 0x43, 0x9b, 0x51, 0x00, 0x7f, 0x8e,
0x0a, 0x78, 0xdf, 0xbb, 0xc5, 0x7f, 0xe2, 0x22, 0x2a, 0xb2, 0x43, 0xa8, 0x41, 0xc1, 0xf6, 0x10,
0x18, 0x07, 0x71, 0x0b, 0x97, 0x19, 0xc1, 0xcd, 0x67, 0xd7, 0xc9, 0x4d, 0xa9, 0x19, 0xcc, 0xe6,
0xf5, 0xd0, 0x11, 0xff, 0x53, 0x22, 0xf4, 0x44, 0xb2, 0x09, 0x5c, 0xf1, 0xf1, 0x71, 0x69, 0xc7,
0x74, 0x23, 0x5f, 0x7e, 0x48, 0x96, 0x76, 0xf7, 0xa8, 0x89, 0x87, 0xec, 0x05, 0xfe, 0x17, 0x9c,
0xa9, 0xc2, 0x52, 0x8f, 0xdb, 0x2d, 0xf1, 0xb2, 0x8f, 0x5b, 0x03, 0xd7, 0x09, 0xd2, 0x0e, 0x3d,
0x6e, 0x3f, 0x7d, 0xd9, 0xc7, 0xcf, 0x5c, 0x67, 0xac, 0x86, 0x43, 0x62, 0x11, 0xed, 0x6f, 0x14,
0x29, 0x0d, 0xe7, 0x61, 0x7d, 0xcc, 0xfe, 0x95, 0x95, 0xf3, 0x26, 0x2c, 0x75, 0x5c, 0xd6, 0x4b,
0x79, 0xb3, 0xe8, 0xed, 0x85, 0xd3, 0x79, 0x0b, 0x36, 0x33, 0x79, 0x84, 0x6c, 0x1f, 0xfe, 0x5a,
0x84, 0xfc, 0x21, 0xb7, 0xd5, 0xaf, 0x60, 0x69, 0xec, 0xfb, 0x6d, 0x6b, 0xd2, 0xeb, 0x35, 0xf5,
0x45, 0x50, 0x7e, 0x30, 0x03, 0x28, 0xba, 0x63, 0x7c, 0x09, 0x8b, 0xc9, 0xb7, 0x40, 0x2d, 0x43,
0x37, 0x81, 0x29, 0xdf, 0xbf, 0x18, 0x13, 0x99, 0x37, 0xe1, 0xd6, 0xf8, 0xd8, 0xbe, 0x97, 0xad,
0x1c, 0xa3, 0xca, 0xef, 0xce, 0x82, 0x4a, 0xf9, 0x10, 0xcd, 0xa6, 0x29, 0x3e, 0x84, 0x98, 0x69,
0x3e, 0xa4, 0xbb, 0x57, 0xed, 0xc0, 0xed, 0xd4, 0x20, 0xdf, 0xce, 0xd6, 0x4e, 0xc0, 0xca, 0xbb,
0x33, 0xc1, 0x52, 0xb1, 0x4a, 0x4c, 0x88, 0x7b, 0x53, 0xf5, 0x03, 0xd4, 0xb4, 0x58, 0x9d, 0x6f,
0xdf, 0xd8, 0x99, 0xa8, 0x75, 0xb7, 0x2f, 0xd0, 0xf7, 0x61, 0x17, 0x38, 0x93, 0xee, 0x37, 0x75,
0x04, 0xa5, 0x89, 0x97, 0x9c, 0xac, 0xe2, 0x9c, 0x04, 0x2e, 0x3f, 0xba, 0x04, 0x38, 0x79, 0xf2,
0xc4, 0x0f, 0xa6, 0xac, 0x93, 0x27, 0x81, 0x33, 0x4f, 0x9e, 0x7a, 0x5f, 0xff, 0x5a, 0x81, 0xb5,
0xc9, 0x8d, 0xed, 0xcd, 0x86, 0xdd, 0x0b, 0xda, 0x72, 0x5c, 0xa3, 0xfc, 0xf8, 0x52, 0xf0, 0x90,
0xc3, 0x93, 0x4f, 0x8f, 0xff, 0xa8, 0xe4, 0x8e, 0x4f, 0x2b, 0xca, 0xc9, 0x69, 0x45, 0xf9, 0xfd,
0xb4, 0xa2, 0x7c, 0x7b, 0x56, 0xc9, 0x9d, 0x9c, 0x55, 0x72, 0xaf, 0xce, 0x2a, 0xb9, 0xe7, 0xba,
0x4d, 0x44, 0x77, 0xd0, 0xd6, 0x4d, 0xd6, 0x33, 0xea, 0xc8, 0x25, 0x14, 0xed, 0x3a, 0xa8, 0xcd,
0x0d, 0xf9, 0x3f, 0x69, 0x94, 0xfc, 0xa3, 0xe4, 0xcd, 0x59, 0xde, 0x9e, 0x97, 0xbf, 0x92, 0x1e,
0xfd, 0x13, 0x00, 0x00, 0xff, 0xff, 0xc3, 0x64, 0x1a, 0x79, 0xfa, 0x12, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConn
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion4
// MsgClient is the client API for Msg service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type MsgClient interface {
// RegisterZone defines a rpc handler for MsgRegisterZone
RegisterZone(ctx context.Context, in *MsgRegisterZone, opts ...grpc.CallOption) (*MsgRegisterZoneResponse, error)
// IcaDelegate defines a rpc handler for MsgIcaDelegate
IcaDelegate(ctx context.Context, in *MsgIcaDelegate, opts ...grpc.CallOption) (*MsgIcaDelegateResponse, error)
// IcaUnDelegate defines a rpc handler for MsgIcaUnDelegate
IcaUndelegate(ctx context.Context, in *MsgIcaUndelegate, opts ...grpc.CallOption) (*MsgIcaUndelegateResponse, error)
// IcaTransfer defines a rpc handler for MsgIcaTransfer
IcaTransfer(ctx context.Context, in *MsgIcaTransfer, opts ...grpc.CallOption) (*MsgIcaTransferResponse, error)
// IcaAutoStaking defines a rpc handler for MsgIcaAutoStaking
IcaAutoStaking(ctx context.Context, in *MsgIcaAutoStaking, opts ...grpc.CallOption) (*MsgIcaAutoStakingResponse, error)
// DeleteRegisteredZone defines a rpc handler for MsgDeleteRegisteredZone
IcaAuthzGrant(ctx context.Context, in *MsgIcaAuthzGrant, opts ...grpc.CallOption) (*MsgIcaAuthzGrantResponse, error)
IcaAuthzRevoke(ctx context.Context, in *MsgIcaAuthzRevoke, opts ...grpc.CallOption) (*MsgIcaAuthzRevokeResponse, error)
DeleteRegisteredZone(ctx context.Context, in *MsgDeleteRegisteredZone, opts ...grpc.CallOption) (*MsgDeleteRegisteredZoneResponse, error)
ChangeRegisteredZone(ctx context.Context, in *MsgChangeRegisteredZone, opts ...grpc.CallOption) (*MsgChangeRegisteredZoneResponse, error)
RegisterControllerAddress(ctx context.Context, in *MsgRegisterControllerAddr, opts ...grpc.CallOption) (*MsgRegisterControllerAddrResponse, error)
}
type msgClient struct {
cc grpc1.ClientConn
}
func NewMsgClient(cc grpc1.ClientConn) MsgClient {
return &msgClient{cc}
}
func (c *msgClient) RegisterZone(ctx context.Context, in *MsgRegisterZone, opts ...grpc.CallOption) (*MsgRegisterZoneResponse, error) {
out := new(MsgRegisterZoneResponse)
err := c.cc.Invoke(ctx, "/nova.icacontrol.v1.Msg/RegisterZone", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *msgClient) IcaDelegate(ctx context.Context, in *MsgIcaDelegate, opts ...grpc.CallOption) (*MsgIcaDelegateResponse, error) {
out := new(MsgIcaDelegateResponse)
err := c.cc.Invoke(ctx, "/nova.icacontrol.v1.Msg/IcaDelegate", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *msgClient) IcaUndelegate(ctx context.Context, in *MsgIcaUndelegate, opts ...grpc.CallOption) (*MsgIcaUndelegateResponse, error) {
out := new(MsgIcaUndelegateResponse)
err := c.cc.Invoke(ctx, "/nova.icacontrol.v1.Msg/IcaUndelegate", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}