AVALANCHE INU Token Logo

$AVIN [AVALANCHE INU] Token

ALERT: honeypot scam

About $AVIN

Listings

Not Found
Token 2 years

Website

Not Found

🀄 AVALANCHE INU 🀄
♻ TOKENOMICS ♻
💯 FEATURES 💯
✅LOW MARKETCAP
✅BSC VERIFIED CONTRACT
✅LIQUIDITY LOCKED
✅BUSD REWARDS
✅HUGE MARKETING
✅NO TEAM WALLET
✅100% SAFU

Social

Laser Scorebeta Last Audit: 16 February 2022

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


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

AVALANCHEINU.swapBack() (#762-803) sends eth to arbitrary user
Dangerous calls:
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#790)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in AVALANCHEINU._transferFrom(address,address,uint256) (#696-718):
External calls:
- swapBack() (#701)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#773-779)
- distributor.deposit{value: amountBNBReflection}() (#789)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#790)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#793-800)
- triggerAutoBuyback() (#702)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#837-842)
External calls sending eth:
- swapBack() (#701)
- distributor.deposit{value: amountBNBReflection}() (#789)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#790)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#793-800)
- triggerAutoBuyback() (#702)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#837-842)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#706)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#709)
- amountReceived = takeFee(sender,recipient,amount) (#708)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#749)
- triggerAutoBuyback() (#702)
- inSwap = true (#640)
- inSwap = false (#640)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#539-550) ignores return value by BUSD.transfer(shareholder,amount) (#545)
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.

Contract ticker ($AVIN) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

AVALANCHEINU.swapBack() (#762-803) ignores return value by address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#790)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link

AVALANCHEINU.BUSD (#586) is never used in AVALANCHEINU (#583-939)
Remove unused state variables.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#539-550):
External calls:
- BUSD.transfer(shareholder,amount) (#545)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#547)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#548)
Reentrancy in DividendDistributor.process(uint256) (#508-532):
External calls:
- distributeDividend(shareholders[currentIndex]) (#524)
- BUSD.transfer(shareholder,amount) (#545)
State variables written after the call(s):
- currentIndex ++ (#529)
Reentrancy in DividendDistributor.setShare(address,uint256) (#472-486):
External calls:
- distributeDividend(shareholder) (#474)
- BUSD.transfer(shareholder,amount) (#545)
State variables written after the call(s):
- shares[shareholder].amount = amount (#484)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#485)
Apply the check-effects-interactions pattern.

Additional information: link

AVALANCHEINU.swapBack() (#762-803) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#793-800)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#467-470) should emit an event for:
- minPeriod = _minPeriod (#468)
- minDistribution = _minDistribution (#469)
AVALANCHEINU.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#845-852) should emit an event for:
- autoBuybackCap = _cap (#847)
- autoBuybackAmount = _amount.div(100) (#849)
AVALANCHEINU.setBuybackMultiplierSettings(uint256,uint256,uint256) (#854-859) should emit an event for:
- buybackMultiplierNumerator = numerator (#856)
- buybackMultiplierDenominator = denominator (#857)
- buybackMultiplierLength = length (#858)
AVALANCHEINU.setFees(uint256,uint256,uint256,uint256,uint256) (#889-897) should emit an event for:
- liquidityFee = _liquidityFee (#890)
- reflectionFee = _reflectionFee (#892)
- marketingFee = _marketingFee (#893)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#894)
- feeDenominator = _feeDenominator (#895)
AVALANCHEINU.setSwapBackSettings(bool,uint256) (#904-907) should emit an event for:
- swapThreshold = _amount.div(100) (#906)
AVALANCHEINU.setTargetLiquidity(uint256,uint256) (#909-912) should emit an event for:
- targetLiquidity = _target (#910)
- targetLiquidityDenominator = _denominator (#911)
Emit an event for critical parameter changes.

Additional information: link

AVALANCHEINU.setFeeReceivers(address,address)._autoLiquidityReceiver (#899) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#900)
AVALANCHEINU.setFeeReceivers(address,address)._marketingFeeReceiver (#899) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#901)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#539-550) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#545)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in AVALANCHEINU._transferFrom(address,address,uint256) (#696-718):
External calls:
- swapBack() (#701)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#773-779)
- distributor.deposit{value: amountBNBReflection}() (#789)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#790)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#793-800)
- triggerAutoBuyback() (#702)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#837-842)
External calls sending eth:
- swapBack() (#701)
- distributor.deposit{value: amountBNBReflection}() (#789)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#790)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#793-800)
- triggerAutoBuyback() (#702)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#837-842)
State variables written after the call(s):
- launch() (#704)
- launchedAt = block.number (#866)
Reentrancy in AVALANCHEINU.constructor() (#642-662):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#644)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#645)
- _balances[msg.sender] = _totalSupply (#660)
- autoLiquidityReceiver = owner() (#656)
- distributor = new DividendDistributor(address(router)) (#647)
- isDividendExempt[pair] = true (#652)
- isDividendExempt[address(this)] = true (#653)
- isDividendExempt[DEAD] = true (#654)
- isDividendExempt[ZERO] = true (#655)
- isFeeExempt[msg.sender] = true (#649)
- isTxLimitExempt[msg.sender] = true (#650)
- isTxLimitExempt[address(router)] = true (#651)
- marketingFeeReceiver = msg.sender (#657)
Reentrancy in DividendDistributor.deposit() (#488-506):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#495-500)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#505)
- totalDividends = totalDividends.add(amount) (#504)
Reentrancy in DividendDistributor.distributeDividend(address) (#539-550):
External calls:
- BUSD.transfer(shareholder,amount) (#545)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#546)
Reentrancy in DividendDistributor.setShare(address,uint256) (#472-486):
External calls:
- distributeDividend(shareholder) (#474)
- BUSD.transfer(shareholder,amount) (#545)
State variables written after the call(s):
- addShareholder(shareholder) (#478)
- shareholderIndexes[shareholder] = shareholders.length (#572)
- removeShareholder(shareholder) (#480)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#578)
- addShareholder(shareholder) (#478)
- shareholders.push(shareholder) (#573)
- removeShareholder(shareholder) (#480)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#577)
- shareholders.pop() (#579)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#483)
Reentrancy in AVALANCHEINU.triggerAutoBuyback() (#825-830):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#826)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#837-842)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#828)
- autoBuybackBlockLast = block.number (#827)
- autoBuybackEnabled = false (#829)
Reentrancy in AVALANCHEINU.triggerManualBuyback(uint256,bool) (#813-819):
External calls:
- buyTokens(amount,DEAD) (#814)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#837-842)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#816)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AVALANCHEINU._transferFrom(address,address,uint256) (#696-718):
External calls:
- swapBack() (#701)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#773-779)
- distributor.deposit{value: amountBNBReflection}() (#789)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#790)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#793-800)
- triggerAutoBuyback() (#702)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#837-842)
- distributor.setShare(sender,_balances[sender]) (#711)
- distributor.setShare(recipient,_balances[recipient]) (#712)
- distributor.process(distributorGas) (#714)
External calls sending eth:
- swapBack() (#701)
- distributor.deposit{value: amountBNBReflection}() (#789)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#790)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#793-800)
- triggerAutoBuyback() (#702)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#837-842)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#716)
Reentrancy in AVALANCHEINU._transferFrom(address,address,uint256) (#696-718):
External calls:
- swapBack() (#701)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#773-779)
- distributor.deposit{value: amountBNBReflection}() (#789)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#790)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#793-800)
- triggerAutoBuyback() (#702)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#837-842)
External calls sending eth:
- swapBack() (#701)
- distributor.deposit{value: amountBNBReflection}() (#789)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#790)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#793-800)
- triggerAutoBuyback() (#702)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#837-842)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#750)
- amountReceived = takeFee(sender,recipient,amount) (#708)
Reentrancy in AVALANCHEINU.constructor() (#642-662):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#644)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#661)
Reentrancy in AVALANCHEINU.swapBack() (#762-803):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#773-779)
- distributor.deposit{value: amountBNBReflection}() (#789)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#790)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#793-800)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#789)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#790)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#793-800)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#801)
Reentrancy in AVALANCHEINU.triggerManualBuyback(uint256,bool) (#813-819):
External calls:
- buyTokens(amount,DEAD) (#814)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#837-842)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#817)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#534-537) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#535-536)
AVALANCHEINU._transferFrom(address,address,uint256) (#696-718) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(_balances[sender] > 0) (#704)
AVALANCHEINU.getTotalFee(bool) (#734-738) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#736)
AVALANCHEINU.shouldSwapBack() (#755-760) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#756-759)
AVALANCHEINU.isOverLiquified(uint256,uint256) (#931-933) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#932)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#53-62) uses assembly
- INLINE ASM (#60)
Address._functionCallWithValue(address,bytes,uint256,string) (#146-167) uses assembly
- INLINE ASM (#159-162)
Do not use evm assembly.

Additional information: link

DividendDistributor.process(uint256) (#508-532) has costly operations inside a loop:
- currentIndex = 0 (#520)
DividendDistributor.distributeDividend(address) (#539-550) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#544)
DividendDistributor.process(uint256) (#508-532) has costly operations inside a loop:
- currentIndex ++ (#529)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#146-167) is never used and should be removed
Address.functionCall(address,bytes) (#106-108) is never used and should be removed
Address.functionCall(address,bytes,string) (#116-118) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#131-133) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#141-144) is never used and should be removed
Address.isContract(address) (#53-62) is never used and should be removed
Address.sendValue(address,uint256) (#80-86) is never used and should be removed
Context._msgData() (#175-178) is never used and should be removed
Remove unused functions.

Additional information: link

AVALANCHEINU.swapThreshold (#638) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 2000
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

Pragma version^0.7.4 (#32) allows old versions
solc-0.7.4 is not recommended for deployment
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

Low level call in Address.sendValue(address,uint256) (#80-86):
- (success) = recipient.call{value: amount}() (#84)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#146-167):
- (success,returndata) = target.call{value: weiValue}(data) (#150)
Low level call in AVALANCHEINU.swapBack() (#762-803):
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#790)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#364) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#467) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#467) is not in mixedCase
Variable DividendDistributor._token (#420) is not in mixedCase
Variable DividendDistributor.BUSD (#428) is not in mixedCase
Variable DividendDistributor.WBNB (#429) is not in mixedCase
Parameter AVALANCHEINU.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#845) is not in mixedCase
Parameter AVALANCHEINU.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#845) is not in mixedCase
Parameter AVALANCHEINU.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#845) is not in mixedCase
Parameter AVALANCHEINU.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#845) is not in mixedCase
Parameter AVALANCHEINU.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#889) is not in mixedCase
Parameter AVALANCHEINU.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#889) is not in mixedCase
Parameter AVALANCHEINU.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#889) is not in mixedCase
Parameter AVALANCHEINU.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#889) is not in mixedCase
Parameter AVALANCHEINU.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#889) is not in mixedCase
Parameter AVALANCHEINU.setFeeReceivers(address,address)._autoLiquidityReceiver (#899) is not in mixedCase
Parameter AVALANCHEINU.setFeeReceivers(address,address)._marketingFeeReceiver (#899) is not in mixedCase
Parameter AVALANCHEINU.setSwapBackSettings(bool,uint256)._enabled (#904) is not in mixedCase
Parameter AVALANCHEINU.setSwapBackSettings(bool,uint256)._amount (#904) is not in mixedCase
Parameter AVALANCHEINU.setTargetLiquidity(uint256,uint256)._target (#909) is not in mixedCase
Parameter AVALANCHEINU.setTargetLiquidity(uint256,uint256)._denominator (#909) is not in mixedCase
Parameter AVALANCHEINU.setDistributionCriteria(uint256,uint256)._minPeriod (#914) is not in mixedCase
Parameter AVALANCHEINU.setDistributionCriteria(uint256,uint256)._minDistribution (#914) is not in mixedCase
Variable AVALANCHEINU.BUSD (#586) is not in mixedCase
Variable AVALANCHEINU.WBNB (#587) is not in mixedCase
Variable AVALANCHEINU.DEAD (#588) is not in mixedCase
Variable AVALANCHEINU.ZERO (#589) is not in mixedCase
Constant AVALANCHEINU._name (#591) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AVALANCHEINU._symbol (#592) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AVALANCHEINU._decimals (#593) is not in UPPER_CASE_WITH_UNDERSCORES
Variable AVALANCHEINU._totalSupply (#595) is not in mixedCase
Variable AVALANCHEINU._balances (#597) is not in mixedCase
Variable AVALANCHEINU._allowances (#598) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#176)" inContext (#170-179)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#369) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#370)
Prevent variables from having similar names.

Additional information: link

AVALANCHEINU.slitherConstructorVariables() (#583-939) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#588)
AVALANCHEINU.slitherConstructorVariables() (#583-939) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#589)
AVALANCHEINU.slitherConstructorVariables() (#583-939) uses literals with too many digits:
- _totalSupply = 1000000000000000 * (10 ** _decimals) (#595)
AVALANCHEINU.slitherConstructorVariables() (#583-939) uses literals with too many digits:
- distributorGas = 500000 (#635)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

AVALANCHEINU.BUSD (#586) should be constant
AVALANCHEINU.DEAD (#588) should be constant
AVALANCHEINU.WBNB (#587) should be constant
AVALANCHEINU.ZERO (#589) should be constant
AVALANCHEINU._totalSupply (#595) should be constant
DividendDistributor.WBNB (#429) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#442) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#342-345)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#351-355)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


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


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


Average 30d number of PancakeSwap swaps is less than 1. 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.


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Twitter account


Telegram account has less than 100 subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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 $AVIN