ادامه ...
بخشی از کد جاوااسکریپت مورد استفاده در این سایت:
async function fetchCryptoPrices(symbol, buyid, sellid, percentage) {
try {
var Fetch = await fetch('https://min-api.cryptocompare.com/data/price?fsym=' + symbol + '&tsyms=USD&api_key={YOUR_API_KEY}');
var response = await Fetch.json();
var currentPrice = +response.USD;
var discountedPrice = (currentPrice - (currentPrice * (percentage / 100))).toFixed(4);
var colour = ['red', 'lime', 'red', 'lime', 'red', 'lime', 'red', 'lime', 'red', 'lime', 'red', 'lime', 'red', 'lime', 'red', 'lime'];
var randomNumber = Math.floor(Math.random() * 15);
document.getElementById(buyid).innerText = discountedPrice;
document.getElementById(sellid).innerText = currentPrice;
document.getElementById(buyid).style.color = colour[randomNumber];
document.getElementById(sellid).style.color = colour[randomNumber];
} catch (err) {
console.log(err);
}
}
function regularPriceUpdate() {
fetchCryptoPrices("BNB", "buybnb", "sellbnb", 5);
fetchCryptoPrices("LTC", "buyltc", "sellltc", 6);
fetchCryptoPrices("DOGE", "buydoge", "selldoge", 9);
fetchCryptoPrices("TRX", "buytrx", "selltrx", 12);
fetchCryptoPrices("SOL", "buysol", "sellsol", 14);
fetchCryptoPrices("AVAX", "buyavax", "sellavax", 12);
fetchCryptoPrices("XRP", "buyxrp", "sellxrp", 11);
}
var interval = setInterval(regularPriceUpdate, 2000);
هشدار: مواردی مانند این نوع اسکم باید با دقت شناسایی شوند. از هرگونه واریز وجه در سایتهای ناشناس خودداری کنید.
2/2