Documentation
    Preparing search index...

    Snapshot of diagnostic information for error reporting

    interface DiagnosticSnapshot {
        accountCount?: number;
        activeAccount?: string;
        lastSelectedWallet?: string;
        peerCount?: number;
        sdkVersion: string;
        storage?: Record<string, unknown>;
        transport?: TransportType;
        walletConnectSession?: {
            accounts?: string[];
            expiry?: number;
            networks?: string[];
            permissions?: string[];
            topic?: string;
        };
    }
    Index

    Properties

    accountCount?: number

    Number of connected accounts

    activeAccount?: string

    Active account identifier

    lastSelectedWallet?: string

    Last selected wallet

    peerCount?: number

    Number of paired peers

    sdkVersion: string

    SDK version

    storage?: Record<string, unknown>

    Additional storage data (filtered for privacy)

    transport?: TransportType

    Transport type being used

    walletConnectSession?: {
        accounts?: string[];
        expiry?: number;
        networks?: string[];
        permissions?: string[];
        topic?: string;
    }

    WalletConnect session state (if applicable)