Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
CupidElon.addLiquidity(uint256,uint256) (#742-756) sends eth to arbitrary user
Dangerous calls:
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in CupidElon._transfer(address,address,uint256) (#639-694):
External calls:
- swapAndLiquify(contractTokenBalance) (#677)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#677)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _rOwned[to] = _rOwned[to] + rAmount (#616)
- _rOwned[sender] = _rOwned[sender] - rAmount (#791)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#796)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _rTotal = _rTotal - rFee (#574)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _tOwned[to] = _tOwned[to] + tAmount (#618)
- _tOwned[sender] = _tOwned[sender] - tAmount (#793)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#798)
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.
CupidElon.swapAndLiquify(uint256) (#696-722) performs a multiplication on the result of a division:
-bnbForTeam = newBalance / 10000 * _percentageOfLiquidityForTeam (#706)
CupidElon.swapAndLiquify(uint256) (#696-722) performs a multiplication on the result of a division:
-bnbForMarketing = newBalance / 10000 * _percentageOfLiquidityForMarketing (#707)
Consider ordering multiplication before division.
Additional information: link
CupidElon.allowance(address,address).owner (#417) shadows:
- Ownable.owner() (#43-45) (function)
CupidElon._approve(address,address,uint256).owner (#631) shadows:
- Ownable.owner() (#43-45) (function)
Rename the local variables that shadow another component.
Additional information: link
CupidElon.setMaxTx(uint256) (#500-502) should emit an event for:
- _maxTxAmount = maxTx (#501)
CupidElon.setMinTokenBalance(uint256) (#504-506) should emit an event for:
- _minTokenBalance = minTokenBalance (#505)
CupidElon.setAntiWhaleThreshold(uint256) (#524-526) should emit an event for:
- _antiWhaleThreshold = antiWhaleThreshold (#525)
CupidElon.setFeesTransfer(uint256,uint256) (#528-531) should emit an event for:
- _taxFee = taxFee (#529)
- _liquidityFee = liquidityFee (#530)
CupidElon.setFeesBuy(uint256,uint256) (#533-536) should emit an event for:
- _taxFeeBuy = taxFee (#534)
- _liquidityFeeBuy = liquidityFee (#535)
CupidElon.setFeesSell(uint256,uint256) (#538-541) should emit an event for:
- _taxFeeSell = taxFee (#539)
- _liquidityFeeSell = liquidityFee (#540)
CupidElon.setLiquidityPercentages(uint256,uint256) (#548-551) should emit an event for:
- _percentageOfLiquidityForTeam = teamFee (#549)
- _percentageOfLiquidityForMarketing = marketingFee (#550)
Emit an event for critical parameter changes.
Additional information: link
CupidElon.setAddresses(address,address).teamWallet (#543) lacks a zero-check on :
- _teamWallet = teamWallet (#544)
CupidElon.setAddresses(address,address).marketingWallet (#543) lacks a zero-check on :
- _marketingWallet = marketingWallet (#545)
CupidElon.setUniswapPair(address).p (#565) lacks a zero-check on :
- uniswapV2Pair = p (#566)
Check that the address is not zero.
Additional information: link
Reentrancy in CupidElon._transfer(address,address,uint256) (#639-694):
External calls:
- swapAndLiquify(contractTokenBalance) (#677)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#677)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _liquidityFee = 0 (#767)
- _liquidityFee = _liquidityFeeBuy (#771)
- _liquidityFee = _liquidityFeeSell (#775)
- _liquidityFee = previousLiquidityFee (#782)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _tFeeTotal = _tFeeTotal + tFee (#575)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _taxFee = 0 (#766)
- _taxFee = _taxFeeBuy (#770)
- _taxFee = _taxFeeSell (#774)
- _taxFee = previousTaxFee (#781)
Reentrancy in CupidElon.constructor() (#356-386):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#364-365)
State variables written after the call(s):
- _isExcludedFromAntiWhale[owner()] = true (#375)
- _isExcludedFromAntiWhale[address(this)] = true (#376)
- _isExcludedFromAntiWhale[uniswapV2Pair] = true (#377)
- _isExcludedFromAntiWhale[address(uniswapV2Router)] = true (#378)
- _isExcludedFromAntiWhale[_burnAddress] = true (#379)
- _isExcludedFromAntiWhale[address(0x877d92cad9407f95CFD7288141Ded69A559476a5)] = true (#380)
- _isExcludedFromAutoLiquidity[uniswapV2Pair] = true (#372)
- _isExcludedFromAutoLiquidity[address(uniswapV2Router)] = true (#373)
- _isExcludedFromFee[owner()] = true (#369)
- _isExcludedFromFee[address(this)] = true (#370)
- _isExcludedFromMaxTx[owner()] = true (#382)
- _isExcludedFromMaxTx[address(0x877d92cad9407f95CFD7288141Ded69A559476a5)] = true (#383)
- uniswapV2Router = _uniswapV2Router (#366)
Reentrancy in CupidElon.swapAndLiquify(uint256) (#696-722):
External calls:
- swapTokensForBnb(half) (#703)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
State variables written after the call(s):
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- _allowances[owner][spender] = amount (#635)
Reentrancy in CupidElon.transferFrom(address,address,uint256) (#426-430):
External calls:
- _transfer(sender,recipient,amount) (#427)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
External calls sending eth:
- _transfer(sender,recipient,amount) (#427)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#428)
- _allowances[owner][spender] = amount (#635)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CupidElon._transfer(address,address,uint256) (#639-694):
External calls:
- swapAndLiquify(contractTokenBalance) (#677)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#677)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
Event emitted after the call(s):
- Transfer(sender,to,tAmount) (#620)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- Transfer(sender,recipient,tTransferAmount) (#803)
- _tokenTransfer(from,to,amount,takeFee) (#685)
Reentrancy in CupidElon.constructor() (#356-386):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#364-365)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#385)
Reentrancy in CupidElon.swapAndLiquify(uint256) (#696-722):
External calls:
- swapTokensForBnb(half) (#703)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
Event emitted after the call(s):
- TeamSent(_teamWallet,bnbForTeam) (#711)
Reentrancy in CupidElon.swapAndLiquify(uint256) (#696-722):
External calls:
- swapTokensForBnb(half) (#703)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#712)
Event emitted after the call(s):
- MarketingSent(_marketingWallet,bnbForMarketing) (#715)
Reentrancy in CupidElon.swapAndLiquify(uint256) (#696-722):
External calls:
- swapTokensForBnb(half) (#703)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#636)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- SwapAndLiquify(half,bnbAdded,tokenAdded) (#721)
Reentrancy in CupidElon.transferFrom(address,address,uint256) (#426-430):
External calls:
- _transfer(sender,recipient,amount) (#427)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
External calls sending eth:
- _transfer(sender,recipient,amount) (#427)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#636)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#428)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#74-79) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is still locked) (#76)
Avoid relying on block.timestamp.
Additional information: link
CupidElon.includeInReward(address) (#482-494) has costly operations inside a loop:
- _excluded.pop() (#490)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#13-16) is never used and should be removed
Remove unused functions.
Additional information: link
CupidElon._rTotal (#305) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
CupidElon._maxTxAmount (#327) is set pre-construction with a non-constant function or state variable:
- _tTotal * 100 / 10000
CupidElon._minTokenBalance (#328) is set pre-construction with a non-constant function or state variable:
- _tTotal / 350
CupidElon._antiWhaleThreshold (#345) is set pre-construction with a non-constant function or state variable:
- _tTotal * 200 / 10000
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
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#113) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#114) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#131) is not in mixedCase
Function IUniswapV2Router01.WETH() (#151) is not in mixedCase
Parameter CupidElon.setSwapAndLiquifyEnabled(bool)._enabled (#553) is not in mixedCase
Variable CupidElon._isExcludedFromAutoLiquidity (#292) is not in mixedCase
Variable CupidElon._isExcludedFromAntiWhale (#293) is not in mixedCase
Variable CupidElon._isExcludedFromBuy (#294) is not in mixedCase
Variable CupidElon._isExcludedFromMaxTx (#295) is not in mixedCase
Constant CupidElon._burnAddress (#301) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CupidElon._name (#308) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CupidElon._symbol (#309) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CupidElon._decimals (#310) is not in UPPER_CASE_WITH_UNDERSCORES
Variable CupidElon._taxFee (#316) is not in mixedCase
Variable CupidElon._liquidityFee (#317) is not in mixedCase
Variable CupidElon._taxFeeBuy (#320) is not in mixedCase
Variable CupidElon._liquidityFeeBuy (#321) is not in mixedCase
Variable CupidElon._taxFeeSell (#324) is not in mixedCase
Variable CupidElon._liquidityFeeSell (#325) is not in mixedCase
Variable CupidElon._maxTxAmount (#327) is not in mixedCase
Variable CupidElon._minTokenBalance (#328) is not in mixedCase
Variable CupidElon._isAntiWhaleEnabled (#344) is not in mixedCase
Variable CupidElon._antiWhaleThreshold (#345) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#14)" inContext (#8-17)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in CupidElon._transfer(address,address,uint256) (#639-694):
External calls:
- swapAndLiquify(contractTokenBalance) (#677)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#677)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _liquidityFee = 0 (#767)
- _liquidityFee = _liquidityFeeBuy (#771)
- _liquidityFee = _liquidityFeeSell (#775)
- _liquidityFee = previousLiquidityFee (#782)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _rOwned[to] = _rOwned[to] + rAmount (#616)
- _rOwned[sender] = _rOwned[sender] - rAmount (#791)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#796)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _rTotal = _rTotal - rFee (#574)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _tFeeTotal = _tFeeTotal + tFee (#575)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _tOwned[to] = _tOwned[to] + tAmount (#618)
- _tOwned[sender] = _tOwned[sender] - tAmount (#793)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#798)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _taxFee = 0 (#766)
- _taxFee = _taxFeeBuy (#770)
- _taxFee = _taxFeeSell (#774)
- _taxFee = previousTaxFee (#781)
Event emitted after the call(s):
- Transfer(sender,to,tAmount) (#620)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- Transfer(sender,recipient,tTransferAmount) (#803)
- _tokenTransfer(from,to,amount,takeFee) (#685)
Reentrancy in CupidElon.swapAndLiquify(uint256) (#696-722):
External calls:
- address(_teamWallet).transfer(bnbForTeam) (#712)
Event emitted after the call(s):
- MarketingSent(_marketingWallet,bnbForMarketing) (#715)
Reentrancy in CupidElon.swapAndLiquify(uint256) (#696-722):
External calls:
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
State variables written after the call(s):
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- _allowances[owner][spender] = amount (#635)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#636)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- SwapAndLiquify(half,bnbAdded,tokenAdded) (#721)
Reentrancy in CupidElon.transferFrom(address,address,uint256) (#426-430):
External calls:
- _transfer(sender,recipient,amount) (#427)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
External calls sending eth:
- _transfer(sender,recipient,amount) (#427)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#428)
- _allowances[owner][spender] = amount (#635)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#636)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#428)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#156) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#157)
Variable CupidElon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#590) is too similar to CupidElon._transferStandard(address,address,uint256).tTransferAmount (#787)
Variable CupidElon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#590) is too similar to CupidElon._getTValues(uint256).tTransferAmount (#581)
Variable CupidElon._transferStandard(address,address,uint256).rTransferAmount (#789) is too similar to CupidElon._transferStandard(address,address,uint256).tTransferAmount (#787)
Variable CupidElon.reflectionFromToken(uint256,bool).rTransferAmount (#460) is too similar to CupidElon._transferStandard(address,address,uint256).tTransferAmount (#787)
Variable CupidElon.reflectionFromToken(uint256,bool).rTransferAmount (#460) is too similar to CupidElon._getTValues(uint256).tTransferAmount (#581)
Variable CupidElon._transferStandard(address,address,uint256).rTransferAmount (#789) is too similar to CupidElon._getTValues(uint256).tTransferAmount (#581)
Prevent variables from having similar names.
Additional information: link
CupidElon.slitherConstructorVariables() (#286-807) uses literals with too many digits:
- _tTotal = 100000 * 10 ** 9 (#304)
CupidElon.slitherConstructorConstantVariables() (#286-807) uses literals with too many digits:
- _burnAddress = 0x000000000000000000000000000000000000dEaD (#301)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
CupidElon._tTotal (#304) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#52-55)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#57-61)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#63-65)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#67-72)
unlock() should be declared external:
- Ownable.unlock() (#74-79)
name() should be declared external:
- CupidElon.name() (#388-390)
symbol() should be declared external:
- CupidElon.symbol() (#392-394)
decimals() should be declared external:
- CupidElon.decimals() (#396-398)
totalSupply() should be declared external:
- CupidElon.totalSupply() (#400-405)
transfer(address,uint256) should be declared external:
- CupidElon.transfer(address,uint256) (#412-415)
allowance(address,address) should be declared external:
- CupidElon.allowance(address,address) (#417-419)
approve(address,uint256) should be declared external:
- CupidElon.approve(address,uint256) (#421-424)
transferFrom(address,address,uint256) should be declared external:
- CupidElon.transferFrom(address,address,uint256) (#426-430)
increaseAllowance(address,uint256) should be declared external:
- CupidElon.increaseAllowance(address,uint256) (#432-435)
decreaseAllowance(address,uint256) should be declared external:
- CupidElon.decreaseAllowance(address,uint256) (#437-440)
isExcludedFromReward(address) should be declared external:
- CupidElon.isExcludedFromReward(address) (#442-444)
totalFees() should be declared external:
- CupidElon.totalFees() (#446-448)
reflectionFromToken(uint256,bool) should be declared external:
- CupidElon.reflectionFromToken(uint256,bool) (#450-463)
excludeFromReward(address) should be declared external:
- CupidElon.excludeFromReward(address) (#472-480)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CupidElon.setSwapAndLiquifyEnabled(bool) (#553-556)
isExcludedFromFee(address) should be declared external:
- CupidElon.isExcludedFromFee(address) (#627-629)
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 Twitter account
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account