penumbra_stake/
event.rs

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
use crate::{
    rate::RateData,
    validator::{BondingState, State, Validator},
    Delegate, IdentityKey, Penalty, Undelegate,
};
use anyhow::{anyhow, Context as _};
use penumbra_num::Amount;
use penumbra_proto::{core::component::stake::v1 as pb, DomainType, Name as _};
use tendermint::abci::types::Misbehavior;

#[derive(Clone, Debug)]
pub struct EventValidatorStateChange {
    pub identity_key: IdentityKey,
    pub state: State,
}

impl TryFrom<pb::EventValidatorStateChange> for EventValidatorStateChange {
    type Error = anyhow::Error;

    fn try_from(value: pb::EventValidatorStateChange) -> Result<Self, Self::Error> {
        fn inner(
            value: pb::EventValidatorStateChange,
        ) -> anyhow::Result<EventValidatorStateChange> {
            Ok(EventValidatorStateChange {
                identity_key: value
                    .identity_key
                    .ok_or(anyhow!("missing `identity_key`"))?
                    .try_into()?,
                state: value.state.ok_or(anyhow!("missing `state`"))?.try_into()?,
            })
        }
        inner(value).context(format!("parsing {}", pb::EventValidatorStateChange::NAME))
    }
}

impl From<EventValidatorStateChange> for pb::EventValidatorStateChange {
    fn from(value: EventValidatorStateChange) -> Self {
        Self {
            identity_key: Some(value.identity_key.into()),
            state: Some(value.state.into()),
        }
    }
}

impl DomainType for EventValidatorStateChange {
    type Proto = pb::EventValidatorStateChange;
}

#[derive(Clone, Debug)]
pub struct EventValidatorVotingPowerChange {
    pub identity_key: IdentityKey,
    pub voting_power: Amount,
}

impl TryFrom<pb::EventValidatorVotingPowerChange> for EventValidatorVotingPowerChange {
    type Error = anyhow::Error;

    fn try_from(value: pb::EventValidatorVotingPowerChange) -> Result<Self, Self::Error> {
        fn inner(
            value: pb::EventValidatorVotingPowerChange,
        ) -> anyhow::Result<EventValidatorVotingPowerChange> {
            Ok(EventValidatorVotingPowerChange {
                identity_key: value
                    .identity_key
                    .ok_or(anyhow!("missing `identity_key`"))?
                    .try_into()?,
                voting_power: value
                    .voting_power
                    .ok_or(anyhow!("missing `voting_power`"))?
                    .try_into()?,
            })
        }
        inner(value).context(format!(
            "parsing {}",
            pb::EventValidatorVotingPowerChange::NAME
        ))
    }
}

impl From<EventValidatorVotingPowerChange> for pb::EventValidatorVotingPowerChange {
    fn from(value: EventValidatorVotingPowerChange) -> Self {
        Self {
            identity_key: Some(value.identity_key.into()),
            voting_power: Some(value.voting_power.into()),
        }
    }
}

impl DomainType for EventValidatorVotingPowerChange {
    type Proto = pb::EventValidatorVotingPowerChange;
}

#[derive(Clone, Debug)]
pub struct EventValidatorBondingStateChange {
    pub identity_key: IdentityKey,
    pub bonding_state: BondingState,
}

impl TryFrom<pb::EventValidatorBondingStateChange> for EventValidatorBondingStateChange {
    type Error = anyhow::Error;

    fn try_from(value: pb::EventValidatorBondingStateChange) -> Result<Self, Self::Error> {
        fn inner(
            value: pb::EventValidatorBondingStateChange,
        ) -> anyhow::Result<EventValidatorBondingStateChange> {
            Ok(EventValidatorBondingStateChange {
                identity_key: value
                    .identity_key
                    .ok_or(anyhow!("missing `identity_key`"))?
                    .try_into()?,
                bonding_state: value
                    .bonding_state
                    .ok_or(anyhow!("missing `bonding_state`"))?
                    .try_into()?,
            })
        }
        inner(value).context(format!(
            "parsing {}",
            pb::EventValidatorBondingStateChange::NAME
        ))
    }
}

impl From<EventValidatorBondingStateChange> for pb::EventValidatorBondingStateChange {
    fn from(value: EventValidatorBondingStateChange) -> Self {
        Self {
            identity_key: Some(value.identity_key.into()),
            bonding_state: Some(value.bonding_state.into()),
        }
    }
}

impl DomainType for EventValidatorBondingStateChange {
    type Proto = pb::EventValidatorBondingStateChange;
}

#[derive(Clone, Debug)]
pub struct EventRateDataChange {
    pub identity_key: IdentityKey,
    pub rate_data: RateData,
}

impl TryFrom<pb::EventRateDataChange> for EventRateDataChange {
    type Error = anyhow::Error;

