Boss Token Logo

BOSS Token

About BOSS

Listings

Token 2 years
CoinMarketCap 2 years
white paper

The Boss Token is a community driven & DeFi cryptocurrency looking to become the boss of all dogcoins! Three functions happen during a trade: Redistribution, LP Acquisition and Deflationary Burning.

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

Reentrancy in BossToken._transfer(address,address,uint256) (#969-1013):
External calls:
- swapAndLiquify(contractTokenBalance) (#1000)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1061-1068)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1047-1053)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1000)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1061-1068)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1012)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#925)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1094)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1103)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1114)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#841)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1095)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1105)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1115)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#843)
- _tokenTransfer(from,to,amount,takeFee) (#1012)
- _rTotal = _rTotal.sub(rFee) (#880)
- _tokenTransfer(from,to,amount,takeFee) (#1012)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#927)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1113)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#840)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1104)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#842)
Apply the check-effects-interactions pattern.

Additional information: link

BossToken.addLiquidity(uint256,uint256) (#1056-1069) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1061-1068)
Ensure that all the return values of the function calls are used.

Additional information: link

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

Additional information: link

BossToken.setMaxTxPercent(uint256) (#865-869) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#866-868)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in BossToken.transferFrom(address,address,uint256) (#766-770):
External calls:
- _transfer(sender,recipient,amount) (#767)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1061-1068)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1047-1053)
External calls sending eth:
- _transfer(sender,recipient,amount) (#767)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1061-1068)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#768)
- _allowances[owner][spender] = amount (#965)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BossToken.transferFrom(address,address,uint256) (#766-770):
External calls:
- _transfer(sender,recipient,amount) (#767)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1061-1068)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1047-1053)
External calls sending eth:
- _transfer(sender,recipient,amount) (#767)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1061-1068)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#966)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#768)
Apply the check-effects-interactions pattern.

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

BossToken._previousLiquidityFee (#688) 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 BossToken._maxTxAmount (#696) 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 BossToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1112) is too similar to BossToken._transferStandard(address,address,uint256).tTransferAmount (#1093)
Prevent variables from having similar names.

Additional information: link

BossToken.slitherConstructorVariables() (#662-1137) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#697)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#395) is never used in BossToken (#662-1137)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (#395) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

_burn(address,uint256) should be declared external:
- BossToken._burn(address,uint256) (#1121-1132)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


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


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


Unable to crawl data from the website


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

Additional information: link


Unable to find token contract audit


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 code repository for the project


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


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for BOSS