sui_rpc_api/proto/types/
checkpoint.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
use super::TryFromProtoError;
use tap::Pipe;

//
// CheckpointSummary
//

impl From<sui_sdk_types::CheckpointSummary> for super::CheckpointSummary {
    fn from(
        sui_sdk_types::CheckpointSummary {
            epoch,
            sequence_number,
            network_total_transactions,
            content_digest,
            previous_digest,
            epoch_rolling_gas_cost_summary,
            timestamp_ms,
            checkpoint_commitments,
            end_of_epoch_data,
            version_specific_data,
        }: sui_sdk_types::CheckpointSummary,
    ) -> Self {
        Self {
            epoch: Some(epoch),
            sequence_number: Some(sequence_number),
            total_network_transactions: Some(network_total_transactions),
            content_digest: Some(content_digest.into()),
            previous_digest: previous_digest.map(Into::into),
            epoch_rolling_gas_cost_summary: Some(epoch_rolling_gas_cost_summary.into()),
            timestamp_ms: Some(timestamp_ms),
            commitments: checkpoint_commitments.into_iter().map(Into::into).collect(),
            end_of_epoch_data: end_of_epoch_data.map(Into::into),
            version_specific_data: Some(version_specific_data.into()),
        }
    }
}

impl TryFrom<&super::CheckpointSummary> for sui_sdk_types::CheckpointSummary {
    type Error = TryFromProtoError;

    fn try_from(
        super::CheckpointSummary {
            epoch,
            sequence_number,
            total_network_transactions,
            content_digest,
            previous_digest,
            epoch_rolling_gas_cost_summary,
            timestamp_ms,
            commitments,
            end_of_epoch_data,
            version_specific_data,
        }: &super::CheckpointSummary,
    ) -> Result<Self, Self::Error> {
        let epoch = epoch.ok_or_else(|| TryFromProtoError::missing("epoch"))?;
        let sequence_number =
            sequence_number.ok_or_else(|| TryFromProtoError::missing("sequence_number"))?;
        let network_total_transactions = total_network_transactions
            .ok_or_else(|| TryFromProtoError::missing("total_network_transactions"))?;
        let content_digest = content_digest
            .as_ref()
            .ok_or_else(|| TryFromProtoError::missing("content_digest"))?
            .try_into()?;
        let previous_digest = previous_digest
            .as_ref()
            .map(TryInto::try_into)
            .transpose()?;
        let epoch_rolling_gas_cost_summary = epoch_rolling_gas_cost_summary
            .as_ref()
            .ok_or_else(|| TryFromProtoError::missing("epoch_rolling_gas_cost_summary"))?
            .try_into()?;

        let timestamp_ms =
            timestamp_ms.ok_or_else(|| TryFromProtoError::missing("timestamp_ms"))?;

        let checkpoint_commitments = commitments
            .iter()
            .map(TryInto::try_into)
            .collect::<Result<_, _>>()?;

        let end_of_epoch_data = end_of_epoch_data
            .as_ref()
            .map(TryInto::try_into)
            .transpose()?;

        let version_specific_data = version_specific_data
            .as_ref()
            .ok_or_else(|| TryFromProtoError::missing("version_specific_data"))?
            .to_vec();

        Ok(Self {
            epoch,
            sequence_number,
            network_total_transactions,
            content_digest,
            previous_digest,
            epoch_rolling_gas_cost_summary,
            timestamp_ms,
            checkpoint_commitments,
            end_of_epoch_data,
            version_specific_data,
        })
    }
}

//
// GasCostSummary
//

impl From<sui_sdk_types::GasCostSummary> for super::GasCostSummary {
    fn from(
        sui_sdk_types::GasCostSummary {
            computation_cost,
            storage_cost,
            storage_rebate,
            non_refundable_storage_fee,
        }: sui_sdk_types::GasCostSummary,
    ) -> Self {
        Self {
            computation_cost: Some(computation_cost),
            storage_cost: Some(storage_cost),
            storage_rebate: Some(storage_rebate),
            non_refundable_storage_fee: Some(non_refundable_storage_fee),
        }
    }
}

impl TryFrom<&super::GasCostSummary> for sui_sdk_types::GasCostSummary {
    type Error = TryFromProtoError;

    fn try_from(
        super::GasCostSummary {
            computation_cost,
            storage_cost,
            storage_rebate,
            non_refundable_storage_fee,
        }: &super::GasCostSummary,
    ) -> Result<Self, Self::Error> {
        let computation_cost =
            computation_cost.ok_or_else(|| TryFromProtoError::missing("computation_cost"))?;
        let storage_cost =
            storage_cost.ok_or_else(|| TryFromProtoError::missing("storage_cost"))?;
        let storage_rebate =
            storage_rebate.ok_or_else(|| TryFromProtoError::missing("storage_rebate"))?;
        let non_refundable_storage_fee = non_refundable_storage_fee
            .ok_or_else(|| TryFromProtoError::missing("non_refundable_storage_fee"))?;
        Ok(Self {
            computation_cost,
            storage_cost,
            storage_rebate,
            non_refundable_storage_fee,
        })
    }
}

