Shiba Max Token Logo

SHIMAX [Shiba Max] Token

About SHIMAX

Listings

Token 4 years

SHIBAMAX Is a community driven project that aims to be the first rewards token that gives a total rewards of 20% in SHIBA INU.
Shiba have the largest and more active community in the Defi space, and SHIBAMAX Will be the first warrior of the shiba army.
Innovative NFT's are planned as well as major partnerships.
Tg influenceurs are leading this project what can create a real hype for the upcoming launch

Social

Laser Scorebeta Last Audit: 25 April 2022

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

Anti-Scam

Links

ShibaMax.swapBack() (#758-801) sends eth to arbitrary user
Dangerous calls:
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#785)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


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

Reentrancy in ShibaMax._transferFrom(address,address,uint256) (#560-611):
External calls:
- swapBack() (#590)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#769-775)
- distributor.deposit{value: amountBNBReflection}() (#784)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#785)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#786)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#791-798)
External calls sending eth:
- swapBack() (#590)
- distributor.deposit{value: amountBNBReflection}() (#784)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#785)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#786)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#791-798)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#593)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#596)
- amountReceived = takeFee(sender,amount,isSell,GREEDMode) (#595)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#715)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#337-348) ignores return value by RWD.transfer(shareholder,amount) (#343)
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 ownership is not renounced (belongs to a wallet)

DividendDistributor.process(uint256) (#306-330) has costly operations inside a loop:
- currentIndex = 0 (#318)
DividendDistributor.distributeDividend(address) (#337-348) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#342)
DividendDistributor.process(uint256) (#306-330) has costly operations inside a loop:
- currentIndex ++ (#327)
Use a local variable to hold the loop computation result.

Additional information: link

ShibaMax.launched() (#874-876) is never used and should be removed
ShibaMax.shouldAutoBuyback() (#804-810) is never used and should be removed
ShibaMax.triggerAutoBuyback() (#829-838) is never used and should be removed
Remove unused functions.

Additional information: link

ShibaMax._maxBuyTxAmount (#405) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 100 / 10000
ShibaMax._maxSellTxAmount (#406) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 100 / 10000
ShibaMax._maxWalletToken (#407) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 100) / 10000
ShibaMax.swapThreshold (#451) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
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 ShibaMax.swapBack() (#758-801):
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#785)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#786)
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() (#159) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#265) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#265) is not in mixedCase
Variable DividendDistributor._token (#217) is not in mixedCase
Variable DividendDistributor.RWD (#226) is not in mixedCase
Variable DividendDistributor.WBNB (#227) is not in mixedCase
Parameter ShibaMax.takeFee(address,uint256,bool,bool).GREEDMode (#699) is not in mixedCase
Parameter ShibaMax.tradingStatus(bool)._status (#730) is not in mixedCase
Parameter ShibaMax.enableGREED(uint256)._seconds (#736) is not in mixedCase
Parameter ShibaMax.cooldownEnabled(bool,uint8)._status (#747) is not in mixedCase
Parameter ShibaMax.cooldownEnabled(bool,uint8)._interval (#747) is not in mixedCase
Parameter ShibaMax.blacklistAddress(address,bool)._address (#753) is not in mixedCase
Parameter ShibaMax.blacklistAddress(address,bool)._value (#753) is not in mixedCase
Parameter ShibaMax.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#855) is not in mixedCase
Parameter ShibaMax.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#855) is not in mixedCase
Parameter ShibaMax.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#855) is not in mixedCase
Parameter ShibaMax.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#855) is not in mixedCase
Parameter ShibaMax.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#855) is not in mixedCase
Parameter ShibaMax.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeBuy (#920) is not in mixedCase
Parameter ShibaMax.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeBuy (#920) is not in mixedCase
Parameter ShibaMax.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeBuy (#920) is not in mixedCase
Parameter ShibaMax.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeBuy (#920) is not in mixedCase
Parameter ShibaMax.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeBuy (#920) is not in mixedCase
Parameter ShibaMax.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#920) is not in mixedCase
Parameter ShibaMax.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeSell (#931) is not in mixedCase
Parameter ShibaMax.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeSell (#931) is not in mixedCase
Parameter ShibaMax.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeSell (#931) is not in mixedCase
Parameter ShibaMax.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeSell (#931) is not in mixedCase
Parameter ShibaMax.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeSell (#931) is not in mixedCase
Parameter ShibaMax.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#931) is not in mixedCase
Parameter ShibaMax.setFeeReceivers(address,address)._autoLiquidityReceiver (#942) is not in mixedCase
Parameter ShibaMax.setFeeReceivers(address,address)._marketingFeeReceiver (#942) is not in mixedCase
Parameter ShibaMax.setSwapBackSettings(bool,uint256)._enabled (#948) is not in mixedCase
Parameter ShibaMax.setSwapBackSettings(bool,uint256)._amount (#948) is not in mixedCase
Parameter ShibaMax.setTargetLiquidity(uint256,uint256)._target (#954) is not in mixedCase
Parameter ShibaMax.setTargetLiquidity(uint256,uint256)._denominator (#954) is not in mixedCase
Parameter ShibaMax.setDistributionCriteria(uint256,uint256)._minPeriod (#966) is not in mixedCase
Parameter ShibaMax.setDistributionCriteria(uint256,uint256)._minDistribution (#966) is not in mixedCase
Variable ShibaMax.RWD (#386) is not in mixedCase
Variable ShibaMax.WBNB (#387) is not in mixedCase
Variable ShibaMax.DEAD (#388) is not in mixedCase
Variable ShibaMax.ZERO (#389) is not in mixedCase
Variable ShibaMax.DEV (#390) is not in mixedCase
Constant ShibaMax._name (#397) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ShibaMax._symbol (#398) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ShibaMax._decimals (#399) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ShibaMax._totalSupply (#402) is not in mixedCase
Variable ShibaMax._maxBuyTxAmount (#405) is not in mixedCase
Variable ShibaMax._maxSellTxAmount (#406) is not in mixedCase
Variable ShibaMax._maxWalletToken (#407) is not in mixedCase
Variable ShibaMax._balances (#410) is not in mixedCase
Variable ShibaMax._allowances (#411) is not in mixedCase
Variable ShibaMax.GREEDTriggeredAt (#444) is not in mixedCase
Variable ShibaMax.GREEDDuration (#445) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

ShibaMax.slitherConstructorVariables() (#382-1004) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#388)
ShibaMax.slitherConstructorVariables() (#382-1004) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#389)
ShibaMax.slitherConstructorVariables() (#382-1004) uses literals with too many digits:
- DEV = 0x000000000000000000000000000000000000dEaD (#390)
ShibaMax.slitherConstructorVariables() (#382-1004) uses literals with too many digits:
- _totalSupply = 100000000 * (10 ** _decimals) (#402)
ShibaMax.slitherConstructorVariables() (#382-1004) uses literals with too many digits:
- distributorGas = 500000 (#472)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ShibaMax.RWD (#386) is never used in ShibaMax (#382-1004)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#227) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#240) should be constant
ShibaMax.DEAD (#388) should be constant
ShibaMax.DEV (#390) should be constant
ShibaMax.RWD (#386) should be constant
ShibaMax.WBNB (#387) should be constant
ShibaMax.ZERO (#389) should be constant
ShibaMax._totalSupply (#402) should be constant
ShibaMax.deadBlocks (#448) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#114-116)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#121-123)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#142-146)
getTotalFee(bool) should be declared external:
- ShibaMax.getTotalFee(bool) (#685-689)
tradingStatus(bool) should be declared external:
- ShibaMax.tradingStatus(bool) (#730-733)
enableGREED(uint256) should be declared external:
- ShibaMax.enableGREED(uint256) (#736-739)
cooldownEnabled(bool,uint8) should be declared external:
- ShibaMax.cooldownEnabled(bool,uint8) (#747-750)
blacklistAddress(address,bool) should be declared external:
- ShibaMax.blacklistAddress(address,bool) (#753-755)
getUnpaidEarnings(address) should be declared external:
- ShibaMax.getUnpaidEarnings(address) (#976-978)
Use the external attribute for functions never called from the contract.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#337-348):
External calls:
- RWD.transfer(shareholder,amount) (#343)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#345)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#346)
Reentrancy in DividendDistributor.process(uint256) (#306-330):
External calls:
- distributeDividend(shareholders[currentIndex]) (#322)
- RWD.transfer(shareholder,amount) (#343)
State variables written after the call(s):
- currentIndex ++ (#327)
Reentrancy in DividendDistributor.setShare(address,uint256) (#270-284):
External calls:
- distributeDividend(shareholder) (#272)
- RWD.transfer(shareholder,amount) (#343)
State variables written after the call(s):
- shares[shareholder].amount = amount (#282)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#283)
Apply the check-effects-interactions pattern.

Additional information: link

ShibaMax.swapBack() (#758-801) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#791-798)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#265-268) should emit an event for:
- minPeriod = _minPeriod (#266)
- minDistribution = _minDistribution (#267)
ShibaMax.setMaxWalletPercent(uint256) (#554-557) should emit an event for:
- _maxWalletToken = _totalSupply.mul(maxWallPercent).div(10000) (#555)
ShibaMax.enableGREED(uint256) (#736-739) should emit an event for:
- GREEDDuration = _seconds (#738)
ShibaMax.cooldownEnabled(bool,uint8) (#747-750) should emit an event for:
- cooldownTimerInterval = _interval (#749)
ShibaMax.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#855-863) should emit an event for:
- autoBuybackCap = _cap (#857)
- autoBuybackAmount = _amount (#859)
ShibaMax.setBuybackMultiplierSettings(uint256,uint256,uint256) (#866-871) should emit an event for:
- buybackMultiplierNumerator = numerator (#868)
- buybackMultiplierDenominator = denominator (#869)
- buybackMultiplierLength = length (#870)
ShibaMax.setBuyTxLimitInPercent(uint256) (#884-886) should emit an event for:
- _maxBuyTxAmount = _totalSupply.mul(maxBuyTxPercent).div(10000) (#885)
ShibaMax.setSellTxLimitInPercent(uint256) (#889-891) should emit an event for:
- _maxSellTxAmount = _totalSupply.mul(maxSellTxPercent).div(10000) (#890)
ShibaMax.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256) (#920-928) should emit an event for:
- liquidityFeeBuy = _liquidityFeeBuy (#921)
- buybackFeeBuy = _buybackFeeBuy (#922)
- reflectionFeeBuy = _reflectionFeeBuy (#923)
- marketingFeeBuy = _marketingFeeBuy (#924)
- devFeeBuy = _devFeeBuy (#925)
- totalFeeBuy = _liquidityFeeBuy.add(_buybackFeeBuy).add(_reflectionFeeBuy).add(_marketingFeeBuy).add(_devFeeBuy) (#926)
- feeDenominator = _feeDenominator (#927)
ShibaMax.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256) (#931-939) should emit an event for:
- liquidityFeeSell = _liquidityFeeSell (#932)
- buybackFeeSell = _buybackFeeSell (#933)
- reflectionFeeSell = _reflectionFeeSell (#934)
- marketingFeeSell = _marketingFeeSell (#935)
- devFeeSell = _devFeeSell (#936)
- totalFeeSell = _liquidityFeeSell.add(_buybackFeeSell).add(_reflectionFeeSell).add(_marketingFeeSell).add(_devFeeSell) (#937)
- feeDenominator = _feeDenominator (#938)
ShibaMax.setSwapBackSettings(bool,uint256) (#948-951) should emit an event for:
- swapThreshold = _totalSupply * _amount / 10000 (#950)
ShibaMax.setTargetLiquidity(uint256,uint256) (#954-957) should emit an event for:
- targetLiquidity = _target (#955)
- targetLiquidityDenominator = _denominator (#956)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).account (#142) lacks a zero-check on :
- owner = account (#143)
ShibaMax.setFeeReceivers(address,address)._autoLiquidityReceiver (#942) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#943)
ShibaMax.setFeeReceivers(address,address)._marketingFeeReceiver (#942) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#944)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#337-348) has external calls inside a loop: RWD.transfer(shareholder,amount) (#343)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in ShibaMax.constructor() (#489-519):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#492)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#493)
- _balances[_presaler] = _totalSupply (#517)
- autoLiquidityReceiver = msg.sender (#514)
- distributor = new DividendDistributor(address(router)) (#495)
- isDividendExempt[pair] = true (#509)
- isDividendExempt[address(this)] = true (#510)
- isDividendExempt[DEAD] = true (#511)
- isFeeExempt[_presaler] = true (#499)
- isTimelockExempt[msg.sender] = true (#503)
- isTimelockExempt[DEAD] = true (#504)
- isTimelockExempt[address(this)] = true (#505)
- isTimelockExempt[DEV] = true (#506)
- isTxLimitExempt[_presaler] = true (#500)
- marketingFeeReceiver = 0x77B696712516b021845CEA6F2F2C035cA3ecf743 (#515)
Reentrancy in DividendDistributor.deposit() (#286-304):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#293-298)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#303)
- totalDividends = totalDividends.add(amount) (#302)
Reentrancy in DividendDistributor.distributeDividend(address) (#337-348):
External calls:
- RWD.transfer(shareholder,amount) (#343)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#344)
Reentrancy in DividendDistributor.setShare(address,uint256) (#270-284):
External calls:
- distributeDividend(shareholder) (#272)
- RWD.transfer(shareholder,amount) (#343)
State variables written after the call(s):
- addShareholder(shareholder) (#276)
- shareholderIndexes[shareholder] = shareholders.length (#370)
- removeShareholder(shareholder) (#278)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#376)
- addShareholder(shareholder) (#276)
- shareholders.push(shareholder) (#371)
- removeShareholder(shareholder) (#278)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#375)
- shareholders.pop() (#377)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#281)
Reentrancy in ShibaMax.triggerAutoBuyback() (#829-838):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#830)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#846-851)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#836)
- autoBuybackBlockLast = block.number (#835)
- autoBuybackEnabled = false (#837)
- buybackMultiplierTriggeredAt = block.timestamp (#832)
Reentrancy in ShibaMax.triggerManualBuyback(uint256,bool) (#813-821):
External calls:
- buyTokens(amountToBuy,DEAD) (#816)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#846-851)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#818)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ShibaMax._transferFrom(address,address,uint256) (#560-611):
External calls:
- swapBack() (#590)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#769-775)
- distributor.deposit{value: amountBNBReflection}() (#784)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#785)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#786)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#791-798)
- distributor.setShare(sender,_balances[sender]) (#600)
- distributor.setShare(recipient,_balances[recipient]) (#604)
- distributor.process(distributorGas) (#607)
External calls sending eth:
- swapBack() (#590)
- distributor.deposit{value: amountBNBReflection}() (#784)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#785)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#786)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#791-798)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#609)
Reentrancy in ShibaMax._transferFrom(address,address,uint256) (#560-611):
External calls:
- swapBack() (#590)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#769-775)
- distributor.deposit{value: amountBNBReflection}() (#784)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#785)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#786)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#791-798)
External calls sending eth:
- swapBack() (#590)
- distributor.deposit{value: amountBNBReflection}() (#784)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#785)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#786)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#791-798)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#716)
- amountReceived = takeFee(sender,amount,isSell,GREEDMode) (#595)
Reentrancy in ShibaMax.constructor() (#489-519):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#492)
Event emitted after the call(s):
- Transfer(address(0),_presaler,_totalSupply) (#518)
Reentrancy in ShibaMax.swapBack() (#758-801):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#769-775)
- distributor.deposit{value: amountBNBReflection}() (#784)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#785)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#786)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#791-798)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#784)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#785)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#786)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#791-798)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#799)
Reentrancy in ShibaMax.triggerAutoBuyback() (#829-838):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#830)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#846-851)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#833)
Reentrancy in ShibaMax.triggerManualBuyback(uint256,bool) (#813-821):
External calls:
- buyTokens(amountToBuy,DEAD) (#816)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#846-851)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#819)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#332-335) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#333-334)
ShibaMax.inGREEDTime() (#641-647) uses timestamp for comparisons
Dangerous comparisons:
- GREEDTriggeredAt.add(GREEDDuration) > block.timestamp (#642)
ShibaMax.checkBuyCooldown(address,address) (#662-669) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait between two buys TY) (#666)
ShibaMax.getTotalFee(bool) (#685-689) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#687)
Avoid relying on block.timestamp.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


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


Twitter account has less than 100 followers


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for SHIMAX

News for SHIMAX