hoodkit
    Preparing search index...

    Interface PortfolioUpdate

    A live portfolio change: the transfer that triggered it and the re-read balance.

    interface PortfolioUpdate {
        balance: bigint;
        balanceFormatted: number;
        symbol: string | null;
        token: `0x${string}`;
        transfer: {
            blockNumber: bigint;
            from: `0x${string}`;
            to: `0x${string}`;
            transactionHash: `0x${string}`;
            value: bigint;
        };
    }
    Index
    balance: bigint

    New raw balance after the transfer.

    balanceFormatted: number

    New balance in human units.

    symbol: string | null

    Registry symbol, or null for non-registry tokens (e.g. USDG).

    token: `0x${string}`

    The Stock Token (or USDG) whose balance changed.

    transfer: {
        blockNumber: bigint;
        from: `0x${string}`;
        to: `0x${string}`;
        transactionHash: `0x${string}`;
        value: bigint;
    }

    The transfer that triggered the re-read.