soul Token Logo

soul Token

About soul

Listings

Token 22 months

We are bringing together the most selective group of young leaders from the world of music, acting, fashion, beauty, sports, gaming, vlogging, wellness and more. We embrace individuals who cultivate themselves endlessly. Who work hard to achieve an uncompromising quality of life and who like to challenge the status quo.allows them to connect and engage with the community. Members can choose between ‘Meet’ or ‘Collab’ modes to find new connections.

Social

Laser Scorebeta Last Audit: 8 June 2022

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

Anti-Scam

Links

soul.addLiquidity(uint256,uint256) (#518-531) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#523-530)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in soul._transfer(address,address,uint256) (#447-473):
External calls:
- swapForFees() (#468)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#523-530)
- (success) = recipient.call{value: amount}() (#333)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#514)
- address(marketingWallet).sendValue(marketingAmt) (#499)
External calls sending eth:
- swapForFees() (#468)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#523-530)
- (success) = recipient.call{value: amount}() (#333)
State variables written after the call(s):
- super._transfer(sender,recipient,amount - fee - burnAmt) (#470)
- _balances[sender] = senderBalance - amount (#242)
- _balances[recipient] += amount (#243)
- super._transfer(sender,address(this),fee) (#471)
- _balances[sender] = senderBalance - amount (#242)
- _balances[recipient] += amount (#243)
Apply the check-effects-interactions pattern.

Additional information: link

soul.rescueBEP20(address,uint256) (#563-565) ignores return value by IERC20(tokenAddress).transfer(owner(),amount) (#564)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.


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.


Contract ownership is not renounced (belongs to a wallet)

soul.swapForFees() (#475-503) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - sellTaxes.liquidity) (#489)
-bnbToAddLiquidityWith = unitBalance * sellTaxes.liquidity (#490)
soul.swapForFees() (#475-503) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - sellTaxes.liquidity) (#489)
-marketingAmt = unitBalance * 2 * sellTaxes.marketing (#497)
Consider ordering multiplication before division.

Additional information: link

soul._transfer(address,address,uint256).burnAmt (#451) 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

soul.addLiquidity(uint256,uint256) (#518-531) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#523-530)
Ensure that all the return values of the function calls are used.

Additional information: link

soul.setSwapThreshold(uint256) (#537-539) should emit an event for:
- swapThreshold = new_amount (#538)
Emit an event for critical parameter changes.

Additional information: link

soul.updateMarketingWallet(address).newWallet (#549) lacks a zero-check on :
- marketingWallet = newWallet (#550)
soul.updateRouterAndPair(IRouter,address)._pair (#554) lacks a zero-check on :
- pair = _pair (#556)
Check that the address is not zero.

Additional information: link

Modifier soul.inSwap() (#419-425) does not always execute _; or revert
All the paths in a modifier must execute _ or revert.

Additional information: link

Reentrancy in soul.constructor() (#427-441):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#434-435)
State variables written after the call(s):
- excludedFromFees[address(this)] = true (#439)
- excludedFromFees[marketingWallet] = true (#440)
- pair = _pair (#438)
- router = _router (#437)
Reentrancy in soul.swapForFees() (#475-503):
External calls:
- swapTokensForBnb(toSwap) (#486)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#514)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#494)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#523-530)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#494)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#523-530)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#494)
- _allowances[owner][spender] = amount (#308)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in soul._transfer(address,address,uint256) (#447-473):
External calls:
- swapForFees() (#468)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#523-530)
- (success) = recipient.call{value: amount}() (#333)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#514)
- address(marketingWallet).sendValue(marketingAmt) (#499)
External calls sending eth:
- swapForFees() (#468)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#523-530)
- (success) = recipient.call{value: amount}() (#333)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#245)
- super._transfer(sender,recipient,amount - fee - burnAmt) (#470)
- Transfer(sender,recipient,amount) (#245)
- super._transfer(sender,address(this),fee) (#471)
Reentrancy in soul.swapForFees() (#475-503):
External calls:
- swapTokensForBnb(toSwap) (#486)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#514)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#494)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#523-530)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#494)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#523-530)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#309)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#494)
Apply the check-effects-interactions pattern.

Additional information: link

Context._msgData() (#10-13) is never used and should be removed
ERC20._burn(address,uint256) (#278-289) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version0.8.14 (#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.14 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.sendValue(address,uint256) (#330-335):
- (success) = recipient.call{value: amount}() (#333)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable ERC20._balances (#57) is not in mixedCase
Variable ERC20._allowances (#59) is not in mixedCase
Function IRouter.WETH() (#378) is not in mixedCase
Contract soul (#396-575) is not in CapWords
Parameter soul.setSwapThreshold(uint256).new_amount (#537) is not in mixedCase
Parameter soul.setTaxes(uint256,uint256)._marketing (#541) is not in mixedCase
Parameter soul.setTaxes(uint256,uint256)._liquidity (#541) is not in mixedCase
Parameter soul.setSellTaxes(uint256,uint256)._marketing (#545) is not in mixedCase
Parameter soul.setSellTaxes(uint256,uint256)._liquidity (#545) is not in mixedCase
Parameter soul.updateRouterAndPair(IRouter,address)._router (#554) is not in mixedCase
Parameter soul.updateRouterAndPair(IRouter,address)._pair (#554) is not in mixedCase
Parameter soul.updateExcludedFromFees(address,bool)._address (#559) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

soul.constructor() (#427-441) uses literals with too many digits:
- _mint(msg.sender,100000000000000 * 10 ** decimals()) (#428)
soul.slitherConstructorVariables() (#396-575) uses literals with too many digits:
- swapThreshold = 20000000000 * 10e9 (#405)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

name() should be declared external:
- ERC20.name() (#83-85)
symbol() should be declared external:
- ERC20.symbol() (#91-93)
totalSupply() should be declared external:
- ERC20.totalSupply() (#115-117)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#134-137)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#142-144)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#153-156)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#171-179)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#193-196)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#212-218)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#356-358)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#360-363)
Use the external attribute for functions never called from the contract.

Additional information: link


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.


Not a direct threat, but may indicate unreliable intentions of developer. Both name and ticker of current token are widespread, i.e. common across multiple tokens. This is slightly suspicious

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


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


Unable to find Telegram account


Last post in Twitter was more than 30 days ago


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/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 Telegram link on the website


Unable to find Twitter 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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for soul

News for soul