WerewolvesToken Token Logo

WOLF [Werewolves] Token

About WOLF

Listings

Token 2 years
white paper

Coming to The Werewolves Metaverse, you can play werewolves, seers and villagers. Different characters, different attributes. Using them to make big money for you while enjoying the strategy game.

The Werewolves is a risk protocol for NFTs with novel tokenomics. It shows what’s possible with interactions between the BEP-20 and BEP-721 protocols. For the very first time, your NFT has the chance to win other multiple players’ prospective earnings. The rarer your NFT, the higher possibility to loot expected earnings from other NFTs. The Werewolves is pioneering new types of NFT mechanisms. Fully decentralized.

Laser Scorebeta Last Audit: 15 January 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

Reentrancy in WolfToken._transfer(address,address,uint256) (contracts/WolfToken.sol#259-311):
External calls:
- swapAndCharge(tokenBalance) (contracts/WolfToken.sol#297)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/WolfToken.sol#361-368)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/WolfToken.sol#349-355)
- (success) = pool.call{value: address(this).balance}(abi.encodeWithSignature(chargeBNB(uint256,uint256,uint256),address(this).balance,bnbRegularRewardsPoolFee,bnbArenaRewardsPoolFee)) (contracts/WolfToken.sol#335-337)
External calls sending eth:
- swapAndCharge(tokenBalance) (contracts/WolfToken.sol#297)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/WolfToken.sol#361-368)
- (success) = pool.call{value: address(this).balance}(abi.encodeWithSignature(chargeBNB(uint256,uint256,uint256),address(this).balance,bnbRegularRewardsPoolFee,bnbArenaRewardsPoolFee)) (contracts/WolfToken.sol#335-337)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/WolfToken.sol#310)
- _balances[sender] = _balances[sender].sub(amount) (contracts/WolfToken.sol#389)
- _balances[recipient] = _balances[recipient].add(transferAmount) (contracts/WolfToken.sol#390)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (contracts/WolfToken.sol#394)
- _tokenTransfer(from,to,amount,takeFee) (contracts/WolfToken.sol#310)
- _liquidityFee = _previousLiquidityFee (contracts/WolfToken.sol#239)
- _liquidityFee = 0 (contracts/WolfToken.sol#232)
- _tokenTransfer(from,to,amount,takeFee) (contracts/WolfToken.sol#310)
- _previousBNBArenaRewardsPoolFee = bnbArenaRewardsPoolFee (contracts/WolfToken.sol#226)
- _tokenTransfer(from,to,amount,takeFee) (contracts/WolfToken.sol#310)
- _previousBNBRegularRewardsPoolFee = bnbRegularRewardsPoolFee (contracts/WolfToken.sol#225)
- _tokenTransfer(from,to,amount,takeFee) (contracts/WolfToken.sol#310)
- _previousLiquidityFee = _liquidityFee (contracts/WolfToken.sol#227)
- _tokenTransfer(from,to,amount,takeFee) (contracts/WolfToken.sol#310)
- _previousTeamFee = _teamFee (contracts/WolfToken.sol#228)
- _tokenTransfer(from,to,amount,takeFee) (contracts/WolfToken.sol#310)
- _teamFee = _previousTeamFee (contracts/WolfToken.sol#240)
- _teamFee = 0 (contracts/WolfToken.sol#233)
- _tokenTransfer(from,to,amount,takeFee) (contracts/WolfToken.sol#310)
- bnbArenaRewardsPoolFee = _previousBNBArenaRewardsPoolFee (contracts/WolfToken.sol#238)
- bnbArenaRewardsPoolFee = 0 (contracts/WolfToken.sol#231)
- _tokenTransfer(from,to,amount,takeFee) (contracts/WolfToken.sol#310)
- bnbRegularRewardsPoolFee = _previousBNBRegularRewardsPoolFee (contracts/WolfToken.sol#237)
- bnbRegularRewardsPoolFee = 0 (contracts/WolfToken.sol#230)
- lastSwapTime = block.timestamp (contracts/WolfToken.sol#298)
Apply the check-effects-interactions pattern.

Additional information: link

WolfToken.swapAndCharge(uint256) (contracts/WolfToken.sol#313-340) uses a dangerous strict equality:
- require(bool,string)(success == true,Transfer failed.) (contracts/WolfToken.sol#338)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

WolfToken.swapAndCharge(uint256) (contracts/WolfToken.sol#313-340) performs a multiplication on the result of a division:
-tokenForLiquid = tokenBalance.mul(_liquidityFee).div(totalFee).div(2) (contracts/WolfToken.sol#322)
-bnbForLiquid = newBNBBalance.mul(tokenForLiquid).div(tokenBalance) (contracts/WolfToken.sol#330)
Consider ordering multiplication before division.

Additional information: link

WolfToken.addLiquidity(uint256,uint256) (contracts/WolfToken.sol#358-369) ignores return value by pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/WolfToken.sol#361-368)
Ensure that all the return values of the function calls are used.

Additional information: link

WolfToken.allowance(address,address).owner (contracts/WolfToken.sol#125) shadows:
- Ownable.owner() (contracts/common/Ownable.sol#19-21) (function)
WolfToken._approve(address,address,uint256).owner (contracts/WolfToken.sol#248) shadows:
- Ownable.owner() (contracts/common/Ownable.sol#19-21) (function)
Rename the local variables that shadow another component.

Additional information: link

WolfPool.setWolfPoolGuard(address).account (contracts/WolfPool.sol#55) lacks a zero-check on :
- wolfPoolGuard = account (contracts/WolfPool.sol#56)
WolfToken.setWolfTokenGuard(address).account (contracts/WolfToken.sol#166) lacks a zero-check on :
- wolfTokenGuard = account (contracts/WolfToken.sol#167)
Check that the address is not zero.

Additional information: link

Reentrancy in WolfToken.constructor() (contracts/WolfToken.sol#79-94):
External calls:
- pancakeswapV2Pair = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (contracts/WolfToken.sol#86)
State variables written after the call(s):
- _balances[_msgSender()] = _tTotal (contracts/WolfToken.sol#92)
- _isExcludedFromFee[_msgSender()] = true (contracts/WolfToken.sol#90)
- _isExcludedFromFee[address(this)] = true (contracts/WolfToken.sol#91)
- pancakeswapV2Router = _pancakeswapV2Router (contracts/WolfToken.sol#87)
Reentrancy in WolfToken.swapAndCharge(uint256) (contracts/WolfToken.sol#313-340):
External calls:
- swapTokensForEth(tokenBalance) (contracts/WolfToken.sol#326)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/WolfToken.sol#349-355)
- addLiquidity(tokenForLiquid,bnbForLiquid) (contracts/WolfToken.sol#332)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/WolfToken.sol#361-368)
External calls sending eth:
- addLiquidity(tokenForLiquid,bnbForLiquid) (contracts/WolfToken.sol#332)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/WolfToken.sol#361-368)
State variables written after the call(s):
- addLiquidity(tokenForLiquid,bnbForLiquid) (contracts/WolfToken.sol#332)
- _allowances[owner][spender] = amount (contracts/WolfToken.sol#255)
Reentrancy in WolfToken.transferFrom(address,address,uint256) (contracts/WolfToken.sol#134-142):
External calls:
- _transfer(sender,recipient,amount) (contracts/WolfToken.sol#139)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/WolfToken.sol#361-368)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/WolfToken.sol#349-355)
- (success) = pool.call{value: address(this).balance}(abi.encodeWithSignature(chargeBNB(uint256,uint256,uint256),address(this).balance,bnbRegularRewardsPoolFee,bnbArenaRewardsPoolFee)) (contracts/WolfToken.sol#335-337)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/WolfToken.sol#139)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/WolfToken.sol#361-368)
- (success) = pool.call{value: address(this).balance}(abi.encodeWithSignature(chargeBNB(uint256,uint256,uint256),address(this).balance,bnbRegularRewardsPoolFee,bnbArenaRewardsPoolFee)) (contracts/WolfToken.sol#335-337)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (contracts/WolfToken.sol#140)
- _allowances[owner][spender] = amount (contracts/WolfToken.sol#255)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in WolfToken._transfer(address,address,uint256) (contracts/WolfToken.sol#259-311):
External calls:
- swapAndCharge(tokenBalance) (contracts/WolfToken.sol#297)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/WolfToken.sol#361-368)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/WolfToken.sol#349-355)
- (success) = pool.call{value: address(this).balance}(abi.encodeWithSignature(chargeBNB(uint256,uint256,uint256),address(this).balance,bnbRegularRewardsPoolFee,bnbArenaRewardsPoolFee)) (contracts/WolfToken.sol#335-337)
External calls sending eth:
- swapAndCharge(tokenBalance) (contracts/WolfToken.sol#297)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/WolfToken.sol#361-368)
- (success) = pool.call{value: address(this).balance}(abi.encodeWithSignature(chargeBNB(uint256,uint256,uint256),address(this).balance,bnbRegularRewardsPoolFee,bnbArenaRewardsPoolFee)) (contracts/WolfToken.sol#335-337)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (contracts/WolfToken.sol#395)
- _tokenTransfer(from,to,amount,takeFee) (contracts/WolfToken.sol#310)
- Transfer(sender,recipient,transferAmount) (contracts/WolfToken.sol#398)
- _tokenTransfer(from,to,amount,takeFee) (contracts/WolfToken.sol#310)
Reentrancy in WolfToken.constructor() (contracts/WolfToken.sol#79-94):
External calls:
- pancakeswapV2Pair = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (contracts/WolfToken.sol#86)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (contracts/WolfToken.sol#93)
Reentrancy in WolfToken.swapAndCharge(uint256) (contracts/WolfToken.sol#313-340):
External calls:
- swapTokensForEth(tokenBalance) (contracts/WolfToken.sol#326)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/WolfToken.sol#349-355)
- addLiquidity(tokenForLiquid,bnbForLiquid) (contracts/WolfToken.sol#332)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/WolfToken.sol#361-368)
External calls sending eth:
- addLiquidity(tokenForLiquid,bnbForLiquid) (contracts/WolfToken.sol#332)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/WolfToken.sol#361-368)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/WolfToken.sol#256)
- addLiquidity(tokenForLiquid,bnbForLiquid) (contracts/WolfToken.sol#332)
Reentrancy in WolfToken.swapAndCharge(uint256) (contracts/WolfToken.sol#313-340):
External calls:
- swapTokensForEth(tokenBalance) (contracts/WolfToken.sol#326)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/WolfToken.sol#349-355)
- addLiquidity(tokenForLiquid,bnbForLiquid) (contracts/WolfToken.sol#332)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/WolfToken.sol#361-368)
- (success) = pool.call{value: address(this).balance}(abi.encodeWithSignature(chargeBNB(uint256,uint256,uint256),address(this).balance,bnbRegularRewardsPoolFee,bnbArenaRewardsPoolFee)) (contracts/WolfToken.sol#335-337)
External calls sending eth:
- addLiquidity(tokenForLiquid,bnbForLiquid) (contracts/WolfToken.sol#332)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/WolfToken.sol#361-368)
- (success) = pool.call{value: address(this).balance}(abi.encodeWithSignature(chargeBNB(uint256,uint256,uint256),address(this).balance,bnbRegularRewardsPoolFee,bnbArenaRewardsPoolFee)) (contracts/WolfToken.sol#335-337)
Event emitted after the call(s):
- SwapAndCharged(tokenBalance,tokenForLiquid,tokenForTeam,address(this).balance,bnbForLiquid) (contracts/WolfToken.sol#339)
Reentrancy in WolfToken.transferFrom(address,address,uint256) (contracts/WolfToken.sol#134-142):
External calls:
- _transfer(sender,recipient,amount) (contracts/WolfToken.sol#139)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/WolfToken.sol#361-368)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/WolfToken.sol#349-355)
- (success) = pool.call{value: address(this).balance}(abi.encodeWithSignature(chargeBNB(uint256,uint256,uint256),address(this).balance,bnbRegularRewardsPoolFee,bnbArenaRewardsPoolFee)) (contracts/WolfToken.sol#335-337)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/WolfToken.sol#139)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/WolfToken.sol#361-368)
- (success) = pool.call{value: address(this).balance}(abi.encodeWithSignature(chargeBNB(uint256,uint256,uint256),address(this).balance,bnbRegularRewardsPoolFee,bnbArenaRewardsPoolFee)) (contracts/WolfToken.sol#335-337)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/WolfToken.sol#256)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (contracts/WolfToken.sol#140)
Apply the check-effects-interactions pattern.

Additional information: link

WolfToken._transfer(address,address,uint256) (contracts/WolfToken.sol#259-311) uses timestamp for comparisons
Dangerous comparisons:
- overMinTokenBalance && ! inSwap && from != pancakeswapV2Pair && swapAndLiquifyEnabled && block.timestamp >= lastSwapTime + swapCoolDownTime (contracts/WolfToken.sol#295)
Ownable.unlock() (contracts/common/Ownable.sol#50-55) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 0 days) (contracts/common/Ownable.sol#52)
Avoid relying on block.timestamp.

Additional information: link

WolfToken._transfer(address,address,uint256) (contracts/WolfToken.sol#259-311) compares to a boolean constant:
-require(bool,string)(presaleEnded == true,You are not allowed to add liquidity before presale is ended) (contracts/WolfToken.sol#273)
WolfToken.swapAndCharge(uint256) (contracts/WolfToken.sol#313-340) compares to a boolean constant:
-require(bool,string)(success == true,Transfer failed.) (contracts/WolfToken.sol#338)
Remove the equality to the boolean constant.

Additional information: link

Context._msgData() (@openzeppelin/contracts/utils/Context.sol#21-23) is never used and should be removed
SafeMath.div(uint256,uint256,string) (@openzeppelin/contracts/utils/math/SafeMath.sol#191-200) is never used and should be removed
SafeMath.mod(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#151-153) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (@openzeppelin/contracts/utils/math/SafeMath.sol#217-226) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#22-28) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#64-69) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#76-81) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#47-57) is never used and should be removed
SafeMath.trySub(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#35-40) is never used and should be removed
Remove unused functions.

Additional information: link

WolfToken._previousBNBArenaRewardsPoolFee (contracts/WolfToken.sol#31) is set pre-construction with a non-constant function or state variable:
- bnbArenaRewardsPoolFee
WolfToken._previousBNBRegularRewardsPoolFee (contracts/WolfToken.sol#34) is set pre-construction with a non-constant function or state variable:
- bnbRegularRewardsPoolFee
WolfToken._previousLiquidityFee (contracts/WolfToken.sol#37) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
WolfToken._previousTeamFee (contracts/WolfToken.sol#40) is set pre-construction with a non-constant function or state variable:
- _teamFee
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

Pragma version^0.8.0 (@openzeppelin/contracts/utils/Context.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/math/SafeMath.sol#4) allows old versions
Pragma version^0.8.0 (contracts/IWolfPool.sol#3) allows old versions
Pragma version^0.8.0 (contracts/IWolfPoolGuard.sol#3) allows old versions
Pragma version^0.8.0 (contracts/IWolfTokenGuard.sol#3) allows old versions
Pragma version^0.8.0 (contracts/WolfPool.sol#3) allows old versions
Pragma version^0.8.0 (contracts/WolfToken.sol#3) allows old versions
Pragma version^0.8.0 (contracts/common/IBEP20.sol#3) allows old versions
Pragma version^0.8.0 (contracts/common/IPancakeswapV2Factory.sol#3) allows old versions
Pragma version^0.8.0 (contracts/common/IPancakeswapV2Router01.sol#3) allows old versions
Pragma version^0.8.0 (contracts/common/IPancakeswapV2Router02.sol#3) allows old versions
Pragma version^0.8.0 (contracts/common/Ownable.sol#2) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in WolfToken.swapAndCharge(uint256) (contracts/WolfToken.sol#313-340):
- (success) = pool.call{value: address(this).balance}(abi.encodeWithSignature(chargeBNB(uint256,uint256,uint256),address(this).balance,bnbRegularRewardsPoolFee,bnbArenaRewardsPoolFee)) (contracts/WolfToken.sol#335-337)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter WolfToken.setSwapAndLiquifyEnabled(bool)._enabled (contracts/WolfToken.sol#215) is not in mixedCase
Variable WolfToken._liquidityFee (contracts/WolfToken.sol#36) is not in mixedCase
Variable WolfToken._teamFee (contracts/WolfToken.sol#39) is not in mixedCase
Variable WolfToken._maxTxAmount (contracts/WolfToken.sol#42) is not in mixedCase
Function IPancakeswapV2Router01.WETH() (contracts/common/IPancakeswapV2Router01.sol#8) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/common/IPancakeswapV2Router01.sol#13) is too similar to IPancakeswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/common/IPancakeswapV2Router01.sol#14)
Prevent variables from having similar names.

Additional information: link

WolfToken._decimals (contracts/WolfToken.sol#28) should be constant
WolfToken._name (contracts/WolfToken.sol#26) should be constant
WolfToken._symbol (contracts/WolfToken.sol#27) should be constant
WolfToken._tTotal (contracts/WolfToken.sol#17) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

transfer(address,uint256) should be declared external:
- WolfToken.transfer(address,uint256) (contracts/WolfToken.sol#120-123)
allowance(address,address) should be declared external:
- WolfToken.allowance(address,address) (contracts/WolfToken.sol#125-127)
approve(address,uint256) should be declared external:
- WolfToken.approve(address,uint256) (contracts/WolfToken.sol#129-132)
transferFrom(address,address,uint256) should be declared external:
- WolfToken.transferFrom(address,address,uint256) (contracts/WolfToken.sol#134-142)
increaseAllowance(address,uint256) should be declared external:
- WolfToken.increaseAllowance(address,uint256) (contracts/WolfToken.sol#144-147)
decreaseAllowance(address,uint256) should be declared external:
- WolfToken.decreaseAllowance(address,uint256) (contracts/WolfToken.sol#149-152)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/common/Ownable.sol#28-31)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/common/Ownable.sol#33-37)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (contracts/common/Ownable.sol#39-41)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (contracts/common/Ownable.sol#43-48)
unlock() should be declared external:
- Ownable.unlock() (contracts/common/Ownable.sol#50-55)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


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 number of swaps.


Telegram account link seems to be invalid


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to crawl data from the website


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

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


Unable to find code repository for the project


Young tokens have high risks of 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 relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for WOLF