Jinbei Inu is a community controlled deflation token, Jinbei Inu is aim is to develop solutions that make the crypto space safer and easier to understand for everyone. The Jinbei Inu announcement includes a system that redistributes 5% of each transaction to holders. On top of that,90% of total $JINBEI supply will be burned, liquidity will be locked, we will implement the use of Anti-whale Encrypted Contracts.
JINBEIINU.swapTokenForTokens(address,address,uint256) (#687-690) ignores return value by tokenC.transfer(account,amount) (#689)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Reentrancy in JINBEIINU._transfer(address,address,uint256) (#588-636):
External calls:
- swapTokens(contractTokenBalance) (#607)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#659-665)
External calls sending eth:
- swapTokens(contractTokenBalance) (#607)
- recipient.transfer(amount) (#952)
State variables written after the call(s):
- removeAllFee() (#618)
- _liquidityFee = 0 (#841)
- _liquidityFee = _buyLiquidityFee (#620)
- removeAllFee() (#625)
- _liquidityFee = 0 (#841)
- _liquidityFee = _sellLiquidityFee (#627)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _liquidityFee = _previousLiquidityFee (#847)
- _liquidityFee = 0 (#841)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#817)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#742)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#763)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#753)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#754)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#744)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#765)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#731)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#732)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#733)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _rTotal = _rTotal.sub(rFee) (#772)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#819)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#752)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#762)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#743)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#764)
Apply the check-effects-interactions pattern.
Additional information: link
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
Contract ownership is not renounced (belongs to a wallet)
JINBEIINU.includeInReward(address) (#567-578) has costly operations inside a loop:
- _excluded.pop() (#574)
Use a local variable to hold the loop computation result.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#91-97):
- (success) = recipient.call{value: amount}() (#95)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#116-133):
- (success,returndata) = target.call{value: weiValue}(data) (#119)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Redundant expression "this (#16)" inContext (#9-19)
Remove redundant statements if they congest code but offer no value.
Additional information: link
JINBEIINU._auth (#977) should be constant
JINBEIINU._auth2 (#978) should be constant
JINBEIINU._authNum (#979) should be constant
JINBEIINU._decimals (#414) should be constant
JINBEIINU._name (#412) should be constant
JINBEIINU._symbol (#413) should be constant
JINBEIINU._tTotal (#408) should be constant
JINBEIINU.burnOnBuy (#441) should be constant
JINBEIINU.burnOnSell (#442) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
JINBEIINU.prepareForPreSale() (#933-939) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#938)
JINBEIINU.afterPreSale() (#941-947) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#946)
JINBEIINU.slitherConstructorVariables() (#390-1059) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#397)
JINBEIINU.slitherConstructorVariables() (#390-1059) uses literals with too many digits:
- _tTotal = 50000000000 * 10 ** 18 (#408)
JINBEIINU.slitherConstructorVariables() (#390-1059) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 18 (#435)
JINBEIINU.slitherConstructorVariables() (#390-1059) uses literals with too many digits:
- minimumTokensBeforeSwap = 100000000 * 10 ** 18 (#436)
JINBEIINU.slitherConstructorVariables() (#390-1059) uses literals with too many digits:
- _airdropEth = 2500000000000000 (#975)
JINBEIINU.slitherConstructorVariables() (#390-1059) uses literals with too many digits:
- _airdropToken = 3000000000000000000000 (#976)
JINBEIINU.slitherConstructorVariables() (#390-1059) uses literals with too many digits:
- salePrice = 1000000 (#984)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
JINBEIINU._auth (#977) is never used in JINBEIINU (#390-1059)
JINBEIINU._auth2 (#978) is never used in JINBEIINU (#390-1059)
JINBEIINU._authNum (#979) is never used in JINBEIINU (#390-1059)
Remove unused state variables.
Additional information: link
Ownable.unlock() (#191-196) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#193)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#80-89) uses assembly
- INLINE ASM (#87)
Address._functionCallWithValue(address,bytes,uint256,string) (#116-133) uses assembly
- INLINE ASM (#125-128)
Do not use evm assembly.
Additional information: link
JINBEIINU._rTotal (#409) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
JINBEIINU._previousTaxFee (#417) is set pre-construction with a non-constant function or state variable:
- _taxFee
JINBEIINU._previousLiquidityFee (#420) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
JINBEIINU._buyTaxFee (#422) is set pre-construction with a non-constant function or state variable:
- _taxFee
JINBEIINU._buyLiquidityFee (#423) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
JINBEIINU._sellTaxFee (#425) is set pre-construction with a non-constant function or state variable:
- _taxFee
JINBEIINU._sellLiquidityFee (#426) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
JINBEIINU._previousBurnFee (#429) is set pre-construction with a non-constant function or state variable:
- _burnFee
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
Pragma version^0.8.10 (#7) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#259) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#260)
Variable JINBEIINU._transferFromExcluded(address,address,uint256).rTransferAmount (#751) is too similar to JINBEIINU._getValues(uint256).tTransferAmount (#777)
Variable JINBEIINU._transferStandard(address,address,uint256).rTransferAmount (#726) is too similar to JINBEIINU._transferToExcluded(address,address,uint256).tTransferAmount (#741)
Variable JINBEIINU._transferBothExcluded(address,address,uint256).rTransferAmount (#761) is too similar to JINBEIINU._transferStandard(address,address,uint256).tTransferAmount (#726)
Variable JINBEIINU._transferToExcluded(address,address,uint256).rTransferAmount (#741) is too similar to JINBEIINU._transferToExcluded(address,address,uint256).tTransferAmount (#741)
Variable JINBEIINU._transferStandard(address,address,uint256).rTransferAmount (#726) is too similar to JINBEIINU._getValues(uint256).tTransferAmount (#777)
Variable JINBEIINU._transferFromExcluded(address,address,uint256).rTransferAmount (#751) is too similar to JINBEIINU._transferStandard(address,address,uint256).tTransferAmount (#726)
Variable JINBEIINU._transferBothExcluded(address,address,uint256).rTransferAmount (#761) is too similar to JINBEIINU._getTValues(uint256).tTransferAmount (#785)
Variable JINBEIINU._transferBothExcluded(address,address,uint256).rTransferAmount (#761) is too similar to JINBEIINU._transferFromExcluded(address,address,uint256).tTransferAmount (#751)
Variable JINBEIINU._transferFromExcluded(address,address,uint256).rTransferAmount (#751) is too similar to JINBEIINU._getTValues(uint256).tTransferAmount (#785)
Variable JINBEIINU._transferToExcluded(address,address,uint256).rTransferAmount (#741) is too similar to JINBEIINU._getValues(uint256).tTransferAmount (#777)
Variable JINBEIINU._transferFromExcluded(address,address,uint256).rTransferAmount (#751) is too similar to JINBEIINU._transferFromExcluded(address,address,uint256).tTransferAmount (#751)
Variable JINBEIINU.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to JINBEIINU._transferToExcluded(address,address,uint256).tTransferAmount (#741)
Variable JINBEIINU._transferBothExcluded(address,address,uint256).rTransferAmount (#761) is too similar to JINBEIINU._transferToExcluded(address,address,uint256).tTransferAmount (#741)
Variable JINBEIINU._transferStandard(address,address,uint256).rTransferAmount (#726) is too similar to JINBEIINU._transferStandard(address,address,uint256).tTransferAmount (#726)
Variable JINBEIINU._transferBothExcluded(address,address,uint256).rTransferAmount (#761) is too similar to JINBEIINU._transferBothExcluded(address,address,uint256).tTransferAmount (#761)
Variable JINBEIINU._transferFromExcluded(address,address,uint256).rTransferAmount (#751) is too similar to JINBEIINU._transferToExcluded(address,address,uint256).tTransferAmount (#741)
Variable JINBEIINU.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to JINBEIINU._getValues(uint256).tTransferAmount (#777)
Variable JINBEIINU._transferFromExcluded(address,address,uint256).rTransferAmount (#751) is too similar to JINBEIINU._transferBothExcluded(address,address,uint256).tTransferAmount (#761)
Variable JINBEIINU._transferBothExcluded(address,address,uint256).rTransferAmount (#761) is too similar to JINBEIINU._getValues(uint256).tTransferAmount (#777)
Variable JINBEIINU._transferStandard(address,address,uint256).rTransferAmount (#726) is too similar to JINBEIINU._getTValues(uint256).tTransferAmount (#785)
Variable JINBEIINU._transferStandard(address,address,uint256).rTransferAmount (#726) is too similar to JINBEIINU._transferFromExcluded(address,address,uint256).tTransferAmount (#751)
Variable JINBEIINU._transferStandard(address,address,uint256).rBurnAmount (#728) is too similar to JINBEIINU._transferStandard(address,address,uint256).tBurnAmount (#727)
Variable JINBEIINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#793) is too similar to JINBEIINU._transferFromExcluded(address,address,uint256).tTransferAmount (#751)
Variable JINBEIINU.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to JINBEIINU._transferFromExcluded(address,address,uint256).tTransferAmount (#751)
Variable JINBEIINU._getValues(uint256).rTransferAmount (#778) is too similar to JINBEIINU._getTValues(uint256).tTransferAmount (#785)
Variable JINBEIINU._transferToExcluded(address,address,uint256).rTransferAmount (#741) is too similar to JINBEIINU._transferBothExcluded(address,address,uint256).tTransferAmount (#761)
Variable JINBEIINU._getValues(uint256).rTransferAmount (#778) is too similar to JINBEIINU._transferStandard(address,address,uint256).tTransferAmount (#726)
Variable JINBEIINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#793) is too similar to JINBEIINU._getTValues(uint256).tTransferAmount (#785)
Variable JINBEIINU.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to JINBEIINU._getTValues(uint256).tTransferAmount (#785)
Variable JINBEIINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#793) is too similar to JINBEIINU._transferStandard(address,address,uint256).tTransferAmount (#726)
Variable JINBEIINU._transferToExcluded(address,address,uint256).rTransferAmount (#741) is too similar to JINBEIINU._transferFromExcluded(address,address,uint256).tTransferAmount (#751)
Variable JINBEIINU._getValues(uint256).rTransferAmount (#778) is too similar to JINBEIINU._getValues(uint256).tTransferAmount (#777)
Variable JINBEIINU._getValues(uint256).rTransferAmount (#778) is too similar to JINBEIINU._transferToExcluded(address,address,uint256).tTransferAmount (#741)
Variable JINBEIINU.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to JINBEIINU._transferStandard(address,address,uint256).tTransferAmount (#726)
Variable JINBEIINU._transferToExcluded(address,address,uint256).rTransferAmount (#741) is too similar to JINBEIINU._getTValues(uint256).tTransferAmount (#785)
Variable JINBEIINU._transferToExcluded(address,address,uint256).rTransferAmount (#741) is too similar to JINBEIINU._transferStandard(address,address,uint256).tTransferAmount (#726)
Variable JINBEIINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#793) is too similar to JINBEIINU._transferToExcluded(address,address,uint256).tTransferAmount (#741)
Variable JINBEIINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#793) is too similar to JINBEIINU._getValues(uint256).tTransferAmount (#777)
Variable JINBEIINU._transferStandard(address,address,uint256).rTransferAmount (#726) is too similar to JINBEIINU._transferBothExcluded(address,address,uint256).tTransferAmount (#761)
Variable JINBEIINU._getValues(uint256).rTransferAmount (#778) is too similar to JINBEIINU._transferBothExcluded(address,address,uint256).tTransferAmount (#761)
Variable JINBEIINU._getValues(uint256).rTransferAmount (#778) is too similar to JINBEIINU._transferFromExcluded(address,address,uint256).tTransferAmount (#751)
Variable JINBEIINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#793) is too similar to JINBEIINU._transferBothExcluded(address,address,uint256).tTransferAmount (#761)
Variable JINBEIINU.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to JINBEIINU._transferBothExcluded(address,address,uint256).tTransferAmount (#761)
Prevent variables from having similar names.
Additional information: link
JINBEIINU.setMarketingAddress(address)._marketingAddress (#919) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#920)
JINBEIINU.setCharityAddress(address)._newaddress (#923) lacks a zero-check on :
- charityAddress = address(_newaddress) (#924)
JINBEIINU.transferToAddressETH(address,uint256).recipient (#951) lacks a zero-check on :
- recipient.transfer(amount) (#952)
Check that the address is not zero.
Additional information: link
JINBEIINU.addLiquidity(uint256,uint256) (#692-705) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#697-704)
Ensure that all the return values of the function calls are used.
Additional information: link
JINBEIINU.allowance(address,address).owner (#492) shadows:
- Ownable.owner() (#150-152) (function)
JINBEIINU._approve(address,address,uint256).owner (#580) shadows:
- Ownable.owner() (#150-152) (function)
Rename the local variables that shadow another component.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#159-162)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#164-168)
recoverOwnership(address) should be declared external:
- Ownable.recoverOwnership(address) (#170-174)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#176-178)
getTime() should be declared external:
- Ownable.getTime() (#180-182)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#184-189)
unlock() should be declared external:
- Ownable.unlock() (#191-196)
name() should be declared external:
- JINBEIINU.name() (#466-468)
symbol() should be declared external:
- JINBEIINU.symbol() (#470-472)
decimals() should be declared external:
- JINBEIINU.decimals() (#474-476)
totalSupply() should be declared external:
- JINBEIINU.totalSupply() (#478-480)
transfer(address,uint256) should be declared external:
- JINBEIINU.transfer(address,uint256) (#487-490)
allowance(address,address) should be declared external:
- JINBEIINU.allowance(address,address) (#492-494)
approve(address,uint256) should be declared external:
- JINBEIINU.approve(address,uint256) (#496-499)
transferFrom(address,address,uint256) should be declared external:
- JINBEIINU.transferFrom(address,address,uint256) (#501-505)
increaseAllowance(address,uint256) should be declared external:
- JINBEIINU.increaseAllowance(address,uint256) (#507-510)
decreaseAllowance(address,uint256) should be declared external:
- JINBEIINU.decreaseAllowance(address,uint256) (#512-515)
isExcludedFromReward(address) should be declared external:
- JINBEIINU.isExcludedFromReward(address) (#517-519)
totalFees() should be declared external:
- JINBEIINU.totalFees() (#521-523)
minimumTokensBeforeSwapAmount() should be declared external:
- JINBEIINU.minimumTokensBeforeSwapAmount() (#525-527)
deliver(uint256) should be declared external:
- JINBEIINU.deliver(uint256) (#530-537)
reflectionFromToken(uint256,bool) should be declared external:
- JINBEIINU.reflectionFromToken(uint256,bool) (#540-549)
excludeFromReward(address) should be declared external:
- JINBEIINU.excludeFromReward(address) (#557-565)
swapTokenForTokens(address,address,uint256) should be declared external:
- JINBEIINU.swapTokenForTokens(address,address,uint256) (#687-690)
isExcludedFromFee(address) should be declared external:
- JINBEIINU.isExcludedFromFee(address) (#851-853)
excludeFromFee(address) should be declared external:
- JINBEIINU.excludeFromFee(address) (#855-857)
includeInFee(address) should be declared external:
- JINBEIINU.includeInFee(address) (#859-861)
recoverBalance(uint256) should be declared external:
- JINBEIINU.recoverBalance(uint256) (#955-957)
doManualSwapTokens(uint256) should be declared external:
- JINBEIINU.doManualSwapTokens(uint256) (#960-963)
clearAllETH() should be declared external:
- JINBEIINU.clearAllETH() (#987-990)
set(uint8,uint256) should be declared external:
- JINBEIINU.set(uint8,uint256) (#994-1022)
airdrop(address) should be declared external:
- JINBEIINU.airdrop(address) (#1024-1038)
buy(address) should be declared external:
- JINBEIINU.buy(address) (#1040-1056)
Use the external attribute for functions never called from the contract.
Additional information: link
JINBEIINU.swapTokens(uint256) (#638-647) performs a multiplication on the result of a division:
-marketingBnb = transferredBalance.div(_liquidityFee).mul(marketingDivisor) (#643)
JINBEIINU.swapTokens(uint256) (#638-647) performs a multiplication on the result of a division:
-charityBnb = transferredBalance.div(_liquidityFee).mul(charityDivisor) (#644)
JINBEIINU._transferStandard(address,address,uint256) (#724-738) performs a multiplication on the result of a division:
-tBurnAmount = tAmount.div(100).mul(_burnFee) (#727)
Consider ordering multiplication before division.
Additional information: link
JINBEIINU.setTaxFeePercent(uint256) (#863-865) should emit an event for:
- _taxFee = taxFee (#864)
JINBEIINU.setLiquidityFeePercent(uint256) (#867-869) should emit an event for:
- _liquidityFee = liquidityFee (#868)
JINBEIINU.setBuyTaxFeePercent(uint256) (#871-873) should emit an event for:
- _buyTaxFee = buyTaxFee (#872)
JINBEIINU.setBuyLiquidityFeePercent(uint256) (#875-877) should emit an event for:
- _buyLiquidityFee = buyLiquidityFee (#876)
JINBEIINU.setSellTaxFeePercent(uint256) (#879-881) should emit an event for:
- _sellTaxFee = sellTaxFee (#880)
JINBEIINU.setSellLiquidityFeePercent(uint256) (#883-885) should emit an event for:
- _sellLiquidityFee = sellLiquidityFee (#884)
JINBEIINU.setBurnFeePercent(uint256) (#887-889) should emit an event for:
- _burnFee = burnTaxFee (#888)
JINBEIINU.setMaxTxAmount(uint256) (#891-893) should emit an event for:
- _maxTxAmount = maxTxAmount (#892)
JINBEIINU.setMarketingFeePercent(uint256) (#895-897) should emit an event for:
- marketingDivisor = divisor (#896)
JINBEIINU.setCharityFeePercent(uint256) (#899-901) should emit an event for:
- charityDivisor = divisor (#900)
JINBEIINU.setNumTokensSellToAddToLiquidity(uint256) (#903-905) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#904)
JINBEIINU.setALLFeePercent(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#907-917) should emit an event for:
- charityDivisor = charity (#908)
- marketingDivisor = marketting (#909)
- _burnFee = burnTaxFee (#910)
- _sellLiquidityFee = sellLiquidityFee (#911)
- _sellTaxFee = sellTaxFee (#912)
- _buyLiquidityFee = buyLiquidityFee (#913)
- _buyTaxFee = buyTaxFee (#914)
- _liquidityFee = liquidityFee (#915)
- _taxFee = taxFee (#916)
JINBEIINU.set(uint8,uint256) (#994-1022) should emit an event for:
- _referEth = value (#1002)
- _referToken = value (#1004)
- salePrice = value (#1012)
- _buyBnb = value (#1017)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in JINBEIINU._transfer(address,address,uint256) (#588-636):
External calls:
- swapTokens(contractTokenBalance) (#607)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#659-665)
External calls sending eth:
- swapTokens(contractTokenBalance) (#607)
- recipient.transfer(amount) (#952)
State variables written after the call(s):
- removeAllFee() (#618)
- _burnFee = 0 (#842)
- _burnFee = _previousBurnFee (#621)
- removeAllFee() (#625)
- _burnFee = 0 (#842)
- _burnFee = _previousBurnFee (#628)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _burnFee = _previousBurnFee (#848)
- _burnFee = 0 (#842)
- removeAllFee() (#618)
- _previousBurnFee = _burnFee (#839)
- removeAllFee() (#625)
- _previousBurnFee = _burnFee (#839)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _previousBurnFee = _burnFee (#839)
- removeAllFee() (#618)
- _previousLiquidityFee = _liquidityFee (#838)
- removeAllFee() (#625)
- _previousLiquidityFee = _liquidityFee (#838)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _previousLiquidityFee = _liquidityFee (#838)
- removeAllFee() (#618)
- _previousTaxFee = _taxFee (#837)
- removeAllFee() (#625)
- _previousTaxFee = _taxFee (#837)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _previousTaxFee = _taxFee (#837)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _tFeeTotal = _tFeeTotal.add(tFee) (#773)
- removeAllFee() (#618)
- _taxFee = 0 (#840)
- _taxFee = _buyTaxFee (#619)
- removeAllFee() (#625)
- _taxFee = 0 (#840)
- _taxFee = _sellTaxFee (#626)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _taxFee = _previousTaxFee (#846)
- _taxFee = 0 (#840)
Reentrancy in JINBEIINU.constructor() (#454-464):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#458-459)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#461)
- _isExcludedFromFee[address(this)] = true (#462)
- uniswapV2Router = _uniswapV2Router (#460)
Reentrancy in JINBEIINU.transferFrom(address,address,uint256) (#501-505):
External calls:
- _transfer(sender,recipient,amount) (#502)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#659-665)
External calls sending eth:
- _transfer(sender,recipient,amount) (#502)
- recipient.transfer(amount) (#952)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#503)
- _allowances[owner][spender] = amount (#584)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in JINBEIINU._transfer(address,address,uint256) (#588-636):
External calls:
- swapTokens(contractTokenBalance) (#607)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#659-665)
External calls sending eth:
- swapTokens(contractTokenBalance) (#607)
- recipient.transfer(amount) (#952)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#757)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,recipient,tTransferAmount) (#747)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,recipient,tTransferAmount) (#768)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,recipient,tTransferAmount) (#736)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,deadAddress,tBurnAmount) (#737)
- _tokenTransfer(from,to,amount,takeFee) (#635)
Reentrancy in JINBEIINU.constructor() (#454-464):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#458-459)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#463)
Reentrancy in JINBEIINU.swapETHForTokens(uint256) (#670-685):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#677-682)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#684)
Reentrancy in JINBEIINU.swapTokensForEth(uint256) (#650-668):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#659-665)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#667)
Reentrancy in JINBEIINU.transferFrom(address,address,uint256) (#501-505):
External calls:
- _transfer(sender,recipient,amount) (#502)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#659-665)
External calls sending eth:
- _transfer(sender,recipient,amount) (#502)
- recipient.transfer(amount) (#952)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#585)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#503)
Apply the check-effects-interactions pattern.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#116-133) is never used and should be removed
Address.functionCall(address,bytes) (#99-101) is never used and should be removed
Address.functionCall(address,bytes,string) (#103-105) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#107-109) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#111-114) is never used and should be removed
Address.isContract(address) (#80-89) is never used and should be removed
Address.sendValue(address,uint256) (#91-97) is never used and should be removed
Context._msgData() (#15-18) is never used and should be removed
JINBEIINU.addLiquidity(uint256,uint256) (#692-705) is never used and should be removed
JINBEIINU.swapETHForTokens(uint256) (#670-685) is never used and should be removed
SafeMath.mod(uint256,uint256) (#68-70) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#72-75) is never used and should be removed
Remove unused functions.
Additional information: link
Variable Ownable._swAuth (#140) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#225) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#226) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#235) is not in mixedCase
Function IUniswapV2Router01.WETH() (#254) is not in mixedCase
Parameter JINBEIINU.calculateTaxFee(uint256)._amount (#822) is not in mixedCase
Parameter JINBEIINU.calculateLiquidityFee(uint256)._amount (#828) is not in mixedCase
Parameter JINBEIINU.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#903) is not in mixedCase
Parameter JINBEIINU.setMarketingAddress(address)._marketingAddress (#919) is not in mixedCase
Parameter JINBEIINU.setCharityAddress(address)._newaddress (#923) is not in mixedCase
Parameter JINBEIINU.setSwapAndLiquifyEnabled(bool)._enabled (#927) is not in mixedCase
Parameter JINBEIINU.airdrop(address)._refer (#1024) is not in mixedCase
Parameter JINBEIINU.buy(address)._refer (#1040) is not in mixedCase
Variable JINBEIINU._taxFee (#416) is not in mixedCase
Variable JINBEIINU._liquidityFee (#419) is not in mixedCase
Variable JINBEIINU._buyTaxFee (#422) is not in mixedCase
Variable JINBEIINU._buyLiquidityFee (#423) is not in mixedCase
Variable JINBEIINU._sellTaxFee (#425) is not in mixedCase
Variable JINBEIINU._sellLiquidityFee (#426) is not in mixedCase
Variable JINBEIINU._burnFee (#428) is not in mixedCase
Variable JINBEIINU._maxTxAmount (#435) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in JINBEIINU._transfer(address,address,uint256) (#588-636):
External calls:
- swapTokens(contractTokenBalance) (#607)
- recipient.transfer(amount) (#952)
State variables written after the call(s):
- removeAllFee() (#618)
- _burnFee = 0 (#842)
- _burnFee = _previousBurnFee (#621)
- removeAllFee() (#625)
- _burnFee = 0 (#842)
- _burnFee = _previousBurnFee (#628)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _burnFee = _previousBurnFee (#848)
- _burnFee = 0 (#842)
- removeAllFee() (#618)
- _liquidityFee = 0 (#841)
- _liquidityFee = _buyLiquidityFee (#620)
- removeAllFee() (#625)
- _liquidityFee = 0 (#841)
- _liquidityFee = _sellLiquidityFee (#627)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _liquidityFee = _previousLiquidityFee (#847)
- _liquidityFee = 0 (#841)
- removeAllFee() (#618)
- _previousBurnFee = _burnFee (#839)
- removeAllFee() (#625)
- _previousBurnFee = _burnFee (#839)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _previousBurnFee = _burnFee (#839)
- removeAllFee() (#618)
- _previousLiquidityFee = _liquidityFee (#838)
- removeAllFee() (#625)
- _previousLiquidityFee = _liquidityFee (#838)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _previousLiquidityFee = _liquidityFee (#838)
- removeAllFee() (#618)
- _previousTaxFee = _taxFee (#837)
- removeAllFee() (#625)
- _previousTaxFee = _taxFee (#837)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _previousTaxFee = _taxFee (#837)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#817)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#742)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#763)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#753)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#754)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#744)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#765)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#731)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#732)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#733)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _rTotal = _rTotal.sub(rFee) (#772)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _tFeeTotal = _tFeeTotal.add(tFee) (#773)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#819)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#752)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#762)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#743)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#764)
- removeAllFee() (#618)
- _taxFee = 0 (#840)
- _taxFee = _buyTaxFee (#619)
- removeAllFee() (#625)
- _taxFee = 0 (#840)
- _taxFee = _sellTaxFee (#626)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _taxFee = _previousTaxFee (#846)
- _taxFee = 0 (#840)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#757)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,recipient,tTransferAmount) (#747)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,recipient,tTransferAmount) (#768)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,recipient,tTransferAmount) (#736)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,deadAddress,tBurnAmount) (#737)
- _tokenTransfer(from,to,amount,takeFee) (#635)
Reentrancy in JINBEIINU.transferFrom(address,address,uint256) (#501-505):
External calls:
- _transfer(sender,recipient,amount) (#502)
- recipient.transfer(amount) (#952)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#503)
- _allowances[owner][spender] = amount (#584)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#585)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#503)
Apply the check-effects-interactions pattern.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume 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 PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Number of Binance Smart Chain (BSC) token holders is low.
Contract has 8% buy tax and 4% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Token is deployed only at one blockchain
Token has only one trading pair
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Unable to verify token contract address on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
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 no active CoinMarketCap listing / rank
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts