Documentation
    Preparing search index...

    Interface DeviceInfo

    Wallet self-description returned inside ConnectEventSuccess's payload.device.

    interface DeviceInfo {
        appName: string;
        appVersion: string;
        features: Feature[];
        maxProtocolVersion: number;
        platform:
            | "ipad"
            | "android"
            | "windows"
            | "linux"
            | "browser"
            | "iphone"
            | "mac";
    }
    Index

    Properties

    appName: string

    Wallet identifier — same value as the app_name field in the wallets list.

    "tonkeeper"
    
    appVersion: string

    The version of the wallet.

    "2.3.367"
    
    features: Feature[]

    Capabilities the wallet advertises.

    maxProtocolVersion: number

    Highest TON Connect protocol version the wallet implements.

    platform:
        | "ipad"
        | "android"
        | "windows"
        | "linux"
        | "browser"
        | "iphone"
        | "mac"

    Operating system / runtime the wallet identifies itself with.