Tokenomics Analysis Tool

Tokenomics Analysis Tool

Analyze the economic model of a digital asset.

QuantumLeap (QLT) Analysis

Token Allocation

Token Setup

Allocations

${state.token.name} (${state.token.ticker.toUpperCase()})

Key Metrics

Market Cap
$${format(kpis.marketCap)}
Fully Diluted Valuation
$${format(kpis.fdv)}
Circulating Supply
${kpis.circulatingPercent.toFixed(1)}%
Total Supply
${format(state.token.totalSupply)}

Token Allocation Breakdown

${tableRows}
CategoryPercentageToken Amount
`; const pdfTemplate = document.getElementById('pdf-template'); pdfTemplate.innerHTML = reportHtml; pdfTemplate.classList.remove('invisible'); try { const { jsPDF } = window.jspdf; const canvas = await html2canvas(pdfTemplate.querySelector('.pdf-report-container'), { scale: 2 }); const imgData = canvas.toDataURL('image/png'); const pdf = new jsPDF({ orientation: 'p', unit: 'pt', format: 'a4' }); pdf.addImage(imgData, 'PNG', 0, 0, pdf.internal.pageSize.getWidth(), (canvas.height * pdf.internal.pageSize.getWidth()) / canvas.width); pdf.save(`${state.token.ticker}_Tokenomics_Report.pdf`); } catch(e) { console.error('PDF Generation Error:', e); } finally { downloadPdfBtn.disabled = false; downloadPdfBtn.textContent = 'Download Analysis Report'; pdfTemplate.classList.add('invisible'); } } downloadPdfBtn.addEventListener('click', generatePdfReport); // --- INITIALIZATION --- renderAllocations(); attachDataListeners(); runAnalysis(); switchTab(0); });
Scroll to Top