Canton dAppBooster
    Preparing search index...

    Interface UseWalletStatusResult

    Return shape of useWalletStatus: connected-but-locked is a real pair.

    In CIP-0103 terms, locked is an unauthenticated session: it stands, but the wallet pushed isConnected: false and answers no requests until it pushes true again.

    interface UseWalletStatusResult {
        isConnected: boolean;
        isLocked: boolean;
    }
    Index
    isConnected: boolean
    isLocked: boolean