sui_bridge_indexer/
schema.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
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
// @generated automatically by Diesel CLI.

diesel::table! {
    progress_store (task_name) {
        task_name -> Text,
        checkpoint -> Int8,
        target_checkpoint -> Int8,
        timestamp -> Nullable<Timestamp>,
    }
}

diesel::table! {
    sui_progress_store (id) {
        id -> Int4,
        txn_digest -> Bytea,
    }
}

diesel::table! {
    sui_error_transactions (txn_digest) {
        txn_digest -> Bytea,
        sender_address -> Bytea,
        timestamp_ms -> Int8,
        failure_status -> Text,
        cmd_idx -> Nullable<Int8>,
    }
}

diesel::table! {
    token_transfer (chain_id, nonce, status) {
        chain_id -> Int4,
        nonce -> Int8,
        status -> Text,
        block_height -> Int8,
        timestamp_ms -> Int8,
        txn_hash -> Bytea,
        txn_sender -> Bytea,
        gas_usage -> Int8,
        data_source -> Text,
        is_finalized -> Bool,
    }
}

diesel::table! {
    token_transfer_data (chain_id, nonce) {
        chain_id -> Int4,
        nonce -> Int8,
        block_height -> Int8,
        timestamp_ms -> Int8,
        txn_hash -> Bytea,
        sender_address -> Bytea,
        destination_chain -> Int4,
        recipient_address -> Bytea,
        token_id -> Int4,
        amount -> Int8,
        is_finalized -> Bool,
    }
}

diesel::table! {
    governance_actions (txn_digest) {
        id -> Int8,
        nonce -> Nullable<Int8>,
        data_source -> Text,
        txn_digest -> Bytea,
        sender_address -> Bytea,
        timestamp_ms -> Int8,
        action -> Text,
        data -> Jsonb,
    }
}

diesel::allow_tables_to_appear_in_same_query!(
    progress_store,
    sui_error_transactions,
    governance_actions,
    sui_progress_store,
    token_transfer,
    token_transfer_data,
);