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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
/// A Penumbra ZK undelegate claim proof.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ZkUndelegateClaimProof {
    #[prost(bytes = "vec", tag = "1")]
    pub inner: ::prost::alloc::vec::Vec<u8>,
}
impl ::prost::Name for ZkUndelegateClaimProof {
    const NAME: &'static str = "ZKUndelegateClaimProof";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Describes a validator's configuration data.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Validator {
    /// The validator's identity verification key.
    #[prost(message, optional, tag = "1")]
    pub identity_key: ::core::option::Option<super::super::super::keys::v1::IdentityKey>,
    /// The validator's consensus pubkey for use in Tendermint (Ed25519).
    #[prost(bytes = "vec", tag = "2")]
    pub consensus_key: ::prost::alloc::vec::Vec<u8>,
    /// The validator's (human-readable) name.
    #[prost(string, tag = "3")]
    pub name: ::prost::alloc::string::String,
    /// The validator's website.
    #[prost(string, tag = "4")]
    pub website: ::prost::alloc::string::String,
    /// The validator's description.
    #[prost(string, tag = "5")]
    pub description: ::prost::alloc::string::String,
    /// Whether the validator is enabled or not.
    ///
    /// Disabled validators cannot be delegated to, and immediately begin unbonding.
    #[prost(bool, tag = "8")]
    pub enabled: bool,
    /// A list of funding streams describing the validator's commission.
    #[prost(message, repeated, tag = "6")]
    pub funding_streams: ::prost::alloc::vec::Vec<FundingStream>,
    /// The sequence number determines which validator data takes priority, and
    /// prevents replay attacks.  The chain only accepts new validator definitions
    /// with increasing sequence numbers.
    #[prost(uint32, tag = "7")]
    pub sequence_number: u32,
    /// The validator's governance key.
    #[prost(message, optional, tag = "9")]
    pub governance_key: ::core::option::Option<
        super::super::super::keys::v1::GovernanceKey,
    >,
}
impl ::prost::Name for Validator {
    const NAME: &'static str = "Validator";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// For storing the list of keys of known validators.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatorList {
    #[prost(message, repeated, tag = "1")]
    pub validator_keys: ::prost::alloc::vec::Vec<
        super::super::super::keys::v1::IdentityKey,
    >,
}
impl ::prost::Name for ValidatorList {
    const NAME: &'static str = "ValidatorList";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// A portion of a validator's commission.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FundingStream {
    /// The recipient of the funding stream.
    #[prost(oneof = "funding_stream::Recipient", tags = "1, 2")]
    pub recipient: ::core::option::Option<funding_stream::Recipient>,
}
/// Nested message and enum types in `FundingStream`.
pub mod funding_stream {
    #[allow(clippy::derive_partial_eq_without_eq)]
    #[derive(Clone, PartialEq, ::prost::Message)]
    pub struct ToAddress {
        /// The destination address for the funding stream.
        #[prost(string, tag = "1")]
        pub address: ::prost::alloc::string::String,
        /// The portion of the staking reward for the entire delegation pool
        /// allocated to this funding stream, specified in basis points.
        #[prost(uint32, tag = "2")]
        pub rate_bps: u32,
    }
    impl ::prost::Name for ToAddress {
        const NAME: &'static str = "ToAddress";
        const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
        fn full_name() -> ::prost::alloc::string::String {
            ::prost::alloc::format!(
                "penumbra.core.component.stake.v1.FundingStream.{}", Self::NAME
            )
        }
    }
    #[allow(clippy::derive_partial_eq_without_eq)]
    #[derive(Clone, PartialEq, ::prost::Message)]
    pub struct ToCommunityPool {
        /// The portion of the staking reward for the entire delegation pool
        /// allocated to this funding stream, specified in basis points.
        #[prost(uint32, tag = "2")]
        pub rate_bps: u32,
    }
    impl ::prost::Name for ToCommunityPool {
        const NAME: &'static str = "ToCommunityPool";
        const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
        fn full_name() -> ::prost::alloc::string::String {
            ::prost::alloc::format!(
                "penumbra.core.component.stake.v1.FundingStream.{}", Self::NAME
            )
        }
    }
    /// The recipient of the funding stream.
    #[allow(clippy::derive_partial_eq_without_eq)]
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Recipient {
        #[prost(message, tag = "1")]
        ToAddress(ToAddress),
        #[prost(message, tag = "2")]
        ToCommunityPool(ToCommunityPool),
    }
}
impl ::prost::Name for FundingStream {
    const NAME: &'static str = "FundingStream";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Describes the reward and exchange rates and voting power for a validator in some epoch.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RateData {
    #[prost(message, optional, tag = "1")]
    pub identity_key: ::core::option::Option<super::super::super::keys::v1::IdentityKey>,
    #[deprecated]
    #[prost(uint64, tag = "2")]
    pub epoch_index: u64,
    #[prost(message, optional, tag = "4")]
    pub validator_reward_rate: ::core::option::Option<
        super::super::super::num::v1::Amount,
    >,
    /// The validator exchange rate between delegation tokens and staking tokens.
    /// The rate is expressed in fixed-point representation with a scaling factor
    /// of 10^8. For example, a decimal rate of `1.234` will be represented as
    /// `123400000`
    #[prost(message, optional, tag = "5")]
    pub validator_exchange_rate: ::core::option::Option<
        super::super::super::num::v1::Amount,
    >,
}
impl ::prost::Name for RateData {
    const NAME: &'static str = "RateData";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Describes the base reward and exchange rates in some epoch.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BaseRateData {
    #[prost(uint64, tag = "1")]
    pub epoch_index: u64,
    #[prost(message, optional, tag = "2")]
    pub base_reward_rate: ::core::option::Option<super::super::super::num::v1::Amount>,
    #[prost(message, optional, tag = "3")]
    pub base_exchange_rate: ::core::option::Option<super::super::super::num::v1::Amount>,
}
impl ::prost::Name for BaseRateData {
    const NAME: &'static str = "BaseRateData";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Describes the current state of a validator on-chain
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatorStatus {
    #[prost(message, optional, tag = "1")]
    pub identity_key: ::core::option::Option<super::super::super::keys::v1::IdentityKey>,
    #[prost(message, optional, tag = "2")]
    pub state: ::core::option::Option<ValidatorState>,
    #[prost(message, optional, tag = "3")]
    pub voting_power: ::core::option::Option<super::super::super::num::v1::Amount>,
    #[prost(message, optional, tag = "4")]
    pub bonding_state: ::core::option::Option<BondingState>,
}
impl ::prost::Name for ValidatorStatus {
    const NAME: &'static str = "ValidatorStatus";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Describes the unbonding state of a validator's stake pool.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BondingState {
    #[prost(enumeration = "bonding_state::BondingStateEnum", tag = "1")]
    pub state: i32,
    #[deprecated]
    #[prost(uint64, tag = "2")]
    pub unbonds_at_epoch: u64,
    #[prost(uint64, tag = "3")]
    pub unbonds_at_height: u64,
}
/// Nested message and enum types in `BondingState`.
pub mod bonding_state {
    #[derive(
        Clone,
        Copy,
        Debug,
        PartialEq,
        Eq,
        Hash,
        PartialOrd,
        Ord,
        ::prost::Enumeration
    )]
    #[repr(i32)]
    pub enum BondingStateEnum {
        Unspecified = 0,
        Bonded = 1,
        Unbonding = 2,
        Unbonded = 3,
    }
    impl BondingStateEnum {
        /// String value of the enum field names used in the ProtoBuf definition.
        ///
        /// The values are not transformed in any way and thus are considered stable
        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
        pub fn as_str_name(&self) -> &'static str {
            match self {
                BondingStateEnum::Unspecified => "BONDING_STATE_ENUM_UNSPECIFIED",
                BondingStateEnum::Bonded => "BONDING_STATE_ENUM_BONDED",
                BondingStateEnum::Unbonding => "BONDING_STATE_ENUM_UNBONDING",
                BondingStateEnum::Unbonded => "BONDING_STATE_ENUM_UNBONDED",
            }
        }
        /// Creates an enum from field names used in the ProtoBuf definition.
        pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
            match value {
                "BONDING_STATE_ENUM_UNSPECIFIED" => Some(Self::Unspecified),
                "BONDING_STATE_ENUM_BONDED" => Some(Self::Bonded),
                "BONDING_STATE_ENUM_UNBONDING" => Some(Self::Unbonding),
                "BONDING_STATE_ENUM_UNBONDED" => Some(Self::Unbonded),
                _ => None,
            }
        }
    }
}
impl ::prost::Name for BondingState {
    const NAME: &'static str = "BondingState";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Describes the state of a validator
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatorState {
    #[prost(enumeration = "validator_state::ValidatorStateEnum", tag = "1")]
    pub state: i32,
}
/// Nested message and enum types in `ValidatorState`.
pub mod validator_state {
    #[derive(
        Clone,
        Copy,
        Debug,
        PartialEq,
        Eq,
        Hash,
        PartialOrd,
        Ord,
        ::prost::Enumeration
    )]
    #[repr(i32)]
    pub enum ValidatorStateEnum {
        Unspecified = 0,
        Defined = 1,
        Inactive = 2,
        Active = 3,
        Jailed = 4,
        Tombstoned = 5,
        Disabled = 6,
    }
    impl ValidatorStateEnum {
        /// String value of the enum field names used in the ProtoBuf definition.
        ///
        /// The values are not transformed in any way and thus are considered stable
        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
        pub fn as_str_name(&self) -> &'static str {
            match self {
                ValidatorStateEnum::Unspecified => "VALIDATOR_STATE_ENUM_UNSPECIFIED",
                ValidatorStateEnum::Defined => "VALIDATOR_STATE_ENUM_DEFINED",
                ValidatorStateEnum::Inactive => "VALIDATOR_STATE_ENUM_INACTIVE",
                ValidatorStateEnum::Active => "VALIDATOR_STATE_ENUM_ACTIVE",
                ValidatorStateEnum::Jailed => "VALIDATOR_STATE_ENUM_JAILED",
                ValidatorStateEnum::Tombstoned => "VALIDATOR_STATE_ENUM_TOMBSTONED",
                ValidatorStateEnum::Disabled => "VALIDATOR_STATE_ENUM_DISABLED",
            }
        }
        /// Creates an enum from field names used in the ProtoBuf definition.
        pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
            match value {
                "VALIDATOR_STATE_ENUM_UNSPECIFIED" => Some(Self::Unspecified),
                "VALIDATOR_STATE_ENUM_DEFINED" => Some(Self::Defined),
                "VALIDATOR_STATE_ENUM_INACTIVE" => Some(Self::Inactive),
                "VALIDATOR_STATE_ENUM_ACTIVE" => Some(Self::Active),
                "VALIDATOR_STATE_ENUM_JAILED" => Some(Self::Jailed),
                "VALIDATOR_STATE_ENUM_TOMBSTONED" => Some(Self::Tombstoned),
                "VALIDATOR_STATE_ENUM_DISABLED" => Some(Self::Disabled),
                _ => None,
            }
        }
    }
}
impl ::prost::Name for ValidatorState {
    const NAME: &'static str = "ValidatorState";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Combines all validator info into a single packet.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatorInfo {
    #[prost(message, optional, tag = "1")]
    pub validator: ::core::option::Option<Validator>,
    #[prost(message, optional, tag = "2")]
    pub status: ::core::option::Option<ValidatorStatus>,
    #[prost(message, optional, tag = "3")]
    pub rate_data: ::core::option::Option<RateData>,
}
impl ::prost::Name for ValidatorInfo {
    const NAME: &'static str = "ValidatorInfo";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// A transaction action (re)defining a validator.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatorDefinition {
    /// The configuration data for the validator.
    #[prost(message, optional, tag = "1")]
    pub validator: ::core::option::Option<Validator>,
    /// A signature by the validator's identity key over the validator data.
    #[prost(bytes = "vec", tag = "2")]
    pub auth_sig: ::prost::alloc::vec::Vec<u8>,
}
impl ::prost::Name for ValidatorDefinition {
    const NAME: &'static str = "ValidatorDefinition";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// A transaction action adding stake to a validator's delegation pool.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Delegate {
    /// The identity key of the validator to delegate to.
    #[prost(message, optional, tag = "1")]
    pub validator_identity: ::core::option::Option<
        super::super::super::keys::v1::IdentityKey,
    >,
    /// The index of the epoch in which this delegation was performed.
    /// The delegation takes effect in the next epoch.
    #[prost(uint64, tag = "2")]
    pub epoch_index: u64,
    /// The delegation amount, in units of unbonded stake.
    /// TODO: use flow aggregation to hide this, replacing it with bytes amount_ciphertext;
    #[prost(message, optional, tag = "3")]
    pub unbonded_amount: ::core::option::Option<super::super::super::num::v1::Amount>,
    /// The amount of delegation tokens produced by this action.
    ///
    /// This is implied by the validator's exchange rate in the specified epoch
    /// (and should be checked in transaction validation!), but including it allows
    /// stateless verification that the transaction is internally consistent.
    #[prost(message, optional, tag = "4")]
    pub delegation_amount: ::core::option::Option<super::super::super::num::v1::Amount>,
}
impl ::prost::Name for Delegate {
    const NAME: &'static str = "Delegate";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// A transaction action withdrawing stake from a validator's delegation pool.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Undelegate {
    /// The identity key of the validator to undelegate from.
    #[prost(message, optional, tag = "1")]
    pub validator_identity: ::core::option::Option<
        super::super::super::keys::v1::IdentityKey,
    >,
    /// The index of the epoch in which this undelegation was performed.
    #[deprecated]
    #[prost(uint64, tag = "2")]
    pub start_epoch_index: u64,
    /// The amount to undelegate, in units of unbonding tokens.
    #[prost(message, optional, tag = "3")]
    pub unbonded_amount: ::core::option::Option<super::super::super::num::v1::Amount>,
    /// The amount of delegation tokens consumed by this action.
    ///
    /// This is implied by the validator's exchange rate in the specified epoch
    /// (and should be checked in transaction validation!), but including it allows
    /// stateless verification that the transaction is internally consistent.
    #[prost(message, optional, tag = "4")]
    pub delegation_amount: ::core::option::Option<super::super::super::num::v1::Amount>,
    /// The epoch in which this delegation was performed.
    #[prost(message, optional, tag = "5")]
    pub from_epoch: ::core::option::Option<super::super::sct::v1::Epoch>,
}
impl ::prost::Name for Undelegate {
    const NAME: &'static str = "Undelegate";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// A transaction action finishing an undelegation, converting (slashable)
/// "unbonding tokens" to (unslashable) staking tokens.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UndelegateClaim {
    #[prost(message, optional, tag = "1")]
    pub body: ::core::option::Option<UndelegateClaimBody>,
    #[prost(bytes = "vec", tag = "2")]
    pub proof: ::prost::alloc::vec::Vec<u8>,
}
impl ::prost::Name for UndelegateClaim {
    const NAME: &'static str = "UndelegateClaim";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UndelegateClaimBody {
    /// The identity key of the validator to finish undelegating from.
    #[prost(message, optional, tag = "1")]
    pub validator_identity: ::core::option::Option<
        super::super::super::keys::v1::IdentityKey,
    >,
    /// The epoch in which unbonding began, used to verify the penalty.
    #[deprecated]
    #[prost(uint64, tag = "2")]
    pub start_epoch_index: u64,
    /// The penalty applied to undelegation, in bps^2 (10e-8).
    /// In the happy path (no slashing), this is 0.
    #[prost(message, optional, tag = "3")]
    pub penalty: ::core::option::Option<Penalty>,
    /// The action's contribution to the transaction's value balance.
    #[prost(message, optional, tag = "4")]
    pub balance_commitment: ::core::option::Option<
        super::super::super::asset::v1::BalanceCommitment,
    >,
    /// / The starting height of the epoch during which unbonding began.
    #[prost(uint64, tag = "5")]
    pub unbonding_start_height: u64,
}
impl ::prost::Name for UndelegateClaimBody {
    const NAME: &'static str = "UndelegateClaimBody";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UndelegateClaimPlan {
    /// The identity key of the validator to finish undelegating from.
    #[prost(message, optional, tag = "1")]
    pub validator_identity: ::core::option::Option<
        super::super::super::keys::v1::IdentityKey,
    >,
    /// The epoch in which unbonding began, used to verify the penalty.
    #[deprecated]
    #[prost(uint64, tag = "2")]
    pub start_epoch_index: u64,
    /// The penalty applied to undelegation, in bps^2 (10e-8).
    /// In the happy path (no slashing), this is 0.
    #[prost(message, optional, tag = "4")]
    pub penalty: ::core::option::Option<Penalty>,
    /// The amount of unbonding tokens to claim.
    /// This is a bare number because its denom is determined by the preceding data.
    #[prost(message, optional, tag = "5")]
    pub unbonding_amount: ::core::option::Option<super::super::super::num::v1::Amount>,
    /// The blinding factor to use for the balance commitment.
    #[prost(bytes = "vec", tag = "6")]
    pub balance_blinding: ::prost::alloc::vec::Vec<u8>,
    /// The first blinding factor to use for the ZK undelegate claim proof.
    #[prost(bytes = "vec", tag = "7")]
    pub proof_blinding_r: ::prost::alloc::vec::Vec<u8>,
    /// The second blinding factor to use for the ZK undelegate claim proof.
    #[prost(bytes = "vec", tag = "8")]
    pub proof_blinding_s: ::prost::alloc::vec::Vec<u8>,
    /// The height during which unbonding began.
    #[prost(uint64, tag = "9")]
    pub unbonding_start_height: u64,
}
impl ::prost::Name for UndelegateClaimPlan {
    const NAME: &'static str = "UndelegateClaimPlan";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// A list of pending delegations and undelegations.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DelegationChanges {
    #[prost(message, repeated, tag = "1")]
    pub delegations: ::prost::alloc::vec::Vec<Delegate>,
    #[prost(message, repeated, tag = "2")]
    pub undelegations: ::prost::alloc::vec::Vec<Undelegate>,
}
impl ::prost::Name for DelegationChanges {
    const NAME: &'static str = "DelegationChanges";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Track's a validator's uptime.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Uptime {
    #[prost(uint64, tag = "1")]
    pub as_of_block_height: u64,
    #[prost(uint32, tag = "2")]
    pub window_len: u32,
    #[prost(bytes = "vec", tag = "3")]
    pub bitvec: ::prost::alloc::vec::Vec<u8>,
}
impl ::prost::Name for Uptime {
    const NAME: &'static str = "Uptime";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Tracks our view of Tendermint's view of the validator set, so we can keep it
/// from getting confused.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CurrentConsensusKeys {
    #[prost(message, repeated, tag = "1")]
    pub consensus_keys: ::prost::alloc::vec::Vec<
        super::super::super::keys::v1::ConsensusKey,
    >,
}
impl ::prost::Name for CurrentConsensusKeys {
    const NAME: &'static str = "CurrentConsensusKeys";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Tracks slashing penalties applied to a validator in some epoch.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Penalty {
    #[prost(bytes = "vec", tag = "1")]
    pub inner: ::prost::alloc::vec::Vec<u8>,
}
impl ::prost::Name for Penalty {
    const NAME: &'static str = "Penalty";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Requests information about a specific validator.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetValidatorInfoRequest {
    /// The identity key of the validator.
    #[prost(message, optional, tag = "2")]
    pub identity_key: ::core::option::Option<super::super::super::keys::v1::IdentityKey>,
}
impl ::prost::Name for GetValidatorInfoRequest {
    const NAME: &'static str = "GetValidatorInfoRequest";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetValidatorInfoResponse {
    #[prost(message, optional, tag = "1")]
    pub validator_info: ::core::option::Option<ValidatorInfo>,
}
impl ::prost::Name for GetValidatorInfoResponse {
    const NAME: &'static str = "GetValidatorInfoResponse";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Requests information on the chain's validators.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatorInfoRequest {
    /// Whether or not to return inactive validators
    #[prost(bool, tag = "2")]
    pub show_inactive: bool,
}
impl ::prost::Name for ValidatorInfoRequest {
    const NAME: &'static str = "ValidatorInfoRequest";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatorInfoResponse {
    #[prost(message, optional, tag = "1")]
    pub validator_info: ::core::option::Option<ValidatorInfo>,
}
impl ::prost::Name for ValidatorInfoResponse {
    const NAME: &'static str = "ValidatorInfoResponse";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatorStatusRequest {
    #[prost(message, optional, tag = "2")]
    pub identity_key: ::core::option::Option<super::super::super::keys::v1::IdentityKey>,
}
impl ::prost::Name for ValidatorStatusRequest {
    const NAME: &'static str = "ValidatorStatusRequest";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatorStatusResponse {
    #[prost(message, optional, tag = "1")]
    pub status: ::core::option::Option<ValidatorStatus>,
}
impl ::prost::Name for ValidatorStatusResponse {
    const NAME: &'static str = "ValidatorStatusResponse";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Requests the compounded penalty for a validator over a range of epochs.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatorPenaltyRequest {
    #[prost(message, optional, tag = "2")]
    pub identity_key: ::core::option::Option<super::super::super::keys::v1::IdentityKey>,
    #[prost(uint64, tag = "3")]
    pub start_epoch_index: u64,
    #[prost(uint64, tag = "4")]
    pub end_epoch_index: u64,
}
impl ::prost::Name for ValidatorPenaltyRequest {
    const NAME: &'static str = "ValidatorPenaltyRequest";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatorPenaltyResponse {
    #[prost(message, optional, tag = "1")]
    pub penalty: ::core::option::Option<Penalty>,
}
impl ::prost::Name for ValidatorPenaltyResponse {
    const NAME: &'static str = "ValidatorPenaltyResponse";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CurrentValidatorRateRequest {
    #[prost(message, optional, tag = "2")]
    pub identity_key: ::core::option::Option<super::super::super::keys::v1::IdentityKey>,
}
impl ::prost::Name for CurrentValidatorRateRequest {
    const NAME: &'static str = "CurrentValidatorRateRequest";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CurrentValidatorRateResponse {
    #[prost(message, optional, tag = "1")]
    pub data: ::core::option::Option<RateData>,
}
impl ::prost::Name for CurrentValidatorRateResponse {
    const NAME: &'static str = "CurrentValidatorRateResponse";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatorUptimeRequest {
    #[prost(message, optional, tag = "2")]
    pub identity_key: ::core::option::Option<super::super::super::keys::v1::IdentityKey>,
}
impl ::prost::Name for ValidatorUptimeRequest {
    const NAME: &'static str = "ValidatorUptimeRequest";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatorUptimeResponse {
    #[prost(message, optional, tag = "1")]
    pub uptime: ::core::option::Option<Uptime>,
}
impl ::prost::Name for ValidatorUptimeResponse {
    const NAME: &'static str = "ValidatorUptimeResponse";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Staking configuration data.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StakeParameters {
    /// The number of epochs an unbonding note for before being released.
    #[deprecated]
    #[prost(uint64, tag = "1")]
    pub unbonding_epochs: u64,
    /// The maximum number of validators in the consensus set.
    #[prost(uint64, tag = "2")]
    pub active_validator_limit: u64,
    /// The base reward rate, expressed in basis points of basis points
    #[prost(uint64, tag = "3")]
    pub base_reward_rate: u64,
    /// The penalty for slashing due to misbehavior.
    #[prost(uint64, tag = "4")]
    pub slashing_penalty_misbehavior: u64,
    /// The penalty for slashing due to downtime.
    #[prost(uint64, tag = "5")]
    pub slashing_penalty_downtime: u64,
    /// The number of blocks in the window to check for downtime.
    #[prost(uint64, tag = "6")]
    pub signed_blocks_window_len: u64,
    /// The maximum number of blocks in the window each validator can miss signing without slashing.
    #[prost(uint64, tag = "7")]
    pub missed_blocks_maximum: u64,
    /// The minimum amount of stake required for a validator to be indexed by the protocol.
    #[prost(message, optional, tag = "8")]
    pub min_validator_stake: ::core::option::Option<
        super::super::super::num::v1::Amount,
    >,
    /// The number of blocks that must elapse before an unbonding note can be claimed.
    #[prost(uint64, tag = "9")]
    pub unbonding_delay: u64,
}
impl ::prost::Name for StakeParameters {
    const NAME: &'static str = "StakeParameters";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Genesis data for the staking component.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenesisContent {
    /// The configuration parameters for the staking component present at genesis
    #[prost(message, optional, tag = "1")]
    pub stake_params: ::core::option::Option<StakeParameters>,
    /// The list of validators present at genesis.
    #[prost(message, repeated, tag = "2")]
    pub validators: ::prost::alloc::vec::Vec<Validator>,
}
impl ::prost::Name for GenesisContent {
    const NAME: &'static str = "GenesisContent";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventTombstoneValidator {
    /// The height at which the offense occurred.
    #[prost(uint64, tag = "1")]
    pub evidence_height: u64,
    /// The height at which the evidence was processed.
    #[prost(uint64, tag = "2")]
    pub current_height: u64,
    /// The validator identity key.
    #[prost(message, optional, tag = "4")]
    pub identity_key: ::core::option::Option<super::super::super::keys::v1::IdentityKey>,
    /// The validator's Comet address.
    #[prost(bytes = "vec", tag = "5")]
    pub address: ::prost::alloc::vec::Vec<u8>,
    /// The voting power for the validator.
    #[prost(uint64, tag = "6")]
    pub voting_power: u64,
}
impl ::prost::Name for EventTombstoneValidator {
    const NAME: &'static str = "EventTombstoneValidator";
    const PACKAGE: &'static str = "penumbra.core.component.stake.v1";
    fn full_name() -> ::prost::alloc::string::String {
        ::prost::alloc::format!("penumbra.core.component.stake.v1.{}", Self::NAME)
    }
}
/// Generated client implementations.
#[cfg(feature = "rpc")]
pub mod query_service_client {
    #![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
    use tonic::codegen::*;
    use tonic::codegen::http::Uri;
    /// Query operations for the staking component.
    #[derive(Debug, Clone)]
    pub struct QueryServiceClient<T> {
        inner: tonic::client::Grpc<T>,
    }
    impl QueryServiceClient<tonic::transport::Channel> {
        /// Attempt to create a new client by connecting to a given endpoint.
        pub async fn connect<D>(dst: D) -> Result<Self, tonic::transport::Error>
        where
            D: TryInto<tonic::transport::Endpoint>,
            D::Error: Into<StdError>,
        {
            let conn = tonic::transport::Endpoint::new(dst)?.connect().await?;
            Ok(Self::new(conn))
        }
    }
    impl<T> QueryServiceClient<T>
    where
        T: tonic::client::GrpcService<tonic::body::BoxBody>,
        T::Error: Into<StdError>,
        T::ResponseBody: Body<Data = Bytes> + Send + 'static,
        <T::ResponseBody as Body>::Error: Into<StdError> + Send,
    {
        pub fn new(inner: T) -> Self {
            let inner = tonic::client::Grpc::new(inner);
            Self { inner }
        }
        pub fn with_origin(inner: T, origin: Uri) -> Self {
            let inner = tonic::client::Grpc::with_origin(inner, origin);
            Self { inner }
        }
        pub fn with_interceptor<F>(
            inner: T,
            interceptor: F,
        ) -> QueryServiceClient<InterceptedService<T, F>>
        where
            F: tonic::service::Interceptor,
            T::ResponseBody: Default,
            T: tonic::codegen::Service<
                http::Request<tonic::body::BoxBody>,
                Response = http::Response<
                    <T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
                >,
            >,
            <T as tonic::codegen::Service<
                http::Request<tonic::body::BoxBody>,
            >>::Error: Into<StdError> + Send + Sync,
        {
            QueryServiceClient::new(InterceptedService::new(inner, interceptor))
        }
        /// Compress requests with the given encoding.
        ///
        /// This requires the server to support it otherwise it might respond with an
        /// error.
        #[must_use]
        pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
            self.inner = self.inner.send_compressed(encoding);
            self
        }
        /// Enable decompressing responses.
        #[must_use]
        pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
            self.inner = self.inner.accept_compressed(encoding);
            self
        }
        /// Limits the maximum size of a decoded message.
        ///
        /// Default: `4MB`
        #[must_use]
        pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
            self.inner = self.inner.max_decoding_message_size(limit);
            self
        }
        /// Limits the maximum size of an encoded message.
        ///
        /// Default: `usize::MAX`
        #[must_use]
        pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
            self.inner = self.inner.max_encoding_message_size(limit);
            self
        }
        /// Queries for information about a specific validator.
        pub async fn get_validator_info(
            &mut self,
            request: impl tonic::IntoRequest<super::GetValidatorInfoRequest>,
        ) -> std::result::Result<
            tonic::Response<super::GetValidatorInfoResponse>,
            tonic::Status,
        > {
            self.inner
                .ready()
                .await
                .map_err(|e| {
                    tonic::Status::new(
                        tonic::Code::Unknown,
                        format!("Service was not ready: {}", e.into()),
                    )
                })?;
            let codec = tonic::codec::ProstCodec::default();
            let path = http::uri::PathAndQuery::from_static(
                "/penumbra.core.component.stake.v1.QueryService/GetValidatorInfo",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new(
                        "penumbra.core.component.stake.v1.QueryService",
                        "GetValidatorInfo",
                    ),
                );
            self.inner.unary(req, path, codec).await
        }
        /// Queries the current validator set, with filtering.
        pub async fn validator_info(
            &mut self,
            request: impl tonic::IntoRequest<super::ValidatorInfoRequest>,
        ) -> std::result::Result<
            tonic::Response<tonic::codec::Streaming<super::ValidatorInfoResponse>>,
            tonic::Status,
        > {
            self.inner
                .ready()
                .await
                .map_err(|e| {
                    tonic::Status::new(
                        tonic::Code::Unknown,
                        format!("Service was not ready: {}", e.into()),
                    )
                })?;
            let codec = tonic::codec::ProstCodec::default();
            let path = http::uri::PathAndQuery::from_static(
                "/penumbra.core.component.stake.v1.QueryService/ValidatorInfo",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new(
                        "penumbra.core.component.stake.v1.QueryService",
                        "ValidatorInfo",
                    ),
                );
            self.inner.server_streaming(req, path, codec).await
        }
        pub async fn validator_status(
            &mut self,
            request: impl tonic::IntoRequest<super::ValidatorStatusRequest>,
        ) -> std::result::Result<
            tonic::Response<super::ValidatorStatusResponse>,
            tonic::Status,
        > {
            self.inner
                .ready()
                .await
                .map_err(|e| {
                    tonic::Status::new(
                        tonic::Code::Unknown,
                        format!("Service was not ready: {}", e.into()),
                    )
                })?;
            let codec = tonic::codec::ProstCodec::default();
            let path = http::uri::PathAndQuery::from_static(
                "/penumbra.core.component.stake.v1.QueryService/ValidatorStatus",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new(
                        "penumbra.core.component.stake.v1.QueryService",
                        "ValidatorStatus",
                    ),
                );
            self.inner.unary(req, path, codec).await
        }
        pub async fn validator_penalty(
            &mut self,
            request: impl tonic::IntoRequest<super::ValidatorPenaltyRequest>,
        ) -> std::result::Result<
            tonic::Response<super::ValidatorPenaltyResponse>,
            tonic::Status,
        > {
            self.inner
                .ready()
                .await
                .map_err(|e| {
                    tonic::Status::new(
                        tonic::Code::Unknown,
                        format!("Service was not ready: {}", e.into()),
                    )
                })?;
            let codec = tonic::codec::ProstCodec::default();
            let path = http::uri::PathAndQuery::from_static(
                "/penumbra.core.component.stake.v1.QueryService/ValidatorPenalty",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new(
                        "penumbra.core.component.stake.v1.QueryService",
                        "ValidatorPenalty",
                    ),
                );
            self.inner.unary(req, path, codec).await
        }
        pub async fn current_validator_rate(
            &mut self,
            request: impl tonic::IntoRequest<super::CurrentValidatorRateRequest>,
        ) -> std::result::Result<
            tonic::Response<super::CurrentValidatorRateResponse>,
            tonic::Status,
        > {
            self.inner
                .ready()
                .await
                .map_err(|e| {
                    tonic::Status::new(
                        tonic::Code::Unknown,
                        format!("Service was not ready: {}", e.into()),
                    )
                })?;
            let codec = tonic::codec::ProstCodec::default();
            let path = http::uri::PathAndQuery::from_static(
                "/penumbra.core.component.stake.v1.QueryService/CurrentValidatorRate",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new(
                        "penumbra.core.component.stake.v1.QueryService",
                        "CurrentValidatorRate",
                    ),
                );
            self.inner.unary(req, path, codec).await
        }
        pub async fn validator_uptime(
            &mut self,
            request: impl tonic::IntoRequest<super::ValidatorUptimeRequest>,
        ) -> std::result::Result<
            tonic::Response<super::ValidatorUptimeResponse>,
            tonic::Status,
        > {
            self.inner
                .ready()
                .await
                .map_err(|e| {
                    tonic::Status::new(
                        tonic::Code::Unknown,
                        format!("Service was not ready: {}", e.into()),
                    )
                })?;
            let codec = tonic::codec::ProstCodec::default();
            let path = http::uri::PathAndQuery::from_static(
                "/penumbra.core.component.stake.v1.QueryService/ValidatorUptime",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new(
                        "penumbra.core.component.stake.v1.QueryService",
                        "ValidatorUptime",
                    ),
                );
            self.inner.unary(req, path, codec).await
        }
    }
}
/// Generated server implementations.
#[cfg(feature = "rpc")]
pub mod query_service_server {
    #![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
    use tonic::codegen::*;
    /// Generated trait containing gRPC methods that should be implemented for use with QueryServiceServer.
    #[async_trait]
    pub trait QueryService: Send + Sync + 'static {
        /// Queries for information about a specific validator.
        async fn get_validator_info(
            &self,
            request: tonic::Request<super::GetValidatorInfoRequest>,
        ) -> std::result::Result<
            tonic::Response<super::GetValidatorInfoResponse>,
            tonic::Status,
        >;
        /// Server streaming response type for the ValidatorInfo method.
        type ValidatorInfoStream: tonic::codegen::tokio_stream::Stream<
                Item = std::result::Result<super::ValidatorInfoResponse, tonic::Status>,
            >
            + Send
            + 'static;
        /// Queries the current validator set, with filtering.
        async fn validator_info(
            &self,
            request: tonic::Request<super::ValidatorInfoRequest>,
        ) -> std::result::Result<
            tonic::Response<Self::ValidatorInfoStream>,
            tonic::Status,
        >;
        async fn validator_status(
            &self,
            request: tonic::Request<super::ValidatorStatusRequest>,
        ) -> std::result::Result<
            tonic::Response<super::ValidatorStatusResponse>,
            tonic::Status,
        >;
        async fn validator_penalty(
            &self,
            request: tonic::Request<super::ValidatorPenaltyRequest>,
        ) -> std::result::Result<
            tonic::Response<super::ValidatorPenaltyResponse>,
            tonic::Status,
        >;
        async fn current_validator_rate(
            &self,
            request: tonic::Request<super::CurrentValidatorRateRequest>,
        ) -> std::result::Result<
            tonic::Response<super::CurrentValidatorRateResponse>,
            tonic::Status,
        >;
        async fn validator_uptime(
            &self,
            request: tonic::Request<super::ValidatorUptimeRequest>,
        ) -> std::result::Result<
            tonic::Response<super::ValidatorUptimeResponse>,
            tonic::Status,
        >;
    }
    /// Query operations for the staking component.
    #[derive(Debug)]
    pub struct QueryServiceServer<T: QueryService> {
        inner: _Inner<T>,
        accept_compression_encodings: EnabledCompressionEncodings,
        send_compression_encodings: EnabledCompressionEncodings,
        max_decoding_message_size: Option<usize>,
        max_encoding_message_size: Option<usize>,
    }
    struct _Inner<T>(Arc<T>);
    impl<T: QueryService> QueryServiceServer<T> {
        pub fn new(inner: T) -> Self {
            Self::from_arc(Arc::new(inner))
        }
        pub fn from_arc(inner: Arc<T>) -> Self {
            let inner = _Inner(inner);
            Self {
                inner,
                accept_compression_encodings: Default::default(),
                send_compression_encodings: Default::default(),
                max_decoding_message_size: None,
                max_encoding_message_size: None,
            }
        }
        pub fn with_interceptor<F>(
            inner: T,
            interceptor: F,
        ) -> InterceptedService<Self, F>
        where
            F: tonic::service::Interceptor,
        {
            InterceptedService::new(Self::new(inner), interceptor)
        }
        /// Enable decompressing requests with the given encoding.
        #[must_use]
        pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
            self.accept_compression_encodings.enable(encoding);
            self
        }
        /// Compress responses with the given encoding, if the client supports it.
        #[must_use]
        pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
            self.send_compression_encodings.enable(encoding);
            self
        }
        /// Limits the maximum size of a decoded message.
        ///
        /// Default: `4MB`
        #[must_use]
        pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
            self.max_decoding_message_size = Some(limit);
            self
        }
        /// Limits the maximum size of an encoded message.
        ///
        /// Default: `usize::MAX`
        #[must_use]
        pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
            self.max_encoding_message_size = Some(limit);
            self
        }
    }
    impl<T, B> tonic::codegen::Service<http::Request<B>> for QueryServiceServer<T>
    where
        T: QueryService,
        B: Body + Send + 'static,
        B::Error: Into<StdError> + Send + 'static,
    {
        type Response = http::Response<tonic::body::BoxBody>;
        type Error = std::convert::Infallible;
        type Future = BoxFuture<Self::Response, Self::Error>;
        fn poll_ready(
            &mut self,
            _cx: &mut Context<'_>,
        ) -> Poll<std::result::Result<(), Self::Error>> {
            Poll::Ready(Ok(()))
        }
        fn call(&mut self, req: http::Request<B>) -> Self::Future {
            let inner = self.inner.clone();
            match req.uri().path() {
                "/penumbra.core.component.stake.v1.QueryService/GetValidatorInfo" => {
                    #[allow(non_camel_case_types)]
                    struct GetValidatorInfoSvc<T: QueryService>(pub Arc<T>);
                    impl<
                        T: QueryService,
                    > tonic::server::UnaryService<super::GetValidatorInfoRequest>
                    for GetValidatorInfoSvc<T> {
                        type Response = super::GetValidatorInfoResponse;
                        type Future = BoxFuture<
                            tonic::Response<Self::Response>,
                            tonic::Status,
                        >;
                        fn call(
                            &mut self,
                            request: tonic::Request<super::GetValidatorInfoRequest>,
                        ) -> Self::Future {
                            let inner = Arc::clone(&self.0);
                            let fut = async move {
                                <T as QueryService>::get_validator_info(&inner, request)
                                    .await
                            };
                            Box::pin(fut)
                        }
                    }
                    let accept_compression_encodings = self.accept_compression_encodings;
                    let send_compression_encodings = self.send_compression_encodings;
                    let max_decoding_message_size = self.max_decoding_message_size;
                    let max_encoding_message_size = self.max_encoding_message_size;
                    let inner = self.inner.clone();
                    let fut = async move {
                        let inner = inner.0;
                        let method = GetValidatorInfoSvc(inner);
                        let codec = tonic::codec::ProstCodec::default();
                        let mut grpc = tonic::server::Grpc::new(codec)
                            .apply_compression_config(
                                accept_compression_encodings,
                                send_compression_encodings,
                            )
                            .apply_max_message_size_config(
                                max_decoding_message_size,
                                max_encoding_message_size,
                            );
                        let res = grpc.unary(method, req).await;
                        Ok(res)
                    };
                    Box::pin(fut)
                }
                "/penumbra.core.component.stake.v1.QueryService/ValidatorInfo" => {
                    #[allow(non_camel_case_types)]
                    struct ValidatorInfoSvc<T: QueryService>(pub Arc<T>);
                    impl<
                        T: QueryService,
                    > tonic::server::ServerStreamingService<super::ValidatorInfoRequest>
                    for ValidatorInfoSvc<T> {
                        type Response = super::ValidatorInfoResponse;
                        type ResponseStream = T::ValidatorInfoStream;
                        type Future = BoxFuture<
                            tonic::Response<Self::ResponseStream>,
                            tonic::Status,
                        >;
                        fn call(
                            &mut self,
                            request: tonic::Request<super::ValidatorInfoRequest>,
                        ) -> Self::Future {
                            let inner = Arc::clone(&self.0);
                            let fut = async move {
                                <T as QueryService>::validator_info(&inner, request).await
                            };
                            Box::pin(fut)
                        }
                    }
                    let accept_compression_encodings = self.accept_compression_encodings;
                    let send_compression_encodings = self.send_compression_encodings;
                    let max_decoding_message_size = self.max_decoding_message_size;
                    let max_encoding_message_size = self.max_encoding_message_size;
                    let inner = self.inner.clone();
                    let fut = async move {
                        let inner = inner.0;
                        let method = ValidatorInfoSvc(inner);
                        let codec = tonic::codec::ProstCodec::default();
                        let mut grpc = tonic::server::Grpc::new(codec)
                            .apply_compression_config(
                                accept_compression_encodings,
                                send_compression_encodings,
                            )
                            .apply_max_message_size_config(
                                max_decoding_message_size,
                                max_encoding_message_size,
                            );
                        let res = grpc.server_streaming(method, req).await;
                        Ok(res)
                    };
                    Box::pin(fut)
                }
                "/penumbra.core.component.stake.v1.QueryService/ValidatorStatus" => {
                    #[allow(non_camel_case_types)]
                    struct ValidatorStatusSvc<T: QueryService>(pub Arc<T>);
                    impl<
                        T: QueryService,
                    > tonic::server::UnaryService<super::ValidatorStatusRequest>
                    for ValidatorStatusSvc<T> {
                        type Response = super::ValidatorStatusResponse;
                        type Future = BoxFuture<
                            tonic::Response<Self::Response>,
                            tonic::Status,
                        >;
                        fn call(
                            &mut self,
                            request: tonic::Request<super::ValidatorStatusRequest>,
                        ) -> Self::Future {
                            let inner = Arc::clone(&self.0);
                            let fut = async move {
                                <T as QueryService>::validator_status(&inner, request).await
                            };
                            Box::pin(fut)
                        }
                    }
                    let accept_compression_encodings = self.accept_compression_encodings;
                    let send_compression_encodings = self.send_compression_encodings;
                    let max_decoding_message_size = self.max_decoding_message_size;
                    let max_encoding_message_size = self.max_encoding_message_size;
                    let inner = self.inner.clone();
                    let fut = async move {
                        let inner = inner.0;
                        let method = ValidatorStatusSvc(inner);
                        let codec = tonic::codec::ProstCodec::default();
                        let mut grpc = tonic::server::Grpc::new(codec)
                            .apply_compression_config(
                                accept_compression_encodings,
                                send_compression_encodings,
                            )
                            .apply_max_message_size_config(
                                max_decoding_message_size,
                                max_encoding_message_size,
                            );
                        let res = grpc.unary(method, req).await;
                        Ok(res)
                    };
                    Box::pin(fut)
                }
                "/penumbra.core.component.stake.v1.QueryService/ValidatorPenalty" => {
                    #[allow(non_camel_case_types)]
                    struct ValidatorPenaltySvc<T: QueryService>(pub Arc<T>);
                    impl<
                        T: QueryService,
                    > tonic::server::UnaryService<super::ValidatorPenaltyRequest>
                    for ValidatorPenaltySvc<T> {
                        type Response = super::ValidatorPenaltyResponse;
                        type Future = BoxFuture<
                            tonic::Response<Self::Response>,
                            tonic::Status,
                        >;
                        fn call(
                            &mut self,
                            request: tonic::Request<super::ValidatorPenaltyRequest>,
                        ) -> Self::Future {
                            let inner = Arc::clone(&self.0);
                            let fut = async move {
                                <T as QueryService>::validator_penalty(&inner, request)
                                    .await
                            };
                            Box::pin(fut)
                        }
                    }
                    let accept_compression_encodings = self.accept_compression_encodings;
                    let send_compression_encodings = self.send_compression_encodings;
                    let max_decoding_message_size = self.max_decoding_message_size;
                    let max_encoding_message_size = self.max_encoding_message_size;
                    let inner = self.inner.clone();
                    let fut = async move {
                        let inner = inner.0;
                        let method = ValidatorPenaltySvc(inner);
                        let codec = tonic::codec::ProstCodec::default();
                        let mut grpc = tonic::server::Grpc::new(codec)
                            .apply_compression_config(
                                accept_compression_encodings,
                                send_compression_encodings,
                            )
                            .apply_max_message_size_config(
                                max_decoding_message_size,
                                max_encoding_message_size,
                            );
                        let res = grpc.unary(method, req).await;
                        Ok(res)
                    };
                    Box::pin(fut)
                }
                "/penumbra.core.component.stake.v1.QueryService/CurrentValidatorRate" => {
                    #[allow(non_camel_case_types)]
                    struct CurrentValidatorRateSvc<T: QueryService>(pub Arc<T>);
                    impl<
                        T: QueryService,
                    > tonic::server::UnaryService<super::CurrentValidatorRateRequest>
                    for CurrentValidatorRateSvc<T> {
                        type Response = super::CurrentValidatorRateResponse;
                        type Future = BoxFuture<
                            tonic::Response<Self::Response>,
                            tonic::Status,
                        >;
                        fn call(
                            &mut self,
                            request: tonic::Request<super::CurrentValidatorRateRequest>,
                        ) -> Self::Future {
                            let inner = Arc::clone(&self.0);
                            let fut = async move {
                                <T as QueryService>::current_validator_rate(&inner, request)
                                    .await
                            };
                            Box::pin(fut)
                        }
                    }
                    let accept_compression_encodings = self.accept_compression_encodings;
                    let send_compression_encodings = self.send_compression_encodings;
                    let max_decoding_message_size = self.max_decoding_message_size;
                    let max_encoding_message_size = self.max_encoding_message_size;
                    let inner = self.inner.clone();
                    let fut = async move {
                        let inner = inner.0;
                        let method = CurrentValidatorRateSvc(inner);
                        let codec = tonic::codec::ProstCodec::default();
                        let mut grpc = tonic::server::Grpc::new(codec)
                            .apply_compression_config(
                                accept_compression_encodings,
                                send_compression_encodings,
                            )
                            .apply_max_message_size_config(
                                max_decoding_message_size,
                                max_encoding_message_size,
                            );
                        let res = grpc.unary(method, req).await;
                        Ok(res)
                    };
                    Box::pin(fut)
                }
                "/penumbra.core.component.stake.v1.QueryService/ValidatorUptime" => {
                    #[allow(non_camel_case_types)]
                    struct ValidatorUptimeSvc<T: QueryService>(pub Arc<T>);
                    impl<
                        T: QueryService,
                    > tonic::server::UnaryService<super::ValidatorUptimeRequest>
                    for ValidatorUptimeSvc<T> {
                        type Response = super::ValidatorUptimeResponse;
                        type Future = BoxFuture<
                            tonic::Response<Self::Response>,
                            tonic::Status,
                        >;
                        fn call(
                            &mut self,
                            request: tonic::Request<super::ValidatorUptimeRequest>,
                        ) -> Self::Future {
                            let inner = Arc::clone(&self.0);
                            let fut = async move {
                                <T as QueryService>::validator_uptime(&inner, request).await
                            };
                            Box::pin(fut)
                        }
                    }
                    let accept_compression_encodings = self.accept_compression_encodings;
                    let send_compression_encodings = self.send_compression_encodings;
                    let max_decoding_message_size = self.max_decoding_message_size;
                    let max_encoding_message_size = self.max_encoding_message_size;
                    let inner = self.inner.clone();
                    let fut = async move {
                        let inner = inner.0;
                        let method = ValidatorUptimeSvc(inner);
                        let codec = tonic::codec::ProstCodec::default();
                        let mut grpc = tonic::server::Grpc::new(codec)
                            .apply_compression_config(
                                accept_compression_encodings,
                                send_compression_encodings,
                            )
                            .apply_max_message_size_config(
                                max_decoding_message_size,
                                max_encoding_message_size,
                            );
                        let res = grpc.unary(method, req).await;
                        Ok(res)
                    };
                    Box::pin(fut)
                }
                _ => {
                    Box::pin(async move {
                        Ok(
                            http::Response::builder()
                                .status(200)
                                .header("grpc-status", "12")
                                .header("content-type", "application/grpc")
                                .body(empty_body())
                                .unwrap(),
                        )
                    })
                }
            }
        }
    }
    impl<T: QueryService> Clone for QueryServiceServer<T> {
        fn clone(&self) -> Self {
            let inner = self.inner.clone();
            Self {
                inner,
                accept_compression_encodings: self.accept_compression_encodings,
                send_compression_encodings: self.send_compression_encodings,
                max_decoding_message_size: self.max_decoding_message_size,
                max_encoding_message_size: self.max_encoding_message_size,
            }
        }
    }
    impl<T: QueryService> Clone for _Inner<T> {
        fn clone(&self) -> Self {
            Self(Arc::clone(&self.0))
        }
    }
    impl<T: std::fmt::Debug> std::fmt::Debug for _Inner<T> {
        fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
            write!(f, "{:?}", self.0)
        }
    }
    impl<T: QueryService> tonic::server::NamedService for QueryServiceServer<T> {
        const NAME: &'static str = "penumbra.core.component.stake.v1.QueryService";
    }
}