VicMove Token Logo

VIM [VicMove] Token

About VIM

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
[CoinMarketCap] alert: Smart contract of the following asset can be modified by the contract creator (for example: disable selling, change fees, mint new tokens, or transfer tokens). Please exercise caution before taking any action and DYOR.
white paper

VICMOVE is a web3 fitness and lifestyle mobile app with inbuilt NFT gaming and Social-fi elements where you can earn rewards in Crypto/NFTs just by movement like walking, running and cycling.

Laser Scorebeta Last Audit: 8 February 2023

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.


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

VIMToken._transfer(address,address,uint256) (VIMToken.sol#83-106) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(lastTrade[sender] < (block.timestamp - tradeCooldown),string(No consecutive sells allowed. Please wait.)) (VIMToken.sol#93)
Avoid relying on block.timestamp.

Additional information: link

VIMToken._transfer(address,address,uint256) (VIMToken.sol#83-106) compares to a boolean constant:
-liquidityPool[receiver] == true (VIMToken.sol#89)
VIMToken._transfer(address,address,uint256) (VIMToken.sol#83-106) compares to a boolean constant:
-liquidityPool[sender] == true (VIMToken.sol#86)
Remove the equality to the boolean constant.

Additional information: link

transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (BEP20.sol#58-61)
transferOwnership(address) should be declared external:
- BEPOwnable.transferOwnership(address) (BEPOwnable.sol#65-67)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (BEP20.sol#77-80)
balanceOf(address) should be declared external:
- BEP20.balanceOf(address) (BEP20.sol#46-48)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (BEP20.sol#94-106)
renounceOwnership() should be declared external:
- BEPOwnable.renounceOwnership() (BEPOwnable.sol#56-59)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (BEP20.sol#66-68)
symbol() should be declared external:
- BEP20Detailed.symbol() (BEP20Detailed.sol#37-39)
owner() should be declared external:
- BEPOwnable.owner() (BEPOwnable.sol#30-32)
totalSupply() should be declared external:
- BEP20.totalSupply() (BEP20.sol#39-41)
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)
Use the external attribute for functions never called from the contract.

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

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

Additional information: link

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
BEP20._burnFrom(address,uint256) (BEP20.sol#242-249) is never used and should be removed
BEP20._burn(address,uint256) (BEP20.sol#203-209) is never used and should be removed
BEPContext._msgData() (BEPContext.sol#23-26) is never used and should be removed
SafeMath.div(uint256,uint256,string) (SafeMath.sol#120-131) is never used and should be removed
SafeMath.div(uint256,uint256) (SafeMath.sol#103-105) 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

VIMToken.setMarketingPool(address)._marketingPool (VIMToken.sol#57) lacks a zero-check on :
- marketingPool = _marketingPool (VIMToken.sol#58)
Check that the address is not zero.

Additional information: link

Pragma version^0.8.0 (BEP20Detailed.sol#2) allows old versions
Pragma version^0.8.0 (SafeMath.sol#2) allows old versions
Pragma version^0.8.0 (VIMToken.sol#3) allows old versions
Pragma version^0.8.0 (BEP20.sol#2) allows old versions
Pragma version^0.8.0 (BEPOwnable.sol#2) allows old versions
Pragma version^0.8.0 (BEPContext.sol#2) allows old versions
Pragma version^0.8.0 (IBEP20.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

Parameter VIMToken.setBlacklist(address,bool)._status (VIMToken.sol#42) is not in mixedCase
Parameter VIMToken.setTaxes(uint8,uint8,uint8)._buyTax (VIMToken.sol#62) is not in mixedCase
Parameter VIMToken.setMarketingPool(address)._marketingPool (VIMToken.sol#57) is not in mixedCase
Event VIMTokenchangeMarketingPool(address) (VIMToken.sol#27) is not in CapWords
Event VIMTokenchangeWhitelistTax(address,bool) (VIMToken.sol#28) is not in CapWords
Parameter VIMToken.setBlacklist(address,bool)._wallet (VIMToken.sol#42) is not in mixedCase
Event VIMTokenchangeTax(uint8,uint8,uint8) (VIMToken.sol#25) is not in CapWords
Parameter VIMToken.setTaxes(uint8,uint8,uint8)._transferTax (VIMToken.sol#62) is not in mixedCase
Parameter VIMToken.setCooldownForTrades(uint8)._tradeCooldown (VIMToken.sol#47) is not in mixedCase
Parameter VIMToken.setLiquidityPoolStatus(address,bool)._lpAddress (VIMToken.sol#52) is not in mixedCase
Event VIMTokenchangeBlacklist(address,bool) (VIMToken.sol#23) is not in CapWords
Parameter VIMToken.setTaxes(uint8,uint8,uint8)._sellTax (VIMToken.sol#62) is not in mixedCase
Parameter VIMToken.setWhitelist(address,bool)._status (VIMToken.sol#76) is not in mixedCase
Parameter VIMToken.setLiquidityPoolStatus(address,bool)._status (VIMToken.sol#52) is not in mixedCase
Parameter VIMToken.setWhitelist(address,bool)._address (VIMToken.sol#76) is not in mixedCase
Event VIMTokenchangeLiquidityPoolStatus(address,bool) (VIMToken.sol#26) is not in CapWords
Event VIMTokenchangeCooldown(uint8) (VIMToken.sol#24) is not in CapWords
Follow the Solidity naming convention.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity 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.


Token is deployed only at one blockchain

Contract has 0% buy tax and 3% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Youtube account


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for VIM

News for VIM