Chiba Inu Token Logo

Chiba [Chiba Inu] Token

About Chiba

Listings

Token 2 years
CoinMarketCap 2 years
white paper

CHIBA INU ($CHIBA) We wanted to build a token, that no one can say is unsafe for investors. Having a doxxed team, and LP being burned, We knew with these ideals we could build something great.

Chiba Inu and its Charity swap will be a refreshing addition to the crypto space. Bringing moral values, heart, and kindness into a Busy crypto space. Shining a light as a beacon for all to follow!

Be the Change you want to see in the world.

Chiba is currently building Chiba Exchange, where swapping fees will go to Breast and prostate cancer charities. Chiba Exchange will also house a Token Locker, where locking fees will eventually be set up to fund staking rewards for Chiba Inu holders.

Social

Laser Scorebeta Last Audit: 20 February 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...)

ChibaInu.addLiquidity(uint256,uint256) (#738-752) sends eth to arbitrary user
Dangerous calls:
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ChibaInu._transfer(address,address,uint256) (#635-690):
External calls:
- swapAndLiquify(contractTokenBalance) (#673)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#729-735)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#673)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
- address(_teamWallet).transfer(bnbForTeam) (#708)
- address(_marketingWallet).transfer(bnbForMarketing) (#712)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#681)
- _rOwned[to] = _rOwned[to] + rAmount (#612)
- _rOwned[sender] = _rOwned[sender] - rAmount (#787)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#792)
- _tokenTransfer(from,to,amount,takeFee) (#681)
- _rTotal = _rTotal - rFee (#570)
- _tokenTransfer(from,to,amount,takeFee) (#681)
- _tOwned[to] = _tOwned[to] + tAmount (#614)
- _tOwned[sender] = _tOwned[sender] - tAmount (#789)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#794)
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.

ChibaInu.includeInReward(address) (#478-490) has costly operations inside a loop:
- _excluded.pop() (#486)
Use a local variable to hold the loop computation result.

Additional information: link

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

Additional information: link

ChibaInu.swapAndLiquify(uint256) (#692-718) performs a multiplication on the result of a division:
-bnbForTeam = newBalance / 10000 * _percentageOfLiquidityForTeam (#702)
ChibaInu.swapAndLiquify(uint256) (#692-718) performs a multiplication on the result of a division:
-bnbForMarketing = newBalance / 10000 * _percentageOfLiquidityForMarketing (#703)
Consider ordering multiplication before division.

Additional information: link

ChibaInu.allowance(address,address).owner (#413) shadows:
- Ownable.owner() (#39-41) (function)
ChibaInu._approve(address,address,uint256).owner (#627) shadows:
- Ownable.owner() (#39-41) (function)
Rename the local variables that shadow another component.

Additional information: link

ChibaInu.setMaxTx(uint256) (#496-498) should emit an event for:
- _maxTxAmount = maxTx (#497)
ChibaInu.setMinTokenBalance(uint256) (#500-502) should emit an event for:
- _minTokenBalance = minTokenBalance (#501)
ChibaInu.setAntiWhaleThreshold(uint256) (#520-522) should emit an event for:
- _antiWhaleThreshold = antiWhaleThreshold (#521)
ChibaInu.setFeesTransfer(uint256,uint256) (#524-527) should emit an event for:
- _taxFee = taxFee (#525)
- _liquidityFee = liquidityFee (#526)
ChibaInu.setFeesBuy(uint256,uint256) (#529-532) should emit an event for:
- _taxFeeBuy = taxFee (#530)
- _liquidityFeeBuy = liquidityFee (#531)
ChibaInu.setFeesSell(uint256,uint256) (#534-537) should emit an event for:
- _taxFeeSell = taxFee (#535)
- _liquidityFeeSell = liquidityFee (#536)
ChibaInu.setLiquidityPercentages(uint256,uint256) (#544-547) should emit an event for:
- _percentageOfLiquidityForTeam = teamFee (#545)
- _percentageOfLiquidityForMarketing = marketingFee (#546)
Emit an event for critical parameter changes.

Additional information: link

ChibaInu.setAddresses(address,address).teamWallet (#539) lacks a zero-check on :
- _teamWallet = teamWallet (#540)
ChibaInu.setAddresses(address,address).marketingWallet (#539) lacks a zero-check on :
- _marketingWallet = marketingWallet (#541)
ChibaInu.setUniswapPair(address).p (#561) lacks a zero-check on :
- uniswapV2Pair = p (#562)
Check that the address is not zero.

Additional information: link

Reentrancy in ChibaInu._transfer(address,address,uint256) (#635-690):
External calls:
- swapAndLiquify(contractTokenBalance) (#673)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#729-735)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#673)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
- address(_teamWallet).transfer(bnbForTeam) (#708)
- address(_marketingWallet).transfer(bnbForMarketing) (#712)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#681)
- _liquidityFee = 0 (#763)
- _liquidityFee = _liquidityFeeBuy (#767)
- _liquidityFee = _liquidityFeeSell (#771)
- _liquidityFee = previousLiquidityFee (#778)
- _tokenTransfer(from,to,amount,takeFee) (#681)
- _tFeeTotal = _tFeeTotal + tFee (#571)
- _tokenTransfer(from,to,amount,takeFee) (#681)
- _taxFee = 0 (#762)
- _taxFee = _taxFeeBuy (#766)
- _taxFee = _taxFeeSell (#770)
- _taxFee = previousTaxFee (#777)
Reentrancy in ChibaInu.constructor() (#352-382):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#360-361)
State variables written after the call(s):
- _isExcludedFromAntiWhale[owner()] = true (#371)
- _isExcludedFromAntiWhale[address(this)] = true (#372)
- _isExcludedFromAntiWhale[uniswapV2Pair] = true (#373)
- _isExcludedFromAntiWhale[address(uniswapV2Router)] = true (#374)
- _isExcludedFromAntiWhale[_burnAddress] = true (#375)
- _isExcludedFromAntiWhale[address(0x355f6676F71BC500b8e47DA538Bb272f8f4D193C)] = true (#376)
- _isExcludedFromAutoLiquidity[uniswapV2Pair] = true (#368)
- _isExcludedFromAutoLiquidity[address(uniswapV2Router)] = true (#369)
- _isExcludedFromFee[owner()] = true (#365)
- _isExcludedFromFee[address(this)] = true (#366)
- _isExcludedFromMaxTx[owner()] = true (#378)
- _isExcludedFromMaxTx[address(0x355f6676F71BC500b8e47DA538Bb272f8f4D193C)] = true (#379)
- uniswapV2Router = _uniswapV2Router (#362)
Reentrancy in ChibaInu.swapAndLiquify(uint256) (#692-718):
External calls:
- swapTokensForBnb(half) (#699)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#729-735)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#715)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#708)
- address(_marketingWallet).transfer(bnbForMarketing) (#712)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#715)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
State variables written after the call(s):
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#715)
- _allowances[owner][spender] = amount (#631)
Reentrancy in ChibaInu.transferFrom(address,address,uint256) (#422-426):
External calls:
- _transfer(sender,recipient,amount) (#423)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#729-735)
External calls sending eth:
- _transfer(sender,recipient,amount) (#423)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
- address(_teamWallet).transfer(bnbForTeam) (#708)
- address(_marketingWallet).transfer(bnbForMarketing) (#712)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#424)
- _allowances[owner][spender] = amount (#631)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ChibaInu._transfer(address,address,uint256) (#635-690):
External calls:
- swapAndLiquify(contractTokenBalance) (#673)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#729-735)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#673)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
- address(_teamWallet).transfer(bnbForTeam) (#708)
- address(_marketingWallet).transfer(bnbForMarketing) (#712)
Event emitted after the call(s):
- Transfer(sender,to,tAmount) (#616)
- _tokenTransfer(from,to,amount,takeFee) (#681)
- Transfer(sender,recipient,tTransferAmount) (#799)
- _tokenTransfer(from,to,amount,takeFee) (#681)
Reentrancy in ChibaInu.constructor() (#352-382):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#360-361)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#381)
Reentrancy in ChibaInu.swapAndLiquify(uint256) (#692-718):
External calls:
- swapTokensForBnb(half) (#699)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#729-735)
Event emitted after the call(s):
- TeamSent(_teamWallet,bnbForTeam) (#707)
Reentrancy in ChibaInu.swapAndLiquify(uint256) (#692-718):
External calls:
- swapTokensForBnb(half) (#699)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#729-735)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#708)
Event emitted after the call(s):
- MarketingSent(_marketingWallet,bnbForMarketing) (#711)
Reentrancy in ChibaInu.swapAndLiquify(uint256) (#692-718):
External calls:
- swapTokensForBnb(half) (#699)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#729-735)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#715)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#708)
- address(_marketingWallet).transfer(bnbForMarketing) (#712)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#715)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#632)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#715)
- SwapAndLiquify(half,bnbAdded,tokenAdded) (#717)
Reentrancy in ChibaInu.transferFrom(address,address,uint256) (#422-426):
External calls:
- _transfer(sender,recipient,amount) (#423)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#729-735)
External calls sending eth:
- _transfer(sender,recipient,amount) (#423)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
- address(_teamWallet).transfer(bnbForTeam) (#708)
- address(_marketingWallet).transfer(bnbForMarketing) (#712)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#632)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#424)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#70-75) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is still locked) (#72)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#9-12) is never used and should be removed
Remove unused functions.

Additional information: link

ChibaInu._rTotal (#301) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ChibaInu._maxTxAmount (#323) is set pre-construction with a non-constant function or state variable:
- _tTotal * 10000 / 10000
ChibaInu._minTokenBalance (#324) is set pre-construction with a non-constant function or state variable:
- _tTotal / 400
ChibaInu._antiWhaleThreshold (#341) is set pre-construction with a non-constant function or state variable:
- _tTotal * 200 / 10000
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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#109) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#110) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#127) is not in mixedCase
Function IUniswapV2Router01.WETH() (#147) is not in mixedCase
Parameter ChibaInu.setSwapAndLiquifyEnabled(bool)._enabled (#549) is not in mixedCase
Variable ChibaInu._isExcludedFromAutoLiquidity (#288) is not in mixedCase
Variable ChibaInu._isExcludedFromAntiWhale (#289) is not in mixedCase
Variable ChibaInu._isExcludedFromBuy (#290) is not in mixedCase
Variable ChibaInu._isExcludedFromMaxTx (#291) is not in mixedCase
Constant ChibaInu._burnAddress (#297) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ChibaInu._name (#304) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ChibaInu._symbol (#305) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ChibaInu._decimals (#306) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ChibaInu._taxFee (#312) is not in mixedCase
Variable ChibaInu._liquidityFee (#313) is not in mixedCase
Variable ChibaInu._taxFeeBuy (#316) is not in mixedCase
Variable ChibaInu._liquidityFeeBuy (#317) is not in mixedCase
Variable ChibaInu._taxFeeSell (#320) is not in mixedCase
Variable ChibaInu._liquidityFeeSell (#321) is not in mixedCase
Variable ChibaInu._maxTxAmount (#323) is not in mixedCase
Variable ChibaInu._minTokenBalance (#324) is not in mixedCase
Variable ChibaInu._isAntiWhaleEnabled (#340) is not in mixedCase
Variable ChibaInu._antiWhaleThreshold (#341) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in ChibaInu._transfer(address,address,uint256) (#635-690):
External calls:
- swapAndLiquify(contractTokenBalance) (#673)
- address(_teamWallet).transfer(bnbForTeam) (#708)
- address(_marketingWallet).transfer(bnbForMarketing) (#712)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#673)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
- address(_teamWallet).transfer(bnbForTeam) (#708)
- address(_marketingWallet).transfer(bnbForMarketing) (#712)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#681)
- _liquidityFee = 0 (#763)
- _liquidityFee = _liquidityFeeBuy (#767)
- _liquidityFee = _liquidityFeeSell (#771)
- _liquidityFee = previousLiquidityFee (#778)
- _tokenTransfer(from,to,amount,takeFee) (#681)
- _rOwned[to] = _rOwned[to] + rAmount (#612)
- _rOwned[sender] = _rOwned[sender] - rAmount (#787)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#792)
- _tokenTransfer(from,to,amount,takeFee) (#681)
- _rTotal = _rTotal - rFee (#570)
- _tokenTransfer(from,to,amount,takeFee) (#681)
- _tFeeTotal = _tFeeTotal + tFee (#571)
- _tokenTransfer(from,to,amount,takeFee) (#681)
- _tOwned[to] = _tOwned[to] + tAmount (#614)
- _tOwned[sender] = _tOwned[sender] - tAmount (#789)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#794)
- _tokenTransfer(from,to,amount,takeFee) (#681)
- _taxFee = 0 (#762)
- _taxFee = _taxFeeBuy (#766)
- _taxFee = _taxFeeSell (#770)
- _taxFee = previousTaxFee (#777)
Event emitted after the call(s):
- Transfer(sender,to,tAmount) (#616)
- _tokenTransfer(from,to,amount,takeFee) (#681)
- Transfer(sender,recipient,tTransferAmount) (#799)
- _tokenTransfer(from,to,amount,takeFee) (#681)
Reentrancy in ChibaInu.swapAndLiquify(uint256) (#692-718):
External calls:
- address(_teamWallet).transfer(bnbForTeam) (#708)
Event emitted after the call(s):
- MarketingSent(_marketingWallet,bnbForMarketing) (#711)
Reentrancy in ChibaInu.swapAndLiquify(uint256) (#692-718):
External calls:
- address(_teamWallet).transfer(bnbForTeam) (#708)
- address(_marketingWallet).transfer(bnbForMarketing) (#712)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#708)
- address(_marketingWallet).transfer(bnbForMarketing) (#712)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#715)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
State variables written after the call(s):
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#715)
- _allowances[owner][spender] = amount (#631)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#632)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#715)
- SwapAndLiquify(half,bnbAdded,tokenAdded) (#717)
Reentrancy in ChibaInu.transferFrom(address,address,uint256) (#422-426):
External calls:
- _transfer(sender,recipient,amount) (#423)
- address(_teamWallet).transfer(bnbForTeam) (#708)
- address(_marketingWallet).transfer(bnbForMarketing) (#712)
External calls sending eth:
- _transfer(sender,recipient,amount) (#423)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#743-750)
- address(_teamWallet).transfer(bnbForTeam) (#708)
- address(_marketingWallet).transfer(bnbForMarketing) (#712)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#424)
- _allowances[owner][spender] = amount (#631)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#632)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#424)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#152) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#153)
Variable ChibaInu._transferStandard(address,address,uint256).rTransferAmount (#785) is too similar to ChibaInu._transferStandard(address,address,uint256).tTransferAmount (#783)
Variable ChibaInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#586) is too similar to ChibaInu._getTValues(uint256).tTransferAmount (#577)
Variable ChibaInu._transferStandard(address,address,uint256).rTransferAmount (#785) is too similar to ChibaInu._getTValues(uint256).tTransferAmount (#577)
Variable ChibaInu.reflectionFromToken(uint256,bool).rTransferAmount (#456) is too similar to ChibaInu._transferStandard(address,address,uint256).tTransferAmount (#783)
Variable ChibaInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#586) is too similar to ChibaInu._transferStandard(address,address,uint256).tTransferAmount (#783)
Variable ChibaInu.reflectionFromToken(uint256,bool).rTransferAmount (#456) is too similar to ChibaInu._getTValues(uint256).tTransferAmount (#577)
Prevent variables from having similar names.

Additional information: link

ChibaInu.slitherConstructorVariables() (#282-803) uses literals with too many digits:
- _tTotal = 10000000 * 10 ** 9 (#300)
ChibaInu.slitherConstructorConstantVariables() (#282-803) uses literals with too many digits:
- _burnAddress = 0x000000000000000000000000000000000000dEaD (#297)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ChibaInu._tTotal (#300) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#48-51)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#53-57)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#59-61)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#63-68)
unlock() should be declared external:
- Ownable.unlock() (#70-75)
name() should be declared external:
- ChibaInu.name() (#384-386)
symbol() should be declared external:
- ChibaInu.symbol() (#388-390)
decimals() should be declared external:
- ChibaInu.decimals() (#392-394)
totalSupply() should be declared external:
- ChibaInu.totalSupply() (#396-401)
transfer(address,uint256) should be declared external:
- ChibaInu.transfer(address,uint256) (#408-411)
allowance(address,address) should be declared external:
- ChibaInu.allowance(address,address) (#413-415)
approve(address,uint256) should be declared external:
- ChibaInu.approve(address,uint256) (#417-420)
transferFrom(address,address,uint256) should be declared external:
- ChibaInu.transferFrom(address,address,uint256) (#422-426)
increaseAllowance(address,uint256) should be declared external:
- ChibaInu.increaseAllowance(address,uint256) (#428-431)
decreaseAllowance(address,uint256) should be declared external:
- ChibaInu.decreaseAllowance(address,uint256) (#433-436)
isExcludedFromReward(address) should be declared external:
- ChibaInu.isExcludedFromReward(address) (#438-440)
totalFees() should be declared external:
- ChibaInu.totalFees() (#442-444)
reflectionFromToken(uint256,bool) should be declared external:
- ChibaInu.reflectionFromToken(uint256,bool) (#446-459)
excludeFromReward(address) should be declared external:
- ChibaInu.excludeFromReward(address) (#468-476)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ChibaInu.setSwapAndLiquifyEnabled(bool) (#549-552)
isExcludedFromFee(address) should be declared external:
- ChibaInu.isExcludedFromFee(address) (#623-625)
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 number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Average 30d PancakeSwap volume is low.


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


Token is deployed only at one blockchain


Token has only one trading pair

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


Unable to find Youtube account


Unable to find token contract audit


Unable to find audit link on the website


Unable to find code repository for the project


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for Chiba

News for Chiba