Snoopy Inu Token Logo

SnoopyInu [Snoopy Inu] Token

About SnoopyInu

Listings

Not Found
Token 2 years
white paper

SNOOPY INU is a decentralized token on BSC ecosystem with the aim of harmonizing contemporary blockchain features like swap, dashboard, vesting, NFTs and gaming on one platform. This is better described as the Holy Grail as it has vast utilities which are beautifully combined on one platform. We are building a multipurpose platform with unparalleled functionality that will guarantee the longevity of our project even as we provide premium value and returns for our esteemed investors.
We are poised to creating a multipurpose, one-stop platform that will have most sort-after blockchain features like swap, NFT marketplace, gaming, vesting, etcetera. This will help eliminate or at least reduce the stress crypto investors undergo in trying to access these features across different platforms. Imagine having all these enticing features on one platform with near-perfect

Social

Laser Scorebeta Last Audit: 18 February 2022

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

Anti-Scam

Links


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

SnoopyInu.addLiquidity(uint256,uint256) (#705-718) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,devWallet,block.timestamp) (#710-717)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SnoopyInu._transfer(address,address,uint256) (#557-646):
External calls:
- handle_fees(feeswap,currentTaxes) (#634)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,devWallet,block.timestamp) (#710-717)
- (success) = recipient.call{value: amount}() (#366)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
- address(marketingWallet).sendValue(marketingAmt) (#676)
- address(devWallet).sendValue(devAmt) (#681)
External calls sending eth:
- handle_fees(feeswap,currentTaxes) (#634)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,devWallet,block.timestamp) (#710-717)
- (success) = recipient.call{value: amount}() (#366)
State variables written after the call(s):
- super._transfer(sender,recipient,amount - fee) (#637)
- _balances[sender] = senderBalance - amount (#267)
- _balances[recipient] += amount (#268)
- super._transfer(sender,address(this),feeAmount) (#642)
- _balances[sender] = senderBalance - amount (#267)
- _balances[recipient] += amount (#268)
Apply the check-effects-interactions pattern.

Additional information: link

SnoopyInu.rescueBEP20(address,uint256) (#811-813) ignores return value by IERC20(tokenAdd).transfer(devWallet,amount) (#812)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

SnoopyInu._transfer(address,address,uint256).fee (#599) is written in both
fee = 0 (#608)
fee = (amount * feesum) / 100 (#630)
Fix or remove the writes.

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.

SnoopyInu.handle_fees(uint256,SnoopyInu.Taxes) (#648-685) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - swapTaxes.liquidity) (#666)
-bnbToAddLiquidityWith = unitBalance * swapTaxes.liquidity (#667)
SnoopyInu.handle_fees(uint256,SnoopyInu.Taxes) (#648-685) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - swapTaxes.liquidity) (#666)
-marketingAmt = unitBalance * 2 * swapTaxes.marketing (#674)
SnoopyInu.handle_fees(uint256,SnoopyInu.Taxes) (#648-685) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - swapTaxes.liquidity) (#666)
-devAmt = unitBalance * 2 * swapTaxes.dev (#679)
Consider ordering multiplication before division.

Additional information: link

SnoopyInu._transfer(address,address,uint256).feeswap (#597) is a local variable never initialized
SnoopyInu._transfer(address,address,uint256).feesum (#598) is a local variable never initialized
SnoopyInu._transfer(address,address,uint256).currentTaxes (#600) 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

SnoopyInu.addLiquidity(uint256,uint256) (#705-718) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,devWallet,block.timestamp) (#710-717)
Ensure that all the return values of the function calls are used.

Additional information: link

SnoopyInu.updateLiquidityTreshhold(uint256) (#725-728) should emit an event for:
- tokenLiquidityThreshold = new_amount * 10 ** decimals() (#727)
SnoopyInu.updateTradingEnabled(bool,uint256,uint256) (#743-753) should emit an event for:
- deadline = _deadline (#748)
- launchtax = _launchtax (#749)
SnoopyInu.updateCooldown(bool,uint256) (#763-766) should emit an event for:
- coolDownTime = time * 1 (#764)
SnoopyInu.updateMaxTxLimit(uint256,uint256) (#798-801) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#799)
- maxSellLimit = maxSell * 10 ** decimals() (#800)
SnoopyInu.updateMaxWalletlimit(uint256) (#803-805) should emit an event for:
- maxWalletLimit = amount * 10 ** decimals() (#804)
Emit an event for critical parameter changes.

Additional information: link

SnoopyInu.constructor(address)._pair (#494) lacks a zero-check on :
- pair = _pair (#497)
SnoopyInu.updateRouterAndPair(address,address).newPair (#738) lacks a zero-check on :
- pair = newPair (#740)
SnoopyInu.updateMarketingWallet(address).newWallet (#755) lacks a zero-check on :
- marketingWallet = newWallet (#756)
SnoopyInu.updateDevWallet(address).newWallet (#759) lacks a zero-check on :
- devWallet = newWallet (#760)
Check that the address is not zero.

Additional information: link

Modifier SnoopyInu.mutexLock() (#480-486) does not always execute _; or revert
All the paths in a modifier must execute _ or revert.

Additional information: link

Reentrancy in SnoopyInu.constructor(address) (#488-510):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#494)
State variables written after the call(s):
- allowedTransfer[address(this)] = true (#503)
- allowedTransfer[owner()] = true (#504)
- allowedTransfer[pair] = true (#505)
- allowedTransfer[marketingWallet] = true (#506)
- allowedTransfer[devWallet] = true (#507)
- allowedTransfer[deadWallet] = true (#508)
- exemptFee[address(this)] = true (#498)
- exemptFee[marketingWallet] = true (#499)
- exemptFee[devWallet] = true (#500)
- exemptFee[deadWallet] = true (#501)
- pair = _pair (#497)
- router = _router (#496)
Reentrancy in SnoopyInu.handle_fees(uint256,SnoopyInu.Taxes) (#648-685):
External calls:
- swapTokensForBNB(toSwap) (#663)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#671)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,devWallet,block.timestamp) (#710-717)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#671)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,devWallet,block.timestamp) (#710-717)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#671)
- _allowances[owner][spender] = amount (#337)
Reentrancy in SnoopyInu.transferFrom(address,address,uint256) (#517-529):
External calls:
- _transfer(sender,recipient,amount) (#522)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,devWallet,block.timestamp) (#710-717)
- (success) = recipient.call{value: amount}() (#366)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
- address(marketingWallet).sendValue(marketingAmt) (#676)
- address(devWallet).sendValue(devAmt) (#681)
External calls sending eth:
- _transfer(sender,recipient,amount) (#522)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,devWallet,block.timestamp) (#710-717)
- (success) = recipient.call{value: amount}() (#366)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#526)
- _allowances[owner][spender] = amount (#337)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SnoopyInu._transfer(address,address,uint256) (#557-646):
External calls:
- handle_fees(feeswap,currentTaxes) (#634)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,devWallet,block.timestamp) (#710-717)
- (success) = recipient.call{value: amount}() (#366)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
- address(marketingWallet).sendValue(marketingAmt) (#676)
- address(devWallet).sendValue(devAmt) (#681)
External calls sending eth:
- handle_fees(feeswap,currentTaxes) (#634)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,devWallet,block.timestamp) (#710-717)
- (success) = recipient.call{value: amount}() (#366)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#270)
- super._transfer(sender,address(this),feeAmount) (#642)
- Transfer(sender,recipient,amount) (#270)
- super._transfer(sender,recipient,amount - fee) (#637)
Reentrancy in SnoopyInu.handle_fees(uint256,SnoopyInu.Taxes) (#648-685):
External calls:
- swapTokensForBNB(toSwap) (#663)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#671)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,devWallet,block.timestamp) (#710-717)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#671)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,devWallet,block.timestamp) (#710-717)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#338)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#671)
Reentrancy in SnoopyInu.transferFrom(address,address,uint256) (#517-529):
External calls:
- _transfer(sender,recipient,amount) (#522)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,devWallet,block.timestamp) (#710-717)
- (success) = recipient.call{value: amount}() (#366)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
- address(marketingWallet).sendValue(marketingAmt) (#676)
- address(devWallet).sendValue(devAmt) (#681)
External calls sending eth:
- _transfer(sender,recipient,amount) (#522)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,devWallet,block.timestamp) (#710-717)
- (success) = recipient.call{value: amount}() (#366)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#338)
- _approve(sender,_msgSender(),currentAllowance - amount) (#526)
Apply the check-effects-interactions pattern.

Additional information: link

SnoopyInu._transfer(address,address,uint256) (#557-646) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#592)
Avoid relying on block.timestamp.

Additional information: link

SnoopyInu.updateTradingEnabled(bool,uint256,uint256) (#743-753) compares to a boolean constant:
-state == true (#752)
Remove the equality to the boolean constant.

Additional information: link

Context._msgData() (#9-12) is never used and should be removed
ERC20._burn(address,uint256) (#303-314) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#363-368):
- (success) = recipient.call{value: amount}() (#366)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable ERC20._balances (#55) is not in mixedCase
Variable ERC20._allowances (#57) is not in mixedCase
Function IRouter.WETH() (#412) is not in mixedCase
Function SnoopyInu.handle_fees(uint256,SnoopyInu.Taxes) (#648-685) is not in mixedCase
Parameter SnoopyInu.updateLiquidityTreshhold(uint256).new_amount (#725) is not in mixedCase
Parameter SnoopyInu.updateTradingEnabled(bool,uint256,uint256)._deadline (#745) is not in mixedCase
Parameter SnoopyInu.updateTradingEnabled(bool,uint256,uint256)._launchtax (#746) is not in mixedCase
Parameter SnoopyInu.updateExemptFee(address,bool)._address (#788) is not in mixedCase
Variable SnoopyInu.genesis_block (#454) is not in mixedCase
Constant SnoopyInu.deadWallet (#460) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#10)" inContext (#4-13)
Remove redundant statements if they congest code but offer no value.

Additional information: link

SnoopyInu.slitherConstructorConstantVariables() (#439-818) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#460)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

name() should be declared external:
- ERC20.name() (#81-83)
symbol() should be declared external:
- ERC20.symbol() (#89-91)
totalSupply() should be declared external:
- ERC20.totalSupply() (#113-115)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#132-140)
- SnoopyInu.transfer(address,uint256) (#552-555)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#145-153)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#162-165)
- SnoopyInu.approve(address,uint256) (#512-515)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#180-192)
- SnoopyInu.transferFrom(address,address,uint256) (#517-529)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#206-213)
- SnoopyInu.increaseAllowance(address,uint256) (#531-538)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#229-239)
- SnoopyInu.decreaseAllowance(address,uint256) (#540-550)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#389-391)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#393-396)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Twitter account has relatively few followers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


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 contract audit


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 whitepaper link on the website


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


Token has no active CoinMarketCap listing / rank

Price for SnoopyInu

News for SnoopyInu