    fn try_from(value: pb::EventRateDataChange) -> Result<Self, Self::Error> {
        fn inner(value: pb::EventRateDataChange) -> anyhow::Result<EventRateDataChange> {
            Ok(EventRateDataChange {
                identity_key: value
                    .identity_key
                    .ok_or(anyhow!("missing `identity_key`"))?
                    .try_into()?,
                rate_data: value
                    .rate_data
                    .ok_or(anyhow!("missing `rate_data`"))?
                    .try_into()?,
            })
        }
        inner(value).context(format!("parsing {}", pb::EventRateDataChange::NAME))
    }
}

impl From<EventRateDataChange> for pb::EventRateDataChange {
    fn from(value: EventRateDataChange) -> Self {
        Self {
            identity_key: Some(value.identity_key.into()),
            rate_data: Some(value.rate_data.into()),
        }
    }
}

impl DomainType for EventRateDataChange {
    type Proto = pb::EventRateDataChange;
}

#[derive(Clone, Debug)]
pub struct EventValidatorDefinitionUpload {
    pub validator: Validator,
}

impl TryFrom<pb::EventValidatorDefinitionUpload> for EventValidatorDefinitionUpload {
    type Error = anyhow::Error;

    fn try_from(value: pb::EventValidatorDefinitionUpload) -> Result<Self, Self::Error> {
        fn inner(
            value: pb::EventValidatorDefinitionUpload,
        ) -> anyhow::Result<EventValidatorDefinitionUpload> {
            Ok(EventValidatorDefinitionUpload {
                validator: value
                    .validator
                    .ok_or(anyhow!("missing `validator`"))?
                    .try_into()?,
            })
        }
        inner(value).context(format!(
            "parsing {}",
            pb::EventValidatorDefinitionUpload::NAME
        ))
    }
}

impl From<EventValidatorDefinitionUpload> for pb::EventValidatorDefinitionUpload {
    fn from(value: EventValidatorDefinitionUpload) -> Self {
        Self {
            validator: Some(value.validator.into()),
        }
    }
}

impl DomainType for EventValidatorDefinitionUpload {
    type Proto = pb::EventValidatorDefinitionUpload;
}

#[derive(Clone, Debug)]
pub struct EventValidatorMissedBlock {
    pub identity_key: IdentityKey,
}

impl TryFrom<pb::EventValidatorMissedBlock> for EventValidatorMissedBlock {
    type Error = anyhow::Error;

    fn try_from(value: pb::EventValidatorMissedBlock) -> Result<Self, Self::Error> {
        fn inner(
            value: pb::EventValidatorMissedBlock,
        ) -> anyhow::Result<EventValidatorMissedBlock> {
            Ok(EventValidatorMissedBlock {
                identity_key: value
                    .identity_key
                    .ok_or(anyhow!("missing `identity_key`"))?
                    .try_into()?,
            })
        }
        inner(value).context(format!("parsing {}", pb::EventValidatorMissedBlock::NAME))
    }
}

impl From<EventValidatorMissedBlock> for pb::EventValidatorMissedBlock {
    fn from(value: EventValidatorMissedBlock) -> Self {
        Self {
            identity_key: Some(value.identity_key.into()),
        }
    }
}

impl DomainType for EventValidatorMissedBlock {
    type Proto = pb::EventValidatorMissedBlock;
}

#[derive(Clone, Debug)]
pub struct EventDelegate {
    pub identity_key: IdentityKey,
    pub amount: Amount,
}

impl From<&Delegate> for EventDelegate {
    fn from(value: &Delegate) -> Self {
        Self {
            identity_key: value.validator_identity,
            amount: value.unbonded_amount,
        }
    }
}

impl TryFrom<pb::EventDelegate> for EventDelegate {
    type Error = anyhow::Error;

    fn try_from(value: pb::EventDelegate) -> Result<Self, Self::Error> {
        fn inner(value: pb::EventDelegate) -> anyhow::Result<EventDelegate> {
            Ok(EventDelegate {
                identity_key: value
                    .identity_key
                    .ok_or(anyhow!("missing `identity_key`"))?
                    .try_into()?,
                amount: value
                    .amount
                    .ok_or(anyhow!("missing `amount`"))?
                    .try_into()?,
            })
        }
        inner(value).context(format!("parsing {}", pb::EventDelegate::NAME))
    }
}

impl From<EventDelegate> for pb::EventDelegate {
    fn from(value: EventDelegate) -> Self {
        Self {
            identity_key: Some(value.identity_key.into()),
            amount: Some(value.amount.into()),
        }
    }
}

impl DomainType for EventDelegate {
    type Proto = pb::EventDelegate;
}

