hoodchain - v0.1.0
    Preparing search index...

    Interface StockToken

    One canonical Stock Token registry entry.

    interface StockToken {
        address: `0x${string}`;
        decimals: number;
        feed: `0x${string}` | null;
        feedDecimals: number | null;
        name: string;
        symbol: string;
        uiMultiplierAtGeneration: string;
    }
    Index
    address: `0x${string}`

    Checksummed token contract address on chain 4663.

    decimals: number

    Token decimals (18 for every canonical Stock Token).

    feed: `0x${string}` | null

    Chainlink feed proxy for this token, or null when Chainlink's public directory lists no feed for it. Feed answers are already multiplier-adjusted (price of one TOKEN, not one share).

    feedDecimals: number | null

    Feed answer decimals (8), or null when there is no feed.

    name: string

    On-chain name, e.g. "Tesla • Robinhood Token".

    symbol: string

    On-chain ticker, e.g. "TSLA". The on-chain symbol is the source of truth.

    uiMultiplierAtGeneration: string

    uiMultiplier() snapshot taken when the registry was generated (1e18-scaled string).