-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdistribution.php
47 lines (44 loc) · 1.38 KB
/
distribution.php
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
<?PHP include_once('menu.php'); ?>
<script>
window.onload = function() {
//total supply = 3,947,960
var chart = new CanvasJS.Chart("chartContainer", {
theme: "light2", // "light1", "light2", "dark1", "dark2"
exportEnabled: true,
animationEnabled: true,
title: {
text: "$BALT Tokenomics"
},
data: [{
type: "pie",
startAngle: 25,
toolTipContent: "<b>{label}</b>: {y}",
showInLegend: "true",
legendText: "{label}",
indexLabelFontSize: 16,
indexLabel: "{label} - {y}",
dataPoints: [
{ y: 1000000.00, label: "Community Projects and Airdrops" },
{ y: 1000000.00, label: "Trading" },
{ y: 900000, label: "Team" },
{ y: 500000, label: "Deprecatory Mechanisms" },
{ y: 100000, label: "Bounties" }
]
}]
});
chart.render();
}
</script>
<div class="container">
<div class="row justify-content-md-center">
<div class="col-md-auto" style="height: 500px; width: 600px;">
<div id="chartContainer" style="height: 400px; width: 600px;"></div>
<p>Theory, design, analysis, implementation and applications.</p>
<small>Track Current Distribution at <a target='_Blank' href='https://etherscan.io/token/tokenholderchart/0xbdd4f273c2b0f0b84a51bd733aac617d91159376'>https://etherscan.io/token/tokenholderchart</a></small>
</div>
</div>
</div>
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
</center>
</div>
<?PHP include_once('footer.php'); ?>