Documentation
    Preparing search index...

    Interface WalletInfoInjectable

    JS-injectable wallet information.

    interface WalletInfoInjectable {
        aboutUrl: string;
        appName: string;
        embedded: boolean;
        features?: Feature[];
        imageUrl: string;
        injected: boolean;
        jsBridgeKey: string;
        name: string;
        platforms: (
            | "ios"
            | "android"
            | "macos"
            | "windows"
            | "linux"
            | "chrome"
            | "firefox"
            | "safari"
        )[];
        tondns?: 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.

    embedded: boolean

    Indicates if the dapp is opened inside this wallet's browser.

    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.

    injected: boolean

    Indicates if the wallet currently is injected to the webpage.

    jsBridgeKey: string

    If the wallet handles JS Bridge connection, specifies the binding for the bridge object accessible through window. Example: the key "tonkeeper" means the bridge can be accessed as window.tonkeeper.

    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.