//
// CheckpointCommitment
//

impl From<sui_sdk_types::CheckpointCommitment> for super::CheckpointCommitment {
    fn from(value: sui_sdk_types::CheckpointCommitment) -> Self {
        let commitment = match value {
            sui_sdk_types::CheckpointCommitment::EcmhLiveObjectSet { digest } => {
                super::checkpoint_commitment::Commitment::EcmhLiveObjectSet(digest.into())
            }
        };

        Self {
            commitment: Some(commitment),
        }
    }
}

impl TryFrom<&super::CheckpointCommitment> for sui_sdk_types::CheckpointCommitment {
    type Error = TryFromProtoError;

    fn try_from(value: &super::CheckpointCommitment) -> Result<Self, Self::Error> {
        match value
            .commitment
            .as_ref()
            .ok_or_else(|| TryFromProtoError::missing("commitment"))?
        {
            super::checkpoint_commitment::Commitment::EcmhLiveObjectSet(digest) => {
                Self::EcmhLiveObjectSet {
                    digest: digest.try_into()?,
                }
            }
        }
        .pipe(Ok)
    }
}

//
// EndOfEpochData
//

impl From<sui_sdk_types::EndOfEpochData> for super::EndOfEpochData {
    fn from(
        sui_sdk_types::EndOfEpochData {
            next_epoch_committee,
            next_epoch_protocol_version,
            epoch_commitments,
        }: sui_sdk_types::EndOfEpochData,
    ) -> Self {
        Self {
            next_epoch_committee: next_epoch_committee.into_iter().map(Into::into).collect(),
            next_epoch_protocol_version: Some(next_epoch_protocol_version),
            epoch_commitments: epoch_commitments.into_iter().map(Into::into).collect(),
        }
    }
}

impl TryFrom<&super::EndOfEpochData> for sui_sdk_types::EndOfEpochData {
    type Error = TryFromProtoError;

    fn try_from(
        super::EndOfEpochData {
            next_epoch_committee,
            next_epoch_protocol_version,
            epoch_commitments,
        }: &super::EndOfEpochData,
    ) -> Result<Self, Self::Error> {
        let next_epoch_protocol_version = next_epoch_protocol_version
            .ok_or_else(|| TryFromProtoError::missing("next_epoch_protocol_version"))?;

        Ok(Self {
            next_epoch_committee: next_epoch_committee
                .iter()
                .map(TryInto::try_into)
                .collect::<Result<_, _>>()?,
            next_epoch_protocol_version,
            epoch_commitments: epoch_commitments
                .iter()
                .map(TryInto::try_into)
                .collect::<Result<_, _>>()?,
        })
    }
}

//
// CheckpointedTransactionInfo
//

impl From<sui_sdk_types::CheckpointTransactionInfo> for super::CheckpointedTransactionInfo {
    fn from(value: sui_sdk_types::CheckpointTransactionInfo) -> Self {
        Self {
            transaction: Some(value.transaction.into()),
            effects: Some(value.effects.into()),
            signatures: value.signatures.into_iter().map(Into::into).collect(),
        }
    }
}

impl TryFrom<&super::CheckpointedTransactionInfo> for sui_sdk_types::CheckpointTransactionInfo {
    type Error = TryFromProtoError;

    fn try_from(value: &super::CheckpointedTransactionInfo) -> Result<Self, Self::Error> {
        let transaction = value
            .transaction
            .as_ref()
            .ok_or_else(|| TryFromProtoError::missing("transaction"))?
            .try_into()?;

        let effects = value
            .effects
            .as_ref()
            .ok_or_else(|| TryFromProtoError::missing("effects"))?
            .try_into()?;

        let signatures = value
            .signatures
            .iter()
            .map(TryInto::try_into)
            .collect::<Result<_, _>>()?;

        Ok(Self {
            transaction,
            effects,
            signatures,
        })
    }
}

//
// CheckpointContents
//

impl From<sui_sdk_types::CheckpointContents> for super::CheckpointContents {
    fn from(value: sui_sdk_types::CheckpointContents) -> Self {
        let contents = super::checkpoint_contents::Contents::V1(super::checkpoint_contents::V1 {
            transactions: value.into_v1().into_iter().map(Into::into).collect(),
        });

        Self {
            contents: Some(contents),
        }
    }
}

impl TryFrom<&super::CheckpointContents> for sui_sdk_types::CheckpointContents {
    type Error = TryFromProtoError;

    fn try_from(value: &super::CheckpointContents) -> Result<Self, Self::Error> {
        match value
            .contents
            .as_ref()
            .ok_or_else(|| TryFromProtoError::missing("commitment"))?
        {
            super::checkpoint_contents::Contents::V1(v1) => Self::new(
                v1.transactions
                    .iter()
                    .map(TryInto::try_into)
                    .collect::<Result<_, _>>()?,
            ),
        }
        .pipe(Ok)
    }
}