WAKA FLOKI Token Logo

WAFL [WAKA FLOKI] Token

About WAFL

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 8 February 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

WAKAFLOKI.addLiquidity(uint256,uint256) (#743-757) sends eth to arbitrary user
Dangerous calls:
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in WAKAFLOKI._transfer(address,address,uint256) (#638-695):
External calls:
- swapAndLiquify(contractTokenBalance) (#678)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#678)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
- address(_teamWallet).transfer(bnbForTeam) (#713)
- address(_marketingWallet).transfer(bnbForMarketing) (#717)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#686)
- _rOwned[to] = _rOwned[to] + rAmount (#615)
- _rOwned[sender] = _rOwned[sender] - rAmount (#800)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#805)
- _tokenTransfer(from,to,amount,takeFee) (#686)
- _rTotal = _rTotal - rFee (#573)
- _tokenTransfer(from,to,amount,takeFee) (#686)
- _tOwned[to] = _tOwned[to] + tAmount (#617)
- _tOwned[sender] = _tOwned[sender] - tAmount (#802)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#807)
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.

WAKAFLOKI.allowance(address,address).owner (#413) shadows:
- Ownable.owner() (#39-41) (function)
WAKAFLOKI._approve(address,address,uint256).owner (#630) shadows:
- Ownable.owner() (#39-41) (function)
Rename the local variables that shadow another component.

Additional information: link

WAKAFLOKI.swapAndLiquify(uint256) (#697-723) performs a multiplication on the result of a division:
-bnbForTeam = newBalance / 10000 * _percentageOfLiquidityForTeam (#707)
WAKAFLOKI.swapAndLiquify(uint256) (#697-723) performs a multiplication on the result of a division:
-bnbForMarketing = newBalance / 10000 * _percentageOfLiquidityForMarketing (#708)
Consider ordering multiplication before division.

Additional information: link

WAKAFLOKI.addToBlacklist(address[]).i (#790) 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

WAKAFLOKI.setMaxTx(uint256) (#499-501) should emit an event for:
- _maxTxAmount = maxTx (#500)
WAKAFLOKI.setMinTokenBalance(uint256) (#503-505) should emit an event for:
- _minTokenBalance = minTokenBalance (#504)
WAKAFLOKI.setAntiWhaleThreshold(uint256) (#523-525) should emit an event for:
- _antiWhaleThreshold = antiWhaleThreshold (#524)
WAKAFLOKI.setFeesTransfer(uint256,uint256) (#527-530) should emit an event for:
- _taxFee = taxFee (#528)
- _liquidityFee = liquidityFee (#529)
WAKAFLOKI.setFeesBuy(uint256,uint256) (#532-535) should emit an event for:
- _taxFeeBuy = taxFee (#533)
- _liquidityFeeBuy = liquidityFee (#534)
WAKAFLOKI.setFeesSell(uint256,uint256) (#537-540) should emit an event for:
- _taxFeeSell = taxFee (#538)
- _liquidityFeeSell = liquidityFee (#539)
WAKAFLOKI.setLiquidityPercentages(uint256,uint256) (#547-550) should emit an event for:
- _percentageOfLiquidityForTeam = teamFee (#548)
- _percentageOfLiquidityForMarketing = marketingFee (#549)
Emit an event for critical parameter changes.

Additional information: link

WAKAFLOKI.setAddresses(address,address).teamWallet (#542) lacks a zero-check on :
- _teamWallet = teamWallet (#543)
WAKAFLOKI.setAddresses(address,address).marketingWallet (#542) lacks a zero-check on :
- _marketingWallet = marketingWallet (#544)
WAKAFLOKI.setUniswapPair(address).p (#564) lacks a zero-check on :
- uniswapV2Pair = p (#565)
Check that the address is not zero.

Additional information: link

Reentrancy in WAKAFLOKI._transfer(address,address,uint256) (#638-695):
External calls:
- swapAndLiquify(contractTokenBalance) (#678)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#678)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
- address(_teamWallet).transfer(bnbForTeam) (#713)
- address(_marketingWallet).transfer(bnbForMarketing) (#717)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#686)
- _liquidityFee = 0 (#768)
- _liquidityFee = _liquidityFeeBuy (#772)
- _liquidityFee = _liquidityFeeSell (#776)
- _liquidityFee = previousLiquidityFee (#783)
- _tokenTransfer(from,to,amount,takeFee) (#686)
- _tFeeTotal = _tFeeTotal + tFee (#574)
- _tokenTransfer(from,to,amount,takeFee) (#686)
- _taxFee = 0 (#767)
- _taxFee = _taxFeeBuy (#771)
- _taxFee = _taxFeeSell (#775)
- _taxFee = previousTaxFee (#782)
Reentrancy in WAKAFLOKI.constructor() (#353-382):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#361-362)
State variables written after the call(s):
- _isExcludedFromAntiWhale[owner()] = true (#372)
- _isExcludedFromAntiWhale[address(this)] = true (#373)
- _isExcludedFromAntiWhale[uniswapV2Pair] = true (#374)
- _isExcludedFromAntiWhale[address(uniswapV2Router)] = true (#375)
- _isExcludedFromAntiWhale[_burnAddress] = true (#376)
- _isExcludedFromAntiWhale[address(0x47ED6184e91ee609cD772B4bd7809e3677497ee5)] = true (#377)
- _isExcludedFromAutoLiquidity[uniswapV2Pair] = true (#369)
- _isExcludedFromAutoLiquidity[address(uniswapV2Router)] = true (#370)
- _isExcludedFromFee[owner()] = true (#366)
- _isExcludedFromFee[address(this)] = true (#367)
- _isExcludedFromMaxTx[owner()] = true (#378)
- _isExcludedFromMaxTx[address(0x47ED6184e91ee609cD772B4bd7809e3677497ee5)] = true (#379)
- uniswapV2Router = _uniswapV2Router (#363)
Reentrancy in WAKAFLOKI.swapAndLiquify(uint256) (#697-723):
External calls:
- swapTokensForBnb(half) (#704)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#720)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#713)
- address(_marketingWallet).transfer(bnbForMarketing) (#717)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#720)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
State variables written after the call(s):
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#720)
- _allowances[owner][spender] = amount (#634)
Reentrancy in WAKAFLOKI.transferFrom(address,address,uint256) (#421-425):
External calls:
- _transfer(sender,recipient,amount) (#422)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- _transfer(sender,recipient,amount) (#422)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
- address(_teamWallet).transfer(bnbForTeam) (#713)
- address(_marketingWallet).transfer(bnbForMarketing) (#717)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#423)
- _allowances[owner][spender] = amount (#634)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in WAKAFLOKI._transfer(address,address,uint256) (#638-695):
External calls:
- swapAndLiquify(contractTokenBalance) (#678)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#678)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
- address(_teamWallet).transfer(bnbForTeam) (#713)
- address(_marketingWallet).transfer(bnbForMarketing) (#717)
Event emitted after the call(s):
- Transfer(sender,to,tAmount) (#619)
- _tokenTransfer(from,to,amount,takeFee) (#686)
- Transfer(sender,recipient,tTransferAmount) (#812)
- _tokenTransfer(from,to,amount,takeFee) (#686)
Reentrancy in WAKAFLOKI.constructor() (#353-382):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#361-362)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#381)
Reentrancy in WAKAFLOKI.swapAndLiquify(uint256) (#697-723):
External calls:
- swapTokensForBnb(half) (#704)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
Event emitted after the call(s):
- TeamSent(_teamWallet,bnbForTeam) (#712)
Reentrancy in WAKAFLOKI.swapAndLiquify(uint256) (#697-723):
External calls:
- swapTokensForBnb(half) (#704)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#713)
Event emitted after the call(s):
- MarketingSent(_marketingWallet,bnbForMarketing) (#716)
Reentrancy in WAKAFLOKI.swapAndLiquify(uint256) (#697-723):
External calls:
- swapTokensForBnb(half) (#704)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#720)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#713)
- address(_marketingWallet).transfer(bnbForMarketing) (#717)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#720)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#635)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#720)
- SwapAndLiquify(half,bnbAdded,tokenAdded) (#722)
Reentrancy in WAKAFLOKI.transferFrom(address,address,uint256) (#421-425):
External calls:
- _transfer(sender,recipient,amount) (#422)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- _transfer(sender,recipient,amount) (#422)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
- address(_teamWallet).transfer(bnbForTeam) (#713)
- address(_marketingWallet).transfer(bnbForMarketing) (#717)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#635)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#423)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

WAKAFLOKI.includeInReward(address) (#477-489) has costly operations inside a loop:
- _excluded.pop() (#485)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#9-12) is never used and should be removed
Remove unused functions.

Additional information: link

WAKAFLOKI._rTotal (#302) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
WAKAFLOKI._maxTxAmount (#324) is set pre-construction with a non-constant function or state variable:
- _tTotal * 10000 / 10000
WAKAFLOKI._minTokenBalance (#325) is set pre-construction with a non-constant function or state variable:
- _tTotal / 400
WAKAFLOKI._antiWhaleThreshold (#342) is set pre-construction with a non-constant function or state variable:
- _tTotal * 200 / 10000
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() (#109) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#110) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#127) is not in mixedCase
Function IUniswapV2Router01.WETH() (#147) is not in mixedCase
Parameter WAKAFLOKI.setSwapAndLiquifyEnabled(bool)._enabled (#552) is not in mixedCase
Variable WAKAFLOKI._isExcludedFromAutoLiquidity (#288) is not in mixedCase
Variable WAKAFLOKI._isExcludedFromAntiWhale (#289) is not in mixedCase
Variable WAKAFLOKI._isExcludedFromBuy (#290) is not in mixedCase
Variable WAKAFLOKI._isBlacklisted (#291) is not in mixedCase
Variable WAKAFLOKI._isExcludedFromMaxTx (#292) is not in mixedCase
Constant WAKAFLOKI._burnAddress (#298) is not in UPPER_CASE_WITH_UNDERSCORES
Constant WAKAFLOKI._name (#305) is not in UPPER_CASE_WITH_UNDERSCORES
Constant WAKAFLOKI._symbol (#306) is not in UPPER_CASE_WITH_UNDERSCORES
Constant WAKAFLOKI._decimals (#307) is not in UPPER_CASE_WITH_UNDERSCORES
Variable WAKAFLOKI._taxFee (#313) is not in mixedCase
Variable WAKAFLOKI._liquidityFee (#314) is not in mixedCase
Variable WAKAFLOKI._taxFeeBuy (#317) is not in mixedCase
Variable WAKAFLOKI._liquidityFeeBuy (#318) is not in mixedCase
Variable WAKAFLOKI._taxFeeSell (#321) is not in mixedCase
Variable WAKAFLOKI._liquidityFeeSell (#322) is not in mixedCase
Variable WAKAFLOKI._maxTxAmount (#324) is not in mixedCase
Variable WAKAFLOKI._minTokenBalance (#325) is not in mixedCase
Variable WAKAFLOKI._isAntiWhaleEnabled (#341) is not in mixedCase
Variable WAKAFLOKI._antiWhaleThreshold (#342) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in WAKAFLOKI._transfer(address,address,uint256) (#638-695):
External calls:
- swapAndLiquify(contractTokenBalance) (#678)
- address(_teamWallet).transfer(bnbForTeam) (#713)
- address(_marketingWallet).transfer(bnbForMarketing) (#717)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#678)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
- address(_teamWallet).transfer(bnbForTeam) (#713)
- address(_marketingWallet).transfer(bnbForMarketing) (#717)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#686)
- _liquidityFee = 0 (#768)
- _liquidityFee = _liquidityFeeBuy (#772)
- _liquidityFee = _liquidityFeeSell (#776)
- _liquidityFee = previousLiquidityFee (#783)
- _tokenTransfer(from,to,amount,takeFee) (#686)
- _rOwned[to] = _rOwned[to] + rAmount (#615)
- _rOwned[sender] = _rOwned[sender] - rAmount (#800)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#805)
- _tokenTransfer(from,to,amount,takeFee) (#686)
- _rTotal = _rTotal - rFee (#573)
- _tokenTransfer(from,to,amount,takeFee) (#686)
- _tFeeTotal = _tFeeTotal + tFee (#574)
- _tokenTransfer(from,to,amount,takeFee) (#686)
- _tOwned[to] = _tOwned[to] + tAmount (#617)
- _tOwned[sender] = _tOwned[sender] - tAmount (#802)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#807)
- _tokenTransfer(from,to,amount,takeFee) (#686)
- _taxFee = 0 (#767)
- _taxFee = _taxFeeBuy (#771)
- _taxFee = _taxFeeSell (#775)
- _taxFee = previousTaxFee (#782)
Event emitted after the call(s):
- Transfer(sender,to,tAmount) (#619)
- _tokenTransfer(from,to,amount,takeFee) (#686)
- Transfer(sender,recipient,tTransferAmount) (#812)
- _tokenTransfer(from,to,amount,takeFee) (#686)
Reentrancy in WAKAFLOKI.swapAndLiquify(uint256) (#697-723):
External calls:
- address(_teamWallet).transfer(bnbForTeam) (#713)
Event emitted after the call(s):
- MarketingSent(_marketingWallet,bnbForMarketing) (#716)
Reentrancy in WAKAFLOKI.swapAndLiquify(uint256) (#697-723):
External calls:
- address(_teamWallet).transfer(bnbForTeam) (#713)
- address(_marketingWallet).transfer(bnbForMarketing) (#717)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#713)
- address(_marketingWallet).transfer(bnbForMarketing) (#717)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#720)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
State variables written after the call(s):
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#720)
- _allowances[owner][spender] = amount (#634)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#635)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#720)
- SwapAndLiquify(half,bnbAdded,tokenAdded) (#722)
Reentrancy in WAKAFLOKI.transferFrom(address,address,uint256) (#421-425):
External calls:
- _transfer(sender,recipient,amount) (#422)
- address(_teamWallet).transfer(bnbForTeam) (#713)
- address(_marketingWallet).transfer(bnbForMarketing) (#717)
External calls sending eth:
- _transfer(sender,recipient,amount) (#422)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#748-755)
- address(_teamWallet).transfer(bnbForTeam) (#713)
- address(_marketingWallet).transfer(bnbForMarketing) (#717)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#423)
- _allowances[owner][spender] = amount (#634)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#635)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#423)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#152) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#153)
Variable WAKAFLOKI.reflectionFromToken(uint256,bool).rTransferAmount (#455) is too similar to WAKAFLOKI._transferStandard(address,address,uint256).tTransferAmount (#796)
Variable WAKAFLOKI.reflectionFromToken(uint256,bool).rTransferAmount (#455) is too similar to WAKAFLOKI._getTValues(uint256).tTransferAmount (#580)
Variable WAKAFLOKI._transferStandard(address,address,uint256).rTransferAmount (#798) is too similar to WAKAFLOKI._transferStandard(address,address,uint256).tTransferAmount (#796)
Variable WAKAFLOKI._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#589) is too similar to WAKAFLOKI._getTValues(uint256).tTransferAmount (#580)
Variable WAKAFLOKI._transferStandard(address,address,uint256).rTransferAmount (#798) is too similar to WAKAFLOKI._getTValues(uint256).tTransferAmount (#580)
Variable WAKAFLOKI._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#589) is too similar to WAKAFLOKI._transferStandard(address,address,uint256).tTransferAmount (#796)
Prevent variables from having similar names.

Additional information: link

WAKAFLOKI.slitherConstructorVariables() (#282-816) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 9 (#301)
WAKAFLOKI.slitherConstructorConstantVariables() (#282-816) uses literals with too many digits:
- _burnAddress = 0x000000000000000000000000000000000000dEaD (#298)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

WAKAFLOKI._tTotal (#301) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#48-51)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#53-57)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#59-61)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#63-68)
unlock() should be declared external:
- Ownable.unlock() (#70-75)
name() should be declared external:
- WAKAFLOKI.name() (#384-386)
symbol() should be declared external:
- WAKAFLOKI.symbol() (#388-390)
decimals() should be declared external:
- WAKAFLOKI.decimals() (#392-394)
totalSupply() should be declared external:
- WAKAFLOKI.totalSupply() (#396-401)
transfer(address,uint256) should be declared external:
- WAKAFLOKI.transfer(address,uint256) (#408-411)
allowance(address,address) should be declared external:
- WAKAFLOKI.allowance(address,address) (#413-415)
approve(address,uint256) should be declared external:
- WAKAFLOKI.approve(address,uint256) (#417-420)
transferFrom(address,address,uint256) should be declared external:
- WAKAFLOKI.transferFrom(address,address,uint256) (#421-425)
increaseAllowance(address,uint256) should be declared external:
- WAKAFLOKI.increaseAllowance(address,uint256) (#427-430)
decreaseAllowance(address,uint256) should be declared external:
- WAKAFLOKI.decreaseAllowance(address,uint256) (#432-435)
isExcludedFromReward(address) should be declared external:
- WAKAFLOKI.isExcludedFromReward(address) (#437-439)
totalFees() should be declared external:
- WAKAFLOKI.totalFees() (#441-443)
reflectionFromToken(uint256,bool) should be declared external:
- WAKAFLOKI.reflectionFromToken(uint256,bool) (#445-458)
excludeFromReward(address) should be declared external:
- WAKAFLOKI.excludeFromReward(address) (#467-475)
setSwapAndLiquifyEnabled(bool) should be declared external:
- WAKAFLOKI.setSwapAndLiquifyEnabled(bool) (#552-555)
isExcludedFromFee(address) should be declared external:
- WAKAFLOKI.isExcludedFromFee(address) (#626-628)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


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.

Contract has 5% buy tax and 15% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Telegram and Twitter accounts


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


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 WAFL