Stealth Launch token that will moon hard and will shake the BSC Commmunity. Real use case in the future, NFT, Marketplace, PlaytoEarn, Metaverse staking and a lot more! The project is ran by based developer who's known by spending onnon-stop on marketing, getting every single influencer, taking every community suggestion into consideration. The team is very transparent with every stage of the process and we hope that you will take the time to join us in chat to discuss future plans and the prospects of this token. On the following pages will be a breakdown of the tokenomics of TigerInu 2022.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
TigerInu.swapBack() (#301-342) sends eth to arbitrary user
Dangerous calls:
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#326)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#328)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in TigerInu._transferFrom(address,address,uint256) (#242-262):
External calls:
- swapBack() (#251)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#312-318)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#326)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#328)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#332-339)
External calls sending eth:
- swapBack() (#251)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#326)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#328)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#332-339)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#255)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#258)
- amountReceived = takeFee(sender,recipient,amount) (#257)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#288)
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.
TigerInu.slitherConstructorVariables() (#157-426) performs a multiplication on the result of a division:
-swapThreshold = _totalSupply / 1000 * 3 (#193)
Consider ordering multiplication before division.
Additional information: link
TigerInu.swapBack() (#301-342) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#332-339)
Ensure that all the return values of the function calls are used.
Additional information: link
TigerInu.setTxLimit(uint256) (#365-368) should emit an event for:
- _maxTxAmount = amount (#367)
TigerInu.setFees(uint256,uint256,uint256,uint256) (#383-389) should emit an event for:
- liquidityFee = _liquidityFee (#384)
- developmentFee = _developmentFee (#385)
- marketingFee = _marketingFee (#386)
- totalFee = _liquidityFee.add(_developmentFee).add(_marketingFee) (#387)
- feeDenominator = _feeDenominator (#388)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).adr (#96) lacks a zero-check on :
- owner = adr (#97)
TigerInu.setFeeReceiver(address,address)._marketingFeeReceiver (#391) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#392)
TigerInu.setFeeReceiver(address,address)._developmentFeeReceiver (#391) lacks a zero-check on :
- developmentFeeReceiver = _developmentFeeReceiver (#393)
Check that the address is not zero.
Additional information: link
Reentrancy in TigerInu._transferFrom(address,address,uint256) (#242-262):
External calls:
- swapBack() (#251)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#312-318)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#326)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#328)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#332-339)
External calls sending eth:
- swapBack() (#251)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#326)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#328)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#332-339)
State variables written after the call(s):
- launch() (#253)
- launchedAt = block.number (#362)
Reentrancy in TigerInu.constructor() (#197-208):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#199)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#200)
- _balances[_owner] = _totalSupply (#206)
- isFeeExempt[_owner] = true (#203)
- isTxLimitExempt[_owner] = true (#204)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in TigerInu._transferFrom(address,address,uint256) (#242-262):
External calls:
- swapBack() (#251)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#312-318)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#326)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#328)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#332-339)
External calls sending eth:
- swapBack() (#251)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#326)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#328)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#332-339)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#289)
- amountReceived = takeFee(sender,recipient,amount) (#257)
- Transfer(sender,recipient,amountReceived) (#260)
Reentrancy in TigerInu.constructor() (#197-208):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#199)
Event emitted after the call(s):
- Transfer(address(0),_owner,_totalSupply) (#207)
Reentrancy in TigerInu.swapBack() (#301-342):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#312-318)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#326)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#328)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#332-339)
External calls sending eth:
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#326)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#328)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#332-339)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#340)
Apply the check-effects-interactions pattern.
Additional information: link
TigerInu.buyTokens(uint256,address) (#344-355) is never used and should be removed
Remove unused functions.
Additional information: link
TigerInu._maxTxAmount (#169) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 1) / 200
TigerInu._maxWalletSize (#170) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 2) / 100
TigerInu.swapThreshold (#193) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 1000 * 3
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
Low level call in TigerInu.swapBack() (#301-342):
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#326)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#328)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IDEXRouter.WETH() (#111) is not in mixedCase
Parameter TigerInu.setFees(uint256,uint256,uint256,uint256)._liquidityFee (#383) is not in mixedCase
Parameter TigerInu.setFees(uint256,uint256,uint256,uint256)._developmentFee (#383) is not in mixedCase
Parameter TigerInu.setFees(uint256,uint256,uint256,uint256)._marketingFee (#383) is not in mixedCase
Parameter TigerInu.setFees(uint256,uint256,uint256,uint256)._feeDenominator (#383) is not in mixedCase
Parameter TigerInu.setFeeReceiver(address,address)._marketingFeeReceiver (#391) is not in mixedCase
Parameter TigerInu.setFeeReceiver(address,address)._developmentFeeReceiver (#391) is not in mixedCase
Parameter TigerInu.setSwapBackSettings(bool,uint256)._enabled (#396) is not in mixedCase
Parameter TigerInu.setSwapBackSettings(bool,uint256)._amount (#396) is not in mixedCase
Parameter TigerInu.transferForeignToken(address)._token (#406) is not in mixedCase
Variable TigerInu.WBNB (#160) is not in mixedCase
Variable TigerInu.DEAD (#161) is not in mixedCase
Variable TigerInu.ZERO (#162) is not in mixedCase
Constant TigerInu._name (#164) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TigerInu._symbol (#165) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TigerInu._decimals (#166) is not in UPPER_CASE_WITH_UNDERSCORES
Variable TigerInu._totalSupply (#168) is not in mixedCase
Variable TigerInu._maxTxAmount (#169) is not in mixedCase
Variable TigerInu._maxWalletSize (#170) is not in mixedCase
Variable TigerInu._balances (#172) is not in mixedCase
Variable TigerInu._allowances (#173) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#116) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#117)
Prevent variables from having similar names.
Additional information: link
TigerInu.slitherConstructorVariables() (#157-426) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#161)
TigerInu.slitherConstructorVariables() (#157-426) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#162)
TigerInu.slitherConstructorVariables() (#157-426) uses literals with too many digits:
- _totalSupply = 1000000000 * (10 ** _decimals) (#168)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
TigerInu.DEAD (#161) should be constant
TigerInu.WBNB (#160) should be constant
TigerInu.ZERO (#162) should be constant
TigerInu._totalSupply (#168) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
authorize(address) should be declared external:
- Auth.authorize(address) (#80-82)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#84-86)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#96-100)
transferForeignToken(address) should be declared external:
- TigerInu.transferForeignToken(address) (#406-410)
isOverLiquified(uint256,uint256) should be declared external:
- TigerInu.isOverLiquified(uint256,uint256) (#420-422)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
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.
Unable to crawl data from the website
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
Additional information: link
Unable to find token contract audit
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Unable to find token on CoinHunt
Additional information: link
Young tokens have high risks of price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Token has relatively low CoinGecko rank
Telegram account link seems to be invalid
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account