Boxer Inu is a token on the Binance Smart Chain that offers features like auto burns, auto-liquidity generating mechanism, and static rewards on every transaction.
The products include an NFT Marketplace, a Decentralized Exchange with features such as Yield Farming, Staking and Lottery, and a crypto games platform that will propose a gamified version of growing. After this comes a fully customized mobile app that will allow user to trade $BOXER effortlessly right in the app.
Reentrancy in BoxerInu._transfer(address,address,uint256) (#1033-1061):
External calls:
- swapAndLiquify(contractTokenBalance) (#1056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1095-1101)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1060)
- _rOwned[sender] = _rOwned[sender].sub(vs.rAmount) (#1153)
- _rOwned[sender] = _rOwned[sender].sub(vs.rAmount) (#1147)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#977)
- _rOwned[sender] = _rOwned[sender].sub(vs.rAmount) (#1161)
- _rOwned[recipient] = _rOwned[recipient].add(vs.rTransferAmount) (#1148)
- _rOwned[sender] = _rOwned[sender].sub(vs.rAmount) (#1168)
- _rOwned[recipient] = _rOwned[recipient].add(vs.rTransferAmount) (#1162)
- _rOwned[recipient] = _rOwned[recipient].add(vs.rTransferAmount) (#1155)
- _rOwned[recipient] = _rOwned[recipient].add(vs.rTransferAmount) (#1170)
- _rOwned[charityWallet] = _rOwned[charityWallet].add(rCharity) (#915)
- _tokenTransfer(from,to,amount) (#1060)
- _rTotal = _rTotal.sub(rFee).sub(rBurn) (#910)
- _tokenTransfer(from,to,amount) (#1060)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1160)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1167)
- _tOwned[recipient] = _tOwned[recipient].add(vs.tTransferAmount) (#1154)
- _tOwned[recipient] = _tOwned[recipient].add(vs.tTransferAmount) (#1169)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#979)
- _tOwned[charityWallet] = _tOwned[charityWallet].add(tCharity) (#917)
- _tokenTransfer(from,to,amount) (#1060)
- _tTotal = _tTotal.sub(tBurn) (#912)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
BoxerInu.addLiquidity(uint256,uint256) (#1104-1117) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
Ensure that all the return values of the function calls are used.
Additional information: link
BoxerInu._approve(address,address,uint256).owner (#1025) shadows:
- Ownable.owner() (#414-416) (function)
Rename the local variables that shadow another component.
Additional information: link
BoxerInu.setMaxTxPercent(uint256) (#1211-1216) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#1213-1215)
Emit an event for critical parameter changes.
Additional information: link
BoxerInu.setBoxerCharityWallet(address).newWallet (#1207) lacks a zero-check on :
- charityWallet = newWallet (#1208)
Check that the address is not zero.
Additional information: link
Reentrancy in BoxerInu.transferFrom(address,address,uint256) (#828-832):
External calls:
- _transfer(sender,recipient,amount) (#829)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1095-1101)
External calls sending eth:
- _transfer(sender,recipient,amount) (#829)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#830)
- _allowances[owner][spender] = amount (#1029)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BoxerInu.transferFrom(address,address,uint256) (#828-832):
External calls:
- _transfer(sender,recipient,amount) (#829)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1095-1101)
External calls sending eth:
- _transfer(sender,recipient,amount) (#829)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1030)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#830)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#461-466) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#463)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) uses assembly
- INLINE ASM (#372-375)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#227-230) is never used and should be removed
Remove unused functions.
Additional information: link
BoxerInu._previousLiquidityFee (#748) 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) (#359-380):
- (success,returndata) = target.call{value: weiValue}(data) (#363)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable BoxerInu._maxTxAmount (#758) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#239)" inContext (#233-242)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable BoxerInu.reflectionFromToken(uint256,bool).rTransferAmount (#871) is too similar to BoxerInu._getTValues(uint256).tTransferAmount (#945)
Prevent variables from having similar names.
Additional information: link
BoxerInu.slitherConstructorVariables() (#683-1224) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#759)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BoxerInu.numTokensSellToAddToLiquidity (#759) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
includeInFee(address) should be declared external:
- BoxerInu.includeInFee(address) (#1178-1180)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but social accounts / website are missing or have few users
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account