Phantom Embedded enables you to seamlessly onboard users to your application, without requiring them to have previously installed a wallet. With Phantom Embedded, users can create a self custodial wallet with just their Google account and a 4-digit pin. Once created, this wallet will automatically sync with Phantom's mobile and extension apps without the user needing to know their seed phrase or manage any private keys.
In addition to powering wallet creation, Phantom Embedded also comes with a built-in UI for users to view and manage their holdings. This UI serves as a trusted interface for users to sign messages and transactions on your app.
- Create self custodial wallets without leaving your application
- Onboard users via Sign in with Google and a 4-digit pin (no seed phrases)
- Sync embedded wallets with Phantom's mobile and extension apps
- Sign transactions and message on Solana (more chains coming soon)
- View, send, and receive tokens on Solana, Ethereum, Bitcoin, Base, and Polygon
- Pricing: FREE
- Install the Phantom Embedded SDK
yarn | npm | pnpm add @phantom/wallet-sdk
- Load the Phantom Embedded wallet in your web application
import { createPhantom } from "@phantom/wallet-sdk"
const opts: CreatePhantomConfig = {
zIndex: 10_000,
hideLauncherBeforeOnboarded: true,
}
const App = () => {
useEffect(() => {
createPhantom(opts);
}, []);
...
}
- Integrate Phantom as you would normally. Whenever a user interacts with Phantom (e.g.
window.phantom.solana.connect()
), the Phantom Embedded wallet will automatically initialize if the user does not have Phantom already installed.
The following optional parameters can be passed as createPhantom({options...})
to customize the Phantom Embedded wallet experience.
Parameter | Type | Description |
---|---|---|
hideLauncherBeforeOnboarded |
boolean | If true , the Phantom Embedded UI will be hidden until the user engages with Phantom. Defaults to false . |
colorScheme |
string | The background color of the Phantom Embedded iframe, which should be configured to match your site's theme. Can be "light" , "dark" , or "normal" . Defaults to "normal" . |
zIndex |
number | The z-index of the Phantom Embedded UI. Defaults to 10_000 . |
paddingBottom |
number | The number of pixels between the Phantom Embedded UI and the right edge of the web. Defaults to 0 . |
paddingRight |
number | The number of pixels between the Phantom Embedded UI and the bottom edge of the web. Defaults to 0 . |
Try out Phantom Embedded via our demo app: https://sandbox.phantom.dev/sol-embedded-sandbox
Note: Phantom Embedded will not initialize if it detects that the user already has the Phantom extension installed, or if the user is accessing the page from within the Phantom mobile app.
Phantom Embedded is in active development and will be prioritizing features requested by early adopters. If you are interested in working with us, please email us at [email protected]
or message @brianfriel
on Telegram.
How does the embedded wallet work with the Phantom extension?
If the Phantom extension is detected, we will not inject the embedded wallet. Phantom users can continue using their extension like normal.
What does `createPhantom()` do?
The Phantom embedded wallet lives inside an iframe. The `createPhantom` function loads and attaches the iframe to your website.
How do I interact with the embedded wallet?
Once `createPhantom` has been called, `window.phantom.solana` and a compliant wallet-standard provider will also be available in the global scope of your website. This means that most of your existing code for interacting with Solana wallets should work out of the box.
Once a user has onboarded to the embedded wallet, they should be able to click your “connect wallet” button, which gives your website access to their Solana address. After that, signing messages and transactions should just work as normal.
I can't see the embedded wallet on my website. What's wrong?
The most common cause is that you are using a browser with the Phantom extension installed. If the Phantom extension is detected, we will not inject the embedded wallet.
You can temporarily disable the Phantom extension by going to `chrome://extensions` and toggling Phantom off.
How much does this cost?
It's free!
We are providing early access to beta software for testing purposes only. Embedded wallet should be used in a non-production environment only. Phantom will not be liable for any losses or damages suffered by you or your end users if you push the early access version of embedded wallets to a production environment.
All suggestions, enhancement requests, recommendations or other feedback provided by you relating to the embedded wallet will be the sole and exclusive property of Phantom and by using the early access version of embedded wallets and providing feedback to Phantom you agree to assign any rights in that feedback to Phantom.