dexIRA Token Logo

DEX [dexIRA] Token

About DEX

Listings

Token 3 years
CoinMarketCap 2 years

Website

dexIRA provides fully automated multi-currency dividend rewards, advanced buyback protocols and tokenomics that promote long term holding and wealth generation.

The platform is based on the synergy of two concepts: DEX (decentralized exchanges) and IRAs (Individual Retirement Accounts). Borrowing from the long-term investment idea behind a traditional IRA, dexIRA investors can grow their holdings commission-free similar to tax-free IRA contributions. This allows members to increase their stake in the reward pool over time without sacrificing initial capital.

After a one-year holding period, investors can sell their DEX holdings tax-free and penalty-free. However, similar to the age restrictions on a traditional IRA, if holders choose to sell early, they're penalized.

Laser Scorebeta Last Audit: 4 February 2024

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

DexIRA.swapAndLiquify(uint256) (#1973-2027) sends eth to arbitrary user
Dangerous calls:
- (success,None) = address(buyBackWallet).call{value: buyBackBalance}() (#2021)
DexIRA.addLiquidity(uint256,uint256) (#2047-2060) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in DexIRA.buyBackTokensWithNoFees() (#1754-1785):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}(0,path,address(msg.sender),block.timestamp + 360) (#1773-1778)
State variables written after the call(s):
- _isExcludedFromFees[msg.sender] = prevExclusion (#1780)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#946-973):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#955)
State variables written after the call(s):
- rawBNBWithdrawnDividends[user] = rawBNBWithdrawnDividends[user].sub(_withdrawableDividend) (#959)
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#958)
Reentrancy in DividendPayingToken.swapETHForTokens(address,uint256) (#817-860):
External calls:
- swapRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}(1,path,address(recipient),block.timestamp + 360) (#836-846)
- (success) = recipient.call{gas: 3000,value: ethAmount}() (#851)
State variables written after the call(s):
- rawBNBWithdrawnDividends[recipient] = rawBNBWithdrawnDividends[recipient].sub(ethAmount) (#855)
Reentrancy in DexIRA._transfer(address,address,uint256) (#1815-1969):
External calls:
- swapAndLiquify(swapTokens) (#1919)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
- (success,None) = address(operationsWallet).call{value: operationsBalance}() (#2014)
- (success,None) = address(buyBackWallet).call{value: buyBackBalance}() (#2021)
- swapAndSendDividends(sellTokens) (#1922)
- (success) = address(dividendTracker).call{value: dividends}() (#2065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1919)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
- (success,None) = address(operationsWallet).call{value: operationsBalance}() (#2014)
- (success,None) = address(buyBackWallet).call{value: buyBackBalance}() (#2021)
- swapAndSendDividends(sellTokens) (#1922)
- (success) = address(dividendTracker).call{value: dividends}() (#2065)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1952)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#660)
- _balances[recipient] = _balances[recipient].add(amount) (#661)
- super._transfer(from,to,amount) (#1955)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#660)
- _balances[recipient] = _balances[recipient].add(amount) (#661)
- _holderLastSellDate[from] = block.timestamp (#1947)
- swapping = false (#1924)
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.

DexIRA._transfer(address,address,uint256) (#1815-1969) uses a dangerous strict equality:
- _holderLastSellDate[to] == block.timestamp (#1849)
DexIRA.getHolderSellFactor(address) (#1623-1640) uses a dangerous strict equality:
- _holderLastSellDate[holder] == 0 (#1629)
Don't use strict equality to determine if an account has enough Ether or tokens.

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

DexIRA.getHolderSellFactor(address) (#1623-1640) performs a multiplication on the result of a division:
-timeSinceLastSale = (block.timestamp.sub(_holderLastSellDate[holder])).div(1209600) (#1626)
-sellFeeIncreaseFactor - (timeSinceLastSale.mul(10)) (#1639)
DexIRA._transfer(address,address,uint256) (#1815-1969) performs a multiplication on the result of a division:
-fees = amount.mul(totalFees).div(100) (#1941)
-fees = fees.mul(getHolderSellFactor(from)).div(100) (#1946)
DexIRA._transfer(address,address,uint256) (#1815-1969) performs a multiplication on the result of a division:
-_airDropAddressNextSellDate[from] = block.timestamp + (86400 * (tokensToSubtract.mul(100).div(airDropMaxSell))) / 100 (#1889)
Consider ordering multiplication before division.

Additional information: link

DexIRA.swapAndLiquify(uint256) (#1973-2027) has external calls inside a loop: (success,None) = address(operationsWallet).call{value: operationsBalance}() (#2014)
DexIRA.swapAndLiquify(uint256) (#1973-2027) has external calls inside a loop: (success,None) = address(buyBackWallet).call{value: buyBackBalance}() (#2021)
DexIRA.swapTokensForEth(uint256) (#2029-2045) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
DexIRA.swapTokensForEth(uint256) (#2029-2045) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (#2033)
DexIRA._transfer(address,address,uint256) (#1815-1969) has external calls inside a loop: dividendTracker.process(gas) (#1963-1967)
DexIRA.addLiquidity(uint256,uint256) (#2047-2060) has external calls inside a loop: uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
DividendPayingToken._withdrawDividendOfUser(address) (#946-973) has external calls inside a loop: (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#955)
DividendPayingToken.swapETHForTokens(address,uint256) (#817-860) has external calls inside a loop: (success) = recipient.call{gas: 3000,value: ethAmount}() (#851)
DexIRA.swapAndSendDividends(uint256) (#2062-2070) has external calls inside a loop: (success) = address(dividendTracker).call{value: dividends}() (#2065)
DexIRA._transfer(address,address,uint256) (#1815-1969) has external calls inside a loop: dividendTracker.setBalance(address(to),balanceOf(to)) (#1958)
DexIRA._transfer(address,address,uint256) (#1815-1969) has external calls inside a loop: dividendTracker.setBalance(address(from),balanceOf(from)) (#1957)
DividendPayingToken.swapETHForTokens(address,uint256) (#817-860) has external calls inside a loop: swapRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}(1,path,address(recipient),block.timestamp + 360) (#836-846)
DividendPayingToken.swapETHForTokens(address,uint256) (#817-860) has external calls inside a loop: path[0] = swapRouter.WETH() (#832)
Favor pull over push strategy for external calls.

Additional information: link

DexIRA._transfer(address,address,uint256) (#1815-1969) has costly operations inside a loop:
- swapping = true (#1916)
DexIRA._transfer(address,address,uint256) (#1815-1969) has costly operations inside a loop:
- swapping = false (#1924)
DexIRA._transfer(address,address,uint256) (#1815-1969) has costly operations inside a loop:
- airDropLimitInEffect = false (#1875)
Use a local variable to hold the loop computation result.

Additional information: link

Reentrancy in DexIRA.updateDividendTracker(address) (#1436-1451):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1443)
- newDividendTracker.excludeFromDividends(address(this)) (#1444)
- newDividendTracker.excludeFromDividends(owner()) (#1445)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1446)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1450)
Apply the check-effects-interactions pattern.

Additional information: link

DexIRA._transfer(address,address,uint256).lastProcessedIndex (#1963) is a local variable never initialized
DexIRA._transfer(address,address,uint256).iterations (#1963) is a local variable never initialized
DividendPayingToken.swapETHForTokens(address,uint256).swapSuccess (#822) is a local variable never initialized
DexIRA._transfer(address,address,uint256).claims (#1963) is a local variable never initialized
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

DexIRA._transfer(address,address,uint256) (#1815-1969) ignores return value by dividendTracker.process(gas) (#1963-1967)
DexIRA.addLiquidity(uint256,uint256) (#2047-2060) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
DexIRA.claim() (#1788-1790) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#1789)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string,uint8)._symbol (#804) shadows:
- ERC20._symbol (#480) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#1003) shadows:
- Ownable._owner (#42) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#986) shadows:
- Ownable._owner (#42) (state variable)
DividendPayingToken.constructor(string,string,uint8)._decimals (#804) shadows:
- ERC20._decimals (#481) (state variable)
DividendPayingToken.dividendOf(address)._owner (#979) shadows:
- Ownable._owner (#42) (state variable)
DividendPayingToken.constructor(string,string,uint8)._name (#804) shadows:
- ERC20._name (#479) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#993) shadows:
- Ownable._owner (#42) (state variable)
Rename the local variables that shadow another component.

Additional information: link

DexIRA.updateSwapTokensAtAmount(uint256) (#1424-1428) should emit an event for:
- swapTokensAtAmount = newAmount (#1426)
DexIRA.updateMaxTxn(uint256) (#1454-1456) should emit an event for:
- maxSellTransactionAmount = maxTxnAmount (#1455)
Emit an event for critical parameter changes.

Additional information: link

Variable 'DexIRA._transfer(address,address,uint256).lastProcessedIndex (#1963)' in DexIRA._transfer(address,address,uint256) (#1815-1969) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1964)
Variable 'DexIRA._transfer(address,address,uint256).iterations (#1963)' in DexIRA._transfer(address,address,uint256) (#1815-1969) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1964)
Variable 'DexIRA._transfer(address,address,uint256).claims (#1963)' in DexIRA._transfer(address,address,uint256) (#1815-1969) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1964)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in DividendPayingToken.swapETHForTokens(address,uint256) (#817-860):
External calls:
- swapRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}(1,path,address(recipient),block.timestamp + 360) (#836-846)
State variables written after the call(s):
- rawBNBWithdrawnDividends[recipient] = rawBNBWithdrawnDividends[recipient].add(ethAmount) (#850)
Reentrancy in DividendPayingToken.swapETHForTokens(address,uint256) (#817-860):
External calls:
- swapRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}(1,path,address(recipient),block.timestamp + 360) (#836-846)
- (success) = recipient.call{gas: 3000,value: ethAmount}() (#851)
State variables written after the call(s):
- withdrawnDividends[recipient] = withdrawnDividends[recipient].sub(ethAmount) (#854)
Reentrancy in DexIRA.swapAndLiquify(uint256) (#1973-2027):
External calls:
- swapTokensForEth(half) (#1997)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
- addLiquidity(otherHalf,newBalance) (#2003)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#2003)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#2003)
- _allowances[owner][spender] = amount (#726)
Reentrancy in DexIRADividendTracker.processAccount(address,bool) (#2336-2346):
External calls:
- amount = _withdrawDividendOfUser(account) (#2337)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#955)
- swapRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}(1,path,address(recipient),block.timestamp + 360) (#836-846)
- (success) = recipient.call{gas: 3000,value: ethAmount}() (#851)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#2340)
Reentrancy in DexIRA._transfer(address,address,uint256) (#1815-1969):
External calls:
- swapAndLiquify(swapTokens) (#1919)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
- (success,None) = address(operationsWallet).call{value: operationsBalance}() (#2014)
- (success,None) = address(buyBackWallet).call{value: buyBackBalance}() (#2021)
- swapAndSendDividends(sellTokens) (#1922)
- (success) = address(dividendTracker).call{value: dividends}() (#2065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1919)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
- (success,None) = address(operationsWallet).call{value: operationsBalance}() (#2014)
- (success,None) = address(buyBackWallet).call{value: buyBackBalance}() (#2021)
- swapAndSendDividends(sellTokens) (#1922)
- (success) = address(dividendTracker).call{value: dividends}() (#2065)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1922)
- _allowances[owner][spender] = amount (#726)
Reentrancy in DexIRA.swapAndLiquify(uint256) (#1973-2027):
External calls:
- swapTokensForEth(half) (#1997)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
- addLiquidity(otherHalf,newBalance) (#2003)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
- swapTokensForEth(tokensForBuyBackAndOperations) (#2005)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#2003)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
State variables written after the call(s):
- swapTokensForEth(tokensForBuyBackAndOperations) (#2005)
- _allowances[owner][spender] = amount (#726)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DexIRA._transfer(address,address,uint256) (#1815-1969):
External calls:
- swapAndLiquify(swapTokens) (#1919)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
- (success,None) = address(operationsWallet).call{value: operationsBalance}() (#2014)
- (success,None) = address(buyBackWallet).call{value: buyBackBalance}() (#2021)
- swapAndSendDividends(sellTokens) (#1922)
- (success) = address(dividendTracker).call{value: dividends}() (#2065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1957)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1958)
- dividendTracker.process(gas) (#1963-1967)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1919)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
- (success,None) = address(operationsWallet).call{value: operationsBalance}() (#2014)
- (success,None) = address(buyBackWallet).call{value: buyBackBalance}() (#2021)
- swapAndSendDividends(sellTokens) (#1922)
- (success) = address(dividendTracker).call{value: dividends}() (#2065)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1964)
Reentrancy in DexIRADividendTracker.processAccount(address,bool) (#2336-2346):
External calls:
- amount = _withdrawDividendOfUser(account) (#2337)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#955)
- swapRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}(1,path,address(recipient),block.timestamp + 360) (#836-846)
- (success) = recipient.call{gas: 3000,value: ethAmount}() (#851)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#2341)
Reentrancy in DexIRA._transfer(address,address,uint256) (#1815-1969):
External calls:
- swapAndLiquify(swapTokens) (#1919)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
- (success,None) = address(operationsWallet).call{value: operationsBalance}() (#2014)
- (success,None) = address(buyBackWallet).call{value: buyBackBalance}() (#2021)
- swapAndSendDividends(sellTokens) (#1922)
- (success) = address(dividendTracker).call{value: dividends}() (#2065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1919)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
- (success,None) = address(operationsWallet).call{value: operationsBalance}() (#2014)
- (success,None) = address(buyBackWallet).call{value: buyBackBalance}() (#2021)
- swapAndSendDividends(sellTokens) (#1922)
- (success) = address(dividendTracker).call{value: dividends}() (#2065)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#727)
- swapAndSendDividends(sellTokens) (#1922)
- SendDividends(tokens,dividends) (#2068)
- swapAndSendDividends(sellTokens) (#1922)
- Transfer(sender,recipient,amount) (#662)
- super._transfer(from,address(this),fees) (#1952)
- Transfer(sender,recipient,amount) (#662)
- super._transfer(from,to,amount) (#1955)
Reentrancy in DexIRA.swapAndLiquify(uint256) (#1973-2027):
External calls:
- swapTokensForEth(half) (#1997)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
- addLiquidity(otherHalf,newBalance) (#2003)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
- swapTokensForEth(tokensForBuyBackAndOperations) (#2005)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
- (success,None) = address(operationsWallet).call{value: operationsBalance}() (#2014)
- (success,None) = address(buyBackWallet).call{value: buyBackBalance}() (#2021)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#2003)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
- (success,None) = address(operationsWallet).call{value: operationsBalance}() (#2014)
- (success,None) = address(buyBackWallet).call{value: buyBackBalance}() (#2021)
Event emitted after the call(s):
- SwapAndLiquify(half,newBalance,otherHalf) (#2025)
Reentrancy in DexIRA.swapAndSendDividends(uint256) (#2062-2070):
External calls:
- swapTokensForEth(tokens) (#2063)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
- (success) = address(dividendTracker).call{value: dividends}() (#2065)
External calls sending eth:
- (success) = address(dividendTracker).call{value: dividends}() (#2065)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (#2068)
Reentrancy in DexIRA.updateDividendTracker(address) (#1436-1451):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1443)
- newDividendTracker.excludeFromDividends(address(this)) (#1444)
- newDividendTracker.excludeFromDividends(owner()) (#1445)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1446)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1448)
Reentrancy in DexIRA.buyBackTokensWithNoFees() (#1754-1785):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}(0,path,address(msg.sender),block.timestamp + 360) (#1773-1778)
Event emitted after the call(s):
- BuyBackWithNoFees(msg.sender,ethAmount) (#1782)
Reentrancy in DexIRA.swapAndLiquify(uint256) (#1973-2027):
External calls:
- swapTokensForEth(half) (#1997)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
- addLiquidity(otherHalf,newBalance) (#2003)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#2003)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#727)
- addLiquidity(otherHalf,newBalance) (#2003)
Reentrancy in DexIRA.processDividendTracker(uint256) (#1793-1796):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1794)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1795)
Reentrancy in DexIRA.swapAndLiquify(uint256) (#1973-2027):
External calls:
- swapTokensForEth(half) (#1997)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
- addLiquidity(otherHalf,newBalance) (#2003)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
- swapTokensForEth(tokensForBuyBackAndOperations) (#2005)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2038-2044)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#2003)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2052-2059)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#727)
- swapTokensForEth(tokensForBuyBackAndOperations) (#2005)
Reentrancy in DexIRA._setAutomatedMarketMakerPair(address,bool) (#1799-1807):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1804)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1806)
Apply the check-effects-interactions pattern.

Additional information: link

DexIRA.getHolderSellFactor(address) (#1623-1640) uses timestamp for comparisons
Dangerous comparisons:
- _holderLastSellDate[holder] == 0 (#1629)
- timeSinceLastSale >= 7 (#1634)
DexIRA.getTradingIsEnabled() (#1810-1812) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp >= tradingEnabledTimestamp (#1811)
DexIRADividendTracker.getAccount(address) (#2203-2246) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#2243-2245)
DexIRA.getWalletTokensAvailableToSell(address) (#1654-1667) uses timestamp for comparisons
Dangerous comparisons:
- _airDropTokensRemaining[holder] <= balance (#1658)
- block.timestamp <= _airDropAddressNextSellDate[holder] (#1661)
DexIRA._transfer(address,address,uint256) (#1815-1969) uses timestamp for comparisons
Dangerous comparisons:
- amount == 0 (#1831)
- require(bool,string)(_holderLastTransferTimestamp[to] < block.timestamp,_transfer:: Transfer Delay enabled. Please try again later.) (#1840)
- _holderLastSellDate[to] == block.timestamp (#1849)
- _holderLastSellDate[to] >= block.timestamp (#1857)
- ! swapping && tradingIsEnabled && from != address(uniswapV2Router) && ! _isExcludedFromFees[to] && ! _isExcludedFromFees[from] (#1863-1867)
- require(bool,string)(amount <= maxSellTransactionAmount,_transfer:: Transfer amount exceeds the maxSellTransactionAmount.) (#1869)
- airDropLimitLiftDate <= block.timestamp (#1874)
- _isAirdoppedWallet[from] && senderBalance.sub(amount) < _airDropTokensRemaining[from] (#1878)
- require(bool,string)(_airDropAddressNextSellDate[from] <= block.timestamp && block.timestamp >= airDropLimitLiftDate.sub(777600),_transfer:: White List Wallet cannot sell whitelist tokens until next sell date. Please read the contract for your next sale date.) (#1880)
- require(bool,string)(tokensToSubtract <= airDropMaxSell,_transfer:: May not sell more than 10% of White List tokens in a single day until the White List Limit is lifted.) (#1887)
- canSwap = contractTokenBalance >= swapTokensAtAmount (#1896)
- tradingIsEnabled && canSwap && ! swapping && ! automatedMarketMakerPairs[from] && from != liquidityWallet && to != liquidityWallet && from != operationsWallet && to != operationsWallet && from != migrationSwapContract && to != migrationSwapContract && from != buyBackWallet && to != buyBackWallet && ! _isExcludedFromFees[to] && ! _isExcludedFromFees[from] && from != address(this) && from != address(dividendTracker) (#1899-1914)
- takeFee = tradingIsEnabled && ! swapping (#1928)
DexIRADividendTracker.canAutoClaim(uint256) (#2267-2273) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#2268)
- block.timestamp.sub(lastClaimTime) >= claimWait (#2272)
Avoid relying on block.timestamp.

Additional information: link

DexIRA.isContract(address) (#1591-1600) uses assembly
- INLINE ASM (#1598)
Do not use evm assembly.

Additional information: link

DexIRA.setRewardTokenWithCustomAMM(address,address) (#1737-1745) compares to a boolean constant:
-require(bool,string)(isAMMWhitelisted(ammContractAddress) == true,DEXIRA: setRewardToken:: AMM is not whitelisted!) (#1742)
DividendPayingToken.setRewardToken(address,address,address) (#879-897) compares to a boolean constant:
-userHasCustomRewardToken[holder] == true (#880)
DexIRA.airdropToWallets(address[],uint256[]) (#1508-1521) compares to a boolean constant:
-_isAirdoppedWallet[wallet] == false && ! isContract(wallet) (#1513)
Remove the equality to the boolean constant.

Additional information: link

SafeMathInt.div(int256,int256) (#274-280) is never used and should be removed
SafeMathInt.abs(int256) (#303-306) is never used and should be removed
SafeMathInt.mul(int256,int256) (#262-269) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#464-467) is never used and should be removed
Context._msgData() (#35-38) is never used and should be removed
SafeMath.mod(uint256,uint256) (#448-450) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1013-1019) is never used and should be removed
Remove unused functions.

Additional information: link

DexIRA.totalFees (#1300) is set pre-construction with a non-constant function or state variable:
- BNBRewardsFee.add(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 DividendPayingToken.swapETHForTokens(address,uint256) (#817-860):
- (success) = recipient.call{gas: 3000,value: ethAmount}() (#851)
Low level call in DexIRA.swapAndSendDividends(uint256) (#2062-2070):
- (success) = address(dividendTracker).call{value: dividends}() (#2065)
Low level call in DividendPayingToken._withdrawDividendOfUser(address) (#946-973):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#955)
Low level call in DexIRA.swapAndLiquify(uint256) (#1973-2027):
- (success,None) = address(operationsWallet).call{value: operationsBalance}() (#2014)
- (success,None) = address(buyBackWallet).call{value: buyBackBalance}() (#2021)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable DexIRA._airDropAddressNextSellDate (#1286) is not in mixedCase
Variable DexIRA._airDropTokensRemaining (#1287) is not in mixedCase
Variable DexIRA._airDroppedTokenAmount (#1291) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#1223) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#1240) is not in mixedCase
Constant DividendPayingToken.magnitude (#764) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#1222) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#979) is not in mixedCase
Variable DexIRA._holderLastSellDate (#1295) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#993) is not in mixedCase
Parameter DexIRADividendTracker.getAccount(address)._account (#2203) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#986) is not in mixedCase
Function IUniswapV2Router01.WETH() (#1058) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1003) is not in mixedCase
Variable DexIRA.BNBRewardsFee (#1298) is not in mixedCase
Variable DexIRA._isAirdoppedWallet (#1290) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#36)" inContext (#30-39)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#947) is too similar to DexIRADividendTracker.getAccount(address).withdrawableDividends (#2208)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#1063) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#1064)
Prevent variables from having similar names.

Additional information: link

DexIRA.constructor() (#1354-1411) uses literals with too many digits:
- _mint(owner(),1000000000 * (10 ** 9)) (#1410)
DexIRA.updateGasForProcessing(uint256) (#1568-1573) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,DEXIRA: gasForProcessing must be between 200,000 and 500,000) (#1569)
DexIRA.slitherConstructorVariables() (#1258-2071) uses literals with too many digits:
- gasForProcessing = 300000 (#1308)
DexIRA.slitherConstructorVariables() (#1258-2071) uses literals with too many digits:
- maxSellTransactionAmount = 10000000 * (10 ** 9) (#1275)
DexIRA.constructor() (#1354-1411) uses literals with too many digits:
- dividendTracker.excludeFromDividends(address(0x000000000000000000000000000000000000dEaD)) (#1386)
DexIRA.slitherConstructorVariables() (#1258-2071) uses literals with too many digits:
- swapTokensAtAmount = 100000 * (10 ** 9) (#1277)
DexIRADividendTracker.getAccountAtIndex(uint256) (#2248-2265) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#2259)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#257) is never used in SafeMathInt (#255-313)
Remove unused state variables.

Additional information: link

DexIRA.airDropDailySellPerc (#1292) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#2082-2084)
getRewardTokenSelectionCount(address) should be declared external:
- DexIRA.getRewardTokenSelectionCount(address) (#1610-1612)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#590-598)
process(uint256) should be declared external:
- DexIRADividendTracker.process(uint256) (#2292-2334)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#2093-2095)
updateDividendTracker(address) should be declared external:
- DexIRA.updateDividendTracker(address) (#1436-1451)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#77-80)
withdrawableDividendOf(address) should be declared external:
- DexIRA.withdrawableDividendOf(address) (#1681-1683)
unsetRewardToken() should be declared external:
- DexIRA.unsetRewardToken() (#1748-1751)
dividendTokenBalanceOf(address) should be declared external:
- DexIRA.dividendTokenBalanceOf(address) (#1685-1687)
setRewardToken(address) should be declared external:
- DexIRA.setRewardToken(address) (#1728-1734)
decimals() should be declared external:
- ERC20.decimals() (#526-529)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#979-981)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#2086-2091)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#631-634)
symbol() should be declared external:
- ERC20.symbol() (#509-511)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#553-556)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#612-615)
isExcludedFromFees(address) should be declared external:
- DexIRA.isExcludedFromFees(address) (#1677-1679)
withdrawDividend() should be declared external:
- DexIRADividendTracker.withdrawDividend() (#2163-2165)
- DividendPayingToken.withdrawDividend() (#940-942)
getAccountAtIndex(uint256) should be declared external:
- DexIRADividendTracker.getAccountAtIndex(uint256) (#2248-2265)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#2097-2099)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#86-90)
name() should be declared external:
- ERC20.name() (#501-503)
getBNBAvailableForHolderBuyBack(address) should be declared external:
- DexIRA.getBNBAvailableForHolderBuyBack(address) (#1719-1721)
setRewardTokenWithCustomAMM(address,address) should be declared external:
- DexIRA.setRewardTokenWithCustomAMM(address,address) (#1737-1745)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#572-575)
getUserCurrentRewardToken(address) should be declared external:
- DexIRA.getUserCurrentRewardToken(address) (#1602-1604)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#993-995)
getUserHasCustomRewardToken(address) should be declared external:
- DexIRA.getUserHasCustomRewardToken(address) (#1606-1608)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#561-563)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

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


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account link seems to be invalid


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

Additional information: link


Token was delisted from CoinGecko

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find whitepaper link on the website


Unable to verify token contract address on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but average PancakeSwap 30d trading volume is low


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

Price for DEX