-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusdcsite.html
More file actions
82 lines (79 loc) · 4.16 KB
/
usdcsite.html
File metadata and controls
82 lines (79 loc) · 4.16 KB
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
<script type="text/javascript">
var gk_isXlsx = false;
var gk_xlsxFileLookup = {};
var gk_fileData = {};
function filledCell(cell) {
return cell !== '' && cell != null;
}
function loadFileData(filename) {
if (gk_isXlsx && gk_xlsxFileLookup[filename]) {
try {
var workbook = XLSX.read(gk_fileData[filename], { type: 'base64' });
var firstSheetName = workbook.SheetNames[0];
var worksheet = workbook.Sheets[firstSheetName];
// Convert sheet to JSON to filter blank rows
var jsonData = XLSX.utils.sheet_to_json(worksheet, { header: 1, blankrows: false, defval: '' });
// Filter out blank rows (rows where all cells are empty, null, or undefined)
var filteredData = jsonData.filter(row => row.some(filledCell));
// Heuristic to find the header row by ignoring rows with fewer filled cells than the next row
var headerRowIndex = filteredData.findIndex((row, index) =>
row.filter(filledCell).length >= filteredData[index + 1]?.filter(filledCell).length
);
// Fallback
if (headerRowIndex === -1 || headerRowIndex > 25) {
headerRowIndex = 0;
}
// Convert filtered JSON back to CSV
var csv = XLSX.utils.aoa_to_sheet(filteredData.slice(headerRowIndex)); // Create a new sheet from filtered array of arrays
csv = XLSX.utils.sheet_to_csv(csv, { header: 1 });
return csv;
} catch (e) {
console.error(e);
return "";
}
}
return gk_fileData[filename] || "";
}
</script>```html
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="USD Coin (USDC) — стейблкоин на Binance Smart Chain, привязанный 1:1 к доллару США.">
<title>USD Coin (USDC)</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 0; background: #f5f5f5; color: #333; }
.container { max-width: 800px; margin: 0 auto; padding: 20px; }
header { background: #1a2a44; color: white; text-align: center; padding: 20px; }
h1 { margin: 0; font-size: 2em; }
section { padding: 20px 0; }
.button { display: inline-block; padding: 10px 20px; background: #2ecc71; color: white; text-decoration: none; border-radius: 5px; }
footer { text-align: center; padding: 10px; background: #1a2a44; color: white; }
</style>
</head>
<body>
<header>
<h1>USD Coin (USDC)</h1>
</header>
<div class="container">
<section>
<h2>О проекте</h2>
<p>USD Coin (USDC) — стейблкоин на Binance Smart Chain (BSC), привязанный 1:1 к доллару США. Создан для безопасных переводов и стабильности в DeFi.</p>
</section>
<section>
<h2>Использование</h2>
<p>Интегрируйте USDC в кошельки и приложения. Управляйте ликвидностью через <a href="https://pancakeswap.finance/v2/pair/0x55d398326f99059fF775485246999027B3197955/0x59C2BC413e2E2E740258475D5Fd312F3E3bE6c31?chain=bsc&persistChain=1" class="button">Пул ликвидности</a>.</p>
</section>
<section>
<h2>Информация</h2>
<p>Адрес контракта: <strong>0x59C2BC413e2E2E740258475D5Fd312F3E3bE6c31</strong></p>
<p>Следите за нами: <a href="https://x.com/YourUSDC">Twitter/X</a></p>
</section>
</div>
<footer>
<p>© 2025 USD Coin. Все права защищены.</p>
</footer>
</body>
</html>
```