Inuzuka Inu Token Logo

INUZU [Inuzuka Inu] Token

About INUZU

Listings

Not Found
Token 2 years
white paper

Inuzuka Inu is a meme token we share for all crypto community, we want $INUZU to be a token that has utility for all holders

Social

Laser Scorebeta Last Audit: 9 June 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...)

Reentrancy in InuzukaInu._transfer(address,address,uint256) (#493-544):
External calls:
- swapAndLiquify(contractTokenBalance) (#525)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#590-596)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#525)
- wallet.transfer(amount) (#547)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- _tOwned[sender] = _tOwned[sender] - tAmount (#627)
- _tOwned[recipient] = _tOwned[recipient] + tAmount (#628)
- _tOwned[sender] = _tOwned[sender] - tAmount (#639)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#640)
- _tOwned[address(this)] = _tOwned[address(this)] + buyFEE (#641)
- _tOwned[sender] = _tOwned[sender] - tAmount (#652)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount_scope_0 (#653)
- _tOwned[address(this)] = _tOwned[address(this)] + sellFEE (#654)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- _tTotal = _tTotal - tAmount (#632)
- _tTotal = _tTotal - tTransferAmount (#645)
- _tTotal = _tTotal - tTransferAmount_scope_0 (#658)
- txCount ++ (#538)
Apply the check-effects-interactions pattern.

Additional information: link

InuzukaInu._transfer(address,address,uint256).isBuy (#529) 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

InuzukaInu.addLiquidity(uint256,uint256) (#600-611) ignores return value by uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
Ensure that all the return values of the function calls are used.

Additional information: link

Address.isContract(address) (#71-75) uses assembly
- INLINE ASM (#73)
Address._verifyCallResult(bool,bytes,string) (#123-136) uses assembly
- INLINE ASM (#128-131)
Do not use evm assembly.

Additional information: link

Pragma version0.8.10 (#8) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 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

InuzukaInu.swapAndLiquify(uint256) (#552-582) performs a multiplication on the result of a division:
-split_M = Percent_Marketing * 100 / (Percent_AutoLP + Percent_Marketing + Percent_Dev) (#567)
-BNB_M = BNB_Total * split_M / 100 (#568)
InuzukaInu.swapAndLiquify(uint256) (#552-582) performs a multiplication on the result of a division:
-split_D = Percent_Dev * 100 / (Percent_AutoLP + Percent_Marketing + Percent_Dev) (#570)
-BNB_D = BNB_Total * split_D / 100 (#571)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in InuzukaInu.constructor() (#404-425):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#414-415)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#418)
- _isExcludedFromFee[address(this)] = true (#419)
- _isExcludedFromFee[Wallet_Marketing] = true (#420)
- _isExcludedFromFee[Wallet_Burn] = true (#421)
- uniswapV2Router = _uniswapV2Router (#416)
Reentrancy in InuzukaInu.swapAndLiquify(uint256) (#552-582):
External calls:
- swapTokensForBNB(tokens_to_LP_Half + tokens_to_M + tokens_to_D) (#564)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#590-596)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#574)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
External calls sending eth:
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#574)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
State variables written after the call(s):
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#574)
- _allowances[theOwner][theSpender] = amount (#488)
Reentrancy in InuzukaInu.transferFrom(address,address,uint256) (#461-465):
External calls:
- _transfer(sender,recipient,amount) (#462)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#590-596)
External calls sending eth:
- _transfer(sender,recipient,amount) (#462)
- wallet.transfer(amount) (#547)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#463)
- _allowances[theOwner][theSpender] = amount (#488)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in InuzukaInu._transfer(address,address,uint256) (#493-544):
External calls:
- swapAndLiquify(contractTokenBalance) (#525)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#590-596)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#525)
- wallet.transfer(amount) (#547)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
Event emitted after the call(s):
- Transfer(sender,recipient,tAmount) (#629)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- Transfer(sender,recipient,tTransferAmount) (#642)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- Transfer(sender,recipient,tTransferAmount_scope_0) (#655)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
Reentrancy in InuzukaInu.constructor() (#404-425):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#414-415)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#423)
Reentrancy in InuzukaInu.swapAndLiquify(uint256) (#552-582):
External calls:
- swapTokensForBNB(tokens_to_LP_Half + tokens_to_M + tokens_to_D) (#564)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#590-596)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#574)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
External calls sending eth:
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#574)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#489)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#574)
- SwapAndLiquify(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D),tokens_to_LP_Half) (#575)
Reentrancy in InuzukaInu.transferFrom(address,address,uint256) (#461-465):
External calls:
- _transfer(sender,recipient,amount) (#462)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#590-596)
External calls sending eth:
- _transfer(sender,recipient,amount) (#462)
- wallet.transfer(amount) (#547)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#489)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#463)
Apply the check-effects-interactions pattern.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#123-136) is never used and should be removed
Address.functionCall(address,bytes) (#83-85) is never used and should be removed
Address.functionCall(address,bytes,string) (#87-89) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#91-93) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#95-100) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#113-115) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#117-121) is never used and should be removed
Address.functionStaticCall(address,bytes) (#102-104) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#106-110) is never used and should be removed
Address.isContract(address) (#71-75) is never used and should be removed
Address.sendValue(address,uint256) (#77-81) is never used and should be removed
Context._msgData() (#62-65) is never used and should be removed
InuzukaInu._getCurrentSupply() (#479-481) is never used and should be removed
SafeMath.div(uint256,uint256) (#36-38) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#47-52) is never used and should be removed
SafeMath.mul(uint256,uint256) (#32-34) is never used and should be removed
SafeMath.sub(uint256,uint256) (#28-30) is never used and should be removed
Remove unused functions.

Additional information: link

InuzukaInu._maxWalletToken (#378) is set pre-construction with a non-constant function or state variable:
- _tTotal * 2 / 100
InuzukaInu._previousMaxWalletToken (#379) is set pre-construction with a non-constant function or state variable:
- _maxWalletToken
InuzukaInu._maxTxAmount (#381) is set pre-construction with a non-constant function or state variable:
- _tTotal * 2 / 100
InuzukaInu._previousMaxTxAmount (#382) is set pre-construction with a non-constant function or state variable:
- _maxTxAmount
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.sendValue(address,uint256) (#77-81):
- (success) = recipient.call{value: amount}() (#79)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#95-100):
- (success,returndata) = target.call{value: value}(data) (#98)
Low level call in Address.functionStaticCall(address,bytes,string) (#106-110):
- (success,returndata) = target.staticcall(data) (#108)
Low level call in Address.functionDelegateCall(address,bytes,string) (#117-121):
- (success,returndata) = target.delegatecall(data) (#119)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#165) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#166) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#179) is not in mixedCase
Function IUniswapV2Router01.WETH() (#196) is not in mixedCase
Parameter InuzukaInu.addLiquidity(uint256,uint256).BNBAmount (#600) is not in mixedCase
Function InuzukaInu.remove_Random_Tokens(address,uint256) (#613-619) is not in mixedCase
Parameter InuzukaInu.remove_Random_Tokens(address,uint256).random_Token_Address (#613) is not in mixedCase
Parameter InuzukaInu.remove_Random_Tokens(address,uint256).percent_of_Tokens (#613) is not in mixedCase
Variable InuzukaInu._isExcludedFromFee (#354) is not in mixedCase
Variable InuzukaInu.Wallet_Marketing (#356) is not in mixedCase
Variable InuzukaInu.Wallet_Dev (#357) is not in mixedCase
Constant InuzukaInu.Wallet_Burn (#358) is not in UPPER_CASE_WITH_UNDERSCORES
Constant InuzukaInu._decimals (#362) is not in UPPER_CASE_WITH_UNDERSCORES
Constant InuzukaInu._name (#364) is not in UPPER_CASE_WITH_UNDERSCORES
Constant InuzukaInu._symbol (#365) is not in UPPER_CASE_WITH_UNDERSCORES
Variable InuzukaInu._Tax_On_Buy (#370) is not in mixedCase
Variable InuzukaInu._Tax_On_Sell (#371) is not in mixedCase
Variable InuzukaInu.Percent_Marketing (#373) is not in mixedCase
Variable InuzukaInu.Percent_Dev (#374) is not in mixedCase
Variable InuzukaInu.Percent_Burn (#375) is not in mixedCase
Variable InuzukaInu.Percent_AutoLP (#376) is not in mixedCase
Variable InuzukaInu._maxWalletToken (#378) is not in mixedCase
Variable InuzukaInu._maxTxAmount (#381) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#63)" inContext (#57-66)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in InuzukaInu._transfer(address,address,uint256) (#493-544):
External calls:
- swapAndLiquify(contractTokenBalance) (#525)
- wallet.transfer(amount) (#547)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#525)
- wallet.transfer(amount) (#547)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- _tOwned[sender] = _tOwned[sender] - tAmount (#627)
- _tOwned[recipient] = _tOwned[recipient] + tAmount (#628)
- _tOwned[sender] = _tOwned[sender] - tAmount (#639)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#640)
- _tOwned[address(this)] = _tOwned[address(this)] + buyFEE (#641)
- _tOwned[sender] = _tOwned[sender] - tAmount (#652)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount_scope_0 (#653)
- _tOwned[address(this)] = _tOwned[address(this)] + sellFEE (#654)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- _tTotal = _tTotal - tAmount (#632)
- _tTotal = _tTotal - tTransferAmount (#645)
- _tTotal = _tTotal - tTransferAmount_scope_0 (#658)
- txCount ++ (#538)
Event emitted after the call(s):
- Transfer(sender,recipient,tAmount) (#629)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- Transfer(sender,recipient,tTransferAmount) (#642)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- Transfer(sender,recipient,tTransferAmount_scope_0) (#655)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
Reentrancy in InuzukaInu.transferFrom(address,address,uint256) (#461-465):
External calls:
- _transfer(sender,recipient,amount) (#462)
- wallet.transfer(amount) (#547)
External calls sending eth:
- _transfer(sender,recipient,amount) (#462)
- wallet.transfer(amount) (#547)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#463)
- _allowances[theOwner][theSpender] = amount (#488)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#489)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#463)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#200) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#201)
Variable InuzukaInu.swapAndLiquify(uint256).tokens_to_D (#560) is too similar to InuzukaInu.swapAndLiquify(uint256).tokens_to_M (#559)
Prevent variables from having similar names.

Additional information: link

InuzukaInu.slitherConstructorConstantVariables() (#330-667) uses literals with too many digits:
- Wallet_Burn = address(0x000000000000000000000000000000000000dEaD) (#358)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

InuzukaInu.MAX (#361) is never used in InuzukaInu (#330-667)
InuzukaInu._previousMaxWalletToken (#379) is never used in InuzukaInu (#330-667)
InuzukaInu._previousMaxTxAmount (#382) is never used in InuzukaInu (#330-667)
Remove unused state variables.

Additional information: link

InuzukaInu.Percent_AutoLP (#376) should be constant
InuzukaInu.Percent_Burn (#375) should be constant
InuzukaInu.Percent_Dev (#374) should be constant
InuzukaInu.Percent_Marketing (#373) should be constant
InuzukaInu.Wallet_Dev (#357) should be constant
InuzukaInu.Wallet_Marketing (#356) should be constant
InuzukaInu._Tax_On_Buy (#370) should be constant
InuzukaInu._Tax_On_Sell (#371) should be constant
InuzukaInu.swapAndLiquifyEnabled (#388) should be constant
InuzukaInu.swapTrigger (#368) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- InuzukaInu.renounceOwnership() (#347-350)
name() should be declared external:
- InuzukaInu.name() (#427-429)
symbol() should be declared external:
- InuzukaInu.symbol() (#431-433)
decimals() should be declared external:
- InuzukaInu.decimals() (#435-437)
totalSupply() should be declared external:
- InuzukaInu.totalSupply() (#439-441)
transfer(address,uint256) should be declared external:
- InuzukaInu.transfer(address,uint256) (#447-450)
allowance(address,address) should be declared external:
- InuzukaInu.allowance(address,address) (#452-454)
approve(address,uint256) should be declared external:
- InuzukaInu.approve(address,uint256) (#456-459)
transferFrom(address,address,uint256) should be declared external:
- InuzukaInu.transferFrom(address,address,uint256) (#461-465)
increaseAllowance(address,uint256) should be declared external:
- InuzukaInu.increaseAllowance(address,uint256) (#467-470)
decreaseAllowance(address,uint256) should be declared external:
- InuzukaInu.decreaseAllowance(address,uint256) (#472-475)
remove_Random_Tokens(address,uint256) should be declared external:
- InuzukaInu.remove_Random_Tokens(address,uint256) (#613-619)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 7% buy tax and 13% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Average 30d PancakeSwap liquidity is low.


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 link seems to be invalid


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord 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 Twitter link on the website


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


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank

Price for INUZU