Canton dApp Booster
    Preparing search index...

    A token in the list a picker chooses from. Structurally a TokenMeta, so a selected Token goes straight to <TokenInput token={...}> without a mapping step.

    const cc: Token = { id: 'canton-coin', name: 'Canton Coin', symbol: 'CC' }
    
    interface Token {
        id: string;
        logo?: ReactNode;
        name: string;
        symbol: string;
    }
    Index
    id: string
    logo?: ReactNode
    name: string
    symbol: string