Interface OraclePrices

    interface OraclePrices {
        currentRound?: bigint;
        prices: Partial<Record<number, OraclePrice>>;
    }

    Properties

    currentRound?: bigint
    prices: Partial<Record<number, OraclePrice>>