Tokensalepad Token Logo

TSPAD [salepad] Token

About TSPAD

Listings

Token 2 years
white paper

🔰TOKENSALEPAD  Decentralized

Platform for blockchain technologies, Launchpad, Bridge, Swap, Token Generator

🎖TOKENSALEPAD offiering Decentralized platform for new projects and help to raise them capital by launching token on $TSPAD Launchpad

⭐️New Platform For All In One

Creating a full DeFi ecosystem meeting the needs of users & technical functionality for growth & expansion of other projects by developers

✍TOKENSALEPAD: Built for creators & investors. $TSPAD NFT Marketplace will allow the buying, selling and auction of rare and valuable digital arts

💥STAKING AND FARMING: Introducing the next generation of DeFi with Layered farming & dividend pools, holders of $TSPAD get to constantly enjoy great APYs while earning yields & returns through dividend pools

🏅DAPP: Track & Trade and swap Everything DeFi, NFT and Gaming based on bsc

🎯LAUNCHPAD & FUNDING: Aims to help new bsc projects with fund-raising, audits, project incubation, marketing & guidance to boost & enhance project

Social

Laser Scorebeta Last Audit: 2 June 2022

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

Anti-Scam

Links

Tokensalepad.addLiquidity(uint256,uint256) (#1340-1354) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Tokensalepad._transfer(address,address,uint256) (#1213-1321):
External calls:
- swapAndLiquify(liqTokens) (#1261)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1366-1372)
External calls sending eth:
- swapAndLiquify(liqTokens) (#1261)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
State variables written after the call(s):
- tokensForLpInContract = 0 (#1262)
Reentrancy in Tokensalepad._transfer(address,address,uint256) (#1213-1321):
External calls:
- swapAndLiquify(liqTokens) (#1261)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1366-1372)
- swapAndSendBusdDividends(busdTokens) (#1267)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1406)
- dividendPayingTracker.distributeDividends(amount) (#1409)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1385-1391)
External calls sending eth:
- swapAndLiquify(liqTokens) (#1261)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1301)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#142)
- _balances[recipient] = _balances[recipient].add(amount) (#143)
- super._transfer(address(this),marketingWallet,tmpMarketingRewardPercent) (#1302)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#142)
- _balances[recipient] = _balances[recipient].add(amount) (#143)
- super._transfer(from,to,amount) (#1305)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#142)
- _balances[recipient] = _balances[recipient].add(amount) (#143)
- busdDividedRewardsInContract = 0 (#1268)
- busdDividedRewardsInContract = busdDividedRewardsInContract.add(tmpBusdDividedRewardsInContract) (#1291)
- swapping = false (#1272)
- tokensForLpInContract = tokensForLpInContract.add(tmpLpRewardInContract) (#1293)
Apply the check-effects-interactions pattern.

Additional information: link


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


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.


Contract ownership is not renounced (belongs to a wallet)

Tokensalepad._transfer(address,address,uint256) (#1213-1321) performs a multiplication on the result of a division:
-fees = fees.div(100).mul(sellFeeIncreaseFactor) (#1297)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#262-278):
External calls:
- success = IERC20(dividendToken).transfer(user,_withdrawableDividend) (#267)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#270)
Reentrancy in Tokensalepad.updatebusdDividendTracker(address) (#1067-1082):
External calls:
- newbusdDividendTracker.excludeFromDividends(address(newbusdDividendTracker)) (#1074)
- newbusdDividendTracker.excludeFromDividends(address(this)) (#1075)
- newbusdDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1076)
- newbusdDividendTracker.excludeFromDividends(address(deadAddress)) (#1077)
State variables written after the call(s):
- busdDividendTracker = newbusdDividendTracker (#1081)
Apply the check-effects-interactions pattern.

Additional information: link

Tokensalepad._transfer(address,address,uint256).iterations (#1314) is a local variable never initialized
Tokensalepad._transfer(address,address,uint256).claims (#1314) is a local variable never initialized
Tokensalepad._transfer(address,address,uint256).lastProcessedIndex (#1314) 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

Tokensalepad.claim() (#1198-1201) ignores return value by busdDividendTracker.processAccount(address(msg.sender),false) (#1199)
Tokensalepad._transfer(address,address,uint256) (#1213-1321) ignores return value by busdDividendTracker.process(gas) (#1314-1319)
Tokensalepad.addLiquidity(uint256,uint256) (#1340-1354) ignores return value by uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string,address)._name (#231) shadows:
- ERC20._name (#76) (state variable)
DividendPayingToken.constructor(string,string,address)._symbol (#231) shadows:
- ERC20._symbol (#77) (state variable)
DividendPayingToken.dividendOf(address)._owner (#281) shadows:
- Ownable._owner (#18) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#285) shadows:
- Ownable._owner (#18) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#289) shadows:
- Ownable._owner (#18) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#294) shadows:
- Ownable._owner (#18) (state variable)
Rename the local variables that shadow another component.

Additional information: link

Tokensalepad.setWalletBalance(uint256) (#990-992) should emit an event for:
- maxWalletBalance = _maxWalletBalance (#991)
Tokensalepad.setMaxBuyTransaction(uint256) (#994-996) should emit an event for:
- maxBuyTranscationAmount = _maxTxn * (10 ** 18) (#995)
Tokensalepad.setMaxSellTransaction(uint256) (#998-1000) should emit an event for:
- maxSellTransactionAmount = _maxTxn * (10 ** 18) (#999)
Tokensalepad.setSwapTokensAtAmount(uint256) (#1015-1017) should emit an event for:
- swapTokensAtAmount = _swapAmount * (10 ** 18) (#1016)
Tokensalepad.setSellTransactionMultiplier(uint256) (#1019-1021) should emit an event for:
- sellFeeIncreaseFactor = _multiplier (#1020)
Emit an event for critical parameter changes.

Additional information: link

DividendPayingToken.constructor(string,string,address)._token (#231) lacks a zero-check on :
- dividendToken = _token (#232)
BUSDDividendTracker.setDividendTokenAddress(address).newToken (#664) lacks a zero-check on :
- dividendToken = newToken (#665)
Tokensalepad.updateBusdDividendToken(address)._newContract (#1003) lacks a zero-check on :
- busdDividendToken = _newContract (#1004)
Check that the address is not zero.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (#262-278) has external calls inside a loop: success = IERC20(dividendToken).transfer(user,_withdrawableDividend) (#267)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'Tokensalepad._transfer(address,address,uint256).claims (#1314)' in Tokensalepad._transfer(address,address,uint256) (#1213-1321) potentially used before declaration: ProcessedbusdDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1315)
Variable 'Tokensalepad._transfer(address,address,uint256).iterations (#1314)' in Tokensalepad._transfer(address,address,uint256) (#1213-1321) potentially used before declaration: ProcessedbusdDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1315)
Variable 'Tokensalepad._transfer(address,address,uint256).lastProcessedIndex (#1314)' in Tokensalepad._transfer(address,address,uint256) (#1213-1321) potentially used before declaration: ProcessedbusdDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1315)
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 Tokensalepad._transfer(address,address,uint256) (#1213-1321):
External calls:
- swapAndLiquify(liqTokens) (#1261)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1366-1372)
- swapAndSendBusdDividends(busdTokens) (#1267)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1406)
- dividendPayingTracker.distributeDividends(amount) (#1409)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1385-1391)
External calls sending eth:
- swapAndLiquify(liqTokens) (#1261)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
State variables written after the call(s):
- swapAndSendBusdDividends(busdTokens) (#1267)
- _allowances[owner][spender] = amount (#171)
Reentrancy in Tokensalepad.constructor() (#944-979):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#953-954)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#957)
- uniswapV2Router = _uniswapV2Router (#956)
Reentrancy in Tokensalepad.constructor() (#944-979):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#953-954)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#959)
- busdDividendTracker.excludeFromDividends(pair) (#1113)
- excludeFromDividend(address(busdDividendTracker)) (#961)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
- excludeFromDividend(address(this)) (#962)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
- excludeFromDividend(address(_uniswapV2Router)) (#963)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
- excludeFromDividend(deadAddress) (#964)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
State variables written after the call(s):
- excludeFromFees(marketingWallet,true) (#967)
- isExcludedFromFees[account] = excluded (#1092)
- excludeFromFees(address(this),true) (#968)
- isExcludedFromFees[account] = excluded (#1092)
- excludeFromFees(deadAddress,true) (#969)
- isExcludedFromFees[account] = excluded (#1092)
- excludeFromFees(owner(),true) (#970)
- isExcludedFromFees[account] = excluded (#1092)
Reentrancy in Tokensalepad.constructor() (#944-979):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#953-954)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#959)
- busdDividendTracker.excludeFromDividends(pair) (#1113)
- excludeFromDividend(address(busdDividendTracker)) (#961)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
- excludeFromDividend(address(this)) (#962)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
- excludeFromDividend(address(_uniswapV2Router)) (#963)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
- excludeFromDividend(deadAddress) (#964)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
- setAuthOnDividends(owner()) (#972)
- busdDividendTracker.setAuth(account) (#1029)
State variables written after the call(s):
- _mint(owner(),1000000000 * (10 ** 18)) (#978)
- _balances[account] = _balances[account].add(amount) (#153)
- _mint(owner(),1000000000 * (10 ** 18)) (#978)
- _totalSupply = _totalSupply.add(amount) (#152)
Reentrancy in Tokensalepad.prepareForPartherOrExchangeListing(address) (#985-988):
External calls:
- busdDividendTracker.excludeFromDividends(_partnerOrExchangeAddress) (#986)
State variables written after the call(s):
- excludeFromFees(_partnerOrExchangeAddress,true) (#987)
- isExcludedFromFees[account] = excluded (#1092)
Reentrancy in BUSDDividendTracker.processAccount(address,bool) (#835-845):
External calls:
- amount = _withdrawDividendOfUser(account) (#836)
- success = IERC20(dividendToken).transfer(user,_withdrawableDividend) (#267)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#839)
Reentrancy in Tokensalepad.swapAndLiquify(uint256) (#1324-1338):
External calls:
- swapTokensForBNB(half) (#1331)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1366-1372)
- addLiquidity(otherHalf,newBalance) (#1335)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1335)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1335)
- _allowances[owner][spender] = amount (#171)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Tokensalepad._setAutomatedMarketMakerPair(address,bool) (#1108-1118):
External calls:
- busdDividendTracker.excludeFromDividends(pair) (#1113)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1117)
Reentrancy in Tokensalepad._transfer(address,address,uint256) (#1213-1321):
External calls:
- swapAndLiquify(liqTokens) (#1261)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1366-1372)
- swapAndSendBusdDividends(busdTokens) (#1267)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1406)
- dividendPayingTracker.distributeDividends(amount) (#1409)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1385-1391)
External calls sending eth:
- swapAndLiquify(liqTokens) (#1261)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#172)
- swapAndSendBusdDividends(busdTokens) (#1267)
- SendDividends(amount) (#1410)
- swapAndSendBusdDividends(busdTokens) (#1267)
- Transfer(sender,recipient,amount) (#144)
- super._transfer(from,to,amount) (#1305)
- Transfer(sender,recipient,amount) (#144)
- super._transfer(address(this),marketingWallet,tmpMarketingRewardPercent) (#1302)
- Transfer(sender,recipient,amount) (#144)
- super._transfer(from,address(this),fees) (#1301)
Reentrancy in Tokensalepad._transfer(address,address,uint256) (#1213-1321):
External calls:
- swapAndLiquify(liqTokens) (#1261)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1366-1372)
- swapAndSendBusdDividends(busdTokens) (#1267)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1406)
- dividendPayingTracker.distributeDividends(amount) (#1409)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1385-1391)
- busdDividendTracker.setBalance(address(from),balanceOf(from)) (#1307)
- busdDividendTracker.setBalance(address(to),balanceOf(to)) (#1309)
- busdDividendTracker.process(gas) (#1314-1319)
External calls sending eth:
- swapAndLiquify(liqTokens) (#1261)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
Event emitted after the call(s):
- ProcessedbusdDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1315)
Reentrancy in Tokensalepad.constructor() (#944-979):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#953-954)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#959)
- busdDividendTracker.excludeFromDividends(pair) (#1113)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1117)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#959)
Reentrancy in Tokensalepad.constructor() (#944-979):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#953-954)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#959)
- busdDividendTracker.excludeFromDividends(pair) (#1113)
- excludeFromDividend(address(busdDividendTracker)) (#961)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
- excludeFromDividend(address(this)) (#962)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
- excludeFromDividend(address(_uniswapV2Router)) (#963)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
- excludeFromDividend(deadAddress) (#964)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1094)
- excludeFromFees(deadAddress,true) (#969)
- ExcludeFromFees(account,excluded) (#1094)
- excludeFromFees(owner(),true) (#970)
- ExcludeFromFees(account,excluded) (#1094)
- excludeFromFees(address(this),true) (#968)
- ExcludeFromFees(account,excluded) (#1094)
- excludeFromFees(marketingWallet,true) (#967)
Reentrancy in Tokensalepad.constructor() (#944-979):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#953-954)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#959)
- busdDividendTracker.excludeFromDividends(pair) (#1113)
- excludeFromDividend(address(busdDividendTracker)) (#961)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
- excludeFromDividend(address(this)) (#962)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
- excludeFromDividend(address(_uniswapV2Router)) (#963)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
- excludeFromDividend(deadAddress) (#964)
- busdDividendTracker.excludeFromDividends(address(account)) (#1098)
- setAuthOnDividends(owner()) (#972)
- busdDividendTracker.setAuth(account) (#1029)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#154)
- _mint(owner(),1000000000 * (10 ** 18)) (#978)
Reentrancy in Tokensalepad.prepareForPartherOrExchangeListing(address) (#985-988):
External calls:
- busdDividendTracker.excludeFromDividends(_partnerOrExchangeAddress) (#986)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1094)
- excludeFromFees(_partnerOrExchangeAddress,true) (#987)
Reentrancy in BUSDDividendTracker.processAccount(address,bool) (#835-845):
External calls:
- amount = _withdrawDividendOfUser(account) (#836)
- success = IERC20(dividendToken).transfer(user,_withdrawableDividend) (#267)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#840)
Reentrancy in Tokensalepad.processDividendTracker(uint256) (#1191-1196):
External calls:
- (busdIterations,busdClaims,busdLastProcessedIndex) = busdDividendTracker.process(gas) (#1192)
Event emitted after the call(s):
- ProcessedbusdDividendTracker(busdIterations,busdClaims,busdLastProcessedIndex,false,gas,tx.origin) (#1193)
Reentrancy in Tokensalepad.swapAndLiquify(uint256) (#1324-1338):
External calls:
- swapTokensForBNB(half) (#1331)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1366-1372)
- addLiquidity(otherHalf,newBalance) (#1335)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1335)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,marketingWallet,block.timestamp) (#1346-1353)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#172)
- addLiquidity(otherHalf,newBalance) (#1335)
- SwapAndLiquify(half,newBalance,otherHalf) (#1337)
Reentrancy in Tokensalepad.swapAndSendBusdDividends(uint256) (#1394-1398):
External calls:
- swapTokensForDividendToken(tokens,address(this),busdDividendToken) (#1395)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1385-1391)
- transferDividends(busdDividendToken,address(busdDividendTracker),busdDividendTracker,busdDividends) (#1397)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1406)
- dividendPayingTracker.distributeDividends(amount) (#1409)
Event emitted after the call(s):
- SendDividends(amount) (#1410)
- transferDividends(busdDividendToken,address(busdDividendTracker),busdDividendTracker,busdDividends) (#1397)
Reentrancy in Tokensalepad.transferDividends(address,address,DividendPayingToken,uint256) (#1405-1412):
External calls:
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1406)
- dividendPayingTracker.distributeDividends(amount) (#1409)
Event emitted after the call(s):
- SendDividends(amount) (#1410)
Reentrancy in Tokensalepad.updatebusdDividendTracker(address) (#1067-1082):
External calls:
- newbusdDividendTracker.excludeFromDividends(address(newbusdDividendTracker)) (#1074)
- newbusdDividendTracker.excludeFromDividends(address(this)) (#1075)
- newbusdDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1076)
- newbusdDividendTracker.excludeFromDividends(address(deadAddress)) (#1077)
Event emitted after the call(s):
- UpdatebusdDividendTracker(newAddress,address(busdDividendTracker)) (#1079)
Apply the check-effects-interactions pattern.

Additional information: link

BUSDDividendTracker.getAccount(address) (#699-742) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#739-741)
BUSDDividendTracker.canAutoClaim(uint256) (#763-769) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#764)
- block.timestamp.sub(lastClaimTime) >= claimWait (#768)
Avoid relying on block.timestamp.

Additional information: link

Tokensalepad.setBusdDividendEnabled(bool) (#1032-1041) compares to a boolean constant:
-_enabled == false (#1034)
Tokensalepad.setMarketingEnabled(bool) (#1044-1053) compares to a boolean constant:
-_enabled == false (#1046)
Tokensalepad.setSwapAndLiquifyEnabled(bool) (#1055-1064) compares to a boolean constant:
-_enabled == false (#1057)
Remove the equality to the boolean constant.

Additional information: link

Context._msgData() (#11-14) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#299-305) is never used and should be removed
ERC20._setupDecimals(uint8) (#175-177) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#570-573) is never used and should be removed
SafeMath.mod(uint256,uint256) (#560-563) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#575-578) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#506-510) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#527-530) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#532-535) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#517-525) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#512-515) is never used and should be removed
SafeMathInt.div(int256,int256) (#592-598) is never used and should be removed
SafeMathInt.mul(int256,int256) (#582-590) is never used and should be removed
Tokensalepad.transferToWallet(address,uint256) (#1401-1403) is never used and should be removed
Remove unused functions.

Additional information: link

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

Parameter DividendPayingToken.dividendOf(address)._owner (#281) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#285) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#289) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#294) is not in mixedCase
Constant DividendPayingToken.magnitude (#212) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DividendPayingToken._isAuth (#222) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#369) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#370) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#387) is not in mixedCase
Function IUniswapV2Router01.WETH() (#407) is not in mixedCase
Parameter BUSDDividendTracker.updateMinimumTokenBalanceForDividends(uint256)._newMinimumBalance (#668) is not in mixedCase
Parameter BUSDDividendTracker.getAccount(address)._account (#699) is not in mixedCase
Parameter Tokensalepad.prepareForPartherOrExchangeListing(address)._partnerOrExchangeAddress (#985) is not in mixedCase
Parameter Tokensalepad.setWalletBalance(uint256)._maxWalletBalance (#990) is not in mixedCase
Parameter Tokensalepad.setMaxBuyTransaction(uint256)._maxTxn (#994) is not in mixedCase
Parameter Tokensalepad.setMaxSellTransaction(uint256)._maxTxn (#998) is not in mixedCase
Parameter Tokensalepad.updateBusdDividendToken(address)._newContract (#1003) is not in mixedCase
Parameter Tokensalepad.updateMarketingWallet(address)._newWallet (#1008) is not in mixedCase
Parameter Tokensalepad.setSwapTokensAtAmount(uint256)._swapAmount (#1015) is not in mixedCase
Parameter Tokensalepad.setSellTransactionMultiplier(uint256)._multiplier (#1019) is not in mixedCase
Parameter Tokensalepad.setTradingIsEnabled(bool)._enabled (#1024) is not in mixedCase
Parameter Tokensalepad.setBusdDividendEnabled(bool)._enabled (#1032) is not in mixedCase
Parameter Tokensalepad.setMarketingEnabled(bool)._enabled (#1044) is not in mixedCase
Parameter Tokensalepad.setSwapAndLiquifyEnabled(bool)._enabled (#1055) is not in mixedCase
Parameter Tokensalepad.swapTokensForDividendToken(uint256,address,address)._tokenAmount (#1376) is not in mixedCase
Parameter Tokensalepad.swapTokensForDividendToken(uint256,address,address)._recipient (#1376) is not in mixedCase
Parameter Tokensalepad.swapTokensForDividendToken(uint256,address,address)._dividendAddress (#1376) is not in mixedCase
Variable Tokensalepad._busdDividendRewardsFeeBuy (#884) is not in mixedCase
Variable Tokensalepad._marketingFeeBuy (#885) is not in mixedCase
Variable Tokensalepad._LpFeeBuy (#886) is not in mixedCase
Variable Tokensalepad._busdDividendRewardsFeeSell (#888) is not in mixedCase
Variable Tokensalepad._LpFeeSell (#889) is not in mixedCase
Variable Tokensalepad._marketingFeeSell (#890) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#12)" inContext (#6-15)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#409) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#409)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#263) is too similar to BUSDDividendTracker.getAccount(address).withdrawableDividends (#704)
Prevent variables from having similar names.

Additional information: link

BUSDDividendTracker.constructor(address) (#651-654) uses literals with too many digits:
- minimumTokenBalanceForDividends = 30000000000 * (10 ** 18) (#653)
BUSDDividendTracker.getAccountAtIndex(uint256) (#744-761) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#755)
Tokensalepad.constructor() (#944-979) uses literals with too many digits:
- _mint(owner(),1000000000 * (10 ** 18)) (#978)
Tokensalepad.slitherConstructorVariables() (#848-1414) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#855)
Tokensalepad.slitherConstructorVariables() (#848-1414) uses literals with too many digits:
- maxBuyTranscationAmount = 50000000000000 * (10 ** 18) (#868)
Tokensalepad.slitherConstructorVariables() (#848-1414) uses literals with too many digits:
- maxSellTransactionAmount = 40000000000000 * (10 ** 18) (#869)
Tokensalepad.slitherConstructorVariables() (#848-1414) uses literals with too many digits:
- maxWalletBalance = 100000000000000 * (10 ** 18) (#870)
Tokensalepad.slitherConstructorVariables() (#848-1414) uses literals with too many digits:
- gasForProcessing = 600000 (#897)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DividendPayingToken.lastAmount (#215) is never used in BUSDDividendTracker (#631-846)
Remove unused state variables.

Additional information: link

DividendPayingToken.lastAmount (#215) should be constant
Tokensalepad._LpFeeBuy (#886) should be constant
Tokensalepad._LpFeeSell (#889) should be constant
Tokensalepad._busdDividendRewardsFeeBuy (#884) should be constant
Tokensalepad._busdDividendRewardsFeeSell (#888) should be constant
Tokensalepad._marketingFeeBuy (#885) should be constant
Tokensalepad._marketingFeeSell (#890) should be constant
Tokensalepad.deadAddress (#855) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#37-40)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#42-46)
name() should be declared external:
- ERC20.name() (#86-88)
symbol() should be declared external:
- ERC20.symbol() (#90-92)
decimals() should be declared external:
- ERC20.decimals() (#94-96)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#106-109)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#111-113)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#115-118)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#120-124)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#126-129)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#131-134)
distributeDividends(uint256) should be declared external:
- DividendPayingToken.distributeDividends(uint256) (#241-252)
withdrawDividend() should be declared external:
- BUSDDividendTracker.withdrawDividend() (#660-662)
- DividendPayingToken.withdrawDividend() (#254-256)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#281-283)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#289-291)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#453-455)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#457-462)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#464-466)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#470-472)
getAccountAtIndex(uint256) should be declared external:
- BUSDDividendTracker.getAccountAtIndex(uint256) (#744-761)
process(uint256) should be declared external:
- BUSDDividendTracker.process(uint256) (#788-833)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- Tokensalepad.setAutomatedMarketMakerPair(address,bool) (#1102-1106)
getIsExcludedFromFees(address) should be declared external:
- Tokensalepad.getIsExcludedFromFees(address) (#1147-1149)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 11% buy tax and 19% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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


Token is deployed only at one blockchain


Token has only one trading pair


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 contract audit


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


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 scam / price dump / death


Young tokens have high risks of scam / price dump / death

Price for TSPAD

News for TSPAD