CUSTODIY $CTY Token Logo

CTY [CUSTODIY $CTY] Token

About CTY

Listings

Token 2 years
CoinGecko 20 months
CoinMarketCap 20 months
[CoinMarketCap] alert: Please note that Custodiy has migrated to new contract address.
white paper

Custodiy is the Platform for the creation of Smart contracts. WEBSITE WEB3 integrated directly with the bnb chain. WEBAPP to open contracts on multiple chains: ETH, BINANCE.

The use of stable coins guarantees the stability of the value held by the contract. CustodIy uses stablecoins such as USDT, USDC, PAX, BUSD.

All services on the Custodiy Webapp, such as opening contracts or archiving documents are paid for via CTY token

Social

Laser Scorebeta Last Audit: 28 January 2024

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

CUSTODIYCITY._tFeeTotal (#424) is never initialized. It is used in:
- CUSTODIYCITY.totalFees() (#559-562)
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

Reentrancy in CUSTODIYCITY._transfer(address,address,uint256) (#622-657):
External calls:
- swapAndLiquify(contractTokenBalance) (#642)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#642)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#838)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#752)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#761)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#772)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#753)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#782)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#773)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#763)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#784)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#840)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#781)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#771)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#762)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#783)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

CUSTODIYCITY._maxTxAmount (#444) is set pre-construction with a non-constant function or state variable:
- _tTotal.div(100).mul(1)
CUSTODIYCITY._walletHoldingMaxLimit (#448) is set pre-construction with a non-constant function or state variable:
- _tTotal.div(100).mul(2)
CUSTODIYCITY._previousDeveloperFee (#437) is set pre-construction with a non-constant function or state variable:
- _developerFee
CUSTODIYCITY._previousLiquidityFee (#431) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
CUSTODIYCITY._previousMarketingFee (#434) is set pre-construction with a non-constant function or state variable:
- _marketingFee
CUSTODIYCITY._rTotal (#423) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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 version0.8.11 (#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.11 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

Contract name (CUSTODIY $CTY) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Redundant expression "this (#11)" inContext (#4-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

CUSTODIYCITY.addLiquidity(uint256,uint256) (#701-714) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
Ensure that all the return values of the function calls are used.

Additional information: link

CUSTODIYCITY._approve(address,address,uint256).owner (#614) shadows:
- Ownable.owner() (#150-152) (function)
CUSTODIYCITY.allowance(address,address).owner (#529) shadows:
- Ownable.owner() (#150-152) (function)
Rename the local variables that shadow another component.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#117-134) uses assembly
- INLINE ASM (#126-129)
Address.isContract(address) (#80-89) uses assembly
- INLINE ASM (#87)
Do not use evm assembly.

Additional information: link

CUSTODIYCITY.includeInReward(address) (#587-598) has costly operations inside a loop:
- _excluded.pop() (#594)
Use a local variable to hold the loop computation result.

Additional information: link

CUSTODIYCITY.setNumTokensSellToAddToLiquidity(uint256) (#912-915) should emit an event for:
- _minimumTokensBeforeSwap = __minimumTokensBeforeSwap (#914)
CUSTODIYCITY.setWalletMaxHoldingLimit(uint256) (#975-979) should emit an event for:
- _walletHoldingMaxLimit = _amount (#978)
CUSTODIYCITY.setMaxTxAmount(uint256) (#905-909) should emit an event for:
- _maxTxAmount = _mount (#908)
Emit an event for critical parameter changes.

Additional information: link

CUSTODIYCITY.setDeveloperAddress(address)._developerAddress (#924) lacks a zero-check on :
- developerAddress = _developerAddress (#926)
CUSTODIYCITY.setMarketingAddress(address)._marketingAddress (#918) lacks a zero-check on :
- marketingAddress = _marketingAddress (#920)
Check that the address is not zero.

Additional information: link

CUSTODIYCITY.calculateLiquidityFee(uint256) (#844-848) performs a multiplication on the result of a division:
-_amount = _amount.mul(100).div(100 - _marketingFee - _developerFee) (#846)
-_amount.mul(_liquidityFee).div(100) (#847)
CUSTODIYCITY.slitherConstructorVariables() (#404-983) performs a multiplication on the result of a division:
-_walletHoldingMaxLimit = _tTotal.div(100).mul(2) (#448)
CUSTODIYCITY.slitherConstructorVariables() (#404-983) performs a multiplication on the result of a division:
-_maxTxAmount = _tTotal.div(100).mul(1) (#444)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in CUSTODIYCITY.swapAndLiquify(uint256) (#659-675):
External calls:
- swapTokensForEth(half) (#669)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
- addLiquidity(otherHalf,newBalance) (#673)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#673)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#673)
- _allowances[owner][spender] = amount (#618)
Reentrancy in CUSTODIYCITY._transfer(address,address,uint256) (#622-657):
External calls:
- swapAndLiquify(contractTokenBalance) (#642)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#642)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
State variables written after the call(s):
- setSaleFee() (#646)
- _developerFee = _saleDeveloperFee (#868)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _developerFee = _previousDeveloperFee (#861)
- _developerFee = 0 (#854)
- setSaleFee() (#646)
- _liquidityFee = _saleLiquidityFee (#866)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _liquidityFee = 0 (#852)
- _liquidityFee = _previousLiquidityFee (#859)
- setSaleFee() (#646)
- _marketingFee = _saleMarketingFee (#867)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _marketingFee = 0 (#853)
- _marketingFee = _previousMarketingFee (#860)
Reentrancy in CUSTODIYCITY.transferFrom(address,address,uint256) (#538-542):
External calls:
- _transfer(sender,recipient,amount) (#539)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
External calls sending eth:
- _transfer(sender,recipient,amount) (#539)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#540)
- _allowances[owner][spender] = amount (#618)
Apply the check-effects-interactions pattern.

Additional information: link

Address.sendValue(address,uint256) (#91-97) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#108-110) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#72-75) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#112-115) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#68-70) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#117-134) is never used and should be removed
Address.isContract(address) (#80-89) is never used and should be removed
Address.functionCall(address,bytes,string) (#104-106) is never used and should be removed
CUSTODIYCITY.transferToAddressETH(address,uint256) (#936-939) is never used and should be removed
Address.functionCall(address,bytes) (#100-102) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#117-134):
- (success,returndata) = target.call{value: weiValue}(data) (#120)
Low level call in Address.sendValue(address,uint256) (#91-97):
- (success) = recipient.call{value: amount}() (#95)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable CUSTODIYCITY._getValues(uint256).rTransferAmount (#800) is too similar to CUSTODIYCITY._transferFromExcluded(address,address,uint256).tTransferAmount (#770)
Variable CUSTODIYCITY._transferToExcluded(address,address,uint256).rTransferAmount (#760) is too similar to CUSTODIYCITY._transferStandard(address,address,uint256).tTransferAmount (#751)
Variable CUSTODIYCITY._transferFromExcluded(address,address,uint256).rTransferAmount (#770) is too similar to CUSTODIYCITY._transferToExcluded(address,address,uint256).tTransferAmount (#760)
Variable CUSTODIYCITY._transferStandard(address,address,uint256).rTransferAmount (#751) is too similar to CUSTODIYCITY._getTValues(uint256).tTransferAmount (#806)
Variable CUSTODIYCITY._transferFromExcluded(address,address,uint256).rTransferAmount (#770) is too similar to CUSTODIYCITY._transferFromExcluded(address,address,uint256).tTransferAmount (#770)
Variable CUSTODIYCITY._transferBothExcluded(address,address,uint256).rTransferAmount (#780) is too similar to CUSTODIYCITY._transferStandard(address,address,uint256).tTransferAmount (#751)
Variable CUSTODIYCITY._getValues(uint256).rTransferAmount (#800) is too similar to CUSTODIYCITY._transferBothExcluded(address,address,uint256).tTransferAmount (#780)
Variable CUSTODIYCITY._transferToExcluded(address,address,uint256).rTransferAmount (#760) is too similar to CUSTODIYCITY._transferToExcluded(address,address,uint256).tTransferAmount (#760)
Variable CUSTODIYCITY._transferStandard(address,address,uint256).rTransferAmount (#751) is too similar to CUSTODIYCITY._getValues(uint256).tTransferAmount (#799)
Variable CUSTODIYCITY._transferFromExcluded(address,address,uint256).rTransferAmount (#770) is too similar to CUSTODIYCITY._transferStandard(address,address,uint256).tTransferAmount (#751)
Variable CUSTODIYCITY._transferFromExcluded(address,address,uint256).rTransferAmount (#770) is too similar to CUSTODIYCITY._getTValues(uint256).tTransferAmount (#806)
Variable CUSTODIYCITY._getValues(uint256).rTransferAmount (#800) is too similar to CUSTODIYCITY._getValues(uint256).tTransferAmount (#799)
Variable CUSTODIYCITY._getRValues(uint256,uint256,uint256).rTransferAmount (#813) is too similar to CUSTODIYCITY._transferBothExcluded(address,address,uint256).tTransferAmount (#780)
Variable CUSTODIYCITY._getValues(uint256).rTransferAmount (#800) is too similar to CUSTODIYCITY._transferStandard(address,address,uint256).tTransferAmount (#751)
Variable CUSTODIYCITY._transferToExcluded(address,address,uint256).rTransferAmount (#760) is too similar to CUSTODIYCITY._getTValues(uint256).tTransferAmount (#806)
Variable CUSTODIYCITY._transferBothExcluded(address,address,uint256).rTransferAmount (#780) is too similar to CUSTODIYCITY._transferBothExcluded(address,address,uint256).tTransferAmount (#780)
Variable CUSTODIYCITY._transferBothExcluded(address,address,uint256).rTransferAmount (#780) is too similar to CUSTODIYCITY._getValues(uint256).tTransferAmount (#799)
Variable CUSTODIYCITY._transferToExcluded(address,address,uint256).rTransferAmount (#760) is too similar to CUSTODIYCITY._transferBothExcluded(address,address,uint256).tTransferAmount (#780)
Variable CUSTODIYCITY._transferStandard(address,address,uint256).rTransferAmount (#751) is too similar to CUSTODIYCITY._transferFromExcluded(address,address,uint256).tTransferAmount (#770)
Variable CUSTODIYCITY._getRValues(uint256,uint256,uint256).rTransferAmount (#813) is too similar to CUSTODIYCITY._transferToExcluded(address,address,uint256).tTransferAmount (#760)
Variable CUSTODIYCITY._getRValues(uint256,uint256,uint256).rTransferAmount (#813) is too similar to CUSTODIYCITY._getTValues(uint256).tTransferAmount (#806)
Variable CUSTODIYCITY._getRValues(uint256,uint256,uint256).rTransferAmount (#813) is too similar to CUSTODIYCITY._getValues(uint256).tTransferAmount (#799)
Variable CUSTODIYCITY._getRValues(uint256,uint256,uint256).rTransferAmount (#813) is too similar to CUSTODIYCITY._transferFromExcluded(address,address,uint256).tTransferAmount (#770)
Variable CUSTODIYCITY._transferBothExcluded(address,address,uint256).rTransferAmount (#780) is too similar to CUSTODIYCITY._transferToExcluded(address,address,uint256).tTransferAmount (#760)
Variable CUSTODIYCITY._transferStandard(address,address,uint256).rTransferAmount (#751) is too similar to CUSTODIYCITY._transferBothExcluded(address,address,uint256).tTransferAmount (#780)
Variable CUSTODIYCITY._transferFromExcluded(address,address,uint256).rTransferAmount (#770) is too similar to CUSTODIYCITY._transferBothExcluded(address,address,uint256).tTransferAmount (#780)
Variable CUSTODIYCITY._transferStandard(address,address,uint256).rTransferAmount (#751) is too similar to CUSTODIYCITY._transferStandard(address,address,uint256).tTransferAmount (#751)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#272) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#273)
Variable CUSTODIYCITY._getValues(uint256).rTransferAmount (#800) is too similar to CUSTODIYCITY._getTValues(uint256).tTransferAmount (#806)
Variable CUSTODIYCITY._transferFromExcluded(address,address,uint256).rTransferAmount (#770) is too similar to CUSTODIYCITY._getValues(uint256).tTransferAmount (#799)
Variable CUSTODIYCITY._getRValues(uint256,uint256,uint256).rTransferAmount (#813) is too similar to CUSTODIYCITY._transferStandard(address,address,uint256).tTransferAmount (#751)
Variable CUSTODIYCITY._transferBothExcluded(address,address,uint256).rTransferAmount (#780) is too similar to CUSTODIYCITY._transferFromExcluded(address,address,uint256).tTransferAmount (#770)
Variable CUSTODIYCITY._getValues(uint256).rTransferAmount (#800) is too similar to CUSTODIYCITY._transferToExcluded(address,address,uint256).tTransferAmount (#760)
Variable CUSTODIYCITY._transferStandard(address,address,uint256).rTransferAmount (#751) is too similar to CUSTODIYCITY._transferToExcluded(address,address,uint256).tTransferAmount (#760)
Variable CUSTODIYCITY._transferToExcluded(address,address,uint256).rTransferAmount (#760) is too similar to CUSTODIYCITY._transferFromExcluded(address,address,uint256).tTransferAmount (#770)
Variable CUSTODIYCITY._transferToExcluded(address,address,uint256).rTransferAmount (#760) is too similar to CUSTODIYCITY._getValues(uint256).tTransferAmount (#799)
Variable CUSTODIYCITY._transferBothExcluded(address,address,uint256).rTransferAmount (#780) is too similar to CUSTODIYCITY._getTValues(uint256).tTransferAmount (#806)
Prevent variables from having similar names.

Additional information: link

CUSTODIYCITY._tTotal (#422) should be constant
CUSTODIYCITY._tFeeTotal (#424) should be constant
CUSTODIYCITY._name (#426) should be constant
CUSTODIYCITY._symbol (#427) should be constant
CUSTODIYCITY._decimals (#428) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Reentrancy in CUSTODIYCITY._transfer(address,address,uint256) (#622-657):
External calls:
- swapAndLiquify(contractTokenBalance) (#642)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#642)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#755)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- Transfer(sender,recipient,tTransferAmount) (#775)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- Transfer(sender,recipient,tTransferAmount) (#765)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- Transfer(sender,recipient,tTransferAmount) (#786)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- Transfer(sender,address(this),tLiquidity) (#756)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- Transfer(sender,address(this),tLiquidity) (#776)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- Transfer(sender,address(this),tLiquidity) (#766)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- Transfer(sender,address(this),tLiquidity) (#787)
- _tokenTransfer(from,to,amount,takeFee) (#655)
Reentrancy in CUSTODIYCITY.transferFrom(address,address,uint256) (#538-542):
External calls:
- _transfer(sender,recipient,amount) (#539)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
External calls sending eth:
- _transfer(sender,recipient,amount) (#539)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#619)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#540)
Reentrancy in CUSTODIYCITY.swapAndLiquify(uint256) (#659-675):
External calls:
- swapTokensForEth(half) (#669)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
- addLiquidity(otherHalf,newBalance) (#673)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#673)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#619)
- addLiquidity(otherHalf,newBalance) (#673)
- SwapAndLiquify(half,newBalance,otherHalf) (#674)
Reentrancy in CUSTODIYCITY.swapTokensForEth(uint256) (#680-698):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#697)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Parameter CUSTODIYCITY.setSwapAndLiquifyEnabled(bool)._enabled (#929) is not in mixedCase
Variable CUSTODIYCITY._developerFee (#436) is not in mixedCase
Variable CUSTODIYCITY._saleLiquidityFee (#439) is not in mixedCase
Parameter CUSTODIYCITY.setExcludedFromWhale(address,bool)._enabled (#970) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#230) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#246) is not in mixedCase
Variable CUSTODIYCITY._liquidityFee (#430) is not in mixedCase
Variable CUSTODIYCITY._maxTxAmount (#444) is not in mixedCase
Parameter CUSTODIYCITY.setNumTokensSellToAddToLiquidity(uint256).__minimumTokensBeforeSwap (#912) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#229) is not in mixedCase
Event CUSTODIYCITYupdateBuyFee(uint256,uint256) (#872) is not in CapWords
Variable CUSTODIYCITY._saleMarketingFee (#440) is not in mixedCase
Parameter CUSTODIYCITY.calculateLiquidityFee(uint256)._amount (#844) is not in mixedCase
Variable CUSTODIYCITY._marketingFee (#433) is not in mixedCase
Parameter CUSTODIYCITY.setMarketingAddress(address)._marketingAddress (#918) is not in mixedCase
Parameter CUSTODIYCITY.setDeveloperAddress(address)._developerAddress (#924) is not in mixedCase
Parameter CUSTODIYCITY.setMaxTxAmount(uint256)._mount (#905) is not in mixedCase
Variable CUSTODIYCITY._walletHoldingMaxLimit (#448) is not in mixedCase
Function IUniswapV2Router01.WETH() (#267) is not in mixedCase
Event CUSTODIYCITYupdateSellFee(uint256,uint256) (#891) is not in CapWords
Parameter CUSTODIYCITY.setWalletMaxHoldingLimit(uint256)._amount (#975) is not in mixedCase
Parameter CUSTODIYCITY.excludeFromTxLimit(address,bool)._value (#791) is not in mixedCase
Variable CUSTODIYCITY._saleDeveloperFee (#441) is not in mixedCase
Function CUSTODIYCITY._minimumTokensBeforeSwapAmount() (#564-567) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

allowance(address,address) should be declared external:
- CUSTODIYCITY.allowance(address,address) (#529-531)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#159-162)
isExcludedFromReward(address) should be declared external:
- CUSTODIYCITY.isExcludedFromReward(address) (#554-557)
excludeFromReward(address) should be declared external:
- CUSTODIYCITY.excludeFromReward(address) (#577-585)
transferFrom(address,address,uint256) should be declared external:
- CUSTODIYCITY.transferFrom(address,address,uint256) (#538-542)
transfer(address,uint256) should be declared external:
- CUSTODIYCITY.transfer(address,uint256) (#524-527)
totalSupply() should be declared external:
- CUSTODIYCITY.totalSupply() (#515-517)
symbol() should be declared external:
- CUSTODIYCITY.symbol() (#507-509)
setWalletMaxHoldingLimit(uint256) should be declared external:
- CUSTODIYCITY.setWalletMaxHoldingLimit(uint256) (#975-979)
approve(address,uint256) should be declared external:
- CUSTODIYCITY.approve(address,uint256) (#533-536)
getTime() should be declared external:
- Ownable.getTime() (#174-176)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#164-168)
decreaseAllowance(address,uint256) should be declared external:
- CUSTODIYCITY.decreaseAllowance(address,uint256) (#549-552)
name() should be declared external:
- CUSTODIYCITY.name() (#503-505)
decimals() should be declared external:
- CUSTODIYCITY.decimals() (#511-513)
totalFees() should be declared external:
- CUSTODIYCITY.totalFees() (#559-562)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CUSTODIYCITY.setSwapAndLiquifyEnabled(bool) (#929-933)
unlock() should be declared external:
- Ownable.unlock() (#185-190)
increaseAllowance(address,uint256) should be declared external:
- CUSTODIYCITY.increaseAllowance(address,uint256) (#544-547)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#178-183)
setExcludedFromWhale(address,bool) should be declared external:
- CUSTODIYCITY.setExcludedFromWhale(address,bool) (#970-973)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#170-172)
_minimumTokensBeforeSwapAmount() should be declared external:
- CUSTODIYCITY._minimumTokensBeforeSwapAmount() (#564-567)
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.

Contract has 12% buy tax and 11% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


Token has no active CoinGecko listing / rank

Price for CTY