LayerZeroFault
hardware fallback

Fix: Trezor Suite Missing Legacy SegWit (BIP49) Bitcoin Balances

VV

Written by

Fact-Checked on September 11, 2026

Verified Expert

Fix: Trezor Suite Missing Legacy SegWit (BIP49) Bitcoin Balances

Following a firmware update, a migration from the deprecated Trezor web wallet to Trezor Suite, or a device recovery onto a new Trezor Safe 3 or Model T, users frequently experience acute panic: their Bitcoin portfolio displays 0.00000000 BTC. Historical transaction histories have vanished, and incoming addresses generated by the app start with bc1q... instead of the user’s familiar 3... format.

This balance disappearance is not a loss of funds. Rather, it represents a cryptographic derivation standard divergence between BIP84 (Native SegWit) and BIP49 (Nested / Legacy SegWit).

If you are experiencing similar derivation discrepancies with Native SegWit addresses or xpub/zpub key formats, consult our foundational analysis on BIP-84 Native SegWit Missing Bitcoin Balance.


Cryptographic Root Cause: Derivation Path & Script Divergence

Bitcoin wallets derive cryptographic keys hierarchically from a master seed phrase according to BIP32 and BIP44 standards:

$$\text{m / purpose’ / coin_type’ / account’ / change / address_index}$$

Placeholder: Architecture Diagram of Bitcoin BIP44 vs BIP49 vs BIP84 Derivation Trees and Extended Keys

The Three Competing Bitcoin Script Formats

  1. Legacy (BIP44 - P2PKH):
    • Path: m/44'/0'/0'
    • Address Prefix: 1...
    • Extended Key: xpub
  2. Nested / Legacy SegWit (BIP49 - P2SH-P2WPKH):
    • Path: m/49'/0'/0'
    • Address Prefix: 3...
    • Extended Key: ypub
    • Standard default for Trezor wallets between 2017 and 2021.
  3. Native SegWit (BIP84 - P2WPKH Bech32):
    • Path: m/84'/0'/0'
    • Address Prefix: bc1q...
    • Extended Key: zpub
    • Modern default for Trezor Suite.

When a user initializes Trezor Suite, the software queries the device for m/84'/0'/0' by default. If the user originally deposited BTC into a 3... address derived under m/49'/0'/0', the Native SegWit address tree is mathematically completely unrelated, displaying a balance of zero.


Step-by-Step Recovery Protocol

To locate and display your stranded Legacy SegWit Bitcoin balances in Trezor Suite or third-party open-source tools without exposing your seed phrase, execute the following protocol.

Placeholder: Step-by-Step Flowchart of Trezor Suite Account Type Selection and Electrum Hardware Inspection

1. Enable Legacy SegWit Accounts in Trezor Suite

  1. Open Trezor Suite (desktop application) and connect your Trezor device.
  2. Enter your PIN and optional passphrase (if used).
  3. In the left navigation sidebar, navigate to the Accounts section.
  4. Click the + (Add Account) button.
  5. In the modal, select Bitcoin.
  6. Click the Account type dropdown menu (which defaults to Native SegWit).
  7. Select Legacy SegWit (P2SH).
  8. Click Add account.
[Trezor Suite Account Selector Preview]
Account Type: [ Legacy SegWit (P2SH) ▼ ]
Derivation Path: m/49'/0'/0'
Expected Prefix: 3...
Status: Scanning blockchain... FOUND (1.4285 BTC)

Trezor Suite will immediately scan the blockchain starting at address index 0 for m/49'/0'/0'. Your historical transactions and positive balance will reappear in the account dashboard.

2. Recovery via Electrum with Custom BIP49 Derivation

If Trezor Suite fails to discover older accounts due to non-standard address gap limits (where more than 20 consecutive addresses have no transactions), pair your Trezor with Electrum:

  1. Download and verify the official Electrum wallet.
  2. Launch Electrum $\rightarrow$ Create New Wallet $\rightarrow$ Standard wallet.
  3. Select Use a hardware device $\rightarrow$ choose your Trezor.
  4. When prompted for script type and derivation path, select:
    • p2sh-segwit (p2wpkh-p2sh)
    • Derivation path: m/49'/0'/0'
  5. Complete the setup. Electrum will connect directly to decentralized Electrum servers and index your full UTXO set.

3. Inspect and Verify Extended Public Keys (Ypub vs Zpub)

You can verify whether your public keys match without risking funds by using Bitcoin CLI utilities:

