Skip to main content

Using Solana Standard Wallets

This guide will help you integrate and use Solana standard wallets in your application. We’ll cover everything from basic setup to advanced features like message signing and transaction handling. To learn more about the wallet standard, you can read more about it here!

Basic Setup

First, import the necessary hooks and types from Privy:

Available Features

Standard wallets provide these core features:
  • standard:connect: Connect the wallet
  • standard:disconnect: Disconnect the wallet
  • solana:signMessage: Sign messages
  • solana:signTransaction: Sign transactions
  • solana:signAndSendTransaction: Sign and send transactions

Core Wallet Features

Here’s how to use the core features of any Solana standard wallet:

Registering the Privy Embedded Wallet

To make your Privy embedded wallet compatible with other Solana applications, register it with the window object.The registration function dispatches the appropriate events to make the wallet available to other applications:
After this code is implemented in your application, you can then register the Privy embedded wallet by calling:
That’s it! You now have a fully functional Solana standard wallet integration in your application. You can use these features to connect wallets, sign messages, and handle transactions in a standardized way.