Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in Celastrina._transfer(address,address,uint256) (#977-999):
External calls:
- swapAndLiquify(contractTokenBalance) (#995)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#995)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#998)
- _liquidityFee = _previousLiquidityFee (#960)
- _liquidityFee = 0 (#953)
- _tokenTransfer(from,to,amount) (#998)
- _marketingFee = _previousmarketingFee (#962)
- _marketingFee = 0 (#954)
- _tokenTransfer(from,to,amount) (#998)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#927)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1153)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurn) (#1146)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#1133)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#870)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1164)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1165)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1118)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1155)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#872)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1119)
- _tokenTransfer(from,to,amount) (#998)
- _rTotal = _rTotal.sub(rFee) (#882)
- _tokenTransfer(from,to,amount) (#998)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#929)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#869)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1163)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1154)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#871)
Apply the check-effects-interactions pattern.
Additional information: link
Celastrina.takeMarketing(address,uint256,uint256,uint256) (#1125-1136) performs a multiplication on the result of a division:
-tMarketing = tAmount.div(100).mul(_marketingFee) (#1129)
Celastrina.takeBurn(address,uint256,uint256,uint256) (#1138-1149) performs a multiplication on the result of a division:
-tBurn = tAmount.div(100).mul(_burnFee) (#1142)
Consider ordering multiplication before division.
Additional information: link
Celastrina.addLiquidity(uint256,uint256) (#1068-1081) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
Ensure that all the return values of the function calls are used.
Additional information: link
Celastrina.allowance(address,address).owner (#786) shadows:
- Ownable.owner() (#414-416) (function)
Celastrina._approve(address,address,uint256).owner (#969) shadows:
- Ownable.owner() (#414-416) (function)
Rename the local variables that shadow another component.
Additional information: link
Celastrina.setFees(uint256,uint256,uint256,uint256) (#1184-1189) should emit an event for:
- _taxFee = taxFee (#1185)
- _liquidityFee = liquidityFee (#1186)
- _marketingFee = marketingFee (#1187)
- _burnFee = burnFee (#1188)
Celastrina.setNumTokensSellToAddToLiquidity(uint256) (#1191-1193) should emit an event for:
- numTokensSellToAddToLiquidity = newAmt * (10 ** 18) (#1192)
Celastrina.setMaxTxAmount(uint256) (#1195-1198) should emit an event for:
- _maxTxAmount = maxTxAmount * (10 ** 18) (#1197)
Emit an event for critical parameter changes.
Additional information: link
Celastrina.setMarketingWallet(address).newWallet (#1180) lacks a zero-check on :
- marketingWallet = newWallet (#1181)
Check that the address is not zero.
Additional information: link
Reentrancy in Celastrina._transfer(address,address,uint256) (#977-999):
External calls:
- swapAndLiquify(contractTokenBalance) (#995)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#995)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#998)
- _burnFee = _previousBurnFee (#961)
- _burnFee = 0 (#955)
- _tokenTransfer(from,to,amount) (#998)
- _previousBurnFee = _burnFee (#949)
- _tokenTransfer(from,to,amount) (#998)
- _previousLiquidityFee = _liquidityFee (#948)
- _tokenTransfer(from,to,amount) (#998)
- _previousTaxFee = _taxFee (#947)
- _tokenTransfer(from,to,amount) (#998)
- _previousmarketingFee = _marketingFee (#950)
- _tokenTransfer(from,to,amount) (#998)
- _tFeeTotal = _tFeeTotal.add(tFee) (#883)
- _tokenTransfer(from,to,amount) (#998)
- _taxFee = _previousTaxFee (#959)
- _taxFee = 0 (#952)
Reentrancy in Celastrina.constructor() (#741-758):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#747-748)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#754)
- _isExcludedFromFee[address(this)] = true (#755)
- uniswapV2Router = _uniswapV2Router (#751)
Reentrancy in Celastrina.swapAndLiquify(uint256) (#1001-1029):
External calls:
- swapTokensForBUSD(tokensForMarketing) (#1007)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
- swapTokensForEth(half) (#1020)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
State variables written after the call(s):
- swapTokensForEth(half) (#1020)
- _allowances[owner][spender] = amount (#973)
Reentrancy in Celastrina.swapAndLiquify(uint256) (#1001-1029):
External calls:
- swapTokensForBUSD(tokensForMarketing) (#1007)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
- swapTokensForEth(half) (#1020)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- addLiquidity(otherHalf,newBalance) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1026)
- _allowances[owner][spender] = amount (#973)
Reentrancy in Celastrina.transferFrom(address,address,uint256) (#795-799):
External calls:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
External calls sending eth:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#797)
- _allowances[owner][spender] = amount (#973)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Celastrina._transfer(address,address,uint256) (#977-999):
External calls:
- swapAndLiquify(contractTokenBalance) (#995)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#995)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
Event emitted after the call(s):
- Transfer(sender,deadAddress,tBurn) (#1147)
- _tokenTransfer(from,to,amount) (#998)
- Transfer(sender,address(this),tMarketing) (#1134)
- _tokenTransfer(from,to,amount) (#998)
- Transfer(sender,recipient,tTransferAmount) (#1168)
- _tokenTransfer(from,to,amount) (#998)
- Transfer(sender,recipient,tTransferAmount) (#1158)
- _tokenTransfer(from,to,amount) (#998)
- Transfer(sender,recipient,tTransferAmount) (#1122)
- _tokenTransfer(from,to,amount) (#998)
- Transfer(sender,recipient,tTransferAmount) (#875)
- _tokenTransfer(from,to,amount) (#998)
Reentrancy in Celastrina.constructor() (#741-758):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#747-748)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#757)
Reentrancy in Celastrina.swapAndLiquify(uint256) (#1001-1029):
External calls:
- swapTokensForBUSD(tokensForMarketing) (#1007)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
- swapTokensForEth(half) (#1020)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#974)
- swapTokensForEth(half) (#1020)
Reentrancy in Celastrina.swapAndLiquify(uint256) (#1001-1029):
External calls:
- swapTokensForBUSD(tokensForMarketing) (#1007)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
- swapTokensForEth(half) (#1020)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- addLiquidity(otherHalf,newBalance) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#974)
- addLiquidity(otherHalf,newBalance) (#1026)
- SwapAndLiquify(half,newBalance,otherHalf) (#1028)
Reentrancy in Celastrina.transferFrom(address,address,uint256) (#795-799):
External calls:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
External calls sending eth:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#974)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#797)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#461-466) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#463)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#266-275) uses assembly
- INLINE ASM (#273)
Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) uses assembly
- INLINE ASM (#372-375)
Do not use evm assembly.
Additional information: link
Celastrina.includeInReward(address) (#854-865) has costly operations inside a loop:
- _excluded.pop() (#861)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) is never used and should be removed
Address.functionCall(address,bytes) (#319-321) is never used and should be removed
Address.functionCall(address,bytes,string) (#329-331) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#344-346) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#354-357) is never used and should be removed
Address.isContract(address) (#266-275) is never used and should be removed
Address.sendValue(address,uint256) (#293-299) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#222-224) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#238-241) is never used and should be removed
Remove unused functions.
Additional information: link
Celastrina._rTotal (#696) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Celastrina._previousTaxFee (#704) is set pre-construction with a non-constant function or state variable:
- _taxFee
Celastrina._previousLiquidityFee (#707) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Celastrina._previousBurnFee (#710) is set pre-construction with a non-constant function or state variable:
- _burnFee
Celastrina._previousmarketingFee (#714) is set pre-construction with a non-constant function or state variable:
- _marketingFee
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) (#293-299):
- (success) = recipient.call{value: amount}() (#297)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#359-380):
- (success,returndata) = target.call{value: weiValue}(data) (#363)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#505) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#506) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#522) is not in mixedCase
Function IUniswapV2Router01.WETH() (#543) is not in mixedCase
Parameter Celastrina.calculateLiquidityFee(uint256)._amount (#932) is not in mixedCase
Parameter Celastrina.calculateTaxFee(uint256)._amount (#938) is not in mixedCase
Parameter Celastrina.setSwapAndLiquifyEnabled(bool)._enabled (#1200) is not in mixedCase
Variable Celastrina._taxFee (#703) is not in mixedCase
Variable Celastrina._liquidityFee (#706) is not in mixedCase
Variable Celastrina._burnFee (#709) is not in mixedCase
Variable Celastrina._marketingFee (#713) is not in mixedCase
Variable Celastrina._maxTxAmount (#725) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#548) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#549)
Variable Celastrina._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to Celastrina._getValues(uint256).tTransferAmount (#887)
Variable Celastrina._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to Celastrina.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable Celastrina.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to Celastrina._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable Celastrina.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to Celastrina._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable Celastrina._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to Celastrina.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable Celastrina._getValues(uint256).rTransferAmount (#888) is too similar to Celastrina.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable Celastrina.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to Celastrina.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable Celastrina._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to Celastrina._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Celastrina.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to Celastrina._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable Celastrina.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to Celastrina._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable Celastrina.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to Celastrina.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable Celastrina.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to Celastrina._getValues(uint256).tTransferAmount (#887)
Variable Celastrina.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to Celastrina._getValues(uint256).tTransferAmount (#887)
Variable Celastrina.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to Celastrina._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable Celastrina._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to Celastrina.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable Celastrina._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to Celastrina.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable Celastrina._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to Celastrina._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Celastrina.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to Celastrina._getValues(uint256).tTransferAmount (#887)
Variable Celastrina._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to Celastrina._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable Celastrina._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to Celastrina.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable Celastrina._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to Celastrina._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable Celastrina._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to Celastrina.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable Celastrina._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to Celastrina._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable Celastrina._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to Celastrina._getValues(uint256).tTransferAmount (#887)
Variable Celastrina._getValues(uint256).rTransferAmount (#888) is too similar to Celastrina.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable Celastrina._getValues(uint256).rTransferAmount (#888) is too similar to Celastrina._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable Celastrina._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to Celastrina._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable Celastrina._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to Celastrina._getValues(uint256).tTransferAmount (#887)
Variable Celastrina._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to Celastrina.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable Celastrina._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to Celastrina._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable Celastrina._getValues(uint256).rTransferAmount (#888) is too similar to Celastrina._getValues(uint256).tTransferAmount (#887)
Variable Celastrina._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to Celastrina._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable Celastrina._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to Celastrina._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable Celastrina.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to Celastrina.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable Celastrina.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to Celastrina.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable Celastrina._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to Celastrina.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable Celastrina._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to Celastrina._getValues(uint256).tTransferAmount (#887)
Variable Celastrina._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to Celastrina._getValues(uint256).tTransferAmount (#887)
Variable Celastrina._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to Celastrina._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable Celastrina.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to Celastrina._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Celastrina._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to Celastrina.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable Celastrina._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to Celastrina._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable Celastrina._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to Celastrina._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable Celastrina.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to Celastrina._getTValues(uint256).tTransferAmount (#895)
Variable Celastrina._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to Celastrina.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable Celastrina._getValues(uint256).rTransferAmount (#888) is too similar to Celastrina._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable Celastrina.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to Celastrina._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Celastrina._getValues(uint256).rTransferAmount (#888) is too similar to Celastrina._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Celastrina._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to Celastrina._getTValues(uint256).tTransferAmount (#895)
Variable Celastrina._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to Celastrina._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable Celastrina.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to Celastrina._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Celastrina.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to Celastrina._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable Celastrina._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to Celastrina._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable Celastrina.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to Celastrina.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable Celastrina._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to Celastrina._getTValues(uint256).tTransferAmount (#895)
Variable Celastrina._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to Celastrina._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable Celastrina._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to Celastrina._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Celastrina.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to Celastrina._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable Celastrina.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to Celastrina.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable Celastrina._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to Celastrina._getTValues(uint256).tTransferAmount (#895)
Variable Celastrina._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to Celastrina._getTValues(uint256).tTransferAmount (#895)
Variable Celastrina.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to Celastrina._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable Celastrina._getValues(uint256).rTransferAmount (#888) is too similar to Celastrina._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable Celastrina._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to Celastrina._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Celastrina._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to Celastrina._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable Celastrina._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to Celastrina._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable Celastrina.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to Celastrina._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable Celastrina.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to Celastrina._getTValues(uint256).tTransferAmount (#895)
Variable Celastrina._getValues(uint256).rTransferAmount (#888) is too similar to Celastrina._getTValues(uint256).tTransferAmount (#895)
Variable Celastrina.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to Celastrina._getTValues(uint256).tTransferAmount (#895)
Variable Celastrina._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to Celastrina._getTValues(uint256).tTransferAmount (#895)
Variable Celastrina._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to Celastrina._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Prevent variables from having similar names.
Additional information: link
Celastrina.slitherConstructorVariables() (#681-1206) uses literals with too many digits:
- _tTotal = 250000000 * 10 ** 18 (#695)
Celastrina.slitherConstructorVariables() (#681-1206) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#711)
Celastrina.slitherConstructorVariables() (#681-1206) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 1000000 * 10 ** 18 (#724)
Celastrina.slitherConstructorVariables() (#681-1206) uses literals with too many digits:
- _maxTxAmount = 2500000 * 10 ** 18 (#725)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Celastrina._decimals (#701) should be constant
Celastrina._name (#699) should be constant
Celastrina._symbol (#700) should be constant
Celastrina._tTotal (#695) should be constant
Celastrina.deadAddress (#711) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#433-436)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#442-446)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#448-450)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#453-458)
unlock() should be declared external:
- Ownable.unlock() (#461-466)
name() should be declared external:
- Celastrina.name() (#760-762)
symbol() should be declared external:
- Celastrina.symbol() (#764-766)
decimals() should be declared external:
- Celastrina.decimals() (#768-770)
totalSupply() should be declared external:
- Celastrina.totalSupply() (#772-774)
transfer(address,uint256) should be declared external:
- Celastrina.transfer(address,uint256) (#781-784)
allowance(address,address) should be declared external:
- Celastrina.allowance(address,address) (#786-788)
approve(address,uint256) should be declared external:
- Celastrina.approve(address,uint256) (#790-793)
transferFrom(address,address,uint256) should be declared external:
- Celastrina.transferFrom(address,address,uint256) (#795-799)
increaseAllowance(address,uint256) should be declared external:
- Celastrina.increaseAllowance(address,uint256) (#801-804)
decreaseAllowance(address,uint256) should be declared external:
- Celastrina.decreaseAllowance(address,uint256) (#806-809)
isExcludedFromReward(address) should be declared external:
- Celastrina.isExcludedFromReward(address) (#811-813)
totalFees() should be declared external:
- Celastrina.totalFees() (#815-817)
deliver(uint256) should be declared external:
- Celastrina.deliver(uint256) (#819-826)
reflectionFromToken(uint256,bool) should be declared external:
- Celastrina.reflectionFromToken(uint256,bool) (#828-837)
excludeFromReward(address) should be declared external:
- Celastrina.excludeFromReward(address) (#845-852)
isExcludedFromFee(address) should be declared external:
- Celastrina.isExcludedFromFee(address) (#965-967)
excludeFromFee(address) should be declared external:
- Celastrina.excludeFromFee(address) (#1172-1174)
includeInFee(address) should be declared external:
- Celastrina.includeInFee(address) (#1176-1178)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Celastrina.setSwapAndLiquifyEnabled(bool) (#1200-1203)
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