Welcome to the official getting started page for Ledger. If you’ve just acquired a Ledger hardware wallet (Nano S Plus, Nano X, or future models), this is the safe path to setting it up. Always begin at ledger.com/start – this ensures you receive verified software and instructions.
Phishing sites often mimic “Ledger Start” domains or send fake emails asking for your recovery phrase. Never use links in unverified emails. Starting at the official site ensures authenticity, up‑to‑date firmware, and secure guidance.
When your Ledger device arrives, confirm the box is sealed and includes:
If anything looks tampered with, stop and contact support.
From ledger.com/start, choose the correct OS version (Windows, macOS, Linux, iOS, Android). After downloading, verify the file’s checksum (SHA256) to ensure integrity. Ledger may publish signatures—compare before installing.
Once you connect the Ledger, you'll be prompted to choose a PIN and generate a **24‑word recovery phrase**. Write these words in order on paper (never store digitally). This seed is your **only** backup — losing it means losing access to your funds.
Below is a toy Python snippet that — in this illustration — “verifies” a seed phrase by checking word indices modulo a value. Use only as an educational example.
# Example: verify seed word indices mod 16
def verify_seed(words):
for w in words:
idx = word_list_index(w) # hypothetical mapping
if idx % 16 != 0:
return False
return True
This is purely illustrative and does not reflect Ledger’s real cryptographic processes.
Inside Ledger Live, install apps for coins (e.g. Bitcoin, Ethereum). Add accounts, view balances, send/receive. Every transaction must be confirmed on the device itself, so malware cannot override you.
Never enter your recovery phrase into any software, website, or share it.
Always double-check URLs (ledger.com, not typos), keep device firmware updated, and enable advanced features (passphrase) for extra security.
By following the steps above, you ensure a secure start with your Ledger wallet. Begin at ledger.com/start, initialize safely, and manage your crypto securely. Happy safeguarding!