Canton dAppBooster
    Preparing search index...

    A token in the list a picker chooses from. Structurally a TokenMeta, so a selected Token goes straight to <TokenInput token={...}>. balance is what the party can spend and locked what it cannot, both off a holdings read: with no balance the row shows no figure and sorts last.

    const cc: Token = {
    balance: '12.5',
    instrumentId: { admin: 'DSO::1220ab', id: 'Amulet' },
    locked: '100',
    name: 'Canton Coin',
    symbol: 'CC',
    }
    interface Token {
        balance?: string;
        instrumentId: InstrumentId;
        locked?: string;
        logo?: ReactNode;
        name: string;
        symbol: string;
    }
    Index
    balance?: string
    instrumentId: InstrumentId
    locked?: string
    logo?: ReactNode
    name: string
    symbol: string