hoodchain - v0.1.0
    Preparing search index...

    Interface StockQuote

    A Chainlink price quote for one Stock Token.

    interface StockQuote {
        address: `0x${string}`;
        ageSeconds: number;
        answer: bigint;
        answerDecimals: number;
        feed: `0x${string}`;
        priceUsd: number;
        roundId: bigint;
        symbol: string;
        updatedAt: number;
    }
    Index
    address: `0x${string}`

    Token contract address.

    ageSeconds: number

    Age of the answer in seconds at read time.

    answer: bigint

    Raw feed answer (8 decimals unless answerDecimals says otherwise).

    answerDecimals: number

    Decimals of answer.

    feed: `0x${string}`

    Feed proxy the answer came from.

    priceUsd: number

    Price of ONE TOKEN in USD, as a float. Chainlink's Robinhood feeds are already multiplier-adjusted: this is the token's total-return price, not the underlying share price. Divide by uiMultiplier (1e18-scaled) for the underlying share price.

    roundId: bigint

    Chainlink round id.

    symbol: string
    updatedAt: number

    Feed update timestamp (seconds).