LogoLogo
AxonDAO.ioAxonDAO Telegram ChatLinkedInDiscordYouTube@AxonDAO X
  • AxonDAO
    • β˜€οΈHealthcare's Future is DeSci
    • πŸ—ΊοΈAxonDAO: The Vision
    • ⛑️The AxonDAO Team
    • 🚧Participating in AxonDAO
    • πŸ’‘Problems AxonDAO Solves
    • βœ…AxonDAO Milestones
    • πŸ›£οΈAxonDAO: Future Roadmap
    • πŸ›©οΈSubmit Proposals, Rules, Limits
    • πŸ’ͺCollaboration & Partnerships
    • πŸ“‡Contact
  • Tokenomics
    • πŸͺ™$AXGT Token Details
      • How to add AXGT to Metamask
      • How to bridge between Ethereum and Arbitrum
      • How to Bridge between Ethereum and BASE
    • πŸ”£AXGT Tokenomics
    • βš™οΈAXGT Token Utilities
    • πŸ”’Token Backing & Treasury
    • πŸ”₯Token Burning Protocol
      • The Algorithm
      • How it works
    • πŸ“AXGT Contract Features
  • Other
    • πŸ”AXGT Audits and KYC
Powered by GitBook
LogoLogo

2025 AXON DAO LLC.

On this page
Export as PDF
  1. Tokenomics
  2. Token Burning Protocol

The Algorithm

Variables:

  • d = number of datasets per day

  • t = tokens paid per dataset (specific per research project)

  • c = computations per dataset (specific per research project)

  • T = total supply

  • B = daily burn amount

  • Z = maximum burn cap

Proposed equation for daily burn calculation:

B = (d Γ— t Γ— sqrt(c)) Γ— (log₁₀(d)/20)

Let us explain how it works:

  1. Base Impact: (d Γ— t Γ— sqrt(c))

  • This considers your daily operations

  • Using sqrt(c) instead of c directly helps flatten the impact of computations

  1. Flattening Factor: (log₁₀(d)/20)

  • Logarithmic scaling ensures burn rate doesn't grow linearly with dataset volume

  • Division by 20 helps control the maximum burn rate

To enforce the maximum burn cap:

  1. Track cumulative burned tokens (CB)

  2. Before each burn, verify: CB + B ≀ T Γ— Z

  3. If the condition fails, adjust B to: B = (T Γ— Z) - CB

This approach creates a self-adjusting system where:

  • Burn rate increases sub-linearly with activity

  • Higher dataset volumes don't cause excessive burns

  • System naturally slows down as it approaches the maximum burn cap

  • Daily burns are predictable and manageable

After integrating the cap limit directly into the daily burn calculation to create a single equation that automatically adjusts based on how close we are to the total burn cap the final equation is:

B = min[(d Γ— t Γ— sqrt(c)) Γ— (log₁₀(d)/20), (T Γ— Z - CB) Γ— (1 - CB/(T Γ— Z))]

PreviousToken Burning ProtocolNextHow it works

Last updated 3 months ago

πŸ”₯