SwapNFT Token Logo

SWAPNFT Token

About SWAPNFT

Listings

Token 3 years
white paper

SWAP NFT is Multi-Chain Auto staking, Swap & NFTs Minting & Marketplace ✅ NFT Marketplace Beta version has been launched ✅ 1% Token Reflation for holders 1% liquidity to dead wallet.
✅ No unlocked Tokens ✅ Audited , KYC'D & DOXXED ✅ Safu Contract ✅ No Private Sale ✅ Major wallets integration- Metamask , trust wallet, Wallet connect , BSC Wallet.
✅ No unlocked token in 30 Days. ✅ Massive Marketing. 

Social

Laser Scorebeta Last Audit: 24 August 2022

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

Anti-Scam

Links

Reentrancy in SwapNFT._transfer(address,address,uint256) (#551-611):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#602)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
- address(marketingWallet).sendValue(marketingAmt) (#680)
- address(devWallet).sendValue(devAmt) (#685)
- swapAndLiquify(swapTokensAtAmount,taxes) (#603)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
- address(marketingWallet).sendValue(marketingAmt) (#680)
- address(devWallet).sendValue(devAmt) (#685)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#602)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
- swapAndLiquify(swapTokensAtAmount,taxes) (#603)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#610)
- _rOwned[address(this)] += rDev (#414)
- _rOwned[address(this)] += rMarketing (#405)
- _rOwned[address(this)] += rLiquidity (#396)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#636)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#637)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#610)
- _rTotal -= rRfi (#386)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#610)
- _tOwned[address(this)] += tMarketing (#403)
- _tOwned[address(this)] += tLiquidity (#394)
- _tOwned[address(this)] += tDev (#412)
- _tOwned[sender] = _tOwned[sender] - tAmount (#629)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#633)
Apply the check-effects-interactions pattern.

Additional information: link

SwapNFT.rescueAnyBEP20Tokens(address,address,uint256) (#769-772) ignores return value by IBEP20(_tokenAddr).transfer(_to,_amount) (#771)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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


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)

SwapNFT.swapAndLiquify(uint256,SwapNFT.Taxes) (#653-687) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#670)
-bnbToAddLiquidityWith = unitBalance * temp.liquidity (#671)
SwapNFT.swapAndLiquify(uint256,SwapNFT.Taxes) (#653-687) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#670)
-marketingAmt = unitBalance * 2 * temp.marketing (#678)
SwapNFT.swapAndLiquify(uint256,SwapNFT.Taxes) (#653-687) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#670)
-devAmt = unitBalance * 2 * temp.dev (#683)
Consider ordering multiplication before division.

Additional information: link

SwapNFT.addLiquidity(uint256,uint256) (#689-702) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
Ensure that all the return values of the function calls are used.

Additional information: link

SwapNFT.allowance(address,address).owner (#246) shadows:
- Ownable.owner() (#46-48) (function)
SwapNFT._approve(address,address,uint256).owner (#541) shadows:
- Ownable.owner() (#46-48) (function)
Rename the local variables that shadow another component.

Additional information: link

SwapNFT.updatedeadline(uint256) (#316-320) should emit an event for:
- deadline = _deadline (#319)
SwapNFT.updateCooldown(bool,uint256) (#738-742) should emit an event for:
- coolDownTime = time * 1 (#740)
SwapNFT.updateSwapTokensAtAmount(uint256) (#744-747) should emit an event for:
- swapTokensAtAmount = amount * 10 ** _decimals (#746)
SwapNFT.updateMaxTxLimit(uint256,uint256,uint256) (#753-760) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#757)
- maxSellLimit = maxSell * 10 ** decimals() (#758)
- maxWalletLimit = maxWallet * 10 ** decimals() (#759)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in SwapNFT._transfer(address,address,uint256) (#551-611):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#602)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
- address(marketingWallet).sendValue(marketingAmt) (#680)
- address(devWallet).sendValue(devAmt) (#685)
- swapAndLiquify(swapTokensAtAmount,taxes) (#603)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
- address(marketingWallet).sendValue(marketingAmt) (#680)
- address(devWallet).sendValue(devAmt) (#685)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#602)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
- swapAndLiquify(swapTokensAtAmount,taxes) (#603)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#610)
- totFeesPaid.dev += tDev (#409)
- totFeesPaid.marketing += tMarketing (#400)
- totFeesPaid.liquidity += tLiquidity (#391)
- totFeesPaid.rfi += tRfi (#387)
Reentrancy in SwapNFT.constructor() (#201-221):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#203)
State variables written after the call(s):
- excludeFromReward(pair) (#208)
- _excluded.push(account) (#335)
- excludeFromReward(deadWallet) (#209)
- _excluded.push(account) (#335)
- excludeFromReward(pair) (#208)
- _isExcluded[account] = true (#334)
- excludeFromReward(deadWallet) (#209)
- _isExcluded[account] = true (#334)
- _isExcludedFromFee[address(this)] = true (#212)
- _isExcludedFromFee[owner()] = true (#213)
- _isExcludedFromFee[marketingWallet] = true (#214)
- _isExcludedFromFee[devWallet] = true (#215)
- _isExcludedFromFee[deadWallet] = true (#216)
- _isExcludedFromFee[0xD152f549545093347A162Dce210e7293f1452150] = true (#217)
- _isExcludedFromFee[0x7ee058420e5937496F5a2096f04caA7721cF70cc] = true (#218)
- _rOwned[owner()] = _rTotal (#211)
- excludeFromReward(pair) (#208)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#332)
- excludeFromReward(deadWallet) (#209)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#332)
- pair = _pair (#206)
- router = _router (#205)
Reentrancy in SwapNFT.swapAndLiquify(uint256,SwapNFT.Taxes) (#653-687):
External calls:
- swapTokensForBNB(toSwap) (#667)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#675)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#675)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#675)
- _allowances[owner][spender] = amount (#547)
Reentrancy in SwapNFT.transferFrom(address,address,uint256) (#255-267):
External calls:
- _transfer(sender,recipient,amount) (#260)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
- address(marketingWallet).sendValue(marketingAmt) (#680)
- address(devWallet).sendValue(devAmt) (#685)
External calls sending eth:
- _transfer(sender,recipient,amount) (#260)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#264)
- _allowances[owner][spender] = amount (#547)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SwapNFT._transfer(address,address,uint256) (#551-611):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#602)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
- address(marketingWallet).sendValue(marketingAmt) (#680)
- address(devWallet).sendValue(devAmt) (#685)
- swapAndLiquify(swapTokensAtAmount,taxes) (#603)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
- address(marketingWallet).sendValue(marketingAmt) (#680)
- address(devWallet).sendValue(devAmt) (#685)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#602)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
- swapAndLiquify(swapTokensAtAmount,taxes) (#603)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
Event emitted after the call(s):
- Transfer(sender,address(this),s.tLiquidity + s.tMarketing + s.tDev) (#642-646)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#610)
- Transfer(sender,recipient,s.tTransferAmount) (#650)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#610)
Reentrancy in SwapNFT.constructor() (#201-221):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#203)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#220)
Reentrancy in SwapNFT.swapAndLiquify(uint256,SwapNFT.Taxes) (#653-687):
External calls:
- swapTokensForBNB(toSwap) (#667)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#675)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#675)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#548)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#675)
Reentrancy in SwapNFT.transferFrom(address,address,uint256) (#255-267):
External calls:
- _transfer(sender,recipient,amount) (#260)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#713-719)
- address(marketingWallet).sendValue(marketingAmt) (#680)
- address(devWallet).sendValue(devAmt) (#685)
External calls sending eth:
- _transfer(sender,recipient,amount) (#260)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#694-701)
- (success) = recipient.call{value: amount}() (#109)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#548)
- _approve(sender,_msgSender(),currentAllowance - amount) (#264)
Apply the check-effects-interactions pattern.

Additional information: link

SwapNFT._transfer(address,address,uint256) (#551-611) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#588)
Avoid relying on block.timestamp.

Additional information: link

SwapNFT.includeInReward(address) (#338-349) has costly operations inside a loop:
- _excluded.pop() (#345)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#31-34) is never used and should be removed
Remove unused functions.

Additional information: link

SwapNFT._rTotal (#141) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _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

solc-0.8.16 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) (#106-111):
- (success) = recipient.call{value: amount}() (#109)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IRouter.WETH() (#78) is not in mixedCase
Struct SwapNFT.valuesFromGetValues (#178-190) is not in CapWords
Function SwapNFT.EnableTrading() (#309-314) is not in mixedCase
Parameter SwapNFT.updatedeadline(uint256)._deadline (#316) is not in mixedCase
Parameter SwapNFT.setTaxes(uint256,uint256,uint256,uint256)._rfi (#364) is not in mixedCase
Parameter SwapNFT.setTaxes(uint256,uint256,uint256,uint256)._marketing (#365) is not in mixedCase
Parameter SwapNFT.setTaxes(uint256,uint256,uint256,uint256)._liquidity (#366) is not in mixedCase
Parameter SwapNFT.setTaxes(uint256,uint256,uint256,uint256)._dev (#367) is not in mixedCase
Parameter SwapNFT.setSellTaxes(uint256,uint256,uint256,uint256)._rfi (#375) is not in mixedCase
Parameter SwapNFT.setSellTaxes(uint256,uint256,uint256,uint256)._marketing (#376) is not in mixedCase
Parameter SwapNFT.setSellTaxes(uint256,uint256,uint256,uint256)._liquidity (#377) is not in mixedCase
Parameter SwapNFT.setSellTaxes(uint256,uint256,uint256,uint256)._dev (#378) is not in mixedCase
Parameter SwapNFT.updateSwapEnabled(bool)._enabled (#749) is not in mixedCase
Parameter SwapNFT.rescueAnyBEP20Tokens(address,address,uint256)._tokenAddr (#769) is not in mixedCase
Parameter SwapNFT.rescueAnyBEP20Tokens(address,address,uint256)._to (#769) is not in mixedCase
Parameter SwapNFT.rescueAnyBEP20Tokens(address,address,uint256)._amount (#769) is not in mixedCase
Constant SwapNFT._decimals (#137) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SwapNFT.genesis_block (#148) is not in mixedCase
Constant SwapNFT._name (#155) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SwapNFT._symbol (#156) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#32)" inContext (#26-35)
Remove redundant statements if they congest code but offer no value.

Additional information: link

SwapNFT.slitherConstructorVariables() (#114-776) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#151)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SwapNFT._tTotal (#140) should be constant
SwapNFT.deadWallet (#151) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#55-57)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#59-62)
name() should be declared external:
- SwapNFT.name() (#224-226)
symbol() should be declared external:
- SwapNFT.symbol() (#228-230)
totalSupply() should be declared external:
- SwapNFT.totalSupply() (#237-239)
allowance(address,address) should be declared external:
- SwapNFT.allowance(address,address) (#246-248)
approve(address,uint256) should be declared external:
- SwapNFT.approve(address,uint256) (#250-253)
transferFrom(address,address,uint256) should be declared external:
- SwapNFT.transferFrom(address,address,uint256) (#255-267)
increaseAllowance(address,uint256) should be declared external:
- SwapNFT.increaseAllowance(address,uint256) (#269-272)
decreaseAllowance(address,uint256) should be declared external:
- SwapNFT.decreaseAllowance(address,uint256) (#274-283)
transfer(address,uint256) should be declared external:
- SwapNFT.transfer(address,uint256) (#285-288)
isExcludedFromReward(address) should be declared external:
- SwapNFT.isExcludedFromReward(address) (#290-292)
reflectionFromToken(uint256,bool) should be declared external:
- SwapNFT.reflectionFromToken(uint256,bool) (#294-307)
excludeFromFee(address) should be declared external:
- SwapNFT.excludeFromFee(address) (#351-353)
includeInFee(address) should be declared external:
- SwapNFT.includeInFee(address) (#355-357)
isExcludedFromFee(address) should be declared external:
- SwapNFT.isExcludedFromFee(address) (#359-361)
setTaxes(uint256,uint256,uint256,uint256) should be declared external:
- SwapNFT.setTaxes(uint256,uint256,uint256,uint256) (#363-372)
setSellTaxes(uint256,uint256,uint256,uint256) should be declared external:
- SwapNFT.setSellTaxes(uint256,uint256,uint256,uint256) (#374-383)
rescueAnyBEP20Tokens(address,address,uint256) should be declared external:
- SwapNFT.rescueAnyBEP20Tokens(address,address,uint256) (#769-772)
Use the external attribute for functions never called from the contract.

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.


Telegram account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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

Additional information: link


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit 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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for SWAPNFT

News for SWAPNFT