BNB Masters provides a high passive income by offering a 15% BNB reward and introduces a high quality, 3D animated, and high reward claiming P2E game. ✅ KYC team ✅ Audited contract ✅ 15% BNB reward to holders ✅ 3D play to earn game ( P2E ) ✅ Game NFT shop and giveaway ✅ Locked Liquidity for 10 year ✅ CMC and CG listing ✅Aggressive marketing campaigns ✅ Join our social Media channels to get more information.
BNBM.swapAndLiquify(uint256) (#2064-2099) sends eth to arbitrary user
Dangerous calls:
- marketingWallet.transfer(marketingAmount) (#2089)
BNBM.addLiquidity(uint256,uint256) (#2125-2137) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2128-2135)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
BNBM.withdraw(address,uint256) (#2139-2142) ignores return value by IERC20(_token).transfer(owner(),_amount) (#2141)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Reentrancy in BNBM._transfer(address,address,uint256) (#2002-2062):
External calls:
- swapAndLiquify(contractTokenBalance) (#2026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2128-2135)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2114-2120)
- (success) = address(dividendTracker).call{value: dividends}() (#2092)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2128-2135)
- marketingWallet.transfer(marketingAmount) (#2089)
- (success) = address(dividendTracker).call{value: dividends}() (#2092)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2044)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
- super._transfer(from,to,amount) (#2047)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1412-1428):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1417)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1420)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
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.
BNBM.setMarketingWallet(address)._newMarketingWallet (#1812) lacks a zero-check on :
- marketingWallet = _newMarketingWallet (#1813)
Check that the address is not zero.
Additional information: link
BNBM.swapAndLiquify(uint256) (#2064-2099) performs a multiplication on the result of a division:
-tokensToAddLiquidityWith = contractTokenBalance.div(totalFees.mul(2)).mul(liquidityFee) (#2067)
BNBM.swapAndLiquify(uint256) (#2064-2099) performs a multiplication on the result of a division:
-marketingAmount = deltaBalance.sub(bnbToAddLiquidityWith).div(totalFees.sub(liquidityFee)).mul(marketingFee) (#2088)
Consider ordering multiplication before division.
Additional information: link
BNBM._transfer(address,address,uint256).fees (#2036) is a local variable never initialized
BNBM._transfer(address,address,uint256).claims (#2055) is a local variable never initialized
BNBM._transfer(address,address,uint256).lastProcessedIndex (#2055) is a local variable never initialized
BNBM._transfer(address,address,uint256).iterations (#2055) 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
BNBM.claim() (#1980-1982) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#1981)
BNBM._transfer(address,address,uint256) (#2002-2062) ignores return value by dividendTracker.process(gas) (#2055-2060)
BNBM.addLiquidity(uint256,uint256) (#2125-2137) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2128-2135)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.constructor(string,string)._name (#1369) shadows:
- ERC20._name (#831) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#1369) shadows:
- ERC20._symbol (#832) (state variable)
Rename the local variables that shadow another component.
Additional information: link
BNBM.setFee(uint256,uint256,uint256) (#1791-1799) should emit an event for:
- liquidityFee = _liquidityFee (#1794)
- marketingFee = _marketingFee (#1795)
- totalFees = BNBRewardsFee.add(liquidityFee).add(marketingFee) (#1797)
BNBM.setSellFee(uint256,uint256,uint256) (#1801-1809) should emit an event for:
- onSelltotalFees = onSellBNBRewardsFee.add(onSellliquidityFee).add(onSellmarketingFee) (#1807)
BNBM.setSwapTokensAtAmount(uint256) (#1902-1904) should emit an event for:
- swapTokensAtAmount = _newAmount (#1903)
Emit an event for critical parameter changes.
Additional information: link
DividendPayingToken._withdrawDividendOfUser(address) (#1412-1428) has external calls inside a loop: (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1417)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'BNBM._transfer(address,address,uint256).claims (#2055)' in BNBM._transfer(address,address,uint256) (#2002-2062) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2056)
Variable 'BNBM._transfer(address,address,uint256).lastProcessedIndex (#2055)' in BNBM._transfer(address,address,uint256) (#2002-2062) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2056)
Variable 'BNBM._transfer(address,address,uint256).iterations (#2055)' in BNBM._transfer(address,address,uint256) (#2002-2062) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2056)
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 BNBM.constructor() (#1817-1863):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1838-1839)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1842)
- uniswapV2Router = _uniswapV2Router (#1841)
Reentrancy in BNBM.constructor() (#1817-1863):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1838-1839)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1844)
- dividendTracker.excludeFromDividends(pair) (#1911)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1847)
- dividendTracker.excludeFromDividends(address(this)) (#1848)
- dividendTracker.excludeFromDividends(owner()) (#1849)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1850)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1851)
State variables written after the call(s):
- _mint(owner(),1000000 * (10 ** 9)) (#1862)
- _balances[account] += amount (#1047)
- excludeFromFees(owner(),true) (#1854)
- _isExcludedFromFees[account] = excluded (#1877)
- excludeFromFees(marketingWallet,true) (#1855)
- _isExcludedFromFees[account] = excluded (#1877)
- excludeFromFees(address(this),true) (#1856)
- _isExcludedFromFees[account] = excluded (#1877)
- _mint(owner(),1000000 * (10 ** 9)) (#1862)
- _totalSupply += amount (#1046)
Reentrancy in BNBMDividendTracker.processAccount(address,bool) (#1706-1716):
External calls:
- amount = _withdrawDividendOfUser(account) (#1707)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1417)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1710)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BNBM._setAutomatedMarketMakerPair(address,bool) (#1906-1915):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1911)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1914)
Reentrancy in BNBM._transfer(address,address,uint256) (#2002-2062):
External calls:
- swapAndLiquify(contractTokenBalance) (#2026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2128-2135)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2114-2120)
- (success) = address(dividendTracker).call{value: dividends}() (#2092)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2128-2135)
- marketingWallet.transfer(marketingAmount) (#2089)
- (success) = address(dividendTracker).call{value: dividends}() (#2092)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,address(this),fees) (#2044)
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,to,amount) (#2047)
Reentrancy in BNBM._transfer(address,address,uint256) (#2002-2062):
External calls:
- swapAndLiquify(contractTokenBalance) (#2026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2128-2135)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2114-2120)
- (success) = address(dividendTracker).call{value: dividends}() (#2092)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#2049)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#2050)
- dividendTracker.process(gas) (#2055-2060)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2128-2135)
- marketingWallet.transfer(marketingAmount) (#2089)
- (success) = address(dividendTracker).call{value: dividends}() (#2092)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2056)
Reentrancy in BNBM.constructor() (#1817-1863):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1838-1839)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1844)
- dividendTracker.excludeFromDividends(pair) (#1911)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1914)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1844)
Reentrancy in BNBM.constructor() (#1817-1863):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1838-1839)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1844)
- dividendTracker.excludeFromDividends(pair) (#1911)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1847)
- dividendTracker.excludeFromDividends(address(this)) (#1848)
- dividendTracker.excludeFromDividends(owner()) (#1849)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1850)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1851)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1879)
- excludeFromFees(marketingWallet,true) (#1855)
- ExcludeFromFees(account,excluded) (#1879)
- excludeFromFees(owner(),true) (#1854)
- ExcludeFromFees(account,excluded) (#1879)
- excludeFromFees(address(this),true) (#1856)
- Transfer(address(0),account,amount) (#1048)
- _mint(owner(),1000000 * (10 ** 9)) (#1862)
Reentrancy in BNBMDividendTracker.processAccount(address,bool) (#1706-1716):
External calls:
- amount = _withdrawDividendOfUser(account) (#1707)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1417)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1711)
Reentrancy in BNBM.processDividendTracker(uint256) (#1975-1978):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1976)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1977)
Reentrancy in BNBM.swapAndLiquify(uint256) (#2064-2099):
External calls:
- swapTokensForBnb(toSwap,address(this)) (#2077)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2114-2120)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2128-2135)
- (success) = address(dividendTracker).call{value: dividends}() (#2092)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2128-2135)
- marketingWallet.transfer(marketingAmount) (#2089)
- (success) = address(dividendTracker).call{value: dividends}() (#2092)
Event emitted after the call(s):
- SendDividends(toSwap - tokensToAddLiquidityWith,dividends) (#2095)
- SwapAndLiquify(tokensToAddLiquidityWith,deltaBalance) (#2098)
Apply the check-effects-interactions pattern.
Additional information: link
BNBMDividendTracker.getAccount(address) (#1570-1613) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1610-1612)
BNBMDividendTracker.canAutoClaim(uint256) (#1634-1640) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1635)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1639)
Avoid relying on block.timestamp.
Additional information: link
name() should be declared external:
- ERC20.name() (#851-853)
symbol() should be declared external:
- ERC20.symbol() (#859-861)
decimals() should be declared external:
- ERC20.decimals() (#876-878)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#902-905)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#921-924)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#939-953)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#967-970)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#986-994)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#1193-1195)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#1201-1204)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#1222-1224)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#1226-1231)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#1233-1235)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#1239-1241)
withdrawDividend() should be declared external:
- BNBMDividendTracker.withdrawDividend() (#1539-1541)
- DividendPayingToken.withdrawDividend() (#1406-1408)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1434-1436)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1448-1450)
getAccountAtIndex(uint256) should be declared external:
- BNBMDividendTracker.getAccountAtIndex(uint256) (#1615-1632)
process(uint256) should be declared external:
- BNBMDividendTracker.process(uint256) (#1659-1704)
setFee(uint256,uint256,uint256) should be declared external:
- BNBM.setFee(uint256,uint256,uint256) (#1791-1799)
setSellFee(uint256,uint256,uint256) should be declared external:
- BNBM.setSellFee(uint256,uint256,uint256) (#1801-1809)
setMarketingWallet(address) should be declared external:
- BNBM.setMarketingWallet(address) (#1812-1814)
updateUniswapV2Router(address) should be declared external:
- BNBM.updateUniswapV2Router(address) (#1869-1873)
setExcludeFromAll(address) should be declared external:
- BNBM.setExcludeFromAll(address) (#1883-1886)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- BNBM.excludeMultipleAccountsFromFees(address[],bool) (#1888-1894)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- BNBM.setAutomatedMarketMakerPair(address,bool) (#1896-1900)
setSwapTokensAtAmount(uint256) should be declared external:
- BNBM.setSwapTokensAtAmount(uint256) (#1902-1904)
updateGasForProcessing(uint256) should be declared external:
- BNBM.updateGasForProcessing(uint256) (#1917-1922)
isExcludedFromFees(address) should be declared external:
- BNBM.isExcludedFromFees(address) (#1936-1938)
withdrawableDividendOf(address) should be declared external:
- BNBM.withdrawableDividendOf(address) (#1941-1943)
dividendTokenBalanceOf(address) should be declared external:
- BNBM.dividendTokenBalanceOf(address) (#1945-1947)
setSwapAndLiquifyEnabled(bool) should be declared external:
- BNBM.setSwapAndLiquifyEnabled(bool) (#1997-2000)
Use the external attribute for functions never called from the contract.
Additional information: link
Context._msgData() (#695-697) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1468-1474) is never used and should be removed
SafeCast.toInt128(int256) (#589-592) is never used and should be removed
SafeCast.toInt16(int256) (#643-646) is never used and should be removed
SafeCast.toInt32(int256) (#625-628) is never used and should be removed
SafeCast.toInt64(int256) (#607-610) is never used and should be removed
SafeCast.toInt8(int256) (#661-664) is never used and should be removed
SafeCast.toUint128(uint256) (#484-487) is never used and should be removed
SafeCast.toUint16(uint256) (#544-547) is never used and should be removed
SafeCast.toUint224(uint256) (#469-472) is never used and should be removed
SafeCast.toUint32(uint256) (#529-532) is never used and should be removed
SafeCast.toUint64(uint256) (#514-517) is never used and should be removed
SafeCast.toUint8(uint256) (#559-562) is never used and should be removed
SafeCast.toUint96(uint256) (#499-502) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#405-414) is never used and should be removed
SafeMath.mod(uint256,uint256) (#365-367) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#431-440) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#382-391) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#236-242) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#278-283) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#290-295) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#261-271) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#249-254) is never used and should be removed
SignedSafeMath.div(int256,int256) (#187-189) is never used and should be removed
SignedSafeMath.mul(int256,int256) (#173-175) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version0.8.13 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.13 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 DividendPayingToken._withdrawDividendOfUser(address) (#1412-1428):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1417)
Low level call in BNBM.swapAndLiquify(uint256) (#2064-2099):
- (success) = address(dividendTracker).call{value: dividends}() (#2092)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Router01.WETH() (#7) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1434) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1441) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1448) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1458) is not in mixedCase
Constant DividendPayingToken.magnitude (#1349) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter BNBMDividendTracker.getAccount(address)._account (#1570) is not in mixedCase
Parameter BNBM.setFee(uint256,uint256,uint256)._bnbRewardFee (#1791) is not in mixedCase
Parameter BNBM.setFee(uint256,uint256,uint256)._liquidityFee (#1791) is not in mixedCase
Parameter BNBM.setFee(uint256,uint256,uint256)._marketingFee (#1791) is not in mixedCase
Parameter BNBM.setSellFee(uint256,uint256,uint256)._onSellbnbRewardFee (#1801) is not in mixedCase
Parameter BNBM.setSellFee(uint256,uint256,uint256)._onSellliquidityFee (#1801) is not in mixedCase
Parameter BNBM.setSellFee(uint256,uint256,uint256)._onSellMarketingFee (#1801) is not in mixedCase
Parameter BNBM.setMarketingWallet(address)._newMarketingWallet (#1812) is not in mixedCase
Parameter BNBM.setExcludeFromAll(address)._address (#1883) is not in mixedCase
Parameter BNBM.setSwapTokensAtAmount(uint256)._newAmount (#1902) is not in mixedCase
Parameter BNBM.setSwapAndLiquifyEnabled(bool)._enabled (#1997) is not in mixedCase
Parameter BNBM.swapTokensForBnb(uint256,address)._to (#2101) is not in mixedCase
Parameter BNBM.withdraw(address,uint256)._token (#2139) is not in mixedCase
Parameter BNBM.withdraw(address,uint256)._amount (#2139) is not in mixedCase
Parameter BNBM.withdrawBNB(uint256)._amount (#2144) is not in mixedCase
Variable BNBM.BNBRewardsFee (#1733) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in BNBM._transfer(address,address,uint256) (#2002-2062):
External calls:
- swapAndLiquify(contractTokenBalance) (#2026)
- marketingWallet.transfer(marketingAmount) (#2089)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2128-2135)
- marketingWallet.transfer(marketingAmount) (#2089)
- (success) = address(dividendTracker).call{value: dividends}() (#2092)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2044)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
- super._transfer(from,to,amount) (#2047)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2056)
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,address(this),fees) (#2044)
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,to,amount) (#2047)
Reentrancy in BNBM.swapAndLiquify(uint256) (#2064-2099):
External calls:
- marketingWallet.transfer(marketingAmount) (#2089)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2128-2135)
- marketingWallet.transfer(marketingAmount) (#2089)
- (success) = address(dividendTracker).call{value: dividends}() (#2092)
Event emitted after the call(s):
- SendDividends(toSwap - tokensToAddLiquidityWith,dividends) (#2095)
- SwapAndLiquify(tokensToAddLiquidityWith,deltaBalance) (#2098)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#13)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1413) is too similar to BNBMDividendTracker.getAccount(address).withdrawableDividends (#1575)
Variable BNBM.BNBRewardsFee (#1733) is too similar to BNBM.setFee(uint256,uint256,uint256)._bnbRewardFee (#1791)
Variable BNBM.setSellFee(uint256,uint256,uint256)._onSellbnbRewardFee (#1801) is too similar to BNBM.onSellBNBRewardsFee (#1738)
Prevent variables from having similar names.
Additional information: link
BNBMDividendTracker.getAccountAtIndex(uint256) (#1615-1632) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1626)
BNBM.constructor() (#1817-1863) uses literals with too many digits:
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1851)
BNBM.constructor() (#1817-1863) uses literals with too many digits:
- _mint(owner(),1000000 * (10 ** 9)) (#1862)
BNBM.updateGasForProcessing(uint256) (#1917-1922) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,BNBM: gasForProcessing must be between 200,000 and 500,000) (#1918)
BNBM.slitherConstructorVariables() (#1719-2150) uses literals with too many digits:
- gasForProcessing = 300000 (#1746)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
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
Token is not listed at Mobula.Finance
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
Telegram account link seems to be invalid
Twitter account has relatively few followers
Twitter account has few posts