PartyADA Token Logo

PRADA [PartyADA] Token

About PRADA

Listings

Not Found
Token 2 years

Description

Not Found

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

PRADA.addLiquidity(uint256,uint256) (#1676-1691) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1682-1689)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in PRADA._transfer(address,address,uint256) (#1531-1601):
External calls:
- swapAndSendToFee(marketingTokens) (#1557)
- IERC20(CAKE).transfer(_marketingWalletAddress,newBalance) (#1609)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1667-1673)
- swapAndLiquify(swapTokens) (#1560)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1682-1689)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1647-1653)
- swapAndSendDividends(sellTokens) (#1563)
- success = IERC20(CAKE).transfer(address(dividendTracker),dividends) (#1696)
- dividendTracker.distributeCAKEDividends(dividends) (#1699)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1667-1673)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1560)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1682-1689)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1583)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#941)
- _balances[recipient] = _balances[recipient].add(amount) (#942)
- super._transfer(from,to,amount) (#1586)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#941)
- _balances[recipient] = _balances[recipient].add(amount) (#942)
- swapping = false (#1565)
Apply the check-effects-interactions pattern.

Additional information: link

PRADA.swapAndSendToFee(uint256) (#1603-1610) ignores return value by IERC20(CAKE).transfer(_marketingWalletAddress,newBalance) (#1609)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Redundant expression "this (#123)" inContext (#117-126)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Parameter PRADADividendTracker.getAccount(address)._account (#1765) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in PRADA.updateDividendTracker(address) (#1369-1384):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1376)
- newDividendTracker.excludeFromDividends(address(this)) (#1377)
- newDividendTracker.excludeFromDividends(owner()) (#1378)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1379)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1383)
Apply the check-effects-interactions pattern.

Additional information: link

PRADA._transfer(address,address,uint256).iterations (#1594) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

PRADA.addLiquidity(uint256,uint256) (#1676-1691) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1682-1689)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (#1206) shadows:
- Ownable._owner (#379) (state variable)
Rename the local variables that shadow another component.

Additional information: link

PRADA.setMarketingFee(uint256) (#1424-1428) should emit an event for:
- marketingFee = value (#1425)
- totalFees = CAKERewardsFee.add(liquidityFee).add(marketingFee) (#1426)
Emit an event for critical parameter changes.

Additional information: link

PRADA.setMarketingWallet(address).wallet (#1410) lacks a zero-check on :
- _marketingWalletAddress = wallet (#1411)
Check that the address is not zero.

Additional information: link

Variable 'PRADA._transfer(address,address,uint256).claims (#1594)' in PRADA._transfer(address,address,uint256) (#1531-1601) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1595)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in PRADA.updateUniswapV2Router(address) (#1386-1393):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1390-1391)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1392)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in PRADA.updateDividendTracker(address) (#1369-1384):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1376)
- newDividendTracker.excludeFromDividends(address(this)) (#1377)
- newDividendTracker.excludeFromDividends(owner()) (#1378)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1379)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1381)
Apply the check-effects-interactions pattern.

Additional information: link

PRADADividendTracker.canAutoClaim(uint256) (#1829-1835) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1830)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1834)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.mul(int256,int256) (#592-599) is never used and should be removed
Remove unused functions.

Additional information: link

PRADA.totalFees (#1282) is set pre-construction with a non-constant function or state variable:
- CAKERewardsFee.add(liquidityFee).add(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

Pragma version^0.6.2 (#1096) allows old versions
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

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1161) is too similar to PRADADividendTracker.getAccount(address).withdrawableDividends (#1770)
Prevent variables from having similar names.

Additional information: link

PRADADividendTracker.getAccountAtIndex(uint256) (#1810-1827) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1821)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#587) is never used in SafeMathInt (#585-643)
Remove unused state variables.

Additional information: link

PRADA.swapTokensAtAmount (#1276) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

process(uint256) should be declared external:
- PRADADividendTracker.process(uint256) (#1854-1899)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Number of Binance Smart Chain (BSC) token holders is low.


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.


Twitter account link seems to be invalid


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


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 CoinHunt

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinHunt, CoinGecko, CoinMarketCap


Unable to find code repository for the project


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

Price for PRADA