Reentrancy in AITechProtocol._transfer(address,address,uint256) (#681-735):
External calls:
- swapTokens(contractTokenBalance) (#715)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#813-819)
- buyBackTokens(balance.div(100)) (#723)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#831-836)
External calls sending eth:
- swapTokens(contractTokenBalance) (#715)
- recipient.transfer(amount) (#1009)
- buyBackTokens(balance.div(100)) (#723)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#831-836)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#734)
- _rOwned[marketingWallet] = _rOwned[marketingWallet].add(rLiquidity) (#956)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#872)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#881)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#892)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#902)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#873)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#883)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#893)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#904)
- _tokenTransfer(from,to,amount) (#734)
- _rTotal = _rTotal.sub(rFee) (#911)
- _tokenTransfer(from,to,amount) (#734)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#958)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#901)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#891)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#882)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#903)
- buyBackTokens(balance.div(100)) (#723)
- inSwapAndLiquify = true (#512)
- inSwapAndLiquify = false (#514)
Apply the check-effects-interactions pattern.
Additional information: link
AITechProtocol._isExcluded (#446) is never initialized. It is used in:
- AITechProtocol.balanceOf(address) (#555-558)
- AITechProtocol.isExcludedFromReward(address) (#590-592)
- AITechProtocol.deliver(uint256) (#646-653)
- AITechProtocol._tokenTransfer(address,address,uint256) (#856-868)
- AITechProtocol._takeLiquidity(uint256) (#953-959)
AITechProtocol._excluded (#447) is never initialized. It is used in:
- AITechProtocol._getCurrentSupply() (#941-951)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
AITechProtocol.swapTokens(uint256) (#737-746) performs a multiplication on the result of a division:
-transferToAddressETH(marketingWallet,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#744)
Consider ordering multiplication before division.
Additional information: link
AITechProtocol.addLiquidity(uint256,uint256) (#841-854) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#846-853)
Ensure that all the return values of the function calls are used.
Additional information: link
AITechProtocol.allowance(address,address).owner (#565) shadows:
- Ownable.owner() (#182-184) (function)
AITechProtocol._approve(address,address,uint256).owner (#673) shadows:
- Ownable.owner() (#182-184) (function)
Rename the local variables that shadow another component.
Additional information: link
AITechProtocol.setCooldownStatus(bool,uint256) (#630-633) should emit an event for:
- cooldownTimerInterval = _interval (#632)
AITechProtocol.setMarketingDivisor(uint256) (#986-988) should emit an event for:
- marketingDivisor = divisor (#987)
AITechProtocol.setNumTokensSellToAddToLiquidity(uint256) (#990-992) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#991)
AITechProtocol.setBuybackUpperLimit(uint256) (#994-996) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 9 (#995)
Emit an event for critical parameter changes.
Additional information: link
AITechProtocol.constructor(address)._marketingWallet (#517) lacks a zero-check on :
- marketingWallet = _marketingWallet (#528)
Check that the address is not zero.
Additional information: link
AITechProtocol.swapTokensForEth(uint256) (#804-822) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (#808)
AITechProtocol.swapTokensForEth(uint256) (#804-822) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#813-819)
AITechProtocol.transferToAddressETH(address,uint256) (#1008-1010) has external calls inside a loop: recipient.transfer(amount) (#1009)
AITechProtocol.swapETHForTokens(uint256) (#824-839) has external calls inside a loop: path[0] = uniswapV2Router.WETH() (#827)
AITechProtocol.swapETHForTokens(uint256) (#824-839) has external calls inside a loop: uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#831-836)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in AITechProtocol._transfer(address,address,uint256) (#681-735):
External calls:
- swapTokens(contractTokenBalance) (#715)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#813-819)
- buyBackTokens(balance.div(100)) (#723)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#831-836)
External calls sending eth:
- swapTokens(contractTokenBalance) (#715)
- recipient.transfer(amount) (#1009)
- buyBackTokens(balance.div(100)) (#723)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#831-836)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#734)
- _tFeeTotal = _tFeeTotal.add(tFee) (#912)
Reentrancy in AITechProtocol.constructor(address) (#517-537):
External calls:
- pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#521-522)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#526)
- _isExcludedFromFee[address(this)] = true (#527)
- isTimelockExempt[owner()] = true (#530)
- isTimelockExempt[address(this)] = true (#531)
- isTimelockExempt[DEAD] = true (#532)
- isTimelockExempt[pair] = true (#533)
- isTimelockExempt[address(uniswapV2Router)] = true (#534)
- marketingWallet = _marketingWallet (#528)
- uniswapV2Router = _uniswapV2Router (#524)
Reentrancy in AITechProtocol.transferFrom(address,address,uint256) (#574-578):
External calls:
- _transfer(sender,recipient,amount) (#575)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#831-836)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#813-819)
External calls sending eth:
- _transfer(sender,recipient,amount) (#575)
- recipient.transfer(amount) (#1009)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#831-836)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#576)
- _allowances[owner][spender] = amount (#677)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in AITechProtocol._transfer(address,address,uint256) (#681-735):
External calls:
- swapTokens(contractTokenBalance) (#715)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#813-819)
- buyBackTokens(balance.div(100)) (#723)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#831-836)
External calls sending eth:
- swapTokens(contractTokenBalance) (#715)
- recipient.transfer(amount) (#1009)
- buyBackTokens(balance.div(100)) (#723)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#831-836)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#838)
- buyBackTokens(balance.div(100)) (#723)
- Transfer(sender,recipient,tTransferAmount) (#876)
- _tokenTransfer(from,to,amount) (#734)
- Transfer(sender,recipient,tTransferAmount) (#886)
- _tokenTransfer(from,to,amount) (#734)
- Transfer(sender,recipient,tTransferAmount) (#896)
- _tokenTransfer(from,to,amount) (#734)
- Transfer(sender,recipient,tTransferAmount) (#907)
- _tokenTransfer(from,to,amount) (#734)
Reentrancy in AITechProtocol.constructor(address) (#517-537):
External calls:
- pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#521-522)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#536)
Reentrancy in AITechProtocol.swapETHForTokens(uint256) (#824-839):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#831-836)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#838)
Reentrancy in AITechProtocol.swapTokensForEth(uint256) (#804-822):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#813-819)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#821)
Reentrancy in AITechProtocol.transferFrom(address,address,uint256) (#574-578):
External calls:
- _transfer(sender,recipient,amount) (#575)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#831-836)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#813-819)
External calls sending eth:
- _transfer(sender,recipient,amount) (#575)
- recipient.transfer(amount) (#1009)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#831-836)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#678)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#576)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#217-222) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#219)
AITechProtocol._transfer(address,address,uint256) (#681-735) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[from] < block.timestamp,Please wait for cooldown between sells) (#702)
AITechProtocol.doSnipingSwapback(address) (#771-777) uses timestamp for comparisons
Dangerous comparisons:
- launchedTime < block.timestamp (#773)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#112-121) uses assembly
- INLINE ASM (#119)
Address._functionCallWithValue(address,bytes,uint256,string) (#149-166) uses assembly
- INLINE ASM (#158-161)
Do not use evm assembly.
Additional information: link
AITechProtocol.lockTheSwap() (#511-515) has costly operations inside a loop:
- inSwapAndLiquify = true (#512)
AITechProtocol.lockTheSwap() (#511-515) has costly operations inside a loop:
- inSwapAndLiquify = false (#514)
AITechProtocol._reflectFee(uint256,uint256) (#910-913) has costly operations inside a loop:
- _rTotal = _rTotal.sub(rFee) (#911)
AITechProtocol._reflectFee(uint256,uint256) (#910-913) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal.add(tFee) (#912)
Use a local variable to hold the loop computation result.
Additional information: link
AITechProtocol.addLiquidity(uint256,uint256) (#841-854) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#149-166) is never used and should be removed
Address.functionCall(address,bytes) (#132-134) is never used and should be removed
Address.functionCall(address,bytes,string) (#136-138) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#140-142) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#144-147) is never used and should be removed
Address.isContract(address) (#112-121) is never used and should be removed
Address.sendValue(address,uint256) (#123-129) is never used and should be removed
Context._msgData() (#35-38) is never used and should be removed
SafeMath.mod(uint256,uint256) (#100-102) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#104-107) is never used and should be removed
Remove unused functions.
Additional information: link
AITechProtocol._rTotal (#451) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
AITechProtocol._previousLiquidityFee (#468) 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.sendValue(address,uint256) (#123-129):
- (success) = recipient.call{value: amount}() (#127)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#149-166):
- (success,returndata) = target.call{value: weiValue}(data) (#152)
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() (#261) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#262) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#278) is not in mixedCase
Function IUniswapV2Router01.WETH() (#299) is not in mixedCase
Parameter AITechProtocol.setTimelockExempt(address[])._users (#606) is not in mixedCase
Parameter AITechProtocol.verifyTimelockExempt(address)._user (#616) is not in mixedCase
Parameter AITechProtocol.removeTimelockExempted(address)._user (#619) is not in mixedCase
Parameter AITechProtocol.batchContestAirdrops(address[],uint256)._users (#623) is not in mixedCase
Parameter AITechProtocol.batchContestAirdrops(address[],uint256)._amount (#623) is not in mixedCase
Parameter AITechProtocol.setCooldownStatus(bool,uint256)._status (#630) is not in mixedCase
Parameter AITechProtocol.setCooldownStatus(bool,uint256)._interval (#630) is not in mixedCase
Parameter AITechProtocol.antisnipingEnable(bool)._status (#767) is not in mixedCase
Parameter AITechProtocol.setBot(address)._address (#788) is not in mixedCase
Parameter AITechProtocol.addBotted(address)._address (#792) is not in mixedCase
Parameter AITechProtocol.isBot(address)._address (#796) is not in mixedCase
Parameter AITechProtocol.deleteBot(address)._address (#800) is not in mixedCase
Parameter AITechProtocol.calculateTaxFee(uint256)._amount (#961) is not in mixedCase
Parameter AITechProtocol.calculateLiquidityFee(uint256)._amount (#967) is not in mixedCase
Parameter AITechProtocol.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#990) is not in mixedCase
Parameter AITechProtocol.setSwapAndLiquifyEnabled(bool)._enabled (#998) is not in mixedCase
Parameter AITechProtocol.setBuyBackEnabled(bool)._enabled (#1003) is not in mixedCase
Variable AITechProtocol._taxFee (#465) is not in mixedCase
Variable AITechProtocol._liquidityFee (#467) is not in mixedCase
Variable AITechProtocol.DEAD (#474) is not in mixedCase
Variable AITechProtocol._snipingBots (#479) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#36)" inContext (#30-39)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in AITechProtocol._transfer(address,address,uint256) (#681-735):
External calls:
- swapTokens(contractTokenBalance) (#715)
- recipient.transfer(amount) (#1009)
External calls sending eth:
- swapTokens(contractTokenBalance) (#715)
- recipient.transfer(amount) (#1009)
- buyBackTokens(balance.div(100)) (#723)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#831-836)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#734)
- _rOwned[marketingWallet] = _rOwned[marketingWallet].add(rLiquidity) (#956)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#872)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#881)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#892)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#902)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#873)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#883)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#893)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#904)
- _tokenTransfer(from,to,amount) (#734)
- _rTotal = _rTotal.sub(rFee) (#911)
- _tokenTransfer(from,to,amount) (#734)
- _tFeeTotal = _tFeeTotal.add(tFee) (#912)
- _tokenTransfer(from,to,amount) (#734)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#958)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#901)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#891)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#882)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#903)
- buyBackTokens(balance.div(100)) (#723)
- inSwapAndLiquify = true (#512)
- inSwapAndLiquify = false (#514)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#838)
- buyBackTokens(balance.div(100)) (#723)
- Transfer(sender,recipient,tTransferAmount) (#876)
- _tokenTransfer(from,to,amount) (#734)
- Transfer(sender,recipient,tTransferAmount) (#886)
- _tokenTransfer(from,to,amount) (#734)
- Transfer(sender,recipient,tTransferAmount) (#896)
- _tokenTransfer(from,to,amount) (#734)
- Transfer(sender,recipient,tTransferAmount) (#907)
- _tokenTransfer(from,to,amount) (#734)
Reentrancy in AITechProtocol.transferFrom(address,address,uint256) (#574-578):
External calls:
- _transfer(sender,recipient,amount) (#575)
- recipient.transfer(amount) (#1009)
External calls sending eth:
- _transfer(sender,recipient,amount) (#575)
- recipient.transfer(amount) (#1009)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#831-836)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#576)
- _allowances[owner][spender] = amount (#677)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#678)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#576)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#304) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#305)
Variable AITechProtocol._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#932) is too similar to AITechProtocol._transferToExcluded(address,address,uint256).tTransferAmount (#880)
Variable AITechProtocol.reflectionFromToken(uint256,bool).rTransferAmount (#662) is too similar to AITechProtocol._getValues(uint256).tTransferAmount (#916)
Variable AITechProtocol._transferStandard(address,address,uint256).rTransferAmount (#871) is too similar to AITechProtocol._transferBothExcluded(address,address,uint256).tTransferAmount (#900)
Variable AITechProtocol._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#932) is too similar to AITechProtocol._getTValues(uint256).tTransferAmount (#924)
Variable AITechProtocol._getValues(uint256).rTransferAmount (#917) is too similar to AITechProtocol._getTValues(uint256).tTransferAmount (#924)
Variable AITechProtocol._transferFromExcluded(address,address,uint256).rTransferAmount (#890) is too similar to AITechProtocol._transferToExcluded(address,address,uint256).tTransferAmount (#880)
Variable AITechProtocol._transferFromExcluded(address,address,uint256).rTransferAmount (#890) is too similar to AITechProtocol._getTValues(uint256).tTransferAmount (#924)
Variable AITechProtocol._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#932) is too similar to AITechProtocol._getValues(uint256).tTransferAmount (#916)
Variable AITechProtocol._getValues(uint256).rTransferAmount (#917) is too similar to AITechProtocol._getValues(uint256).tTransferAmount (#916)
Variable AITechProtocol._transferBothExcluded(address,address,uint256).rTransferAmount (#900) is too similar to AITechProtocol._transferBothExcluded(address,address,uint256).tTransferAmount (#900)
Variable AITechProtocol._transferFromExcluded(address,address,uint256).rTransferAmount (#890) is too similar to AITechProtocol._getValues(uint256).tTransferAmount (#916)
Variable AITechProtocol._transferToExcluded(address,address,uint256).rTransferAmount (#880) is too similar to AITechProtocol._transferToExcluded(address,address,uint256).tTransferAmount (#880)
Variable AITechProtocol._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#932) is too similar to AITechProtocol._transferBothExcluded(address,address,uint256).tTransferAmount (#900)
Variable AITechProtocol._getValues(uint256).rTransferAmount (#917) is too similar to AITechProtocol._transferBothExcluded(address,address,uint256).tTransferAmount (#900)
Variable AITechProtocol._transferFromExcluded(address,address,uint256).rTransferAmount (#890) is too similar to AITechProtocol._transferStandard(address,address,uint256).tTransferAmount (#871)
Variable AITechProtocol._transferFromExcluded(address,address,uint256).rTransferAmount (#890) is too similar to AITechProtocol._transferBothExcluded(address,address,uint256).tTransferAmount (#900)
Variable AITechProtocol._transferStandard(address,address,uint256).rTransferAmount (#871) is too similar to AITechProtocol._transferToExcluded(address,address,uint256).tTransferAmount (#880)
Variable AITechProtocol._transferToExcluded(address,address,uint256).rTransferAmount (#880) is too similar to AITechProtocol._getValues(uint256).tTransferAmount (#916)
Variable AITechProtocol._transferStandard(address,address,uint256).rTransferAmount (#871) is too similar to AITechProtocol._getTValues(uint256).tTransferAmount (#924)
Variable AITechProtocol._transferStandard(address,address,uint256).rTransferAmount (#871) is too similar to AITechProtocol._getValues(uint256).tTransferAmount (#916)
Variable AITechProtocol._transferBothExcluded(address,address,uint256).rTransferAmount (#900) is too similar to AITechProtocol._transferToExcluded(address,address,uint256).tTransferAmount (#880)
Variable AITechProtocol.reflectionFromToken(uint256,bool).rTransferAmount (#662) is too similar to AITechProtocol._transferToExcluded(address,address,uint256).tTransferAmount (#880)
Variable AITechProtocol._transferFromExcluded(address,address,uint256).rTransferAmount (#890) is too similar to AITechProtocol._transferFromExcluded(address,address,uint256).tTransferAmount (#890)
Variable AITechProtocol._transferBothExcluded(address,address,uint256).rTransferAmount (#900) is too similar to AITechProtocol._getValues(uint256).tTransferAmount (#916)
Variable AITechProtocol._getValues(uint256).rTransferAmount (#917) is too similar to AITechProtocol._transferToExcluded(address,address,uint256).tTransferAmount (#880)
Variable AITechProtocol._transferStandard(address,address,uint256).rTransferAmount (#871) is too similar to AITechProtocol._transferStandard(address,address,uint256).tTransferAmount (#871)
Variable AITechProtocol.reflectionFromToken(uint256,bool).rTransferAmount (#662) is too similar to AITechProtocol._transferBothExcluded(address,address,uint256).tTransferAmount (#900)
Variable AITechProtocol._transferToExcluded(address,address,uint256).rTransferAmount (#880) is too similar to AITechProtocol._transferFromExcluded(address,address,uint256).tTransferAmount (#890)
Variable AITechProtocol.reflectionFromToken(uint256,bool).rTransferAmount (#662) is too similar to AITechProtocol._transferStandard(address,address,uint256).tTransferAmount (#871)
Variable AITechProtocol._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#932) is too similar to AITechProtocol._transferStandard(address,address,uint256).tTransferAmount (#871)
Variable AITechProtocol._transferBothExcluded(address,address,uint256).rTransferAmount (#900) is too similar to AITechProtocol._transferStandard(address,address,uint256).tTransferAmount (#871)
Variable AITechProtocol._transferToExcluded(address,address,uint256).rTransferAmount (#880) is too similar to AITechProtocol._getTValues(uint256).tTransferAmount (#924)
Variable AITechProtocol._getValues(uint256).rTransferAmount (#917) is too similar to AITechProtocol._transferStandard(address,address,uint256).tTransferAmount (#871)
Variable AITechProtocol.reflectionFromToken(uint256,bool).rTransferAmount (#662) is too similar to AITechProtocol._transferFromExcluded(address,address,uint256).tTransferAmount (#890)
Variable AITechProtocol._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#932) is too similar to AITechProtocol._transferFromExcluded(address,address,uint256).tTransferAmount (#890)
Variable AITechProtocol._transferStandard(address,address,uint256).rTransferAmount (#871) is too similar to AITechProtocol._transferFromExcluded(address,address,uint256).tTransferAmount (#890)
Variable AITechProtocol._transferToExcluded(address,address,uint256).rTransferAmount (#880) is too similar to AITechProtocol._transferBothExcluded(address,address,uint256).tTransferAmount (#900)
Variable AITechProtocol._transferBothExcluded(address,address,uint256).rTransferAmount (#900) is too similar to AITechProtocol._transferFromExcluded(address,address,uint256).tTransferAmount (#890)
Variable AITechProtocol.reflectionFromToken(uint256,bool).rTransferAmount (#662) is too similar to AITechProtocol._getTValues(uint256).tTransferAmount (#924)
Variable AITechProtocol._transferBothExcluded(address,address,uint256).rTransferAmount (#900) is too similar to AITechProtocol._getTValues(uint256).tTransferAmount (#924)
Variable AITechProtocol._transferToExcluded(address,address,uint256).rTransferAmount (#880) is too similar to AITechProtocol._transferStandard(address,address,uint256).tTransferAmount (#871)
Variable AITechProtocol._getValues(uint256).rTransferAmount (#917) is too similar to AITechProtocol._transferFromExcluded(address,address,uint256).tTransferAmount (#890)
Prevent variables from having similar names.
Additional information: link
AITechProtocol.slitherConstructorVariables() (#436-1015) uses literals with too many digits:
- _tTotal = 1000000 * 10 ** 9 (#450)
AITechProtocol.slitherConstructorVariables() (#436-1015) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#472)
AITechProtocol.slitherConstructorVariables() (#436-1015) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#474)
AITechProtocol.slitherConstructorVariables() (#436-1015) uses literals with too many digits:
- minimumTokensBeforeSwap = 100000 * 10 ** 9 (#475)
AITechProtocol.slitherConstructorVariables() (#436-1015) uses literals with too many digits:
- buyBackUpperLimit = 100000 * 10 ** 9 (#476)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
AITechProtocol._previousLiquidityFee (#468) is never used in AITechProtocol (#436-1015)
Remove unused state variables.
Additional information: link
AITechProtocol.DEAD (#474) should be constant
AITechProtocol._decimals (#459) should be constant
AITechProtocol._liquidityFee (#467) should be constant
AITechProtocol._name (#457) should be constant
AITechProtocol._symbol (#458) should be constant
AITechProtocol._tTotal (#450) should be constant
AITechProtocol.antiwhale (#489) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#191-194)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#196-200)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#202-204)
getTime() should be declared external:
- Ownable.getTime() (#206-208)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#210-215)
unlock() should be declared external:
- Ownable.unlock() (#217-222)
name() should be declared external:
- AITechProtocol.name() (#539-541)
symbol() should be declared external:
- AITechProtocol.symbol() (#543-545)
decimals() should be declared external:
- AITechProtocol.decimals() (#547-549)
totalSupply() should be declared external:
- AITechProtocol.totalSupply() (#551-553)
transfer(address,uint256) should be declared external:
- AITechProtocol.transfer(address,uint256) (#560-563)
allowance(address,address) should be declared external:
- AITechProtocol.allowance(address,address) (#565-567)
approve(address,uint256) should be declared external:
- AITechProtocol.approve(address,uint256) (#569-572)
transferFrom(address,address,uint256) should be declared external:
- AITechProtocol.transferFrom(address,address,uint256) (#574-578)
increaseAllowance(address,uint256) should be declared external:
- AITechProtocol.increaseAllowance(address,uint256) (#580-583)
decreaseAllowance(address,uint256) should be declared external:
- AITechProtocol.decreaseAllowance(address,uint256) (#585-588)
isExcludedFromReward(address) should be declared external:
- AITechProtocol.isExcludedFromReward(address) (#590-592)
totalFees() should be declared external:
- AITechProtocol.totalFees() (#594-596)
minimumTokensBeforeSwapAmount() should be declared external:
- AITechProtocol.minimumTokensBeforeSwapAmount() (#598-600)
buyBackUpperLimitAmount() should be declared external:
- AITechProtocol.buyBackUpperLimitAmount() (#602-604)
verifyTimelockExempt(address) should be declared external:
- AITechProtocol.verifyTimelockExempt(address) (#616-618)
batchContestAirdrops(address[],uint256) should be declared external:
- AITechProtocol.batchContestAirdrops(address[],uint256) (#623-627)
setCooldownStatus(bool,uint256) should be declared external:
- AITechProtocol.setCooldownStatus(bool,uint256) (#630-633)
deliver(uint256) should be declared external:
- AITechProtocol.deliver(uint256) (#646-653)
reflectionFromToken(uint256,bool) should be declared external:
- AITechProtocol.reflectionFromToken(uint256,bool) (#656-665)
checkAnyBuy(address) should be declared external:
- AITechProtocol.checkAnyBuy(address) (#759-761)
checkBuyBlock(address) should be declared external:
- AITechProtocol.checkBuyBlock(address) (#763-765)
isExcludedFromFee(address) should be declared external:
- AITechProtocol.isExcludedFromFee(address) (#974-976)
excludeFromFee(address) should be declared external:
- AITechProtocol.excludeFromFee(address) (#978-980)
includeInFee(address) should be declared external:
- AITechProtocol.includeInFee(address) (#982-984)
setSwapAndLiquifyEnabled(bool) should be declared external:
- AITechProtocol.setSwapAndLiquifyEnabled(bool) (#998-1001)
setBuyBackEnabled(bool) should be declared external:
- AITechProtocol.setBuyBackEnabled(bool) (#1003-1006)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts