In a secure underground bunker MiniNuke is being assembled, pay attention to warnings and announcements about its launch. The Crypto world will never be the same.
💥Mini Nuke Theory of Operation💥
Mini Nuke is a hyper deflationary
Token with maximum pumpability!
"NUKES" are portions of the liquidity pool locked up on multiple lock timers with a countdown leading up to each detonation. (Dxsale won't allow multiple lockups and that is why presale is manual.)
Upon detonation liquidity is removed and all BNB attached to the liquidty is pumped immediately back into Mini Nuke. This destabilizes the chart temporarily and increases the price impact of each nuke.
After lp is pulled and BNB is pumped back in all tokens tied to the LP and all tokens purchased with the BNB are sent to the burn address.
Each nuke will be on an individual timer and by the end of a week and a half the total supply will be cut by half or more.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
NUKE.sendETHToteam(uint256) (#994-997) sends eth to arbitrary user
Dangerous calls:
- _teamWalletAddress.transfer(amount.div(2)) (#995)
- _marketingWalletAddress.transfer(amount.div(2)) (#996)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in NUKE._transfer(address,address,uint256) (#901-974):
External calls:
- swapTokensForEth(contractTokenBalance) (#956)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#985-991)
External calls sending eth:
- sendETHToteam(address(this).balance) (#960)
- _teamWalletAddress.transfer(amount.div(2)) (#995)
- _marketingWalletAddress.transfer(amount.div(2)) (#996)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#973)
- _rOwned[address(this)] = _rOwned[address(this)].add(rteam) (#1078)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1046)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1037)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1038)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1057)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1067)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1058)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1048)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1069)
- _tokenTransfer(sender,recipient,amount,takeFee) (#973)
- _rTotal = _rTotal.sub(rFee) (#1084)
- _tokenTransfer(sender,recipient,amount,takeFee) (#973)
- _tOwned[address(this)] = _tOwned[address(this)].add(tteam) (#1080)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1056)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1066)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1047)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1068)
Apply the check-effects-interactions pattern.
Additional information: link
NUKE._setteamFee(uint256) (#1146-1149) contains a tautology or contradiction:
- require(bool,string)(teamFee >= 0 && teamFee <= 11,teamFee should be in 0 - 11) (#1147)
Fix the incorrect comparison by changing the value type or the comparison.
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.
NUKE._approve(address,address,uint256).owner (#893) shadows:
- Ownable.owner() (#399-401) (function)
Rename the local variables that shadow another component.
Additional information: link
NUKE.setCoolDown(uint256) (#1167-1169) should emit an event for:
- _CoolDown = (CoolDown * 1) (#1168)
Emit an event for critical parameter changes.
Additional information: link
NUKE._setmarketingWallet(address).marketingWalletAddress (#1155) lacks a zero-check on :
- _marketingWalletAddress = marketingWalletAddress (#1156)
Check that the address is not zero.
Additional information: link
Reentrancy in NUKE.transferFrom(address,address,uint256) (#768-772):
External calls:
- _transfer(sender,recipient,amount) (#769)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#985-991)
External calls sending eth:
- _transfer(sender,recipient,amount) (#769)
- _teamWalletAddress.transfer(amount.div(2)) (#995)
- _marketingWalletAddress.transfer(amount.div(2)) (#996)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#770)
- _allowances[owner][spender] = amount (#897)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in NUKE.transferFrom(address,address,uint256) (#768-772):
External calls:
- _transfer(sender,recipient,amount) (#769)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#985-991)
External calls sending eth:
- _transfer(sender,recipient,amount) (#769)
- _teamWalletAddress.transfer(amount.div(2)) (#995)
- _marketingWalletAddress.transfer(amount.div(2)) (#996)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#898)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#770)
Apply the check-effects-interactions pattern.
Additional information: link
NUKE._transfer(address,address,uint256) (#901-974) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= timestamp[sender],Cooldown) (#936)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#356-377) uses assembly
- INLINE ASM (#369-372)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#239-242) is never used and should be removed
Remove unused functions.
Additional information: link
NUKE._maxTxAmount (#700) is set pre-construction with a non-constant function or state variable:
- _tTotal
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 Address._functionCallWithValue(address,bytes,uint256,string) (#356-377):
- (success,returndata) = target.call{value: weiValue}(data) (#360)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable NUKE._maxTxAmount (#700) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#26)" inContext (#20-29)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in NUKE.transferFrom(address,address,uint256) (#768-772):
External calls:
- _transfer(sender,recipient,amount) (#769)
- _teamWalletAddress.transfer(amount.div(2)) (#995)
- _marketingWalletAddress.transfer(amount.div(2)) (#996)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#770)
- _allowances[owner][spender] = amount (#897)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#898)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#770)
Apply the check-effects-interactions pattern.
Additional information: link
Variable NUKE._transferBothExcluded(address,address,uint256).rTransferAmount (#1065) is too similar to NUKE._transferToExcluded(address,address,uint256).tTransferAmount (#1045)
Prevent variables from having similar names.
Additional information: link
NUKE.slitherConstructorVariables() (#657-1173) uses literals with too many digits:
- _numOfTokensToExchangeForteam = 500000 (#702)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
NUKE._tTotal (#674) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
_getETHBalance() should be declared external:
- NUKE._getETHBalance() (#1137-1139)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token/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 code repository for the project
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account