White Tigger Finance Token Logo

WTF [White Tigger Finance] Token

About WTF

Listings

Not Found
Token 4 years
white paper

The Only Auto Staking and Auto Compounding Cryptocurrency token model you need.

Laser Scorebeta Last Audit: 22 April 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...)

WhiteTiggerFinance._transferFrom(address,address,uint256) (#473-527) uses a dangerous strict equality:
- sender != pair && block.number == lastBuyBlock[sender] (#482)
WhiteTiggerFinance.rebase(uint256,int256) (#603-638) uses a dangerous strict equality:
- epoch == 0 (#605)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

WhiteTiggerFinance.manage_blacklist(address[],bool).i (#681) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

WhiteTiggerFinance.tradingStatus(bool,uint256)._status (#649) shadows:
- ReentrancyGuard._status (#267) (state variable)
WhiteTiggerFinance.enable_blacklist(bool)._status (#670) shadows:
- ReentrancyGuard._status (#267) (state variable)
WhiteTiggerFinance.cooldownEnabled(bool,uint8)._status (#687) shadows:
- ReentrancyGuard._status (#267) (state variable)
Rename the local variables that shadow another component.

Additional information: link

WhiteTiggerFinance.takeFee(address,uint256,bool) (#557-590) performs a multiplication on the result of a division:
-feeAmount = (rAmount / feeDenominator) * (feeRate) (#579)
WhiteTiggerFinance.takeFee(address,uint256,bool) (#557-590) performs a multiplication on the result of a division:
-feeAmount = rAmount / (100) * (99) (#582)
WhiteTiggerFinance.setMaxWalletPercent_base1000(uint256) (#762-764) performs a multiplication on the result of a division:
-_maxWalletToken = TOTAL_GONS / (1000) * (maxWallPercent_base1000) (#763)
WhiteTiggerFinance.setMaxTxPercent_base1000(uint256) (#767-769) performs a multiplication on the result of a division:
-_maxTxAmount = TOTAL_GONS / (1000) * (maxTXPercentage_base1000) (#768)
WhiteTiggerFinance.rebase_percentage(uint256,bool) (#851-859) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply / (1000000000) * (_percentage_base1000))) (#856)
WhiteTiggerFinance.rebase_percentage(uint256,bool) (#851-859) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply / (1000000000) * (_percentage_base1000)) * (- 1)) (#854)
Consider ordering multiplication before division.

Additional information: link

WhiteTiggerFinance.setMaster(address) (#757-759) should emit an event for:
- master = _master (#758)
Emit an event for critical parameter changes.

Additional information: link

WhiteTiggerFinance.tradingStatus(bool,uint256) (#649-656) should emit an event for:
- deadBlocks = _deadBlocks (#654)
WhiteTiggerFinance.launchStatus(uint256) (#664-666) should emit an event for:
- launchedAt = _launchblock (#665)
WhiteTiggerFinance.setFees(uint256,uint256,uint256) (#716-723) should emit an event for:
- liquidityFee = _liquidityFee (#717)
- treasuryFee = _treasuryFee (#718)
- totalFee = _liquidityFee + _treasuryFee (#719)
- salesFee = _salesFee (#720)
WhiteTiggerFinance.setSurcharge(uint256,uint256) (#726-729) should emit an event for:
- initialsurcharge = _initialsurcharge (#727)
- surchargeextra = _surchargeextra (#728)
WhiteTiggerFinance.setMaxWalletPercent_base1000(uint256) (#762-764) should emit an event for:
- _maxWalletToken = TOTAL_GONS / (1000) * (maxWallPercent_base1000) (#763)
WhiteTiggerFinance.setMaxTxPercent_base1000(uint256) (#767-769) should emit an event for:
- _maxTxAmount = TOTAL_GONS / (1000) * (maxTXPercentage_base1000) (#768)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#53) lacks a zero-check on :
- owner = adr (#54)
WhiteTiggerFinance.setFeeReceivers(address,address,address)._liquidityReceiver (#734) lacks a zero-check on :
- liquidityReceiver = _liquidityReceiver (#735)
WhiteTiggerFinance.setFeeReceivers(address,address,address)._treasuryReceiver (#734) lacks a zero-check on :
- treasuryReceiver = _treasuryReceiver (#736)
WhiteTiggerFinance.setFeeReceivers(address,address,address)._teamWallet (#734) lacks a zero-check on :
- teamWallet = _teamWallet (#737)
WhiteTiggerFinance.setPair(address)._pair (#745) lacks a zero-check on :
- pair = _pair (#746)
WhiteTiggerFinance.setMaster(address)._master (#757) lacks a zero-check on :
- master = _master (#758)
Check that the address is not zero.

Additional information: link

Reentrancy in WhiteTiggerFinance.constructor() (#376-428):
External calls:
- pair = IPancakeSwapFactory(router.factory()).createPair(router.WETH(),address(this)) (#382)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#384)
- _allowances[address(this)][pair] = type()(uint256).max (#385)
- _rBalance[msg.sender] = TOTAL_GONS (#425)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#390)
- autoRebase = false (#417)
- isFeeExempt[treasuryReceiver] = true (#394)
- isFeeExempt[address(this)] = true (#395)
- isFeeExempt[msg.sender] = true (#396)
- isFeeExempt[DEAD] = true (#397)
- isFeeExempt[liquidityReceiver] = true (#398)
- isFeeExempt[teamWallet] = true (#399)
- isTimelockExempt[msg.sender] = true (#408)
- isTimelockExempt[DEAD] = true (#409)
- isTimelockExempt[address(this)] = true (#410)
- isTimelockExempt[treasuryReceiver] = true (#411)
- isTimelockExempt[liquidityReceiver] = true (#412)
- isTimelockExempt[teamWallet] = true (#413)
- isTxLimitExempt[msg.sender] = true (#401)
- isTxLimitExempt[address(this)] = true (#402)
- isTxLimitExempt[treasuryReceiver] = true (#403)
- isTxLimitExempt[liquidityReceiver] = true (#404)
- isTxLimitExempt[DEAD] = true (#405)
- isTxLimitExempt[teamWallet] = true (#406)
- lastRebaseDelta = 0 (#416)
- lastRebaseTime = block.timestamp (#415)
- liquidityReceiver = 0x1ade19d48B65336a050651E31337493af5523024 (#421)
- pairContract = IPancakeSwapPair(pair) (#388)
- rate = TOTAL_GONS / (_totalSupply) (#392)
- teamWallet = 0x60EF3cB827189EF2a66651f635271F6750d21174 (#423)
- treasuryReceiver = 0x43844DFd0f4aA469253381C2eaA4Ae62D914B79e (#422)
Reentrancy in WhiteTiggerFinance.rebase(uint256,int256) (#603-638):
External calls:
- pairContract.sync() (#631)
State variables written after the call(s):
- lastRebaseDelta = supplyDelta (#634)
- lastRebaseTime = epoch (#633)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in WhiteTiggerFinance.constructor() (#376-428):
External calls:
- pair = IPancakeSwapFactory(router.factory()).createPair(router.WETH(),address(this)) (#382)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#426)
Reentrancy in WhiteTiggerFinance.rebase(uint256,int256) (#603-638):
External calls:
- pairContract.sync() (#631)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#636)
Apply the check-effects-interactions pattern.

Additional information: link

WhiteTiggerFinance._transferFrom(address,address,uint256) (#473-527) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#494)
WhiteTiggerFinance.takeFee(address,uint256,bool) (#557-590) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp < (launchedAtTime + 14400) (#562)
- block.timestamp < (launchedAtTime + 28800) (#564)
- block.timestamp < (launchedAtTime + 43200) (#566)
- block.timestamp < (launchedAtTime + 57600) (#568)
- block.timestamp < (launchedAtTime + 72000) (#570)
- block.timestamp < (launchedAtTime + 2592000) (#572)
WhiteTiggerFinance.shouldRebase() (#597-600) uses timestamp for comparisons
Dangerous comparisons:
- autoRebase && (_totalSupply < MAX_SUPPLY) && msg.sender != pair && block.timestamp >= (lastRebaseTime + rebaseFrequency) (#598-599)
WhiteTiggerFinance.rebase(uint256,int256) (#603-638) uses timestamp for comparisons
Dangerous comparisons:
- epoch == 0 (#605)
Avoid relying on block.timestamp.

Additional information: link

WhiteTiggerFinance.isContract(address) (#881-885) uses assembly
- INLINE ASM (#883)
Do not use evm assembly.

Additional information: link

WhiteTiggerFinance.totalFee (#320) is set pre-construction with a non-constant function or state variable:
- treasuryFee + liquidityFee
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 IPancakeSwapPair.DOMAIN_SEPARATOR() (#77) is not in mixedCase
Function IPancakeSwapPair.PERMIT_TYPEHASH() (#78) is not in mixedCase
Function IPancakeSwapPair.MINIMUM_LIQUIDITY() (#95) is not in mixedCase
Function IPancakeSwapRouter.WETH() (#115) is not in mixedCase
Parameter WhiteTiggerFinance.tradingStatus(bool,uint256)._status (#649) is not in mixedCase
Parameter WhiteTiggerFinance.tradingStatus(bool,uint256)._deadBlocks (#649) is not in mixedCase
Parameter WhiteTiggerFinance.setFeesOnNormalTransfers(bool)._enabled (#658) is not in mixedCase
Parameter WhiteTiggerFinance.launchStatus(uint256)._launchblock (#664) is not in mixedCase
Function WhiteTiggerFinance.enable_blacklist(bool) (#670-672) is not in mixedCase
Parameter WhiteTiggerFinance.enable_blacklist(bool)._status (#670) is not in mixedCase
Parameter WhiteTiggerFinance.setBotBlacklist(address,bool)._botAddress (#674) is not in mixedCase
Parameter WhiteTiggerFinance.setBotBlacklist(address,bool)._flag (#674) is not in mixedCase
Function WhiteTiggerFinance.manage_blacklist(address[],bool) (#680-684) is not in mixedCase
Parameter WhiteTiggerFinance.cooldownEnabled(bool,uint8)._status (#687) is not in mixedCase
Parameter WhiteTiggerFinance.cooldownEnabled(bool,uint8)._interval (#687) is not in mixedCase
Parameter WhiteTiggerFinance.setFees(uint256,uint256,uint256)._liquidityFee (#716) is not in mixedCase
Parameter WhiteTiggerFinance.setFees(uint256,uint256,uint256)._treasuryFee (#716) is not in mixedCase
Parameter WhiteTiggerFinance.setFees(uint256,uint256,uint256)._salesFee (#716) is not in mixedCase
Parameter WhiteTiggerFinance.setSurcharge(uint256,uint256)._initialsurcharge (#726) is not in mixedCase
Parameter WhiteTiggerFinance.setSurcharge(uint256,uint256)._surchargeextra (#726) is not in mixedCase
Parameter WhiteTiggerFinance.setFeeReceivers(address,address,address)._liquidityReceiver (#734) is not in mixedCase
Parameter WhiteTiggerFinance.setFeeReceivers(address,address,address)._treasuryReceiver (#734) is not in mixedCase
Parameter WhiteTiggerFinance.setFeeReceivers(address,address,address)._teamWallet (#734) is not in mixedCase
Parameter WhiteTiggerFinance.setPair(address)._pair (#745) is not in mixedCase
Parameter WhiteTiggerFinance.setLP(address)._address (#751) is not in mixedCase
Parameter WhiteTiggerFinance.setMaster(address)._master (#757) is not in mixedCase
Function WhiteTiggerFinance.setMaxWalletPercent_base1000(uint256) (#762-764) is not in mixedCase
Parameter WhiteTiggerFinance.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#762) is not in mixedCase
Function WhiteTiggerFinance.setMaxTxPercent_base1000(uint256) (#767-769) is not in mixedCase
Parameter WhiteTiggerFinance.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#767) is not in mixedCase
Parameter WhiteTiggerFinance.withdrawAllToTreasuryAmount(uint256)._amount (#798) is not in mixedCase
Function WhiteTiggerFinance.clearStuckBalance_sender(uint256) (#836-839) is not in mixedCase
Function WhiteTiggerFinance.rebase_percentage(uint256,bool) (#851-859) is not in mixedCase
Parameter WhiteTiggerFinance.rebase_percentage(uint256,bool)._percentage_base1000 (#851) is not in mixedCase
Parameter WhiteTiggerFinance.setAutoRebase(bool)._flag (#862) is not in mixedCase
Parameter WhiteTiggerFinance.setRebaseRate(uint256)._rebaseRate (#872) is not in mixedCase
Parameter WhiteTiggerFinance.setRebaseFrequency(uint256)._rebaseFrequency (#877) is not in mixedCase
Function WhiteTiggerFinance.multiTransfer_fixed(address[],uint256) (#909-920) is not in mixedCase
Variable WhiteTiggerFinance.DEAD (#287) is not in mixedCase
Variable WhiteTiggerFinance.ZERO (#288) is not in mixedCase
Constant WhiteTiggerFinance._name (#290) is not in UPPER_CASE_WITH_UNDERSCORES
Constant WhiteTiggerFinance._symbol (#291) is not in UPPER_CASE_WITH_UNDERSCORES
Constant WhiteTiggerFinance._decimals (#292) is not in UPPER_CASE_WITH_UNDERSCORES
Variable WhiteTiggerFinance._rBalance (#295) is not in mixedCase
Variable WhiteTiggerFinance._allowances (#296) is not in mixedCase
Variable WhiteTiggerFinance.rebase_count (#357) is not in mixedCase
Variable WhiteTiggerFinance._totalSupply (#359) is not in mixedCase
Variable WhiteTiggerFinance._maxTxAmount (#365) is not in mixedCase
Variable WhiteTiggerFinance._maxWalletToken (#366) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

WhiteTiggerFinance.rebase_percentage(uint256,bool) (#851-859) uses literals with too many digits:
- newSupply = rebase(0,int256(_totalSupply / (1000000000) * (_percentage_base1000)) * (- 1)) (#854)
WhiteTiggerFinance.rebase_percentage(uint256,bool) (#851-859) uses literals with too many digits:
- newSupply = rebase(0,int256(_totalSupply / (1000000000) * (_percentage_base1000))) (#856)
WhiteTiggerFinance.slitherConstructorVariables() (#285-925) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#287)
WhiteTiggerFinance.slitherConstructorVariables() (#285-925) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#288)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

WhiteTiggerFinance.DEAD (#287) should be constant
WhiteTiggerFinance.ZERO (#288) should be constant
WhiteTiggerFinance.feeDenominator (#321) 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) (#37-39)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#41-43)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#53-57)
getCirculatingSupply() should be declared external:
- WhiteTiggerFinance.getCirculatingSupply() (#776-778)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 13% buy tax and 26% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity is low.


Average 30d number of PancakeSwap swaps is low.


Token is deployed only at one blockchain


Token has only one trading pair


Average 30d PancakeSwap volume is low.

No disclosed threats


Unable to find website, listings and other project-related information


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 WTF

News for WTF