Cursor

Type Alias Cursor 

Source
pub type Cursor = EventRow;
Expand description

A cursor is a sortable unique identifier for a specific log entry. Used to paginate through query results efficiently.

Aliased Type§

pub struct Cursor {
    pub block_number: u64,
    pub transaction_index: u32,
    pub log_index: u32,
    pub batch_index: Option<u32>,
    pub timestamp: Option<u64>,
}

Fields§

§block_number: u64§transaction_index: u32§log_index: u32§batch_index: Option<u32>§timestamp: Option<u64>