<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Token Distribution</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: 0 auto;
text-align: center;
}
h1 {
margin-top: 20px;
}
.chart-container {
width: 50%;
margin: 20px auto;
}
#distributionDetails {
margin-top: 20px;
text-align: left;
font-size: 16px;
}
#distributionDetails div {
margin-bottom: 10px;
padding: 10px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#distributionDetails strong {
display: block;
margin-bottom: 5px;
}
</style>
</head>
<body>
<div class="container">
<h1>Token Distribution Details</h1>
<div class="chart-container">
<canvas id="tokenChart" width="400" height="400"></canvas>
</div>
<div id="distributionDetails">
<!-- Dynamic details will be loaded here -->
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
document.addEventListener("DOMContentLoaded", () => {
const tokenDistributions = [
{
name: "Airdrop",
totalSupply: 5,
tgeUnlock: 10,
vestingMonths: 6,
},
{
name: "Partner Sales",
totalSupply: 13,
tgeUnlock: 8,
vestingMonths: 12,
},
{
name: "Private Sales",
totalSupply: 17,
tgeUnlock: 10,
vestingMonths: 12,
},
{
name: "Advisors",
totalSupply: 10,
tgeUnlock: 10,
vestingMonths: 24,
},
{
name: "Staking and Incentives",
totalSupply: 35,
tgeUnlock: 5,
vestingMonths: 24,
},
{
name: "CEX Listing",
totalSupply: 10,
tgeUnlock: 100,
vestingMonths: 0,
},
{
name: "Team",
totalSupply: 10,
tgeUnlock: 10,
vestingMonths: 24,
},
];
// Generate Pie Chart using Chart.js
const ctx = document.getElementById("tokenChart").getContext("2d");
const chart = new Chart(ctx, {
type: "doughnut",
data: {
labels: tokenDistributions.map(dist => dist.name),
datasets: [{
data: tokenDistributions.map(dist => dist.totalSupply),
backgroundColor: [
'#FF6384',
'#36A2EB',
'#FFCE56',
'#4BC0C0',
'#9966FF',
'#FF9F40',
'#FFCD56'
],
}]
},
options: {
responsive: true,
plugins: {
legend: {
position: 'top',
},
tooltip: {
callbacks: {
label: function(tooltipItem) {
const index = tooltipItem.dataIndex;
const distribution = tokenDistributions[index];
return `${distribution.name}: ${distribution.totalSupply}% of total supply`;
}
}
}
}
}
});
// Generate distribution details below chart
const detailsContainer = document.getElementById("distributionDetails");
tokenDistributions.forEach(dist => {
const detailDiv = document.createElement("div");
detailDiv.innerHTML = `
<strong>${dist.name}</strong>
Total Supply: ${dist.totalSupply}%<br>
TGE Unlock: ${dist.tgeUnlock}%<br>
Vesting: ${dist.vestingMonths ? dist.vestingMonths + " months" : "No vesting"}
`;
detailsContainer.appendChild(detailDiv);
});
});
</script>
</body>
</html>