Canton dApp Booster
    Preparing search index...

    Wiring for CantonConnectProvider. From appName alone a local dev app works: canton:local as the network id and the WalletConnect chain id, appName as the description, the page origin as the url, and the SDK's popup as the picker, guarded so closing it rejects — pass a walletPicker and that surface is yours. The app fields stay inert until walletConnectProjectId (Reown) is set.

    const config: CantonConnectConfig = { appName: 'Vesting', networkId: 'canton:devnet' }
    
    interface CantonConnectConfig {
        additionalAdapters?: ProviderAdapter[];
        appDescription?: string;
        appName: string;
        appUrl?: string;
        networkId?: string;
        walletConnectProjectId?: string;
        walletPicker?: WalletPickerFn;
    }
    Index
    additionalAdapters?: ProviderAdapter[]
    appDescription?: string
    appName: string
    appUrl?: string
    networkId?: string
    walletConnectProjectId?: string
    walletPicker?: WalletPickerFn