Ledger Live, the desktop and mobile companion app for Ledger hardware wallets
Ledger Live is the application that turns a Ledger hardware wallet from a sealed signing device into a usable wallet. It runs on Windows, macOS, Linux, iOS, and Android, and it handles everything the device itself cannot do on a screen the size of a stamp: discovering your accounts, reading balances from public blockchains, building transactions, tracking history, installing coin apps, and pushing firmware updates. The private keys never leave the hardware. Ledger Live prepares the work, the device approves it.
That split matters more than any feature list. Because Ledger Live holds no keys and no seed, it is not the thing that protects your funds; the secure element inside the device is. What Ledger Live provides is a trustworthy window onto that device and onto the chains it can sign for, plus a set of conveniences layered on top: portfolio charts, staking, third-party buy and swap services, an NFT gallery, and a bridge to decentralized applications. Understanding which parts of that stack you actually have to trust is the most useful thing a Ledger Live user can learn.
This page walks through the whole surface of Ledger Live in order: how the application is structured, how accounts are derived and synchronized, what happens during a transaction, how the app manager and firmware pipeline work, which services are first-party and which are not, what Ledger Live can and cannot defend against, and what to do when something breaks. It is written for people who already have a device in a drawer or on a desk and want to know exactly what the software around it is doing.
How Ledger Live works under the hood
At a high level there are three moving parts. The hardware wallet holds the seed and the derived private keys in a secure element and runs a small operating system with one coin application loaded per blockchain family. Ledger Live runs on your computer or phone and speaks to that device over USB or Bluetooth using a simple command protocol. Behind Ledger Live sit backend services that index blockchains, so the app can show you balances and history without downloading entire chains onto a laptop.
The device never sends out private keys. What it does export, on your approval, is an extended public key for each account. From that single value Ledger Live can derive every receiving and change address in the account and watch them on-chain forever, without ever asking the device again until you need a signature. This is why Ledger Live can display your portfolio while the hardware sits unplugged in a drawer, and it is also why an account list is not a secret worth much less than a seed phrase.
Blockchain data reaches Ledger Live through per-family adapters. Bitcoin-style chains are tracked by scanning addresses derived from the extended public key and reconstructing an unspent output set. Account-based chains such as Ethereum are simpler: one address, one balance, plus token balances read from contract state. Each family has its own fee model, its own notion of a pending transaction, and its own confirmation rules, and Ledger Live normalizes all of that into one operations list so the interface stays consistent across dozens of assets.
When you press send, Ledger Live assembles an unsigned transaction locally: inputs or nonce, outputs, amount, fee, and any contract call data. It then streams that payload to the device in chunks. The coin application on the device parses the payload itself, renders the human-readable fields on the device screen, and only releases a signature after you physically confirm. Ledger Live takes the signed blob back and broadcasts it to the network. If the computer is compromised, the attacker can tamper with what Ledger Live proposes, but not with what the device shows you before you press the button.
Locally, Ledger Live keeps a cache of accounts, derived addresses, operation history, and settings. On desktop this lives in an application data folder; on mobile it lives in the app sandbox. That cache is a convenience, not a vault. Deleting it loses no funds, which is why so much Ledger Live troubleshooting starts with clearing the cache and letting the app re-scan the chains from scratch.
The Ledger Live desktop and mobile applications share a common core, and the application source is published openly, while the device operating system and the secure element firmware remain proprietary. That division is worth remembering when you evaluate the stack: you can inspect how Ledger Live builds a transaction, and you rely on published attestations and third-party review for the layer below it.
HOST (Ledger Live) DEVICE (secure element)
------------------ -----------------------
build unsigned tx --APDU--> parse + render on screen
await physical approval
broadcast signed tx <--APDU-- return signature only
keys never exported
Installing Ledger Live and pairing a device
The install step is the single most attacked moment in the whole workflow, because a counterfeit copy of Ledger Live is the cheapest way for an attacker to reach a wallet. Fake builds have appeared in app stores, in search advertising, and on lookalike domains, and they all do the same thing: display a convincing interface and then ask for the 24 words. Downloading Ledger Live only from the official source, and treating any prompt for a recovery phrase inside software as an attack, removes almost the entire class of risk.
// critical invariant
Ledger Live never asks for your 24-word recovery phrase. Not during setup, not during a firmware update, not during a support session, not to unlock a feature. Any screen that requests those words, no matter how closely it resembles Ledger Live, is fraudulent.
On first launch, Ledger Live walks you through either setting up a new device or connecting one you already initialized. Setup happens on the hardware, not in the software: you choose a PIN on the device keypad or touchscreen, and the device generates and displays the recovery phrase. Ledger Live acts as a checklist and a tutor during that process, but it deliberately never sees the phrase, and the quiz it runs afterward only asks you to confirm words on the device itself.
Before it will do anything else, Ledger Live runs a genuine check. The device holds an attestation key installed during manufacturing, and it proves possession of that key to Ledger's servers through the app. A pass tells you the secure element is authentic hardware from the factory. It does not tell you the device was never tampered with physically, and it does not tell you the seed inside is one nobody else has seen, which is why a device from any source other than the manufacturer or an authorized reseller should be wiped and re-initialized with a fresh phrase before use.
Connection differs by platform. Desktop Ledger Live connects over USB, and on Linux that usually requires installing udev rules so the device is visible to a non-root user. Mobile Ledger Live connects over Bluetooth Low Energy with models that support it, and over USB-C on Android for models that do not. The Bluetooth link is not a weak point in the trust model: the pairing is encrypted, and even if it were not, the device still displays every transaction detail locally and still requires a physical press.
// desktop
Windows, macOS, Linux (AppImage). USB connection. Full feature set including firmware updates.
// mobile
iOS and Android. Bluetooth on supported models, USB-C on Android. Same accounts, smaller surface.
// verification
Genuine check on connect. Desktop builds ship with signatures you can verify before installing.
Accounts, derivation paths, and synchronization
An account in Ledger Live is a branch of the hierarchical deterministic tree that grows out of your seed. When you add an account, Ledger Live asks the device for the extended public key at a specific path, scans the chain for activity, and stops when it finds a gap of unused addresses. Any account with history is imported, and you are offered the next empty one. This is why restoring a seed on a new machine reproduces your accounts without any backup file: the addresses are computed, not stored.
Bitcoin accounts in Ledger Live come in several address flavors, each on its own path. Native SegWit is the default and produces the cheapest transactions of the widely supported types. Taproot, nested SegWit, and legacy paths exist alongside it, and each one is a separate account with a separate balance, because they are literally different branches of the tree. People who think their coins vanished after switching wallets have almost always just added the wrong flavor, and the fix in Ledger Live is to add the account type that matches where the funds actually sit.
| Account type | Path prefix | Address starts with | Note |
|---|---|---|---|
| Native SegWit | m/84'/0' | bc1q | Default in Ledger Live |
| Taproot | m/86'/0' | bc1p | Newer script type |
| Nested SegWit | m/49'/0' | 3 | Broad compatibility |
| Legacy | m/44'/0' | 1 | Oldest, largest transactions |
Account-based chains work differently. An Ethereum account is a single address, and the tokens you hold are entries in contract storage rather than separate balances. Ledger Live lists ERC-20 tokens under the parent account and pays fees for all of them from the same native balance, which is the usual reason a token transfer fails: there are tokens to send but no ETH left to pay gas. The same pattern repeats on other account-based networks that Ledger Live supports.
Synchronization runs automatically when Ledger Live opens and periodically while it is running, and you can force it per account. If a balance looks wrong, the cause is nearly always a stale cache or an indexer lagging behind the chain, not a lost coin. Because Ledger Live derives everything from public keys, wiping local data and re-synchronizing is a safe, non-destructive repair that can be repeated as often as needed.
One layer sits above all of this: the optional passphrase, sometimes called the twenty-fifth word. Entering a passphrase on the device produces an entirely different tree of accounts from the same 24 words. Ledger Live simply sees a different wallet and will ask you to add accounts again. Nothing about the passphrase is stored by Ledger Live, and there is no recovery if you forget it, so it is a tool for people who understand exactly what they are trading for the extra deniability.
Sending, receiving, and verifying on the device
Receiving is the half people rush and shouldn't. When you ask Ledger Live for a receiving address, it derives the address from the account's public key and asks the device to display the same string on its own screen. The point of that second display is defense against clipboard and display malware: a compromised computer can show you an attacker's address inside any application, including a genuine copy of Ledger Live, but it cannot change what the hardware renders. Comparing the two strings character by character takes a few seconds and closes the gap.
Sending follows the mirror pattern. You enter a recipient, an amount, and a fee in Ledger Live, and the device then walks you through the same values before it signs. On Bitcoin accounts Ledger Live offers speed presets and a custom fee rate, and it selects unspent outputs automatically rather than exposing manual coin control. On Ethereum and similar chains it estimates gas and lets you override it. Fee choice is one of the few places where the interface, not the hardware, determines the outcome, so it is worth understanding the estimator before you send something time-sensitive.
The distinction between clear signing and blind signing is the most important security concept in the entire application. Clear signing means the device can decode the payload and show you what you are actually approving: this amount, to this address, on this network, or this specific token approval to this named contract. Blind signing means the device can only show you a hash, and you are trusting whatever built the transaction. Ledger Live keeps blind signing behind an explicit setting on the relevant coin app precisely because it removes the guarantee the hardware exists to provide.
Token approvals deserve their own paragraph. Signing an approval does not move funds immediately; it authorizes a contract to move them later, sometimes without limit. Malicious dapps rely on users approving an unlimited allowance for a contract they will never think about again. When a transaction routed through Ledger Live shows an approval, read the spender and the amount on the device screen, and treat an unlimited allowance to an unfamiliar address as a refusal, not a formality.
Once signed, the transaction is broadcast and appears in the account history as pending. Ledger Live shows confirmations as they accumulate and keeps a full operations log per account that can be exported as CSV for bookkeeping. On chains that support replacement, a stuck transaction can be re-sent with a higher fee; on chains that do not, the only option is patience. Every entry in that history is reconstructed from the chain, so it survives reinstalling Ledger Live or moving to a new computer.
DEVICE PROMPT SEQUENCE (illustrative)
[1/4] Review transaction
[2/4] Amount 0.0250 BTC
[3/4] Address bc1q....xxxx (verify on device)
[4/4] Fees 0.0000{n} BTC -> Approve / Reject
My Ledger, coin apps, and firmware updates
The My Ledger section is the device management console inside Ledger Live. It lists the applications installed on the connected hardware, the applications available to install, the firmware version, and the free storage remaining. Each blockchain family needs its own small application on the device to parse and sign its transaction format, so a wallet that touches five networks needs five apps, or needs them installed and removed as required.
Storage limits are a common surprise. Device memory is measured in megabytes, and how many apps fit depends on the model and on which apps you choose, since some are far larger than others. Removing an app from a device through Ledger Live never touches funds: the keys are derived from the seed, so uninstalling and later reinstalling the same app returns you to exactly the same accounts and the same balances. The accounts stay visible in Ledger Live even while the app is gone; you simply cannot sign until it is back.
Every app and every firmware image installed through Ledger Live is cryptographically signed, and the device verifies that signature before accepting the install. This is why the manager insists on a connected, unlocked device and an explicit on-device confirmation to allow the manager session at all. It also means an attacker who fully controls your computer still cannot push arbitrary code onto the secure element without your physical approval and a valid signature.
Firmware updates run from desktop Ledger Live and follow a strict sequence: the device is put in a bootloader state, the new image is verified, and installed apps are wiped and reinstalled afterward, since apps are compiled against a firmware version. Your recovery phrase and accounts are untouched by this. If an update is interrupted by an unplugged cable or a crashed application, the device may boot into recovery mode, and Ledger Live offers a repair routine that reinstalls the firmware. Confirming your recovery phrase is written down and accurate before any firmware operation is basic hygiene, not paranoia.
Buying, selling, swapping, and staking inside Ledger Live
Alongside the wallet functions, Ledger Live embeds a set of financial services. These are not run by the wallet itself. Buying, selling, and swapping are provided by third-party partners integrated into the interface, each with its own pricing, coverage, identity requirements, and terms. Ledger Live routes you to the provider you pick, keeps the funds flowing to and from addresses your own device controls, and shows the quote before you commit.
On the buy side, you choose a provider, a payment method, and an amount, and the coins are delivered to an address derived from your device. Because the destination is your own hardware wallet, there is no exchange balance sitting in someone else's custody afterward. What you do inherit is the provider's identity verification process, their regional availability, and their spread, which is usually where the real cost sits rather than in a visible fee line. Comparing quotes inside Ledger Live before confirming is worth the extra thirty seconds.
Swaps work the same way with an extra wrinkle. A swap sends one asset from one of your accounts to a provider and receives another asset back into a second account you control, and both legs are signed on the device. Ledger Live shows the exchange rate, the provider, and whether the rate is fixed or floating. A floating rate can move between quote and settlement, so the amount you receive may differ from the estimate. Any provider quoting a swap through Ledger Live still runs its own liquidity and its own policies, and the wallet is not a counterparty to that trade.
Staking is available for a number of proof-of-stake networks. In every case Ledger Live builds the delegation or staking transaction, the device signs it, and the assets remain controlled by your keys while they earn. What varies by chain is everything else: lock-up and unbonding periods, whether rewards compound automatically or must be claimed, minimum amounts, and the risk that a misbehaving validator is penalized. Ledger Live surfaces the validator choice and the current rates, but the network rules, not the app, govern when you can withdraw.
Treat all of these as conveniences with counterparties. The security guarantee of the hardware still holds, because nothing moves without a signature you approved on the device screen. The commercial terms, however, belong to whichever partner you selected, and comparing them against an exchange or another on-chain route is a reasonable thing to do before routing a large amount through the interface.
// scope note
Ledger Live is free to download and use. Costs come from network fees and from the third-party providers behind buy, sell, and swap flows. Always read the quote and the provider name on the confirmation screen before approving.
Decentralized applications, WalletConnect, and NFTs
Ledger Live includes a discovery area where selected applications run inside the wallet, and it supports WalletConnect so your device can act as the signer for external sites and apps. In both cases the pattern is unchanged: the external application proposes a transaction or a message, Ledger Live relays it, and the hardware displays and signs. Nothing about connecting to a dapp grants it access to your keys.
This is exactly where clear signing earns its keep. Interacting with a lending market or a marketplace produces contract calls that are unreadable as raw data, and approving them blind means trusting the site's front end completely. Before connecting anything through Ledger Live, check whether the relevant coin app can decode that contract type, and be more suspicious the less your device screen is able to tell you.
NFTs held on supported networks appear in a gallery within Ledger Live, with metadata and media loaded from the sources the tokens point to. Unsolicited tokens can and do show up in any public address; their presence means nothing except that someone paid to send them. Do not interact with a mystery token, and remember that sending an NFT is an ordinary transfer that your device will ask you to confirm like any other.
Using Ledger Live on more than one machine
Most people end up with Ledger Live on a laptop and on a phone. Because accounts are derived rather than stored, each installation can rebuild the same view independently by connecting the device and adding accounts again. The tedious part is not the security, it is the bookkeeping: account names, hidden tokens, and other preferences live in each installation separately unless you deliberately carry them across.
Ledger Live offers a synchronization feature that propagates your account list and its labels between installations through an encrypted channel, so adding an account on desktop makes it appear on mobile without a rescan. What travels is wallet metadata, not keys and not the recovery phrase, and the encryption is tied to your device rather than to an account with a password. Signing still requires the hardware on whichever machine you are using.
Mobile and desktop are not identical. Firmware updates and some device maintenance are desktop operations, while the phone is generally the better tool for checking a balance or receiving funds while away from a computer. Running Ledger Live in both places is the normal configuration, and if you only ever install one, make it the desktop build so device management is always available to you.
Privacy and data handling
Any wallet that shows you a balance has to ask something, somewhere, about your addresses. Ledger Live queries indexing services for the chains you use, which means those services see requests for your extended public keys and addresses, associated with the IP address making the request. This is the standard trade-off for a light wallet that works in seconds instead of syncing a full node for days, and it is a privacy cost rather than a custody risk, since no query can move funds.
Ledger Live also fetches market prices for the portfolio view, media for NFTs, and content for the discovery area, and it can send anonymous usage analytics and crash reports. Those last two are toggles in the settings, and turning them off does not degrade the wallet. Users who care about network-level correlation typically disable them, run Ledger Live over a VPN or Tor at the operating system level, and keep the price feed in mind as another outbound request.
On-chain privacy is a separate matter that no interface can fix. Bitcoin accounts in Ledger Live cluster their unspent outputs when a transaction spends several at once, linking addresses that an observer might not otherwise connect. Because Ledger Live does not expose manual coin control, users with strong chain-analysis concerns often keep separate accounts for separate purposes, or pair the device with a Bitcoin-only desktop wallet that offers output selection and a personal node.
Finally, remember that identity data enters the picture the moment you use an integrated buy or sell provider. Those partners run their own compliance processes and hold whatever documents you give them under their own policies. Using Ledger Live purely as a wallet keeps your footprint to network requests; using it as an on-ramp attaches a verified identity to specific addresses.
What Ledger Live protects against, and what it does not
The strongest claim you can make is narrow and true: with a hardware wallet behind it, Ledger Live can run on a compromised computer without leaking your keys, because the keys are never on that computer. Malware can watch your balances, swap an address in the interface, and try to get you to sign something you did not intend, but it cannot extract a seed that lives in a secure element and never leaves it.
That protection has an obvious dependency. It only works if you read the device screen. Every attack that succeeds against a hardware wallet user works by getting them to approve something they did not understand, or by convincing them to type the recovery phrase into a screen. Software cannot fix that, and Ledger Live does not pretend otherwise; it puts the critical values in front of you and asks the device to repeat them.
Phishing is the dominant real-world threat. Owners of hardware wallets receive fake update notices, fake support calls, fake giveaway offers, and counterfeit applications that imitate Ledger Live in every visual detail. The company disclosed a breach of an e-commerce and marketing database in 2020 that exposed customer contact details, and the phishing campaigns that followed have been running ever since. The defense is procedural rather than technical: never enter a recovery phrase anywhere, never install the app from a link in a message, and verify anything urgent through channels you navigated to yourself. Background on the general technique is well documented on Wikipedia's article on phishing.
Physical threats sit at the other end. A stolen device is protected by the PIN, which wipes the secure element after three wrong attempts, so a thief with the hardware and without the PIN gets nothing. What matters far more is the recovery phrase, because anyone who reads those words owns the funds, with or without your device and with or without Ledger Live. Store the phrase offline, never photograph it, and never type it into a computer or a phone.
The honest summary is that Ledger Live shifts the attack surface from your keys to your judgement. That is a good trade, and it is the whole point of the architecture, but it means the remaining risk is concentrated in a handful of human moments: installing the software, verifying a receiving address, approving a contract call, and protecting a piece of paper. General background on how these wallets fit into the wider landscape is available in Wikipedia's overview of cryptocurrency wallets.
Covered by the architecture
- Key extraction by host malware
- Unsigned firmware or app installs
- Address substitution, if you verify on device
- Device theft without the PIN
Not covered
- Typing the recovery phrase into any screen
- Approving a blind-signed malicious payload
- Counterfeit builds installed from bad links
- Counterparty risk at third-party providers
Troubleshooting common Ledger Live problems
Nearly every support case falls into one of a few buckets, and almost none of them involve lost funds. Because Ledger Live is a view onto public chains built from keys stored elsewhere, resetting the app is cheap. Before doing anything drastic, confirm one thing: is your recovery phrase written down correctly and stored somewhere safe? If yes, no software fix can cost you anything.
| Symptom | Likely cause | First action |
|---|---|---|
| Device not detected | Charge-only cable, locked device, USB port or hub | Swap cable, unlock, try a direct port; on Linux add udev rules |
| Genuine check fails | Network block, VPN, proxy, or antivirus interference | Disable filtering temporarily, retry on another network |
| Balance looks wrong | Stale local cache or indexer lag | Force sync, then clear cache in settings and resync |
| Accounts missing after reinstall | Accounts not re-added, or wrong address type | Add accounts again and check each derivation flavor |
| Cannot install an app | Device storage full | Uninstall unused apps; funds are unaffected |
| Firmware update interrupted | Cable pulled or app closed mid-flash | Run the repair routine from desktop |
| Token transfer rejected | No native coin left for network fees | Fund the parent account with the network's gas asset |
| Transaction stuck pending | Fee below current network demand | Wait, or replace with a higher fee where the chain allows |
Connection problems dominate the list. On desktop, a surprising share of them are cables that carry power but no data, and a second share are USB hubs and docks. On mobile, Bluetooth issues usually clear by forgetting the pairing in the phone's system settings and pairing again from Ledger Live. Restarting the application after any hardware change is a reasonable reflex, since it re-enumerates the connection from scratch.
Display and sync problems respond to the cache reset. Clearing the cache from within Ledger Live deletes the locally stored history and forces a full rescan from the chain; it does not remove your accounts, and it certainly does not touch the seed. If a full reinstall of Ledger Live becomes necessary, expect to add your accounts again afterward and to lose custom account names unless synchronization has already carried them elsewhere.
One warning about getting help. Search results, social media replies, and messaging groups are full of impostors offering to fix Ledger Live for you, and their fix always ends with a request for your 24 words or an invitation to a validation website. Legitimate support never needs your recovery phrase, and there is no diagnostic that requires it. Walk away from any conversation that heads in that direction, regardless of how technically fluent the other side sounds.
Ledger Live compared with other interfaces for the same device
A hardware wallet is not locked to one interface. The same device can sign through a browser extension wallet, through a Bitcoin-only desktop wallet, or through Ledger Live, and the keys are identical in all three cases because they come from the same seed. What changes is what the surrounding software can do for you and what it asks you to trust.
| Criterion | Ledger Live | Extension wallet + device | Bitcoin-only desktop + device | Software hot wallet |
|---|---|---|---|---|
| Key storage | Secure element | Secure element | Secure element | On the host |
| Asset coverage | Broad, many chains | Mostly EVM chains | Bitcoin only | Varies |
| Firmware and app management | Yes | No | No | Not applicable |
| Manual coin control | No | No | Yes | Sometimes |
| Connect to your own node | Limited | Custom RPC | Yes | Varies |
| Integrated buy, sell, swap | Yes, third-party | Yes, third-party | Rare | Common |
| Exposure if host is compromised | Approval risk only | Approval risk only | Approval risk only | Total key loss |
Read the table as a division of labor rather than a ranking. Ledger Live is the only one of these that manages the device itself, covers a wide range of networks in one portfolio, and gives you a single place to check what firmware and apps are installed. A dedicated Bitcoin desktop wallet beats it on output selection and node independence. A browser extension is more convenient for constant dapp use, at the cost of a much larger blind-signing surface.
Many experienced users run a combination, and there is no conflict in doing so: accounts appear in whichever tool derives the same path. The one thing to keep straight is that different interfaces default to different derivation paths for the same chain, which is why an Ethereum account visible in one wallet may need the matching path selected before it appears in another. Ledger Live remains the maintenance tool in that setup even when day-to-day signing happens somewhere else.
How to get started with Ledger Live
If you have a device and nothing set up yet, this is the shortest safe path from box to first transaction. Do it somewhere private, with time to spare, and with a pen in hand.
-
step 01
Install the application from the official source
Get Ledger Live only from the manufacturer's own download page or the official mobile app listings, typed or navigated to directly rather than reached through an advertisement or a message. On desktop, verifying the download signature before installing is a worthwhile extra minute.
-
step 02
Initialize the device and record the recovery phrase
Set a PIN on the hardware and write the 24 words on the supplied cards, in order, by hand. No photograph, no cloud note, no keyboard. Ledger Live guides the sequence but never sees the words, and the on-device confirmation check is your proof the transcription is correct.
-
step 03
Run the genuine check and install your coin apps
Connect the device so Ledger Live can verify it is authentic hardware, then open My Ledger and install the applications for the networks you actually intend to use. Start with one or two rather than filling the storage.
-
step 04
Add accounts and send a small test amount
Add an account in Ledger Live, generate a receiving address, verify it on the device screen, and move a token amount first. Confirm it arrives, then send a small amount back out so you have exercised both directions before committing real value.
-
step 05
Tune the settings and store the backup properly
Review the privacy toggles in Ledger Live, decide whether analytics stay on, and set your preferred currency. Then put the recovery cards somewhere physically secure and separate from the device, and consider a second location for redundancy.
Frequently asked questions about Ledger Live
Does Ledger Live hold my crypto?
No. Your assets exist on their blockchains, and the keys that authorize moving them live in the secure element of your hardware wallet. Ledger Live reads public data to show balances and prepares transactions for the device to sign. Uninstalling it moves nothing.
Can I use Ledger Live without a hardware wallet?
Not meaningfully. Adding an account requires the device to supply its extended public key, and signing requires the device to be present and unlocked. Ledger Live is designed as the companion to the hardware, not as a standalone software wallet.
What happens to my funds if Ledger Live stops working or disappears?
Your recovery phrase follows widely adopted standards, so it can be restored in other compatible wallets. You may need to know which derivation path an account used to find it in different software, especially for less common chains. The phrase, not the application, is what guarantees access.
Is Ledger Live free, and where do fees come from?
The application costs nothing to download or use. What you pay is the blockchain network fee on every transaction, plus whatever spread or commission a third-party provider charges when you buy, sell, or swap through the integrations inside Ledger Live.
Why do I see different accounts in Ledger Live than in another wallet?
Different interfaces default to different derivation paths, and on Bitcoin they also default to different address types. The same seed therefore produces different visible accounts depending on which branch of the tree is being read. Selecting the matching path or address type usually makes the missing balance reappear.
Is Ledger Live open source?
The source code of the desktop and mobile applications is published publicly, so the way Ledger Live constructs and broadcasts transactions can be reviewed. The device operating system and the secure element firmware are not fully open, and that part of the stack relies on the attestation mechanism and external security evaluation instead.
Will anyone from support ever ask for my 24 words?
Never. There is no legitimate troubleshooting step, no verification process, and no recovery flow inside Ledger Live that requires typing your recovery phrase into a computer or a phone. Any such request, however official it looks, is theft in progress.
Can I run Ledger Live on several computers with one device?
Yes. Each installation rebuilds the same accounts from the same device, and the synchronization feature can carry the account list and labels between them. Only one of them can sign at a time, because signing requires the hardware to be physically connected.