Think in Coin | Docs
HomeBlogDev HubGovernance
  • Getting Started
    • Overview
      • Significance
      • Purpose
    • Project Plan (Roadmap)
      • Requirements
      • Objectives
      • Risks
  • Tokenomics
  • Products
    • Academy
    • InvestGate
    • Meme Token Creation
    • DAO Management System
  • Stakeholders (TBD)
  • Architecture
    • Development
      • Deployment
      • Tests and Updates
    • Design and User Interface
    • How the System Works
  • Security
  • Communication Plan
  • Budget and Resources
  • Maintenance and Support
  • Community / Social
    • Twitter
    • Telegram
    • Blog (Medium)
    • Github
    • Reddit
  • LITEPAPER
  • Wiki
    • FAQ
Powered by GitBook
On this page

Was this helpful?

Tokenomics

Think in Coin ($NEURONS) is carefully structured with a deflationary model and fee distribution mechanism to ensure its stability, value appreciation, and support for the ecosystem.

Name: Think in Coin

Ticker: $NEURONS

Total Supply: 10 million ($NEURONS)

Deflationary Rate: 0.35% per transaction

Fees:

Liquidity Fee: 0.25% per transaction, allocated to liquidity pool

Treasury Fee: 0.5% per transaction, directed to the project treasury

Smart Contract Details (Solidity):

contract ThinkinCoinToken is ERC20, Ownable {
    address public constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address public constant ZERO = 0x0000000000000000000000000000000000000000;
    address public treasuryWallet;
    address public liquidityWallet;

    uint256 public constant TREASURY_FEE = 50; // 0.5%
    uint256 public constant LIQUIDITY_FEE = 25; // 0.25%
    uint256 public constant BURN_RATE = 35; // 0.35%
    uint256 public constant TOTAL_SUPPLY = 10000000 * (10 ** 18); // 10 million tokens, scaled by 18 decimal places

    // Rest of the contract details and functionalities...
}

In this model, with every transaction, a portion of $NEURONS is burned, contributing to its deflationary nature. Additionally, fees from transactions are allocated to the liquidity pool and project treasury, ensuring liquidity and sustainability for the ecosystem. Think in Coin's deflationary approach and fee distribution aim to maintain long-term value and support the growth of the platform and its community.

PreviousRisksNextProducts

Last updated 1 year ago

Was this helpful?