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
use crate::{
numbers::{Amount, Length},
*,
};
use mina_crypto::hash::*;
use mina_serialization_types_macros::AutoFrom;
use proof_systems::{
mina_hasher::{Hashable, ROInput},
ChunkedROInput, ToChunkedROInput,
};
#[derive(Clone, Default, Eq, PartialEq, Debug, AutoFrom)]
#[auto_from(mina_serialization_types::epoch_data::EpochLedger)]
pub struct EpochLedger {
pub hash: LedgerHash,
pub total_currency: Amount,
}
impl FromGraphQLJson for EpochLedger {
fn from_graphql_json(json: &serde_json::Value) -> anyhow::Result<Self> {
Ok(Self {
hash: LedgerHash::from_str(json["hash"].as_str().unwrap_or_default())?,
total_currency: json["totalCurrency"]
.as_str()
.unwrap_or_default()
.parse::<u64>()?
.into(),
})
}
}
impl Hashable for EpochLedger {
type D = ();
fn to_roinput(&self) -> ROInput {
ROInput::new()
.append_hashable(&self.hash)
.append_hashable(&self.total_currency)
}
fn domain_string(_: Self::D) -> Option<String> {
None
}
}
impl ToChunkedROInput for EpochLedger {
fn to_chunked_roinput(&self) -> ChunkedROInput {
ChunkedROInput::new()
.append_chunked(&self.hash)
.append_chunked(&self.total_currency)
}
}
#[derive(Clone, Default, Eq, PartialEq, Debug, AutoFrom)]
#[auto_from(mina_serialization_types::epoch_data::EpochData)]
pub struct EpochData {
pub ledger: EpochLedger,
pub seed: EpochSeed,
pub start_checkpoint: StateHash,
pub lock_checkpoint: StateHash,
pub epoch_length: Length,
}
impl FromGraphQLJson for EpochData {
fn from_graphql_json(json: &serde_json::Value) -> anyhow::Result<Self> {
Ok(Self {
ledger: EpochLedger::from_graphql_json(&json["ledger"])?,
seed: EpochSeed::from_str(json["seed"].as_str().unwrap_or_default())?,
start_checkpoint: StateHash::from_str(
json["startCheckpoint"].as_str().unwrap_or_default(),
)?,
lock_checkpoint: StateHash::from_str(
json["lockCheckpoint"].as_str().unwrap_or_default(),
)?,
epoch_length: json["epochLength"]
.as_str()
.unwrap_or_default()
.parse::<u32>()?
.into(),
})
}
}
impl Hashable for EpochData {
type D = ();
fn to_roinput(&self) -> ROInput {
ROInput::new()
.append_hashable(&self.seed)
.append_hashable(&self.start_checkpoint)
.append_hashable(&self.epoch_length)
.append_hashable(&self.ledger)
.append_hashable(&self.lock_checkpoint)
}
fn domain_string(_: Self::D) -> Option<String> {
None
}
}
impl ToChunkedROInput for EpochData {
fn to_chunked_roinput(&self) -> ChunkedROInput {
ChunkedROInput::new()
.append_chunked(&self.seed)
.append_chunked(&self.start_checkpoint)
.append_chunked(&self.epoch_length)
.append_chunked(&self.ledger)
.append_chunked(&self.lock_checkpoint)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn epoch_data_from_graphql_json() -> anyhow::Result<()> {
const JSON_STR: &str = r###"
{
"epochLength": "2",
"lockCheckpoint": "3NLUmnTBMCeExeWErijZ2GeLnjLtBgsDjN3qM8M8gcJDtk8k89xf",
"seed": "2vc1zQHJx2xN72vaR4YDH31KwFSr5WHSEH2dzcfcq8jxBPcGiJJA",
"startCheckpoint": "3NK2tkzqqK5spR2sZ7tujjqPksL45M3UUrcA4WhCkeiPtnugyE2x",
"ledger": {
"hash": "jwNYQU34Jb9FD6ZbKnWRALZqVDKbMrjZBKWFYZwAw8ZPMgv9Ld4",
"totalCurrency": "1013238001000001000"
}
}
"###;
let json = serde_json::from_str(JSON_STR)?;
_ = EpochData::from_graphql_json(&json)?;
Ok(())
}
}