sui_analytics_indexer/
tables.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
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
#![allow(dead_code)]

use crate::{ParquetSchema, ParquetValue};
use serde::Serialize;
use strum_macros::Display;
use sui_analytics_indexer_derive::SerializeParquet;
use sui_types::dynamic_field::DynamicFieldType;

//
// Table entries for the analytics database.
// Each entry is a row in the database.
//

// Checkpoint information.
#[derive(Serialize, Clone, SerializeParquet)]
pub(crate) struct CheckpointEntry {
    // indexes
    pub(crate) checkpoint_digest: String,
    pub(crate) sequence_number: u64,
    pub(crate) epoch: u64,
    pub(crate) timestamp_ms: u64,

    pub(crate) previous_checkpoint_digest: Option<String>,
    pub(crate) end_of_epoch: bool,
    // gas stats
    pub(crate) total_gas_cost: i64,
    pub(crate) computation_cost: u64,
    pub(crate) storage_cost: u64,
    pub(crate) storage_rebate: u64,
    pub(crate) non_refundable_storage_fee: u64,
    // transaction stats
    pub(crate) total_transaction_blocks: u64,
    pub(crate) total_transactions: u64,
    pub(crate) total_successful_transaction_blocks: u64,
    pub(crate) total_successful_transactions: u64,

    pub(crate) network_total_transaction: u64,
    pub(crate) validator_signature: String,
}

// Transaction information.
#[derive(Serialize, Clone, SerializeParquet)]
pub(crate) struct TransactionEntry {
    // main indexes
    pub(crate) transaction_digest: String,
    pub(crate) checkpoint: u64,
    pub(crate) epoch: u64,
    pub(crate) timestamp_ms: u64,
    // transaction info
    pub(crate) sender: String,
    pub(crate) transaction_kind: String,
    pub(crate) is_system_txn: bool,
    pub(crate) is_sponsored_tx: bool,
    pub(crate) transaction_count: u64,
    pub(crate) execution_success: bool,
    // object info
    pub(crate) input: u64,
    pub(crate) shared_input: u64,
    pub(crate) gas_coins: u64,
    // objects are broken up in created, mutated and deleted.
    // No wrap or unwrap information is provided
    pub(crate) created: u64,
    pub(crate) mutated: u64,
    pub(crate) deleted: u64,
    // PTB info
    pub(crate) transfers: u64,
    pub(crate) split_coins: u64,
    pub(crate) merge_coins: u64,
    pub(crate) publish: u64,
    pub(crate) upgrade: u64,
    // move_vec or default for future commands
    pub(crate) others: u64,
    pub(crate) move_calls: u64,
    // pub(crate) packages: BTreeSet<String>,
    // commas separated list of packages used by the transaction.
    // Use as a simple way to query for transactions that use a specific package.
    pub(crate) packages: String,
    // gas info
    pub(crate) gas_owner: String,
    pub(crate) gas_object_id: String,
    pub(crate) gas_object_sequence: u64,
    pub(crate) gas_object_digest: String,
    pub(crate) gas_budget: u64,
    pub(crate) total_gas_cost: i64,
    pub(crate) computation_cost: u64,
    pub(crate) storage_cost: u64,
    pub(crate) storage_rebate: u64,
    pub(crate) non_refundable_storage_fee: u64,
    pub(crate) gas_price: u64,
    // raw transaction bytes
    // pub(crate) raw_transaction: Vec<u8>,
    // We represent them in base64 encoding so they work with the csv.
    // TODO: review and possibly move back to Vec<u8>
    pub(crate) raw_transaction: String,
    pub(crate) has_zklogin_sig: bool,
    pub(crate) has_upgraded_multisig: bool,
    pub(crate) transaction_json: Option<String>,
    pub(crate) effects_json: Option<String>,
}

// Event information.
// Events identity is via `transaction_digest` and `event_index`.
#[derive(Serialize, Clone, SerializeParquet)]
pub(crate) struct EventEntry {
    // indexes
    pub(crate) transaction_digest: String,
    pub(crate) event_index: u64,
    pub(crate) checkpoint: u64,
    pub(crate) epoch: u64,
    pub(crate) timestamp_ms: u64,
    // sender
    pub(crate) sender: String,
    // event type
    pub(crate) package: String,
    pub(crate) module: String,
    pub(crate) event_type: String,
    // raw event bytes
    // pub(crate) bcs: Vec<u8>,
    // We represent them in base64 encoding so they work with the csv.
    // TODO: review and possibly move back to Vec<u8>
    pub(crate) bcs: String,
    pub(crate) event_json: String,
}

// Used in the transaction object table to identify the type of input object.
#[derive(Serialize, Clone, Display)]
pub enum InputObjectKind {
    Input,
    SharedInput,
    GasCoin,
}

