wallets-list

TON Connect Wallets

List of wallets that support TON Connect.

The TON Connect SDK uses this list to show available wallets in dApps.

For Wallet Developers

WalletKit is the easiest way to integrate TON and TON Connect — it handles connection flows, signing, and session management for you. Or for full control, implement the TON Connect protocol directly.

How to Add Your Wallet

  1. Implement TON Connect using WalletKit or the protocol spec
  2. Submit a pull request adding your wallet to the end of the list
  3. We’ll review and merge promptly

Entry format

Each entry has the following format (subject to change):

{
  "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",
  "deepLink": "tonkeeper-tc://",
  "bridge": [
     { "type": "sse", "url": "https://connect.ton.org/bridge" },
     { "type": "js", "key": "tonkeeper" }
  ],
  "platforms": ["ios", "android", "chrome", "firefox", "safari", "windows", "macos", "linux"],
  "features": [
    { "name": "SendTransaction", "maxMessages": 4, "extraCurrencySupported": false },
    { "name": "SignData", "types": ["text", "binary", "cell"] }
  ]
}

Full specification: wallets-v2.schema.json

Description

If your wallet supports HTTP Bridge, you should specify universal_url, deepLink and bridge.type="sse".

If your wallet provides the JS bridge (e.g. as a browser extension), you should specify the bridge.type="js".

If your wallet supports both bridges, you have to specify universal_url, deepLink and both bridge.type="sse" and bridge.type="js".

What is the policy?

Our goal is to represent accurate up-to-date list of all TON wallets that support TON Connect.

In the future it would be a good idea to replicate wallet’s info in a TON DNS record so that this repo simply lists the wallet domain names (to filter out spam), while developers have more direct control over the wallet parameters.