Install & first-run (practical steps)
          
            Installing the Exodus Wallet Extension is quick and familiar if you've added browser extensions before, but there are a few small precautions that make your first-run safer and smoother. Start at the official Exodus Web3 Wallet page and follow the link to the Chrome Web Store or the browser-specific distribution. Always verify the publisher on the store listing before adding the extension to your browser.
          
          
            Typical steps:
          
          
            - Visit the Exodus Web3 Wallet page: exodus.com/web3-wallet.
 
            - Click the browser extension link and choose Add to Chrome (or the equivalent for your Chromium-based browser).
 
            - Open the extension and choose Create new wallet or Import. If you create a new wallet, you will receive a recovery phrase — write it down on paper or use a metal backup and store copies in secure locations.
 
            - Set a strong extension passcode and pin the extension to your toolbar for convenience.
 
            - Run a small test transaction on a reputable dApp so you are comfortable with the approval screens and gas confirmation flow.
 
          
          
            Doing a tiny test tx is one of the best first-run practices: it proves the whole flow without risking significant funds, and it helps you understand how the extension displays transaction details and fees.
          
        
        
          Security: simple, important habits
          
            Exodus encrypts your private keys locally in the browser extension; however, encryption alone isn't enough. The most effective protections come from a combination of secure storage practices and cautious interactions. Below are straightforward habits that greatly reduce risk.
          
          
            - Offline backups: store your recovery phrase offline (paper or metal backup). Keep two copies in separate secure locations.
 
            - Verify sources: always download from exodus.com/web3-wallet or the official download center to avoid fake extensions.
 
            - Limit allowances: when asked to approve token spending, prefer specific allowances and avoid unlimited approvals unless necessary.
 
            - Use hardware wallets: for larger holdings, pair Ledger/Trezor where supported to keep signing offline.
 
            - Keep software updated: keep both your browser and extension up-to-date to receive security fixes.
 
          
          
            If you suspect your machine is compromised, move funds to a freshly created wallet on a secure device as soon as possible and revoke allowances tied to the compromised address.
          
        
        
          Features at a glance (and how to use them)
          
            Exodus Wallet Extension focuses on approachable features that solve common Web3 needs:
          
          
            - Portfolio & balances: view balances across supported chains and tokens in one place.
 
            - In-extension swaps: swap tokens without leaving the extension using integrated liquidity routing.
 
            - NFT support: view NFTs connected to your address and link to marketplaces for buying or listing.
 
            - Provider compatibility: standard provider interface allows mainstream dApps to connect seamlessly.
 
          
          
            For everyday use, rely on the extension's portfolio view to keep track of holdings; for trades, use the built-in swap carefully and check the quoted price before approving.
          
        
        
          Using DeFi & NFTs safely
          
            When interacting with DeFi protocols (lending, swaps, liquidity pools) or NFT marketplaces, prefer reputable platforms and inspect contract addresses. Use small amounts for new protocols, and when minting NFTs, use a dedicated "hot" wallet with limited funds to avoid exposing large balances.
          
          
            Typical steps for a safe DeFi interaction:
          
          
            - Confirm the dApp URL and source.
 
            - Connect your wallet and review the address shown in the extension popup.
 
            - When approving token allowances, check the exact token, amount, and whether the allowance is limited or unlimited.
 
            - For large stakes or treasury-level moves, use hardware wallets for signing and require multi-step approvals where practical.
 
          
          
            Keeping separate accounts for experimentation and storage reduces the risk of mass loss from single approvals or compromised dApps.
          
        
        
          Developer notes (brief)
          
            Exodus exposes a provider compatible with standard Web3 patterns (EIP-1193). Developers should detect provider presence and provide clear, human-readable signing messages so users can understand what they are approving. Always test on testnets (e.g., Goerli) before moving to mainnet.
          
          
// Example: request accounts via injected provider
if (window.ethereum) {
  window.ethereum.request({ method: 'eth_requestAccounts' })
    .then(accounts => console.log('accounts', accounts))
    .catch(err => console.error(err));
}
          
          
            Provide fallbacks for users without the extension installed and link to the official download page so onboarding is frictionless and secure.
          
        
        
          Migration & multi-device tips
          
            If you use Exodus across devices (mobile, desktop, extension), importing the same recovery phrase gives access to the same addresses. Balance convenience with security: more devices create more exposure. For important holdings, prefer a hardware wallet and use the extension only for day-to-day interactions.
          
          
            For teams, maintain clear naming conventions for accounts and separate testing vs. production addresses to prevent accidental transfers.
          
        
        
          Troubleshooting & FAQ
          Q: Where can I download the official extension?
          A: Start at the Exodus Web3 Wallet page: exodus.com/web3-wallet or the Exodus download center: exodus.com/download.
          Q: Is the extension free?
          A: Yes — the extension is free to install. Blockchain network fees (gas) apply when transacting.
          Q: I lost my recovery phrase — can I recover my wallet?
          A: Without the recovery phrase (or a private key backup), funds cannot be recovered — always create offline backups immediately after wallet creation.