Threebody Token Logo

TEB [Threebody] Token

About TEB

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 18 September 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Reentrancy in Threebody._transfer(address,address,uint256) (#1055-1099):
External calls:
- swapAndLiquify(contractTokenBalance) (#1086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1133-1139)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1098)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1003)
- _rOwned[_to] = rAmount (#952)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1182)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1194)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1208)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1183)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#897)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1209)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1196)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#899)
- _tokenTransfer(from,to,amount,takeFee) (#1098)
- _rTotal = _rTotal.sub(rFee) (#941)
- _tokenTransfer(from,to,amount,takeFee) (#1098)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1005)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#896)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1207)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1195)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#898)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

Threebody.includeInReward(address) (#880-891) has costly operations inside a loop:
- _excluded.pop() (#887)
Use a local variable to hold the loop computation result.

Additional information: link

Threebody.addLiquidity(uint256,uint256) (#1142-1155) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
Ensure that all the return values of the function calls are used.

Additional information: link

Threebody.allowance(address,address).owner (#807) shadows:
- Ownable.owner() (#432-434) (function)
Threebody._approve(address,address,uint256).owner (#1047) shadows:
- Ownable.owner() (#432-434) (function)
Rename the local variables that shadow another component.

Additional information: link

Threebody.setTaxFeePercent(uint256) (#914-916) should emit an event for:
- _taxFee = taxFee (#915)
Threebody.setLiquidityFeePercent(uint256) (#918-920) should emit an event for:
- _liquidityFee = liquidityFee (#919)
Threebody.setBurnFeePercent(uint256) (#922-924) should emit an event for:
- _burnFee = burnFee (#923)
Threebody.setMaxTxPercent(uint256) (#926-930) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#927-929)
Emit an event for critical parameter changes.

Additional information: link

Threebody.setMinter(address).minter (#1216) lacks a zero-check on :
- _minter = minter (#1217)
Check that the address is not zero.

Additional information: link

Reentrancy in Threebody._transfer(address,address,uint256) (#1055-1099):
External calls:
- swapAndLiquify(contractTokenBalance) (#1086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1133-1139)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1098)
- _burnFee = _previousBurnFee (#1040)
- _burnFee = 0 (#1034)
- _tokenTransfer(from,to,amount,takeFee) (#1098)
- _liquidityFee = _previousLiquidityFee (#1039)
- _liquidityFee = 0 (#1033)
- _tokenTransfer(from,to,amount,takeFee) (#1098)
- _previousBurnFee = _burnFee (#1030)
- _tokenTransfer(from,to,amount,takeFee) (#1098)
- _previousLiquidityFee = _liquidityFee (#1029)
- _tokenTransfer(from,to,amount,takeFee) (#1098)
- _previousTaxFee = _taxFee (#1028)
- _tokenTransfer(from,to,amount,takeFee) (#1098)
- _tBurnTotal = _tBurnTotal.add(tBurn) (#949)
- _tokenTransfer(from,to,amount,takeFee) (#1098)
- _tFeeTotal = _tFeeTotal.add(tFee) (#942)
- _tokenTransfer(from,to,amount,takeFee) (#1098)
- _taxFee = _previousTaxFee (#1038)
- _taxFee = 0 (#1032)
Reentrancy in Threebody.constructor() (#761-778):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#766-767)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#773)
- _isExcludedFromFee[address(this)] = true (#774)
- _isExcludedFromFee[deadAddress] = true (#775)
- uniswapV2Router = _uniswapV2Router (#770)
Reentrancy in Threebody.swapAndLiquify(uint256) (#1101-1122):
External calls:
- swapTokensForEth(half) (#1113)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1133-1139)
- addLiquidity(otherHalf,newBalance) (#1119)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1119)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1119)
- _allowances[owner][spender] = amount (#1051)
Reentrancy in Threebody.transferFrom(address,address,uint256) (#816-820):
External calls:
- _transfer(sender,recipient,amount) (#817)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1133-1139)
External calls sending eth:
- _transfer(sender,recipient,amount) (#817)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#818)
- _allowances[owner][spender] = amount (#1051)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Threebody._transfer(address,address,uint256) (#1055-1099):
External calls:
- swapAndLiquify(contractTokenBalance) (#1086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1133-1139)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1187)
- _tokenTransfer(from,to,amount,takeFee) (#1098)
- Transfer(sender,recipient,tTransferAmount) (#1200)
- _tokenTransfer(from,to,amount,takeFee) (#1098)
- Transfer(sender,recipient,tTransferAmount) (#1213)
- _tokenTransfer(from,to,amount,takeFee) (#1098)
- Transfer(sender,recipient,tTransferAmount) (#903)
- _tokenTransfer(from,to,amount,takeFee) (#1098)
Reentrancy in Threebody.constructor() (#761-778):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#766-767)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_supplied) (#777)
Reentrancy in Threebody.swapAndLiquify(uint256) (#1101-1122):
External calls:
- swapTokensForEth(half) (#1113)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1133-1139)
- addLiquidity(otherHalf,newBalance) (#1119)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1119)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1052)
- addLiquidity(otherHalf,newBalance) (#1119)
- SwapAndLiquify(half,newBalance,otherHalf) (#1121)
Reentrancy in Threebody.transferFrom(address,address,uint256) (#816-820):
External calls:
- _transfer(sender,recipient,amount) (#817)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1133-1139)
External calls sending eth:
- _transfer(sender,recipient,amount) (#817)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1052)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#818)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#479-484) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#481)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#284-293) uses assembly
- INLINE ASM (#291)
Address._functionCallWithValue(address,bytes,uint256,string) (#377-398) uses assembly
- INLINE ASM (#390-393)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#377-398) is never used and should be removed
Address.functionCall(address,bytes) (#337-339) is never used and should be removed
Address.functionCall(address,bytes,string) (#347-349) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#362-364) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#372-375) is never used and should be removed
Address.isContract(address) (#284-293) is never used and should be removed
Address.sendValue(address,uint256) (#311-317) is never used and should be removed
Context._msgData() (#256-259) is never used and should be removed
SafeMath.mod(uint256,uint256) (#229-231) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#245-248) is never used and should be removed
Remove unused functions.

Additional information: link

Threebody._rTotal (#716) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Threebody._supplied (#717) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(100).div(100)
Threebody._previousTaxFee (#726) is set pre-construction with a non-constant function or state variable:
- _taxFee
Threebody._previousLiquidityFee (#729) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Threebody._previousBurnFee (#732) is set pre-construction with a non-constant function or state variable:
- _burnFee
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) (#311-317):
- (success) = recipient.call{value: amount}() (#315)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#377-398):
- (success,returndata) = target.call{value: weiValue}(data) (#381)
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() (#523) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#524) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#541) is not in mixedCase
Function IUniswapV2Router01.WETH() (#563) is not in mixedCase
Parameter Threebody.setSwapAndLiquifyEnabled(bool)._enabled (#932) is not in mixedCase
Parameter Threebody.calculateTaxFee(uint256)._amount (#1008) is not in mixedCase
Parameter Threebody.calculateLiquidityFee(uint256)._amount (#1014) is not in mixedCase
Parameter Threebody.calculateBurnFee(uint256)._amount (#1019) is not in mixedCase
Parameter Threebody.mint(address,uint256)._to (#1220) is not in mixedCase
Parameter Threebody.withdrawBNBByAdmin(address,uint256)._to (#1231) is not in mixedCase
Parameter Threebody.withdrawByAdmin(address,uint256)._to (#1237) is not in mixedCase
Variable Threebody._supplied (#717) is not in mixedCase
Variable Threebody._taxFee (#725) is not in mixedCase
Variable Threebody._liquidityFee (#728) is not in mixedCase
Variable Threebody._burnFee (#731) is not in mixedCase
Variable Threebody._maxTxAmount (#740) is not in mixedCase
Variable Threebody._minter (#745) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#257)" inContext (#251-260)
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 (#568) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#569)
Variable Threebody._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to Threebody._getTValues(uint256).tTransferAmount (#965)
Variable Threebody._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to Threebody._transferFromExcluded(address,address,uint256).tTransferAmount (#1205)
Variable Threebody._transferFromExcluded(address,address,uint256).rTransferAmount (#1205) is too similar to Threebody._getValues(uint256).tTransferAmount (#956)
Variable Threebody._transferFromExcluded(address,address,uint256).rTransferAmount (#1205) is too similar to Threebody._transferBothExcluded(address,address,uint256).tTransferAmount (#894)
Variable Threebody._transferFromExcluded(address,address,uint256).rTransferAmount (#1205) is too similar to Threebody._transferFromExcluded(address,address,uint256).tTransferAmount (#1205)
Variable Threebody._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to Threebody._transferToExcluded(address,address,uint256).tTransferAmount (#1192)
Variable Threebody._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#974) is too similar to Threebody._getValues(uint256).tTransferAmount (#956)
Variable Threebody._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to Threebody._getValues(uint256).tTransferAmount (#956)
Variable Threebody._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#974) is too similar to Threebody._transferBothExcluded(address,address,uint256).tTransferAmount (#894)
Variable Threebody._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to Threebody._transferBothExcluded(address,address,uint256).tTransferAmount (#894)
Variable Threebody._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#974) is too similar to Threebody._transferFromExcluded(address,address,uint256).tTransferAmount (#1205)
Variable Threebody._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to Threebody._transferFromExcluded(address,address,uint256).tTransferAmount (#1205)
Variable Threebody._getValues(uint256).rTransferAmount (#957) is too similar to Threebody._getValues(uint256).tTransferAmount (#956)
Variable Threebody.reflectionFromToken(uint256,bool).rTransferAmount (#859) is too similar to Threebody._getValues(uint256).tTransferAmount (#956)
Variable Threebody.reflectionFromToken(uint256,bool).rTransferAmount (#859) is too similar to Threebody._transferBothExcluded(address,address,uint256).tTransferAmount (#894)
Variable Threebody.reflectionFromToken(uint256,bool).rTransferAmount (#859) is too similar to Threebody._transferFromExcluded(address,address,uint256).tTransferAmount (#1205)
Variable Threebody._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to Threebody._transferBothExcluded(address,address,uint256).tTransferAmount (#894)
Variable Threebody._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to Threebody._getValues(uint256).tTransferAmount (#956)
Variable Threebody._transferStandard(address,address,uint256).rTransferAmount (#1180) is too similar to Threebody._transferBothExcluded(address,address,uint256).tTransferAmount (#894)
Variable Threebody._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to Threebody._transferToExcluded(address,address,uint256).tTransferAmount (#1192)
Variable Threebody._transferFromExcluded(address,address,uint256).rTransferAmount (#1205) is too similar to Threebody._transferToExcluded(address,address,uint256).tTransferAmount (#1192)
Variable Threebody._getValues(uint256).rTransferAmount (#957) is too similar to Threebody._getTValues(uint256).tTransferAmount (#965)
Variable Threebody._transferStandard(address,address,uint256).rTransferAmount (#1180) is too similar to Threebody._transferToExcluded(address,address,uint256).tTransferAmount (#1192)
Variable Threebody._getValues(uint256).rTransferAmount (#957) is too similar to Threebody._transferFromExcluded(address,address,uint256).tTransferAmount (#1205)
Variable Threebody.reflectionFromToken(uint256,bool).rTransferAmount (#859) is too similar to Threebody._getTValues(uint256).tTransferAmount (#965)
Variable Threebody._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#974) is too similar to Threebody._getTValues(uint256).tTransferAmount (#965)
Variable Threebody._transferStandard(address,address,uint256).rTransferAmount (#1180) is too similar to Threebody._getValues(uint256).tTransferAmount (#956)
Variable Threebody._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to Threebody._transferStandard(address,address,uint256).tTransferAmount (#1180)
Variable Threebody._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to Threebody._getTValues(uint256).tTransferAmount (#965)
Variable Threebody._transferFromExcluded(address,address,uint256).rTransferAmount (#1205) is too similar to Threebody._getTValues(uint256).tTransferAmount (#965)
Variable Threebody._getValues(uint256).rTransferAmount (#957) is too similar to Threebody._transferStandard(address,address,uint256).tTransferAmount (#1180)
Variable Threebody._transferStandard(address,address,uint256).rTransferAmount (#1180) is too similar to Threebody._getTValues(uint256).tTransferAmount (#965)
Variable Threebody.reflectionFromToken(uint256,bool).rTransferAmount (#859) is too similar to Threebody._transferStandard(address,address,uint256).tTransferAmount (#1180)
Variable Threebody._transferStandard(address,address,uint256).rTransferAmount (#1180) is too similar to Threebody._transferFromExcluded(address,address,uint256).tTransferAmount (#1205)
Variable Threebody._getValues(uint256).rTransferAmount (#957) is too similar to Threebody._transferBothExcluded(address,address,uint256).tTransferAmount (#894)
Variable Threebody._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#974) is too similar to Threebody._transferStandard(address,address,uint256).tTransferAmount (#1180)
Variable Threebody._getValues(uint256).rTransferAmount (#957) is too similar to Threebody._transferToExcluded(address,address,uint256).tTransferAmount (#1192)
Variable Threebody.reflectionFromToken(uint256,bool).rTransferAmount (#859) is too similar to Threebody._transferToExcluded(address,address,uint256).tTransferAmount (#1192)
Variable Threebody._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to Threebody._transferStandard(address,address,uint256).tTransferAmount (#1180)
Variable Threebody._transferFromExcluded(address,address,uint256).rTransferAmount (#1205) is too similar to Threebody._transferStandard(address,address,uint256).tTransferAmount (#1180)
Variable Threebody._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#974) is too similar to Threebody._transferToExcluded(address,address,uint256).tTransferAmount (#1192)
Variable Threebody._transferStandard(address,address,uint256).rTransferAmount (#1180) is too similar to Threebody._transferStandard(address,address,uint256).tTransferAmount (#1180)
Prevent variables from having similar names.

Additional information: link

Threebody.addLiquidity(uint256,uint256) (#1142-1155) uses literals with too many digits:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0x0000000000000000000000000000000000000000),block.timestamp) (#1147-1154)
Threebody.slitherConstructorVariables() (#701-1243) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#743)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Threebody._decimals (#723) should be constant
Threebody._name (#721) should be constant
Threebody._symbol (#722) should be constant
Threebody._tTotal (#715) should be constant
Threebody.deadAddress (#743) should be constant
Threebody.numTokensSellToAddToLiquidity (#741) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#451-454)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#460-464)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#466-468)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#471-476)
unlock() should be declared external:
- Ownable.unlock() (#479-484)
name() should be declared external:
- Threebody.name() (#780-782)
symbol() should be declared external:
- Threebody.symbol() (#784-786)
decimals() should be declared external:
- Threebody.decimals() (#788-790)
totalSupply() should be declared external:
- Threebody.totalSupply() (#792-795)
transfer(address,uint256) should be declared external:
- Threebody.transfer(address,uint256) (#802-805)
allowance(address,address) should be declared external:
- Threebody.allowance(address,address) (#807-809)
approve(address,uint256) should be declared external:
- Threebody.approve(address,uint256) (#811-814)
transferFrom(address,address,uint256) should be declared external:
- Threebody.transferFrom(address,address,uint256) (#816-820)
increaseAllowance(address,uint256) should be declared external:
- Threebody.increaseAllowance(address,uint256) (#822-825)
decreaseAllowance(address,uint256) should be declared external:
- Threebody.decreaseAllowance(address,uint256) (#827-830)
isExcludedFromReward(address) should be declared external:
- Threebody.isExcludedFromReward(address) (#832-834)
totalFees() should be declared external:
- Threebody.totalFees() (#836-838)
totalBurn() should be declared external:
- Threebody.totalBurn() (#840-842)
deliver(uint256) should be declared external:
- Threebody.deliver(uint256) (#844-851)
excludeFromReward(address) should be declared external:
- Threebody.excludeFromReward(address) (#870-878)
excludeFromFee(address) should be declared external:
- Threebody.excludeFromFee(address) (#906-908)
includeInFee(address) should be declared external:
- Threebody.includeInFee(address) (#910-912)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Threebody.setSwapAndLiquifyEnabled(bool) (#932-935)
getRate() should be declared external:
- Threebody.getRate() (#983-986)
isExcludedFromFee(address) should be declared external:
- Threebody.isExcludedFromFee(address) (#1043-1045)
setMinter(address) should be declared external:
- Threebody.setMinter(address) (#1216-1218)
mint(address,uint256) should be declared external:
- Threebody.mint(address,uint256) (#1220-1229)
withdrawBNBByAdmin(address,uint256) should be declared external:
- Threebody.withdrawBNBByAdmin(address,uint256) (#1231-1235)
withdrawByAdmin(address,uint256) should be declared external:
- Threebody.withdrawByAdmin(address,uint256) (#1237-1241)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Token is deployed only at one blockchain

Contract has 5% buy tax and 1% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity is low.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Token has a considerable age, but we're still unable to find its website


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Young tokens have high risks of price dump / death

Price for TEB