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

    Interface PerpetualsMarketFundingHistoryPoint

    Single funding rate datapoint for a perpetuals market at a given timestamp.

    Funding rate fields are expressed as fractions: 0.01 = 1%.

    interface PerpetualsMarketFundingHistoryPoint {
        cumulativeLongFundingRate: number;
        cumulativeShortFundingRate: number;
        eventTimestamp: number;
        longFundingRate: number;
        marketId: string;
        shortFundingRate: number;
        timestamp: number;
        txDigest: string;
    }
    Index
    cumulativeLongFundingRate: number

    Cumulative funding rate accrued by long positions up to this point, as a fraction (e.g. 0.01 = 1%).

    cumulativeShortFundingRate: number

    Cumulative funding rate accrued by short positions up to this point, as a fraction (e.g. 0.01 = 1%).

    eventTimestamp: number

    On-chain event timestamp (ms).

    longFundingRate: number

    Funding rate applied to long positions for this period, as a fraction (e.g. 0.01 = 1%).

    marketId: string

    Identifier of the perpetuals market.

    shortFundingRate: number

    Funding rate applied to short positions for this period, as a fraction (e.g. 0.01 = 1%).

    timestamp: number

    Timestamp at which this funding point was recorded (ms).

    txDigest: string

    Sui transaction digest associated with this funding event.