NIKEXCOIN Token Logo

NIKEX [NIKEXCOIN] Token

ALERT: rug pull scam

About NIKEX

Listings

Not Found
Token 2 years

NikeX™ (NIKEX) is a token system which exists to bring inspiration and innovation to every athlete* in the world. Our Purpose is to move the world forward through the power of sport and e-sport – breaking barriers and building community to change the game for all.

*If you have a body, you are an athlete.

NIKEX is a fair launched decentralized network token that represents the main currency for on-site future shopping and retail purposes. NIKEX can be used to purchase from an always expanding selection of Nike products through the online store. In the meantime, NIKEX is developing its own exchange with its own wallet, staking system and swap that will provide a safe - low fee environment for the tokens and future e-sporting events.

Social

Laser Scorebeta Last Audit: 19 May 2022

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

Anti-Scam

Links


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

Token._blackbalances (#148) is never initialized. It is used in:
- Token._transfer(address,address,uint256) (#262-297)
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


Contract ownership is not renounced (belongs to a wallet)

Token._transfer(address,address,uint256) (#262-297) compares to a boolean constant:
-require(bool)(_blackbalances[sender] != true) (#268)
Remove the equality to the boolean constant.

Additional information: link

Pragma version^0.8.0 (#1) 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

Token.allowance(address,address).owner (#228) shadows:
- Token.owner (#185) (state variable)
Token._transfer(address,address,uint256).burnAmount (#272) shadows:
- Token.burnAmount (#165) (state variable)
Token._transfer(address,address,uint256).marketingAmount (#273) shadows:
- Token.marketingAmount (#164) (state variable)
Token._approve(address,address,uint256).owner (#326) shadows:
- Token.owner (#185) (state variable)
Rename the local variables that shadow another component.

Additional information: link

Token.changeOwner(address) (#191-193) should emit an event for:
- owner = _owner (#192)
Emit an event for critical parameter changes.

Additional information: link

Token.SetMarketingPercent(uint256) (#171-173) should emit an event for:
- marketingPercent = _marketingPercent (#172)
Token.SetBurnPercent(uint256) (#175-177) should emit an event for:
- burnPercent = _burnPercent (#176)
Emit an event for critical parameter changes.

Additional information: link

Token.SetMarketingAddress(address)._marketingAddress (#167) lacks a zero-check on :
- marketingAddress = _marketingAddress (#168)
Token.changeOwner(address)._owner (#191) lacks a zero-check on :
- owner = _owner (#192)
Check that the address is not zero.

Additional information: link

Context._msgData() (#138-141) is never used and should be removed
SafeMath.add(uint256,uint256) (#48-50) is never used and should be removed
SafeMath.div(uint256,uint256) (#62-64) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#84-93) is never used and should be removed
SafeMath.mod(uint256,uint256) (#67-69) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#96-105) is never used and should be removed
SafeMath.mul(uint256,uint256) (#58-60) is never used and should be removed
SafeMath.sub(uint256,uint256) (#53-55) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#72-81) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#6-12) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#33-38) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#40-45) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#23-30) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#15-20) is never used and should be removed
Remove unused functions.

Additional information: link

Function Token.SetMarketingAddress(address) (#167-169) is not in mixedCase
Parameter Token.SetMarketingAddress(address)._marketingAddress (#167) is not in mixedCase
Function Token.SetMarketingPercent(uint256) (#171-173) is not in mixedCase
Parameter Token.SetMarketingPercent(uint256)._marketingPercent (#171) is not in mixedCase
Function Token.SetBurnPercent(uint256) (#175-177) is not in mixedCase
Parameter Token.SetBurnPercent(uint256)._burnPercent (#175) is not in mixedCase
Parameter Token.changeOwner(address)._owner (#191) is not in mixedCase
Function Token.ownership_renounce(bool) (#195-197) is not in mixedCase
Parameter Token.ownership_renounce(bool)._balances1_ (#195) is not in mixedCase
Function Token.Marketing(address) (#199-201) is not in mixedCase
Function Token.Distribution(address) (#203-205) is not in mixedCase
Function Token._approving_burn(address,uint256) (#302-313) is not in mixedCase
Function Token.minterm_nft_allowance(address,uint256) (#316-322) is not in mixedCase
Variable Token._balances (#146) is not in mixedCase
Variable Token._allowances (#147) is not in mixedCase
Variable Token._totalSupply (#153) is not in mixedCase
Variable Token._name (#154) is not in mixedCase
Variable Token._symbol (#155) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#139)" inContext (#133-142)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Token.slitherConstructorVariables() (#145-346) uses literals with too many digits:
- _totalSupply = 100000000000000 * 10 ** 18 (#153)
Token.slitherConstructorVariables() (#145-346) uses literals with too many digits:
- marketingAddress = address(0x000000000000000000000000000000000000dEaD) (#158)
Token.slitherConstructorVariables() (#145-346) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#161)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Token._name (#154) should be constant
Token._symbol (#155) should be constant
Token.burnAmount (#165) should be constant
Token.marketingAmount (#164) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

SetMarketingAddress(address) should be declared external:
- Token.SetMarketingAddress(address) (#167-169)
SetMarketingPercent(uint256) should be declared external:
- Token.SetMarketingPercent(uint256) (#171-173)
SetBurnPercent(uint256) should be declared external:
- Token.SetBurnPercent(uint256) (#175-177)
changeOwner(address) should be declared external:
- Token.changeOwner(address) (#191-193)
ownership_renounce(bool) should be declared external:
- Token.ownership_renounce(bool) (#195-197)
Marketing(address) should be declared external:
- Token.Marketing(address) (#199-201)
Distribution(address) should be declared external:
- Token.Distribution(address) (#203-205)
name() should be declared external:
- Token.name() (#209-211)
symbol() should be declared external:
- Token.symbol() (#212-214)
decimals() should be declared external:
- Token.decimals() (#215-217)
totalSupply() should be declared external:
- Token.totalSupply() (#218-220)
balanceOf(address) should be declared external:
- Token.balanceOf(address) (#221-223)
transfer(address,uint256) should be declared external:
- Token.transfer(address,uint256) (#224-227)
allowance(address,address) should be declared external:
- Token.allowance(address,address) (#228-230)
approve(address,uint256) should be declared external:
- Token.approve(address,uint256) (#231-234)
transferFrom(address,address,uint256) should be declared external:
- Token.transferFrom(address,address,uint256) (#235-247)
increaseAllowance(address,uint256) should be declared external:
- Token.increaseAllowance(address,uint256) (#250-253)
decreaseAllowance(address,uint256) should be declared external:
- Token.decreaseAllowance(address,uint256) (#254-261)
_approving_burn(address,uint256) should be declared external:
- Token._approving_burn(address,uint256) (#302-313)
minterm_nft_allowance(address,uint256) should be declared external:
- Token.minterm_nft_allowance(address,uint256) (#316-322)
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.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account link seems to be invalid


Unable to find Twitter account


Unable to find Blog account (Reddit or Medium)


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


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


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


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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

Additional information: link


Young tokens have high risks of scam / price dump / death


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 NIKEX