Files
aitbc/extensions/aitbc-wallet-firefox-simple/install.html
oib 2cb2fbbeda ```
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
2025-12-29 18:04:04 +01:00

150 lines
4.4 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 Firefox</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #ff9500 0%, #ff6611 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: #ff6611;
margin: 0 auto 30px;
}
h1 {
font-size: 2.5em;
margin-bottom: 20px;
}
.install-button {
display: inline-block;
background: white;
color: #ff6611;
padding: 16px 40px;
border-radius: 50px;
font-size: 18px;
font-weight: bold;
text-decoration: none;
transition: all 0.3s ease;
margin: 20px 0;
}
.install-button:hover {
transform: scale(1.05);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.install-steps {
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
padding: 20px;
margin: 20px 0;
text-align: left;
}
.install-steps h3 {
margin-top: 0;
margin-bottom: 15px;
text-align: center;
}
.install-steps ol {
margin: 0;
padding-left: 20px;
}
.install-steps li {
margin-bottom: 10px;
line-height: 1.5;
}
.install-steps code {
background: rgba(0, 0, 0, 0.3);
padding: 2px 6px;
border-radius: 4px;
font-family: monospace;
}
.features {
text-align: left;
margin: 30px 0;
}
.feature {
display: flex;
align-items: center;
margin: 10px 0;
}
.feature::before {
content: "✓";
display: inline-block;
width: 20px;
height: 20px;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
text-align: center;
line-height: 20px;
margin-right: 10px;
flex-shrink: 0;
}
.note {
font-size: 14px;
opacity: 0.8;
margin-top: 20px;
}
</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="/assets/aitbc-wallet-firefox-v1.0.5.xpi" class="install-button" download>
Download XPI File
</a>
<div class="install-steps">
<h3>Installation Steps:</h3>
<ol>
<li>Download the XPI file using the button above</li>
<li>Open Firefox and type <code>about:debugging</code> in the address bar</li>
<li>Click "This Firefox" on the left</li>
<li>Click "Load Temporary Add-on..."</li>
<li>Select the downloaded XPI file</li>
</ol>
</div>
<div class="features">
<div class="feature">Secure local key storage</div>
<div class="feature">One-click dApp connection</div>
<div class="feature">Transaction signing</div>
<div class="feature">Balance tracking</div>
</div>
<p class="note">
After installation, click the AITBC icon in your toolbar to create or import a wallet.
</p>
</div>
</body>
</html>