Skip to main content
WalletConnect Pay supports Solana payments, enabling users to pay with native SOL and SPL tokens. This guide covers how to extend your wallet’s WalletConnect Pay integration to support Solana payments end-to-end.
This guide applies whether you integrate with the Wallet Pay SDK or directly with the Gateway API (API-first). The signing requirements are identical — Solana actions arrive as walletRpc actions, and the signed transaction is returned in the results array. The code samples below use SDK method names; if you are integrating API-first, the equivalents are:Everything else in this guide — advertising Solana accounts, routing by namespace, the solana_signTransaction payload, and returning the signed transaction blob — is the same in both integrations.

Solana payment flow

A Solana payment follows the same three-call flow as any other WalletConnect Pay payment. The only Solana-specific parts are the signing method (solana_signTransaction) and that your wallet signs but never broadcasts — the WalletConnect Pay backend submits the signed transaction to the network.
The results[] (or signatures[]) you submit on confirm must match the option’s actions[] in order and length — including any EVM actions that precede a Solana action in a mixed-chain option.

Key capabilities

Implementing Solana support enables three primary features:
  1. Native SOL transactions — Users can initiate Solana payments through Pay links when merchants support the network
  2. Mixed-chain options — Single payment links can present both EVM and Solana choices simultaneously
  3. Namespace-based routing — Individual actions route to appropriate signers based on CAIP-2 namespace identifiers

Implementation requirements

Follow these requirements to correctly implement Solana payment support in your wallet. Include Solana accounts when calling getPaymentOptions using the CAIP-10 format:
For example, a Solana mainnet account would be formatted as:
Only advertise Solana accounts if your wallet has Solana keys available. Wallets without Solana support should not include Solana accounts in the request.

Route actions by namespace

Determine the signing wallet for each action using the namespace from the chain ID. Extract the namespace from actions[i].walletRpc.chainId rather than assuming a single wallet type for all actions.

Implement Solana signing

For Solana actions, implement the solana_signTransaction method. Sign the transaction and append the signed transaction blob, base64-encoded to the signatures array.
Return the signed transaction, not the signature. Solana signer libraries may return both a detached bs58 signature and the signed transaction blob. WalletConnect Pay expects the complete base64-encoded signed transaction, not the detached signature.

Do not send transactions

Do not implement solana_signAndSendTransaction for Pay flows. The WalletConnect Pay backend handles broadcasting the signed transaction. Your wallet should only sign and return the signed transaction blob.

Handle array-wrapped params

The Pay backend provides params in an array-wrapped structure: [{ transaction }]. Make sure to unwrap this structure when parsing the transaction data.

Validate signers at runtime

Guard action handlers against missing signers at execution time. If your wallet doesn’t have a Solana signer available when a Solana action is encountered, raise an error rather than silently skipping the action.

Reject unknown methods

Reject unknown wallet-RPC methods instead of silently omitting them from result arrays. The signatures array must match the actions array in order and length.

Complete action handler

Here’s a complete example showing how to handle both EVM and Solana actions in a single payment flow:

Validate your integration

Before shipping your Solana support implementation, verify these scenarios work correctly:
1

SOL-only payment

Test a payment link that only offers Solana options. Verify that:
  • The Solana option is presented to the user
  • The transaction is signed correctly
  • The base64-encoded signed transaction is submitted
  • The payment completes successfully
2

Mixed EVM and Solana payment

Test a payment link that offers both EVM and Solana options. Verify that:
  • Both option types are presented
  • Users can select either network
  • The correct signer is used for the selected option
  • Payment completes regardless of which option is chosen
3

EVM flow regression

After adding Solana support, verify that existing EVM flows still work:
  • USDC payments with EIP-3009
  • USDT payments with Permit2
  • Native token payments
4

Missing Solana wallet

Test behavior when Solana keys are not available:
  • Solana options should not be advertised to users
  • No errors should occur during option fetching
  • EVM options should work normally

Sample implementation

The React Native reference wallet demonstrates Solana support implementation:

React Native

wallets/rn_cli_wallet — see PaymentStore.approvePayment for namespace dispatch logic and usePairing.handlePaymentLink for account concatenation.