Documentation
    Preparing search index...

    Interface WalletInfoBase

    Common fields shared by every wallet returned from the wallets list.

    interface WalletInfoBase {
        aboutUrl: string;
        appName: string;
        features?: Feature[];
        imageUrl: 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 for the wallet — shown to new users.

    appName: string

    Wallet identifier — equals the DeviceInfo.appName reported by the connected Wallet at runtime.

    features?: Feature[]

    Wallet capabilities advertised in the registry.

    imageUrl: string

    HTTPS URL of the wallet icon. 288×288 PNG on a non-transparent background, no rounded corners.

    name: string

    Human-readable display name shown in the wallet picker.

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

    Operating systems / browsers the wallet supports.

    tondns?: string