Spaces:
Running
Running
File size: 35,177 Bytes
c567606 b8999fd c567606 2b7fb0d c567606 2b7fb0d c567606 2b7fb0d c567606 1d3b11a c567606 2b7fb0d c567606 2b7fb0d c567606 2b7fb0d c567606 2b7fb0d c567606 2b7fb0d c567606 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Volcano Stake - Erupt Your Earnings</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-bg {
background: linear-gradient(135deg, #6b21a8, #1e1b4b);
}
@keyframes lavaFlow {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.lava-text {
background: linear-gradient(90deg, #8b5cf6, #6b21a8, #4c1d95);
background-size: 200% auto;
animation: lavaFlow 3s linear infinite;
}
.staking-card {
transition: all 0.3s ease;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.staking-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(107, 33, 168, 0.3);
}
.progress-bar {
height: 8px;
border-radius: 4px;
background-color: #e0e0e0;
}
.progress-fill {
height: 100%;
border-radius: 4px;
background: linear-gradient(90deg, #6e8efb, #a777e3);
transition: width 0.5s ease;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
</style>
</head>
<body class="bg-gray-100 font-sans">
<!-- Header -->
<header class="gradient-bg text-white">
<div class="container mx-auto px-4 py-6">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-fire text-2xl text-orange-500"></i>
<h1 class="text-2xl font-bold text-transparent bg-clip-text bg-gradient-to-r from-purple-400 via-purple-600 to-purple-800 animate-pulse">
VOLCANO STAKE
</h1>
</div>
<nav class="hidden md:flex space-x-6">
<a href="#" class="hover:text-gray-200"></a>
<a href="#" class="hover:text-gray-200"></a>
<a href="#" class="hover:text-gray-200"></a>
<a href="#" class="hover:text-gray-200"></a>
</nav>
<div class="flex items-center space-x-4">
<button onclick="switchTab('deposit')" class="bg-purple-800 text-white px-4 py-2 rounded-full font-medium hover:bg-purple-900 transition">
Deposit
</button>
<button class="md:hidden text-white">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<main class="container mx-auto px-4 py-8">
<!-- Dashboard Overview -->
<section class="mb-12">
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold text-gray-800">Dashboard Overview</h2>
<div class="flex space-x-2">
<button class="bg-white border border-gray-300 px-3 py-1 rounded-md text-sm hover:bg-gray-50">
<i class="fas fa-sync-alt mr-1"></i> Refresh
</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<!-- Total Balance Card -->
<div class="bg-white rounded-xl shadow-md p-6 staking-card">
<div class="flex items-center justify-between">
<div>
<p class="text-gray-500 text-sm">Total Balance</p>
<h3 class="text-2xl font-bold mt-1">$12,458.32</h3>
</div>
<div class="bg-purple-100 p-3 rounded-full">
<i class="fas fa-wallet text-purple-600 text-xl"></i>
</div>
</div>
<div class="mt-4">
<p class="text-sm text-gray-500">Equivalent to 3.245 BTC</p>
</div>
</div>
<!-- Staked Assets Card -->
<div class="bg-white rounded-xl shadow-md p-6 staking-card">
<div class="flex items-center justify-between">
<div>
<p class="text-gray-500 text-sm">Staked Assets</p>
<h3 class="text-2xl font-bold mt-1">$8,742.15</h3>
</div>
<div class="bg-blue-100 p-3 rounded-full">
<i class="fas fa-lock text-blue-600 text-xl"></i>
</div>
</div>
<div class="mt-4">
<p class="text-sm text-gray-500">+2.8% from last month</p>
</div>
</div>
<!-- Estimated Rewards Card -->
<div class="bg-white rounded-xl shadow-md p-6 staking-card">
<div class="flex items-center justify-between">
<div>
<p class="text-gray-500 text-sm">Estimated Rewards</p>
<h3 class="text-2xl font-bold mt-1">$324.78</h3>
</div>
<div class="bg-green-100 p-3 rounded-full">
<i class="fas fa-gift text-green-600 text-xl"></i>
</div>
</div>
<div class="mt-4">
<p class="text-sm text-gray-500">Next payout in 2 days</p>
</div>
</div>
</div>
</section>
<!-- Staking and Portfolio Tabs -->
<section class="mb-12">
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<!-- Tabs Navigation -->
<div class="flex border-b border-gray-200">
<button onclick="switchTab('staking')" class="tab-btn py-4 px-6 font-medium text-purple-600 border-b-2 border-purple-600">
<i class="fas fa-lock mr-2"></i> Staking
</button>
<button onclick="switchTab('deposit')" class="tab-btn py-4 px-6 font-medium text-gray-500 hover:text-purple-600">
<i class="fas fa-wallet mr-2"></i> Deposit
</button>
</div>
<!-- Staking Tab Content -->
<div id="staking" class="tab-content active p-6">
<div class="flex justify-between items-center mb-6">
<h3 class="text-xl font-bold text-gray-800">Available Staking Pools</h3>
<div class="relative">
<select class="appearance-none bg-gray-100 border border-gray-300 rounded-md pl-3 pr-8 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-purple-500">
<option>All Assets</option>
<option>BTC</option>
<option>ETH</option>
<option>SOL</option>
<option>ADA</option>
</select>
<div class="pointer-events-none absolute inset-y-0 right-0 flex items-center px-2 text-gray-700">
<i class="fas fa-chevron-down text-xs"></i>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- BTC Staking Pool -->
<div class="bg-white border border-gray-200 rounded-xl shadow-sm p-6 staking-card">
<div class="flex justify-between items-start">
<div class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Bitcoin.svg/1200px-Bitcoin.svg.png" alt="BTC" class="w-10 h-10 mr-3">
<div>
<h4 class="font-bold">Bitcoin</h4>
<p class="text-gray-500 text-sm">BTC</p>
</div>
</div>
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">Active</span>
</div>
<div class="mt-6">
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-500">APY</span>
<span class="font-medium">5.25%</span>
</div>
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-500">Lock Period</span>
<span class="font-medium">90 days</span>
</div>
<div class="flex justify-between text-sm mb-4">
<span class="text-gray-500">Min. Amount</span>
<span class="font-medium">0.01 BTC</span>
</div>
<div class="progress-bar mb-4">
<div class="progress-fill" style="width: 78%"></div>
</div>
<div class="flex justify-between text-xs text-gray-500 mb-4">
<span>Available: 12.5 BTC</span>
<span>Total: 16 BTC</span>
</div>
<button onclick="switchTab('deposit')" class="w-full gradient-bg text-white py-3 rounded-lg font-medium hover:opacity-90 transition">
Deposit Now
</button>
</div>
</div>
<!-- ETH Staking Pool -->
<div class="bg-white border border-gray-200 rounded-xl shadow-sm p-6 staking-card">
<div class="flex justify-between items-start">
<div class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Ethereum-icon-purple.svg/1200px-Ethereum-icon-purple.svg.png" alt="ETH" class="w-10 h-10 mr-3">
<div>
<h4 class="font-bold">Ethereum</h4>
<p class="text-gray-500 text-sm">ETH</p>
</div>
</div>
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">Active</span>
</div>
<div class="mt-6">
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-500">APY</span>
<span class="font-medium">4.75%</span>
</div>
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-500">Lock Period</span>
<span class="font-medium">60 days</span>
</div>
<div class="flex justify-between text-sm mb-4">
<span class="text-gray-500">Min. Amount</span>
<span class="font-medium">0.1 ETH</span>
</div>
<div class="progress-bar mb-4">
<div class="progress-fill" style="width: 65%"></div>
</div>
<div class="flex justify-between text-xs text-gray-500 mb-4">
<span>Available: 245 ETH</span>
<span>Total: 375 ETH</span>
</div>
<button onclick="showDepositAddress('eth')" class="w-full gradient-bg text-white py-3 rounded-lg font-medium hover:opacity-90 transition">
Deposit Now
</button>
</div>
</div>
<!-- SOL Staking Pool -->
<div class="bg-white border border-gray-200 rounded-xl shadow-sm p-6 staking-card">
<div class="flex justify-between items-start">
<div class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/en/b/b9/Solana_logo.png" alt="SOL" class="w-10 h-10 mr-3">
<div>
<h4 class="font-bold">Solana</h4>
<p class="text-gray-500 text-sm">SOL</p>
</div>
</div>
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">Active</span>
</div>
<div class="mt-6">
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-500">APY</span>
<span class="font-medium">7.20%</span>
</div>
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-500">Lock Period</span>
<span class="font-medium">30 days</span>
</div>
<div class="flex justify-between text-sm mb-4">
<span class="text-gray-500">Min. Amount</span>
<span class="font-medium">5 SOL</span>
</div>
<div class="progress-bar mb-4">
<div class="progress-fill" style="width: 92%"></div>
</div>
<div class="flex justify-between text-xs text-gray-500 mb-4">
<span>Available: 1,250 SOL</span>
<span>Total: 1,350 SOL</span>
</div>
<button onclick="showDepositAddress('sol')" class="w-full gradient-bg text-white py-3 rounded-lg font-medium hover:opacity-90 transition">
Deposit Now
</button>
</div>
</div>
</div>
</div>
</div>
<!-- Deposit Tab Content -->
<div id="deposit" class="tab-content p-6">
<div class="flex justify-between items-center mb-6">
<h3 class="text-xl font-bold text-gray-800">Deposit Crypto</h3>
<div class="relative">
<select id="asset-select" onchange="showSelectedAddress(this.value)" class="appearance-none bg-gray-100 border border-gray-300 rounded-md pl-3 pr-8 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-purple-500">
<option value="">Select Asset</option>
<option value="btc">BTC</option>
<option value="eth">ETH</option>
<option value="sol">SOL</option>
</select>
<div class="pointer-events-none absolute inset-y-0 right-0 flex items-center px-2 text-gray-700">
<i class="fas fa-chevron-down text-xs"></i>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Deposit Address Card -->
<div class="bg-white border border-gray-200 rounded-xl shadow-sm p-6">
<h4 class="font-bold text-gray-800 mb-4">Deposit Address</h4>
<div id="btc-address" class="address-content">
<div class="text-sm text-gray-600 mb-4">
<p class="mb-2"><i class="fas fa-info-circle mr-2 text-purple-600"></i> Send only BTC to this address</p>
<p><i class="fas fa-clock mr-2 text-purple-600"></i> Network confirmations required: 3</p>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Amount to Stake</label>
<div class="relative rounded-md shadow-sm">
<input type="number" id="btc-amount" placeholder="0.00" class="block w-full pr-12 pl-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-purple-500 focus:border-purple-500 sm:text-sm">
<div class="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
<span class="text-gray-500 sm:text-sm">BTC</span>
</div>
</div>
</div>
<div class="bg-gray-100 p-4 rounded-lg mb-4">
<p class="text-sm font-mono break-all">bc1qxy2kgdygjrsqtzq2n0yrf2493w83f6u5hha40c</p>
</div>
<button onclick="copyAddress('btc')" class="w-full bg-purple-600 text-white py-2 rounded-md font-medium hover:bg-purple-700 transition">
Copy Address
</button>
</div>
<div id="eth-address" class="address-content hidden">
<div class="text-sm text-gray-600 mb-4">
<p class="mb-2"><i class="fas fa-info-circle mr-2 text-purple-600"></i> Send only ETH to this address</p>
<p><i class="fas fa-clock mr-2 text-purple-600"></i> Network confirmations required: 12</p>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Amount to Stake</label>
<div class="relative rounded-md shadow-sm">
<input type="number" id="eth-amount" placeholder="0.00" class="block w-full pr-12 pl-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-purple-500 focus:border-purple-500 sm:text-sm">
<div class="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
<span class="text-gray-500 sm:text-sm">ETH</span>
</div>
</div>
</div>
<div class="bg-gray-100 p-4 rounded-lg mb-4">
<p class="text-sm font-mono break-all">0x71C7656EC7ab88b098defB751B7401B5f6d8976F</p>
</div>
<button onclick="copyAddress('eth')" class="w-full bg-purple-600 text-white py-2 rounded-md font-medium hover:bg-purple-700 transition">
Copy Address
</button>
</div>
<div id="sol-address" class="address-content hidden">
<div class="text-sm text-gray-600 mb-4">
<p class="mb-2"><i class="fas fa-info-circle mr-2 text-purple-600"></i> Send only SOL to this address</p>
<p><i class="fas fa-clock mr-2 text-purple-600"></i> Network confirmations required: 1</p>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Amount to Stake</label>
<div class="relative rounded-md shadow-sm">
<input type="number" id="sol-amount" placeholder="0.00" class="block w-full pr-12 pl-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-purple-500 focus:border-purple-500 sm:text-sm">
<div class="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
<span class="text-gray-500 sm:text-sm">SOL</span>
</div>
</div>
</div>
<div class="bg-gray-100 p-4 rounded-lg mb-4">
<p class="text-sm font-mono break-all">HN5XkCzZiuH3z8ZzhYQH5RfK8mJZ3Yq3X7Xq5vL9J2K</p>
</div>
<button onclick="copyAddress('sol')" class="w-full bg-purple-600 text-white py-2 rounded-md font-medium hover:bg-purple-700 transition">
Copy Address
</button>
</div>
</div>
<!-- Deposit Instructions -->
<div>
<div class="bg-white border border-gray-200 rounded-xl shadow-sm p-6 mb-6">
<h4 class="font-bold text-gray-800 mb-4">Deposit Instructions</h4>
<ol class="list-decimal list-inside space-y-3 text-sm text-gray-700">
<li>Select the asset you want to deposit</li>
<li>Enter the amount you wish to deposit</li>
<li>Confirm the transaction in your wallet</li>
<li>Wait for network confirmations (typically 10-30 minutes)</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-gradient-to-r from-purple-900 to-black text-white py-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-bold mb-4">CryptoStake</h3>
<p class="text-gray-400 text-sm">The most secure platform for staking your cryptocurrencies and earning passive income.</p>
</div>
<div>
<h4 class="font-bold mb-4">Company</h4>
<ul class="space-y-2 text-sm text-gray-400">
<li><a href="#" class="hover:text-white">About Us</a></li>
<li><a href="#" class="hover:text-white">Careers</a></li>
<li><a href="#" class="hover:text-white">Blog</a></li>
<li><a href="#" class="hover:text-white">Press</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Support</h4>
<ul class="space-y-2 text-sm text-gray-400">
<li><a href="#" class="hover:text-white">Help Center</a></li>
<li><a href="#" class="hover:text-white">Contact Us</a></li>
<li><a href="#" class="hover:text-white">Status</a></li>
<li><a href="#" class="hover:text-white">FAQ</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Connect With Us</h4>
<div class="flex space-x-4 mb-4">
<a href="#" class="w-8 h-8 rounded-full bg-gray-700 flex items-center justify-center hover:bg-purple-600">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-8 h-8 rounded-full bg-gray-700 flex items-center justify-center hover:bg-purple-600">
<i class="fab fa-telegram"></i>
</a>
<a href="#" class="w-8 h-8 rounded-full bg-gray-700 flex items-center justify-center hover:bg-purple-600">
<i class="fab fa-discord"></i>
</a>
<a href="#" class="w-8 h-8 rounded-full bg-gray-700 flex items-center justify-center hover:bg-purple-600">
<i class="fab fa-medium"></i>
</a>
</div>
<p class="text-sm text-gray-400">Subscribe to our newsletter</p>
<div class="mt-2 flex">
<input type="email" placeholder="Your email" class="bg-gray-700 text-white px-3 py-2 rounded-l text-sm focus:outline-none w-full">
<button class="bg-purple-600 text-white px-3 py-2 rounded-r text-sm hover:bg-purple-700">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-sm text-gray-400">
<div class="flex flex-col md:flex-row justify-between items-center">
<p>© 2023 CryptoStake. All rights reserved.</p>
<div class="flex space-x-6 mt-4 md:mt-0">
<a href="#" class="hover:text-white">Terms of Service</a>
<a href="#" class="hover:text-white">Privacy Policy</a>
<a href="#" class="hover:text-white">Cookie Policy</a>
</div>
</div>
</div>
</div>
</footer>
<script>
// Asset calculation functionality
function calculateTotalAssets() {
let totalAssets = 0;
const assetItems = document.querySelectorAll('.asset-item');
assetItems.forEach(item => {
const amountInput = item.querySelector('.coin-amount');
const priceInput = item.querySelector('.coin-price');
const coinTotalSpan = item.querySelector('.coin-total');
const amount = parseFloat(amountInput.value) || 0;
const price = parseFloat(priceInput.value) || 0;
const coinTotal = amount * price;
coinTotalSpan.textContent = coinTotal.toFixed(2);
totalAssets += coinTotal;
});
const totalAssetsElement = document.getElementById('total-assets');
totalAssetsElement.textContent = `${totalAssets.toFixed(2)}`;
}
function addAssetInput() {
const assetList = document.getElementById('asset-list');
const newAssetItem = document.createElement('div');
newAssetItem.classList.add('asset-item', 'grid', 'grid-cols-4', 'gap-4', 'items-center');
newAssetItem.innerHTML = `
<input type="text" placeholder="Coin Name" class="coin-name px-3 py-2 border border-gray-300 rounded-md text-sm focus:outline-none focus:ring-2 focus:ring-purple-500">
<input type="number" placeholder="Amount" class="coin-amount px-3 py-2 border border-gray-300 rounded-md text-sm focus:outline-none focus:ring-2 focus:ring-purple-500" value="0">
<input type="number" placeholder="Price" class="coin-price px-3 py-2 border border-gray-300 rounded-md text-sm focus:outline-none focus:ring-2 focus:ring-purple-500" value="0">
<span class="coin-total text-right font-medium">0.00</span>
`;
assetList.appendChild(newAssetItem);
const newAmountInput = newAssetItem.querySelector('.coin-amount');
const newPriceInput = newAssetItem.querySelector('.coin-price');
newAmountInput.addEventListener('input', calculateTotalAssets);
newPriceInput.addEventListener('input', calculateTotalAssets);
}
// Initialize event listeners for existing inputs
document.addEventListener('DOMContentLoaded', function() {
const initialAmountInputs = document.querySelectorAll('.coin-amount');
const initialPriceInputs = document.querySelectorAll('.coin-price');
initialAmountInputs.forEach(input => {
input.addEventListener('input', calculateTotalAssets);
});
initialPriceInputs.forEach(input => {
input.addEventListener('input', calculateTotalAssets);
});
// Initialize with BTC address shown by default
showSelectedAddress('btc');
});
// Tab switching functionality
function switchTab(tabId) {
// Hide all tab contents
document.querySelectorAll('.tab-content').forEach(content => {
content.classList.remove('active');
});
// Remove active class from all tab buttons
document.querySelectorAll('.tab-btn').forEach(btn => {
btn.classList.remove('border-purple-600', 'text-purple-600');
btn.classList.add('text-gray-500');
});
// Show selected tab content
document.getElementById(tabId).classList.add('active');
// Add active class to clicked tab button if it exists (for programmatic calls)
if (event && event.currentTarget) {
event.currentTarget.classList.remove('text-gray-500');
event.currentTarget.classList.add('border-purple-600', 'text-purple-600');
} else {
// For programmatic calls, activate the corresponding tab button
const tabBtn = document.querySelector(`[onclick="switchTab('${tabId}')"]`);
if (tabBtn) {
tabBtn.classList.remove('text-gray-500');
tabBtn.classList.add('border-purple-600', 'text-purple-600');
}
}
}
// Switch to deposit tab and show selected asset address
function showDepositAddress(asset) {
switchTab('deposit');
document.querySelector('#asset-select').value = asset;
showSelectedAddress(asset);
document.getElementById('deposit').scrollIntoView({ behavior: 'smooth' });
}
// Show selected address based on asset
function showSelectedAddress(asset) {
// Hide all address contents
document.querySelectorAll('.address-content').forEach(el => {
el.classList.add('hidden');
});
// Show selected address
if (asset) {
document.getElementById(`${asset}-address`).classList.remove('hidden');
}
}
// Copy address to clipboard
function copyAddress(asset) {
let address = '';
let amount = 0;
if (asset === 'btc') {
address = 'bc1qxy2kgdygjrsqtzq2n0yrf2493w83f6u5hha40c';
amount = document.getElementById('btc-amount').value;
} else if (asset === 'eth') {
address = '0x71C7656EC7ab88b098defB751B7401B5f6d8976F';
amount = document.getElementById('eth-amount').value;
} else if (asset === 'sol') {
address = 'HN5XkCzZiuH3z8ZzhYQH5RfK8mJZ3Yq3X7Xq5vL9J2K';
amount = document.getElementById('sol-amount').value;
}
if (!amount || parseFloat(amount) <= 0) {
alert('Please enter a valid amount to stake');
return;
}
navigator.clipboard.writeText(address).then(() => {
alert(`Address copied to clipboard!\nYou are staking ${amount} ${asset.toUpperCase()}`);
// Automatically switch to portfolio tab after copying
setTimeout(() => {
switchTab('portfolio');
}, 1000);
}).catch(err => {
console.error('Failed to copy address: ', err);
});
}
// Initialize with BTC address shown by default
document.addEventListener('DOMContentLoaded', function() {
showSelectedAddress('btc');
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=barudakponk/volcano-projek" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |