Documentation
    Preparing search index...

    Interface WalletInfoRemote

    Http-compatible wallet information.

    interface WalletInfoRemote {
        aboutUrl: string;
        appName: string;
        bridgeUrl: string;
        deepLink?: string;
        features?: Feature[];
        imageUrl: string;
        name: string;
        platforms: (
            | "ios"
            | "android"
            | "macos"
            | "windows"
            | "linux"
            | "chrome"
            | "firefox"
            | "safari"
        )[];
        tondns?: string;
        universalLink: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    aboutUrl: string

    Info or landing page of your wallet. May be useful for TON newcomers.

    appName: string

    ID of the wallet, equals to the appName property into Wallet.device.

    bridgeUrl: string

    Url of the wallet's implementation of the [HTTP bridge]https://github.com/ton-connect/docs/blob/main/bridge.md#http-bridge.

    deepLink?: string

    Native wallet app deepLink. The link should support [Ton Connect parameters]https://github.com/ton-connect/docs/blob/main/bridge.md#universal-link.

    features?: Feature[]

    List of features supported by the wallet.

    imageUrl: string

    Url to the icon of the wallet. Resolution 288×288px. On non-transparent background, without rounded corners. PNG format.

    name: string

    Human-readable name of the wallet.

    platforms: (
        | "ios"
        | "android"
        | "macos"
        | "windows"
        | "linux"
        | "chrome"
        | "firefox"
        | "safari"
    )[]

    OS and browsers where the wallet could be installed

    tondns?: string

    Will be used in the protocol later.

    universalLink: string

    Base part of the wallet universal url. The link should support [Ton Connect parameters]https://github.com/ton-connect/docs/blob/main/bridge.md#universal-link.