Warlock Token Logo

WRLK [Warlock] Token

About WRLK

Listings

Token 2 years
white paper

Warlock is a gaming token made for gamers by gamers, that will be used as the classical “gem” you see in modern games on any platform (iOS, Android, PC, Consoles).
You’ll be able to use the tokens in our first betting game and in the others that will come.
All the warlock holder receive 8% rewards in BNB automatically just for Hold.
Enter in a magical world - the world of Warlock.

Social

Laser Scorebeta Last Audit: 1 December 2021

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...)

Warlock.addLiquidity(uint256,uint256) (Warlock.sol#529-543) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (Warlock.sol#535-542)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#89-105):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (DividendPayingToken.sol#94)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (DividendPayingToken.sol#97)
Apply the check-effects-interactions pattern.

Additional information: link

Warlock.transferForeignToken(address,address,uint256) (Warlock.sol#180-186) contains a tautology or contradiction:
- require(bool,string)(_value >= 0,you should transfer at least one token) (Warlock.sol#181)
Fix the incorrect comparison by changing the value type or the comparison.

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.

Reentrancy in Warlock.updateDividendTracker(address) (Warlock.sol#193-208):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (Warlock.sol#200)
- newDividendTracker.excludeFromDividends(address(this)) (Warlock.sol#201)
- newDividendTracker.excludeFromDividends(owner()) (Warlock.sol#202)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (Warlock.sol#203)
State variables written after the call(s):
- dividendTracker = newDividendTracker (Warlock.sol#207)
Apply the check-effects-interactions pattern.

Additional information: link

Warlock.swapAndSendToFee(uint256) (Warlock.sol#477-482) ignores return value by address(_marketingWalletAddress).call{gas: 30000,value: newBalance}() (Warlock.sol#481)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link

Warlock._transfer(address,address,uint256).iterations (Warlock.sol#468) 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

Warlock.addLiquidity(uint256,uint256) (Warlock.sol#529-543) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (Warlock.sol#535-542)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._symbol (DividendPayingToken.sol#46) shadows:
- ERC20._symbol (ERC20.sol#44) (state variable)
Rename the local variables that shadow another component.

Additional information: link

Warlock.setMaxWalletBalance(uint256) (Warlock.sol#272-274) should emit an event for:
- maxWalletBalance = amount * 10 ** 9 (Warlock.sol#273)
Emit an event for critical parameter changes.

Additional information: link

Warlock.setLiqudiityWallet(address).newWallet (Warlock.sol#237) lacks a zero-check on :
- liquidityWallet = newWallet (Warlock.sol#238)
Check that the address is not zero.

Additional information: link

Variable 'Warlock._transfer(address,address,uint256).lastProcessedIndex (Warlock.sol#468)' in Warlock._transfer(address,address,uint256) (Warlock.sol#378-475) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (Warlock.sol#469)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in Warlock.updateUniswapV2Router(address) (Warlock.sol#210-217):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (Warlock.sol#214-215)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (Warlock.sol#216)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Warlock.updateDividendTracker(address) (Warlock.sol#193-208):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (Warlock.sol#200)
- newDividendTracker.excludeFromDividends(address(this)) (Warlock.sol#201)
- newDividendTracker.excludeFromDividends(owner()) (Warlock.sol#202)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (Warlock.sol#203)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (Warlock.sol#205)
Apply the check-effects-interactions pattern.

Additional information: link

WARLOCKDividendTracker.canAutoClaim(uint256) (Warlock.sol#685-691) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (Warlock.sol#686)
- block.timestamp.sub(lastClaimTime) >= claimWait (Warlock.sol#690)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.

Additional information: link

Warlock.totalFees (Warlock.sol#39) is set pre-construction with a non-constant function or state variable:
- BNBRewardsFee.add(liquidityFee).add(marketingFee)
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.6.2 (Warlock.sol#3) 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 Warlock.swapAndSendDividends(uint256) (Warlock.sol#545-554):
- (success) = address(dividendTracker).call{value: dividends}() (Warlock.sol#549)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter WARLOCKDividendTracker.getAccount(address)._account (Warlock.sol#621) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (DividendPayingToken.sol#90) is too similar to WARLOCKDividendTracker.getAccount(address).withdrawableDividends (Warlock.sol#626)
Prevent variables from having similar names.

Additional information: link

WARLOCKDividendTracker.getAccountAtIndex(uint256) (Warlock.sol#666-683) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (Warlock.sol#677)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (SafeMathInt.sol#36) is never used in SafeMathInt (SafeMathInt.sol#34-92)
Remove unused state variables.

Additional information: link

Warlock.wallet_to_wallet_tax (Warlock.sol#22) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

process(uint256) should be declared external:
- WARLOCKDividendTracker.process(uint256) (Warlock.sol#710-755)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


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


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Young tokens have high risks of 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 WRLK