#[derive(Clone, Debug)]
pub struct EventUndelegate {
    pub identity_key: IdentityKey,
    pub amount: Amount,
}

impl From<&Undelegate> for EventUndelegate {
    fn from(value: &Undelegate) -> Self {
        Self {
            identity_key: value.validator_identity,
            amount: value.unbonded_amount,
        }
    }
}

impl TryFrom<pb::EventUndelegate> for EventUndelegate {
    type Error = anyhow::Error;

    fn try_from(value: pb::EventUndelegate) -> Result<Self, Self::Error> {
        fn inner(value: pb::EventUndelegate) -> anyhow::Result<EventUndelegate> {
            Ok(EventUndelegate {
                identity_key: value
                    .identity_key
                    .ok_or(anyhow!("missing `identity_key`"))?
                    .try_into()?,
                amount: value
                    .amount
                    .ok_or(anyhow!("missing `amount`"))?
                    .try_into()?,
            })
        }
        inner(value).context(format!("parsing {}", pb::EventUndelegate::NAME))
    }
}

impl From<EventUndelegate> for pb::EventUndelegate {
    fn from(value: EventUndelegate) -> Self {
        Self {
            identity_key: Some(value.identity_key.into()),
            amount: Some(value.amount.into()),
        }
    }
}

impl DomainType for EventUndelegate {
    type Proto = pb::EventUndelegate;
}

#[derive(Clone, Debug)]
pub struct EventTombstoneValidator {
    pub evidence_height: u64,
    pub current_height: u64,
    pub identity_key: IdentityKey,
    pub address: Vec<u8>,
    pub voting_power: u64,
}

impl EventTombstoneValidator {
    pub fn from_evidence(
        current_height: u64,
        identity_key: IdentityKey,
        evidence: &Misbehavior,
    ) -> Self {
        Self {
            evidence_height: evidence.height.value(),
            current_height,
            identity_key,
            address: evidence.validator.address.to_vec(),
            voting_power: evidence.validator.power.value(),
        }
    }
}

impl TryFrom<pb::EventTombstoneValidator> for EventTombstoneValidator {
    type Error = anyhow::Error;

    fn try_from(value: pb::EventTombstoneValidator) -> Result<Self, Self::Error> {
        fn inner(value: pb::EventTombstoneValidator) -> anyhow::Result<EventTombstoneValidator> {
            Ok(EventTombstoneValidator {
                evidence_height: value.evidence_height,
                current_height: value.current_height,
                identity_key: value
                    .identity_key
                    .ok_or(anyhow!("missing `identity_key`"))?
                    .try_into()?,
                address: value.address,
                voting_power: value.voting_power,
            })
        }
        inner(value).context(format!("parsing {}", pb::EventTombstoneValidator::NAME))
    }
}

impl From<EventTombstoneValidator> for pb::EventTombstoneValidator {
    fn from(value: EventTombstoneValidator) -> Self {
        Self {
            evidence_height: value.evidence_height,
            current_height: value.current_height,
            identity_key: Some(value.identity_key.into()),
            address: value.address,
            voting_power: value.voting_power,
        }
    }
}

impl DomainType for EventTombstoneValidator {
    type Proto = pb::EventTombstoneValidator;
}

#[derive(Clone, Debug)]
pub struct EventSlashingPenaltyApplied {
    pub identity_key: IdentityKey,
    pub epoch_index: u64,
    pub new_penalty: Penalty,
}

impl TryFrom<pb::EventSlashingPenaltyApplied> for EventSlashingPenaltyApplied {
    type Error = anyhow::Error;

    fn try_from(value: pb::EventSlashingPenaltyApplied) -> Result<Self, Self::Error> {
        fn inner(
            value: pb::EventSlashingPenaltyApplied,
        ) -> anyhow::Result<EventSlashingPenaltyApplied> {
            Ok(EventSlashingPenaltyApplied {
                identity_key: value
                    .identity_key
                    .ok_or(anyhow!("missing `identity_key`"))?
                    .try_into()?,
                epoch_index: value.epoch_index,
                new_penalty: value
                    .new_penalty
                    .ok_or(anyhow!("missing `new_penalty`"))?
                    .try_into()?,
            })
        }
        inner(value).context(format!("parsing {}", pb::EventSlashingPenaltyApplied::NAME))
    }
}

impl From<EventSlashingPenaltyApplied> for pb::EventSlashingPenaltyApplied {
    fn from(value: EventSlashingPenaltyApplied) -> Self {
        Self {
            identity_key: Some(value.identity_key.into()),
            epoch_index: value.epoch_index,
            new_penalty: Some(value.new_penalty.into()),
        }
    }
}

impl DomainType for EventSlashingPenaltyApplied {
    type Proto = pb::EventSlashingPenaltyApplied;
}