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
// This file was code-generated using an experimental CDDL to rust tool:
// https://github.com/dcSpark/cddl-codegen

pub mod cbor_encodings;
pub mod serialization;

use crate::address::RewardAccount;
use crate::assets::Coin;
use crate::block::ProtocolVersion;
use crate::certs::{CommitteeColdCredential, Url};
use crate::crypto::{AnchorDocHash, Ed25519KeyHash, ScriptHash, TransactionHash};
use crate::{Epoch, ProtocolParamUpdate, UnitInterval};
use cbor_encodings::{
    AnchorEncoding, CommitteeEncoding, ConstitutionEncoding, GovActionIdEncoding,
    HardForkInitiationActionEncoding, NewCommitteeEncoding, NewConstitutionEncoding,
    NoConfidenceEncoding, ParameterChangeActionEncoding, ProposalProcedureEncoding,
    TreasuryWithdrawalsActionEncoding, VotingProcedureEncoding,
};

use cml_core::ordered_hash_map::OrderedHashMap;
use cml_core::serialization::{LenEncoding, StringEncoding};
use std::collections::BTreeMap;

#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, schemars::JsonSchema)]
pub struct Anchor {
    pub anchor_url: Url,
    pub anchor_doc_hash: AnchorDocHash,
    #[serde(skip)]
    pub encodings: Option<AnchorEncoding>,
}

impl Anchor {
    pub fn new(anchor_url: Url, anchor_doc_hash: AnchorDocHash) -> Self {
        Self {
            anchor_url,
            anchor_doc_hash,
            encodings: None,
        }
    }
}

#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, schemars::JsonSchema)]
pub struct Committee {
    pub credentials: OrderedHashMap<CommitteeColdCredential, Epoch>,
    pub unit_interval: UnitInterval,
    #[serde(skip)]
    pub encodings: Option<CommitteeEncoding>,
}

impl Committee {
    pub fn new(
        credentials: OrderedHashMap<CommitteeColdCredential, Epoch>,
        unit_interval: UnitInterval,
    ) -> Self {
        Self {
            credentials,
            unit_interval,
            encodings: None,
        }
    }
}

#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, schemars::JsonSchema)]
pub struct Constitution {
    pub anchor: Anchor,
    pub script_hash: Option<ScriptHash>,
    #[serde(skip)]
    pub encodings: Option<ConstitutionEncoding>,
}

impl Constitution {
    pub fn new(anchor: Anchor, script_hash: Option<ScriptHash>) -> Self {
        Self {
            anchor,
            script_hash,
            encodings: None,
        }
    }
}

#[allow(clippy::large_enum_variant)]
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, schemars::JsonSchema)]
pub enum GovAction {
    ParameterChangeAction(ParameterChangeAction),
    HardForkInitiationAction(HardForkInitiationAction),
    TreasuryWithdrawalsAction(TreasuryWithdrawalsAction),
    NoConfidence(NoConfidence),
    NewCommittee(NewCommittee),
    NewConstitution(NewConstitution),
    InfoAction {
        #[serde(skip)]
        i6_encoding: Option<cbor_event::Sz>,
        #[serde(skip)]
        len_encoding: LenEncoding,
    },
}

impl GovAction {
    pub fn new_parameter_change_action(
        gov_action_id: Option<GovActionId>,
        protocol_param_update: ProtocolParamUpdate,
    ) -> Self {
        Self::ParameterChangeAction(ParameterChangeAction::new(
            gov_action_id,
            protocol_param_update,
        ))
    }

    pub fn new_hard_fork_initiation_action(
        action_id: Option<GovActionId>,
        version: ProtocolVersion,
    ) -> Self {
        Self::HardForkInitiationAction(HardForkInitiationAction::new(action_id, version))
    }

    pub fn new_treasury_withdrawals_action(
        withdrawal: OrderedHashMap<RewardAccount, Coin>,
    ) -> Self {
        Self::TreasuryWithdrawalsAction(TreasuryWithdrawalsAction::new(withdrawal))
    }

