AKAMARU KIBA INU 🐩 Have hype name and based team want to push this very hard , A lot of marketing lined up ✅🔥
Reentrancy in AKAMARUKIBAINU._transfer(address,address,uint256) (#806-842):
External calls:
- swapAndSendToFee(sellTokens) (#828)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#876-882)
External calls sending eth:
- swapAndSendToFee(sellTokens) (#828)
- address(_marketingWallet).transfer(ethToSend) (#849)
State variables written after the call(s):
- _tOwned[from] -= amount (#832)
- transferAmount = _getValues(amount,from) (#837)
- _tOwned[address(this)] += marketingFee + liquidityFee (#788)
- _tOwned[to] += transferAmount (#840)
- swapping = false (#829)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
AKAMARUKIBAINU._transfer(address,address,uint256) (#806-842) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_lastBuy[to] + _buyCooldown < block.timestamp,Must wait til after coooldown to buy) (#820)
AKAMARUKIBAINU.addLiquidity(uint256,uint256) (#886-902) uses timestamp for comparisons
Dangerous comparisons:
- ethAmount - ethFromLiquidity > 0 (#900)
Avoid relying on block.timestamp.
Additional information: link
AKAMARUKIBAINU.addLiquidity(uint256,uint256) (#886-902) is never used and should be removed
AKAMARUKIBAINU.swapAndLiquify() (#852-864) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#373-394) is never used and should be removed
Address.functionCall(address,bytes) (#333-335) is never used and should be removed
Address.functionCall(address,bytes,string) (#343-345) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#358-360) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#368-371) is never used and should be removed
Address.isContract(address) (#280-289) is never used and should be removed
Address.sendValue(address,uint256) (#307-313) is never used and should be removed
Context._msgData() (#252-255) is never used and should be removed
SafeMath.add(uint256,uint256) (#115-120) is never used and should be removed
SafeMath.div(uint256,uint256) (#189-191) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#205-211) is never used and should be removed
SafeMath.mod(uint256,uint256) (#225-227) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#241-244) is never used and should be removed
SafeMath.mul(uint256,uint256) (#163-175) is never used and should be removed
SafeMath.sub(uint256,uint256) (#132-134) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#146-151) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#307-313):
- (success) = recipient.call{value: amount}() (#311)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#373-394):
- (success,returndata) = target.call{value: weiValue}(data) (#377)
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() (#497) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#498) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#515) is not in mixedCase
Function IUniswapV2Router01.WETH() (#537) is not in mixedCase
Variable AKAMARUKIBAINU._maxTxAmount (#687) is not in mixedCase
Constant AKAMARUKIBAINU._name (#689) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AKAMARUKIBAINU._symbol (#690) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AKAMARUKIBAINU._decimals (#691) is not in UPPER_CASE_WITH_UNDERSCORES
Variable AKAMARUKIBAINU._marketingFee (#693) is not in mixedCase
Variable AKAMARUKIBAINU._liquidityFee (#694) is not in mixedCase
Variable AKAMARUKIBAINU._marketingWallet (#695) is not in mixedCase
Variable AKAMARUKIBAINU._buyCooldown (#697) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#253)" inContext (#247-256)
Remove redundant statements if they congest code but offer no value.
Additional information: link
AKAMARUKIBAINU.allowance(address,address).owner (#747) shadows:
- Ownable.owner() (#426-428) (function)
AKAMARUKIBAINU._approve(address,address,uint256).owner (#798) shadows:
- Ownable.owner() (#426-428) (function)
Rename the local variables that shadow another component.
Additional information: link
Reentrancy in AKAMARUKIBAINU.constructor() (#704-720):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#709)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#715)
- _isExcludedFromFee[address(this)] = true (#716)
- _isExcludedFromFee[_marketingWallet] = true (#717)
- uniswapV2Pair = _uniswapV2Pair (#712)
- uniswapV2Router = _uniswapV2Router (#711)
Reentrancy in AKAMARUKIBAINU.swapAndLiquify() (#852-864):
External calls:
- newBalance = swapTokensForEth(half) (#857)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#876-882)
- addLiquidity(otherHalf,newBalance) (#861)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#891-898)
- (success) = recipient.call{value: amount}() (#311)
- address(_marketingWallet).sendValue(ethAmount - ethFromLiquidity) (#901)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#861)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#891-898)
- (success) = recipient.call{value: amount}() (#311)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#861)
- _allowances[owner][spender] = amount (#802)
Reentrancy in AKAMARUKIBAINU.transferFrom(address,address,uint256) (#756-760):
External calls:
- _transfer(sender,recipient,amount) (#757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#876-882)
External calls sending eth:
- _transfer(sender,recipient,amount) (#757)
- address(_marketingWallet).transfer(ethToSend) (#849)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#758)
- _allowances[owner][spender] = amount (#802)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in AKAMARUKIBAINU._transfer(address,address,uint256) (#806-842):
External calls:
- swapAndSendToFee(sellTokens) (#828)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#876-882)
External calls sending eth:
- swapAndSendToFee(sellTokens) (#828)
- address(_marketingWallet).transfer(ethToSend) (#849)
Event emitted after the call(s):
- Transfer(from,address(this),marketingFee + liquidityFee) (#789)
- transferAmount = _getValues(amount,from) (#837)
- Transfer(from,to,transferAmount) (#841)
Reentrancy in AKAMARUKIBAINU.constructor() (#704-720):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#709)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#719)
Reentrancy in AKAMARUKIBAINU.swapAndLiquify() (#852-864):
External calls:
- newBalance = swapTokensForEth(half) (#857)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#876-882)
- addLiquidity(otherHalf,newBalance) (#861)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#891-898)
- (success) = recipient.call{value: amount}() (#311)
- address(_marketingWallet).sendValue(ethAmount - ethFromLiquidity) (#901)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#861)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#891-898)
- (success) = recipient.call{value: amount}() (#311)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#803)
- addLiquidity(otherHalf,newBalance) (#861)
- SwapAndLiquify(half,newBalance,otherHalf) (#862)
Reentrancy in AKAMARUKIBAINU.transferFrom(address,address,uint256) (#756-760):
External calls:
- _transfer(sender,recipient,amount) (#757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#876-882)
External calls sending eth:
- _transfer(sender,recipient,amount) (#757)
- address(_marketingWallet).transfer(ethToSend) (#849)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#803)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#758)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#280-289) uses assembly
- INLINE ASM (#287)
Address._functionCallWithValue(address,bytes,uint256,string) (#373-394) uses assembly
- INLINE ASM (#386-389)
Do not use evm assembly.
Additional information: link
Reentrancy in AKAMARUKIBAINU._transfer(address,address,uint256) (#806-842):
External calls:
- swapAndSendToFee(sellTokens) (#828)
- address(_marketingWallet).transfer(ethToSend) (#849)
State variables written after the call(s):
- _tOwned[from] -= amount (#832)
- transferAmount = _getValues(amount,from) (#837)
- _tOwned[address(this)] += marketingFee + liquidityFee (#788)
- _tOwned[to] += transferAmount (#840)
- swapping = false (#829)
Event emitted after the call(s):
- Transfer(from,address(this),marketingFee + liquidityFee) (#789)
- transferAmount = _getValues(amount,from) (#837)
- Transfer(from,to,transferAmount) (#841)
Reentrancy in AKAMARUKIBAINU.transferFrom(address,address,uint256) (#756-760):
External calls:
- _transfer(sender,recipient,amount) (#757)
- address(_marketingWallet).transfer(ethToSend) (#849)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#758)
- _allowances[owner][spender] = amount (#802)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#803)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#758)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#542) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#543)
Prevent variables from having similar names.
Additional information: link
Address.sendValue(address,uint256) (#307-313) uses literals with too many digits:
- recipient = address(0x000000000000000000000000000000000000dEaD) (#309)
AKAMARUKIBAINU.slitherConstructorVariables() (#674-904) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 9 (#686)
AKAMARUKIBAINU.slitherConstructorVariables() (#674-904) uses literals with too many digits:
- _maxTxAmount = 20000000000 * 10 ** 9 (#687)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
AKAMARUKIBAINU._buyCooldown (#697) should be constant
AKAMARUKIBAINU._liquidityFee (#694) should be constant
AKAMARUKIBAINU._marketingFee (#693) should be constant
AKAMARUKIBAINU._marketingWallet (#695) should be constant
AKAMARUKIBAINU._maxTxAmount (#687) should be constant
AKAMARUKIBAINU._tTotal (#686) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#445-448)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#454-458)
name() should be declared external:
- AKAMARUKIBAINU.name() (#722-724)
symbol() should be declared external:
- AKAMARUKIBAINU.symbol() (#726-728)
decimals() should be declared external:
- AKAMARUKIBAINU.decimals() (#730-732)
totalSupply() should be declared external:
- AKAMARUKIBAINU.totalSupply() (#734-736)
transfer(address,uint256) should be declared external:
- AKAMARUKIBAINU.transfer(address,uint256) (#742-745)
allowance(address,address) should be declared external:
- AKAMARUKIBAINU.allowance(address,address) (#747-749)
approve(address,uint256) should be declared external:
- AKAMARUKIBAINU.approve(address,uint256) (#751-754)
transferFrom(address,address,uint256) should be declared external:
- AKAMARUKIBAINU.transferFrom(address,address,uint256) (#756-760)
increaseAllowance(address,uint256) should be declared external:
- AKAMARUKIBAINU.increaseAllowance(address,uint256) (#762-765)
decreaseAllowance(address,uint256) should be declared external:
- AKAMARUKIBAINU.decreaseAllowance(address,uint256) (#767-770)
excludeFromFee(address) should be declared external:
- AKAMARUKIBAINU.excludeFromFee(address) (#772-774)
includeInFee(address) should be declared external:
- AKAMARUKIBAINU.includeInFee(address) (#776-778)
isExcludedFromFee(address) should be declared external:
- AKAMARUKIBAINU.isExcludedFromFee(address) (#794-796)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Twitter account link seems to be invalid
Telegram account has less than 100 subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account