AvaxBank Token Logo

AVB [AvaxBank] Token

About AVB

Listings

Not Found
Token 21 months
white paper

AvaxBank is a BEP-20 reflection token that rewards holders with Avax.
https://t.co/AN3bAqJwMB
0x4e57809c76e07491Be1B8022a7DAeF7251eAd9aF

Social

Laser Scorebeta Last Audit: 22 December 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

AvaxBank.addLiquidity(uint256,uint256) (#1621-1636) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in AvaxBank._transfer(address,address,uint256) (#1475-1546):
External calls:
- swapAndSendToFee(BuyBackTokens) (#1502)
- IERC20(Reflection).transfer(_EcoSystem,newBalance) (#1554)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1612-1618)
- swapAndLiquify(swapTokens) (#1505)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1592-1598)
- swapAndSendDividends(sellTokens) (#1508)
- success = IERC20(Reflection).transfer(address(dividendTracker),dividends) (#1641)
- dividendTracker.distributeReflectionDividends(dividends) (#1644)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1612-1618)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1505)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1528)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#635)
- _balances[recipient] = _balances[recipient].add(amount) (#636)
- super._transfer(from,to,amount) (#1531)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#635)
- _balances[recipient] = _balances[recipient].add(amount) (#636)
- swapping = false (#1510)
Apply the check-effects-interactions pattern.

Additional information: link

AvaxBank.swapAndSendToFee(uint256) (#1548-1555) ignores return value by IERC20(Reflection).transfer(_EcoSystem,newBalance) (#1554)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Pragma version^0.6.2 (#2) allows old versions
Pragma version^0.6.2 (#294) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

SafeMathInt.MAX_INT256 (#302) is never used in SafeMathInt (#300-358)
Remove unused state variables.

Additional information: link

AvaxBank.deadWallet (#1217) should be constant
AvaxBank.swapTokensAtAmount (#1221) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (#1107-1123) has external calls inside a loop: success = IERC20(Reflection).transfer(user,_withdrawableDividend) (#1112)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1107-1123):
External calls:
- success = IERC20(Reflection).transfer(user,_withdrawableDividend) (#1112)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1115)
Reentrancy in AvaxBank.updateDividendTracker(address) (#1314-1329):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1321)
- newDividendTracker.excludeFromDividends(address(this)) (#1322)
- newDividendTracker.excludeFromDividends(owner()) (#1323)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1324)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1328)
Apply the check-effects-interactions pattern.

Additional information: link

AvaxBank._transfer(address,address,uint256).iterations (#1539) is a local variable never initialized
AvaxBank._transfer(address,address,uint256).claims (#1539) is a local variable never initialized
AvaxBank._transfer(address,address,uint256).lastProcessedIndex (#1539) 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

AvaxBank.claim() (#1462-1464) ignores return value by dividendTracker.processAccount(msg.sender,false) (#1463)
AvaxBank._transfer(address,address,uint256) (#1475-1546) ignores return value by dividendTracker.process(gas) (#1539-1544)
AvaxBank.addLiquidity(uint256,uint256) (#1621-1636) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (#1081) shadows:
- ERC20._name (#457) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#1081) shadows:
- ERC20._symbol (#458) (state variable)
DividendPayingToken.dividendOf(address)._owner (#1129) shadows:
- Ownable._owner (#373) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#1136) shadows:
- Ownable._owner (#373) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#1143) shadows:
- Ownable._owner (#373) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#1153) shadows:
- Ownable._owner (#373) (state variable)
Rename the local variables that shadow another component.

Additional information: link

AvaxBank.setReflectionRewardsFee(uint256) (#1359-1362) should emit an event for:
- ReflectionRewardsFee = value (#1360)
- totalFees = ReflectionRewardsFee.add(liquidityFee).add(BuyBackFee) (#1361)
AvaxBank.setLiquiditFee(uint256) (#1364-1367) should emit an event for:
- liquidityFee = value (#1365)
- totalFees = ReflectionRewardsFee.add(liquidityFee).add(BuyBackFee) (#1366)
AvaxBank.setBuyBackFee(uint256) (#1369-1373) should emit an event for:
- BuyBackFee = value (#1370)
- totalFees = ReflectionRewardsFee.add(liquidityFee).add(BuyBackFee) (#1371)
Emit an event for critical parameter changes.

Additional information: link

AvaxBank.updateUniswapV2Router(address)._uniswapV2Pair (#1335-1336) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1337)
AvaxBank.setBuyBackWallet(address).wallet (#1355) lacks a zero-check on :
- _EcoSystem = wallet (#1356)
Check that the address is not zero.

Additional information: link

Variable 'AvaxBank._transfer(address,address,uint256).claims (#1539)' in AvaxBank._transfer(address,address,uint256) (#1475-1546) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1540)
Variable 'AvaxBank._transfer(address,address,uint256).iterations (#1539)' in AvaxBank._transfer(address,address,uint256) (#1475-1546) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1540)
Variable 'AvaxBank._transfer(address,address,uint256).lastProcessedIndex (#1539)' in AvaxBank._transfer(address,address,uint256) (#1475-1546) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1540)
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 AvaxBank._transfer(address,address,uint256) (#1475-1546):
External calls:
- swapAndSendToFee(BuyBackTokens) (#1502)
- IERC20(Reflection).transfer(_EcoSystem,newBalance) (#1554)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1612-1618)
- swapAndLiquify(swapTokens) (#1505)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1592-1598)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1505)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (#1505)
- _allowances[owner][spender] = amount (#701)
Reentrancy in AvaxBank._transfer(address,address,uint256) (#1475-1546):
External calls:
- swapAndSendToFee(BuyBackTokens) (#1502)
- IERC20(Reflection).transfer(_EcoSystem,newBalance) (#1554)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1612-1618)
- swapAndLiquify(swapTokens) (#1505)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1592-1598)
- swapAndSendDividends(sellTokens) (#1508)
- success = IERC20(Reflection).transfer(address(dividendTracker),dividends) (#1641)
- dividendTracker.distributeReflectionDividends(dividends) (#1644)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1612-1618)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1505)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1508)
- _allowances[owner][spender] = amount (#701)
Reentrancy in AvaxBank.constructor() (#1276-1308):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1283-1284)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1287)
- uniswapV2Router = _uniswapV2Router (#1286)
Reentrancy in AvaxBank.constructor() (#1276-1308):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1283-1284)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1289)
- dividendTracker.excludeFromDividends(pair) (#1389)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1292)
- dividendTracker.excludeFromDividends(address(this)) (#1293)
- dividendTracker.excludeFromDividends(owner()) (#1294)
- dividendTracker.excludeFromDividends(deadWallet) (#1295)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1296)
State variables written after the call(s):
- _mint(owner(),1000000000000000 * (10 ** 9)) (#1307)
- _balances[account] = _balances[account].add(amount) (#655)
- excludeFromFees(owner(),true) (#1299)
- _isExcludedFromFees[account] = excluded (#1342)
- excludeFromFees(_EcoSystem,true) (#1300)
- _isExcludedFromFees[account] = excluded (#1342)
- excludeFromFees(address(this),true) (#1301)
- _isExcludedFromFees[account] = excluded (#1342)
- _mint(owner(),1000000000000000 * (10 ** 9)) (#1307)
- _totalSupply = _totalSupply.add(amount) (#654)
Reentrancy in AvaxBankDividendTracker.processAccount(address,bool) (#1846-1856):
External calls:
- amount = _withdrawDividendOfUser(account) (#1847)
- success = IERC20(Reflection).transfer(user,_withdrawableDividend) (#1112)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1850)
Reentrancy in AvaxBank.swapAndLiquify(uint256) (#1557-1578):
External calls:
- swapTokensForEth(half) (#1569)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1592-1598)
- addLiquidity(otherHalf,newBalance) (#1575)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1575)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1575)
- _allowances[owner][spender] = amount (#701)
Reentrancy in AvaxBank.updateUniswapV2Router(address) (#1331-1338):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1335-1336)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1337)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AvaxBank._setAutomatedMarketMakerPair(address,bool) (#1384-1393):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1389)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1392)
Reentrancy in AvaxBank._transfer(address,address,uint256) (#1475-1546):
External calls:
- swapAndSendToFee(BuyBackTokens) (#1502)
- IERC20(Reflection).transfer(_EcoSystem,newBalance) (#1554)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1612-1618)
- swapAndLiquify(swapTokens) (#1505)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1592-1598)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1505)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#702)
- swapAndLiquify(swapTokens) (#1505)
- SwapAndLiquify(half,newBalance,otherHalf) (#1577)
- swapAndLiquify(swapTokens) (#1505)
Reentrancy in AvaxBank._transfer(address,address,uint256) (#1475-1546):
External calls:
- swapAndSendToFee(BuyBackTokens) (#1502)
- IERC20(Reflection).transfer(_EcoSystem,newBalance) (#1554)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1612-1618)
- swapAndLiquify(swapTokens) (#1505)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1592-1598)
- swapAndSendDividends(sellTokens) (#1508)
- success = IERC20(Reflection).transfer(address(dividendTracker),dividends) (#1641)
- dividendTracker.distributeReflectionDividends(dividends) (#1644)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1612-1618)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1505)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#702)
- swapAndSendDividends(sellTokens) (#1508)
- SendDividends(tokens,dividends) (#1645)
- swapAndSendDividends(sellTokens) (#1508)
- Transfer(sender,recipient,amount) (#637)
- super._transfer(from,address(this),fees) (#1528)
- Transfer(sender,recipient,amount) (#637)
- super._transfer(from,to,amount) (#1531)
Reentrancy in AvaxBank._transfer(address,address,uint256) (#1475-1546):
External calls:
- swapAndSendToFee(BuyBackTokens) (#1502)
- IERC20(Reflection).transfer(_EcoSystem,newBalance) (#1554)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1612-1618)
- swapAndLiquify(swapTokens) (#1505)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1592-1598)
- swapAndSendDividends(sellTokens) (#1508)
- success = IERC20(Reflection).transfer(address(dividendTracker),dividends) (#1641)
- dividendTracker.distributeReflectionDividends(dividends) (#1644)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1612-1618)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1533)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1534)
- dividendTracker.process(gas) (#1539-1544)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1505)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1540)
Reentrancy in AvaxBank.constructor() (#1276-1308):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1283-1284)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1289)
- dividendTracker.excludeFromDividends(pair) (#1389)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1392)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1289)
Reentrancy in AvaxBank.constructor() (#1276-1308):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1283-1284)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1289)
- dividendTracker.excludeFromDividends(pair) (#1389)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1292)
- dividendTracker.excludeFromDividends(address(this)) (#1293)
- dividendTracker.excludeFromDividends(owner()) (#1294)
- dividendTracker.excludeFromDividends(deadWallet) (#1295)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1296)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1344)
- excludeFromFees(owner(),true) (#1299)
- ExcludeFromFees(account,excluded) (#1344)
- excludeFromFees(_EcoSystem,true) (#1300)
- ExcludeFromFees(account,excluded) (#1344)
- excludeFromFees(address(this),true) (#1301)
- Transfer(address(0),account,amount) (#656)
- _mint(owner(),1000000000000000 * (10 ** 9)) (#1307)
Reentrancy in AvaxBankDividendTracker.processAccount(address,bool) (#1846-1856):
External calls:
- amount = _withdrawDividendOfUser(account) (#1847)
- success = IERC20(Reflection).transfer(user,_withdrawableDividend) (#1112)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1851)
Reentrancy in AvaxBank.processDividendTracker(uint256) (#1457-1460):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1458)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1459)
Reentrancy in AvaxBank.swapAndLiquify(uint256) (#1557-1578):
External calls:
- swapTokensForEth(half) (#1569)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1592-1598)
- addLiquidity(otherHalf,newBalance) (#1575)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1575)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1627-1634)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#702)
- addLiquidity(otherHalf,newBalance) (#1575)
- SwapAndLiquify(half,newBalance,otherHalf) (#1577)
Reentrancy in AvaxBank.swapAndSendDividends(uint256) (#1638-1647):
External calls:
- swapTokensForReflection(tokens) (#1639)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1612-1618)
- success = IERC20(Reflection).transfer(address(dividendTracker),dividends) (#1641)
- dividendTracker.distributeReflectionDividends(dividends) (#1644)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (#1645)
Reentrancy in AvaxBank.updateDividendTracker(address) (#1314-1329):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1321)
- newDividendTracker.excludeFromDividends(address(this)) (#1322)
- newDividendTracker.excludeFromDividends(owner()) (#1323)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1324)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1326)
Apply the check-effects-interactions pattern.

Additional information: link

AvaxBankDividendTracker.getAccount(address) (#1710-1753) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1750-1752)
AvaxBankDividendTracker.canAutoClaim(uint256) (#1774-1780) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1775)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1779)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#19-22) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1163-1169) is never used and should be removed
SafeMath.mod(uint256,uint256) (#247-249) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#263-266) is never used and should be removed
SafeMathInt.abs(int256) (#348-351) is never used and should be removed
SafeMathInt.div(int256,int256) (#319-325) is never used and should be removed
SafeMathInt.mul(int256,int256) (#307-314) is never used and should be removed
Remove unused functions.

Additional information: link

AvaxBank.totalFees (#1227) is set pre-construction with a non-constant function or state variable:
- ReflectionRewardsFee.add(liquidityFee).add(BuyBackFee)
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() (#818) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#819) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#836) is not in mixedCase
Function IUniswapV2Router01.WETH() (#856) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1129) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1136) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1143) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1153) is not in mixedCase
Variable DividendPayingToken.Reflection (#1056) is not in mixedCase
Constant DividendPayingToken.magnitude (#1061) is not in UPPER_CASE_WITH_UNDERSCORES
Variable AvaxBank.Reflection (#1219) is not in mixedCase
Variable AvaxBank.ReflectionRewardsFee (#1224) is not in mixedCase
Variable AvaxBank.BuyBackFee (#1226) is not in mixedCase
Variable AvaxBank._EcoSystem (#1229) is not in mixedCase
Parameter AvaxBankDividendTracker.getAccount(address)._account (#1710) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#861) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#862)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1108) is too similar to AvaxBankDividendTracker.getAccount(address).withdrawableDividends (#1715)
Prevent variables from having similar names.

Additional information: link

AvaxBank.constructor() (#1276-1308) uses literals with too many digits:
- _mint(owner(),1000000000000000 * (10 ** 9)) (#1307)
AvaxBank.updateGasForProcessing(uint256) (#1396-1401) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,AvaxBank: gasForProcessing must be between 200,000 and 500,000) (#1397)
AvaxBank.slitherConstructorVariables() (#1207-1648) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#1217)
AvaxBank.slitherConstructorVariables() (#1207-1648) uses literals with too many digits:
- swapTokensAtAmount = 50000000 * (10 ** 9) (#1221)
AvaxBank.slitherConstructorVariables() (#1207-1648) uses literals with too many digits:
- gasForProcessing = 300000 (#1233)
AvaxBankDividendTracker.constructor() (#1670-1673) uses literals with too many digits:
- minimumTokenBalanceForDividends = 1000000 * (10 ** 9) (#1672)
AvaxBankDividendTracker.getAccountAtIndex(uint256) (#1755-1772) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1766)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#408-411)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#417-421)
name() should be declared external:
- ERC20.name() (#477-479)
symbol() should be declared external:
- ERC20.symbol() (#485-487)
decimals() should be declared external:
- ERC20.decimals() (#502-504)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#528-531)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#536-538)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#547-550)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#565-573)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#587-590)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#606-609)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#735-737)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#739-744)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#746-748)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#752-754)
distributeReflectionDividends(uint256) should be declared external:
- DividendPayingToken.distributeReflectionDividends(uint256) (#1086-1097)
withdrawDividend() should be declared external:
- AvaxBankDividendTracker.withdrawDividend() (#1679-1681)
- DividendPayingToken.withdrawDividend() (#1101-1103)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1129-1131)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1143-1145)
updateDividendTracker(address) should be declared external:
- AvaxBank.updateDividendTracker(address) (#1314-1329)
updateUniswapV2Router(address) should be declared external:
- AvaxBank.updateUniswapV2Router(address) (#1331-1338)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- AvaxBank.excludeMultipleAccountsFromFees(address[],bool) (#1347-1353)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- AvaxBank.setAutomatedMarketMakerPair(address,bool) (#1376-1380)
updateGasForProcessing(uint256) should be declared external:
- AvaxBank.updateGasForProcessing(uint256) (#1396-1401)
isExcludedFromFees(address) should be declared external:
- AvaxBank.isExcludedFromFees(address) (#1415-1417)
withdrawableDividendOf(address) should be declared external:
- AvaxBank.withdrawableDividendOf(address) (#1419-1421)
dividendTokenBalanceOf(address) should be declared external:
- AvaxBank.dividendTokenBalanceOf(address) (#1423-1425)
getAccountAtIndex(uint256) should be declared external:
- AvaxBankDividendTracker.getAccountAtIndex(uint256) (#1755-1772)
process(uint256) should be declared external:
- AvaxBankDividendTracker.process(uint256) (#1799-1844)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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


Token is deployed only at one blockchain


Token has only one trading pair


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.


Telegram account has relatively few subscribers


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


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 audit link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of 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

Price for AVB

News for AVB