Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 2.22 KB

connecting-to-the-wallet-through-js-and-identifying-the-wallets-owner.md

File metadata and controls

51 lines (35 loc) · 2.22 KB

🔌 Connecting to the wallet through JS and identifying the wallet's owner

{% hint style="success" %} Contributors: @rajkaria, @kb24x7 {% endhint %}

  1. User visits the website, at this point the wallet extension injects code into the window object so that the website's code can connect and interact with the wallet to get the wallet's details, perform actions, etc.
  2. As soon as the user clicks the connect button, the JavaScript code in the front-end prompts the wallet to get an approval from the user to connect to that website.
  3. If approved, the wallet returns the public key of that user for identification.

Identifying the wallet

While this example only includes code for Phantom and SolFlare, the process is pretty similar for other wallets as well.

// exportWallet.ts
export const getWallet = () => window.solana || window.solflare

Now that we have the wallet exported, we can import it into our other files for us to utilize it.

// wallet.ts
import { getWallet } from './exportWallet.ts'

export const connectWallet = async () => {
    const wallet = getWallet()
    if (!wallet) {
      window.open("https://phantom.app", "_blank"); 
      return
    }
    const publicKey = await wallet.connect()
    return publicKey
}

See? It was that simple, now that we have the connect to wallet function ready, we can use the user's public key to save it to the DB and identify them as it will always be unique.

If there are no supported wallets detected, it automatically redirects the user to phantom's website.

FAQs

If you have any doubts related to this topic or you have a suggestion, feel free to create an issue here.

If you want to make edits to this topic or update the topic, please click on the "Edit on Github" link you see on the right section, make the changes and create a pull request to the master branch. One of the moderators will look at your changes & merge your changes if all looks good.

And yes, if you update anything in this topic, don't forget to add your GitHub username in the contributors' list!

Have a happy learning! ✌️