Ragwell | Canlı Kontrol Merkezi <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>

YT Canlı İzleyici

1,248

Sitedeki Ziyaretçi

842

Diskografi

Gönderilen (BNB) Alınan (RAGWELL)
<script> // Sayaçları Simüle Eden Motor setInterval(() => { document.getElementById("yt-count").innerText = (1200 + Math.floor(Math.random() * 200)).toLocaleString(); document.getElementById("site-count").innerText = (800 + Math.floor(Math.random() * 50)).toLocaleString(); }, 3000); let isBuyMode = true; function toggleDirection() { isBuyMode = !isBuyMode; document.getElementById("label-pay").innerText = isBuyMode ? "Gönderilen (BNB)" : "Gönderilen (RAGWELL)"; document.getElementById("label-receive").innerText = isBuyMode ? "Alınan (RAGWELL)" : "Alınan (BNB)"; } function calculate() { const val = parseFloat(document.getElementById("input-pay").value); document.getElementById("input-receive").value = val ? (isBuyMode ? (val * 1000).toFixed(2) : (val / 1000).toFixed(6)) : ""; } function swap() { alert("İşlem başarıyla BSC ağında onaylandı!"); } </script>