BrainWave White Paper
  • Introduction
  • Core Technology
    • AI and Neuro-Wave Technology
    • Intelligent Neuro-Wave Optimization
    • Personalized Smart Wallet
    • Secure Cryptocurrency Transactions
  • Product Features
  • RoadMap
  • Analysis
  • Tokenomics
Powered by GitBook
On this page

Tokenomics

Max Supply

  • 100,000,000,000 $BWV

Symbol

  • $BWV

Buy/Sell Tax

  • 0% / 0%

Contract Address

  • 0x71F085C9440311913340CCD6A3755F0a23770A6A

<!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>

Token Distribution Details:

  • Airdrop

    • 5% of total supply

    • 10% unlocked at Token Generation Event (TGE)

    • Remaining balance unlocked linearly within 6 months, based on an annual plan

  • Partner Sales

    • 13% of total supply

    • 8% available at TGE

    • Vested 10% monthly linearly, over 12 months

  • Private Sales

    • 17% of total supply

    • 10% available at TGE

    • Vested 10% monthly linearly, over 12 months

  • Advisors

    • 10% of total supply

    • 10% unlocked at TGE

    • Remaining balance unlocked linearly within 24 months, based on an annual plan

  • Staking and Incentives

    • 35% of total supply

    • 5% unlocked at TGE

    • Remaining balance unlocked linearly within 24 months, on an annual plan

  • CEX Listing

    • 10% of total supply

  • Team

    • 10% of total supply

    • 10% unlocked at TGE

    • Remaining balance unlocked linearly within 24 months, on an annual plan

PreviousAnalysis

Last updated 7 months ago