Delish Finance is building a new blockchain, with a focus on tokenizing real life businesses using NFT's. The project will also encompass a launchpad, NFT's, DEX, and food supply chain management. The team are fully doxxed and KYC'd, with Linkedin profiles and staking will be live on launch day.
All team wallets will be locked before presale starts, barring private sale wallets - which will be unlocked to enable private salers to be airdropped post launch.
DelishFinance.addLiquidity(uint256,uint256) (#881-894) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in DelishFinance._transfer(address,address,uint256) (#773-838):
External calls:
- swapAndLiquify(contractTokenBalance) (#821)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#872-878)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#821)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
- address(_marketingWallet).transfer(bnbForMarketing) (#853)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#829)
- _rOwned[to] = _rOwned[to].add(rAmount) (#751)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#929)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#934)
- _tokenTransfer(from,to,amount,takeFee) (#829)
- _rTotal = _rTotal.sub(rFee) (#705)
- _tokenTransfer(from,to,amount,takeFee) (#829)
- _tOwned[to] = _tOwned[to].add(tAmount) (#753)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#931)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#936)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
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.
DelishFinance.swapAndLiquify(uint256) (#840-861) performs a multiplication on the result of a division:
-bnbForMarketing = newBalance.div(1000).mul(_percentageOfLiquidityForMarketing) (#850)
Consider ordering multiplication before division.
Additional information: link
DelishFinance.addLiquidity(uint256,uint256) (#881-894) ignores return value by uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
Ensure that all the return values of the function calls are used.
Additional information: link
DelishFinance.allowance(address,address).owner (#553) shadows:
- Ownable.owner() (#183-185) (function)
DelishFinance._approve(address,address,uint256).owner (#765) shadows:
- Ownable.owner() (#183-185) (function)
Rename the local variables that shadow another component.
Additional information: link
DelishFinance.setBuyTaxes(uint256,uint256,uint256) (#636-640) should emit an event for:
- _taxFee = taxFee (#637)
- _burnFee = burnFee (#638)
- _liquidityFee = liquidityFee (#639)
DelishFinance.setSellTaxes(uint256,uint256,uint256) (#642-646) should emit an event for:
- _taxFeeSell = taxFee (#643)
- _burnFeeSell = burnFee (#644)
- _liquidityFeeSell = liquidityFee (#645)
DelishFinance.setMaxTxPercent(uint256) (#648-650) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(100) (#649)
DelishFinance.setMinTokenBalance(uint256) (#656-658) should emit an event for:
- _minTokenBalance = minTokenBalance (#657)
DelishFinance.setCooldownPeriod(uint256) (#660-662) should emit an event for:
- _cooldownPeriod = cooldownPeriod (#661)
DelishFinance.setHotlistTxAmount(uint256) (#664-666) should emit an event for:
- _hotlistTxAmount = amount (#665)
DelishFinance.setPercentageOfLiquidityForMarketing(uint256) (#680-682) should emit an event for:
- _percentageOfLiquidityForMarketing = marketingFee (#681)
Emit an event for critical parameter changes.
Additional information: link
DelishFinance.setMarketingWallet(address).marketingWallet (#652) lacks a zero-check on :
- _marketingWallet = marketingWallet (#653)
DelishFinance.setUniswapPair(address).p (#696) lacks a zero-check on :
- uniswapV2Pair = p (#697)
Check that the address is not zero.
Additional information: link
Reentrancy in DelishFinance._transfer(address,address,uint256) (#773-838):
External calls:
- swapAndLiquify(contractTokenBalance) (#821)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#872-878)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#821)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
- address(_marketingWallet).transfer(bnbForMarketing) (#853)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#829)
- _burnFee = 0 (#906)
- _burnFee = _burnFeeSell (#911)
- _burnFee = previousBurnFee (#919)
- _tokenTransfer(from,to,amount,takeFee) (#829)
- _liquidityFee = 0 (#907)
- _liquidityFee = _liquidityFeeSell (#912)
- _liquidityFee = previousLiquidityFee (#920)
- _tokenTransfer(from,to,amount,takeFee) (#829)
- _tFeeTotal = _tFeeTotal.add(tFee) (#706)
- _tokenTransfer(from,to,amount,takeFee) (#829)
- _taxFee = 0 (#905)
- _taxFee = _taxFeeSell (#910)
- _taxFee = previousTaxFee (#918)
Reentrancy in DelishFinance.constructor() (#500-524):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#506-507)
State variables written after the call(s):
- _isExcludedFromAntiWhale[owner()] = true (#517)
- _isExcludedFromAntiWhale[address(this)] = true (#518)
- _isExcludedFromAntiWhale[uniswapV2Pair] = true (#519)
- _isExcludedFromAntiWhale[address(uniswapV2Router)] = true (#520)
- _isExcludedFromAntiWhale[0x000000000000000000000000000000000000dEaD] = true (#521)
- _isExcludedFromAutoLiquidity[uniswapV2Pair] = true (#514)
- _isExcludedFromAutoLiquidity[address(uniswapV2Router)] = true (#515)
- _isExcludedFromFee[owner()] = true (#511)
- _isExcludedFromFee[address(this)] = true (#512)
- uniswapV2Router = _uniswapV2Router (#508)
Reentrancy in DelishFinance.swapAndLiquify(uint256) (#840-861):
External calls:
- swapTokensForBnb(half) (#847)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#872-878)
- addLiquidity(otherHalf,bnbForLiquidity) (#857)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
External calls sending eth:
- address(_marketingWallet).transfer(bnbForMarketing) (#853)
- addLiquidity(otherHalf,bnbForLiquidity) (#857)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
State variables written after the call(s):
- addLiquidity(otherHalf,bnbForLiquidity) (#857)
- _allowances[owner][spender] = amount (#769)
Reentrancy in DelishFinance.transferFrom(address,address,uint256) (#562-566):
External calls:
- _transfer(sender,recipient,amount) (#563)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#872-878)
External calls sending eth:
- _transfer(sender,recipient,amount) (#563)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
- address(_marketingWallet).transfer(bnbForMarketing) (#853)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#564)
- _allowances[owner][spender] = amount (#769)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DelishFinance._transfer(address,address,uint256) (#773-838):
External calls:
- swapAndLiquify(contractTokenBalance) (#821)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#872-878)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#821)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
- address(_marketingWallet).transfer(bnbForMarketing) (#853)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#942)
- _tokenTransfer(from,to,amount,takeFee) (#829)
Reentrancy in DelishFinance.constructor() (#500-524):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#506-507)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#523)
Reentrancy in DelishFinance.swapAndLiquify(uint256) (#840-861):
External calls:
- swapTokensForBnb(half) (#847)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#872-878)
Event emitted after the call(s):
- MarketingSent(_marketingWallet,bnbForMarketing) (#852)
Reentrancy in DelishFinance.swapAndLiquify(uint256) (#840-861):
External calls:
- swapTokensForBnb(half) (#847)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#872-878)
- addLiquidity(otherHalf,bnbForLiquidity) (#857)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
External calls sending eth:
- address(_marketingWallet).transfer(bnbForMarketing) (#853)
- addLiquidity(otherHalf,bnbForLiquidity) (#857)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#770)
- addLiquidity(otherHalf,bnbForLiquidity) (#857)
- SwapAndLiquify(half,bnbForLiquidity,otherHalf) (#860)
Reentrancy in DelishFinance.transferFrom(address,address,uint256) (#562-566):
External calls:
- _transfer(sender,recipient,amount) (#563)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#872-878)
External calls sending eth:
- _transfer(sender,recipient,amount) (#563)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
- address(_marketingWallet).transfer(bnbForMarketing) (#853)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#770)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#564)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#215-220) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is still locked) (#217)
DelishFinance._transfer(address,address,uint256) (#773-838) uses timestamp for comparisons
Dangerous comparisons:
- (_lastHotTx[from] != 0) && block.timestamp - _lastHotTx[from] >= _cooldownPeriod (#791)
Avoid relying on block.timestamp.
Additional information: link
DelishFinance.includeInReward(address) (#618-630) has costly operations inside a loop:
- _excluded.pop() (#626)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#148-150) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#164-167) is never used and should be removed
Remove unused functions.
Additional information: link
DelishFinance._rTotal (#447) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
DelishFinance._hotlistTxAmount (#470) is set pre-construction with a non-constant function or state variable:
- _tTotal / 1000
DelishFinance._maxTxAmount (#472) is set pre-construction with a non-constant function or state variable:
- _tTotal
DelishFinance._minTokenBalance (#473) is set pre-construction with a non-constant function or state variable:
- _tTotal / 400
DelishFinance._antiWhaleThreshold (#490) is set pre-construction with a non-constant function or state variable:
- _tTotal * 75 / 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() (#254) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#255) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#272) is not in mixedCase
Function IUniswapV2Router01.WETH() (#292) is not in mixedCase
Parameter DelishFinance.setSwapAndLiquifyEnabled(bool)._enabled (#684) is not in mixedCase
Variable DelishFinance._isExcludedFromAutoLiquidity (#435) is not in mixedCase
Variable DelishFinance._isExcludedFromAntiWhale (#436) is not in mixedCase
Variable DelishFinance._isBlacklisted (#437) is not in mixedCase
Variable DelishFinance._lastHotTx (#438) is not in mixedCase
Variable DelishFinance._lastHotTxAmount (#439) is not in mixedCase
Variable DelishFinance._marketingWallet (#442) is not in mixedCase
Variable DelishFinance._burnAddress (#443) is not in mixedCase
Constant DelishFinance._name (#450) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DelishFinance._symbol (#451) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DelishFinance._decimals (#452) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DelishFinance._taxFee (#456) is not in mixedCase
Variable DelishFinance._burnFee (#457) is not in mixedCase
Variable DelishFinance._liquidityFee (#458) is not in mixedCase
Variable DelishFinance._taxFeeSell (#461) is not in mixedCase
Variable DelishFinance._burnFeeSell (#462) is not in mixedCase
Variable DelishFinance._liquidityFeeSell (#463) is not in mixedCase
Variable DelishFinance._percentageOfLiquidityForMarketing (#466) is not in mixedCase
Variable DelishFinance._cooldownPeriod (#469) is not in mixedCase
Variable DelishFinance._hotlistTxAmount (#470) is not in mixedCase
Variable DelishFinance._maxTxAmount (#472) is not in mixedCase
Variable DelishFinance._minTokenBalance (#473) is not in mixedCase
Variable DelishFinance._isAntiWhaleEnabled (#489) is not in mixedCase
Variable DelishFinance._antiWhaleThreshold (#490) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in DelishFinance._transfer(address,address,uint256) (#773-838):
External calls:
- swapAndLiquify(contractTokenBalance) (#821)
- address(_marketingWallet).transfer(bnbForMarketing) (#853)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#821)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
- address(_marketingWallet).transfer(bnbForMarketing) (#853)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#829)
- _burnFee = 0 (#906)
- _burnFee = _burnFeeSell (#911)
- _burnFee = previousBurnFee (#919)
- _tokenTransfer(from,to,amount,takeFee) (#829)
- _liquidityFee = 0 (#907)
- _liquidityFee = _liquidityFeeSell (#912)
- _liquidityFee = previousLiquidityFee (#920)
- _tokenTransfer(from,to,amount,takeFee) (#829)
- _rOwned[to] = _rOwned[to].add(rAmount) (#751)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#929)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#934)
- _tokenTransfer(from,to,amount,takeFee) (#829)
- _rTotal = _rTotal.sub(rFee) (#705)
- _tokenTransfer(from,to,amount,takeFee) (#829)
- _tFeeTotal = _tFeeTotal.add(tFee) (#706)
- _tokenTransfer(from,to,amount,takeFee) (#829)
- _tOwned[to] = _tOwned[to].add(tAmount) (#753)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#931)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#936)
- _tokenTransfer(from,to,amount,takeFee) (#829)
- _taxFee = 0 (#905)
- _taxFee = _taxFeeSell (#910)
- _taxFee = previousTaxFee (#918)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#942)
- _tokenTransfer(from,to,amount,takeFee) (#829)
Reentrancy in DelishFinance.swapAndLiquify(uint256) (#840-861):
External calls:
- address(_marketingWallet).transfer(bnbForMarketing) (#853)
External calls sending eth:
- address(_marketingWallet).transfer(bnbForMarketing) (#853)
- addLiquidity(otherHalf,bnbForLiquidity) (#857)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
State variables written after the call(s):
- addLiquidity(otherHalf,bnbForLiquidity) (#857)
- _allowances[owner][spender] = amount (#769)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#770)
- addLiquidity(otherHalf,bnbForLiquidity) (#857)
- SwapAndLiquify(half,bnbForLiquidity,otherHalf) (#860)
Reentrancy in DelishFinance.transferFrom(address,address,uint256) (#562-566):
External calls:
- _transfer(sender,recipient,amount) (#563)
- address(_marketingWallet).transfer(bnbForMarketing) (#853)
External calls sending eth:
- _transfer(sender,recipient,amount) (#563)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#886-893)
- address(_marketingWallet).transfer(bnbForMarketing) (#853)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#564)
- _allowances[owner][spender] = amount (#769)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#770)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#564)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#297) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#298)
Variable DelishFinance.reflectionFromToken(uint256,bool).rTransferAmount (#596) is too similar to DelishFinance._transferStandard(address,address,uint256).tTransferAmount (#925)
Variable DelishFinance._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#724) is too similar to DelishFinance._getTValues(uint256).tTransferAmount (#713)
Variable DelishFinance.reflectionFromToken(uint256,bool).rTransferAmount (#596) is too similar to DelishFinance._getTValues(uint256).tTransferAmount (#713)
Variable DelishFinance._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#724) is too similar to DelishFinance._transferStandard(address,address,uint256).tTransferAmount (#925)
Variable DelishFinance._transferStandard(address,address,uint256).rTransferAmount (#927) is too similar to DelishFinance._getTValues(uint256).tTransferAmount (#713)
Variable DelishFinance._transferStandard(address,address,uint256).rTransferAmount (#927) is too similar to DelishFinance._transferStandard(address,address,uint256).tTransferAmount (#925)
Prevent variables from having similar names.
Additional information: link
DelishFinance.constructor() (#500-524) uses literals with too many digits:
- _isExcludedFromAntiWhale[0x000000000000000000000000000000000000dEaD] = true (#521)
DelishFinance.slitherConstructorVariables() (#427-946) uses literals with too many digits:
- _burnAddress = 0x000000000000000000000000000000000000dEaD (#443)
DelishFinance.slitherConstructorVariables() (#427-946) uses literals with too many digits:
- _tTotal = 500000000 * 10 ** 9 (#446)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DelishFinance._tTotal (#446) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#192-196)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#198-202)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#204-206)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#208-213)
unlock() should be declared external:
- Ownable.unlock() (#215-220)
name() should be declared external:
- DelishFinance.name() (#526-528)
symbol() should be declared external:
- DelishFinance.symbol() (#530-532)
decimals() should be declared external:
- DelishFinance.decimals() (#534-536)
totalSupply() should be declared external:
- DelishFinance.totalSupply() (#538-541)
transfer(address,uint256) should be declared external:
- DelishFinance.transfer(address,uint256) (#548-551)
allowance(address,address) should be declared external:
- DelishFinance.allowance(address,address) (#553-555)
approve(address,uint256) should be declared external:
- DelishFinance.approve(address,uint256) (#557-560)
transferFrom(address,address,uint256) should be declared external:
- DelishFinance.transferFrom(address,address,uint256) (#562-566)
increaseAllowance(address,uint256) should be declared external:
- DelishFinance.increaseAllowance(address,uint256) (#568-571)
decreaseAllowance(address,uint256) should be declared external:
- DelishFinance.decreaseAllowance(address,uint256) (#573-576)
isExcludedFromReward(address) should be declared external:
- DelishFinance.isExcludedFromReward(address) (#578-580)
totalFees() should be declared external:
- DelishFinance.totalFees() (#582-584)
reflectionFromToken(uint256,bool) should be declared external:
- DelishFinance.reflectionFromToken(uint256,bool) (#586-599)
excludeFromReward(address) should be declared external:
- DelishFinance.excludeFromReward(address) (#608-616)
setSwapAndLiquifyEnabled(bool) should be declared external:
- DelishFinance.setSwapAndLiquifyEnabled(bool) (#684-687)
isExcludedFromFee(address) should be declared external:
- DelishFinance.isExcludedFromFee(address) (#761-763)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Unable to find Discord account