CryptoHealth - Tokenized Healthcare via Blockchain
  • !!! Under Construction !!!
  • 📚Introduction
  • 🪙The CryptoHealth Token
    • The CHT (BEP-20) Token
      • Smart Contract
      • Tokenomics
      • Trading Fees
      • Safety Features and Audit
      • Custom Functions
      • Supporting Tokens
    • Multichain CHT
      • Pre-Requisites for Launch
      • EVM Chains
      • CryptoHealth (ETH)
      • Benefits of Multichain
      • Tokenomics and Fees
      • Smart Contract Addresses
      • Diamond Hand Airdrop
  • 🏥CryptoHealth Medical Insurance
    • Team Functions
    • The CryptoHealth Treasury
      • Treasury Addresses
      • The Reserve Pools
        • CHT Reserve Pool
        • Native Chain Token Pool
        • Stablecoin Reserve Pool
        • LP Token Reserve Pool
        • Investment Reserve Pool
      • Ensuring Pool Sustainability
    • The CryptoHealth Policy
      • Introduction to Insurance
      • Advantages of CHT
      • Benefits Computation
        • 📋Initial Claims Computation
          • Limit 1: Token Value Based on Multipliers
          • Limit 2: Ceiling Amount based on Hold Period
          • Limit 3: Hospital Bill During Admission
          • Limit 4: Value Locked in Reimbursement Pool
        • ⏫Final Claims Computation
          • Seed Edition NFTs
          • Founder Edition NFTs
          • Medical NFTs
          • Support Token Bonus
          • Partner Project Bonus
          • Multichain Bonus
      • Claiming For Reimbursement
        • Eligibility and Coverage
        • Verification Process
          • Proof of Wallet Ownership
          • Proof of Hospitalization
            • Special Considerations
          • Proof of Identity
          • Username Generation
          • Video Chat Verification
        • Claims Processing
          • Payment of Claims
          • Wallet Tagging
        • Important Policy Reminders
    • Claims Calculation
      • Table of Estimates
      • Sample Computations
      • Google Sheet Calculator
  • 🎯Development Roadmap
    • Health and Blockchain
      • Vision Statement
      • Mission Statement
      • Tokenization of Healthcare
    • Development Phases
      • CHT as a Token
      • CHT as a Portfolio
        • Support Tokens
        • CryptoHealth NFT
          • The CHT Healthies
          • The CHT Sicklies
          • The CHT Kiddies
          • The CHT Preggies
          • The CHT Oldies
      • CHT as a Service
        • CryptoHealth Clinics
        • Health Facility Donations
        • Medical Scholarships and Research Grants
        • Health Service Subscription
      • CHT as an Institution
        • The CryptoHealth LLC
        • One Health Initiatives
        • Group Crypto Medical Insurance Policies
        • Health Service Crypto Payment System
        • CryptoHealth Blockchain Development
    • The CryptoHealth DAO
      • CryptoHealth (ERC-20)
      • The ETH Treasury
    • Marketing Plans
      • Health Information Education Advocacies
    • Partnership Terms
      • Scope and Limitations
      • The Super Healthies Partnership
      • HODL Buddy Tokens
      • Partner NFTs as Boosters
      • Partner NFTs as Insurance
  • ❓About the Project
    • The CryptoHealth Team
      • Project Founder
      • Advisors
      • Scaling and Expansion
    • Project Wallets
    • CryptoHealth Community
    • Important Links
  • 💸How to Buy CryptoHealth
    • Crypto Ownership 101
      • Cryptocurrency Wallets
      • The Seed Phrase
      • Blockchain Explorers
      • Transferring Tokens
      • Connecting to dApps
      • Responsible Ownership
    • Transacting on the DEX
      • Buying CHT Tokens
      • Generating LP Tokens
      • Selling CHT Tokens
    • Buying Using Third Parties
      • Using the Embr Ramp
      • Using Other Websites
    • Buying Peer-To-Peer
      • Payment thru PayPal
      • Purchasing CHT thru Other Insurance Brokers
  • 📓Important Disclaimers
Powered by GitBook
On this page
  1. The CryptoHealth Token
  2. The CHT (BEP-20) Token

Safety Features and Audit

PreviousTrading FeesNextCustom Functions

Last updated 2 years ago

The CryptoHealth team takes pride in providing investors with a custom-built smart contract that is secure, reliable, and designed to maximize investor confidence. The smart contract includes several features, including (1) anti-whale features to limit maximum wallet sizes and transaction amounts, (2) ceiling limits for sell tax changes of at most 10%, and (3) to protect from fraudulent transactions.

Refer to the following lines of code:

[line 488 to 489]

uint256 public _maxTxAmount = 10 * 10**6 * 10**9;
uint256 private _maxWalletHold = 50 * 10**6 * 10**9;

[line 1113 to 1125]

    if (!_isLimitExempt[to] && !_isEmploymentWallet[to] && !_isDonationRecipient[to] && from != owner())
        {
        uint256 heldTokens = balanceOf(to);
        require((heldTokens + amount) <= _maxWalletHold, 
            "CHT: Regular wallets can only hold up to 5% of the total supply."
        );
    }

    if (from != owner() && to != owner()) {
        require(
            amount <= _maxTxAmount,
            "CHT: Transfer amount is limited to 1% of the total supply."
        );

[line 814 to 822]

function setSellFee(uint16 develop, uint16 treasury, uint16 tax) external onlyOwner {
    require(develop + treasury + tax <= 10, "Fees are capped at 10%"); 

    sellFee.developmentFee = develop;
    sellFee.treasuryFee = treasury;
    sellFee.taxFee = tax;

    emit updatedSellTaxes (develop, treasury, tax);
}

Project Treasury Wallet is also managed through a multisignature contract, ensuring safety of the Reimbursement Pool. Furthermore, the CryptoHealth team recognizes the importance of security and safety for its investors, which is why the smart contract has been subjected to a thorough conducted by CoinMooner.

The CryptoHealth smart contract, our , and our , is a testament to our long-term commitment to providing a project that is safe, secure, and designed to provide a strong utility that supports adoption of blockchain by the general population.

🪙
multi-signature contract ownership
audit
burned LP tokens
doxxed Project Founder