D9 Finance Token Logo

D9F [D9 Finance] Token

ALERT: rug pull scam

About D9F

Listings

Not Found
Token 22 months
white paper

The eE.1000x Finance. token was predicated upon a redistributive philosophy that seeks to reward holders for their loyalty to the project and platform. What makes E-1000x singular in its ability to generate value is that it's the first reflection token to operate using five different yield generation sources. E-1000x will initially reward 13% in BUSD:

Social

Laser Scorebeta Last Audit: 21 June 2022

report
Token seems to be a scam (type: rug pull scam).

Anti-Scam

Links

Reentrancy in D9FINANCE._transfer(address,address,uint256) (#673-727):
External calls:
- swapTokens(contractTokenBalance) (#707)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#805-811)
- buyBackTokens(balance.div(100)) (#715)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#823-828)
External calls sending eth:
- swapTokens(contractTokenBalance) (#707)
- recipient.transfer(amount) (#1019)
- buyBackTokens(balance.div(100)) (#715)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#823-828)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _liquidityFee = _previousLiquidityFee (#981)
- _liquidityFee = 0 (#976)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _rOwned[marketingWallet] = _rOwned[marketingWallet].add(rLiquidity) (#952)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#868)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#877)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#888)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#898)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#869)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#879)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#889)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#900)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _rTotal = _rTotal.sub(rFee) (#907)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#954)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#897)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#887)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#878)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#899)
- buyBackTokens(balance.div(100)) (#715)
- inSwapAndLiquify = true (#504)
- inSwapAndLiquify = false (#506)
Apply the check-effects-interactions pattern.

Additional information: link

D9FINANCE._isExcluded (#439) is never initialized. It is used in:
- D9FINANCE.balanceOf(address) (#547-550)
- D9FINANCE.isExcludedFromReward(address) (#582-584)
- D9FINANCE.deliver(uint256) (#638-645)
- D9FINANCE._tokenTransfer(address,address,uint256,bool) (#848-864)
- D9FINANCE._takeLiquidity(uint256) (#949-955)
D9FINANCE._excluded (#440) is never initialized. It is used in:
- D9FINANCE._getCurrentSupply() (#937-947)
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


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


Contract ownership is not renounced (belongs to a wallet)

D9FINANCE.swapTokens(uint256) (#729-738) performs a multiplication on the result of a division:
-transferToAddressETH(marketingWallet,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#736)
Consider ordering multiplication before division.

Additional information: link

D9FINANCE.addLiquidity(uint256,uint256) (#833-846) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#838-845)
Ensure that all the return values of the function calls are used.

Additional information: link

D9FINANCE.allowance(address,address).owner (#557) shadows:
- Ownable.owner() (#174-176) (function)
D9FINANCE._approve(address,address,uint256).owner (#665) shadows:
- Ownable.owner() (#174-176) (function)
Rename the local variables that shadow another component.

Additional information: link

D9FINANCE.setCooldownStatus(bool,uint256) (#622-625) should emit an event for:
- cooldownTimerInterval = _interval (#624)
D9FINANCE.setMarketingDivisor(uint256) (#996-998) should emit an event for:
- marketingDivisor = divisor (#997)
D9FINANCE.setNumTokensSellToAddToLiquidity(uint256) (#1000-1002) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#1001)
D9FINANCE.setBuybackUpperLimit(uint256) (#1004-1006) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 9 (#1005)
Emit an event for critical parameter changes.

Additional information: link

D9FINANCE.constructor(address)._marketingWallet (#509) lacks a zero-check on :
- marketingWallet = _marketingWallet (#520)
Check that the address is not zero.

Additional information: link

D9FINANCE.swapTokensForEth(uint256) (#796-814) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (#800)
D9FINANCE.swapTokensForEth(uint256) (#796-814) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#805-811)
D9FINANCE.transferToAddressETH(address,uint256) (#1018-1020) has external calls inside a loop: recipient.transfer(amount) (#1019)
D9FINANCE.swapETHForTokens(uint256) (#816-831) has external calls inside a loop: path[0] = uniswapV2Router.WETH() (#819)
D9FINANCE.swapETHForTokens(uint256) (#816-831) has external calls inside a loop: uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#823-828)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in D9FINANCE._transfer(address,address,uint256) (#673-727):
External calls:
- swapTokens(contractTokenBalance) (#707)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#805-811)
- buyBackTokens(balance.div(100)) (#715)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#823-828)
External calls sending eth:
- swapTokens(contractTokenBalance) (#707)
- recipient.transfer(amount) (#1019)
- buyBackTokens(balance.div(100)) (#715)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#823-828)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _previousLiquidityFee = _liquidityFee (#973)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _previousTaxFee = _taxFee (#972)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _tFeeTotal = _tFeeTotal.add(tFee) (#908)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _taxFee = _previousTaxFee (#980)
- _taxFee = 0 (#975)
Reentrancy in D9FINANCE.constructor(address) (#509-529):
External calls:
- pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#513-514)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#518)
- _isExcludedFromFee[address(this)] = true (#519)
- isTimelockExempt[owner()] = true (#522)
- isTimelockExempt[address(this)] = true (#523)
- isTimelockExempt[DEAD] = true (#524)
- isTimelockExempt[pair] = true (#525)
- isTimelockExempt[address(uniswapV2Router)] = true (#526)
- marketingWallet = _marketingWallet (#520)
- uniswapV2Router = _uniswapV2Router (#516)
Reentrancy in D9FINANCE.transferFrom(address,address,uint256) (#566-570):
External calls:
- _transfer(sender,recipient,amount) (#567)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#823-828)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#805-811)
External calls sending eth:
- _transfer(sender,recipient,amount) (#567)
- recipient.transfer(amount) (#1019)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#823-828)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#568)
- _allowances[owner][spender] = amount (#669)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in D9FINANCE._transfer(address,address,uint256) (#673-727):
External calls:
- swapTokens(contractTokenBalance) (#707)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#805-811)
- buyBackTokens(balance.div(100)) (#715)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#823-828)
External calls sending eth:
- swapTokens(contractTokenBalance) (#707)
- recipient.transfer(amount) (#1019)
- buyBackTokens(balance.div(100)) (#715)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#823-828)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#830)
- buyBackTokens(balance.div(100)) (#715)
- Transfer(sender,recipient,tTransferAmount) (#872)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- Transfer(sender,recipient,tTransferAmount) (#892)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- Transfer(sender,recipient,tTransferAmount) (#882)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- Transfer(sender,recipient,tTransferAmount) (#903)
- _tokenTransfer(from,to,amount,takeFee) (#726)
Reentrancy in D9FINANCE.constructor(address) (#509-529):
External calls:
- pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#513-514)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#528)
Reentrancy in D9FINANCE.swapETHForTokens(uint256) (#816-831):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#823-828)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#830)
Reentrancy in D9FINANCE.swapTokensForEth(uint256) (#796-814):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#805-811)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#813)
Reentrancy in D9FINANCE.transferFrom(address,address,uint256) (#566-570):
External calls:
- _transfer(sender,recipient,amount) (#567)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#823-828)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#805-811)
External calls sending eth:
- _transfer(sender,recipient,amount) (#567)
- recipient.transfer(amount) (#1019)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#823-828)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#670)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#568)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#209-214) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#211)
D9FINANCE._transfer(address,address,uint256) (#673-727) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[from] < block.timestamp,Please wait for cooldown between sells) (#694)
D9FINANCE.doSnipingSwapback(address) (#763-769) uses timestamp for comparisons
Dangerous comparisons:
- launchedTime < block.timestamp (#765)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#104-113) uses assembly
- INLINE ASM (#111)
Address._functionCallWithValue(address,bytes,uint256,string) (#141-158) uses assembly
- INLINE ASM (#150-153)
Do not use evm assembly.

Additional information: link

D9FINANCE.lockTheSwap() (#503-507) has costly operations inside a loop:
- inSwapAndLiquify = true (#504)
D9FINANCE.lockTheSwap() (#503-507) has costly operations inside a loop:
- inSwapAndLiquify = false (#506)
D9FINANCE.removeAllFee() (#969-977) has costly operations inside a loop:
- _previousTaxFee = _taxFee (#972)
D9FINANCE.removeAllFee() (#969-977) has costly operations inside a loop:
- _previousLiquidityFee = _liquidityFee (#973)
D9FINANCE.removeAllFee() (#969-977) has costly operations inside a loop:
- _taxFee = 0 (#975)
D9FINANCE.removeAllFee() (#969-977) has costly operations inside a loop:
- _liquidityFee = 0 (#976)
D9FINANCE._reflectFee(uint256,uint256) (#906-909) has costly operations inside a loop:
- _rTotal = _rTotal.sub(rFee) (#907)
D9FINANCE._reflectFee(uint256,uint256) (#906-909) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal.add(tFee) (#908)
D9FINANCE.restoreAllFee() (#979-982) has costly operations inside a loop:
- _taxFee = _previousTaxFee (#980)
D9FINANCE.restoreAllFee() (#979-982) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (#981)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#141-158) is never used and should be removed
Address.functionCall(address,bytes) (#124-126) is never used and should be removed
Address.functionCall(address,bytes,string) (#128-130) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#132-134) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#136-139) is never used and should be removed
Address.isContract(address) (#104-113) is never used and should be removed
Address.sendValue(address,uint256) (#115-121) is never used and should be removed
Context._msgData() (#27-30) is never used and should be removed
D9FINANCE.addLiquidity(uint256,uint256) (#833-846) is never used and should be removed
SafeMath.mod(uint256,uint256) (#92-94) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#96-99) is never used and should be removed
Remove unused functions.

Additional information: link

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

Low level call in Address.sendValue(address,uint256) (#115-121):
- (success) = recipient.call{value: amount}() (#119)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#141-158):
- (success,returndata) = target.call{value: weiValue}(data) (#144)
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() (#253) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#254) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#270) is not in mixedCase
Function IUniswapV2Router01.WETH() (#291) is not in mixedCase
Parameter D9FINANCE.setTimelockExempt(address[])._users (#598) is not in mixedCase
Parameter D9FINANCE.verifyTimelockExempt(address)._user (#608) is not in mixedCase
Parameter D9FINANCE.removeTimelockExempted(address)._user (#611) is not in mixedCase
Parameter D9FINANCE.batchContestAirdrops(address[],uint256)._users (#615) is not in mixedCase
Parameter D9FINANCE.batchContestAirdrops(address[],uint256)._amount (#615) is not in mixedCase
Parameter D9FINANCE.setCooldownStatus(bool,uint256)._status (#622) is not in mixedCase
Parameter D9FINANCE.setCooldownStatus(bool,uint256)._interval (#622) is not in mixedCase
Parameter D9FINANCE.antisnipingEnable(bool)._status (#759) is not in mixedCase
Parameter D9FINANCE.setBot(address)._address (#780) is not in mixedCase
Parameter D9FINANCE.addBotted(address)._address (#784) is not in mixedCase
Parameter D9FINANCE.isBot(address)._address (#788) is not in mixedCase
Parameter D9FINANCE.deleteBot(address)._address (#792) is not in mixedCase
Parameter D9FINANCE.calculateTaxFee(uint256)._amount (#957) is not in mixedCase
Parameter D9FINANCE.calculateLiquidityFee(uint256)._amount (#963) is not in mixedCase
Parameter D9FINANCE.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#1000) is not in mixedCase
Parameter D9FINANCE.setSwapAndLiquifyEnabled(bool)._enabled (#1008) is not in mixedCase
Parameter D9FINANCE.setBuyBackEnabled(bool)._enabled (#1013) is not in mixedCase
Variable D9FINANCE._taxFee (#458) is not in mixedCase
Variable D9FINANCE._liquidityFee (#461) is not in mixedCase
Variable D9FINANCE.DEAD (#468) is not in mixedCase
Variable D9FINANCE._snipingBots (#473) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#28)" inContext (#22-31)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in D9FINANCE._transfer(address,address,uint256) (#673-727):
External calls:
- swapTokens(contractTokenBalance) (#707)
- recipient.transfer(amount) (#1019)
External calls sending eth:
- swapTokens(contractTokenBalance) (#707)
- recipient.transfer(amount) (#1019)
- buyBackTokens(balance.div(100)) (#715)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#823-828)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _liquidityFee = _previousLiquidityFee (#981)
- _liquidityFee = 0 (#976)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _previousLiquidityFee = _liquidityFee (#973)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _previousTaxFee = _taxFee (#972)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _rOwned[marketingWallet] = _rOwned[marketingWallet].add(rLiquidity) (#952)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#868)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#877)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#888)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#898)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#869)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#879)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#889)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#900)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _rTotal = _rTotal.sub(rFee) (#907)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _tFeeTotal = _tFeeTotal.add(tFee) (#908)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#954)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#897)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#887)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#878)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#899)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- _taxFee = _previousTaxFee (#980)
- _taxFee = 0 (#975)
- buyBackTokens(balance.div(100)) (#715)
- inSwapAndLiquify = true (#504)
- inSwapAndLiquify = false (#506)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#830)
- buyBackTokens(balance.div(100)) (#715)
- Transfer(sender,recipient,tTransferAmount) (#872)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- Transfer(sender,recipient,tTransferAmount) (#882)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- Transfer(sender,recipient,tTransferAmount) (#892)
- _tokenTransfer(from,to,amount,takeFee) (#726)
- Transfer(sender,recipient,tTransferAmount) (#903)
- _tokenTransfer(from,to,amount,takeFee) (#726)
Reentrancy in D9FINANCE.transferFrom(address,address,uint256) (#566-570):
External calls:
- _transfer(sender,recipient,amount) (#567)
- recipient.transfer(amount) (#1019)
External calls sending eth:
- _transfer(sender,recipient,amount) (#567)
- recipient.transfer(amount) (#1019)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#823-828)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#568)
- _allowances[owner][spender] = amount (#669)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#670)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#568)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#296) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#297)
Variable D9FINANCE._transferFromExcluded(address,address,uint256).rTransferAmount (#886) is too similar to D9FINANCE._getTValues(uint256).tTransferAmount (#920)
Variable D9FINANCE._transferBothExcluded(address,address,uint256).rTransferAmount (#896) is too similar to D9FINANCE._transferFromExcluded(address,address,uint256).tTransferAmount (#886)
Variable D9FINANCE._transferBothExcluded(address,address,uint256).rTransferAmount (#896) is too similar to D9FINANCE._transferBothExcluded(address,address,uint256).tTransferAmount (#896)
Variable D9FINANCE._transferToExcluded(address,address,uint256).rTransferAmount (#876) is too similar to D9FINANCE._getValues(uint256).tTransferAmount (#912)
Variable D9FINANCE._transferToExcluded(address,address,uint256).rTransferAmount (#876) is too similar to D9FINANCE._transferToExcluded(address,address,uint256).tTransferAmount (#876)
Variable D9FINANCE._transferFromExcluded(address,address,uint256).rTransferAmount (#886) is too similar to D9FINANCE._transferStandard(address,address,uint256).tTransferAmount (#867)
Variable D9FINANCE._transferBothExcluded(address,address,uint256).rTransferAmount (#896) is too similar to D9FINANCE._transferToExcluded(address,address,uint256).tTransferAmount (#876)
Variable D9FINANCE._transferBothExcluded(address,address,uint256).rTransferAmount (#896) is too similar to D9FINANCE._getValues(uint256).tTransferAmount (#912)
Variable D9FINANCE.reflectionFromToken(uint256,bool).rTransferAmount (#654) is too similar to D9FINANCE._transferToExcluded(address,address,uint256).tTransferAmount (#876)
Variable D9FINANCE._transferStandard(address,address,uint256).rTransferAmount (#867) is too similar to D9FINANCE._transferToExcluded(address,address,uint256).tTransferAmount (#876)
Variable D9FINANCE.reflectionFromToken(uint256,bool).rTransferAmount (#654) is too similar to D9FINANCE._getValues(uint256).tTransferAmount (#912)
Variable D9FINANCE._transferStandard(address,address,uint256).rTransferAmount (#867) is too similar to D9FINANCE._getValues(uint256).tTransferAmount (#912)
Variable D9FINANCE._transferFromExcluded(address,address,uint256).rTransferAmount (#886) is too similar to D9FINANCE._transferFromExcluded(address,address,uint256).tTransferAmount (#886)
Variable D9FINANCE._transferFromExcluded(address,address,uint256).rTransferAmount (#886) is too similar to D9FINANCE._transferBothExcluded(address,address,uint256).tTransferAmount (#896)
Variable D9FINANCE._transferBothExcluded(address,address,uint256).rTransferAmount (#896) is too similar to D9FINANCE._getTValues(uint256).tTransferAmount (#920)
Variable D9FINANCE._transferStandard(address,address,uint256).rTransferAmount (#867) is too similar to D9FINANCE._getTValues(uint256).tTransferAmount (#920)
Variable D9FINANCE._transferFromExcluded(address,address,uint256).rTransferAmount (#886) is too similar to D9FINANCE._transferToExcluded(address,address,uint256).tTransferAmount (#876)
Variable D9FINANCE._transferFromExcluded(address,address,uint256).rTransferAmount (#886) is too similar to D9FINANCE._getValues(uint256).tTransferAmount (#912)
Variable D9FINANCE._transferBothExcluded(address,address,uint256).rTransferAmount (#896) is too similar to D9FINANCE._transferStandard(address,address,uint256).tTransferAmount (#867)
Variable D9FINANCE._transferStandard(address,address,uint256).rTransferAmount (#867) is too similar to D9FINANCE._transferStandard(address,address,uint256).tTransferAmount (#867)
Variable D9FINANCE._getValues(uint256).rTransferAmount (#913) is too similar to D9FINANCE._transferBothExcluded(address,address,uint256).tTransferAmount (#896)
Variable D9FINANCE._transferStandard(address,address,uint256).rTransferAmount (#867) is too similar to D9FINANCE._transferBothExcluded(address,address,uint256).tTransferAmount (#896)
Variable D9FINANCE._transferToExcluded(address,address,uint256).rTransferAmount (#876) is too similar to D9FINANCE._transferFromExcluded(address,address,uint256).tTransferAmount (#886)
Variable D9FINANCE._getValues(uint256).rTransferAmount (#913) is too similar to D9FINANCE._transferStandard(address,address,uint256).tTransferAmount (#867)
Variable D9FINANCE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#928) is too similar to D9FINANCE._transferToExcluded(address,address,uint256).tTransferAmount (#876)
Variable D9FINANCE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#928) is too similar to D9FINANCE._transferBothExcluded(address,address,uint256).tTransferAmount (#896)
Variable D9FINANCE._transferToExcluded(address,address,uint256).rTransferAmount (#876) is too similar to D9FINANCE._getTValues(uint256).tTransferAmount (#920)
Variable D9FINANCE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#928) is too similar to D9FINANCE._transferStandard(address,address,uint256).tTransferAmount (#867)
Variable D9FINANCE.reflectionFromToken(uint256,bool).rTransferAmount (#654) is too similar to D9FINANCE._transferBothExcluded(address,address,uint256).tTransferAmount (#896)
Variable D9FINANCE.reflectionFromToken(uint256,bool).rTransferAmount (#654) is too similar to D9FINANCE._transferStandard(address,address,uint256).tTransferAmount (#867)
Variable D9FINANCE._transferToExcluded(address,address,uint256).rTransferAmount (#876) is too similar to D9FINANCE._transferBothExcluded(address,address,uint256).tTransferAmount (#896)
Variable D9FINANCE._transferToExcluded(address,address,uint256).rTransferAmount (#876) is too similar to D9FINANCE._transferStandard(address,address,uint256).tTransferAmount (#867)
Variable D9FINANCE._getValues(uint256).rTransferAmount (#913) is too similar to D9FINANCE._getValues(uint256).tTransferAmount (#912)
Variable D9FINANCE._transferStandard(address,address,uint256).rTransferAmount (#867) is too similar to D9FINANCE._transferFromExcluded(address,address,uint256).tTransferAmount (#886)
Variable D9FINANCE._getValues(uint256).rTransferAmount (#913) is too similar to D9FINANCE._transferFromExcluded(address,address,uint256).tTransferAmount (#886)
Variable D9FINANCE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#928) is too similar to D9FINANCE._getValues(uint256).tTransferAmount (#912)
Variable D9FINANCE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#928) is too similar to D9FINANCE._transferFromExcluded(address,address,uint256).tTransferAmount (#886)
Variable D9FINANCE._getValues(uint256).rTransferAmount (#913) is too similar to D9FINANCE._getTValues(uint256).tTransferAmount (#920)
Variable D9FINANCE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#928) is too similar to D9FINANCE._getTValues(uint256).tTransferAmount (#920)
Variable D9FINANCE.reflectionFromToken(uint256,bool).rTransferAmount (#654) is too similar to D9FINANCE._transferFromExcluded(address,address,uint256).tTransferAmount (#886)
Variable D9FINANCE.reflectionFromToken(uint256,bool).rTransferAmount (#654) is too similar to D9FINANCE._getTValues(uint256).tTransferAmount (#920)
Variable D9FINANCE._getValues(uint256).rTransferAmount (#913) is too similar to D9FINANCE._transferToExcluded(address,address,uint256).tTransferAmount (#876)
Prevent variables from having similar names.

Additional information: link

D9FINANCE.slitherConstructorVariables() (#428-1025) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 9 (#443)
D9FINANCE.slitherConstructorVariables() (#428-1025) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#466)
D9FINANCE.slitherConstructorVariables() (#428-1025) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#468)
D9FINANCE.slitherConstructorVariables() (#428-1025) uses literals with too many digits:
- minimumTokensBeforeSwap = 100000 * 10 ** 9 (#469)
D9FINANCE.slitherConstructorVariables() (#428-1025) uses literals with too many digits:
- buyBackUpperLimit = 100000 * 10 ** 9 (#470)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

D9FINANCE.DEAD (#468) should be constant
D9FINANCE._decimals (#452) should be constant
D9FINANCE._name (#450) should be constant
D9FINANCE._symbol (#451) should be constant
D9FINANCE._tTotal (#443) should be constant
D9FINANCE.antiwhale (#477) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#183-186)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#188-192)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#194-196)
getTime() should be declared external:
- Ownable.getTime() (#198-200)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#202-207)
unlock() should be declared external:
- Ownable.unlock() (#209-214)
name() should be declared external:
- D9FINANCE.name() (#531-533)
symbol() should be declared external:
- D9FINANCE.symbol() (#535-537)
decimals() should be declared external:
- D9FINANCE.decimals() (#539-541)
totalSupply() should be declared external:
- D9FINANCE.totalSupply() (#543-545)
transfer(address,uint256) should be declared external:
- D9FINANCE.transfer(address,uint256) (#552-555)
allowance(address,address) should be declared external:
- D9FINANCE.allowance(address,address) (#557-559)
approve(address,uint256) should be declared external:
- D9FINANCE.approve(address,uint256) (#561-564)
transferFrom(address,address,uint256) should be declared external:
- D9FINANCE.transferFrom(address,address,uint256) (#566-570)
increaseAllowance(address,uint256) should be declared external:
- D9FINANCE.increaseAllowance(address,uint256) (#572-575)
decreaseAllowance(address,uint256) should be declared external:
- D9FINANCE.decreaseAllowance(address,uint256) (#577-580)
isExcludedFromReward(address) should be declared external:
- D9FINANCE.isExcludedFromReward(address) (#582-584)
totalFees() should be declared external:
- D9FINANCE.totalFees() (#586-588)
minimumTokensBeforeSwapAmount() should be declared external:
- D9FINANCE.minimumTokensBeforeSwapAmount() (#590-592)
buyBackUpperLimitAmount() should be declared external:
- D9FINANCE.buyBackUpperLimitAmount() (#594-596)
verifyTimelockExempt(address) should be declared external:
- D9FINANCE.verifyTimelockExempt(address) (#608-610)
batchContestAirdrops(address[],uint256) should be declared external:
- D9FINANCE.batchContestAirdrops(address[],uint256) (#615-619)
setCooldownStatus(bool,uint256) should be declared external:
- D9FINANCE.setCooldownStatus(bool,uint256) (#622-625)
deliver(uint256) should be declared external:
- D9FINANCE.deliver(uint256) (#638-645)
reflectionFromToken(uint256,bool) should be declared external:
- D9FINANCE.reflectionFromToken(uint256,bool) (#648-657)
checkAnyBuy(address) should be declared external:
- D9FINANCE.checkAnyBuy(address) (#751-753)
checkBuyBlock(address) should be declared external:
- D9FINANCE.checkBuyBlock(address) (#755-757)
isExcludedFromFee(address) should be declared external:
- D9FINANCE.isExcludedFromFee(address) (#984-986)
excludeFromFee(address) should be declared external:
- D9FINANCE.excludeFromFee(address) (#988-990)
includeInFee(address) should be declared external:
- D9FINANCE.includeInFee(address) (#992-994)
setSwapAndLiquifyEnabled(bool) should be declared external:
- D9FINANCE.setSwapAndLiquifyEnabled(bool) (#1008-1011)
setBuyBackEnabled(bool) should be declared external:
- D9FINANCE.setBuyBackEnabled(bool) (#1013-1016)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.

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


Average 30d PancakeSwap liquidity is low.


Average 30d number of PancakeSwap swaps is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to find audit link on the website


Unable to find whitepaper link on the website


Token is not listed at Mobula.Finance

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


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for D9F

News for D9F