@xoxno/sdk-js
    Preparing search index...

    Interface StellarUserActivityItem

    One row in a user's lending action feed — a single position leg the user performed, newest first. Sourced from StellarLendingPositionActivity() filtered by Owner; usd is the action delta valued at the event-time oracle price (amountShort * oraclePrice).

    interface StellarUserActivityItem {
        action: string;
        amountShort: number | null;
        decimals: number;
        hubId: number;
        liquidator: string | null;
        reserveKey: string | null;
        seq: number;
        side: "supply" | "borrow" | null;
        spokeId: number | null;
        symbol: string;
        timestamp: string;
        token: string;
        usd: number;
    }
    Index

    Properties

    action: string

    Action kind (supply/borrow/withdraw/repay/liqRepay/liqSeize/multiply/…).

    amountShort: number | null

    Action delta this tx, human-readable token units.

    decimals: number
    hubId: number
    liquidator: string | null

    Liquidator (caller) address on liquidation legs; null otherwise.

    reserveKey: string | null
    seq: number

    Monotonic event ordinal (ledger * 1e6 + indexInLedger); feed sort key.

    side: "supply" | "borrow" | null

    Position side this leg mutated; null for non-position rows.

    spokeId: number | null
    symbol: string
    timestamp: string

    Event time (ISO-8601).

    token: string

    Asset (token) contract address.

    usd: number

    Action delta valued in USD at event-time oracle price.