Catge v2 Token Logo

CATGE [Catge v2] Token

About CATGE

Listings

Token 2 years
CoinMarketCap 2 years
[CoinGecko] alert: Catge token has migrated to 0x3e07a8a8f260edeeca24139b6767a073918e8674. Read more at https://twitter.com/catgecoinoff/status/1409064993547509761
white paper

CATGE is the Utility Token behind the Startup Token Launchpad exchange project. It's going to be used to pay commission, get rewards and trade against the tokenized assets.

STL is partnering with startups and real estates in order to acquire a % of their equity/property and launch tokens backed by it. Dividends, acquisition profits and monthly yields are collected time by time by STL, converted in CATGE and distributed to the token holders.

Like this, STL is going to break through the Venture Capital industry and the Real Estate investments industry thanks to asset tokenization.

Social

Laser Scorebeta Last Audit: 29 January 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

catge.addLiquidity(uint256,uint256) (#1106-1119) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in catge._transfer(address,address,uint256) (#1017-1063):
External calls:
- swapAndLiquify(contractTokenBalance) (#1050)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1097-1103)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1050)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1062)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#957)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1144)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1153)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1164)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#860)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1145)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1155)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1165)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#862)
- _tokenTransfer(from,to,amount,takeFee) (#1062)
- _rTotal = _rTotal.sub(rFee) (#912)
- _tokenTransfer(from,to,amount,takeFee) (#1062)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#959)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1163)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#859)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1154)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#861)
Apply the check-effects-interactions pattern.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

catge.addLiquidity(uint256,uint256) (#1106-1119) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
Ensure that all the return values of the function calls are used.

Additional information: link

catge.allowance(address,address).owner (#776) shadows:
- Ownable.owner() (#412-414) (function)
catge._approve(address,address,uint256).owner (#1009) shadows:
- Ownable.owner() (#412-414) (function)
Rename the local variables that shadow another component.

Additional information: link

catge.setTaxFeePercent(uint256) (#876-878) should emit an event for:
- _taxFee = taxFee (#877)
catge.setLiquidityFeePercent(uint256) (#880-882) should emit an event for:
- _liquidityFee = liquidityFee (#881)
catge.setMaxTxPercent(uint256) (#884-888) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#885-887)
Emit an event for critical parameter changes.

Additional information: link

Ownable.unlock() (#459-464) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#461)
catge.setfees() (#962-976) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp < 1630404000 (#963)
- block.timestamp > 1630404000 && block.timestamp < 1635678000 (#966)
- block.timestamp > 1635678000 && block.timestamp < 1640948400 (#969)
Avoid relying on block.timestamp.

Additional information: link

catge.includeInReward(address) (#845-856) has costly operations inside a loop:
- _excluded.pop() (#852)
Use a local variable to hold the loop computation result.

Additional information: link

Reentrancy in catge._transfer(address,address,uint256) (#1017-1063):
External calls:
- swapAndLiquify(contractTokenBalance) (#1050)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1097-1103)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1050)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1062)
- _liquidityFee = _previousLiquidityFee (#1002)
- _liquidityFee = 0 (#997)
- _tokenTransfer(from,to,amount,takeFee) (#1062)
- _previousLiquidityFee = _liquidityFee (#994)
- _tokenTransfer(from,to,amount,takeFee) (#1062)
- _previousTaxFee = _taxFee (#993)
- _tokenTransfer(from,to,amount,takeFee) (#1062)
- _tFeeTotal = _tFeeTotal.add(tFee) (#913)
- _tokenTransfer(from,to,amount,takeFee) (#1062)
- _taxFee = _previousTaxFee (#1001)
- _taxFee = 0 (#996)
Reentrancy in catge.constructor() (#732-748):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#737-738)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#744)
- _isExcludedFromFee[address(this)] = true (#745)
- uniswapV2Router = _uniswapV2Router (#741)
Reentrancy in catge.setRouter(address) (#890-898):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#893-894)
State variables written after the call(s):
- uniswapV2Router = _uniswapV2Router (#897)
Reentrancy in catge.swapAndLiquify(uint256) (#1065-1086):
External calls:
- swapTokensForEth(half) (#1077)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1097-1103)
- addLiquidity(otherHalf,newBalance) (#1083)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1083)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1083)
- _allowances[owner][spender] = amount (#1013)
Reentrancy in catge.transferFrom(address,address,uint256) (#785-789):
External calls:
- _transfer(sender,recipient,amount) (#786)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1097-1103)
External calls sending eth:
- _transfer(sender,recipient,amount) (#786)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#787)
- _allowances[owner][spender] = amount (#1013)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in catge._transfer(address,address,uint256) (#1017-1063):
External calls:
- swapAndLiquify(contractTokenBalance) (#1050)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1097-1103)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1050)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1148)
- _tokenTransfer(from,to,amount,takeFee) (#1062)
- Transfer(sender,recipient,tTransferAmount) (#1158)
- _tokenTransfer(from,to,amount,takeFee) (#1062)
- Transfer(sender,recipient,tTransferAmount) (#1168)
- _tokenTransfer(from,to,amount,takeFee) (#1062)
- Transfer(sender,recipient,tTransferAmount) (#865)
- _tokenTransfer(from,to,amount,takeFee) (#1062)
Reentrancy in catge.constructor() (#732-748):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#737-738)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#747)
Reentrancy in catge.swapAndLiquify(uint256) (#1065-1086):
External calls:
- swapTokensForEth(half) (#1077)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1097-1103)
- addLiquidity(otherHalf,newBalance) (#1083)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1083)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1014)
- addLiquidity(otherHalf,newBalance) (#1083)
- SwapAndLiquify(half,newBalance,otherHalf) (#1085)
Reentrancy in catge.transferFrom(address,address,uint256) (#785-789):
External calls:
- _transfer(sender,recipient,amount) (#786)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1097-1103)
External calls sending eth:
- _transfer(sender,recipient,amount) (#786)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1014)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#787)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#264-273) uses assembly
- INLINE ASM (#271)
Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) uses assembly
- INLINE ASM (#370-373)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) is never used and should be removed
Address.functionCall(address,bytes) (#317-319) is never used and should be removed
Address.functionCall(address,bytes,string) (#327-329) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#342-344) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#352-355) is never used and should be removed
Address.isContract(address) (#264-273) is never used and should be removed
Address.sendValue(address,uint256) (#291-297) is never used and should be removed
Context._msgData() (#236-239) is never used and should be removed
SafeMath.mod(uint256,uint256) (#209-211) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#225-228) is never used and should be removed
Remove unused functions.

Additional information: link

catge._rTotal (#696) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
catge._previousTaxFee (#704) is set pre-construction with a non-constant function or state variable:
- _taxFee
catge._previousLiquidityFee (#707) 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

Pragma version^0.8.0 (#1) allows old versions
solc-0.8.0 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#291-297):
- (success) = recipient.call{value: amount}() (#295)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#357-378):
- (success,returndata) = target.call{value: weiValue}(data) (#361)
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() (#503) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#504) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#521) is not in mixedCase
Function IUniswapV2Router01.WETH() (#543) is not in mixedCase
Contract catge (#681-1175) is not in CapWords
Parameter catge.setSwapAndLiquifyEnabled(bool)._enabled (#901) is not in mixedCase
Parameter catge.disableOrEnableSecFee(bool)._enabled (#905) is not in mixedCase
Parameter catge.calculateTaxFee(uint256)._amount (#978) is not in mixedCase
Parameter catge.calculateLiquidityFee(uint256)._amount (#984) is not in mixedCase
Variable catge._taxFee (#703) is not in mixedCase
Variable catge._liquidityFee (#706) is not in mixedCase
Variable catge.SeconderyFee (#714) is not in mixedCase
Variable catge._maxTxAmount (#715) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#237)" inContext (#231-240)
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 catge.reflectionFromToken(uint256,bool).rTransferAmount (#824) is too similar to catge._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable catge.reflectionFromToken(uint256,bool).rTransferAmount (#824) is too similar to catge._getValues(uint256).tTransferAmount (#917)
Variable catge._transferStandard(address,address,uint256).rTransferAmount (#1143) is too similar to catge._transferStandard(address,address,uint256).tTransferAmount (#1143)
Variable catge.reflectionFromToken(uint256,bool).rTransferAmount (#824) is too similar to catge._transferBothExcluded(address,address,uint256).tTransferAmount (#858)
Variable catge.reflectionFromToken(uint256,bool).rTransferAmount (#824) is too similar to catge._transferStandard(address,address,uint256).tTransferAmount (#1143)
Variable catge._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to catge._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable catge._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to catge._getValues(uint256).tTransferAmount (#917)
Variable catge._transferBothExcluded(address,address,uint256).rTransferAmount (#858) is too similar to catge._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable catge._transferBothExcluded(address,address,uint256).rTransferAmount (#858) is too similar to catge._getValues(uint256).tTransferAmount (#917)
Variable catge._transferStandard(address,address,uint256).rTransferAmount (#1143) is too similar to catge._getTValues(uint256).tTransferAmount (#925)
Variable catge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#933) is too similar to catge._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable catge._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to catge._transferBothExcluded(address,address,uint256).tTransferAmount (#858)
Variable catge._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to catge._transferStandard(address,address,uint256).tTransferAmount (#1143)
Variable catge.reflectionFromToken(uint256,bool).rTransferAmount (#824) is too similar to catge._getTValues(uint256).tTransferAmount (#925)
Variable catge._transferBothExcluded(address,address,uint256).rTransferAmount (#858) is too similar to catge._transferBothExcluded(address,address,uint256).tTransferAmount (#858)
Variable catge._transferBothExcluded(address,address,uint256).rTransferAmount (#858) is too similar to catge._transferStandard(address,address,uint256).tTransferAmount (#1143)
Variable catge._transferBothExcluded(address,address,uint256).rTransferAmount (#858) is too similar to catge._getTValues(uint256).tTransferAmount (#925)
Variable catge._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to catge._getTValues(uint256).tTransferAmount (#925)
Variable catge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#933) is too similar to catge._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable catge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#933) is too similar to catge._getValues(uint256).tTransferAmount (#917)
Variable catge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#933) is too similar to catge._transferStandard(address,address,uint256).tTransferAmount (#1143)
Variable catge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#933) is too similar to catge._transferBothExcluded(address,address,uint256).tTransferAmount (#858)
Variable catge._getValues(uint256).rTransferAmount (#918) is too similar to catge._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable catge._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to catge._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable catge.reflectionFromToken(uint256,bool).rTransferAmount (#824) is too similar to catge._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable catge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#933) is too similar to catge._getTValues(uint256).tTransferAmount (#925)
Variable catge._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to catge._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable catge._transferStandard(address,address,uint256).rTransferAmount (#1143) is too similar to catge._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable catge._getValues(uint256).rTransferAmount (#918) is too similar to catge._getTValues(uint256).tTransferAmount (#925)
Variable catge._transferBothExcluded(address,address,uint256).rTransferAmount (#858) is too similar to catge._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable catge._getValues(uint256).rTransferAmount (#918) is too similar to catge._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable catge._getValues(uint256).rTransferAmount (#918) is too similar to catge._transferBothExcluded(address,address,uint256).tTransferAmount (#858)
Variable catge._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to catge._transferStandard(address,address,uint256).tTransferAmount (#1143)
Variable catge._getValues(uint256).rTransferAmount (#918) is too similar to catge._getValues(uint256).tTransferAmount (#917)
Variable catge._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to catge._transferBothExcluded(address,address,uint256).tTransferAmount (#858)
Variable catge._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to catge._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable catge._transferStandard(address,address,uint256).rTransferAmount (#1143) is too similar to catge._transferBothExcluded(address,address,uint256).tTransferAmount (#858)
Variable catge._transferStandard(address,address,uint256).rTransferAmount (#1143) is too similar to catge._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable catge._getValues(uint256).rTransferAmount (#918) is too similar to catge._transferStandard(address,address,uint256).tTransferAmount (#1143)
Variable catge._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to catge._getTValues(uint256).tTransferAmount (#925)
Variable catge._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to catge._getValues(uint256).tTransferAmount (#917)
Variable catge._transferStandard(address,address,uint256).rTransferAmount (#1143) is too similar to catge._getValues(uint256).tTransferAmount (#917)
Prevent variables from having similar names.

Additional information: link

catge.slitherConstructorVariables() (#681-1175) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#695)
catge.slitherConstructorVariables() (#681-1175) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 9 (#715)
catge.slitherConstructorVariables() (#681-1175) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#716)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

catge._decimals (#701) should be constant
catge._name (#699) should be constant
catge._symbol (#700) should be constant
catge._tTotal (#695) should be constant
catge.numTokensSellToAddToLiquidity (#716) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#431-434)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#440-444)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#446-448)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#451-456)
unlock() should be declared external:
- Ownable.unlock() (#459-464)
name() should be declared external:
- catge.name() (#750-752)
symbol() should be declared external:
- catge.symbol() (#754-756)
decimals() should be declared external:
- catge.decimals() (#758-760)
totalSupply() should be declared external:
- catge.totalSupply() (#762-764)
transfer(address,uint256) should be declared external:
- catge.transfer(address,uint256) (#771-774)
allowance(address,address) should be declared external:
- catge.allowance(address,address) (#776-778)
approve(address,uint256) should be declared external:
- catge.approve(address,uint256) (#780-783)
transferFrom(address,address,uint256) should be declared external:
- catge.transferFrom(address,address,uint256) (#785-789)
increaseAllowance(address,uint256) should be declared external:
- catge.increaseAllowance(address,uint256) (#791-794)
decreaseAllowance(address,uint256) should be declared external:
- catge.decreaseAllowance(address,uint256) (#796-799)
isExcludedFromReward(address) should be declared external:
- catge.isExcludedFromReward(address) (#801-803)
totalFees() should be declared external:
- catge.totalFees() (#805-807)
deliver(uint256) should be declared external:
- catge.deliver(uint256) (#809-816)
reflectionFromToken(uint256,bool) should be declared external:
- catge.reflectionFromToken(uint256,bool) (#818-827)
excludeFromReward(address) should be declared external:
- catge.excludeFromReward(address) (#835-843)
excludeFromFee(address) should be declared external:
- catge.excludeFromFee(address) (#868-870)
includeInFee(address) should be declared external:
- catge.includeInFee(address) (#872-874)
setRouter(address) should be declared external:
- catge.setRouter(address) (#890-898)
setSwapAndLiquifyEnabled(bool) should be declared external:
- catge.setSwapAndLiquifyEnabled(bool) (#901-904)
disableOrEnableSecFee(bool) should be declared external:
- catge.disableOrEnableSecFee(bool) (#905-907)
isExcludedFromFee(address) should be declared external:
- catge.isExcludedFromFee(address) (#1005-1007)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity 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


Twitter account link seems to be invalid


Unable to find Youtube account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find code repository for the project


Young tokens have high risks of scam / price dump / death


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for CATGE