// Used in the object table to identify the status of object, its result in the last transaction
// effect.
#[derive(Serialize, Clone, Display)]
pub enum ObjectStatus {
    Created,
    Mutated,
    Deleted,
}

// Object owner information.
#[derive(Serialize, Clone, Display)]
pub enum OwnerType {
    AddressOwner,
    ObjectOwner,
    Shared,
    Immutable,
}

// Object information.
// A row in the live object table.
#[derive(Serialize, Clone, SerializeParquet)]
pub(crate) struct ObjectEntry {
    // indexes
    pub(crate) object_id: String,
    pub(crate) version: u64,
    pub(crate) digest: String,
    pub(crate) type_: Option<String>, // None is for packages
    pub(crate) checkpoint: u64,
    pub(crate) epoch: u64,
    pub(crate) timestamp_ms: u64,
    // owner info
    pub(crate) owner_type: Option<OwnerType>,
    pub(crate) owner_address: Option<String>,
    // object info
    pub(crate) object_status: ObjectStatus,
    pub(crate) initial_shared_version: Option<u64>,
    pub(crate) previous_transaction: String,
    pub(crate) has_public_transfer: bool,
    pub(crate) storage_rebate: Option<u64>,
    // raw object bytes
    // pub(crate) bcs: Vec<u8>,
    // We represent them in base64 encoding so they work with the csv.
    // TODO: review and possibly move back to Vec<u8>
    pub(crate) bcs: Option<String>,

    pub(crate) coin_type: Option<String>,
    pub(crate) coin_balance: Option<u64>,

    pub(crate) struct_tag: Option<String>,
    pub(crate) object_json: Option<String>,
}

// Objects used and manipulated in a transaction.
// Both input object and objects in effects are reported here with the proper
// input kind (for input objects) and status (for objets in effects).
// An object may appear twice as an input and output object. In that case, the
// version will be different.
#[derive(Serialize, Clone, SerializeParquet)]
pub(crate) struct TransactionObjectEntry {
    // indexes
    pub(crate) object_id: String,
    pub(crate) version: Option<u64>,
    pub(crate) transaction_digest: String,
    pub(crate) checkpoint: u64,
    pub(crate) epoch: u64,
    pub(crate) timestamp_ms: u64,
    // input/output information
    pub(crate) input_kind: Option<InputObjectKind>,
    pub(crate) object_status: Option<ObjectStatus>,
}

// A Move call expressed as a package, module and function.
#[derive(Serialize, Clone, SerializeParquet)]
pub(crate) struct MoveCallEntry {
    // indexes
    pub(crate) transaction_digest: String,
    pub(crate) checkpoint: u64,
    pub(crate) epoch: u64,
    pub(crate) timestamp_ms: u64,
    // move call info
    pub(crate) package: String,
    pub(crate) module: String,
    pub(crate) function: String,
}

// A Move package. Package id and MovePackage object bytes
#[derive(Serialize, Clone, SerializeParquet)]
pub(crate) struct MovePackageEntry {
    // indexes
    pub(crate) package_id: String,
    pub(crate) checkpoint: u64,
    pub(crate) epoch: u64,
    pub(crate) timestamp_ms: u64,
    // raw package bytes
    // pub(crate) bcs: Vec<u8>,
    // We represent them in base64 encoding so they work with the csv.
    // TODO: review and possibly move back to Vec<u8>
    pub(crate) bcs: String,
    // txn publishing the package
    pub(crate) transaction_digest: String,
    pub(crate) package_version: Option<u64>,
    pub(crate) original_package_id: Option<String>,
}

#[derive(Serialize, Clone, SerializeParquet)]
pub(crate) struct DynamicFieldEntry {
    // indexes
    pub(crate) parent_object_id: String,
    pub(crate) transaction_digest: String,
    pub(crate) checkpoint: u64,
    pub(crate) epoch: u64,
    pub(crate) timestamp_ms: u64,
    // df information
    pub(crate) name: String,
    pub(crate) bcs_name: String,
    pub(crate) type_: DynamicFieldType,
    pub(crate) object_id: String,
    pub(crate) version: u64,
    pub(crate) digest: String,
    pub(crate) object_type: String,
}

// Object information.
// A row in the live object table.
#[derive(Serialize, Clone, SerializeParquet)]
pub(crate) struct WrappedObjectEntry {
    // indexes
    pub(crate) object_id: Option<String>,
    pub(crate) root_object_id: String,
    pub(crate) root_object_version: u64,
    pub(crate) checkpoint: u64,
    pub(crate) epoch: u64,
    pub(crate) timestamp_ms: u64,
    // wrapped info
    pub(crate) json_path: String,
    pub(crate) struct_tag: Option<String>,
}