Ledger® Live Wallet – Getting Started™

Welcome to the Ledger Developer Portal — your gateway to building secure, innovative crypto experiences powered by the Ledger Live Wallet ecosystem.

Go to Ledger.com/Start

Overview

The Ledger® Live Wallet is the official app that connects users to their Ledger hardware wallets. On this Developer Portal, you’ll learn how to integrate Ledger Live APIs, manage secure transactions, and extend hardware wallet functionality for your applications.

Ledger provides SDKs, libraries, and documentation to help developers create seamless and secure Web3 experiences, all built on the foundation of self-custody and hardware-level encryption.

Key Concepts

Getting Started as a Developer

To start building with Ledger Live, follow these steps:

  1. Visit the Ledger Developer Portal and create a free account.
  2. Install Ledger Live from the official website.
  3. Connect your Ledger device and enable Developer Mode in the Ledger Live settings.
  4. Access your API keys and SDK packages from the developer dashboard.
💡 Note: Always test your integrations on the Ledger Sandbox Network before deploying live code.

Example: Connecting to Ledger Live with JavaScript

You can easily establish a secure connection between your web app and a user’s Ledger device using the Ledger Connect Kit:

import { createLedgerConnector } from "@ledgerhq/connect-kit";

const connector = await createLedgerConnector({
  dappName: "MyDapp",
  environment: "production",
});

const accounts = await connector.connect();
console.log("Connected accounts:", accounts);
      

This simple code allows your decentralized application to read public keys, display accounts, and initiate signed transactions securely from a Ledger hardware wallet.

Security Guidelines

Ledger follows strict security principles for developers. Always ensure:

⚠️ Reminder: Ledger will never ask for private keys or recovery phrases. Only hardware devices perform secure signing operations.

Available SDKs & Tools

Developers can access Ledger’s suite of SDKs and integration tools:

Support & Documentation

Comprehensive API references, SDK documentation, and tutorials are available on the Ledger Developer Portal. Join the Ledger Discord and GitHub discussions to collaborate with the community.

Conclusion

The Ledger® Live Wallet – Developer Portal empowers developers to build secure, decentralized experiences while leveraging Ledger’s trusted hardware infrastructure. Start creating, integrating, and innovating with confidence — your users’ security begins with Ledger.

Explore Developer Docs