2044 is a post-World War III Play-to-Earn Metaverse built on BSC. Survive in this fully ubiquitous web3 experience by making allies, improving your arsenal and completing quests to earn 2044 tokens! 2044 is made by one of the biggest game studios in Europe after 3 years of development.
✅VR/AR Metaverse ✅PC/IOS/Android Ready on Launch ✅Buy/Sell Tax = 0% ✅Huge Marketing & Partnerships ✅No unlocked Tokens ✅Audited , KYC'D & DOXXED ✅Major CEX Listing ✅No Private Sale
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
NuclearApocalypse._checkLiquidityAdd(address,address) (#323-332) has costly operations inside a loop:
- _hasLiqBeenAdded = true (#327)
NuclearApocalypse._checkLiquidityAdd(address,address) (#323-332) has costly operations inside a loop:
- antiSnipe = AntiSnipe(address(this)) (#329)
Use a local variable to hold the loop computation result.
Additional information: link
Pragma version>=0.6.0<0.9.0 (#2) is too complex
solc-0.8.15 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
NuclearApocalypse.slitherConstructorConstantVariables() (#58-379) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#81)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
NuclearApocalypse.presaleAddresses (#70) is never used in NuclearApocalypse (#58-379)
Remove unused state variables.
Additional information: link
transfer(address,uint256) should be declared external:
- NuclearApocalypse.transfer(address,uint256) (#170-173)
enableTrading() should be declared external:
- NuclearApocalypse.enableTrading() (#334-343)
Use the external attribute for functions never called from the contract.
Additional information: link
Reentrancy in NuclearApocalypse.enableTrading() (#334-343):
External calls:
- antiSnipe.setLaunch(lpPair,uint32(block.number),uint64(block.timestamp),_decimals) (#340)
State variables written after the call(s):
- tradingEnabled = true (#341)
Reentrancy in NuclearApocalypse.transferOwner(address) (#136-148):
External calls:
- finalizeTransfer(_owner,newOwner,balanceOf(_owner),true) (#141)
- antiSnipe.checkUser(from,to,amount) (#367-368)
State variables written after the call(s):
- _owner = newOwner (#145)
Apply the check-effects-interactions pattern.
Additional information: link
NuclearApocalypse.finalizeTransfer(address,address,uint256,bool).checked (#366) is a local variable never initialized
NuclearApocalypse.finalizeTransfer(address,address,uint256,bool).check (#367) 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
NuclearApocalypse.finalizeTransfer(address,address,uint256,bool) (#358-377) ignores return value by antiSnipe.checkUser(from,to,amount) (#367-368)
Ensure that all the return values of the function calls are used.
Additional information: link
NuclearApocalypse.setMaxTxPercent(uint256,uint256) (#249-252) should emit an event for:
- _maxTxAmount = (_tTotal * percent) / divisor (#251)
NuclearApocalypse.setMaxWalletSize(uint256,uint256) (#253-256) should emit an event for:
- _maxWalletSize = (_tTotal * percent) / divisor (#255)
Emit an event for critical parameter changes.
Additional information: link
NuclearApocalypse.finalizeTransfer(address,address,uint256,bool) (#358-377) has external calls inside a loop: antiSnipe.checkUser(from,to,amount) (#367-368)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'NuclearApocalypse.finalizeTransfer(address,address,uint256,bool).check (#367)' in NuclearApocalypse.finalizeTransfer(address,address,uint256,bool) (#358-377) potentially used before declaration: checked = check (#368)
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 NuclearApocalypse.constructor() (#99-127):
External calls:
- lpPair = IFactoryV2(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#121)
State variables written after the call(s):
- _approve(_owner,address(dexRouter),type()(uint256).max) (#124)
- _allowances[sender][spender] = amount (#184)
- _liquidityHolders[_owner] = true (#126)
- lpPairs[lpPair] = true (#122)
Reentrancy in NuclearApocalypse.enableTrading() (#334-343):
External calls:
- antiSnipe.setLaunch(lpPair,uint32(block.number),uint64(block.timestamp),_decimals) (#340)
State variables written after the call(s):
- allowedPresaleExclusion = false (#342)
Reentrancy in NuclearApocalypse.finalizeTransfer(address,address,uint256,bool) (#358-377):
External calls:
- antiSnipe.checkUser(from,to,amount) (#367-368)
State variables written after the call(s):
- _tOwned[from] -= amount (#372)
- _tOwned[to] += amount (#373)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in NuclearApocalypse.constructor() (#99-127):
External calls:
- lpPair = IFactoryV2(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#121)
Event emitted after the call(s):
- Approval(sender,spender,amount) (#185)
- _approve(_owner,address(dexRouter),type()(uint256).max) (#124)
Reentrancy in NuclearApocalypse.finalizeTransfer(address,address,uint256,bool) (#358-377):
External calls:
- antiSnipe.checkUser(from,to,amount) (#367-368)
Event emitted after the call(s):
- Transfer(from,to,amount) (#375)
Reentrancy in NuclearApocalypse.transferOwner(address) (#136-148):
External calls:
- finalizeTransfer(_owner,newOwner,balanceOf(_owner),true) (#141)
- antiSnipe.checkUser(from,to,amount) (#367-368)
Event emitted after the call(s):
- OwnershipTransferred(oldOwner,newOwner) (#146)
Apply the check-effects-interactions pattern.
Additional information: link
NuclearApocalypse.setLpPair(address,bool) (#202-214) uses timestamp for comparisons
Dangerous comparisons:
- timeSinceLastPair != 0 (#207)
- require(bool,string)(block.timestamp - timeSinceLastPair > 259200,3 Day cooldown.!) (#208)
Avoid relying on block.timestamp.
Additional information: link
Function IRouter01.WETH() (#33) is not in mixedCase
Parameter NuclearApocalypse.setProtectionSettings(bool,bool)._antiSnipe (#245) is not in mixedCase
Parameter NuclearApocalypse.setProtectionSettings(bool,bool)._antiBlock (#245) is not in mixedCase
Constant NuclearApocalypse.startingSupply (#73) is not in UPPER_CASE_WITH_UNDERSCORES
Constant NuclearApocalypse._name (#74) is not in UPPER_CASE_WITH_UNDERSCORES
Constant NuclearApocalypse._symbol (#75) is not in UPPER_CASE_WITH_UNDERSCORES
Constant NuclearApocalypse._decimals (#76) is not in UPPER_CASE_WITH_UNDERSCORES
Constant NuclearApocalypse._tTotal (#77) is not in UPPER_CASE_WITH_UNDERSCORES
Variable NuclearApocalypse._hasLiqBeenAdded (#87) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
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 audit link on the website
Unable to find whitepaper link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
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
Young tokens have high risks of price dump / death
Unable to find Youtube account
Unable to find Discord account