Punch P2E is NFT Game on BSC Chain. Destroy them all with fists! Charge by touching continuously! Shoot the one-inch critical punch! 👊👊👊 Download game here:
- Android: https://play.google.com/store/apps/details?id=com.yosukearasawa.KungFuPunch
- IOS: https://apps.apple.com/us/app/kung-fu-punch-destruction/id1598764406
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
PUNCH._takeMarketingAndBurnToken(uint256,address) (#690-709) performs a multiplication on the result of a division:
-tMarketing = tMarketingAndBurn.mul(_marketingFee).div(_marketingFee + _burnFee) (#692)
-rMarketing = tMarketing.mul(currentRate) (#703)
Consider ordering multiplication before division.
Additional information: link
PUNCH.allowance(address,address).owner (#545) shadows:
- Ownable.owner() (#414-416) (function)
PUNCH._approve(address,address,uint256).owner (#742) shadows:
- Ownable.owner() (#414-416) (function)
Rename the local variables that shadow another component.
Additional information: link
PUNCH.setDistributionFeePercent(uint256) (#618-620) should emit an event for:
- _distributionFee = distributionFee (#619)
PUNCH.setBurnFeePercent(uint256) (#622-624) should emit an event for:
- _burnFee = burnFee (#623)
PUNCH.setMarketingFeePercent(uint256) (#626-628) should emit an event for:
- _marketingFee = marketingFee (#627)
Emit an event for critical parameter changes.
Additional information: link
PUNCH.updateMarketingWallet(address).account (#630) lacks a zero-check on :
- marketingWallet = account (#631)
Check that the address is not zero.
Additional information: link
Ownable.unlock() (#461-466) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#463)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#266-275) uses assembly
- INLINE ASM (#273)
Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) uses assembly
- INLINE ASM (#372-375)
Do not use evm assembly.
Additional information: link
PUNCH.includeInReward(address) (#597-608) has costly operations inside a loop:
- _excluded.pop() (#604)
PUNCH._distributionToAllHolder(uint256,uint256) (#647-650) has costly operations inside a loop:
- _rTotal = _rTotal.sub(rDistribution) (#648)
PUNCH._distributionToAllHolder(uint256,uint256) (#647-650) has costly operations inside a loop:
- _tRewardTotal = _tRewardTotal.add(tDistribution) (#649)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) is never used and should be removed
Address.functionCall(address,bytes) (#319-321) is never used and should be removed
Address.functionCall(address,bytes,string) (#329-331) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#344-346) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#354-357) is never used and should be removed
Address.isContract(address) (#266-275) is never used and should be removed
Address.sendValue(address,uint256) (#293-299) is never used and should be removed
Context._msgData() (#238-241) is never used and should be removed
SafeMath.mod(uint256,uint256) (#211-213) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#227-230) is never used and should be removed
Remove unused functions.
Additional information: link
PUNCH._rTotal (#486) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
PUNCH._previousDistributionFee (#494) is set pre-construction with a non-constant function or state variable:
- _distributionFee
PUNCH._previousBurnFee (#497) is set pre-construction with a non-constant function or state variable:
- _burnFee
PUNCH._previousMarketingFee (#500) is set pre-construction with a non-constant function or state variable:
- _marketingFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#293-299):
- (success) = recipient.call{value: amount}() (#297)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#359-380):
- (success,returndata) = target.call{value: weiValue}(data) (#363)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Parameter PUNCH.calculateDistributionFee(uint256)._amount (#711) is not in mixedCase
Parameter PUNCH.calculateBurnAndMarketingFee(uint256)._amount (#717) is not in mixedCase
Variable PUNCH._distributionFee (#493) is not in mixedCase
Variable PUNCH._burnFee (#496) is not in mixedCase
Variable PUNCH._marketingFee (#499) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#239)" inContext (#233-242)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable PUNCH._getValues(uint256).rDistribution (#654) is too similar to PUNCH._getRValues(uint256,uint256,uint256,uint256).tDistribution (#665)
Variable PUNCH._distributionToAllHolder(uint256,uint256).rDistribution (#647) is too similar to PUNCH._transferStandard(address,address,uint256).tDistribution (#791)
Variable PUNCH._distributionToAllHolder(uint256,uint256).rDistribution (#647) is too similar to PUNCH._transferToExcluded(address,address,uint256).tDistribution (#800)
Variable PUNCH._transferFromExcluded(address,address,uint256).rDistribution (#810) is too similar to PUNCH._transferStandard(address,address,uint256).tDistribution (#791)
Variable PUNCH._distributionToAllHolder(uint256,uint256).rDistribution (#647) is too similar to PUNCH._getRValues(uint256,uint256,uint256,uint256).tDistribution (#665)
Variable PUNCH._distributionToAllHolder(uint256,uint256).rDistribution (#647) is too similar to PUNCH._getTValues(uint256).tDistribution (#659)
Variable PUNCH._distributionToAllHolder(uint256,uint256).rDistribution (#647) is too similar to PUNCH._distributionToAllHolder(uint256,uint256).tDistribution (#647)
Variable PUNCH._transferFromExcluded(address,address,uint256).rDistribution (#810) is too similar to PUNCH._transferToExcluded(address,address,uint256).tDistribution (#800)
Variable PUNCH._transferFromExcluded(address,address,uint256).rDistribution (#810) is too similar to PUNCH._getRValues(uint256,uint256,uint256,uint256).tDistribution (#665)
Variable PUNCH._transferFromExcluded(address,address,uint256).rDistribution (#810) is too similar to PUNCH._distributionToAllHolder(uint256,uint256).tDistribution (#647)
Variable PUNCH._transferFromExcluded(address,address,uint256).rDistribution (#810) is too similar to PUNCH._getTValues(uint256).tDistribution (#659)
Variable PUNCH._transferToExcluded(address,address,uint256).rDistribution (#800) is too similar to PUNCH._transferToExcluded(address,address,uint256).tDistribution (#800)
Variable PUNCH._transferStandard(address,address,uint256).rDistribution (#791) is too similar to PUNCH._transferStandard(address,address,uint256).tDistribution (#791)
Variable PUNCH._transferToExcluded(address,address,uint256).rDistribution (#800) is too similar to PUNCH._transferStandard(address,address,uint256).tDistribution (#791)
Variable PUNCH._getValues(uint256).rDistribution (#654) is too similar to PUNCH._transferToExcluded(address,address,uint256).tDistribution (#800)
Variable PUNCH._transferStandard(address,address,uint256).rDistribution (#791) is too similar to PUNCH._getRValues(uint256,uint256,uint256,uint256).tDistribution (#665)
Variable PUNCH._transferToExcluded(address,address,uint256).rDistribution (#800) is too similar to PUNCH._getRValues(uint256,uint256,uint256,uint256).tDistribution (#665)
Variable PUNCH._getValues(uint256).rDistribution (#654) is too similar to PUNCH._transferStandard(address,address,uint256).tDistribution (#791)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (#668) is too similar to PUNCH._takeMarketingAndBurnToken(uint256,address).tMarketingAndBurn (#690)
Variable PUNCH._transferToExcluded(address,address,uint256).rTransferAmount (#800) is too similar to PUNCH._transferToExcluded(address,address,uint256).tTransferAmount (#800)
Variable PUNCH._getValues(uint256).rTransferAmount (#654) is too similar to PUNCH._getTValues(uint256).tTransferAmount (#661)
Variable PUNCH._transferToExcluded(address,address,uint256).rTransferAmount (#800) is too similar to PUNCH._transferStandard(address,address,uint256).tTransferAmount (#791)
Variable PUNCH._transferStandard(address,address,uint256).rTransferAmount (#791) is too similar to PUNCH._transferBothExcluded(address,address,uint256).tTransferAmount (#820)
Variable PUNCH._transferToExcluded(address,address,uint256).rTransferAmount (#800) is too similar to PUNCH._transferBothExcluded(address,address,uint256).tTransferAmount (#820)
Variable PUNCH._transferBothExcluded(address,address,uint256).rTransferAmount (#820) is too similar to PUNCH._transferBothExcluded(address,address,uint256).tTransferAmount (#820)
Variable PUNCH._getValues(uint256).rTransferAmount (#654) is too similar to PUNCH._transferStandard(address,address,uint256).tTransferAmount (#791)
Variable PUNCH._getValues(uint256).rTransferAmount (#654) is too similar to PUNCH._transferToExcluded(address,address,uint256).tTransferAmount (#800)
Variable PUNCH._getValues(uint256).rTransferAmount (#654) is too similar to PUNCH._transferBothExcluded(address,address,uint256).tTransferAmount (#820)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#669) is too similar to PUNCH._transferBothExcluded(address,address,uint256).tTransferAmount (#820)
Variable PUNCH._transferStandard(address,address,uint256).rTransferAmount (#791) is too similar to PUNCH._transferStandard(address,address,uint256).tTransferAmount (#791)
Variable PUNCH._transferFromExcluded(address,address,uint256).rTransferAmount (#810) is too similar to PUNCH._transferBothExcluded(address,address,uint256).tTransferAmount (#820)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rDistribution (#667) is too similar to PUNCH._transferStandard(address,address,uint256).tDistribution (#791)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rDistribution (#667) is too similar to PUNCH._transferBothExcluded(address,address,uint256).tDistribution (#820)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rDistribution (#667) is too similar to PUNCH._distributionToAllHolder(uint256,uint256).tDistribution (#647)
Variable PUNCH._transferStandard(address,address,uint256).rDistribution (#791) is too similar to PUNCH._distributionToAllHolder(uint256,uint256).tDistribution (#647)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rDistribution (#667) is too similar to PUNCH._transferToExcluded(address,address,uint256).tDistribution (#800)
Variable PUNCH._transferFromExcluded(address,address,uint256).rDistribution (#810) is too similar to PUNCH._getValues(uint256).tDistribution (#653)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rDistribution (#667) is too similar to PUNCH._getRValues(uint256,uint256,uint256,uint256).tDistribution (#665)
Variable PUNCH._transferFromExcluded(address,address,uint256).rDistribution (#810) is too similar to PUNCH._transferBothExcluded(address,address,uint256).tDistribution (#820)
Variable PUNCH._transferBothExcluded(address,address,uint256).rDistribution (#820) is too similar to PUNCH._getValues(uint256).tDistribution (#653)
Variable PUNCH._distributionToAllHolder(uint256,uint256).rDistribution (#647) is too similar to PUNCH._getValues(uint256).tDistribution (#653)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rDistribution (#667) is too similar to PUNCH._transferFromExcluded(address,address,uint256).tDistribution (#810)
Variable PUNCH._transferBothExcluded(address,address,uint256).rDistribution (#820) is too similar to PUNCH._transferStandard(address,address,uint256).tDistribution (#791)
Variable PUNCH._transferBothExcluded(address,address,uint256).rDistribution (#820) is too similar to PUNCH._transferBothExcluded(address,address,uint256).tDistribution (#820)
Variable PUNCH._transferBothExcluded(address,address,uint256).rDistribution (#820) is too similar to PUNCH._distributionToAllHolder(uint256,uint256).tDistribution (#647)
Variable PUNCH._distributionToAllHolder(uint256,uint256).rDistribution (#647) is too similar to PUNCH._transferBothExcluded(address,address,uint256).tDistribution (#820)
Variable PUNCH._transferBothExcluded(address,address,uint256).rDistribution (#820) is too similar to PUNCH._transferToExcluded(address,address,uint256).tDistribution (#800)
Variable PUNCH._transferFromExcluded(address,address,uint256).rDistribution (#810) is too similar to PUNCH._transferFromExcluded(address,address,uint256).tDistribution (#810)
Variable PUNCH._transferBothExcluded(address,address,uint256).rDistribution (#820) is too similar to PUNCH._transferFromExcluded(address,address,uint256).tDistribution (#810)
Variable PUNCH._distributionToAllHolder(uint256,uint256).rDistribution (#647) is too similar to PUNCH._transferFromExcluded(address,address,uint256).tDistribution (#810)
Variable PUNCH._transferToExcluded(address,address,uint256).rDistribution (#800) is too similar to PUNCH._getTValues(uint256).tDistribution (#659)
Variable PUNCH._getValues(uint256).rDistribution (#654) is too similar to PUNCH._getValues(uint256).tDistribution (#653)
Variable PUNCH._getValues(uint256).rDistribution (#654) is too similar to PUNCH._transferBothExcluded(address,address,uint256).tDistribution (#820)
Variable PUNCH._getValues(uint256).rDistribution (#654) is too similar to PUNCH._distributionToAllHolder(uint256,uint256).tDistribution (#647)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rDistribution (#667) is too similar to PUNCH._getTValues(uint256).tDistribution (#659)
Variable PUNCH._transferStandard(address,address,uint256).rDistribution (#791) is too similar to PUNCH._getTValues(uint256).tDistribution (#659)
Variable PUNCH._getValues(uint256).rDistribution (#654) is too similar to PUNCH._transferFromExcluded(address,address,uint256).tDistribution (#810)
Variable PUNCH._transferBothExcluded(address,address,uint256).rDistribution (#820) is too similar to PUNCH._getTValues(uint256).tDistribution (#659)
Variable PUNCH._transferStandard(address,address,uint256).rDistribution (#791) is too similar to PUNCH._getValues(uint256).tDistribution (#653)
Variable PUNCH._transferStandard(address,address,uint256).rDistribution (#791) is too similar to PUNCH._transferBothExcluded(address,address,uint256).tDistribution (#820)
Variable PUNCH._transferStandard(address,address,uint256).rDistribution (#791) is too similar to PUNCH._transferToExcluded(address,address,uint256).tDistribution (#800)
Variable PUNCH._transferToExcluded(address,address,uint256).rDistribution (#800) is too similar to PUNCH._getValues(uint256).tDistribution (#653)
Variable PUNCH._transferToExcluded(address,address,uint256).rDistribution (#800) is too similar to PUNCH._transferBothExcluded(address,address,uint256).tDistribution (#820)
Variable PUNCH._transferToExcluded(address,address,uint256).rDistribution (#800) is too similar to PUNCH._distributionToAllHolder(uint256,uint256).tDistribution (#647)
Variable PUNCH._transferStandard(address,address,uint256).rDistribution (#791) is too similar to PUNCH._transferFromExcluded(address,address,uint256).tDistribution (#810)
Variable PUNCH._getValues(uint256).rDistribution (#654) is too similar to PUNCH._getTValues(uint256).tDistribution (#659)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rDistribution (#667) is too similar to PUNCH._getValues(uint256).tDistribution (#653)
Variable PUNCH._transferToExcluded(address,address,uint256).rDistribution (#800) is too similar to PUNCH._transferFromExcluded(address,address,uint256).tDistribution (#810)
Variable PUNCH._transferBothExcluded(address,address,uint256).rDistribution (#820) is too similar to PUNCH._getRValues(uint256,uint256,uint256,uint256).tDistribution (#665)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (#668) is too similar to PUNCH._getRValues(uint256,uint256,uint256,uint256).tMarketingAndBurn (#665)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (#668) is too similar to PUNCH._transferBothExcluded(address,address,uint256).tMarketingAndBurn (#820)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (#668) is too similar to PUNCH._getValues(uint256).tMarketingAndBurn (#653)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (#668) is too similar to PUNCH._transferFromExcluded(address,address,uint256).tMarketingAndBurn (#810)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (#668) is too similar to PUNCH._transferStandard(address,address,uint256).tMarketingAndBurn (#791)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (#668) is too similar to PUNCH._getTValues(uint256).tMarketingAndBurn (#660)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (#668) is too similar to PUNCH._transferToExcluded(address,address,uint256).tMarketingAndBurn (#800)
Variable PUNCH._transferToExcluded(address,address,uint256).rTransferAmount (#800) is too similar to PUNCH._transferFromExcluded(address,address,uint256).tTransferAmount (#810)
Variable PUNCH._transferToExcluded(address,address,uint256).rTransferAmount (#800) is too similar to PUNCH._getTValues(uint256).tTransferAmount (#661)
Variable PUNCH._transferStandard(address,address,uint256).rTransferAmount (#791) is too similar to PUNCH._getTValues(uint256).tTransferAmount (#661)
Variable PUNCH._transferStandard(address,address,uint256).rTransferAmount (#791) is too similar to PUNCH._getValues(uint256).tTransferAmount (#653)
Variable PUNCH._transferBothExcluded(address,address,uint256).rTransferAmount (#820) is too similar to PUNCH._getValues(uint256).tTransferAmount (#653)
Variable PUNCH._transferStandard(address,address,uint256).rTransferAmount (#791) is too similar to PUNCH._transferFromExcluded(address,address,uint256).tTransferAmount (#810)
Variable PUNCH._transferFromExcluded(address,address,uint256).rTransferAmount (#810) is too similar to PUNCH._getTValues(uint256).tTransferAmount (#661)
Variable PUNCH._transferBothExcluded(address,address,uint256).rTransferAmount (#820) is too similar to PUNCH._transferFromExcluded(address,address,uint256).tTransferAmount (#810)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#669) is too similar to PUNCH._getValues(uint256).tTransferAmount (#653)
Variable PUNCH._transferBothExcluded(address,address,uint256).rTransferAmount (#820) is too similar to PUNCH._getTValues(uint256).tTransferAmount (#661)
Variable PUNCH._transferFromExcluded(address,address,uint256).rTransferAmount (#810) is too similar to PUNCH._getValues(uint256).tTransferAmount (#653)
Variable PUNCH._transferBothExcluded(address,address,uint256).rTransferAmount (#820) is too similar to PUNCH._transferStandard(address,address,uint256).tTransferAmount (#791)
Variable PUNCH._transferStandard(address,address,uint256).rTransferAmount (#791) is too similar to PUNCH._transferToExcluded(address,address,uint256).tTransferAmount (#800)
Variable PUNCH._getValues(uint256).rTransferAmount (#654) is too similar to PUNCH._getValues(uint256).tTransferAmount (#653)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#669) is too similar to PUNCH._transferFromExcluded(address,address,uint256).tTransferAmount (#810)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#669) is too similar to PUNCH._getTValues(uint256).tTransferAmount (#661)
Variable PUNCH._transferBothExcluded(address,address,uint256).rTransferAmount (#820) is too similar to PUNCH._transferToExcluded(address,address,uint256).tTransferAmount (#800)
Variable PUNCH._transferFromExcluded(address,address,uint256).rTransferAmount (#810) is too similar to PUNCH._transferFromExcluded(address,address,uint256).tTransferAmount (#810)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#669) is too similar to PUNCH._transferStandard(address,address,uint256).tTransferAmount (#791)
Variable PUNCH._getValues(uint256).rTransferAmount (#654) is too similar to PUNCH._transferFromExcluded(address,address,uint256).tTransferAmount (#810)
Variable PUNCH._transferFromExcluded(address,address,uint256).rTransferAmount (#810) is too similar to PUNCH._transferStandard(address,address,uint256).tTransferAmount (#791)
Variable PUNCH._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#669) is too similar to PUNCH._transferToExcluded(address,address,uint256).tTransferAmount (#800)
Variable PUNCH._transferToExcluded(address,address,uint256).rTransferAmount (#800) is too similar to PUNCH._getValues(uint256).tTransferAmount (#653)
Variable PUNCH._transferFromExcluded(address,address,uint256).rTransferAmount (#810) is too similar to PUNCH._transferToExcluded(address,address,uint256).tTransferAmount (#800)
Prevent variables from having similar names.
Additional information: link
PUNCH.slitherConstructorVariables() (#469-830) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** 18 (#485)
PUNCH.slitherConstructorVariables() (#469-830) uses literals with too many digits:
- burnWallet = 0x000000000000000000000000000000000000dEaD (#502)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
PUNCH.lastTimeBuy (#482) is never used in PUNCH (#469-830)
Remove unused state variables.
Additional information: link
PUNCH._decimals (#491) should be constant
PUNCH._name (#489) should be constant
PUNCH._symbol (#490) should be constant
PUNCH._tTotal (#485) should be constant
PUNCH.burnWallet (#502) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#433-436)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#442-446)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#448-450)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#453-458)
unlock() should be declared external:
- Ownable.unlock() (#461-466)
name() should be declared external:
- PUNCH.name() (#519-521)
symbol() should be declared external:
- PUNCH.symbol() (#523-525)
decimals() should be declared external:
- PUNCH.decimals() (#527-529)
totalSupply() should be declared external:
- PUNCH.totalSupply() (#531-533)
balanceOf(address) should be declared external:
- PUNCH.balanceOf(address) (#535-538)
transfer(address,uint256) should be declared external:
- PUNCH.transfer(address,uint256) (#540-543)
allowance(address,address) should be declared external:
- PUNCH.allowance(address,address) (#545-547)
approve(address,uint256) should be declared external:
- PUNCH.approve(address,uint256) (#549-552)
transferFrom(address,address,uint256) should be declared external:
- PUNCH.transferFrom(address,address,uint256) (#554-558)
increaseAllowance(address,uint256) should be declared external:
- PUNCH.increaseAllowance(address,uint256) (#560-563)
decreaseAllowance(address,uint256) should be declared external:
- PUNCH.decreaseAllowance(address,uint256) (#565-568)
isExcludedFromReward(address) should be declared external:
- PUNCH.isExcludedFromReward(address) (#570-572)
isExcludedFromFee(address) should be declared external:
- PUNCH.isExcludedFromFee(address) (#574-576)
totalRewards() should be declared external:
- PUNCH.totalRewards() (#578-580)
excludeFromFee(address) should be declared external:
- PUNCH.excludeFromFee(address) (#610-612)
includeInFee(address) should be declared external:
- PUNCH.includeInFee(address) (#614-616)
updateMarketingWallet(address) should be declared external:
- PUNCH.updateMarketingWallet(address) (#630-632)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find KYC or doxxing proof
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Telegram account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts