DeFi Tools to improve your trading experience on EVM chains!
DeFi_Robot.addLiquidity(uint256,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#735-748) sends eth to arbitrary user
Dangerous calls:
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in DeFi_Robot._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#649-685):
External calls:
- swapAndLiquify(contractTokenBalance) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#669)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#724-730)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#669)
- recipient.transfer(amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#612)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#672)
- _balances[recipient] = _balances[recipient].add(finalAmount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#680)
- finalAmount = takeFee(sender,recipient,amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#674-675)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#759)
Apply the check-effects-interactions pattern.
Additional information: link
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)
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
DeFi_Robot.addLiquidity(uint256,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#735-748) ignores return value by pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
Ensure that all the return values of the function calls are used.
Additional information: link
Address.isContract(address) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#85-94) uses assembly
- INLINE ASM (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#92)
Address._functionCallWithValue(address,bytes,uint256,string) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#121-138) uses assembly
- INLINE ASM (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#130-133)
Do not use evm assembly.
Additional information: link
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#161-165)
name() should be declared external:
- DeFi_Robot.name() (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#487-489)
symbol() should be declared external:
- DeFi_Robot.symbol() (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#491-493)
decimals() should be declared external:
- DeFi_Robot.decimals() (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#495-497)
totalSupply() should be declared external:
- DeFi_Robot.totalSupply() (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#499-501)
allowance(address,address) should be declared external:
- DeFi_Robot.allowance(address,address) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#507-509)
increaseAllowance(address,uint256) should be declared external:
- DeFi_Robot.increaseAllowance(address,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#511-514)
decreaseAllowance(address,uint256) should be declared external:
- DeFi_Robot.decreaseAllowance(address,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#516-519)
minimumTokensBeforeSwapAmount() should be declared external:
- DeFi_Robot.minimumTokensBeforeSwapAmount() (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#521-523)
approve(address,uint256) should be declared external:
- DeFi_Robot.approve(address,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#525-528)
setMarketPairStatus(address,bool) should be declared external:
- DeFi_Robot.setMarketPairStatus(address,bool) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#538-541)
setIsExcludedFromFee(address,bool) should be declared external:
- DeFi_Robot.setIsExcludedFromFee(address,bool) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#563-566)
setSwapAndLiquifyEnabled(bool) should be declared external:
- DeFi_Robot.setSwapAndLiquifyEnabled(bool) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#602-605)
getCirculatingSupply() should be declared external:
- DeFi_Robot.getCirculatingSupply() (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#607-609)
changeRouterVersion(address) should be declared external:
- DeFi_Robot.changeRouterVersion(address) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#615-633)
transfer(address,uint256) should be declared external:
- DeFi_Robot.transfer(address,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#638-641)
transferFrom(address,address,uint256) should be declared external:
- DeFi_Robot.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#643-647)
Use the external attribute for functions never called from the contract.
Additional information: link
Reentrancy in DeFi_Robot.changeRouterVersion(address) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#615-633):
External calls:
- newPairAddress = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#623-624)
State variables written after the call(s):
- isMarketPair[address(pancakeswapPair)] = true (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#631)
- isWalletLimitExempt[address(pancakeswapPair)] = true (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#630)
- pancakeswapPair = newPairAddress (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#627)
- pancakeswapV2Router = _pancakeswapV2Router (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#628)
Reentrancy in DeFi_Robot.constructor() (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#455-485):
External calls:
- pancakeswapPair = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#459-460)
State variables written after the call(s):
- _allowances[address(this)][address(pancakeswapV2Router)] = _totalSupply (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#463)
- _balances[_msgSender()] = _totalSupply (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#482)
- _totalTaxOnBuy = _liquidityFeeOnBuy.add(_teamFeeOnBuy) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#480)
- _totalTaxOnSell = _liquidityFeeOnSell.add(_teamFeeOnSell) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#481)
- isExcludedFromFee[owner()] = true (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#465)
- isExcludedFromFee[address(this)] = true (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#466)
- isExcludedFromFee[address(teamWalletAddress)] = true (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#467)
- isMarketPair[address(pancakeswapPair)] = true (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#478)
- isTxLimitExempt[owner()] = true (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#469)
- isTxLimitExempt[address(this)] = true (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#470)
- isTxLimitExempt[address(teamWalletAddress)] = true (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#471)
- isWalletLimitExempt[owner()] = true (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#473)
- isWalletLimitExempt[address(pancakeswapPair)] = true (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#474)
- isWalletLimitExempt[address(this)] = true (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#475)
- isWalletLimitExempt[address(teamWalletAddress)] = true (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#476)
- pancakeswapV2Router = _pancakeswapV2Router (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#462)
Reentrancy in DeFi_Robot.swapAndLiquify(uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#694-713):
External calls:
- swapTokensForBNB(tokensForSwap) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#699)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#724-730)
- addLiquidity(tokensForLP,bnbForLiquidity) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#712)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
External calls sending eth:
- transferBNBToAddress(teamWalletAddress,bnbForteam) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#709)
- recipient.transfer(amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#612)
- addLiquidity(tokensForLP,bnbForLiquidity) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#712)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
State variables written after the call(s):
- addLiquidity(tokensForLP,bnbForLiquidity) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#712)
- _allowances[owner_][spender] = amount (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#534)
Reentrancy in DeFi_Robot.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#643-647):
External calls:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#644)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#724-730)
External calls sending eth:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#644)
- recipient.transfer(amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#612)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#645)
- _allowances[owner_][spender] = amount (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#534)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DeFi_Robot._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#649-685):
External calls:
- swapAndLiquify(contractTokenBalance) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#669)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#724-730)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#669)
- recipient.transfer(amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#612)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#760)
- finalAmount = takeFee(sender,recipient,amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#674-675)
- Transfer(sender,recipient,finalAmount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#682)
Reentrancy in DeFi_Robot.changeRouterVersion(address) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#615-633):
External calls:
- newPairAddress = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#623-624)
Event emitted after the call(s):
- RouterVersionChanged(newRouterAddress) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#632)
Reentrancy in DeFi_Robot.constructor() (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#455-485):
External calls:
- pancakeswapPair = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#459-460)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#484)
Reentrancy in DeFi_Robot.swapAndLiquify(uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#694-713):
External calls:
- swapTokensForBNB(tokensForSwap) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#699)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#724-730)
- addLiquidity(tokensForLP,bnbForLiquidity) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#712)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
External calls sending eth:
- transferBNBToAddress(teamWalletAddress,bnbForteam) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#709)
- recipient.transfer(amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#612)
- addLiquidity(tokensForLP,bnbForLiquidity) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#712)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
Event emitted after the call(s):
- Approval(owner_,spender,amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#535)
- addLiquidity(tokensForLP,bnbForLiquidity) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#712)
Reentrancy in DeFi_Robot.swapTokensForBNB(uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#715-733):
External calls:
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#724-730)
Event emitted after the call(s):
- SwapTokensForBNB(tokenAmount,path) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#732)
Reentrancy in DeFi_Robot.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#643-647):
External calls:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#644)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#724-730)
External calls sending eth:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#644)
- recipient.transfer(amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#612)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
Event emitted after the call(s):
- Approval(owner_,spender,amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#535)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#645)
Apply the check-effects-interactions pattern.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#121-138) is never used and should be removed
Address.functionCall(address,bytes) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#104-106) is never used and should be removed
Address.functionCall(address,bytes,string) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#108-110) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#112-114) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#116-119) is never used and should be removed
Address.isContract(address) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#85-94) is never used and should be removed
Address.sendValue(address,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#96-102) is never used and should be removed
Context._msgData() (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#15-18) is never used and should be removed
SafeMath.mod(uint256,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#73-75) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#77-80) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version0.8.14 (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#7) 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) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#96-102):
- (success) = recipient.call{value: amount}() (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#100)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#121-138):
- (success,returndata) = target.call{value: weiValue}(data) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#124)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IPancakeswapV2Pair.DOMAIN_SEPARATOR() (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#199) is not in mixedCase
Function IPancakeswapV2Pair.PERMIT_TYPEHASH() (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#200) is not in mixedCase
Function IPancakeswapV2Pair.MINIMUM_LIQUIDITY() (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#216) is not in mixedCase
Function IPancakeswapV2Router01.WETH() (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#235) is not in mixedCase
Contract DeFi_Robot (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#368-766) is not in CapWords
Parameter DeFi_Robot.setSwapAndLiquifyEnabled(bool)._enabled (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#602) is not in mixedCase
Constant DeFi_Robot._name (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#373) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DeFi_Robot._symbol (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#374) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DeFi_Robot._decimals (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#375) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DeFi_Robot.deadAddress (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#378) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DeFi_Robot._teamFeeOnBuy (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#388) is not in mixedCase
Variable DeFi_Robot._liquidityFeeOnBuy (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#389) is not in mixedCase
Variable DeFi_Robot._totalTaxOnBuy (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#390) is not in mixedCase
Variable DeFi_Robot._teamFeeOnSell (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#392) is not in mixedCase
Variable DeFi_Robot._liquidityFeeOnSell (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#393) is not in mixedCase
Variable DeFi_Robot._totalTaxOnSell (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#394) is not in mixedCase
Constant DeFi_Robot._totalSupply (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#396) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DeFi_Robot._maxTxAmount (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#397) is not in mixedCase
Variable DeFi_Robot._walletMax (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#398) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#16)" inContext (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#9-19)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in DeFi_Robot._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#649-685):
External calls:
- swapAndLiquify(contractTokenBalance) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#669)
- recipient.transfer(amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#612)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#669)
- recipient.transfer(amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#612)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#672)
- _balances[recipient] = _balances[recipient].add(finalAmount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#680)
- finalAmount = takeFee(sender,recipient,amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#674-675)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#759)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#760)
- finalAmount = takeFee(sender,recipient,amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#674-675)
- Transfer(sender,recipient,finalAmount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#682)
Reentrancy in DeFi_Robot.swapAndLiquify(uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#694-713):
External calls:
- transferBNBToAddress(teamWalletAddress,bnbForteam) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#709)
- recipient.transfer(amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#612)
External calls sending eth:
- transferBNBToAddress(teamWalletAddress,bnbForteam) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#709)
- recipient.transfer(amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#612)
- addLiquidity(tokensForLP,bnbForLiquidity) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#712)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
State variables written after the call(s):
- addLiquidity(tokensForLP,bnbForLiquidity) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#712)
- _allowances[owner_][spender] = amount (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#534)
Event emitted after the call(s):
- Approval(owner_,spender,amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#535)
- addLiquidity(tokensForLP,bnbForLiquidity) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#712)
Reentrancy in DeFi_Robot.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#643-647):
External calls:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#644)
- recipient.transfer(amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#612)
External calls sending eth:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#644)
- recipient.transfer(amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#612)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#740-747)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#645)
- _allowances[owner_][spender] = amount (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#534)
Event emitted after the call(s):
- Approval(owner_,spender,amount) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#535)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#645)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IPancakeswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#240) is too similar to IPancakeswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#241)
Prevent variables from having similar names.
Additional information: link
DeFi_Robot.slitherConstructorConstantVariables() (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#368-766) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (crytic-export/etherscan-contracts/0x1a0ffdb73dd942f999fcdc4ecddcadb4c7e0b592.bscscan.com-DeFi_Robot.sol#378)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Contract has 14% buy tax and 14% 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 low.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Twitter account has less than 100 followers
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts