Insertion Token Logo

INS [Insertion] Token

About INS

Listings

Not Found
Token 2 years

The first long-term stable reward token on #BSC

https://t.co/xK0EgZCRc9

Social

Laser Scorebeta Last Audit: 22 December 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

Insertion.addLiquidity(uint256,uint256) (#812-825) sends eth to arbitrary user
Dangerous calls:
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Insertion._transfer(address,address,uint256) (#719-761):
External calls:
- swapAndLiquify(contractTokenBalance) (#752)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#752)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
- address(_devWallet).transfer(devFee) (#786)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#760)
- _rOwned[to] = _rOwned[to].add(rAmount) (#697)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#863)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#891)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#864)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#877)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#906)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#893)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#907)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#879)
- _tokenTransfer(from,to,amount,takeFee) (#760)
- _rTotal = _rTotal.sub(rFee) (#655)
- _tokenTransfer(from,to,amount,takeFee) (#760)
- _tOwned[to] = _tOwned[to].add(tAmount) (#699)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#876)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#905)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#892)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#878)
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.

Insertion.addLiquidity(uint256,uint256) (#812-825) ignores return value by _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
Ensure that all the return values of the function calls are used.

Additional information: link

Insertion.allowance(address,address).owner (#518) shadows:
- Ownable.owner() (#178-180) (function)
Insertion._approve(address,address,uint256).owner (#711) shadows:
- Ownable.owner() (#178-180) (function)
Rename the local variables that shadow another component.

Additional information: link

Insertion.setTaxFeePercent(uint256) (#618-620) should emit an event for:
- _taxFee = taxFee (#619)
Insertion.setLiquidityFeePercent(uint256) (#622-624) should emit an event for:
- _liquidityFee = liquidityFee (#623)
Insertion.setPercentageOfLiquidityForDev(uint256) (#626-628) should emit an event for:
- _percentageOfLiquidityForDev = devFee (#627)
Insertion.setMaxTxPercent(uint256) (#630-632) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(100) (#631)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor(address).initialOwner (#173) lacks a zero-check on :
- _owner = initialOwner (#174)
Insertion.constructor(address,address).devWallet (#470) lacks a zero-check on :
- _devWallet = devWallet (#471)
Insertion.setDevWallet(address).devWallet (#610) lacks a zero-check on :
- _devWallet = devWallet (#611)
Insertion.setUniswapPair(address).p (#646) lacks a zero-check on :
- _uniswapV2Pair = p (#647)
Check that the address is not zero.

Additional information: link

Reentrancy in Insertion._transfer(address,address,uint256) (#719-761):
External calls:
- swapAndLiquify(contractTokenBalance) (#752)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#752)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
- address(_devWallet).transfer(devFee) (#786)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#760)
- _liquidityFee = 0 (#833)
- _liquidityFee = previousLiquidityFee (#854)
- _tokenTransfer(from,to,amount,takeFee) (#760)
- _tFeeTotal = _tFeeTotal.add(tFee) (#656)
- _tokenTransfer(from,to,amount,takeFee) (#760)
- _taxFee = 0 (#832)
- _taxFee = previousTaxFee (#853)
Reentrancy in Insertion.constructor(address,address) (#470-490):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#478-479)
State variables written after the call(s):
- _isExcludedFromAutoLiquidity[_uniswapV2Pair] = true (#486)
- _isExcludedFromAutoLiquidity[address(_uniswapV2Router)] = true (#487)
- _isExcludedFromFee[owner()] = true (#482)
- _isExcludedFromFee[address(this)] = true (#483)
- _isExcludedFromFee[_devWallet] = true (#484)
Reentrancy in Insertion.swapAndLiquify(uint256) (#763-794):
External calls:
- swapTokensForBnb(half) (#777)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
- addLiquidity(otherHalf,bnbForLiquidity) (#791)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
External calls sending eth:
- address(_devWallet).transfer(devFee) (#786)
- addLiquidity(otherHalf,bnbForLiquidity) (#791)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
State variables written after the call(s):
- addLiquidity(otherHalf,bnbForLiquidity) (#791)
- _allowances[owner][spender] = amount (#715)
Reentrancy in Insertion.transferFrom(address,address,uint256) (#527-531):
External calls:
- _transfer(sender,recipient,amount) (#528)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
External calls sending eth:
- _transfer(sender,recipient,amount) (#528)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
- address(_devWallet).transfer(devFee) (#786)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#529)
- _allowances[owner][spender] = amount (#715)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Insertion._transfer(address,address,uint256) (#719-761):
External calls:
- swapAndLiquify(contractTokenBalance) (#752)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#752)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
- address(_devWallet).transfer(devFee) (#786)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#868)
- _tokenTransfer(from,to,amount,takeFee) (#760)
- Transfer(sender,recipient,tTransferAmount) (#911)
- _tokenTransfer(from,to,amount,takeFee) (#760)
- Transfer(sender,recipient,tTransferAmount) (#897)
- _tokenTransfer(from,to,amount,takeFee) (#760)
- Transfer(sender,recipient,tTransferAmount) (#883)
- _tokenTransfer(from,to,amount,takeFee) (#760)
Reentrancy in Insertion.constructor(address,address) (#470-490):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#478-479)
Event emitted after the call(s):
- Transfer(address(0),cOwner,_tTotal) (#489)
Reentrancy in Insertion.swapAndLiquify(uint256) (#763-794):
External calls:
- swapTokensForBnb(half) (#777)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
External calls sending eth:
- address(_devWallet).transfer(devFee) (#786)
Event emitted after the call(s):
- DevFeeSent(_devWallet,devFee) (#787)
Reentrancy in Insertion.swapAndLiquify(uint256) (#763-794):
External calls:
- swapTokensForBnb(half) (#777)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
- addLiquidity(otherHalf,bnbForLiquidity) (#791)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
External calls sending eth:
- address(_devWallet).transfer(devFee) (#786)
- addLiquidity(otherHalf,bnbForLiquidity) (#791)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#716)
- addLiquidity(otherHalf,bnbForLiquidity) (#791)
- SwapAndLiquify(half,bnbForLiquidity,otherHalf) (#793)
Reentrancy in Insertion.transferFrom(address,address,uint256) (#527-531):
External calls:
- _transfer(sender,recipient,amount) (#528)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
External calls sending eth:
- _transfer(sender,recipient,amount) (#528)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
- address(_devWallet).transfer(devFee) (#786)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#716)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#529)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Insertion.includeInReward(address) (#596-608) has costly operations inside a loop:
- _excluded.pop() (#604)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#15-18) is never used and should be removed
SafeMath.mod(uint256,uint256) (#144-146) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#160-163) is never used and should be removed
Remove unused functions.

Additional information: link

Insertion._rTotal (#436) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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() (#248) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#249) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#266) is not in mixedCase
Function IUniswapV2Router01.WETH() (#286) is not in mixedCase
Variable Insertion._isExcludedFromAutoLiquidity (#429) is not in mixedCase
Variable Insertion._devWallet (#432) is not in mixedCase
Variable Insertion._taxFee (#443) is not in mixedCase
Variable Insertion._liquidityFee (#444) is not in mixedCase
Variable Insertion._percentageOfLiquidityForDev (#445) is not in mixedCase
Variable Insertion._maxTxAmount (#447) is not in mixedCase
Variable Insertion._swapAndLiquifyEnabled (#451) is not in mixedCase
Variable Insertion._inSwapAndLiquify (#452) is not in mixedCase
Variable Insertion._uniswapV2Router (#453) is not in mixedCase
Variable Insertion._uniswapV2Pair (#454) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in Insertion._transfer(address,address,uint256) (#719-761):
External calls:
- swapAndLiquify(contractTokenBalance) (#752)
- address(_devWallet).transfer(devFee) (#786)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#752)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
- address(_devWallet).transfer(devFee) (#786)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#760)
- _liquidityFee = 0 (#833)
- _liquidityFee = previousLiquidityFee (#854)
- _tokenTransfer(from,to,amount,takeFee) (#760)
- _rOwned[to] = _rOwned[to].add(rAmount) (#697)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#863)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#891)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#864)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#877)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#906)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#893)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#907)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#879)
- _tokenTransfer(from,to,amount,takeFee) (#760)
- _rTotal = _rTotal.sub(rFee) (#655)
- _tokenTransfer(from,to,amount,takeFee) (#760)
- _tFeeTotal = _tFeeTotal.add(tFee) (#656)
- _tokenTransfer(from,to,amount,takeFee) (#760)
- _tOwned[to] = _tOwned[to].add(tAmount) (#699)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#876)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#905)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#892)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#878)
- _tokenTransfer(from,to,amount,takeFee) (#760)
- _taxFee = 0 (#832)
- _taxFee = previousTaxFee (#853)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#868)
- _tokenTransfer(from,to,amount,takeFee) (#760)
- Transfer(sender,recipient,tTransferAmount) (#897)
- _tokenTransfer(from,to,amount,takeFee) (#760)
- Transfer(sender,recipient,tTransferAmount) (#911)
- _tokenTransfer(from,to,amount,takeFee) (#760)
- Transfer(sender,recipient,tTransferAmount) (#883)
- _tokenTransfer(from,to,amount,takeFee) (#760)
Reentrancy in Insertion.swapAndLiquify(uint256) (#763-794):
External calls:
- address(_devWallet).transfer(devFee) (#786)
Event emitted after the call(s):
- DevFeeSent(_devWallet,devFee) (#787)
Reentrancy in Insertion.swapAndLiquify(uint256) (#763-794):
External calls:
- address(_devWallet).transfer(devFee) (#786)
External calls sending eth:
- address(_devWallet).transfer(devFee) (#786)
- addLiquidity(otherHalf,bnbForLiquidity) (#791)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
State variables written after the call(s):
- addLiquidity(otherHalf,bnbForLiquidity) (#791)
- _allowances[owner][spender] = amount (#715)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#716)
- addLiquidity(otherHalf,bnbForLiquidity) (#791)
- SwapAndLiquify(half,bnbForLiquidity,otherHalf) (#793)
Reentrancy in Insertion.transferFrom(address,address,uint256) (#527-531):
External calls:
- _transfer(sender,recipient,amount) (#528)
- address(_devWallet).transfer(devFee) (#786)
External calls sending eth:
- _transfer(sender,recipient,amount) (#528)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#817-824)
- address(_devWallet).transfer(devFee) (#786)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#529)
- _allowances[owner][spender] = amount (#715)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#716)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#529)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#291) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#292)
Variable Insertion._transferStandard(address,address,uint256).rTransferAmount (#861) is too similar to Insertion._transferFromExcluded(address,address,uint256).tTransferAmount (#901)
Variable Insertion._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#671) is too similar to Insertion._transferFromExcluded(address,address,uint256).tTransferAmount (#901)
Variable Insertion._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to Insertion._transferFromExcluded(address,address,uint256).tTransferAmount (#901)
Variable Insertion._transferToExcluded(address,address,uint256).rTransferAmount (#889) is too similar to Insertion._getTValues(uint256).tTransferAmount (#662)
Variable Insertion._transferToExcluded(address,address,uint256).rTransferAmount (#889) is too similar to Insertion._transferToExcluded(address,address,uint256).tTransferAmount (#887)
Variable Insertion.reflectionFromToken(uint256,bool).rTransferAmount (#574) is too similar to Insertion._transferFromExcluded(address,address,uint256).tTransferAmount (#901)
Variable Insertion._transferStandard(address,address,uint256).rTransferAmount (#861) is too similar to Insertion._getTValues(uint256).tTransferAmount (#662)
Variable Insertion._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#671) is too similar to Insertion._getTValues(uint256).tTransferAmount (#662)
Variable Insertion._transferStandard(address,address,uint256).rTransferAmount (#861) is too similar to Insertion._transferToExcluded(address,address,uint256).tTransferAmount (#887)
Variable Insertion._transferToExcluded(address,address,uint256).rTransferAmount (#889) is too similar to Insertion._transferBothExcluded(address,address,uint256).tTransferAmount (#872)
Variable Insertion._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to Insertion._getTValues(uint256).tTransferAmount (#662)
Variable Insertion._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#671) is too similar to Insertion._transferToExcluded(address,address,uint256).tTransferAmount (#887)
Variable Insertion._transferToExcluded(address,address,uint256).rTransferAmount (#889) is too similar to Insertion._transferFromExcluded(address,address,uint256).tTransferAmount (#901)
Variable Insertion._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to Insertion._transferToExcluded(address,address,uint256).tTransferAmount (#887)
Variable Insertion.reflectionFromToken(uint256,bool).rTransferAmount (#574) is too similar to Insertion._getTValues(uint256).tTransferAmount (#662)
Variable Insertion.reflectionFromToken(uint256,bool).rTransferAmount (#574) is too similar to Insertion._transferToExcluded(address,address,uint256).tTransferAmount (#887)
Variable Insertion.reflectionFromToken(uint256,bool).rTransferAmount (#574) is too similar to Insertion._transferBothExcluded(address,address,uint256).tTransferAmount (#872)
Variable Insertion._transferFromExcluded(address,address,uint256).rTransferAmount (#903) is too similar to Insertion._transferToExcluded(address,address,uint256).tTransferAmount (#887)
Variable Insertion._transferStandard(address,address,uint256).rTransferAmount (#861) is too similar to Insertion._transferStandard(address,address,uint256).tTransferAmount (#859)
Variable Insertion._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#671) is too similar to Insertion._transferStandard(address,address,uint256).tTransferAmount (#859)
Variable Insertion._transferToExcluded(address,address,uint256).rTransferAmount (#889) is too similar to Insertion._transferStandard(address,address,uint256).tTransferAmount (#859)
Variable Insertion._transferStandard(address,address,uint256).rTransferAmount (#861) is too similar to Insertion._transferBothExcluded(address,address,uint256).tTransferAmount (#872)
Variable Insertion._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#671) is too similar to Insertion._transferBothExcluded(address,address,uint256).tTransferAmount (#872)
Variable Insertion._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to Insertion._transferStandard(address,address,uint256).tTransferAmount (#859)
Variable Insertion._transferFromExcluded(address,address,uint256).rTransferAmount (#903) is too similar to Insertion._transferFromExcluded(address,address,uint256).tTransferAmount (#901)
Variable Insertion._transferFromExcluded(address,address,uint256).rTransferAmount (#903) is too similar to Insertion._transferStandard(address,address,uint256).tTransferAmount (#859)
Variable Insertion.reflectionFromToken(uint256,bool).rTransferAmount (#574) is too similar to Insertion._transferStandard(address,address,uint256).tTransferAmount (#859)
Variable Insertion._transferBothExcluded(address,address,uint256).rTransferAmount (#874) is too similar to Insertion._transferBothExcluded(address,address,uint256).tTransferAmount (#872)
Variable Insertion._transferFromExcluded(address,address,uint256).rTransferAmount (#903) is too similar to Insertion._transferBothExcluded(address,address,uint256).tTransferAmount (#872)
Variable Insertion._transferFromExcluded(address,address,uint256).rTransferAmount (#903) is too similar to Insertion._getTValues(uint256).tTransferAmount (#662)
Prevent variables from having similar names.

Additional information: link

Insertion.slitherConstructorVariables() (#421-915) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** 9 (#435)
Insertion.slitherConstructorVariables() (#421-915) uses literals with too many digits:
- _maxTxAmount = 1000000 * 10 ** 9 (#447)
Insertion.slitherConstructorVariables() (#421-915) uses literals with too many digits:
- _minTokenBalance = 100000 * 10 ** 9 (#448)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Insertion._decimals (#441) should be constant
Insertion._minTokenBalance (#448) should be constant
Insertion._name (#439) should be constant
Insertion._symbol (#440) should be constant
Insertion._tTotal (#435) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#187-190)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#192-196)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#198-200)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#202-207)
unlock() should be declared external:
- Ownable.unlock() (#209-214)
name() should be declared external:
- Insertion.name() (#492-494)
symbol() should be declared external:
- Insertion.symbol() (#496-498)
decimals() should be declared external:
- Insertion.decimals() (#500-502)
totalSupply() should be declared external:
- Insertion.totalSupply() (#504-506)
transfer(address,uint256) should be declared external:
- Insertion.transfer(address,uint256) (#513-516)
allowance(address,address) should be declared external:
- Insertion.allowance(address,address) (#518-520)
approve(address,uint256) should be declared external:
- Insertion.approve(address,uint256) (#522-525)
transferFrom(address,address,uint256) should be declared external:
- Insertion.transferFrom(address,address,uint256) (#527-531)
increaseAllowance(address,uint256) should be declared external:
- Insertion.increaseAllowance(address,uint256) (#533-536)
decreaseAllowance(address,uint256) should be declared external:
- Insertion.decreaseAllowance(address,uint256) (#538-541)
isExcludedFromReward(address) should be declared external:
- Insertion.isExcludedFromReward(address) (#543-545)
totalFees() should be declared external:
- Insertion.totalFees() (#547-549)
deliver(uint256) should be declared external:
- Insertion.deliver(uint256) (#551-562)
reflectionFromToken(uint256,bool) should be declared external:
- Insertion.reflectionFromToken(uint256,bool) (#564-577)
excludeFromReward(address) should be declared external:
- Insertion.excludeFromReward(address) (#586-594)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Insertion.setSwapAndLiquifyEnabled(bool) (#634-637)
isExcludedFromFee(address) should be declared external:
- Insertion.isExcludedFromFee(address) (#707-709)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account has less than 100 followers


Telegram account has relatively few subscribers


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


Twitter account has few posts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for INS

News for INS