sui_rpc_api/proto/
node.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
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

use super::TryFromProtoError;
use prost_types::FieldMask;
use tap::Pipe;

pub mod v2 {
    include!("generated/sui.node.v2.rs");

    /// Byte encoded FILE_DESCRIPTOR_SET.
    pub const FILE_DESCRIPTOR_SET: &[u8] = include_bytes!("generated/sui.node.v2.fds.bin");

    #[cfg(test)]
    mod tests {
        use super::FILE_DESCRIPTOR_SET;
        use prost::Message as _;

        #[test]
        fn file_descriptor_set_is_valid() {
            prost_types::FileDescriptorSet::decode(FILE_DESCRIPTOR_SET).unwrap();
        }
    }
}

use v2::*;

//
// BalanceChange
//

impl From<sui_sdk_types::BalanceChange> for BalanceChange {
    fn from(value: sui_sdk_types::BalanceChange) -> Self {
        Self {
            address: Some(value.address.into()),
            coin_type: Some(value.coin_type.into()),
            amount: Some(value.amount.into()),
        }
    }
}

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

    fn try_from(value: &BalanceChange) -> Result<Self, Self::Error> {
        let address = value
            .address
            .as_ref()
            .ok_or_else(|| TryFromProtoError::missing("address"))?
            .pipe(TryInto::try_into)?;
        let coin_type = value
            .coin_type
            .as_ref()
            .ok_or_else(|| TryFromProtoError::missing("coin_type"))?
            .pipe(TryInto::try_into)?;
        let amount = value
            .amount
            .as_ref()
            .ok_or_else(|| TryFromProtoError::missing("amount"))?
            .pipe(TryInto::try_into)?;
        Ok(Self {
            address,
            coin_type,
            amount,
        })
    }
}

//
// GetObjectRequest
//

impl GetObjectRequest {
    pub const READ_MASK_DEFAULT: &str = "object_id,version,digest";

    pub fn new<T: Into<super::types::ObjectId>>(object_id: T) -> Self {
        Self {
            object_id: Some(object_id.into()),
            version: None,
            read_mask: None,
        }
    }

    pub fn with_version(mut self, version: u64) -> Self {
        self.version = Some(version);
        self
    }

    pub fn with_read_mask(mut self, read_mask: FieldMask) -> Self {
        self.read_mask = Some(read_mask);
        self
    }
}

//
// GetObjectResponse
//

impl GetObjectResponse {
    pub fn validate_read_mask(read_mask: &FieldMask) -> Result<(), &str> {
        for path in &read_mask.paths {
            match path.as_str() {
                "object_id" | "version" | "digest" | "object" | "object_bcs" => {}
                path => {
                    return Err(path);
                }
            }
        }

        Ok(())
    }
}

//
// GetCheckpointRequest
//

impl GetCheckpointRequest {
    pub const READ_MASK_DEFAULT: &str = "sequence_number,digest";

    pub fn latest() -> Self {
        Self {
            sequence_number: None,
            digest: None,
            read_mask: None,
        }
    }

    pub fn by_digest<T: Into<super::types::Digest>>(digest: T) -> Self {
        Self {
            sequence_number: None,
            digest: Some(digest.into()),
            read_mask: None,
        }
    }

    pub fn by_sequence_number(sequence_number: u64) -> Self {
        Self {
            sequence_number: Some(sequence_number),
            digest: None,
            read_mask: None,
        }
    }

    pub fn with_read_mask(mut self, read_mask: FieldMask) -> Self {
        self.read_mask = Some(read_mask);
        self
    }
}

//
// GetTransactionRequest
//

impl GetTransactionRequest {
    pub const READ_MASK_DEFAULT: &str = "digest";

    pub fn new<T: Into<super::types::Digest>>(digest: T) -> Self {
        Self {
            digest: Some(digest.into()),
            read_mask: None,
        }
    }

    pub fn with_read_mask(mut self, read_mask: FieldMask) -> Self {
        self.read_mask = Some(read_mask);
        self
    }
}

