We Used the Power of Artificial Intelligence in Blockchain Technologies!
#BSC #Crypto
Reentrancy in ChoiToken._transfer(address,address,uint256) (#1000-1022):
External calls:
- swapAndLiquify(contractTokenBalance) (#1018)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1070-1077)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1018)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1070-1077)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1021)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#950)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1160)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurn) (#1130)
- _rOwned[charityWallet] = _rOwned[charityWallet].add(rCharity) (#1143)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#893)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1151)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1115)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1152)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1162)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1116)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#895)
- _tokenTransfer(from,to,amount) (#1021)
- _rTotal = _rTotal.sub(rFee) (#905)
- _tokenTransfer(from,to,amount) (#1021)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#952)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#892)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1150)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1161)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#894)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
ChoiToken.takeBurn(address,uint256,uint256,uint256) (#1122-1133) performs a multiplication on the result of a division:
-tBurn = tAmount.div(100).mul(_burnFee) (#1126)
ChoiToken.takeCharity(address,uint256,uint256,uint256) (#1135-1146) performs a multiplication on the result of a division:
-tCharity = tAmount.div(100).mul(_charityFee) (#1139)
Consider ordering multiplication before division.
Additional information: link
ChoiToken.addLiquidity(uint256,uint256) (#1065-1078) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1070-1077)
Ensure that all the return values of the function calls are used.
Additional information: link
ChoiToken.allowance(address,address).owner (#809) shadows:
- Ownable.owner() (#437-439) (function)
ChoiToken._approve(address,address,uint256).owner (#992) shadows:
- Ownable.owner() (#437-439) (function)
Rename the local variables that shadow another component.
Additional information: link
ChoiToken.setNumTokensSellToAddToLiquidity(uint256) (#1176-1178) should emit an event for:
- numTokensSellToAddToLiquidity = newAmt * (10 ** 9) (#1177)
ChoiToken.setMaxTxAmount(uint256) (#1189-1192) should emit an event for:
- _maxTxAmount = maxTxAmount * (10 ** 9) (#1191)
ChoiToken.setFees(uint256,uint256,uint256,uint256) (#1194-1199) should emit an event for:
- _taxFee = taxFee (#1195)
- _liquidityFee = liquidityFee (#1196)
- _charityFee = charityFee (#1197)
- _burnFee = burnFee (#1198)
Emit an event for critical parameter changes.
Additional information: link
ChoiToken.setCharityWallet(address).newWallet (#1185) lacks a zero-check on :
- charityWallet = newWallet (#1186)
Check that the address is not zero.
Additional information: link
Reentrancy in ChoiToken._transfer(address,address,uint256) (#1000-1022):
External calls:
- swapAndLiquify(contractTokenBalance) (#1018)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1070-1077)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1018)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1070-1077)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1021)
- _burnFee = _previousBurnFee (#984)
- _burnFee = 0 (#978)
- _tokenTransfer(from,to,amount) (#1021)
- _charityFee = _previouscharityFee (#985)
- _charityFee = 0 (#977)
- _tokenTransfer(from,to,amount) (#1021)
- _liquidityFee = _previousLiquidityFee (#983)
- _liquidityFee = 0 (#976)
- _tokenTransfer(from,to,amount) (#1021)
- _previousBurnFee = _burnFee (#972)
- _tokenTransfer(from,to,amount) (#1021)
- _previousLiquidityFee = _liquidityFee (#971)
- _tokenTransfer(from,to,amount) (#1021)
- _previousTaxFee = _taxFee (#970)
- _tokenTransfer(from,to,amount) (#1021)
- _previouscharityFee = _charityFee (#973)
- _tokenTransfer(from,to,amount) (#1021)
- _tFeeTotal = _tFeeTotal.add(tFee) (#906)
- _tokenTransfer(from,to,amount) (#1021)
- _taxFee = _previousTaxFee (#982)
- _taxFee = 0 (#975)
Reentrancy in ChoiToken.constructor() (#764-781):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#769-770)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#776)
- _isExcludedFromFee[charityWallet] = true (#777)
- _isExcludedFromFee[address(this)] = true (#778)
- uniswapV2Router = _uniswapV2Router (#773)
Reentrancy in ChoiToken.swapAndLiquify(uint256) (#1024-1045):
External calls:
- swapTokensForEth(half) (#1036)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
- addLiquidity(otherHalf,newBalance) (#1042)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1070-1077)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1042)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1070-1077)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1042)
- _allowances[owner][spender] = amount (#996)
Reentrancy in ChoiToken.transferFrom(address,address,uint256) (#818-822):
External calls:
- _transfer(sender,recipient,amount) (#819)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1070-1077)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
External calls sending eth:
- _transfer(sender,recipient,amount) (#819)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1070-1077)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#820)
- _allowances[owner][spender] = amount (#996)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in ChoiToken._transfer(address,address,uint256) (#1000-1022):
External calls:
- swapAndLiquify(contractTokenBalance) (#1018)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1070-1077)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1018)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1070-1077)
Event emitted after the call(s):
- Transfer(sender,charityWallet,tCharity) (#1144)
- _tokenTransfer(from,to,amount) (#1021)
- Transfer(sender,deadAddress,tBurn) (#1131)
- _tokenTransfer(from,to,amount) (#1021)
- Transfer(sender,recipient,tTransferAmount) (#1165)
- _tokenTransfer(from,to,amount) (#1021)
- Transfer(sender,recipient,tTransferAmount) (#1155)
- _tokenTransfer(from,to,amount) (#1021)
- Transfer(sender,recipient,tTransferAmount) (#898)
- _tokenTransfer(from,to,amount) (#1021)
- Transfer(sender,recipient,tTransferAmount) (#1119)
- _tokenTransfer(from,to,amount) (#1021)
Reentrancy in ChoiToken.constructor() (#764-781):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#769-770)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#780)
Reentrancy in ChoiToken.swapAndLiquify(uint256) (#1024-1045):
External calls:
- swapTokensForEth(half) (#1036)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
- addLiquidity(otherHalf,newBalance) (#1042)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1070-1077)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1042)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1070-1077)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#997)
- addLiquidity(otherHalf,newBalance) (#1042)
- SwapAndLiquify(half,newBalance,otherHalf) (#1044)
Reentrancy in ChoiToken.transferFrom(address,address,uint256) (#818-822):
External calls:
- _transfer(sender,recipient,amount) (#819)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1070-1077)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
External calls sending eth:
- _transfer(sender,recipient,amount) (#819)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1070-1077)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#997)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#820)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#484-489) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#486)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#289-298) uses assembly
- INLINE ASM (#296)
Address._functionCallWithValue(address,bytes,uint256,string) (#382-403) uses assembly
- INLINE ASM (#395-398)
Do not use evm assembly.
Additional information: link
ChoiToken.includeInReward(address) (#868-879) has costly operations inside a loop:
- _excluded.pop() (#875)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#382-403) is never used and should be removed
Address.functionCall(address,bytes) (#342-344) is never used and should be removed
Address.functionCall(address,bytes,string) (#352-354) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#367-369) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#377-380) is never used and should be removed
Address.isContract(address) (#289-298) is never used and should be removed
Address.sendValue(address,uint256) (#316-322) is never used and should be removed
Context._msgData() (#35-38) is never used and should be removed
SafeMath.mod(uint256,uint256) (#245-247) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#261-264) is never used and should be removed
Remove unused functions.
Additional information: link
ChoiToken._rTotal (#719) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ChoiToken._previousTaxFee (#727) is set pre-construction with a non-constant function or state variable:
- _taxFee
ChoiToken._previousLiquidityFee (#730) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
ChoiToken._previousBurnFee (#733) is set pre-construction with a non-constant function or state variable:
- _burnFee
ChoiToken._previouscharityFee (#737) is set pre-construction with a non-constant function or state variable:
- _charityFee
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.sendValue(address,uint256) (#316-322):
- (success) = recipient.call{value: amount}() (#320)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#382-403):
- (success,returndata) = target.call{value: weiValue}(data) (#386)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#528) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#529) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#545) is not in mixedCase
Function IUniswapV2Router01.WETH() (#566) is not in mixedCase
Parameter ChoiToken.calculateTaxFee(uint256)._amount (#955) is not in mixedCase
Parameter ChoiToken.calculateLiquidityFee(uint256)._amount (#961) is not in mixedCase
Parameter ChoiToken.setSwapAndLiquifyEnabled(bool)._enabled (#1180) is not in mixedCase
Variable ChoiToken._taxFee (#726) is not in mixedCase
Variable ChoiToken._liquidityFee (#729) is not in mixedCase
Variable ChoiToken._burnFee (#732) is not in mixedCase
Variable ChoiToken._charityFee (#736) is not in mixedCase
Variable ChoiToken._maxTxAmount (#748) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#571) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#572)
Variable ChoiToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to ChoiToken._transferToExcluded(address,address,uint256).tTransferAmount (#1159)
Variable ChoiToken._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to ChoiToken._getValues(uint256).tTransferAmount (#910)
Variable ChoiToken._transferStandard(address,address,uint256).rTransferAmount (#1112) is too similar to ChoiToken._transferStandard(address,address,uint256).tTransferAmount (#1112)
Variable ChoiToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to ChoiToken.takeCharity(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable ChoiToken.takeCharity(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to ChoiToken._transferStandard(address,address,uint256).tTransferAmount (#1112)
Variable ChoiToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to ChoiToken._getTValues(uint256).tTransferAmount (#918)
Variable ChoiToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to ChoiToken._transferStandard(address,address,uint256).tTransferAmount (#1112)
Variable ChoiToken._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to ChoiToken.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable ChoiToken.reflectionFromToken(uint256,bool).rTransferAmount (#863) is too similar to ChoiToken._transferToExcluded(address,address,uint256).tTransferAmount (#1159)
Variable ChoiToken._getValues(uint256).rTransferAmount (#911) is too similar to ChoiToken.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable ChoiToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to ChoiToken.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable ChoiToken.reflectionFromToken(uint256,bool).rTransferAmount (#863) is too similar to ChoiToken._getValues(uint256).tTransferAmount (#910)
Variable ChoiToken.reflectionFromToken(uint256,bool).rTransferAmount (#863) is too similar to ChoiToken.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable ChoiToken._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to ChoiToken.takeCharity(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable ChoiToken._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to ChoiToken._transferStandard(address,address,uint256).tTransferAmount (#1112)
Variable ChoiToken._transferStandard(address,address,uint256).rTransferAmount (#1112) is too similar to ChoiToken._transferToExcluded(address,address,uint256).tTransferAmount (#1159)
Variable ChoiToken._transferToExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to ChoiToken._transferToExcluded(address,address,uint256).tTransferAmount (#1159)
Variable ChoiToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to ChoiToken._transferToExcluded(address,address,uint256).tTransferAmount (#1159)
Variable ChoiToken._transferStandard(address,address,uint256).rTransferAmount (#1112) is too similar to ChoiToken._getValues(uint256).tTransferAmount (#910)
Variable ChoiToken.takeCharity(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to ChoiToken._transferToExcluded(address,address,uint256).tTransferAmount (#1159)
Variable ChoiToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to ChoiToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1149)
Variable ChoiToken.reflectionFromToken(uint256,bool).rTransferAmount (#863) is too similar to ChoiToken._transferStandard(address,address,uint256).tTransferAmount (#1112)
Variable ChoiToken._transferStandard(address,address,uint256).rTransferAmount (#1112) is too similar to ChoiToken.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable ChoiToken._transferToExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to ChoiToken.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable ChoiToken.takeCharity(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to ChoiToken._getValues(uint256).tTransferAmount (#910)
Variable ChoiToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to ChoiToken._getValues(uint256).tTransferAmount (#910)
Variable ChoiToken.takeCharity(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to ChoiToken.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable ChoiToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to ChoiToken.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable ChoiToken._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to ChoiToken._transferToExcluded(address,address,uint256).tTransferAmount (#1159)
Variable ChoiToken.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to ChoiToken.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable ChoiToken.reflectionFromToken(uint256,bool).rTransferAmount (#863) is too similar to ChoiToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable ChoiToken.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to ChoiToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable ChoiToken.reflectionFromToken(uint256,bool).rTransferAmount (#863) is too similar to ChoiToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1149)
Variable ChoiToken._getValues(uint256).rTransferAmount (#911) is too similar to ChoiToken._getValues(uint256).tTransferAmount (#910)
Variable ChoiToken.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to ChoiToken._transferStandard(address,address,uint256).tTransferAmount (#1112)
Variable ChoiToken.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to ChoiToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1149)
Variable ChoiToken._transferStandard(address,address,uint256).rTransferAmount (#1112) is too similar to ChoiToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable ChoiToken._transferStandard(address,address,uint256).rTransferAmount (#1112) is too similar to ChoiToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1149)
Variable ChoiToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to ChoiToken._getValues(uint256).tTransferAmount (#910)
Variable ChoiToken.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to ChoiToken._transferToExcluded(address,address,uint256).tTransferAmount (#1159)
Variable ChoiToken.reflectionFromToken(uint256,bool).rTransferAmount (#863) is too similar to ChoiToken._getTValues(uint256).tTransferAmount (#918)
Variable ChoiToken._getValues(uint256).rTransferAmount (#911) is too similar to ChoiToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable ChoiToken.takeCharity(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to ChoiToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable ChoiToken.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to ChoiToken._getTValues(uint256).tTransferAmount (#918)
Variable ChoiToken._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to ChoiToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable ChoiToken._transferToExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to ChoiToken._getValues(uint256).tTransferAmount (#910)
Variable ChoiToken._transferStandard(address,address,uint256).rTransferAmount (#1112) is too similar to ChoiToken._getTValues(uint256).tTransferAmount (#918)
Variable ChoiToken.reflectionFromToken(uint256,bool).rTransferAmount (#863) is too similar to ChoiToken.takeCharity(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable ChoiToken._getValues(uint256).rTransferAmount (#911) is too similar to ChoiToken._transferStandard(address,address,uint256).tTransferAmount (#1112)
Variable ChoiToken._getValues(uint256).rTransferAmount (#911) is too similar to ChoiToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1149)
Variable ChoiToken.takeCharity(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to ChoiToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1149)
Variable ChoiToken._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to ChoiToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1149)
Variable ChoiToken.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to ChoiToken.takeCharity(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable ChoiToken._getValues(uint256).rTransferAmount (#911) is too similar to ChoiToken._transferToExcluded(address,address,uint256).tTransferAmount (#1159)
Variable ChoiToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to ChoiToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable ChoiToken._transferStandard(address,address,uint256).rTransferAmount (#1112) is too similar to ChoiToken.takeCharity(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable ChoiToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to ChoiToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1149)
Variable ChoiToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to ChoiToken._transferStandard(address,address,uint256).tTransferAmount (#1112)
Variable ChoiToken._getValues(uint256).rTransferAmount (#911) is too similar to ChoiToken._getTValues(uint256).tTransferAmount (#918)
Variable ChoiToken.takeCharity(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to ChoiToken._getTValues(uint256).tTransferAmount (#918)
Variable ChoiToken._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to ChoiToken._getTValues(uint256).tTransferAmount (#918)
Variable ChoiToken._transferToExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to ChoiToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable ChoiToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to ChoiToken._getTValues(uint256).tTransferAmount (#918)
Variable ChoiToken._transferToExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to ChoiToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1149)
Variable ChoiToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to ChoiToken._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable ChoiToken.takeCharity(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to ChoiToken.takeCharity(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable ChoiToken._getValues(uint256).rTransferAmount (#911) is too similar to ChoiToken.takeCharity(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable ChoiToken._transferToExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to ChoiToken._transferStandard(address,address,uint256).tTransferAmount (#1112)
Variable ChoiToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to ChoiToken.takeCharity(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable ChoiToken.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to ChoiToken._getValues(uint256).tTransferAmount (#910)
Variable ChoiToken._transferToExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to ChoiToken._getTValues(uint256).tTransferAmount (#918)
Variable ChoiToken._transferToExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to ChoiToken.takeCharity(address,uint256,uint256,uint256).tTransferAmount (#1135)
Prevent variables from having similar names.
Additional information: link
ChoiToken.slitherConstructorVariables() (#704-1202) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 9 (#718)
ChoiToken.slitherConstructorVariables() (#704-1202) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#734)
ChoiToken.slitherConstructorVariables() (#704-1202) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 1000000000 * 10 ** 9 (#747)
ChoiToken.slitherConstructorVariables() (#704-1202) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 9 (#748)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
ChoiToken._decimals (#724) should be constant
ChoiToken._name (#722) should be constant
ChoiToken._symbol (#723) should be constant
ChoiToken._tTotal (#718) should be constant
ChoiToken.deadAddress (#734) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#456-459)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#465-469)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#471-473)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#476-481)
unlock() should be declared external:
- Ownable.unlock() (#484-489)
name() should be declared external:
- ChoiToken.name() (#783-785)
symbol() should be declared external:
- ChoiToken.symbol() (#787-789)
decimals() should be declared external:
- ChoiToken.decimals() (#791-793)
totalSupply() should be declared external:
- ChoiToken.totalSupply() (#795-797)
transfer(address,uint256) should be declared external:
- ChoiToken.transfer(address,uint256) (#804-807)
allowance(address,address) should be declared external:
- ChoiToken.allowance(address,address) (#809-811)
approve(address,uint256) should be declared external:
- ChoiToken.approve(address,uint256) (#813-816)
transferFrom(address,address,uint256) should be declared external:
- ChoiToken.transferFrom(address,address,uint256) (#818-822)
increaseAllowance(address,uint256) should be declared external:
- ChoiToken.increaseAllowance(address,uint256) (#824-827)
decreaseAllowance(address,uint256) should be declared external:
- ChoiToken.decreaseAllowance(address,uint256) (#829-832)
isExcludedFromReward(address) should be declared external:
- ChoiToken.isExcludedFromReward(address) (#834-836)
totalFees() should be declared external:
- ChoiToken.totalFees() (#838-840)
deliver(uint256) should be declared external:
- ChoiToken.deliver(uint256) (#842-849)
reflectionFromToken(uint256,bool) should be declared external:
- ChoiToken.reflectionFromToken(uint256,bool) (#857-866)
excludeFromReward(address) should be declared external:
- ChoiToken.excludeFromReward(address) (#881-888)
isExcludedFromFee(address) should be declared external:
- ChoiToken.isExcludedFromFee(address) (#988-990)
includeInFee(address) should be declared external:
- ChoiToken.includeInFee(address) (#1168-1170)
excludeFromFee(address) should be declared external:
- ChoiToken.excludeFromFee(address) (#1172-1174)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ChoiToken.setSwapAndLiquifyEnabled(bool) (#1180-1183)
Use the external attribute for functions never called from the contract.
Additional information: link
Redundant expression "this (#36)" inContext (#31-39)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
Additional information: link
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Average 30d number of PancakeSwap swaps is low.
Average 30d PancakeSwap liquidity 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
Token is marked as scam (rug pull, honeypot, phishing, etc.)
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
Twitter account link seems to be invalid
Telegram account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account