    pub fn new_no_confidence(action_id: Option<GovActionId>) -> Self {
        Self::NoConfidence(NoConfidence::new(action_id))
    }

    pub fn new_new_committee(
        action_id: Option<GovActionId>,
        cold_credentials: Vec<CommitteeColdCredential>,
        committee: Committee,
    ) -> Self {
        Self::NewCommittee(NewCommittee::new(action_id, cold_credentials, committee))
    }

    pub fn new_new_constitution(
        action_id: Option<GovActionId>,
        constitution: Constitution,
    ) -> Self {
        Self::NewConstitution(NewConstitution::new(action_id, constitution))
    }

    pub fn new_info_action() -> Self {
        Self::InfoAction {
            i6_encoding: None,
            len_encoding: LenEncoding::default(),
        }
    }
}

#[derive(
    Clone, Debug, serde::Deserialize, serde::Serialize, schemars::JsonSchema, derivative::Derivative,
)]
#[derivative(Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct GovActionId {
    pub transaction_id: TransactionHash,
    pub gov_action_index: u64,
    #[derivative(
        PartialEq = "ignore",
        Ord = "ignore",
        PartialOrd = "ignore",
        Hash = "ignore"
    )]
    #[serde(skip)]
    pub encodings: Option<GovActionIdEncoding>,
}

impl GovActionId {
    pub fn new(transaction_id: TransactionHash, gov_action_index: u64) -> Self {
        Self {
            transaction_id,
            gov_action_index,
            encodings: None,
        }
    }
}

#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, schemars::JsonSchema)]
pub struct HardForkInitiationAction {
    pub action_id: Option<GovActionId>,
    pub version: ProtocolVersion,
    #[serde(skip)]
    pub encodings: Option<HardForkInitiationActionEncoding>,
}

impl HardForkInitiationAction {
    pub fn new(action_id: Option<GovActionId>, version: ProtocolVersion) -> Self {
        Self {
            action_id,
            version,
            encodings: None,
        }
    }
}

#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, schemars::JsonSchema)]
pub struct NewCommittee {
    pub action_id: Option<GovActionId>,
    pub cold_credentials: Vec<CommitteeColdCredential>,
    pub committee: Committee,
    #[serde(skip)]
    pub encodings: Option<NewCommitteeEncoding>,
}

impl NewCommittee {
    pub fn new(
        action_id: Option<GovActionId>,
        cold_credentials: Vec<CommitteeColdCredential>,
        committee: Committee,
    ) -> Self {
        Self {
            action_id,
            cold_credentials,
            committee,
            encodings: None,
        }
    }
}

#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, schemars::JsonSchema)]
pub struct NewConstitution {
    pub action_id: Option<GovActionId>,
    pub constitution: Constitution,
    #[serde(skip)]
    pub encodings: Option<NewConstitutionEncoding>,
}

impl NewConstitution {
    pub fn new(action_id: Option<GovActionId>, constitution: Constitution) -> Self {
        Self {
            action_id,
            constitution,
            encodings: None,
        }
    }
}

#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, schemars::JsonSchema)]
pub struct NoConfidence {
    pub action_id: Option<GovActionId>,
    #[serde(skip)]
    pub encodings: Option<NoConfidenceEncoding>,
}

impl NoConfidence {
    pub fn new(action_id: Option<GovActionId>) -> Self {
        Self {
            action_id,
            encodings: None,
        }
    }
}

#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, schemars::JsonSchema)]
pub struct ParameterChangeAction {
    pub gov_action_id: Option<GovActionId>,
    pub protocol_param_update: ProtocolParamUpdate,
    #[serde(skip)]
    pub encodings: Option<ParameterChangeActionEncoding>,
}

impl ParameterChangeAction {
    pub fn new(
        gov_action_id: Option<GovActionId>,
        protocol_param_update: ProtocolParamUpdate,
    ) -> Self {
        Self {
            gov_action_id,
            protocol_param_update,
            encodings: None,
        }
    }
}

