Josan Token Logo

JOSAN Token

About JOSAN

Listings

Not Found
Token 3 years
white paper

JOSAN Coin is the crypto token of famous TikTok influencer known as the 'Maserati Guy'. Soon after JOSAN Coin is launched, JosanSwap DEX will go live. JosanSwap will be the home of other influencer crypto tokens that will be created using JOSAN's very own Launchpad.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links

Reentrancy in Josan._transfer(address,address,uint256) (#991-1035):
External calls:
- swapAndLiquify(contractTokenBalance) (#1022)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1083-1090)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1069-1075)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1022)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1083-1090)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1034)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#947)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1125)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1116)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#863)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1136)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1117)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1137)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1127)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#865)
- _tokenTransfer(from,to,amount,takeFee) (#1034)
- _rTotal = _rTotal.sub(rFee) (#902)
- _tokenTransfer(from,to,amount,takeFee) (#1034)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#949)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1135)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#862)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1126)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#864)
Apply the check-effects-interactions pattern.

Additional information: link


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

Josan.addLiquidity(uint256,uint256) (#1078-1091) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1083-1090)
Ensure that all the return values of the function calls are used.

Additional information: link

Josan._approve(address,address,uint256).owner (#983) shadows:
- Ownable.owner() (#412-414) (function)
Rename the local variables that shadow another component.

Additional information: link

Josan.setMaxTxPercent(uint256) (#887-891) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#888-890)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in Josan.transferFrom(address,address,uint256) (#788-792):
External calls:
- _transfer(sender,recipient,amount) (#789)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1083-1090)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1069-1075)
External calls sending eth:
- _transfer(sender,recipient,amount) (#789)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1083-1090)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#790)
- _allowances[owner][spender] = amount (#987)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Josan.transferFrom(address,address,uint256) (#788-792):
External calls:
- _transfer(sender,recipient,amount) (#789)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1083-1090)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1069-1075)
External calls sending eth:
- _transfer(sender,recipient,amount) (#789)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1083-1090)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#988)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#790)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#459-464) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#461)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) uses assembly
- INLINE ASM (#370-373)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#225-228) is never used and should be removed
Remove unused functions.

Additional information: link

Josan._previousLiquidityFee (#707) is set pre-construction with a non-constant function or state variable:
- _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

Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#357-378):
- (success,returndata) = target.call{value: weiValue}(data) (#361)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Josan._maxTxAmount (#718) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#237)" inContext (#231-240)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable Josan._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to Josan._transferFromExcluded(address,address,uint256).tTransferAmount (#1134)
Prevent variables from having similar names.

Additional information: link

Josan.slitherConstructorVariables() (#681-1145) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 5000000000 (#719)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Josan.numTokensSellToAddToLiquidity (#719) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- Josan.isExcludedFromFee(address) (#979-981)
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.


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


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 JOSAN