EMPIRE WARRIORS Token Logo

EMP [EMPIRE WARRIORS] Token

About EMP

Listings

Token 22 months
CoinMarketCap 22 months
white paper

Empire Warriors is a card collecting game inspired by the trending play to earn era - NFT and built on the blockchain platform. Each player collects cards for themselves; each card will be a unique parameter is used to fight against other players.

Laser Scorebeta Last Audit: 16 October 2022

report
Token seems to be a scam (type: rug pull scam).


Contract creator or owner is blacklisted for past scams


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Contract ownership is not renounced (belongs to a wallet)

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#821) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#822)
Prevent variables from having similar names.

Additional information: link

EMP.constructor(string,string,address)._symbol (#1046) shadows:
- ERC20._symbol (#410) (state variable)
EMP.constructor(string,string,address)._name (#1045) shadows:
- ERC20._name (#409) (state variable)
Rename the local variables that shadow another component.

Additional information: link

EMP.setTransferFeeRate(uint256,uint256) (#1115-1119) should emit an event for:
- sellFee = _sellFee (#1117)
- buyFee = _buyFee (#1118)
Emit an event for critical parameter changes.

Additional information: link

EMP.setMarketingAdrress(address)._marketing (#1111) lacks a zero-check on :
- marketingWallet = _marketing (#1112)
Check that the address is not zero.

Additional information: link

Reentrancy in EMP._transfer(address,address,uint256) (#1060-1080):
External calls:
- BP.protect(sender,recipient,amount) (#1062)
State variables written after the call(s):
- super._transfer(sender,marketingWallet,_fee) (#1075)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#584)
- _balances[recipient] = _balances[recipient].add(amount) (#585)
- super._transfer(sender,recipient,amount) (#1079)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#584)
- _balances[recipient] = _balances[recipient].add(amount) (#585)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in EMP._transfer(address,address,uint256) (#1060-1080):
External calls:
- BP.protect(sender,recipient,amount) (#1062)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#586)
- super._transfer(sender,recipient,amount) (#1079)
- Transfer(sender,recipient,amount) (#586)
- super._transfer(sender,marketingWallet,_fee) (#1075)
Apply the check-effects-interactions pattern.

Additional information: link

EMP.setBotProtectionDisableForever() (#1128-1131) compares to a boolean constant:
-require(bool)(BPDisabledForever == false) (#1129)
Remove the equality to the boolean constant.

Additional information: link

SafeMath.tryDiv(uint256,uint256) (#152-155) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#162-165) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#116-120) is never used and should be removed
ERC20._burn(address,uint256) (#619-627) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#302-305) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#282-285) is never used and should be removed
ERC20._setupDecimals(uint8) (#657-659) is never used and should be removed
Context._msgData() (#9-12) is never used and should be removed
SafeMath.mod(uint256,uint256) (#244-247) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#137-145) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#127-130) is never used and should be removed
Remove unused functions.

Additional information: link

Parameter EMP.setBPAddrss(address)._bp (#1121) is not in mixedCase
Parameter EMP.setTransferFeeRate(uint256,uint256)._sellFee (#1115) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#742) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#772) is not in mixedCase
Variable EMP.BP (#1036) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#740) is not in mixedCase
Parameter EMP.setManagerAddress(address)._m (#1107) is not in mixedCase
Parameter EMP.setTransferFeeRate(uint256,uint256)._buyFee (#1115) is not in mixedCase
Parameter EMP.setBpEnabled(bool)._enabled (#1125) is not in mixedCase
Parameter EMP.setMarketingAdrress(address)._marketing (#1111) is not in mixedCase
Function IUniswapV2Router01.WETH() (#816) is not in mixedCase
Variable EMP.BPDisabledForever (#1038) 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

EMP.inGameReward (#1026) should be constant
EMP.maxTotalSupply (#1025) should be constant
EMP.feeLimitation (#1032) should be constant
EMP.maxRewardPerCall (#1027) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#522-526)
setTransferFeeRate(uint256,uint256) should be declared external:
- EMP.setTransferFeeRate(uint256,uint256) (#1115-1119)
includeInFee(address) should be declared external:
- EMP.includeInFee(address) (#1103-1105)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#51-54)
decimals() should be declared external:
- ERC20.decimals() (#459-461)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#559-562)
symbol() should be declared external:
- ERC20.symbol() (#442-444)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#473-475)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#485-488)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#540-543)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#60-64)
name() should be declared external:
- ERC20.name() (#434-436)
excludeFromFee(address) should be declared external:
- EMP.excludeFromFee(address) (#1099-1101)
isExcludedFromFee(address) should be declared external:
- EMP.isExcludedFromFee(address) (#1095-1097)
totalSupply() should be declared external:
- ERC20.totalSupply() (#466-468)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#504-507)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#493-495)
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.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.

Contract has 0% buy tax and 1% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Last post in Twitter was more than 180 days ago


Unable to find Discord account


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


Token has a considerable age, but we're still unable to find its website


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for EMP

News for EMP