From 63e008ddf3729ea2d866bb91f923c4dc6fe13f32 Mon Sep 17 00:00:00 2001 From: Anthony Tsivarev Date: Mon, 7 Aug 2023 07:56:13 +0200 Subject: [PATCH] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f7279e2..9effd71 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Ton Connect Documentation +# TON Connect Documentation ## Developing a TON app? Use the SDK. @@ -12,7 +12,7 @@ If you use another language, please take the JS SDK as a reference and implement ## Protocol specifications -If you implement an SDK, a wallet or want to learn more how Ton Connect works, please read below. +If you implement an SDK, a wallet or want to learn more about how TON Connect works, please read below. * [Protocol workflow](workflows.md): an overview of all the protocols. * [Bridge API](bridge.md) specifies how the data is transmitted between the app and the wallet. @@ -22,7 +22,7 @@ If you implement an SDK, a wallet or want to learn more how Ton Connect works, p ## Q&A -#### I am building an HTML/JS app, what should I read? +#### I am building an HTML/JS app. What should I read? Simply use the JS SDK and do not worry about the underlying protocols. @@ -38,22 +38,22 @@ JS SDK does that for you; just get wallets list `connector.getWallets()` and che Like with embedded apps (see above), JS SDK detects it for you via `injected` property of the corresponding `connector.getWallets()` list item. If you build your own SDK you should check that `window.[targetWalletJsBridgeKey].tonconnect` exists. -#### How to implement backend authorization with tonconnect? +#### How to implement backend authorization with TON Connect? [See an example of dapp-backend](https://github.com/ton-connect/demo-dapp-backend) #### How do I make my own bridge? -You don’t need to, unless you are building a wallet. +You don’t need to unless you are building a wallet. If you build a wallet, you will need to provide a bridge. See our [reference implementation in Go](https://github.com/ton-connect/bridge). Keep in mind that the wallet’s side of the bridge API is not mandated. -For a quick start you can use the common TON Connect bridge https://bridge.tonapi.io/bridge. +For a quick start, you can use the common TON Connect bridge https://bridge.tonapi.io/bridge. #### I make a wallet, how do I add it to the list of wallets? -Submit a pull request for the [wallets-list](https://github.com/ton-blockchain/wallets-list) repository and fill our all the necessary metadata. +Submit a pull request for the [wallets-list](https://github.com/ton-blockchain/wallets-list) repository and fill out all the necessary metadata. Apps may also add wallets directly through the SDK.