Solana Ukraine
Stake SOL
Supporting Solana network decentralization
document.addEventListener('DOMContentLoaded', function() { const stakeButton = document.getElementById('stakeButton'); stakeButton.addEventListener('click', function() { window.location.href = 'https://solana.com/staking'; }); try { await navigator.clipboard.writeText(walletAddress.textContent.trim()); copyText.textContent = 'Copied!'; copyButton.classList.add('copy-success'); copyButton.classList.remove('bg-primary', 'hover:bg-blue-600'); copyButton.classList.add('bg-green-500'); setTimeout(() => { copyText.textContent = 'Copy'; copyButton.classList.remove('copy-success', 'bg-green-500'); copyButton.classList.add('bg-primary', 'hover:bg-blue-600'); }, 2000); } catch (err) { console.error('Copy error:', err); copyText.textContent = 'Error'; setTimeout(() => { copyText.textContent = 'Copy'; }, 2000); } }); });