SUKUNA Inu is a community meme token, ownership will be removed. The project will be developed in the direction of NFT and adventure game to give anime fans an experience of the journey across the ocean.
Sukuna_Inu.sendETHToFee(uint256) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#290-293) sends eth to arbitrary user
Dangerous calls:
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#292)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Sukuna_Inu._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#237-274):
External calls:
- swapTokensForEth(contractTokenBalance) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#249)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#281-287)
External calls sending eth:
- sendETHToFee(address(this).balance) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#252)
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#292)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#273)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#331)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#321)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#322)
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#273)
- _rTotal = _rTotal.sub(rFee) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#335)
Apply the check-effects-interactions pattern.
Additional information: link
Sukuna_Inu.rescueForeignTokens(address,address,uint256) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#300-303) ignores return value by Token(_tokenAddr).transfer(_to,_amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#302)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
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.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Sukuna_Inu.allowance(address,address).owner (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#209) shadows:
- Ownable.owner() (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#101-103) (function)
Sukuna_Inu._approve(address,address,uint256).owner (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#230) shadows:
- Ownable.owner() (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#101-103) (function)
Rename the local variables that shadow another component.
Additional information: link
Ownable.transferOwnership(address).newOwner (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#116) lacks a zero-check on :
- _owner = newOwner (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#118)
Sukuna_Inu.setNewDevAddress(address).dev (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#306) lacks a zero-check on :
- _developmentAddress = dev (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#308)
Sukuna_Inu.setNewMarketingAddress(address).markt (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#313) lacks a zero-check on :
- _marketingAddress = markt (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#315)
Check that the address is not zero.
Additional information: link
Reentrancy in Sukuna_Inu._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#237-274):
External calls:
- swapTokensForEth(contractTokenBalance) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#249)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#281-287)
External calls sending eth:
- sendETHToFee(address(this).balance) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#252)
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#292)
State variables written after the call(s):
- _redisFee = _redisFeeOnBuy (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#257)
- _redisFee = _redisFeeOnSell (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#262)
- _redisFee = 0 (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#267)
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#273)
- _tFeeTotal = _tFeeTotal.add(tFee) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#336)
- _taxFee = _taxFeeOnBuy (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#258)
- _taxFee = _taxFeeOnSell (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#263)
- _taxFee = 0 (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#268)
Reentrancy in Sukuna_Inu.constructor() (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#163-177):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#168-169)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#171)
- _isExcludedFromFee[address(this)] = true (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#172)
- _isExcludedFromFee[_developmentAddress] = true (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#173)
- _isExcludedFromFee[_marketingAddress] = true (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#174)
Reentrancy in Sukuna_Inu.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#218-222):
External calls:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#219)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#281-287)
External calls sending eth:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#219)
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#292)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#220)
- _allowances[owner][spender] = amount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#233)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Sukuna_Inu._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#237-274):
External calls:
- swapTokensForEth(contractTokenBalance) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#249)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#281-287)
External calls sending eth:
- sendETHToFee(address(this).balance) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#252)
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#292)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#325)
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#273)
Reentrancy in Sukuna_Inu.constructor() (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#163-177):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#168-169)
Event emitted after the call(s):
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#176)
Reentrancy in Sukuna_Inu.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#218-222):
External calls:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#219)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#281-287)
External calls sending eth:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#219)
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#292)
Event emitted after the call(s):
- Approval(owner,spender,amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#234)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#220)
Apply the check-effects-interactions pattern.
Additional information: link
Function IUniswapV2Router02.WETH() (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#34) is not in mixedCase
Contract Sukuna_Inu (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#123-408) is not in CapWords
Event Sukuna_InutokensRescued(address,address,uint256) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#299) is not in CapWords
Event Sukuna_InudevAddressUpdated(address,address) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#305) is not in CapWords
Event Sukuna_InumarketingAddressUpdated(address,address) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#312) is not in CapWords
Parameter Sukuna_Inu.rescueForeignTokens(address,address,uint256)._tokenAddr (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#300) is not in mixedCase
Parameter Sukuna_Inu.rescueForeignTokens(address,address,uint256)._to (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#300) is not in mixedCase
Parameter Sukuna_Inu.rescueForeignTokens(address,address,uint256)._amount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#300) is not in mixedCase
Parameter Sukuna_Inu.toggleSwap(bool)._swapEnabled (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#398) is not in mixedCase
Constant Sukuna_Inu._tTotal (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#132) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Sukuna_Inu._name (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#145) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Sukuna_Inu._symbol (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#146) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Sukuna_Inu._decimals (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#147) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Reentrancy in Sukuna_Inu._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#237-274):
External calls:
- sendETHToFee(address(this).balance) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#252)
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#292)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#273)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#331)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#321)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#322)
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#273)
- _rTotal = _rTotal.sub(rFee) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#335)
- _redisFee = _redisFeeOnBuy (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#257)
- _redisFee = _redisFeeOnSell (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#262)
- _redisFee = 0 (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#267)
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#273)
- _tFeeTotal = _tFeeTotal.add(tFee) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#336)
- _taxFee = _taxFeeOnBuy (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#258)
- _taxFee = _taxFeeOnSell (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#263)
- _taxFee = 0 (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#268)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#325)
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#273)
Reentrancy in Sukuna_Inu.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#218-222):
External calls:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#219)
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#292)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#220)
- _allowances[owner][spender] = amount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#233)
Event emitted after the call(s):
- Approval(owner,spender,amount) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#234)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#220)
Apply the check-effects-interactions pattern.
Additional information: link
Variable Sukuna_Inu._transferStandard(address,address,uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#320) is too similar to Sukuna_Inu._transferStandard(address,address,uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#320)
Variable Sukuna_Inu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#359) is too similar to Sukuna_Inu._transferStandard(address,address,uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#320)
Variable Sukuna_Inu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#359) is too similar to Sukuna_Inu._getTValues(uint256,uint256,uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#351)
Variable Sukuna_Inu._getValues(uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#344) is too similar to Sukuna_Inu._getTValues(uint256,uint256,uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#351)
Variable Sukuna_Inu._getValues(uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#344) is too similar to Sukuna_Inu._transferStandard(address,address,uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#320)
Variable Sukuna_Inu._transferStandard(address,address,uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#320) is too similar to Sukuna_Inu._getValues(uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#342)
Variable Sukuna_Inu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#359) is too similar to Sukuna_Inu._getValues(uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#342)
Variable Sukuna_Inu._getValues(uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#344) is too similar to Sukuna_Inu._getValues(uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#342)
Variable Sukuna_Inu._transferStandard(address,address,uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#320) is too similar to Sukuna_Inu._getTValues(uint256,uint256,uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#351)
Prevent variables from having similar names.
Additional information: link
Sukuna_Inu.constructor() (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#163-177) uses literals with too many digits:
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#176)
Sukuna_Inu.slitherConstructorConstantVariables() (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#123-408) uses literals with too many digits:
- _tTotal = 1000000 * 10 ** 9 * 10 ** 9 (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#132)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#93) is never used in Sukuna_Inu (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#123-408)
Sukuna_Inu._tOwned (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#127) is never used in Sukuna_Inu (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#123-408)
Remove unused state variables.
Additional information: link
Ownable._previousOwner (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#93) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#110-113)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#116-119)
name() should be declared external:
- Sukuna_Inu.name() (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#184-186)
symbol() should be declared external:
- Sukuna_Inu.symbol() (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#188-190)
decimals() should be declared external:
- Sukuna_Inu.decimals() (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#192-194)
totalSupply() should be declared external:
- Sukuna_Inu.totalSupply() (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#196-198)
transfer(address,uint256) should be declared external:
- Sukuna_Inu.transfer(address,uint256) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#204-207)
allowance(address,address) should be declared external:
- Sukuna_Inu.allowance(address,address) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#209-211)
approve(address,uint256) should be declared external:
- Sukuna_Inu.approve(address,uint256) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#213-216)
transferFrom(address,address,uint256) should be declared external:
- Sukuna_Inu.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#218-222)
rescueForeignTokens(address,address,uint256) should be declared external:
- Sukuna_Inu.rescueForeignTokens(address,address,uint256) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#300-303)
setNewDevAddress(address) should be declared external:
- Sukuna_Inu.setNewDevAddress(address) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#306-310)
setNewMarketingAddress(address) should be declared external:
- Sukuna_Inu.setNewMarketingAddress(address) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#313-317)
setFee(uint256,uint256,uint256,uint256) should be declared external:
- Sukuna_Inu.setFee(uint256,uint256,uint256,uint256) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#387-396)
toggleSwap(bool) should be declared external:
- Sukuna_Inu.toggleSwap(bool) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#398-400)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- Sukuna_Inu.excludeMultipleAccountsFromFees(address[],bool) (crytic-export/etherscan-contracts/0x0fe4700370399e49e52959aff211fe6b0e9426b7.bscscan.com-Sukuna_Inu.sol#402-406)
Use the external attribute for functions never called from the contract.
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 relatively low CoinMarketCap rank
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account