interface IndexerServerMarketSnapshot {
    timestamp: string;
    cumulative_users: string;
    daily_active_users: string;
    tvl: string;
    cumulative_volumes: Record<string, string>;
    cumulative_taker_fees: Record<string, string>;
    cumulative_sequencer_fees: Record<string, string>;
    cumulative_maker_fees: Record<string, string>;
    cumulative_trades: Record<string, string>;
    cumulative_liquidation_amounts: Record<string, string>;
    open_interests: Record<string, string>;
    total_deposits: Record<string, string>;
    total_borrows: Record<string, string>;
    funding_rates: Record<string, string>;
    deposit_rates: Record<string, string>;
    borrow_rates: Record<string, string>;
}

Properties

timestamp: string
cumulative_users: string
daily_active_users: string
tvl: string
cumulative_volumes: Record<string, string>
cumulative_taker_fees: Record<string, string>
cumulative_sequencer_fees: Record<string, string>
cumulative_maker_fees: Record<string, string>
cumulative_trades: Record<string, string>
cumulative_liquidation_amounts: Record<string, string>
open_interests: Record<string, string>
total_deposits: Record<string, string>
total_borrows: Record<string, string>
funding_rates: Record<string, string>
deposit_rates: Record<string, string>
borrow_rates: Record<string, string>