#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, schemars::JsonSchema)]
pub struct ProposalProcedure {
    pub deposit: Coin,
    pub reward_account: RewardAccount,
    pub gov_action: GovAction,
    pub anchor: Anchor,
    #[serde(skip)]
    pub encodings: Option<ProposalProcedureEncoding>,
}

impl ProposalProcedure {
    pub fn new(
        deposit: Coin,
        reward_account: RewardAccount,
        gov_action: GovAction,
        anchor: Anchor,
    ) -> Self {
        Self {
            deposit,
            reward_account,
            gov_action,
            anchor,
            encodings: None,
        }
    }
}

#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, schemars::JsonSchema)]
pub struct TreasuryWithdrawalsAction {
    pub withdrawal: OrderedHashMap<RewardAccount, Coin>,
    #[serde(skip)]
    pub encodings: Option<TreasuryWithdrawalsActionEncoding>,
}

impl TreasuryWithdrawalsAction {
    pub fn new(withdrawal: OrderedHashMap<RewardAccount, Coin>) -> Self {
        Self {
            withdrawal,
            encodings: None,
        }
    }
}

#[derive(
    Copy,
    Eq,
    PartialEq,
    Ord,
    PartialOrd,
    Clone,
    Debug,
    serde::Deserialize,
    serde::Serialize,
    schemars::JsonSchema,
)]
#[wasm_bindgen::prelude::wasm_bindgen]
pub enum Vote {
    No,
    Yes,
    Abstain,
}

#[derive(
    Clone, Debug, serde::Deserialize, serde::Serialize, schemars::JsonSchema, derivative::Derivative,
)]
#[derivative(
    Eq,
    PartialEq,
    Ord = "feature_allow_slow_enum",
    PartialOrd = "feature_allow_slow_enum",
    Hash
)]
pub enum Voter {
    ConstitutionalCommitteeHotKeyHash {
        ed25519_key_hash: Ed25519KeyHash,
        #[derivative(
            PartialEq = "ignore",
            Ord = "ignore",
            PartialOrd = "ignore",
            Hash = "ignore"
        )]
        #[serde(skip)]
        len_encoding: LenEncoding,
        #[derivative(
            PartialEq = "ignore",
            Ord = "ignore",
            PartialOrd = "ignore",
            Hash = "ignore"
        )]
        #[serde(skip)]
        index_0_encoding: Option<cbor_event::Sz>,
        #[derivative(
            PartialEq = "ignore",
            Ord = "ignore",
            PartialOrd = "ignore",
            Hash = "ignore"
        )]
        #[serde(skip)]
        ed25519_key_hash_encoding: StringEncoding,
    },
    ConstitutionalCommitteeHotScriptHash {
        script_hash: ScriptHash,
        #[derivative(
            PartialEq = "ignore",
            Ord = "ignore",
            PartialOrd = "ignore",
            Hash = "ignore"
        )]
        #[serde(skip)]
        len_encoding: LenEncoding,
        #[derivative(
            PartialEq = "ignore",
            Ord = "ignore",
            PartialOrd = "ignore",
            Hash = "ignore"
        )]
        #[serde(skip)]
        index_0_encoding: Option<cbor_event::Sz>,
        #[derivative(
            PartialEq = "ignore",
            Ord = "ignore",
            PartialOrd = "ignore",
            Hash = "ignore"
        )]
        #[serde(skip)]
        script_hash_encoding: StringEncoding,
    },
    DRepKeyHash {
        ed25519_key_hash: Ed25519KeyHash,
        #[derivative(
            PartialEq = "ignore",
            Ord = "ignore",
            PartialOrd = "ignore",
            Hash = "ignore"
        )]
        #[serde(skip)]
        len_encoding: LenEncoding,
        #[derivative(
            PartialEq = "ignore",
            Ord = "ignore",
            PartialOrd = "ignore",
            Hash = "ignore"
        )]
        #[serde(skip)]
        index_0_encoding: Option<cbor_event::Sz>,
        #[derivative(
            PartialEq = "ignore",
            Ord = "ignore",
            PartialOrd = "ignore",
            Hash = "ignore"
        )]
        #[serde(skip)]
        ed25519_key_hash_encoding: StringEncoding,
    },
    DRepScriptHash {
        script_hash: ScriptHash,
        #[derivative(
            PartialEq = "ignore",
            Ord = "ignore",
            PartialOrd = "ignore",
            Hash = "ignore"
        )]
        #[serde(skip)]
        len_encoding: LenEncoding,
        #[derivative(
            PartialEq = "ignore",
            Ord = "ignore",
            PartialOrd = "ignore",
            Hash = "ignore"
        )]
        #[serde(skip)]
        index_0_encoding: Option<cbor_event::Sz>,
        #[derivative(
            PartialEq = "ignore",
            Ord = "ignore",
            PartialOrd = "ignore",
            Hash = "ignore"
        )]
        #[serde(skip)]
        script_hash_encoding: StringEncoding,
    },
    StakingPoolKeyHash {
        ed25519_key_hash: Ed25519KeyHash,
        #[derivative(
            PartialEq = "ignore",
            Ord = "ignore",
            PartialOrd = "ignore",
            Hash = "ignore"
        )]
        #[serde(skip)]
        len_encoding: LenEncoding,
        #[derivative(
            PartialEq = "ignore",
            Ord = "ignore",
            PartialOrd = "ignore",
            Hash = "ignore"
        )]
        #[serde(skip)]
        index_0_encoding: Option<cbor_event::Sz>,
        #[derivative(
            PartialEq = "ignore",
            Ord = "ignore",
            PartialOrd = "ignore",
            Hash = "ignore"
        )]
        #[serde(skip)]
        ed25519_key_hash_encoding: StringEncoding,
    },
}

