PlayDapp Token Logo

PLA [PlayDapp] Token

ALERT: honeypot scam

About PLA

Listings

Not Found
Token 3 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 2 June 2024

report
Token seems to be a scam (type: honeypot scam).


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Tokenomics._getFeeStruct(uint256) (#438-444) contains a tautology or contradiction:
- require(bool,string)(index >= 0 && index < fees.length,FeesSettings._getFeeStruct: Fee index out of bounds) (#439-442)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

BaseRfiToken.includeInReward(address) (#737-748) has costly operations inside a loop:
- _excluded.pop() (#744)
Use a local variable to hold the loop computation result.

Additional information: link

SafeToken._burn(uint256,uint256,uint256,uint256) (#1321-1332) performs a multiplication on the result of a division:
-tBurn = amount.mul(fee).div(FEES_DIVISOR) (#1327)
-rBurn = tBurn.mul(currentRate) (#1328)
BaseRfiToken._redistribute(uint256,uint256,uint256,uint256) (#999-1010) performs a multiplication on the result of a division:
-tFee = amount.mul(fee).div(FEES_DIVISOR) (#1005)
-rFee = tFee.mul(currentRate) (#1006)
BaseRfiToken._getValues(uint256,uint256) (#919-944) performs a multiplication on the result of a division:
-tTotalFees = tAmount.mul(feesSum).div(FEES_DIVISOR) (#930)
-rTotalFees = tTotalFees.mul(currentRate) (#934)
SafeToken._takeFee(uint256,uint256,uint256,address,uint256) (#1334-1351) performs a multiplication on the result of a division:
-tAmount = amount.mul(fee).div(FEES_DIVISOR) (#1341)
-rAmount = tAmount.mul(currentRate) (#1342)
Consider ordering multiplication before division.

Additional information: link

SafeToken._approveDelegate(address,address,uint256).owner (#1354) shadows:
- Ownable.owner() (#257-259) (function)
BaseRfiToken._transferTokens(address,address,uint256,bool).sumOfFees (#873) shadows:
- Tokenomics.sumOfFees (#402) (state variable)
SafeToken.constructor(Liquifier.Env)._env (#1265) shadows:
- Liquifier._env (#1029) (state variable)
SafeToken._takeTransactionFees(uint256,uint256).name (#1307) shadows:
- BaseRfiToken.name() (#505-507) (function)
- IERC20Metadata.name() (#59) (function)
BaseRfiToken._takeFees(uint256,uint256,uint256).sumOfFees (#912) shadows:
- Tokenomics.sumOfFees (#402) (state variable)
BaseRfiToken.allowance(address,address).owner (#537) shadows:
- Ownable.owner() (#257-259) (function)
Liquifier._approveDelegate(address,address,uint256).owner (#1220) shadows:
- Ownable.owner() (#257-259) (function)
BaseRfiToken._approve(address,address,uint256).owner (#762) shadows:
- Ownable.owner() (#257-259) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in Liquifier.initializeLiquiditySwapper(Liquifier.Env,uint256,uint256) (#1068-1082):
External calls:
- _setRouterAddress(_mainnetRouterV2Address) (#1075)
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1122-1125)
- _setRouterAddress(_testnetRouterAddress) (#1077)
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1122-1125)
State variables written after the call(s):
- maxTransactionAmount = maxTx (#1080)
- numberOfTokensToSwapToLiquidity = liquifyAmount (#1081)
Reentrancy in Liquifier._setRouterAddress(address) (#1120-1128):
External calls:
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1122-1125)
State variables written after the call(s):
- _router = _newPancakeRouter (#1126)
Reentrancy in Liquifier._addLiquidity(uint256,uint256) (#1184-1213):
External calls:
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1189-1201)
State variables written after the call(s):
- withdrawableBalance = address(this).balance (#1211)
Reentrancy in Liquifier._swapAndLiquify(uint256,address) (#1130-1162):
External calls:
- _swapTokensForEth(half) (#1145)
- _router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1173-1181)
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1157)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1189-1201)
External calls sending eth:
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1157)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1189-1201)
State variables written after the call(s):
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1157)
- withdrawableBalance = address(this).balance (#1211)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Liquifier._swapAndLiquify(uint256,address) (#1130-1162):
External calls:
- _swapTokensForEth(half) (#1145)
- _router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1173-1181)
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1157)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1189-1201)
External calls sending eth:
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1157)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1189-1201)
Event emitted after the call(s):
- LiquidityAdded(tokenAmountSent,ethAmountSent,liquidity) (#1212)
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1157)
Reentrancy in Liquifier._setRouterAddress(address) (#1120-1128):
External calls:
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1122-1125)
Event emitted after the call(s):
- RouterSet(router) (#1127)
Reentrancy in Liquifier._addLiquidity(uint256,uint256) (#1184-1213):
External calls:
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1189-1201)
Event emitted after the call(s):
- LiquidityAdded(tokenAmountSent,ethAmountSent,liquidity) (#1212)
Reentrancy in Liquifier._swapAndLiquify(uint256,address) (#1130-1162):
External calls:
- _swapTokensForEth(half) (#1145)
- _router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1173-1181)
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1157)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1189-1201)
External calls sending eth:
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1157)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1189-1201)
- marketingPayable.transfer(theOtherHalfBalance) (#1159)
Event emitted after the call(s):
- SwapAndLiquify(half,halfNewBalance,otherHalf.div(2)) (#1161)
Apply the check-effects-interactions pattern.

Additional information: link

AntiBot._getBotFee() (#1238-1246) uses timestamp for comparisons
Dangerous comparisons:
- antiBotEnabled && antiBotTime > block.timestamp (#1240)
AntiBot.checkAntiBotStatus() (#1248-1258) uses timestamp for comparisons
Dangerous comparisons:
- antiBotEnabled && antiBotTime > block.timestamp (#1251)
Avoid relying on block.timestamp.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#222-239) uses assembly
- INLINE ASM (#231-234)
Address.isContract(address) (#111-117) uses assembly
- INLINE ASM (#113-115)
Do not use evm assembly.

Additional information: link

Tokenomics._addFees() (#417-432) is never used and should be removed
Tokenomics._addFee(Tokenomics.FeeType,uint256,address) (#408-415) is never used and should be removed
Address.sendValue(address,uint256) (#119-129) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#146-158) is never used and should be removed
Tokenomics.getCollectedFeeTotal(uint256) (#466-473) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#212-220) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#200-210) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#160-175) is never used and should be removed
Context._msgData() (#71-74) is never used and should be removed
Address.functionStaticCall(address,bytes) (#177-188) is never used and should be removed
SafeMath.mod(uint256,uint256) (#94-96) is never used and should be removed
Address._verifyCallResult(bool,bytes,string) (#222-239) is never used and should be removed
Address.isContract(address) (#111-117) is never used and should be removed
Address.functionCall(address,bytes,string) (#138-144) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#190-198) is never used and should be removed
Address.functionCall(address,bytes) (#131-136) is never used and should be removed
Remove unused functions.

Additional information: link

AntiBot.antiBotTime (#1235) is set pre-construction with a non-constant function or state variable:
- block.timestamp.add(antiBotDuration)
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

Pragma version^0.8.9 (#26) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address.functionDelegateCall(address,bytes,string) (#212-220):
- (success,returndata) = target.delegatecall(data) (#218)
Low level call in Address.sendValue(address,uint256) (#119-129):
- (success) = recipient.call{value: amount}() (#124)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#160-175):
- (success,returndata) = target.call{value: value}(data) (#171-173)
Low level call in Address.functionStaticCall(address,bytes,string) (#190-198):
- (success,returndata) = target.staticcall(data) (#196)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable BaseRfiToken._allowances (#482) is not in mixedCase
Variable BaseRfiToken._reflectedBalances (#480) is not in mixedCase
Function IPancakeV2Router.WETH() (#297) is not in mixedCase
Constant Tokenomics.maxWalletBalance (#360) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Tokenomics.numberOfTokensToSwapToLiquidity (#375-376) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BaseRfiToken._isExcludedFromFee (#484) is not in mixedCase
Variable Liquifier._pair (#1039) is not in mixedCase
Constant Tokenomics.maxTransactionAmount (#348) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Ownable._deployer (#244) is not in mixedCase
Variable Tokenomics._reflectedSupply (#338) is not in mixedCase
Variable BaseRfiToken._balances (#481) is not in mixedCase
Variable BaseRfiToken._isExcludedFromRewards (#485) is not in mixedCase
Variable Liquifier._router (#1038) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#72)" inContext (#66-75)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in Liquifier._swapAndLiquify(uint256,address) (#1130-1162):
External calls:
- marketingPayable.transfer(theOtherHalfBalance) (#1159)
External calls sending eth:
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1157)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1189-1201)
- marketingPayable.transfer(theOtherHalfBalance) (#1159)
Event emitted after the call(s):
- SwapAndLiquify(half,halfNewBalance,otherHalf.div(2)) (#1161)
Apply the check-effects-interactions pattern.

Additional information: link

Variable BaseRfiToken.reflectionFromToken(uint256,bool).rTransferAmount (#698) is too similar to BaseRfiToken._getValues(uint256,uint256).tTransferAmount (#931)
Variable BaseRfiToken._getValues(uint256,uint256).rTransferAmount (#935) is too similar to BaseRfiToken._getValues(uint256,uint256).tTransferAmount (#931)
Variable BaseRfiToken._transferTokens(address,address,uint256,bool).rTransferAmount (#880) is too similar to BaseRfiToken._transferTokens(address,address,uint256,bool).tTransferAmount (#882)
Variable BaseRfiToken._getValues(uint256,uint256).rTransferAmount (#935) is too similar to BaseRfiToken._transferTokens(address,address,uint256,bool).tTransferAmount (#882)
Variable BaseRfiToken.reflectionFromToken(uint256,bool).rTransferAmount (#698) is too similar to BaseRfiToken._transferTokens(address,address,uint256,bool).tTransferAmount (#882)
Variable BaseRfiToken._transferTokens(address,address,uint256,bool).rTransferAmount (#880) is too similar to BaseRfiToken._getValues(uint256,uint256).tTransferAmount (#931)
Prevent variables from having similar names.

Additional information: link

PlayDapp.slitherConstructorVariables() (#1362-1368) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#386)
PlayDapp.slitherConstructorConstantVariables() (#1362-1368) uses literals with too many digits:
- TOTAL_SUPPLY = 1000000000000 * ZEROES (#337)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Liquifier._mainnetRouterV2Address (#1032-1033) should be constant
AntiBot.antiBotDuration (#1234) should be constant
Tokenomics.burnAddress (#386) should be constant
Liquifier._testnetRouterAddress (#1035-1036) should be constant
Liquifier.swapAndLiquifyEnabled (#1042) should be constant
Tokenomics.marketingAddress (#384-385) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#266-269)
checkAntiBotStatus() should be declared external:
- AntiBot.checkAntiBotStatus() (#1248-1258)
decreaseAllowance(address,uint256) should be declared external:
- BaseRfiToken.decreaseAllowance(address,uint256) (#660-674)
isExcludedFromFee(address) should be declared external:
- BaseRfiToken.isExcludedFromFee(address) (#757-759)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#271-278)
disableAntiBot() should be declared external:
- SafeToken.disableAntiBot() (#1278-1280)
increaseAllowance(address,uint256) should be declared external:
- BaseRfiToken.increaseAllowance(address,uint256) (#647-658)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.

Contract has 0% buy tax and 100% sell tax.
Taxes are extremely high (over 30%)

Additional information: link


Token has no transactions for more than 100 days. It seems dead / abandoned.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has a considerable age, but we're still unable to find its website


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for PLA