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

use crate::config::IndexerConfig;
use crate::eth_bridge_indexer::{
    EthDataMapper, EthFinalizedSyncDatasource, EthSubscriptionDatasource,
};
use crate::metrics::BridgeIndexerMetrics;
use crate::models::GovernanceAction as DBGovernanceAction;
use crate::models::TokenTransferData as DBTokenTransferData;
use crate::models::{SuiErrorTransactions, TokenTransfer as DBTokenTransfer};
use crate::postgres_manager::PgPool;
use crate::storage::PgBridgePersistent;
use crate::sui_bridge_indexer::SuiBridgeDataMapper;
use ethers::providers::{Http, Provider};
use ethers::types::Address as EthAddress;
use std::fmt::{Display, Formatter};
use std::str::FromStr;
use std::sync::Arc;
use strum_macros::Display;
use sui_bridge::eth_client::EthClient;
use sui_bridge::metered_eth_provider::MeteredEthHttpProvier;
use sui_bridge::metrics::BridgeMetrics;
use sui_bridge::utils::get_eth_contract_addresses;
use sui_data_ingestion_core::DataIngestionMetrics;
use sui_indexer_builder::indexer_builder::{BackfillStrategy, Datasource, Indexer, IndexerBuilder};
use sui_indexer_builder::metrics::IndexerMetricProvider;
use sui_indexer_builder::progress::{
    OutOfOrderSaveAfterDurationPolicy, ProgressSavingPolicy, SaveAfterDurationPolicy,
};
use sui_indexer_builder::sui_datasource::SuiCheckpointDatasource;
use sui_sdk::SuiClientBuilder;
use sui_types::base_types::{SuiAddress, TransactionDigest};

pub mod config;
pub mod metrics;
pub mod models;
pub mod postgres_manager;
pub mod schema;
pub mod storage;
pub mod sui_transaction_handler;
pub mod sui_transaction_queries;
pub mod types;

pub mod eth_bridge_indexer;
pub mod sui_bridge_indexer;

#[derive(Clone)]
pub enum ProcessedTxnData {
    TokenTransfer(TokenTransfer),
    GovernanceAction(GovernanceAction),
    Error(SuiTxnError),
}

#[derive(Clone)]
pub struct SuiTxnError {
    tx_digest: TransactionDigest,
    sender: SuiAddress,
    timestamp_ms: u64,
    failure_status: String,
    cmd_idx: Option<u64>,
}

#[derive(Clone)]
pub struct TokenTransfer {
    chain_id: u8,
    nonce: u64,
    block_height: u64,
    timestamp_ms: u64,
    txn_hash: Vec<u8>,
    txn_sender: Vec<u8>,
    status: TokenTransferStatus,
    gas_usage: i64,
    data_source: BridgeDataSource,
    data: Option<TokenTransferData>,
    is_finalized: bool,
}

#[derive(Clone)]
pub struct GovernanceAction {
    nonce: Option<u64>,
    data_source: BridgeDataSource,
    tx_digest: Vec<u8>,
    sender: Vec<u8>,
    timestamp_ms: u64,
    action: GovernanceActionType,
    data: serde_json::Value,
}

#[derive(Clone)]
pub struct TokenTransferData {
    sender_address: Vec<u8>,
    destination_chain: u8,
    recipient_address: Vec<u8>,
    token_id: u8,
    amount: u64,
    is_finalized: bool,
}

impl TokenTransfer {
    fn to_db(&self) -> DBTokenTransfer {
        DBTokenTransfer {
            chain_id: self.chain_id as i32,
            nonce: self.nonce as i64,
            block_height: self.block_height as i64,
            timestamp_ms: self.timestamp_ms as i64,
            txn_hash: self.txn_hash.clone(),
            txn_sender: self.txn_sender.clone(),
            status: self.status.to_string(),
            gas_usage: self.gas_usage,
            data_source: self.data_source.to_string(),
            is_finalized: self.is_finalized,
        }
    }

    fn to_data_maybe(&self) -> Option<DBTokenTransferData> {
        self.data.as_ref().map(|data| DBTokenTransferData {
            chain_id: self.chain_id as i32,
            nonce: self.nonce as i64,
            block_height: self.block_height as i64,
            timestamp_ms: self.timestamp_ms as i64,
            txn_hash: self.txn_hash.clone(),
            sender_address: data.sender_address.clone(),
            destination_chain: data.destination_chain as i32,
            recipient_address: data.recipient_address.clone(),
            token_id: data.token_id as i32,
            amount: data.amount as i64,
            is_finalized: data.is_finalized,
        })
    }
}

impl SuiTxnError {
    fn to_db(&self) -> SuiErrorTransactions {
        SuiErrorTransactions {
            txn_digest: self.tx_digest.inner().to_vec(),
            sender_address: self.sender.to_vec(),
            timestamp_ms: self.timestamp_ms as i64,
            failure_status: self.failure_status.clone(),
            cmd_idx: self.cmd_idx.map(|idx| idx as i64),
        }
    }
}

impl GovernanceAction {
    fn to_db(&self) -> DBGovernanceAction {
        DBGovernanceAction {
            nonce: self.nonce.map(|nonce| nonce as i64),
            data_source: self.data_source.to_string(),
            txn_digest: self.tx_digest.clone(),
            sender_address: self.sender.to_vec(),
            timestamp_ms: self.timestamp_ms as i64,
            action: self.action.to_string(),
            data: self.data.clone(),
        }
    }
}

#[derive(Clone)]
pub(crate) enum TokenTransferStatus {
    Deposited,
    Approved,
    Claimed,
}

impl Display for TokenTransferStatus {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        let str = match self {
            TokenTransferStatus::Deposited => "Deposited",
            TokenTransferStatus::Approved => "Approved",
            TokenTransferStatus::Claimed => "Claimed",
        };
        write!(f, "{str}")
    }
}