impl Voter {
    pub fn new_constitutional_committee_hot_key_hash(ed25519_key_hash: Ed25519KeyHash) -> Self {
        Self::ConstitutionalCommitteeHotKeyHash {
            ed25519_key_hash,
            len_encoding: LenEncoding::default(),
            index_0_encoding: None,
            ed25519_key_hash_encoding: StringEncoding::default(),
        }
    }

    pub fn new_constitutional_committee_hot_script_hash(script_hash: ScriptHash) -> Self {
        Self::ConstitutionalCommitteeHotScriptHash {
            script_hash,
            len_encoding: LenEncoding::default(),
            index_0_encoding: None,
            script_hash_encoding: StringEncoding::default(),
        }
    }

    pub fn new_d_rep_key_hash(ed25519_key_hash: Ed25519KeyHash) -> Self {
        Self::DRepKeyHash {
            ed25519_key_hash,
            len_encoding: LenEncoding::default(),
            index_0_encoding: None,
            ed25519_key_hash_encoding: StringEncoding::default(),
        }
    }

    pub fn new_d_rep_script_hash(script_hash: ScriptHash) -> Self {
        Self::DRepScriptHash {
            script_hash,
            len_encoding: LenEncoding::default(),
            index_0_encoding: None,
            script_hash_encoding: StringEncoding::default(),
        }
    }

    pub fn new_staking_pool_key_hash(ed25519_key_hash: Ed25519KeyHash) -> Self {
        Self::StakingPoolKeyHash {
            ed25519_key_hash,
            len_encoding: LenEncoding::default(),
            index_0_encoding: None,
            ed25519_key_hash_encoding: StringEncoding::default(),
        }
    }
}

#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, schemars::JsonSchema)]
pub struct VotingProcedure {
    pub vote: Vote,
    pub anchor: Option<Anchor>,
    #[serde(skip)]
    pub encodings: Option<VotingProcedureEncoding>,
}

impl VotingProcedure {
    pub fn new(vote: Vote, anchor: Option<Anchor>) -> Self {
        Self {
            vote,
            anchor,
            encodings: None,
        }
    }
}

pub type VotingProcedures = OrderedHashMap<Voter, OrderedHashMap<GovActionId, VotingProcedure>>;