aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Event emitted when funding is settled for an account and market.

    interface SettledFundingEvent {
        accountId: bigint;
        collateralDeltaUsd: number;
        marketFundingRateLong: number;
        marketFundingRateShort: number;
        marketId: string;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
    }

    Hierarchy (View Summary)

    • Event
      • SettledFundingEvent
    Index
    accountId: bigint

    Perpetuals account whose funding was settled.

    collateralDeltaUsd: number

    Signed collateral change from funding, in USD.

    marketFundingRateLong: number

    Long cumulative funding rate as a decimal fraction.

    marketFundingRateShort: number

    Short cumulative funding rate as a decimal fraction.

    marketId: string

    Market whose funding was settled.

    timestamp: number | undefined

    Timestamp of the event, if available.

    txnDigest: string

    The transaction digest associated with the event.

    type: string

    A string identifying the Move event type.