TigerRoar2022 Token Logo

TigerRoar2022 Token

About TigerRoar2022

Listings

Not Found
Token 2 years

🐯Tiger Roar 2022 is a meme token launched to celebrate the year of the Tiger 🐅 based on Chinese Zodiac! Join us in Telegram: https://t.co/eKTD0r79do

Social

Laser Scorebeta Last Audit: 4 January 2022

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

Anti-Scam

Links


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

TigerRoar2022.swapBack() (#305-346) sends eth to arbitrary user
Dangerous calls:
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#330)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#332)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in TigerRoar2022._transferFrom(address,address,uint256) (#246-266):
External calls:
- swapBack() (#255)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#316-322)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#330)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#332)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#336-343)
External calls sending eth:
- swapBack() (#255)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#330)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#332)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#336-343)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#259)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#262)
- amountReceived = takeFee(sender,recipient,amount) (#261)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#292)
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.

TigerRoar2022.slitherConstructorVariables() (#160-430) performs a multiplication on the result of a division:
-swapThreshold = _totalSupply / 1000 * 3 (#197)
Consider ordering multiplication before division.

Additional information: link

TigerRoar2022.swapBack() (#305-346) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#336-343)
Ensure that all the return values of the function calls are used.

Additional information: link

TigerRoar2022.setTxLimit(uint256) (#369-372) should emit an event for:
- _maxTxAmount = amount (#371)
TigerRoar2022.setFees(uint256,uint256,uint256,uint256) (#387-393) should emit an event for:
- liquidityFee = _liquidityFee (#388)
- developmentFee = _developmentFee (#389)
- marketingFee = _marketingFee (#390)
- totalFee = _liquidityFee.add(_developmentFee).add(_marketingFee) (#391)
- feeDenominator = _feeDenominator (#392)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#99) lacks a zero-check on :
- owner = adr (#100)
TigerRoar2022.setFeeReceiver(address,address)._marketingFeeReceiver (#395) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#396)
TigerRoar2022.setFeeReceiver(address,address)._developmentFeeReceiver (#395) lacks a zero-check on :
- developmentFeeReceiver = _developmentFeeReceiver (#397)
Check that the address is not zero.

Additional information: link

Reentrancy in TigerRoar2022._transferFrom(address,address,uint256) (#246-266):
External calls:
- swapBack() (#255)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#316-322)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#330)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#332)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#336-343)
External calls sending eth:
- swapBack() (#255)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#330)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#332)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#336-343)
State variables written after the call(s):
- launch() (#257)
- launchedAt = block.number (#366)
Reentrancy in TigerRoar2022.constructor() (#201-212):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#203)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#204)
- _balances[_owner] = _totalSupply (#210)
- isFeeExempt[_owner] = true (#207)
- isTxLimitExempt[_owner] = true (#208)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in TigerRoar2022._transferFrom(address,address,uint256) (#246-266):
External calls:
- swapBack() (#255)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#316-322)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#330)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#332)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#336-343)
External calls sending eth:
- swapBack() (#255)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#330)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#332)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#336-343)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#293)
- amountReceived = takeFee(sender,recipient,amount) (#261)
- Transfer(sender,recipient,amountReceived) (#264)
Reentrancy in TigerRoar2022.constructor() (#201-212):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#203)
Event emitted after the call(s):
- Transfer(address(0),_owner,_totalSupply) (#211)
Reentrancy in TigerRoar2022.swapBack() (#305-346):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#316-322)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#330)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#332)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#336-343)
External calls sending eth:
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#330)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#332)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,marketingFeeReceiver,block.timestamp) (#336-343)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#344)
Apply the check-effects-interactions pattern.

Additional information: link

TigerRoar2022.buyTokens(uint256,address) (#348-359) is never used and should be removed
Remove unused functions.

Additional information: link

TigerRoar2022._maxTxAmount (#172) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 1) / 200
TigerRoar2022._maxWalletSize (#173) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 2) / 100
TigerRoar2022.swapThreshold (#197) 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 TigerRoar2022.swapBack() (#305-346):
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#330)
- (developmentSuccess) = address(developmentFeeReceiver).call{gas: 30000,value: amountBNBdevelopment}() (#332)
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() (#114) is not in mixedCase
Parameter TigerRoar2022.setFees(uint256,uint256,uint256,uint256)._liquidityFee (#387) is not in mixedCase
Parameter TigerRoar2022.setFees(uint256,uint256,uint256,uint256)._developmentFee (#387) is not in mixedCase
Parameter TigerRoar2022.setFees(uint256,uint256,uint256,uint256)._marketingFee (#387) is not in mixedCase
Parameter TigerRoar2022.setFees(uint256,uint256,uint256,uint256)._feeDenominator (#387) is not in mixedCase
Parameter TigerRoar2022.setFeeReceiver(address,address)._marketingFeeReceiver (#395) is not in mixedCase
Parameter TigerRoar2022.setFeeReceiver(address,address)._developmentFeeReceiver (#395) is not in mixedCase
Parameter TigerRoar2022.setSwapBackSettings(bool,uint256)._enabled (#400) is not in mixedCase
Parameter TigerRoar2022.setSwapBackSettings(bool,uint256)._amount (#400) is not in mixedCase
Parameter TigerRoar2022.transferForeignToken(address)._token (#410) is not in mixedCase
Variable TigerRoar2022.WBNB (#163) is not in mixedCase
Variable TigerRoar2022.DEAD (#164) is not in mixedCase
Variable TigerRoar2022.ZERO (#165) is not in mixedCase
Constant TigerRoar2022._name (#167) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TigerRoar2022._symbol (#168) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TigerRoar2022._decimals (#169) is not in UPPER_CASE_WITH_UNDERSCORES
Variable TigerRoar2022._totalSupply (#171) is not in mixedCase
Variable TigerRoar2022._maxTxAmount (#172) is not in mixedCase
Variable TigerRoar2022._maxWalletSize (#173) is not in mixedCase
Variable TigerRoar2022._balances (#175) is not in mixedCase
Variable TigerRoar2022._allowances (#176) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#119) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#120)
Prevent variables from having similar names.

Additional information: link

TigerRoar2022.slitherConstructorVariables() (#160-430) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#164)
TigerRoar2022.slitherConstructorVariables() (#160-430) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#165)
TigerRoar2022.slitherConstructorVariables() (#160-430) uses literals with too many digits:
- _totalSupply = 1000000000 * (10 ** _decimals) (#171)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

TigerRoar2022.DEAD (#164) should be constant
TigerRoar2022.WBNB (#163) should be constant
TigerRoar2022.ZERO (#165) should be constant
TigerRoar2022._totalSupply (#171) 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) (#83-85)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#87-89)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#99-103)
transferForeignToken(address) should be declared external:
- TigerRoar2022.transferForeignToken(address) (#410-414)
isOverLiquified(uint256,uint256) should be declared external:
- TigerRoar2022.isOverLiquified(uint256,uint256) (#424-426)
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 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

Price for TigerRoar2022

News for TigerRoar2022