Canton dAppBooster
    Preparing search index...

    Interface CantonConnectContextValue

    One connection and the actions on it, published once. Every hook selects its slice off connection: prefer the narrower hooks and reach for this only when none exposes the slice. The four actions are useConnect's own, documented there.

    interface CantonConnectContextValue {
        cancelConnect: () => void;
        config: CantonConnectConfig;
        connect: () => Promise<void>;
        connection: ConnectionSubscription;
        disconnect: () => Promise<void>;
        resetConnectError: () => void;
    }
    Index
    cancelConnect: () => void
    connect: () => Promise<void>
    disconnect: () => Promise<void>
    resetConnectError: () => void