inugami Token Logo

inugami Token

About inugami

Listings

Token 2 years
CoinMarketCap 2 years
[CoinMarketCap] alert: The owner of this smart-contract can modify the trading fees of the token
[CoinGecko] alert: The following token has a variable tax function on the smart contract - which allows contract owners to change tax rates post deployment.
Do your own research and be careful if you are trading this token.

Join the battle of the memes, stake your inugami for your favorite meme tokens to win battles, inugami will bless the winner and those staking with the meme army tokens

Social

Laser Scorebeta Last Audit: 2 March 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

inugami.sendETHToFee(uint256) (#652-654) sends eth to arbitrary user
Dangerous calls:
- marketingAddress.transfer(amount) (#653)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in inugami._transfer(address,address,uint256) (#593-640):
External calls:
- swapTokens(contractTokenBalance) (#627)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#667-673)
External calls sending eth:
- swapTokens(contractTokenBalance) (#627)
- marketingAddress.transfer(amount) (#653)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#798)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#723)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#714)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#734)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#744)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#715)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#735)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#725)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#746)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _rTotal = _rTotal.sub(rFee) (#753)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#800)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#733)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#743)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#724)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#745)
Apply the check-effects-interactions pattern.

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.

inugami._transfer(address,address,uint256) (#593-640) uses a dangerous strict equality:
- block.timestamp == launchTime (#610)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#98-104):
- (success) = recipient.call{value: amount}() (#102)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#124-141):
- (success,returndata) = target.call{value: weiValue}(data) (#127)
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() (#214) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#215) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#231) is not in mixedCase
Function IUniswapV2Router01.WETH() (#252) is not in mixedCase
Contract inugami (#389-894) is not in CapWords
Parameter inugami.calculateTaxFee(uint256)._amount (#803) is not in mixedCase
Parameter inugami.calculateLiquidityFee(uint256)._amount (#809) is not in mixedCase
Parameter inugami.setMarketingAddress(address)._marketingAddress (#851) is not in mixedCase
Function inugami._removeSniper(address) (#864-869) is not in mixedCase
Function inugami._amnestySniper(address) (#871-881) is not in mixedCase
Variable inugami._taxFee (#415) is not in mixedCase
Variable inugami._liquidityFee (#418) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in inugami._transfer(address,address,uint256) (#593-640):
External calls:
- swapTokens(contractTokenBalance) (#627)
- marketingAddress.transfer(amount) (#653)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _liquidityFee = _previousLiquidityFee (#827)
- _liquidityFee = 0 (#822)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _previousLiquidityFee = _liquidityFee (#819)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _previousTaxFee = _taxFee (#818)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#798)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#723)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#714)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#734)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#744)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#715)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#735)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#725)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#746)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _rTotal = _rTotal.sub(rFee) (#753)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _tFeeTotal = _tFeeTotal.add(tFee) (#754)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#800)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#733)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#743)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#724)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#745)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _taxFee = _previousTaxFee (#826)
- _taxFee = 0 (#821)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#718)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- Transfer(sender,recipient,tTransferAmount) (#738)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- Transfer(sender,recipient,tTransferAmount) (#728)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- Transfer(sender,recipient,tTransferAmount) (#749)
- _tokenTransfer(from,to,amount,takeFee) (#639)
Reentrancy in inugami.transferFrom(address,address,uint256) (#509-513):
External calls:
- _transfer(sender,recipient,amount) (#510)
- marketingAddress.transfer(amount) (#653)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#511)
- _allowances[owner][spender] = amount (#589)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#590)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#511)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#257) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#258)
Variable inugami._transferFromExcluded(address,address,uint256).rTransferAmount (#732) is too similar to inugami._transferBothExcluded(address,address,uint256).tTransferAmount (#742)
Variable inugami.reflectionFromToken(uint256,bool).rTransferAmount (#551) is too similar to inugami._transferBothExcluded(address,address,uint256).tTransferAmount (#742)
Variable inugami._transferToExcluded(address,address,uint256).rTransferAmount (#722) is too similar to inugami._getTValues(uint256).tTransferAmount (#766)
Variable inugami._transferStandard(address,address,uint256).rTransferAmount (#713) is too similar to inugami._getValues(uint256).tTransferAmount (#758)
Variable inugami._transferBothExcluded(address,address,uint256).rTransferAmount (#742) is too similar to inugami._getTValues(uint256).tTransferAmount (#766)
Variable inugami._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#774) is too similar to inugami._getTValues(uint256).tTransferAmount (#766)
Variable inugami._transferBothExcluded(address,address,uint256).rTransferAmount (#742) is too similar to inugami._transferBothExcluded(address,address,uint256).tTransferAmount (#742)
Variable inugami._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#774) is too similar to inugami._transferBothExcluded(address,address,uint256).tTransferAmount (#742)
Variable inugami._transferFromExcluded(address,address,uint256).rTransferAmount (#732) is too similar to inugami._getValues(uint256).tTransferAmount (#758)
Variable inugami.reflectionFromToken(uint256,bool).rTransferAmount (#551) is too similar to inugami._getValues(uint256).tTransferAmount (#758)
Variable inugami._getValues(uint256).rTransferAmount (#759) is too similar to inugami._getTValues(uint256).tTransferAmount (#766)
Variable inugami._transferStandard(address,address,uint256).rTransferAmount (#713) is too similar to inugami._transferStandard(address,address,uint256).tTransferAmount (#713)
Variable inugami._transferToExcluded(address,address,uint256).rTransferAmount (#722) is too similar to inugami._getValues(uint256).tTransferAmount (#758)
Variable inugami._transferStandard(address,address,uint256).rTransferAmount (#713) is too similar to inugami._getTValues(uint256).tTransferAmount (#766)
Variable inugami._transferBothExcluded(address,address,uint256).rTransferAmount (#742) is too similar to inugami._getValues(uint256).tTransferAmount (#758)
Variable inugami._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#774) is too similar to inugami._getValues(uint256).tTransferAmount (#758)
Variable inugami._transferStandard(address,address,uint256).rTransferAmount (#713) is too similar to inugami._transferBothExcluded(address,address,uint256).tTransferAmount (#742)
Variable inugami._transferFromExcluded(address,address,uint256).rTransferAmount (#732) is too similar to inugami._getTValues(uint256).tTransferAmount (#766)
Variable inugami.reflectionFromToken(uint256,bool).rTransferAmount (#551) is too similar to inugami._getTValues(uint256).tTransferAmount (#766)
Variable inugami._transferFromExcluded(address,address,uint256).rTransferAmount (#732) is too similar to inugami._transferFromExcluded(address,address,uint256).tTransferAmount (#732)
Variable inugami._transferBothExcluded(address,address,uint256).rTransferAmount (#742) is too similar to inugami._transferToExcluded(address,address,uint256).tTransferAmount (#722)
Variable inugami._getValues(uint256).rTransferAmount (#759) is too similar to inugami._transferStandard(address,address,uint256).tTransferAmount (#713)
Variable inugami._transferFromExcluded(address,address,uint256).rTransferAmount (#732) is too similar to inugami._transferToExcluded(address,address,uint256).tTransferAmount (#722)
Variable inugami._transferBothExcluded(address,address,uint256).rTransferAmount (#742) is too similar to inugami._transferStandard(address,address,uint256).tTransferAmount (#713)
Variable inugami._transferBothExcluded(address,address,uint256).rTransferAmount (#742) is too similar to inugami._transferFromExcluded(address,address,uint256).tTransferAmount (#732)
Variable inugami._transferFromExcluded(address,address,uint256).rTransferAmount (#732) is too similar to inugami._transferStandard(address,address,uint256).tTransferAmount (#713)
Variable inugami._transferToExcluded(address,address,uint256).rTransferAmount (#722) is too similar to inugami._transferFromExcluded(address,address,uint256).tTransferAmount (#732)
Variable inugami._getValues(uint256).rTransferAmount (#759) is too similar to inugami._transferBothExcluded(address,address,uint256).tTransferAmount (#742)
Variable inugami._transferToExcluded(address,address,uint256).rTransferAmount (#722) is too similar to inugami._transferToExcluded(address,address,uint256).tTransferAmount (#722)
Variable inugami.reflectionFromToken(uint256,bool).rTransferAmount (#551) is too similar to inugami._transferFromExcluded(address,address,uint256).tTransferAmount (#732)
Variable inugami._transferToExcluded(address,address,uint256).rTransferAmount (#722) is too similar to inugami._transferStandard(address,address,uint256).tTransferAmount (#713)
Variable inugami._transferStandard(address,address,uint256).rTransferAmount (#713) is too similar to inugami._transferFromExcluded(address,address,uint256).tTransferAmount (#732)
Variable inugami._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#774) is too similar to inugami._transferFromExcluded(address,address,uint256).tTransferAmount (#732)
Variable inugami.reflectionFromToken(uint256,bool).rTransferAmount (#551) is too similar to inugami._transferToExcluded(address,address,uint256).tTransferAmount (#722)
Variable inugami._transferStandard(address,address,uint256).rTransferAmount (#713) is too similar to inugami._transferToExcluded(address,address,uint256).tTransferAmount (#722)
Variable inugami._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#774) is too similar to inugami._transferToExcluded(address,address,uint256).tTransferAmount (#722)
Variable inugami._getValues(uint256).rTransferAmount (#759) is too similar to inugami._getValues(uint256).tTransferAmount (#758)
Variable inugami._getValues(uint256).rTransferAmount (#759) is too similar to inugami._transferFromExcluded(address,address,uint256).tTransferAmount (#732)
Variable inugami.reflectionFromToken(uint256,bool).rTransferAmount (#551) is too similar to inugami._transferStandard(address,address,uint256).tTransferAmount (#713)
Variable inugami._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#774) is too similar to inugami._transferStandard(address,address,uint256).tTransferAmount (#713)
Variable inugami._getValues(uint256).rTransferAmount (#759) is too similar to inugami._transferToExcluded(address,address,uint256).tTransferAmount (#722)
Variable inugami._transferToExcluded(address,address,uint256).rTransferAmount (#722) is too similar to inugami._transferBothExcluded(address,address,uint256).tTransferAmount (#742)
Prevent variables from having similar names.

Additional information: link

inugami.slitherConstructorVariables() (#389-894) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#394)
inugami.slitherConstructorVariables() (#389-894) uses literals with too many digits:
- _tTotal = 10000000000000 * 10 ** 9 (#406)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#146) is never used in inugami (#389-894)
Ownable._lockTime (#147) is never used in inugami (#389-894)
Remove unused state variables.

Additional information: link

Ownable._lockTime (#147) should be constant
Ownable._previousOwner (#146) should be constant
inugami._decimals (#412) should be constant
inugami._name (#410) should be constant
inugami._symbol (#411) should be constant
inugami._tTotal (#406) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

inugami.addLiquidity(uint256,uint256) (#679-692) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#684-691)
Ensure that all the return values of the function calls are used.

Additional information: link

inugami.allowance(address,address).owner (#500) shadows:
- Ownable.owner() (#157-159) (function)
inugami._approve(address,address,uint256).owner (#585) shadows:
- Ownable.owner() (#157-159) (function)
Rename the local variables that shadow another component.

Additional information: link

inugami.setTaxFeePercent(uint256) (#842-844) should emit an event for:
- _taxFee = taxFee (#843)
inugami.setLiquidityFeePercent(uint256) (#846-848) should emit an event for:
- _liquidityFee = liquidityFee (#847)
inugami.setFeeRate(uint256) (#885-887) should emit an event for:
- _feeRate = rate (#886)
Emit an event for critical parameter changes.

Additional information: link

inugami.setMarketingAddress(address)._marketingAddress (#851) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#852)
Check that the address is not zero.

Additional information: link

Reentrancy in inugami._transfer(address,address,uint256) (#593-640):
External calls:
- swapTokens(contractTokenBalance) (#627)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#667-673)
External calls sending eth:
- swapTokens(contractTokenBalance) (#627)
- marketingAddress.transfer(amount) (#653)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _liquidityFee = _previousLiquidityFee (#827)
- _liquidityFee = 0 (#822)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _previousLiquidityFee = _liquidityFee (#819)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _previousTaxFee = _taxFee (#818)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _tFeeTotal = _tFeeTotal.add(tFee) (#754)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _taxFee = _previousTaxFee (#826)
- _taxFee = 0 (#821)
Reentrancy in inugami.initContract() (#453-465):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#455-456)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#460)
- _isExcludedFromFee[address(this)] = true (#461)
- marketingAddress = address(0x42bd28da8033ac8d280572529F85AfaAe1cf37f9) (#464)
- uniswapV2Router = _uniswapV2Router (#458)
Reentrancy in inugami.transferFrom(address,address,uint256) (#509-513):
External calls:
- _transfer(sender,recipient,amount) (#510)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#667-673)
External calls sending eth:
- _transfer(sender,recipient,amount) (#510)
- marketingAddress.transfer(amount) (#653)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#511)
- _allowances[owner][spender] = amount (#589)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in inugami._transfer(address,address,uint256) (#593-640):
External calls:
- swapTokens(contractTokenBalance) (#627)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#667-673)
External calls sending eth:
- swapTokens(contractTokenBalance) (#627)
- marketingAddress.transfer(amount) (#653)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#718)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- Transfer(sender,recipient,tTransferAmount) (#728)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- Transfer(sender,recipient,tTransferAmount) (#738)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- Transfer(sender,recipient,tTransferAmount) (#749)
- _tokenTransfer(from,to,amount,takeFee) (#639)
Reentrancy in inugami.swapTokensForEth(uint256) (#658-676):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#667-673)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#675)
Reentrancy in inugami.transferFrom(address,address,uint256) (#509-513):
External calls:
- _transfer(sender,recipient,amount) (#510)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#667-673)
External calls sending eth:
- _transfer(sender,recipient,amount) (#510)
- marketingAddress.transfer(amount) (#653)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#590)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#511)
Apply the check-effects-interactions pattern.

Additional information: link

inugami._transfer(address,address,uint256) (#593-640) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp == launchTime (#610)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#87-96) uses assembly
- INLINE ASM (#94)
Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) uses assembly
- INLINE ASM (#133-136)
Do not use evm assembly.

Additional information: link

inugami.includeInReward(address) (#572-583) has costly operations inside a loop:
- _excluded.pop() (#579)
inugami._amnestySniper(address) (#871-881) has costly operations inside a loop:
- _confirmedSnipers.pop() (#877)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) is never used and should be removed
Address.functionCall(address,bytes) (#107-109) is never used and should be removed
Address.functionCall(address,bytes,string) (#111-113) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#115-117) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#119-122) is never used and should be removed
Address.isContract(address) (#87-96) is never used and should be removed
Address.sendValue(address,uint256) (#98-104) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#75-77) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#79-82) is never used and should be removed
inugami.addLiquidity(uint256,uint256) (#679-692) is never used and should be removed
inugami.transferToAddressETH(address,uint256) (#856-858) is never used and should be removed
Remove unused functions.

Additional information: link

inugami._rTotal (#407) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
inugami._previousTaxFee (#416) is set pre-construction with a non-constant function or state variable:
- _taxFee
inugami._previousLiquidityFee (#419) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#166-169)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#171-175)
name() should be declared external:
- inugami.name() (#474-476)
symbol() should be declared external:
- inugami.symbol() (#478-480)
decimals() should be declared external:
- inugami.decimals() (#482-484)
totalSupply() should be declared external:
- inugami.totalSupply() (#486-488)
transfer(address,uint256) should be declared external:
- inugami.transfer(address,uint256) (#495-498)
allowance(address,address) should be declared external:
- inugami.allowance(address,address) (#500-502)
approve(address,uint256) should be declared external:
- inugami.approve(address,uint256) (#504-507)
transferFrom(address,address,uint256) should be declared external:
- inugami.transferFrom(address,address,uint256) (#509-513)
increaseAllowance(address,uint256) should be declared external:
- inugami.increaseAllowance(address,uint256) (#515-518)
decreaseAllowance(address,uint256) should be declared external:
- inugami.decreaseAllowance(address,uint256) (#520-523)
isExcludedFromReward(address) should be declared external:
- inugami.isExcludedFromReward(address) (#525-527)
totalFees() should be declared external:
- inugami.totalFees() (#529-531)
deliver(uint256) should be declared external:
- inugami.deliver(uint256) (#535-542)
reflectionFromToken(uint256,bool) should be declared external:
- inugami.reflectionFromToken(uint256,bool) (#545-554)
excludeFromReward(address) should be declared external:
- inugami.excludeFromReward(address) (#562-570)
isExcludedFromFee(address) should be declared external:
- inugami.isExcludedFromFee(address) (#830-832)
excludeFromFee(address) should be declared external:
- inugami.excludeFromFee(address) (#834-836)
includeInFee(address) should be declared external:
- inugami.includeInFee(address) (#838-840)
isRemovedSniper(address) should be declared external:
- inugami.isRemovedSniper(address) (#860-862)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 6% buy tax and 6% sell tax.
Taxes are low and contract ownership is renounced.


Twitter account has less than 100 followers


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/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


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


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Alexa traffic rank is very low

Additional information: link


Young tokens have high risks of 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


Young tokens have high risks of price dump / death

Price for inugami

News for inugami