#[derive(Clone, Display)]
pub(crate) enum GovernanceActionType {
    UpdateCommitteeBlocklist,
    EmergencyOperation,
    UpdateBridgeLimit,
    UpdateTokenPrices,
    UpgradeEVMContract,
    AddSuiTokens,
    AddEVMTokens,
}

#[derive(Clone)]
enum BridgeDataSource {
    Sui,
    Eth,
}

impl Display for BridgeDataSource {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        let str = match self {
            BridgeDataSource::Eth => "ETH",
            BridgeDataSource::Sui => "SUI",
        };
        write!(f, "{str}")
    }
}

pub async fn create_sui_indexer(
    pool: PgPool,
    metrics: BridgeIndexerMetrics,
    ingestion_metrics: DataIngestionMetrics,
    config: &IndexerConfig,
) -> anyhow::Result<
    Indexer<PgBridgePersistent, SuiCheckpointDatasource, SuiBridgeDataMapper>,
    anyhow::Error,
> {
    let datastore_with_out_of_order_source = PgBridgePersistent::new(
        pool,
        ProgressSavingPolicy::OutOfOrderSaveAfterDuration(OutOfOrderSaveAfterDurationPolicy::new(
            tokio::time::Duration::from_secs(30),
        )),
    );

    let sui_client = Arc::new(
        SuiClientBuilder::default()
            .build(config.sui_rpc_url.clone())
            .await?,
    );

    let sui_checkpoint_datasource = SuiCheckpointDatasource::new(
        config.remote_store_url.clone(),
        sui_client,
        config.concurrency as usize,
        config
            .checkpoints_path
            .clone()
            .map(|p| p.into())
            .unwrap_or(tempfile::tempdir()?.into_path()),
        config.sui_bridge_genesis_checkpoint,
        ingestion_metrics,
        metrics.clone().boxed(),
    );

    Ok(IndexerBuilder::new(
        "SuiBridgeIndexer",
        sui_checkpoint_datasource,
        SuiBridgeDataMapper { metrics },
        datastore_with_out_of_order_source,
    )
    .build())
}

pub async fn create_eth_sync_indexer(
    pool: PgPool,
    metrics: BridgeIndexerMetrics,
    bridge_metrics: Arc<BridgeMetrics>,
    config: &IndexerConfig,
    eth_client: Arc<EthClient<MeteredEthHttpProvier>>,
) -> Result<Indexer<PgBridgePersistent, EthFinalizedSyncDatasource, EthDataMapper>, anyhow::Error> {
    let bridge_addresses = get_eth_bridge_contract_addresses(config).await?;
    // Start the eth sync data source
    let eth_sync_datasource = EthFinalizedSyncDatasource::new(
        bridge_addresses,
        eth_client.clone(),
        config.eth_rpc_url.clone(),
        metrics.clone().boxed(),
        bridge_metrics.clone(),
        config.eth_bridge_genesis_block,
    )
    .await?;
    Ok(create_eth_indexer_builder(
        pool,
        metrics,
        eth_sync_datasource,
        "EthBridgeFinalizedSyncIndexer",
    )
    .await?
    .with_backfill_strategy(BackfillStrategy::Partitioned { task_size: 1000 })
    .build())
}

pub async fn create_eth_subscription_indexer(
    pool: PgPool,
    metrics: BridgeIndexerMetrics,
    config: &IndexerConfig,
    eth_client: Arc<EthClient<MeteredEthHttpProvier>>,
) -> Result<Indexer<PgBridgePersistent, EthSubscriptionDatasource, EthDataMapper>, anyhow::Error> {
    // Start the eth subscription indexer
    let bridge_addresses = get_eth_bridge_contract_addresses(config).await?;
    // Start the eth subscription indexer
    let eth_subscription_datasource = EthSubscriptionDatasource::new(
        bridge_addresses.clone(),
        eth_client.clone(),
        config.eth_ws_url.clone(),
        metrics.clone().boxed(),
        config.eth_bridge_genesis_block,
    )
    .await?;

    Ok(create_eth_indexer_builder(
        pool,
        metrics,
        eth_subscription_datasource,
        "EthBridgeSubscriptionIndexer",
    )
    .await?
    .with_backfill_strategy(BackfillStrategy::Disabled)
    .build())
}

async fn create_eth_indexer_builder<T: Send, D: Datasource<T>>(
    pool: PgPool,
    metrics: BridgeIndexerMetrics,
    datasource: D,
    indexer_name: &str,
) -> Result<IndexerBuilder<D, EthDataMapper, PgBridgePersistent>, anyhow::Error> {
    let datastore = PgBridgePersistent::new(
        pool,
        ProgressSavingPolicy::SaveAfterDuration(SaveAfterDurationPolicy::new(
            tokio::time::Duration::from_secs(30),
        )),
    );

    // Start the eth subscription indexer
    Ok(IndexerBuilder::new(
        indexer_name,
        datasource,
        EthDataMapper { metrics },
        datastore.clone(),
    ))
}

async fn get_eth_bridge_contract_addresses(
    config: &IndexerConfig,
) -> Result<Vec<EthAddress>, anyhow::Error> {
    let bridge_address = EthAddress::from_str(&config.eth_sui_bridge_contract_address)?;
    let provider = Arc::new(
        Provider::<Http>::try_from(&config.eth_rpc_url)?
            .interval(std::time::Duration::from_millis(2000)),
    );
    let bridge_addresses = get_eth_contract_addresses(bridge_address, &provider).await?;
    Ok(vec![
        bridge_address,
        bridge_addresses.0,
        bridge_addresses.1,
        bridge_addresses.2,
        bridge_addresses.3,
    ])
}