hoodkit
    Preparing search index...

    Interface PriceTick

    A price update for one Stock Token, emitted only when the Chainlink round changes.

    interface PriceTick {
        ageSeconds: number;
        feed: `0x${string}`;
        priceUsd: number;
        roundId: bigint;
        symbol: string;
        updatedAt: number;
    }
    Index
    ageSeconds: number

    Age of the answer in seconds at emit time.

    feed: `0x${string}`
    priceUsd: number

    Price of one token in USD (already multiplier-adjusted by Chainlink).

    roundId: bigint
    symbol: string
    updatedAt: number