feat: add market stats endpoint, wallet integration, and browser wallet link - Update devnet genesis timestamp to 1767000206 - Add market statistics endpoint with 24h volume, price change, and payment counts - Add wallet balance and info API endpoints in exchange router - Remove unused SessionDep dependencies from exchange endpoints - Integrate real AITBC wallet extension connection in trade-exchange UI - Add market data fetching with API fallback for price and volume display - Add cache-busting query
157 lines
4.8 KiB
HTML
157 lines
4.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Install AITBC Wallet for Chrome</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
|
|
color: white;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0;
|
|
padding: 20px;
|
|
}
|
|
.install-card {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
backdrop-filter: blur(10px);
|
|
border-radius: 20px;
|
|
padding: 40px;
|
|
text-align: center;
|
|
max-width: 500px;
|
|
width: 100%;
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
|
|
}
|
|
.logo {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: white;
|
|
border-radius: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 32px;
|
|
font-weight: bold;
|
|
color: #1a73e8;
|
|
margin: 0 auto 30px;
|
|
}
|
|
h1 {
|
|
font-size: 2.5em;
|
|
margin-bottom: 20px;
|
|
}
|
|
.steps {
|
|
text-align: left;
|
|
margin: 30px 0;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
}
|
|
.step {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
margin: 15px 0;
|
|
}
|
|
.step-number {
|
|
background: white;
|
|
color: #1a73e8;
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: bold;
|
|
margin-right: 15px;
|
|
flex-shrink: 0;
|
|
}
|
|
.step-content {
|
|
flex: 1;
|
|
}
|
|
.step-title {
|
|
font-weight: bold;
|
|
margin-bottom: 5px;
|
|
}
|
|
.step-desc {
|
|
font-size: 14px;
|
|
opacity: 0.9;
|
|
}
|
|
.download-button {
|
|
display: inline-block;
|
|
background: white;
|
|
color: #1a73e8;
|
|
padding: 16px 40px;
|
|
border-radius: 50px;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
margin: 20px 0;
|
|
}
|
|
.download-button:hover {
|
|
transform: scale(1.05);
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
|
|
}
|
|
.code {
|
|
background: rgba(0, 0, 0, 0.2);
|
|
padding: 5px 10px;
|
|
border-radius: 5px;
|
|
font-family: monospace;
|
|
font-size: 14px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="install-card">
|
|
<div class="logo">AITBC</div>
|
|
<h1>AITBC Wallet</h1>
|
|
<p>The secure wallet for AITBC tokens</p>
|
|
|
|
<a href="aitbc-wallet.zip" class="download-button">
|
|
Download Extension
|
|
</a>
|
|
|
|
<div class="steps">
|
|
<div class="step">
|
|
<div class="step-number">1</div>
|
|
<div class="step-content">
|
|
<div class="step-title">Download the extension</div>
|
|
<div class="step-desc">Click the download button above</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="step">
|
|
<div class="step-number">2</div>
|
|
<div class="step-content">
|
|
<div class="step-title">Open Chrome Extensions</div>
|
|
<div class="step-desc">Navigate to <span class="code">chrome://extensions/</span></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="step">
|
|
<div class="step-number">3</div>
|
|
<div class="step-content">
|
|
<div class="step-title">Enable Developer Mode</div>
|
|
<div class="step-desc">Toggle the switch in the top right</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="step">
|
|
<div class="step-number">4</div>
|
|
<div class="step-content">
|
|
<div class="step-title">Load Extension</div>
|
|
<div class="step-desc">Click "Load unpacked" and select the extracted folder</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<p style="font-size: 14px; opacity: 0.8; margin-top: 20px;">
|
|
Chrome requires developer mode for security. This ensures you know exactly what you're installing.
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|