BitMove Pro Token Logo

BMOVE [BitMove Pro] Token

About BMOVE

Listings

Not Found
Token 18 months
white paper

👟 BitMove Pro is developed by experienced and specialized personnel in the field of Blockchain, Decentralized Finance (DeFi), and Smart Contract.

Social

Laser Scorebeta Last Audit: 29 May 2022

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

Anti-Scam

Links

BITMOVE._isExcluded (#446) is never initialized. It is used in:
- BITMOVE.balanceOf(address) (#557-560)
- BITMOVE.isExcludedFromReward(address) (#592-594)
- BITMOVE.deliver(uint256) (#648-655)
- BITMOVE._tokenTransfer(address,address,uint256,bool) (#861-877)
- BITMOVE._takeLiquidity(uint256) (#962-968)
BITMOVE._excluded (#447) is never initialized. It is used in:
- BITMOVE._getCurrentSupply() (#950-960)
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


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

Reentrancy in BITMOVE._transfer(address,address,uint256) (#683-731):
External calls:
- swapTokens(contractTokenBalance) (#711)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#818-824)
- buyBackTokens(balance.div(100)) (#719)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#836-841)
External calls sending eth:
- swapTokens(contractTokenBalance) (#711)
- recipient.transfer(amount) (#1040)
- buyBackTokens(balance.div(100)) (#719)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#836-841)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _liquidityFee = _previousLiquidityFee (#994)
- _liquidityFee = 0 (#989)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _rOwned[marketingWallet] = _rOwned[marketingWallet].add(rLiquidity) (#965)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#881)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#890)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#901)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#911)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#882)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#892)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#902)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#913)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _rTotal = _rTotal.sub(rFee) (#920)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#967)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#900)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#910)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#891)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#912)
- buyBackTokens(balance.div(100)) (#719)
- inSwapAndLiquify = true (#514)
- inSwapAndLiquify = false (#516)
Apply the check-effects-interactions pattern.

Additional information: link

BITMOVE.swapTokens(uint256) (#733-742) performs a multiplication on the result of a division:
-transferToAddressETH(marketingWallet,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#740)
Consider ordering multiplication before division.

Additional information: link

BITMOVE.addLiquidity(uint256,uint256) (#846-859) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#851-858)
Ensure that all the return values of the function calls are used.

Additional information: link

BITMOVE.allowance(address,address).owner (#567) shadows:
- Ownable.owner() (#180-182) (function)
BITMOVE._approve(address,address,uint256).owner (#675) shadows:
- Ownable.owner() (#180-182) (function)
Rename the local variables that shadow another component.

Additional information: link


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

BITMOVE.setCooldownStatus(bool,uint256) (#632-635) should emit an event for:
- cooldownTimerInterval = _interval (#634)
BITMOVE.setTaxFeePercent(uint256) (#1009-1011) should emit an event for:
- _taxFee = taxFee (#1010)
BITMOVE.setLiquidityFeePercent(uint256) (#1013-1015) should emit an event for:
- _liquidityFee = liquidityFee (#1014)
BITMOVE.setMarketingDivisor(uint256) (#1017-1019) should emit an event for:
- marketingDivisor = divisor (#1018)
BITMOVE.setNumTokensSellToAddToLiquidity(uint256) (#1021-1023) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#1022)
BITMOVE.setBuybackUpperLimit(uint256) (#1025-1027) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 9 (#1026)
Emit an event for critical parameter changes.

Additional information: link

BITMOVE.constructor(address)._marketingWallet (#519) lacks a zero-check on :
- marketingWallet = _marketingWallet (#530)
Check that the address is not zero.

Additional information: link

BITMOVE.swapTokensForEth(uint256) (#809-827) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (#813)
BITMOVE.swapTokensForEth(uint256) (#809-827) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#818-824)
BITMOVE.transferToAddressETH(address,uint256) (#1039-1041) has external calls inside a loop: recipient.transfer(amount) (#1040)
BITMOVE.swapETHForTokens(uint256) (#829-844) has external calls inside a loop: path[0] = uniswapV2Router.WETH() (#832)
BITMOVE.swapETHForTokens(uint256) (#829-844) has external calls inside a loop: uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#836-841)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in BITMOVE._transfer(address,address,uint256) (#683-731):
External calls:
- swapTokens(contractTokenBalance) (#711)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#818-824)
- buyBackTokens(balance.div(100)) (#719)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#836-841)
External calls sending eth:
- swapTokens(contractTokenBalance) (#711)
- recipient.transfer(amount) (#1040)
- buyBackTokens(balance.div(100)) (#719)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#836-841)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _previousLiquidityFee = _liquidityFee (#986)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _previousTaxFee = _taxFee (#985)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _tFeeTotal = _tFeeTotal.add(tFee) (#921)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _taxFee = _previousTaxFee (#993)
- _taxFee = 0 (#988)
Reentrancy in BITMOVE.constructor(address) (#519-539):
External calls:
- pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#523-524)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#528)
- _isExcludedFromFee[address(this)] = true (#529)
- isTimelockExempt[owner()] = true (#532)
- isTimelockExempt[address(this)] = true (#533)
- isTimelockExempt[DEAD] = true (#534)
- isTimelockExempt[pair] = true (#535)
- isTimelockExempt[address(uniswapV2Router)] = true (#536)
- marketingWallet = _marketingWallet (#530)
- uniswapV2Router = _uniswapV2Router (#526)
Reentrancy in BITMOVE.transferFrom(address,address,uint256) (#576-580):
External calls:
- _transfer(sender,recipient,amount) (#577)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#836-841)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#818-824)
External calls sending eth:
- _transfer(sender,recipient,amount) (#577)
- recipient.transfer(amount) (#1040)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#836-841)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#578)
- _allowances[owner][spender] = amount (#679)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BITMOVE._transfer(address,address,uint256) (#683-731):
External calls:
- swapTokens(contractTokenBalance) (#711)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#818-824)
- buyBackTokens(balance.div(100)) (#719)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#836-841)
External calls sending eth:
- swapTokens(contractTokenBalance) (#711)
- recipient.transfer(amount) (#1040)
- buyBackTokens(balance.div(100)) (#719)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#836-841)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#843)
- buyBackTokens(balance.div(100)) (#719)
- Transfer(sender,recipient,tTransferAmount) (#885)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- Transfer(sender,recipient,tTransferAmount) (#895)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- Transfer(sender,recipient,tTransferAmount) (#905)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- Transfer(sender,recipient,tTransferAmount) (#916)
- _tokenTransfer(from,to,amount,takeFee) (#730)
Reentrancy in BITMOVE.constructor(address) (#519-539):
External calls:
- pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#523-524)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#538)
Reentrancy in BITMOVE.swapETHForTokens(uint256) (#829-844):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#836-841)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#843)
Reentrancy in BITMOVE.swapTokensForEth(uint256) (#809-827):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#818-824)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#826)
Reentrancy in BITMOVE.transferFrom(address,address,uint256) (#576-580):
External calls:
- _transfer(sender,recipient,amount) (#577)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#836-841)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#818-824)
External calls sending eth:
- _transfer(sender,recipient,amount) (#577)
- recipient.transfer(amount) (#1040)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#836-841)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#680)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#578)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#215-220) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#217)
BITMOVE._transfer(address,address,uint256) (#683-731) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[from] < block.timestamp,Please wait for cooldown between sells) (#698)
BITMOVE.doSnipingSwapback(address) (#776-782) uses timestamp for comparisons
Dangerous comparisons:
- launchedTime < block.timestamp (#778)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#110-119) uses assembly
- INLINE ASM (#117)
Address._functionCallWithValue(address,bytes,uint256,string) (#147-164) uses assembly
- INLINE ASM (#156-159)
Do not use evm assembly.

Additional information: link

BITMOVE.lockTheSwap() (#513-517) has costly operations inside a loop:
- inSwapAndLiquify = true (#514)
BITMOVE.lockTheSwap() (#513-517) has costly operations inside a loop:
- inSwapAndLiquify = false (#516)
BITMOVE.removeAllFee() (#982-990) has costly operations inside a loop:
- _previousTaxFee = _taxFee (#985)
BITMOVE.removeAllFee() (#982-990) has costly operations inside a loop:
- _previousLiquidityFee = _liquidityFee (#986)
BITMOVE.removeAllFee() (#982-990) has costly operations inside a loop:
- _taxFee = 0 (#988)
BITMOVE.removeAllFee() (#982-990) has costly operations inside a loop:
- _liquidityFee = 0 (#989)
BITMOVE._reflectFee(uint256,uint256) (#919-922) has costly operations inside a loop:
- _rTotal = _rTotal.sub(rFee) (#920)
BITMOVE._reflectFee(uint256,uint256) (#919-922) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal.add(tFee) (#921)
BITMOVE.restoreAllFee() (#992-995) has costly operations inside a loop:
- _taxFee = _previousTaxFee (#993)
BITMOVE.restoreAllFee() (#992-995) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (#994)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#147-164) is never used and should be removed
Address.functionCall(address,bytes) (#130-132) is never used and should be removed
Address.functionCall(address,bytes,string) (#134-136) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#138-140) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#142-145) is never used and should be removed
Address.isContract(address) (#110-119) is never used and should be removed
Address.sendValue(address,uint256) (#121-127) is never used and should be removed
BITMOVE.addLiquidity(uint256,uint256) (#846-859) is never used and should be removed
Context._msgData() (#33-36) is never used and should be removed
SafeMath.mod(uint256,uint256) (#98-100) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#102-105) is never used and should be removed
Remove unused functions.

Additional information: link

BITMOVE._rTotal (#453) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
BITMOVE._previousTaxFee (#468) is set pre-construction with a non-constant function or state variable:
- _taxFee
BITMOVE._previousLiquidityFee (#471) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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

Low level call in Address.sendValue(address,uint256) (#121-127):
- (success) = recipient.call{value: amount}() (#125)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#147-164):
- (success,returndata) = target.call{value: weiValue}(data) (#150)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#259) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#260) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#276) is not in mixedCase
Function IUniswapV2Router01.WETH() (#297) is not in mixedCase
Parameter BITMOVE.setTimelockExempt(address[])._users (#608) is not in mixedCase
Parameter BITMOVE.verifyTimelockExempt(address)._user (#618) is not in mixedCase
Parameter BITMOVE.removeTimelockExempted(address)._user (#621) is not in mixedCase
Parameter BITMOVE.batchContestAirdrops(address[],uint256)._users (#625) is not in mixedCase
Parameter BITMOVE.batchContestAirdrops(address[],uint256)._amount (#625) is not in mixedCase
Parameter BITMOVE.setCooldownStatus(bool,uint256)._status (#632) is not in mixedCase
Parameter BITMOVE.setCooldownStatus(bool,uint256)._interval (#632) is not in mixedCase
Parameter BITMOVE.antisnipingEnable(bool)._status (#772) is not in mixedCase
Parameter BITMOVE.setBot(address)._address (#793) is not in mixedCase
Parameter BITMOVE.addBotted(address)._address (#797) is not in mixedCase
Parameter BITMOVE.isBot(address)._address (#801) is not in mixedCase
Parameter BITMOVE.deleteBot(address)._address (#805) is not in mixedCase
Parameter BITMOVE.calculateTaxFee(uint256)._amount (#970) is not in mixedCase
Parameter BITMOVE.calculateLiquidityFee(uint256)._amount (#976) is not in mixedCase
Parameter BITMOVE.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#1021) is not in mixedCase
Parameter BITMOVE.setSwapAndLiquifyEnabled(bool)._enabled (#1029) is not in mixedCase
Parameter BITMOVE.setBuyBackEnabled(bool)._enabled (#1034) is not in mixedCase
Variable BITMOVE._taxFee (#467) is not in mixedCase
Variable BITMOVE._liquidityFee (#470) is not in mixedCase
Variable BITMOVE.DEAD (#475) is not in mixedCase
Variable BITMOVE._snipingBots (#480) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#34)" inContext (#28-37)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in BITMOVE._transfer(address,address,uint256) (#683-731):
External calls:
- swapTokens(contractTokenBalance) (#711)
- recipient.transfer(amount) (#1040)
External calls sending eth:
- swapTokens(contractTokenBalance) (#711)
- recipient.transfer(amount) (#1040)
- buyBackTokens(balance.div(100)) (#719)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#836-841)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _liquidityFee = _previousLiquidityFee (#994)
- _liquidityFee = 0 (#989)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _previousLiquidityFee = _liquidityFee (#986)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _previousTaxFee = _taxFee (#985)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _rOwned[marketingWallet] = _rOwned[marketingWallet].add(rLiquidity) (#965)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#881)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#890)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#901)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#911)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#882)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#892)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#902)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#913)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _rTotal = _rTotal.sub(rFee) (#920)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _tFeeTotal = _tFeeTotal.add(tFee) (#921)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#967)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#900)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#910)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#891)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#912)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- _taxFee = _previousTaxFee (#993)
- _taxFee = 0 (#988)
- buyBackTokens(balance.div(100)) (#719)
- inSwapAndLiquify = true (#514)
- inSwapAndLiquify = false (#516)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#843)
- buyBackTokens(balance.div(100)) (#719)
- Transfer(sender,recipient,tTransferAmount) (#885)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- Transfer(sender,recipient,tTransferAmount) (#895)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- Transfer(sender,recipient,tTransferAmount) (#905)
- _tokenTransfer(from,to,amount,takeFee) (#730)
- Transfer(sender,recipient,tTransferAmount) (#916)
- _tokenTransfer(from,to,amount,takeFee) (#730)
Reentrancy in BITMOVE.transferFrom(address,address,uint256) (#576-580):
External calls:
- _transfer(sender,recipient,amount) (#577)
- recipient.transfer(amount) (#1040)
External calls sending eth:
- _transfer(sender,recipient,amount) (#577)
- recipient.transfer(amount) (#1040)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#836-841)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#578)
- _allowances[owner][spender] = amount (#679)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#680)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#578)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#302) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#303)
Variable BITMOVE._getValues(uint256).rTransferAmount (#926) is too similar to BITMOVE._transferToExcluded(address,address,uint256).tTransferAmount (#889)
Variable BITMOVE._transferFromExcluded(address,address,uint256).rTransferAmount (#899) is too similar to BITMOVE._transferStandard(address,address,uint256).tTransferAmount (#880)
Variable BITMOVE._getValues(uint256).rTransferAmount (#926) is too similar to BITMOVE._transferFromExcluded(address,address,uint256).tTransferAmount (#899)
Variable BITMOVE._transferFromExcluded(address,address,uint256).rTransferAmount (#899) is too similar to BITMOVE._transferBothExcluded(address,address,uint256).tTransferAmount (#909)
Variable BITMOVE.reflectionFromToken(uint256,bool).rTransferAmount (#664) is too similar to BITMOVE._transferStandard(address,address,uint256).tTransferAmount (#880)
Variable BITMOVE._transferStandard(address,address,uint256).rTransferAmount (#880) is too similar to BITMOVE._transferStandard(address,address,uint256).tTransferAmount (#880)
Variable BITMOVE._transferBothExcluded(address,address,uint256).rTransferAmount (#909) is too similar to BITMOVE._transferBothExcluded(address,address,uint256).tTransferAmount (#909)
Variable BITMOVE.reflectionFromToken(uint256,bool).rTransferAmount (#664) is too similar to BITMOVE._transferBothExcluded(address,address,uint256).tTransferAmount (#909)
Variable BITMOVE._transferStandard(address,address,uint256).rTransferAmount (#880) is too similar to BITMOVE._transferBothExcluded(address,address,uint256).tTransferAmount (#909)
Variable BITMOVE._transferToExcluded(address,address,uint256).rTransferAmount (#889) is too similar to BITMOVE._transferStandard(address,address,uint256).tTransferAmount (#880)
Variable BITMOVE._transferToExcluded(address,address,uint256).rTransferAmount (#889) is too similar to BITMOVE._transferBothExcluded(address,address,uint256).tTransferAmount (#909)
Variable BITMOVE._getValues(uint256).rTransferAmount (#926) is too similar to BITMOVE._getTValues(uint256).tTransferAmount (#933)
Variable BITMOVE._transferFromExcluded(address,address,uint256).rTransferAmount (#899) is too similar to BITMOVE._transferToExcluded(address,address,uint256).tTransferAmount (#889)
Variable BITMOVE.reflectionFromToken(uint256,bool).rTransferAmount (#664) is too similar to BITMOVE._transferToExcluded(address,address,uint256).tTransferAmount (#889)
Variable BITMOVE._transferFromExcluded(address,address,uint256).rTransferAmount (#899) is too similar to BITMOVE._transferFromExcluded(address,address,uint256).tTransferAmount (#899)
Variable BITMOVE.reflectionFromToken(uint256,bool).rTransferAmount (#664) is too similar to BITMOVE._transferFromExcluded(address,address,uint256).tTransferAmount (#899)
Variable BITMOVE._transferToExcluded(address,address,uint256).rTransferAmount (#889) is too similar to BITMOVE._transferToExcluded(address,address,uint256).tTransferAmount (#889)
Variable BITMOVE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#941) is too similar to BITMOVE._transferBothExcluded(address,address,uint256).tTransferAmount (#909)
Variable BITMOVE._getValues(uint256).rTransferAmount (#926) is too similar to BITMOVE._transferStandard(address,address,uint256).tTransferAmount (#880)
Variable BITMOVE._transferToExcluded(address,address,uint256).rTransferAmount (#889) is too similar to BITMOVE._transferFromExcluded(address,address,uint256).tTransferAmount (#899)
Variable BITMOVE._getValues(uint256).rTransferAmount (#926) is too similar to BITMOVE._transferBothExcluded(address,address,uint256).tTransferAmount (#909)
Variable BITMOVE.reflectionFromToken(uint256,bool).rTransferAmount (#664) is too similar to BITMOVE._getTValues(uint256).tTransferAmount (#933)
Variable BITMOVE._transferStandard(address,address,uint256).rTransferAmount (#880) is too similar to BITMOVE._transferFromExcluded(address,address,uint256).tTransferAmount (#899)
Variable BITMOVE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#941) is too similar to BITMOVE._getValues(uint256).tTransferAmount (#925)
Variable BITMOVE._transferBothExcluded(address,address,uint256).rTransferAmount (#909) is too similar to BITMOVE._transferFromExcluded(address,address,uint256).tTransferAmount (#899)
Variable BITMOVE._transferStandard(address,address,uint256).rTransferAmount (#880) is too similar to BITMOVE._getValues(uint256).tTransferAmount (#925)
Variable BITMOVE._transferBothExcluded(address,address,uint256).rTransferAmount (#909) is too similar to BITMOVE._getValues(uint256).tTransferAmount (#925)
Variable BITMOVE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#941) is too similar to BITMOVE._transferStandard(address,address,uint256).tTransferAmount (#880)
Variable BITMOVE._getValues(uint256).rTransferAmount (#926) is too similar to BITMOVE._getValues(uint256).tTransferAmount (#925)
Variable BITMOVE._transferBothExcluded(address,address,uint256).rTransferAmount (#909) is too similar to BITMOVE._transferStandard(address,address,uint256).tTransferAmount (#880)
Variable BITMOVE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#941) is too similar to BITMOVE._transferToExcluded(address,address,uint256).tTransferAmount (#889)
Variable BITMOVE._transferStandard(address,address,uint256).rTransferAmount (#880) is too similar to BITMOVE._transferToExcluded(address,address,uint256).tTransferAmount (#889)
Variable BITMOVE._transferToExcluded(address,address,uint256).rTransferAmount (#889) is too similar to BITMOVE._getValues(uint256).tTransferAmount (#925)
Variable BITMOVE._transferStandard(address,address,uint256).rTransferAmount (#880) is too similar to BITMOVE._getTValues(uint256).tTransferAmount (#933)
Variable BITMOVE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#941) is too similar to BITMOVE._getTValues(uint256).tTransferAmount (#933)
Variable BITMOVE._transferBothExcluded(address,address,uint256).rTransferAmount (#909) is too similar to BITMOVE._transferToExcluded(address,address,uint256).tTransferAmount (#889)
Variable BITMOVE._transferBothExcluded(address,address,uint256).rTransferAmount (#909) is too similar to BITMOVE._getTValues(uint256).tTransferAmount (#933)
Variable BITMOVE._transferFromExcluded(address,address,uint256).rTransferAmount (#899) is too similar to BITMOVE._getValues(uint256).tTransferAmount (#925)
Variable BITMOVE._transferToExcluded(address,address,uint256).rTransferAmount (#889) is too similar to BITMOVE._getTValues(uint256).tTransferAmount (#933)
Variable BITMOVE._transferFromExcluded(address,address,uint256).rTransferAmount (#899) is too similar to BITMOVE._getTValues(uint256).tTransferAmount (#933)
Variable BITMOVE.reflectionFromToken(uint256,bool).rTransferAmount (#664) is too similar to BITMOVE._getValues(uint256).tTransferAmount (#925)
Variable BITMOVE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#941) is too similar to BITMOVE._transferFromExcluded(address,address,uint256).tTransferAmount (#899)
Prevent variables from having similar names.

Additional information: link

BITMOVE.slitherConstructorVariables() (#434-1046) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#449)
BITMOVE.slitherConstructorVariables() (#434-1046) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#475)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BITMOVE.DEAD (#475) should be constant
BITMOVE._decimals (#461) should be constant
BITMOVE._name (#459) should be constant
BITMOVE._symbol (#460) should be constant
BITMOVE._tTotal (#452) should be constant
BITMOVE.antiwhale (#487) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#189-192)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#194-198)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#200-202)
getTime() should be declared external:
- Ownable.getTime() (#204-206)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#208-213)
unlock() should be declared external:
- Ownable.unlock() (#215-220)
name() should be declared external:
- BITMOVE.name() (#541-543)
symbol() should be declared external:
- BITMOVE.symbol() (#545-547)
decimals() should be declared external:
- BITMOVE.decimals() (#549-551)
totalSupply() should be declared external:
- BITMOVE.totalSupply() (#553-555)
transfer(address,uint256) should be declared external:
- BITMOVE.transfer(address,uint256) (#562-565)
allowance(address,address) should be declared external:
- BITMOVE.allowance(address,address) (#567-569)
approve(address,uint256) should be declared external:
- BITMOVE.approve(address,uint256) (#571-574)
transferFrom(address,address,uint256) should be declared external:
- BITMOVE.transferFrom(address,address,uint256) (#576-580)
increaseAllowance(address,uint256) should be declared external:
- BITMOVE.increaseAllowance(address,uint256) (#582-585)
decreaseAllowance(address,uint256) should be declared external:
- BITMOVE.decreaseAllowance(address,uint256) (#587-590)
isExcludedFromReward(address) should be declared external:
- BITMOVE.isExcludedFromReward(address) (#592-594)
totalFees() should be declared external:
- BITMOVE.totalFees() (#596-598)
minimumTokensBeforeSwapAmount() should be declared external:
- BITMOVE.minimumTokensBeforeSwapAmount() (#600-602)
buyBackUpperLimitAmount() should be declared external:
- BITMOVE.buyBackUpperLimitAmount() (#604-606)
verifyTimelockExempt(address) should be declared external:
- BITMOVE.verifyTimelockExempt(address) (#618-620)
batchContestAirdrops(address[],uint256) should be declared external:
- BITMOVE.batchContestAirdrops(address[],uint256) (#625-629)
setCooldownStatus(bool,uint256) should be declared external:
- BITMOVE.setCooldownStatus(bool,uint256) (#632-635)
deliver(uint256) should be declared external:
- BITMOVE.deliver(uint256) (#648-655)
reflectionFromToken(uint256,bool) should be declared external:
- BITMOVE.reflectionFromToken(uint256,bool) (#658-667)
checkAnyBuy(address) should be declared external:
- BITMOVE.checkAnyBuy(address) (#764-766)
checkBuyBlock(address) should be declared external:
- BITMOVE.checkBuyBlock(address) (#768-770)
isExcludedFromFee(address) should be declared external:
- BITMOVE.isExcludedFromFee(address) (#997-999)
excludeFromFee(address) should be declared external:
- BITMOVE.excludeFromFee(address) (#1001-1003)
includeInFee(address) should be declared external:
- BITMOVE.includeInFee(address) (#1005-1007)
setSwapAndLiquifyEnabled(bool) should be declared external:
- BITMOVE.setSwapAndLiquifyEnabled(bool) (#1029-1032)
setBuyBackEnabled(bool) should be declared external:
- BITMOVE.setBuyBackEnabled(bool) (#1034-1037)
Use the external attribute for functions never called from the contract.

Additional information: link


Contract ownership is semi-renounced (passed to a contract)

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Average 30d PancakeSwap liquidity is low.


Token is deployed only at one blockchain


Token has only one trading pair


Average 30d PancakeSwap volume is low.


Average 30d number of PancakeSwap swaps is low.

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


Unable to find Blog account (Reddit or Medium)


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 contract audit


Unable to find audit 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


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


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

Additional information: link


Token has no active CoinMarketCap listing / rank


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


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death

Price for BMOVE

News for BMOVE