//
// GetTransactionResponse
//

impl GetTransactionResponse {
    pub fn validate_read_mask(read_mask: &FieldMask) -> Result<(), &str> {
        for path in &read_mask.paths {
            match path.as_str() {
                "digest" | "transaction" | "transaction_bcs" | "signatures"
                | "signatures_bytes" | "effects" | "effects_bcs" | "events" | "events_bcs"
                | "checkpoint" | "timestamp" => {}
                path => {
                    return Err(path);
                }
            }
        }

        Ok(())
    }
}

//
// GetFullCheckpointRequest
//

impl GetFullCheckpointRequest {
    pub const READ_MASK_DEFAULT: &str = "sequence_number,digest";

    pub fn latest() -> Self {
        Self {
            sequence_number: None,
            digest: None,
            read_mask: None,
        }
    }

    pub fn by_digest<T: Into<super::types::Digest>>(digest: T) -> Self {
        Self {
            sequence_number: None,
            digest: Some(digest.into()),
            read_mask: None,
        }
    }

    pub fn by_sequence_number(sequence_number: u64) -> Self {
        Self {
            sequence_number: Some(sequence_number),
            digest: None,
            read_mask: None,
        }
    }

    pub fn with_read_mask(mut self, read_mask: FieldMask) -> Self {
        self.read_mask = Some(read_mask);
        self
    }
}

//
// CheckpointResponse
//

impl GetCheckpointResponse {
    pub fn validate_read_mask(read_mask: &FieldMask) -> Result<(), &str> {
        for path in &read_mask.paths {
            match path.as_str() {
                "sequence_number" | "digest" | "summary" | "summary_bcs" | "signature"
                | "contents" | "contents_bcs" => {}
                path => {
                    return Err(path);
                }
            }
        }

        Ok(())
    }
}

//
// FullCheckpointResponse
//

impl GetFullCheckpointResponse {
    pub fn validate_read_mask(read_mask: &FieldMask) -> Result<(), &str> {
        for path in &read_mask.paths {
            if !Self::validate_field_path(path) {
                return Err(path);
            }
        }

        Ok(())
    }

    pub fn validate_field_path(path: &str) -> bool {
        if let Some(remaining) = path.strip_prefix("transactions.") {
            return FullCheckpointTransaction::validate_field_path(remaining);
        }

        matches!(
            path,
            "sequence_number"
                | "digest"
                | "summary"
                | "summary_bcs"
                | "signature"
                | "contents"
                | "contents_bcs"
                | "transactions"
        )
    }
}

//
// FullCheckpointTransaction
//

impl FullCheckpointTransaction {
    pub fn validate_field_path(path: &str) -> bool {
        if let Some(remaining) = path.strip_prefix("input_objects.") {
            return FullCheckpointObject::validate_field_path(remaining);
        }

        if let Some(remaining) = path.strip_prefix("output_objects.") {
            return FullCheckpointObject::validate_field_path(remaining);
        }

        matches!(
            path,
            "digest"
                | "transaction"
                | "transaction_bcs"
                | "effects"
                | "effects_bcs"
                | "events"
                | "events_bcs"
                | "input_objects"
                | "output_objects"
        )
    }
}

//
// FullCheckpointObject
//

impl FullCheckpointObject {
    pub fn validate_field_path(path: &str) -> bool {
        matches!(
            path,
            "object_id" | "version" | "digest" | "object" | "object_bcs"
        )
    }
}

//
// ExecuteTransactionRequest
//

impl ExecuteTransactionRequest {
    pub const READ_MASK_DEFAULT: &str = "effects,events,finality";
}

//
// ExecuteTransactionResponse
//

impl ExecuteTransactionResponse {
    pub fn validate_read_mask(read_mask: &FieldMask) -> Result<(), &str> {
        for path in &read_mask.paths {
            match path.as_str() {
                "finality" | "effects" | "effects_bcs" | "events" | "events_bcs"
                | "balance_changes" => {}
                path => {
                    return Err(path);
                }
            }
        }

        Ok(())
    }
}