Files
blackroad-io-site/setup-ledger.html
Alexa Louise 2e3dedf9bf Add Ledger setup guide and update dashboard
- Complete step-by-step Ledger setup guide
- Requirements checklist
- Browser compatibility info
- Troubleshooting section
- Updated dashboard with Ledger card
- Direct access to Ledger app

Guide covers:
- Hardware preparation
- USB-C connection
- Browser support settings
- WebUSB permissions
- Connection verification
- Feature usage
- Common issues

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-13 14:10:37 -06:00

219 lines
6.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ledger Setup Guide - BlackRoad</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --gradient: linear-gradient(135deg, #FF9D00, #FF6B00, #FF0066, #D600AA, #7700FF, #0066FF); }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #02030a;
color: white;
min-height: 100vh;
padding: 48px 24px;
}
.container { max-width: 800px; margin: 0 auto; }
h1 {
font-size: 48px;
font-weight: 900;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 32px;
}
.step {
background: rgba(255,255,255,0.05);
border-left: 4px solid #7700FF;
padding: 24px;
margin: 24px 0;
border-radius: 12px;
}
.step h2 {
font-size: 24px;
margin-bottom: 16px;
display: flex;
align-items: center;
gap: 12px;
}
.step-number {
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--gradient);
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: 900;
}
.step p {
line-height: 1.8;
opacity: 0.9;
}
.step ul {
margin: 16px 0 0 24px;
line-height: 1.8;
}
.code {
background: rgba(0,0,0,0.5);
padding: 16px;
border-radius: 8px;
margin: 16px 0;
font-family: monospace;
font-size: 14px;
overflow-x: auto;
}
.button {
display: inline-block;
padding: 16px 32px;
background: var(--gradient);
color: white;
text-decoration: none;
border-radius: 12px;
font-weight: 700;
margin-top: 24px;
transition: transform 0.2s;
}
.button:hover {
transform: scale(1.05);
}
.requirements {
background: rgba(255, 157, 0, 0.2);
border: 2px solid rgba(255, 157, 0, 0.5);
padding: 24px;
border-radius: 12px;
margin: 24px 0;
}
.requirements h3 {
margin-bottom: 16px;
}
</style>
</head>
<body>
<div class="container">
<h1>🔐 Ledger Setup Guide</h1>
<div class="requirements">
<h3>📋 Requirements</h3>
<ul>
<li>Ledger hardware wallet (Nano S, Nano X, or Nano S Plus)</li>
<li>USB-C cable</li>
<li>Chrome or Edge browser (WebUSB support required)</li>
<li>Latest Ledger firmware installed</li>
<li>Ledger Live app (for initial setup)</li>
</ul>
</div>
<div class="step">
<h2>
<div class="step-number">1</div>
Prepare Your Ledger
</h2>
<p>Before connecting to BlackRoad:</p>
<ul>
<li>Ensure your Ledger is initialized with a PIN</li>
<li>Write down your 24-word recovery phrase</li>
<li>Install the Bitcoin, Ethereum, or Solana app via Ledger Live</li>
<li>Update to the latest firmware version</li>
</ul>
</div>
<div class="step">
<h2>
<div class="step-number">2</div>
Connect via USB-C
</h2>
<p>Physical connection:</p>
<ul>
<li>Connect your Ledger to your computer using USB-C cable</li>
<li>Enter your PIN on the Ledger device</li>
<li>Open the Bitcoin/Ethereum/Solana app on your Ledger</li>
<li>Ensure the device shows "Application is ready"</li>
</ul>
</div>
<div class="step">
<h2>
<div class="step-number">3</div>
Enable Browser Support
</h2>
<p>Configure your Ledger for web access:</p>
<ul>
<li>Open the Settings on your Ledger device</li>
<li>Navigate to "Browser support"</li>
<li>Set it to "Yes" or "Enabled"</li>
<li>Navigate to "Contract data" and enable it (for Ethereum)</li>
</ul>
</div>
<div class="step">
<h2>
<div class="step-number">4</div>
Grant WebUSB Permission
</h2>
<p>When you click "Connect Ledger" in BlackRoad:</p>
<ul>
<li>Browser will show a device selection popup</li>
<li>Select your Ledger device (e.g., "Nano S Plus")</li>
<li>Click "Connect"</li>
<li>Browser will request USB permissions - click "Allow"</li>
</ul>
<div class="code">
// The app will detect your Ledger with vendor ID: 0x2c97
// No drivers needed - pure WebUSB
</div>
</div>
<div class="step">
<h2>
<div class="step-number">5</div>
Verify Connection
</h2>
<p>Once connected, you should see:</p>
<ul>
<li>Green "Connected" status indicator</li>
<li>Device information (model, serial, firmware)</li>
<li>Your crypto accounts (BTC, ETH, SOL)</li>
<li>Current balances</li>
</ul>
</div>
<div class="step">
<h2>
<div class="step-number">6</div>
Use Ledger Features
</h2>
<p>Available operations:</p>
<ul>
<li><strong>Get Address:</strong> Retrieve your crypto address</li>
<li><strong>Sign Transaction:</strong> Securely sign outgoing transactions</li>
<li><strong>Get Public Key:</strong> Export your public key</li>
<li><strong>Verify Address:</strong> Confirm address on Ledger screen</li>
</ul>
<p style="margin-top: 16px;">⚠️ <strong>Important:</strong> Always verify transaction details on your Ledger screen before confirming!</p>
</div>
<div class="step">
<h2>
<div class="step-number">7</div>
Troubleshooting
</h2>
<p>If connection fails:</p>
<ul>
<li>Ensure you're using Chrome or Edge (not Firefox or Safari)</li>
<li>Try a different USB port or cable</li>
<li>Restart your Ledger device</li>
<li>Close Ledger Live if it's running</li>
<li>Clear browser cache and reload</li>
<li>Check that the correct app is open on Ledger</li>
</ul>
</div>
<a href="/ledger.html" class="button">🚀 Open Ledger App</a>
<a href="/dashboard.html" class="button" style="background: rgba(255,255,255,0.1); margin-left: 16px;">← Back to Dashboard</a>
</div>
</body>
</html>