Sport Move Token Logo

SPORT [Sport Move] Token

About SPORT

Listings

Token 23 months
white paper

SPORTMOVE (SPORT) has the sole purpose of encouraging people to change their sedentary routines to have a more active and healthy life.
Let's revolutionize and embrace web 3 technology to our advantage, offering a perfect combination of tools like NFT games and collections, global currency and cash rewards, that's right! REWARD for playing sports! World Cup-focused NFTs In Qatar, ✅KYC+AUDIT, ✅CMC and CG in process,✅ CERTIK and CEX coming soon.💰Fees: 0% BUY and SELL

Laser Scorebeta Last Audit: 26 May 2022

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


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


Contract ownership is not renounced (belongs to a wallet)

SportMove.setMarketingPool(address)._marketingPool (Sport.sol#55) lacks a zero-check on :
- marketingPool = _marketingPool (Sport.sol#56)
Check that the address is not zero.

Additional information: link

SportMove._transfer(address,address,uint256) (Sport.sol#81-104) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(lastTrade[sender] < (block.timestamp - tradeCooldown),string(No consecutive sells allowed. Please wait.)) (Sport.sol#91)
Avoid relying on block.timestamp.

Additional information: link

SportMove._transfer(address,address,uint256) (Sport.sol#81-104) compares to a boolean constant:
-liquidityPool[sender] == true (Sport.sol#84)
SportMove._transfer(address,address,uint256) (Sport.sol#81-104) compares to a boolean constant:
-liquidityPool[receiver] == true (Sport.sol#87)
Remove the equality to the boolean constant.

Additional information: link

BEP20._burn(address,uint256) (BEP20.sol#203-209) is never used and should be removed
BEP20._burnFrom(address,uint256) (BEP20.sol#242-249) is never used and should be removed
BEPContext._msgData() (BEPContext.sol#23-26) is never used and should be removed
SafeMath.div(uint256,uint256) (SafeMath.sol#103-105) is never used and should be removed
SafeMath.div(uint256,uint256,string) (SafeMath.sol#120-131) is never used and should be removed
SafeMath.mul(uint256,uint256) (SafeMath.sol#79-90) is never used and should be removed
SafeMath.sub(uint256,uint256) (SafeMath.sol#44-46) is never used and should be removed
Remove unused functions.

Additional information: link

BEP20.allowance(address,address).owner (BEP20.sol#66) shadows:
- BEPOwnable.owner() (BEPOwnable.sol#30-32) (function)
BEP20._approve(address,address,uint256).owner (BEP20.sol#225) shadows:
- BEPOwnable.owner() (BEPOwnable.sol#30-32) (function)
Rename the local variables that shadow another component.

Additional information: link

Redundant expression "this (BEPContext.sol#24)" inBEPContext (BEPContext.sol#14-28)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Pragma version^0.8.0 (BEP20.sol#2) allows old versions
Pragma version^0.8.0 (BEP20Detailed.sol#2) allows old versions
Pragma version^0.8.0 (BEPContext.sol#2) allows old versions
Pragma version^0.8.0 (BEPOwnable.sol#2) allows old versions
Pragma version^0.8.0 (IBEP20.sol#2) allows old versions
Pragma version^0.8.0 (SafeMath.sol#2) allows old versions
Pragma version^0.8.0 (Sport.sol#2) allows old versions
solc-0.8.0 is not recommended for deployment
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

Event SportMovechangeBlacklist(address,bool) (Sport.sol#22) is not in CapWords
Event SportMovechangeCooldown(uint8) (Sport.sol#23) is not in CapWords
Event SportMovechangeTax(uint8,uint8,uint8) (Sport.sol#24) is not in CapWords
Event SportMovechangeLiquidityPoolStatus(address,bool) (Sport.sol#25) is not in CapWords
Event SportMovechangeMarketingPool(address) (Sport.sol#26) is not in CapWords
Event SportMovechangeWhitelistTax(address,bool) (Sport.sol#27) is not in CapWords
Parameter SportMove.setBlacklist(address,bool)._wallet (Sport.sol#40) is not in mixedCase
Parameter SportMove.setBlacklist(address,bool)._status (Sport.sol#40) is not in mixedCase
Parameter SportMove.setCooldownForTrades(uint8)._tradeCooldown (Sport.sol#45) is not in mixedCase
Parameter SportMove.setLiquidityPoolStatus(address,bool)._lpAddress (Sport.sol#50) is not in mixedCase
Parameter SportMove.setLiquidityPoolStatus(address,bool)._status (Sport.sol#50) is not in mixedCase
Parameter SportMove.setMarketingPool(address)._marketingPool (Sport.sol#55) is not in mixedCase
Parameter SportMove.setTaxes(uint8,uint8,uint8)._sellTax (Sport.sol#60) is not in mixedCase
Parameter SportMove.setTaxes(uint8,uint8,uint8)._buyTax (Sport.sol#60) is not in mixedCase
Parameter SportMove.setTaxes(uint8,uint8,uint8)._transferTax (Sport.sol#60) is not in mixedCase
Parameter SportMove.setWhitelist(address,bool)._address (Sport.sol#74) is not in mixedCase
Parameter SportMove.setWhitelist(address,bool)._status (Sport.sol#74) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

SportMove.constructor() (Sport.sol#29-37) uses literals with too many digits:
- totalTokens = 50000000 * 10 ** uint256(decimals()) (Sport.sol#30)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

totalSupply() should be declared external:
- BEP20.totalSupply() (BEP20.sol#39-41)
balanceOf(address) should be declared external:
- BEP20.balanceOf(address) (BEP20.sol#46-48)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (BEP20.sol#58-61)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (BEP20.sol#66-68)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (BEP20.sol#77-80)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (BEP20.sol#94-106)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (BEP20.sol#120-123)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (BEP20.sol#139-146)
name() should be declared external:
- BEP20Detailed.name() (BEP20Detailed.sol#29-31)
symbol() should be declared external:
- BEP20Detailed.symbol() (BEP20Detailed.sol#37-39)
owner() should be declared external:
- BEPOwnable.owner() (BEPOwnable.sol#30-32)
renounceOwnership() should be declared external:
- BEPOwnable.renounceOwnership() (BEPOwnable.sol#56-59)
transferOwnership(address) should be declared external:
- BEPOwnable.transferOwnership(address) (BEPOwnable.sol#65-67)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 0% buy tax and 96% sell tax.
Taxes are extremely high (over 30%)

Additional information: link


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


Token is deployed only at one blockchain


Token has only one trading pair

No disclosed threats


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 whitepaper link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


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


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

Additional information: link


Young tokens have high risks of scam / 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 SPORT

News for SPORT