Please search https://solana.stackexchange.com and the issues in the repo. Issues are only for bug reports and feature requests.
- I am building an app, how do I use this?
- I am building a wallet, how do I use this?
- How can I get support?
- Can I use this with ___?
- What does this error mean?
- How can I sign and verify messages?
See the guide Wallet Adapter for Solana Apps.
See the guide Wallet Adapter for Solana Wallets.
Please ask questions on the Solana Stack Exchange.
After reading this FAQ, if you've found a bug or if you'd like to request a feature, please open an issue.
Yes, see the react-ui-starter package.
Yes, use the useAnchorWallet()
hook in the React package to easily get an Anchor-compatible Wallet interface.
Yes, see the nextjs-starter package for very basic configuration, or the example package for more complete configuration.
If you're using one of the react-ui, material-ui, or ant-design packages too, make sure to configure the WalletModalProvider
or WalletDialogProvider
context as shown here.
Yes, see the material-ui-starter package.
Yes, see the ant-design package.
Yes, see the community-maintained Vue package.
Yes, see the community-maintained Angular package.
Yes, see the community-maintained Svelte package.
Yes, see the community-maintained Unity package.
Yes, but you may need to set up polyfills for certain imported modules.
For example, you may need to install buffer
:
npm install --save buffer
And configure webpack.config.js
:
const webpack = require('webpack');
module.exports = {
plugins: [
new webpack.ProvidePlugin({
Buffer: ['buffer', 'Buffer']
})
],
resolve: {
fallback: {
crypto: false
}
}
};
Yes, but you may need to provide custom build configuration.
Most of the packages are built using the TypeScript compiler, which outputs modular ES6 with import
/export
statements.
If you're using Create React App, craco, or one of the React-based starter projects using them, this should be handled automatically.
If you're using Next.js, this requires configuration, which is provided in the nextjs-starter package.
If you're using something else, you may have to configure your build tool to transpile the packages similarly to how it's done in the Next.js config. Please open an issue or pull request to document your solution!
This can happen if you're cloning the project and building it from the source and you missed a step.
If this doesn't fix the problem, please open an issue.
[...] is not a function
/ [...] is undefined
/ Uncaught TypeError: Cannot destructure property
/ Uncaught (in promise) WalletNotConnectedError
This can happen if you don't wrap your app with the WalletContext
and ConnectionContext
provided by the react package.
See issues #62, #73, and #85.
This shouldn't happen if you're using one of the starter projects, since they set up the contexts for you.
This can happen if you try to use signTransaction
, signAllTransactions
, or signMessage
without checking if they are defined first.
sendTransaction
is the primary method that all wallets support, and it signs transactions.
The other methods are optional APIs, so you have to feature-detect them before using them.
Please see issue #72.