Phantom Wallet — Download Extension | Crypto & NFT Wallet

Complete guide: how to download the browser extension, set up your wallet, manage crypto and NFTs, and answers to the most frequently asked questions.

Quick download & install

Phantom is a user-friendly wallet focused on Solana (and expanding ecosystem support). Installing the browser extension takes just a few clicks. Below you'll find step-by-step instructions for Chrome/Chromium-based browsers, Firefox and Edge, plus tips for verification and recovery.

Step-by-step: install Phantom extension (Chrome / Brave / Edge)

  1. Open your browser's web store (Chrome Web Store or Edge Add-ons).
  2. Search for Phantom or go to the official Phantom website and click the install link.
  3. Click Add to Chrome / Add to browser, then confirm the permissions.
  4. After install, pin the Phantom icon to your toolbar for quick access.

Firefox and other browsers

The steps are similar: visit the Firefox Add-ons site, search for Phantom, and add the extension. If you use a different Chromium-based browser, the Chrome Web Store flow will usually work the same.

Pro tip

Always verify you are installing the official Phantom extension — check the publisher name, number of users/reviews, and links from the official Phantom website before installing.

Official links (quick access)

Below are 10 official Phantom links. They’re styled to be colorful so you can spot them easily in the article.

First-time setup: create or restore wallet

Create a new wallet

After installing the extension, click the Phantom icon and choose Create New Wallet. Phantom will generate a secret recovery phrase (typically 12 or 24 words depending on the version). Write these words down on paper and store them securely — this is the ONLY way to recover your wallet if your device is lost.

Security checklist

Restore an existing wallet

Choose Restore from seed phrase in the Phantom setup and enter your seed words exactly in order. Phantom will restore your accounts and associated token balances from the blockchain.

Multiple accounts

Phantom supports multiple accounts within the same wallet — useful for separating funds, testing, or managing NFTs in different collections.

Managing crypto and NFTs

Sending and receiving tokens

Receiving is as simple as copying your public address and sharing it. Sending requires confirming on the Phantom popup and paying the native chain fee (for Solana, a small SOL fee).

Adding custom tokens

If a token doesn't appear automatically, use the Add Token option and paste the token's mint address. Always verify token contracts from an official source.

NFTs in Phantom

Phantom displays NFTs you own and allows you to view details and links to marketplaces. For transfers, confirm recipient addresses carefully — NFT transfers are irreversible.

Tips for NFT collectors

Security & best practices

Recognize phishing attempts

Legitimate Phantom prompts appear within the extension UI. Never enter your seed phrase on a website, and be suspicious of any site asking to connect immediately after loading a suspicious URL.

Hardware wallet integration

For maximum security, use a hardware wallet alongside Phantom (where supported). This keeps private keys off your computer and requires physical confirmation of transactions.

Backup strategy

Keep at least two offline backups of your seed phrase in separate secure locations. Consider using a metal backup plate for durability.

Common FAQ

Is Phantom free?
Yes — the extension itself is free, but you will pay standard network transaction fees (for example, SOL gas fees on Solana) when sending tokens or interacting with smart contracts.
What chains does Phantom support?
Phantom started on Solana and has expanded with multi-chain capabilities. Check the official docs for the latest list of supported networks.
Can I recover my wallet without the seed phrase?
No. If you lose the seed phrase and have no other backup, there is no way to recover access to your funds.
How do I verify the official extension?
Install from the official Phantom website or verified store listings. Compare publisher information and the number of users/reviews. If in doubt, consult Phantom’s support pages.
Can Phantom NFTs be listed on marketplaces?
Yes — Phantom integrates with many Solana marketplaces and exposes links to marketplaces where you can list items for sale.

Developer & advanced features

Connecting dApps

When a dApp requests connection, Phantom will show a permission prompt. Review requested permissions and avoid granting unlimited access when possible.

Custom RPC & devnet

For development, Phantom lets you point to custom RPC endpoints and switch to devnet/testnet networks. Use this for testing transactions before going live.

Programmatic access

Developers can use Phantom with web3 libraries to sign and send transactions. Consult the official developer docs for code examples and best practices.

// Example (pseudo): connect
const phantom = await window.solana.connect();
const pubkey = phantom.publicKey.toString();
console.log('Connected:', pubkey);