HAMSTERINU Token Logo

HAMINU [HAMSTERINU] Token

About HAMINU

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 17 January 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

HAMSTERINU.swapBack() (#746-787) sends eth to arbitrary user
Dangerous calls:
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in HAMSTERINU._transferFrom(address,address,uint256) (#680-702):
External calls:
- swapBack() (#685)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#757-763)
- distributor.deposit{value: amountBNBReflection}() (#773)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#777-784)
- triggerAutoBuyback() (#686)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#821-826)
External calls sending eth:
- swapBack() (#685)
- distributor.deposit{value: amountBNBReflection}() (#773)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#777-784)
- triggerAutoBuyback() (#686)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#821-826)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#690)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#693)
- amountReceived = takeFee(sender,recipient,amount) (#692)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#733)
- triggerAutoBuyback() (#686)
- inSwap = true (#624)
- inSwap = false (#624)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#523-534) ignores return value by CAKE.transfer(shareholder,amount) (#529)
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.

DividendDistributor.distributeDividend(address) (#523-534) has external calls inside a loop: CAKE.transfer(shareholder,amount) (#529)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#523-534):
External calls:
- CAKE.transfer(shareholder,amount) (#529)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#531)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#532)
Reentrancy in DividendDistributor.process(uint256) (#492-516):
External calls:
- distributeDividend(shareholders[currentIndex]) (#508)
- CAKE.transfer(shareholder,amount) (#529)
State variables written after the call(s):
- currentIndex ++ (#513)
Reentrancy in DividendDistributor.setShare(address,uint256) (#456-470):
External calls:
- distributeDividend(shareholder) (#458)
- CAKE.transfer(shareholder,amount) (#529)
State variables written after the call(s):
- shares[shareholder].amount = amount (#468)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#469)
Apply the check-effects-interactions pattern.

Additional information: link

HAMSTERINU.swapBack() (#746-787) ignores return value by address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link

HAMSTERINU.swapBack() (#746-787) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#777-784)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#451-454) should emit an event for:
- minPeriod = _minPeriod (#452)
- minDistribution = _minDistribution (#453)
HAMSTERINU.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#829-836) should emit an event for:
- autoBuybackCap = _cap (#831)
- autoBuybackAmount = _amount.div(100) (#833)
HAMSTERINU.setBuybackMultiplierSettings(uint256,uint256,uint256) (#838-843) should emit an event for:
- buybackMultiplierNumerator = numerator (#840)
- buybackMultiplierDenominator = denominator (#841)
- buybackMultiplierLength = length (#842)
HAMSTERINU.setFees(uint256,uint256,uint256,uint256,uint256) (#873-881) should emit an event for:
- liquidityFee = _liquidityFee (#874)
- reflectionFee = _reflectionFee (#876)
- marketingFee = _marketingFee (#877)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#878)
- feeDenominator = _feeDenominator (#879)
HAMSTERINU.setSwapBackSettings(bool,uint256) (#888-891) should emit an event for:
- swapThreshold = _amount.div(100) (#890)
HAMSTERINU.setTargetLiquidity(uint256,uint256) (#893-896) should emit an event for:
- targetLiquidity = _target (#894)
- targetLiquidityDenominator = _denominator (#895)
Emit an event for critical parameter changes.

Additional information: link

HAMSTERINU.setFeeReceivers(address,address)._autoLiquidityReceiver (#883) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#884)
HAMSTERINU.setFeeReceivers(address,address)._marketingFeeReceiver (#883) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#885)
Check that the address is not zero.

Additional information: link

Reentrancy in HAMSTERINU._transferFrom(address,address,uint256) (#680-702):
External calls:
- swapBack() (#685)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#757-763)
- distributor.deposit{value: amountBNBReflection}() (#773)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#777-784)
- triggerAutoBuyback() (#686)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#821-826)
External calls sending eth:
- swapBack() (#685)
- distributor.deposit{value: amountBNBReflection}() (#773)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#777-784)
- triggerAutoBuyback() (#686)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#821-826)
State variables written after the call(s):
- launch() (#688)
- launchedAt = block.number (#850)
Reentrancy in HAMSTERINU.constructor() (#626-646):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#628)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#629)
- _balances[msg.sender] = _totalSupply (#644)
- autoLiquidityReceiver = owner() (#640)
- distributor = new DividendDistributor(address(router)) (#631)
- isDividendExempt[pair] = true (#636)
- isDividendExempt[address(this)] = true (#637)
- isDividendExempt[DEAD] = true (#638)
- isDividendExempt[ZERO] = true (#639)
- isFeeExempt[msg.sender] = true (#633)
- isTxLimitExempt[msg.sender] = true (#634)
- isTxLimitExempt[address(router)] = true (#635)
- marketingFeeReceiver = msg.sender (#641)
Reentrancy in DividendDistributor.deposit() (#472-490):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#479-484)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#489)
- totalDividends = totalDividends.add(amount) (#488)
Reentrancy in DividendDistributor.distributeDividend(address) (#523-534):
External calls:
- CAKE.transfer(shareholder,amount) (#529)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#530)
Reentrancy in DividendDistributor.setShare(address,uint256) (#456-470):
External calls:
- distributeDividend(shareholder) (#458)
- CAKE.transfer(shareholder,amount) (#529)
State variables written after the call(s):
- addShareholder(shareholder) (#462)
- shareholderIndexes[shareholder] = shareholders.length (#556)
- removeShareholder(shareholder) (#464)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#562)
- addShareholder(shareholder) (#462)
- shareholders.push(shareholder) (#557)
- removeShareholder(shareholder) (#464)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#561)
- shareholders.pop() (#563)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#467)
Reentrancy in HAMSTERINU.triggerAutoBuyback() (#809-814):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#810)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#821-826)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#812)
- autoBuybackBlockLast = block.number (#811)
- autoBuybackEnabled = false (#813)
Reentrancy in HAMSTERINU.triggerManualBuyback(uint256,bool) (#797-803):
External calls:
- buyTokens(amount,DEAD) (#798)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#821-826)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#800)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in HAMSTERINU._transferFrom(address,address,uint256) (#680-702):
External calls:
- swapBack() (#685)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#757-763)
- distributor.deposit{value: amountBNBReflection}() (#773)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#777-784)
- triggerAutoBuyback() (#686)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#821-826)
- distributor.setShare(sender,_balances[sender]) (#695)
- distributor.setShare(recipient,_balances[recipient]) (#696)
- distributor.process(distributorGas) (#698)
External calls sending eth:
- swapBack() (#685)
- distributor.deposit{value: amountBNBReflection}() (#773)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#777-784)
- triggerAutoBuyback() (#686)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#821-826)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#700)
Reentrancy in HAMSTERINU._transferFrom(address,address,uint256) (#680-702):
External calls:
- swapBack() (#685)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#757-763)
- distributor.deposit{value: amountBNBReflection}() (#773)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#777-784)
- triggerAutoBuyback() (#686)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#821-826)
External calls sending eth:
- swapBack() (#685)
- distributor.deposit{value: amountBNBReflection}() (#773)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#777-784)
- triggerAutoBuyback() (#686)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#821-826)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#734)
- amountReceived = takeFee(sender,recipient,amount) (#692)
Reentrancy in HAMSTERINU.constructor() (#626-646):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#628)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#645)
Reentrancy in HAMSTERINU.swapBack() (#746-787):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#757-763)
- distributor.deposit{value: amountBNBReflection}() (#773)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#777-784)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#773)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#777-784)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#785)
Reentrancy in HAMSTERINU.triggerManualBuyback(uint256,bool) (#797-803):
External calls:
- buyTokens(amount,DEAD) (#798)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#821-826)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#801)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#518-521) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#519-520)
HAMSTERINU._transferFrom(address,address,uint256) (#680-702) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(_balances[sender] > 0) (#688)
HAMSTERINU.getTotalFee(bool) (#718-722) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#720)
HAMSTERINU.shouldSwapBack() (#739-744) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#740-743)
HAMSTERINU.isOverLiquified(uint256,uint256) (#915-917) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#916)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#37-46) uses assembly
- INLINE ASM (#44)
Address._functionCallWithValue(address,bytes,uint256,string) (#130-151) uses assembly
- INLINE ASM (#143-146)
Do not use evm assembly.

Additional information: link

DividendDistributor.process(uint256) (#492-516) has costly operations inside a loop:
- currentIndex = 0 (#504)
DividendDistributor.distributeDividend(address) (#523-534) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#528)
DividendDistributor.process(uint256) (#492-516) has costly operations inside a loop:
- currentIndex ++ (#513)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#130-151) is never used and should be removed
Address.functionCall(address,bytes) (#90-92) is never used and should be removed
Address.functionCall(address,bytes,string) (#100-102) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#115-117) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#125-128) is never used and should be removed
Address.isContract(address) (#37-46) is never used and should be removed
Address.sendValue(address,uint256) (#64-70) is never used and should be removed
Context._msgData() (#159-162) is never used and should be removed
Remove unused functions.

Additional information: link

HAMSTERINU.swapThreshold (#622) 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 (#16) 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) (#64-70):
- (success) = recipient.call{value: amount}() (#68)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#130-151):
- (success,returndata) = target.call{value: weiValue}(data) (#134)
Low level call in HAMSTERINU.swapBack() (#746-787):
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
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() (#348) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#451) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#451) is not in mixedCase
Variable DividendDistributor._token (#404) is not in mixedCase
Variable DividendDistributor.CAKE (#412) is not in mixedCase
Variable DividendDistributor.WBNB (#413) is not in mixedCase
Parameter HAMSTERINU.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#829) is not in mixedCase
Parameter HAMSTERINU.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#829) is not in mixedCase
Parameter HAMSTERINU.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#829) is not in mixedCase
Parameter HAMSTERINU.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#829) is not in mixedCase
Parameter HAMSTERINU.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#873) is not in mixedCase
Parameter HAMSTERINU.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#873) is not in mixedCase
Parameter HAMSTERINU.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#873) is not in mixedCase
Parameter HAMSTERINU.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#873) is not in mixedCase
Parameter HAMSTERINU.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#873) is not in mixedCase
Parameter HAMSTERINU.setFeeReceivers(address,address)._autoLiquidityReceiver (#883) is not in mixedCase
Parameter HAMSTERINU.setFeeReceivers(address,address)._marketingFeeReceiver (#883) is not in mixedCase
Parameter HAMSTERINU.setSwapBackSettings(bool,uint256)._enabled (#888) is not in mixedCase
Parameter HAMSTERINU.setSwapBackSettings(bool,uint256)._amount (#888) is not in mixedCase
Parameter HAMSTERINU.setTargetLiquidity(uint256,uint256)._target (#893) is not in mixedCase
Parameter HAMSTERINU.setTargetLiquidity(uint256,uint256)._denominator (#893) is not in mixedCase
Parameter HAMSTERINU.setDistributionCriteria(uint256,uint256)._minPeriod (#898) is not in mixedCase
Parameter HAMSTERINU.setDistributionCriteria(uint256,uint256)._minDistribution (#898) is not in mixedCase
Variable HAMSTERINU.CAKE (#570) is not in mixedCase
Variable HAMSTERINU.WBNB (#571) is not in mixedCase
Variable HAMSTERINU.DEAD (#572) is not in mixedCase
Variable HAMSTERINU.ZERO (#573) is not in mixedCase
Constant HAMSTERINU._name (#575) is not in UPPER_CASE_WITH_UNDERSCORES
Constant HAMSTERINU._symbol (#576) is not in UPPER_CASE_WITH_UNDERSCORES
Constant HAMSTERINU._decimals (#577) is not in UPPER_CASE_WITH_UNDERSCORES
Variable HAMSTERINU._totalSupply (#579) is not in mixedCase
Variable HAMSTERINU._balances (#581) is not in mixedCase
Variable HAMSTERINU._allowances (#582) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#160)" inContext (#154-163)
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 (#353) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#354)
Prevent variables from having similar names.

Additional information: link

HAMSTERINU.slitherConstructorVariables() (#567-923) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#572)
HAMSTERINU.slitherConstructorVariables() (#567-923) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#573)
HAMSTERINU.slitherConstructorVariables() (#567-923) uses literals with too many digits:
- _totalSupply = 100000000000000 * (10 ** _decimals) (#579)
HAMSTERINU.slitherConstructorVariables() (#567-923) uses literals with too many digits:
- distributorGas = 500000 (#619)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

HAMSTERINU.CAKE (#570) is never used in HAMSTERINU (#567-923)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#413) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#426) should be constant
HAMSTERINU.CAKE (#570) should be constant
HAMSTERINU.DEAD (#572) should be constant
HAMSTERINU.WBNB (#571) should be constant
HAMSTERINU.ZERO (#573) should be constant
HAMSTERINU._totalSupply (#579) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#326-329)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#335-339)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 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.


Unable to find Telegram and Twitter accounts


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


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for HAMINU