<div class="header">
<h1 class="gold-text">SCT HELPCHAIN</h1>
<p style="color: #ffd700; opacity: 0.8;">International Digital Exchange & Charity Platform</p>
</div>
<div class="card">
<a href="https://www.facebook.com/share/1bf8n82KKc/" target="_blank" class="btn btn-fb">Contact on Facebook</a>
<div style="margin: 20px 0;">
<label style="color: #ffd700;">Exchange Amount (USDT):</label><br>
<input type="number" id="usdt" placeholder="0.00" oninput="calc()">
<p id="result" style="color: #00ff00; font-weight: bold; margin-top: 10px;"></p>
</div>
<div class="address-box">
<strong>Payment Address (BEP-20):</strong><br>
<span style="color: #00ff00;">0x9fdb46c96240a185383e726b914c8d0437cc43cc</span>
</div>
<button class="btn btn-ex" onclick="send()">Exchange Request via WhatsApp</button>
</div>
<div class="footer">
© 2026 Scthelpchain International | Purana Paltan, Dhaka<br>
Developed for Global Financial Assistance
</div>
<script>
const rate = 126.5;
function calc() {
let u = document.getElementById('usdt').value;
let res = document.getElementById('result');
if(u > 0) {
res.innerHTML = "You will receive: " + (u * rate).toFixed(2) + " BDT";
} else {
res.innerHTML = "";
}
}
function send() {
let u = document.getElementById('usdt').value;
if(u > 0) {
window.open("https://wa.me/8801410522152?text=Scthelpchain Exchange Request: " + u + " USDT", "_blank");
} else {
alert("Please enter USDT amount!");
}
}
</script>
Scthelpchain/opensource.guide
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
Releases
No releases published
Languages
- HTML 49.4%
- JavaScript 20.3%
- SCSS 19.2%
- Ruby 9.8%
- Shell 1.3%