# Verify the Ypub (Nested SegWit) master key on Trezor
trezorctl btc get-public-node -n "m/49'/0'/0'" --coin Bitcoin

# Verify the Zpub (Native SegWit) master key on Trezor
trezorctl btc get-public-node -n "m/84'/0'/0'" --coin Bitcoin

If you convert a ypub to an xpub using tools like bitcoinjs-lib, you can audit transactions in block explorers like Blockstream.info or Mempool.space:

// scripts/ypubToAddresses.ts
import * as bitcoin from 'bitcoinjs-lib';
import { BIP32Factory } from 'bip32';
import * as ecc from 'tiny-secp256k1';

const bip32 = BIP32Factory(ecc);

export function deriveBip49Address(accountYpub: string, index: number): string {
  // Convert Ypub to standard BIP32 node
  const node = bip32.fromBase58(accountYpub);
  const child = node.derive(0).derive(index); // External receiving chain

  const { address } = bitcoin.payments.p2sh({
    redeem: bitcoin.payments.p2wpkh({ pubkey: child.publicKey, network: bitcoin.networks.bitcoin }),
    network: bitcoin.networks.bitcoin,
  });

  return address!;
}

Bitcoin Account Standard Comparison Table

FeatureLegacy (BIP44)Nested SegWit (BIP49)Native SegWit (BIP84)Taproot (BIP86)
Address Starts With1...3...bc1q...bc1p...
Derivation Pathm/44'/0'/0'm/49'/0'/0'm/84'/0'/0'm/86'/0'/0'
Extended Key Prefixxpubypubzpubxpub
Avg Transaction FeeHigh (Baseline)~25% Cheaper~40% Cheaper~45% Cheaper (Complex txs)
Trezor Suite SupportOptionalOptionalDefaultSupported

Frequently Asked Questions

Q: Should I move my Bitcoin from Legacy SegWit (BIP49) to Native SegWit (BIP84)?

Yes, moving funds from BIP49 (3...) to BIP84 (bc1q...) or Taproot (bc1p...) reduces future network transaction fees by approximately 20–35% due to more efficient witness data serialization. Once you discover your BIP49 account, execute a standard transfer to your Native SegWit address during a low-mempool weekend.

Q: Why didn’t Trezor Suite show my BIP49 account automatically?

To optimize synchronization speed and reduce RPC server load, Trezor Suite stops scanning an account derivation tree if it detects an account with 0 balance and 0 historical transactions. If your BIP49 account was created at account index 1 (m/49'/0'/1') instead of index 0, Suite requires manual account addition.

Q: Can entering the wrong Passphrase cause this?

Yes. If you use a BIP39 passphrase (the “25th word”), even a single capitalization error (e.g. Password vs password) creates an entirely different hidden wallet with empty balances across all derivation standards. Ensure your passphrase matches your original setup character for character.

Partner Spotlight: Gate.io

Trade Securely on Gate.io

Don't risk your assets on centralized silos or unverified endpoints. Trade securely on Gate.io with deep liquidity and institutional-grade security protocols.

Claim $100 Sign-up Bonus

Official Partner Referral Link

Related Inquiries

Why does Trezor Suite show a 0 BTC balance when I had Bitcoin on my Trezor?

Trezor Suite defaults to creating and scanning Native SegWit accounts (BIP84, addresses starting with 'bc1q'). If your Bitcoin was deposited between 2017 and 2021, it was almost certainly stored on a Legacy SegWit account (BIP49, addresses starting with '3'). Trezor Suite does not always scan BIP49 accounts automatically if there are empty intervening accounts.

What is the difference between BIP49 and BIP84 derivation paths on Trezor?

BIP49 uses the derivation path m/49'/0'/0' for Nested SegWit (P2SH-P2WPKH) generating '3...' addresses and Ypub extended keys. BIP84 uses m/84'/0'/0' for Native SegWit (Bech32) generating 'bc1q...' addresses and Zpub extended keys. Because the mathematical derivation paths differ, each standard generates entirely different addresses from the same 24-word recovery seed.

How do I make Trezor Suite display my BIP49 Legacy SegWit account?

In Trezor Suite, click on the '+' icon next to Accounts in the left sidebar, select Bitcoin, open the 'Account type' dropdown menu, choose 'Legacy SegWit', and click 'Add account'. Suite will scan the m/49'/0'/0' derivation path and restore your positive balance.