### TON Connect Wallet Entry Field Descriptions Source: https://github.com/bitgetlimited/wallets-list/blob/main/README.md Detailed descriptions for each field within a TON Connect wallet list entry, including purpose, requirements, and examples for `app_name`, `name`, `image`, `tondns`, `about_url`, `universal_url`, `bridge` types (sse, js), and `platforms`. ```APIDOC app_name: string Description: string ID of your wallet. Must be equal with `ConnectEventSuccess.device.appName` and js bridge `key`. name: string Description: name of your wallet. Will be displayed in the dapp. image: string Description: url to the icon of your wallet. Will be displayed in the dapp. Resolution 288×288px. On non-transparent background, without rounded corners. PNG format. tondns: string (optional) Description: will be used in the protocol later. about_url: string Description: info or landing page of your wallet. May be useful for TON newcomers. universal_url: string (strictly required for `sse` bridges, optional otherwise) Description: base part of your wallet universal url. Your link should support Ton Connect parameters. bridge: array of objects Description: options for connectivity between the app and the wallet. Items: type: string ("sse" or "js") Description: Type of bridge. url: string (required for type="sse") Description: URL of your wallet's implementation of the HTTP bridge. key: string (required for type="js") Description: Key through which your wallet handles JS Bridge connection, specifying the binding for your bridge object accessible through `window`. Example: the key "tonkeeper" means the bridge can be accessed as `window.tonkeeper`. platforms: array of strings Description: list of platforms on which your wallet works: mobile app "ios", "android"; desktop app "windows", "macos", "linux"; browser extension "chrome", "firefox", "safari". ``` -------------------------------- ### TON Connect Wallet List Entry Format Source: https://github.com/bitgetlimited/wallets-list/blob/main/README.md Defines the JSON structure for each wallet entry in the TON Connect wallets list, specifying fields like app name, display name, image URL, bridge configurations, and supported platforms. This format is used by the TON Connect SDK. ```JSON { "app_name": "tonkeeper", "name": "Tonkeeper", "image": "https://tonkeeper.com/assets/tonconnect-icon.png", "tondns": "tonkeeper.ton", "about_url": "https://tonkeeper.com", "universal_url": "https://app.tonkeeper.com/ton-connect", "bridge": [ { "type": "sse", "url": "https://bridge.tonapi.io/bridge" }, { "type": "js", "key": "tonkeeper" } ], "platforms": ["ios", "android", "chrome", "firefox", "safari", "windows", "macos", "linux"] } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.