LazyCoin
LazyCoin(LZY) | BSC
High Risk 20%
No Contract Yet
Report Date
Apr 10, 2025

Contract Overview

🔴  minting:  
🟠  honeypot:  
🟢  enableTrading:  
🟢  pauseTrading:  
🟢  maxWallet:  
🟢  blacklist:  
🟢  proxy:  
🟢  hiddenOwner:  
🟢  maxTx:  
🟢  antibotSystem:  
Notes:   Safe: 🟢 Be Careful: 🟠 Danger: 🔴


Token Information

tokenName:   LazyCoin
tokenSymbol:   LZY
tokenDecimal:   18
blockchain:   BSC
tokenSupply:   1,000,000,000
contractAddress:   NaN
contractLanguage:   Solidity
currentBuyFee:   0
currentSellFee:   Dynamic Fee up to 3%
currentTransferFee:   Dynamic Fee up to 3%
social:  

InformationalLowMediumHigh5313025
Download SVG
Download PNG
Download CSV

Manual Review

Owner can exclude account from fees

        function excludeFromFee(address user) external onlyOwner requireValidAddress(user) {
          users[user].isExcludedFromFee = true;
          emit FeeExclusionSet(user, true);
        }
          
Recommendation

There is no need specific recommendation for this finding.

Unused local variable

           bytes32 refoundAddress = bytes32(uint256(uint160(address(this))));
          
Recommendation

The variable refoundAddress is not used in the contract.

WHALE_THRESHOLD is 10,000,000 token and whale fee is 3%

               uint256 internal WHALE_THRESHOLD = 10000000 * (10 ** 18); // 10,000,000 LZY tokens

               ...

              whaleFee = (value >= WHALE_THRESHOLD && WHALE_FEE_RATE != 0)
              ? (value * WHALE_FEE_RATE) / FEE_PRECISION
              : 0;
          
Recommendation

There is no need specific recommendation for this finding.

Disclaimer: This smart contract audit report, conducted by SecureWise, is intended for informational purposes only. It does not constitute an endorsement, investment advice, or a guarantee of any kind. The audit involved code analysis, manual review, testing, and risk classification.

© made with
by SecureWise all right reserved.