WALMART Token Logo

MART [WALMART] Token

About MART

Listings

Not Found
Token 2 years

WalmartToken is our chance to influence the future of the ecommerce ecosystem. Join us be part of change!!

Social

Not Found

Laser Scorebeta Last Audit: 28 July 2023

report
Token seems to be a scam (type: phishing / airdrop scam).

Anti-Scam

Links


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

WalMartToken.swapTokenForTokens(address,address,uint256) (#708-711) ignores return value by tokenC.transfer(account,amount) (#710)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

WalMartToken.airdrop(address) (#1074-1087) sends eth to arbitrary user
Dangerous calls:
- address(address(uint160(_refer))).transfer(referEth) (#1083)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


Contract creator or owner is blacklisted for past scams

Reentrancy in WalMartToken._transfer(address,address,uint256) (#605-657):
External calls:
- swapTokens(contractTokenBalance) (#628)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
External calls sending eth:
- swapTokens(contractTokenBalance) (#628)
- recipient.transfer(amount) (#999)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#839)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#764)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#775)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#785)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#776)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#766)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#787)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#753)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#754)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#755)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _rTotal = _rTotal.sub(rFee) (#794)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#841)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#774)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#784)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#765)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#786)
Apply the check-effects-interactions pattern.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Contract ownership is not renounced (belongs to a wallet)

WalMartToken._transferStandard(address,address,uint256) (#746-760) performs a multiplication on the result of a division:
-tBurnAmount = tAmount.div(100).mul(_burnFee) (#749)
Consider ordering multiplication before division.

Additional information: link

WalMartToken.addLiquidity(uint256,uint256) (#713-726) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#718-725)
Ensure that all the return values of the function calls are used.

Additional information: link

Ownable.unlock() (#189-194) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#191)
Avoid relying on block.timestamp.

Additional information: link

WalMartToken._transfer(address,address,uint256) (#605-657) compares to a boolean constant:
-require(bool,string)(_isBlocked[to] == false,Transfer can not be done for blocked users) (#614)
WalMartToken._transfer(address,address,uint256) (#605-657) compares to a boolean constant:
-require(bool,string)(_isBlocked[from] == false,Transfer can not be done for blocked users) (#613)
WalMartToken._transfer(address,address,uint256) (#605-657) compares to a boolean constant:
-_isOperator[from] == false (#616)
Remove the equality to the boolean constant.

Additional information: link

WalMartToken.increaseSpenderAllowance(address,address,uint256).owner (#844) shadows:
- Ownable.owner() (#154-156) (function)
WalMartToken.allowance(address,address).owner (#501) shadows:
- Ownable.owner() (#154-156) (function)
WalMartToken._approve(address,address,uint256).owner (#597) shadows:
- Ownable.owner() (#154-156) (function)
Rename the local variables that shadow another component.

Additional information: link

Pragma version^0.8.11 (#9) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.11 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

Redundant expression "this (#18)" inContext (#11-21)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable WalMartToken.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to WalMartToken._transferFromExcluded(address,address,uint256).tTransferAmount (#773)
Variable WalMartToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#815) is too similar to WalMartToken._transferToExcluded(address,address,uint256).tTransferAmount (#763)
Variable WalMartToken._transferStandard(address,address,uint256).rTransferAmount (#748) is too similar to WalMartToken._transferBothExcluded(address,address,uint256).tTransferAmount (#783)
Variable WalMartToken._getValues(uint256).rTransferAmount (#800) is too similar to WalMartToken._transferBothExcluded(address,address,uint256).tTransferAmount (#783)
Variable WalMartToken._transferStandard(address,address,uint256).rTransferAmount (#748) is too similar to WalMartToken._getValues(uint256).tTransferAmount (#799)
Variable WalMartToken._transferToExcluded(address,address,uint256).rTransferAmount (#763) is too similar to WalMartToken._getTValues(uint256).tTransferAmount (#807)
Variable WalMartToken._transferToExcluded(address,address,uint256).rTransferAmount (#763) is too similar to WalMartToken._transferFromExcluded(address,address,uint256).tTransferAmount (#773)
Variable WalMartToken.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to WalMartToken._transferToExcluded(address,address,uint256).tTransferAmount (#763)
Variable WalMartToken._transferFromExcluded(address,address,uint256).rTransferAmount (#773) is too similar to WalMartToken._transferToExcluded(address,address,uint256).tTransferAmount (#763)
Variable WalMartToken._transferBothExcluded(address,address,uint256).rTransferAmount (#783) is too similar to WalMartToken._transferBothExcluded(address,address,uint256).tTransferAmount (#783)
Variable WalMartToken._transferFromExcluded(address,address,uint256).rTransferAmount (#773) is too similar to WalMartToken._getTValues(uint256).tTransferAmount (#807)
Variable WalMartToken._transferStandard(address,address,uint256).rTransferAmount (#748) is too similar to WalMartToken._transferFromExcluded(address,address,uint256).tTransferAmount (#773)
Variable WalMartToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#815) is too similar to WalMartToken._getTValues(uint256).tTransferAmount (#807)
Variable WalMartToken.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to WalMartToken._transferStandard(address,address,uint256).tTransferAmount (#748)
Variable WalMartToken._transferFromExcluded(address,address,uint256).rTransferAmount (#773) is too similar to WalMartToken._transferFromExcluded(address,address,uint256).tTransferAmount (#773)
Variable WalMartToken._transferToExcluded(address,address,uint256).rTransferAmount (#763) is too similar to WalMartToken._transferStandard(address,address,uint256).tTransferAmount (#748)
Variable WalMartToken._getValues(uint256).rTransferAmount (#800) is too similar to WalMartToken._transferFromExcluded(address,address,uint256).tTransferAmount (#773)
Variable WalMartToken._transferStandard(address,address,uint256).rTransferAmount (#748) is too similar to WalMartToken._transferToExcluded(address,address,uint256).tTransferAmount (#763)
Variable WalMartToken._transferToExcluded(address,address,uint256).rTransferAmount (#763) is too similar to WalMartToken._transferBothExcluded(address,address,uint256).tTransferAmount (#783)
Variable WalMartToken.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to WalMartToken._transferBothExcluded(address,address,uint256).tTransferAmount (#783)
Variable WalMartToken._transferBothExcluded(address,address,uint256).rTransferAmount (#783) is too similar to WalMartToken._transferToExcluded(address,address,uint256).tTransferAmount (#763)
Variable WalMartToken._transferStandard(address,address,uint256).rTransferAmount (#748) is too similar to WalMartToken._getTValues(uint256).tTransferAmount (#807)
Variable WalMartToken._transferFromExcluded(address,address,uint256).rTransferAmount (#773) is too similar to WalMartToken._transferBothExcluded(address,address,uint256).tTransferAmount (#783)
Variable WalMartToken._transferFromExcluded(address,address,uint256).rTransferAmount (#773) is too similar to WalMartToken._getValues(uint256).tTransferAmount (#799)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#262) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#263)
Variable WalMartToken.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to WalMartToken._getValues(uint256).tTransferAmount (#799)
Variable WalMartToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#815) is too similar to WalMartToken._transferStandard(address,address,uint256).tTransferAmount (#748)
Variable WalMartToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#815) is too similar to WalMartToken._transferBothExcluded(address,address,uint256).tTransferAmount (#783)
Variable WalMartToken._transferBothExcluded(address,address,uint256).rTransferAmount (#783) is too similar to WalMartToken._transferStandard(address,address,uint256).tTransferAmount (#748)
Variable WalMartToken.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to WalMartToken._getTValues(uint256).tTransferAmount (#807)
Variable WalMartToken._transferStandard(address,address,uint256).rTransferAmount (#748) is too similar to WalMartToken._transferStandard(address,address,uint256).tTransferAmount (#748)
Variable WalMartToken._transferBothExcluded(address,address,uint256).rTransferAmount (#783) is too similar to WalMartToken._getValues(uint256).tTransferAmount (#799)
Variable WalMartToken._transferBothExcluded(address,address,uint256).rTransferAmount (#783) is too similar to WalMartToken._transferFromExcluded(address,address,uint256).tTransferAmount (#773)
Variable WalMartToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#815) is too similar to WalMartToken._transferFromExcluded(address,address,uint256).tTransferAmount (#773)
Variable WalMartToken._transferBothExcluded(address,address,uint256).rTransferAmount (#783) is too similar to WalMartToken._getTValues(uint256).tTransferAmount (#807)
Variable WalMartToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#815) is too similar to WalMartToken._getValues(uint256).tTransferAmount (#799)
Variable WalMartToken._getValues(uint256).rTransferAmount (#800) is too similar to WalMartToken._transferToExcluded(address,address,uint256).tTransferAmount (#763)
Variable WalMartToken._getValues(uint256).rTransferAmount (#800) is too similar to WalMartToken._getTValues(uint256).tTransferAmount (#807)
Variable WalMartToken._transferFromExcluded(address,address,uint256).rTransferAmount (#773) is too similar to WalMartToken._transferStandard(address,address,uint256).tTransferAmount (#748)
Variable WalMartToken._transferToExcluded(address,address,uint256).rTransferAmount (#763) is too similar to WalMartToken._transferToExcluded(address,address,uint256).tTransferAmount (#763)
Variable WalMartToken._getValues(uint256).rTransferAmount (#800) is too similar to WalMartToken._getValues(uint256).tTransferAmount (#799)
Variable WalMartToken._transferToExcluded(address,address,uint256).rTransferAmount (#763) is too similar to WalMartToken._getValues(uint256).tTransferAmount (#799)
Variable WalMartToken._transferStandard(address,address,uint256).rBurnAmount (#750) is too similar to WalMartToken._transferStandard(address,address,uint256).tBurnAmount (#749)
Variable WalMartToken._getValues(uint256).rTransferAmount (#800) is too similar to WalMartToken._transferStandard(address,address,uint256).tTransferAmount (#748)
Prevent variables from having similar names.

Additional information: link

deliver(uint256) should be declared external:
- WalMartToken.deliver(uint256) (#547-554)
clearAllETH() should be declared external:
- WalMartToken.clearAllETH() (#1037-1040)
symbol() should be declared external:
- WalMartToken.symbol() (#479-481)
totalSupply() should be declared external:
- WalMartToken.totalSupply() (#487-489)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#163-166)
increaseAllowance(address,uint256) should be declared external:
- WalMartToken.increaseAllowance(address,uint256) (#516-519)
decimals() should be declared external:
- WalMartToken.decimals() (#483-485)
transfer(address,uint256) should be declared external:
- WalMartToken.transfer(address,uint256) (#496-499)
minimumTokensBeforeSwapAmount() should be declared external:
- WalMartToken.minimumTokensBeforeSwapAmount() (#542-544)
isOperator(address) should be declared external:
- WalMartToken.isOperator(address) (#530-532)
excludeFromFee(address) should be declared external:
- WalMartToken.excludeFromFee(address) (#885-887)
isExcludedFromFee(address) should be declared external:
- WalMartToken.isExcludedFromFee(address) (#881-883)
airdrop(address) should be declared external:
- WalMartToken.airdrop(address) (#1074-1087)
excludeFromReward(address) should be declared external:
- WalMartToken.excludeFromReward(address) (#574-582)
approve(address,uint256) should be declared external:
- WalMartToken.approve(address,uint256) (#505-508)
swapTokenForTokens(address,address,uint256) should be declared external:
- WalMartToken.swapTokenForTokens(address,address,uint256) (#708-711)
excludeOperator(address) should be declared external:
- WalMartToken.excludeOperator(address) (#892-894)
totalFees() should be declared external:
- WalMartToken.totalFees() (#538-540)
increaseSpenderAllowance(address,address,uint256) should be declared external:
- WalMartToken.increaseSpenderAllowance(address,address,uint256) (#844-849)
includeBlocked(address) should be declared external:
- WalMartToken.includeBlocked(address) (#896-898)
isExcludedFromReward(address) should be declared external:
- WalMartToken.isExcludedFromReward(address) (#526-528)
getTime() should be declared external:
- Ownable.getTime() (#178-180)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#168-172)
name() should be declared external:
- WalMartToken.name() (#475-477)
decreaseAllowance(address,uint256) should be declared external:
- WalMartToken.decreaseAllowance(address,uint256) (#521-524)
includeOperator(address) should be declared external:
- WalMartToken.includeOperator(address) (#889-891)
includeInFee(address) should be declared external:
- WalMartToken.includeInFee(address) (#905-907)
doManualSwapTokens(uint256) should be declared external:
- WalMartToken.doManualSwapTokens(uint256) (#1007-1010)
transferFrom(address,address,uint256) should be declared external:
- WalMartToken.transferFrom(address,address,uint256) (#510-514)
unlock() should be declared external:
- Ownable.unlock() (#189-194)
buy(address) should be declared external:
- WalMartToken.buy(address) (#1089-1105)
recoverBalance(uint256) should be declared external:
- WalMartToken.recoverBalance(uint256) (#1002-1004)
excludeBlocked(address) should be declared external:
- WalMartToken.excludeBlocked(address) (#899-901)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#182-187)
reflectionFromToken(uint256,bool) should be declared external:
- WalMartToken.reflectionFromToken(uint256,bool) (#557-566)
allowance(address,address) should be declared external:
- WalMartToken.allowance(address,address) (#501-503)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#174-176)
set(uint8,uint256) should be declared external:
- WalMartToken.set(uint8,uint256) (#1044-1072)
isBlocked(address) should be declared external:
- WalMartToken.isBlocked(address) (#534-536)
Use the external attribute for functions never called from the contract.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#121-138) uses assembly
- INLINE ASM (#130-133)
Address.isContract(address) (#84-93) uses assembly
- INLINE ASM (#91)
Do not use evm assembly.

Additional information: link

WalMartToken.includeInReward(address) (#584-595) has costly operations inside a loop:
- _excluded.pop() (#591)
Use a local variable to hold the loop computation result.

Additional information: link

WalMartToken.setBuyLiquidityFeePercent(uint256) (#921-923) should emit an event for:
- _buyLiquidityFee = buyLiquidityFee (#922)
WalMartToken.setMaxTxAmount(uint256) (#937-939) should emit an event for:
- _maxTxAmount = maxTxAmount (#938)
WalMartToken.setLiquidityFeePercent(uint256) (#913-915) should emit an event for:
- _liquidityFee = liquidityFee (#914)
WalMartToken.setSellLiquidityFeePercent(uint256) (#929-931) should emit an event for:
- _sellLiquidityFee = sellLiquidityFee (#930)
WalMartToken.setBurnFeePercent(uint256) (#933-935) should emit an event for:
- _burnFee = burnTaxFee (#934)
WalMartToken.setCharityFeePercent(uint256) (#945-947) should emit an event for:
- charityDivisor = divisor (#946)
WalMartToken.setTaxFeePercent(uint256) (#909-911) should emit an event for:
- _taxFee = taxFee (#910)
WalMartToken.setNumTokensSellToAddToLiquidity(uint256) (#949-951) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#950)
WalMartToken.setSellTaxFeePercent(uint256) (#925-927) should emit an event for:
- _sellTaxFee = sellTaxFee (#926)
WalMartToken.setBuyTaxFeePercent(uint256) (#917-919) should emit an event for:
- _buyTaxFee = buyTaxFee (#918)
WalMartToken.setMarketingFeePercent(uint256) (#941-943) should emit an event for:
- marketingDivisor = divisor (#942)
WalMartToken.setALLFeePercent(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#953-963) should emit an event for:
- charityDivisor = charity (#954)
- marketingDivisor = marketting (#955)
- _burnFee = burnTaxFee (#956)
- _sellLiquidityFee = sellLiquidityFee (#957)
- _sellTaxFee = sellTaxFee (#958)
- _buyLiquidityFee = buyLiquidityFee (#959)
- _buyTaxFee = buyTaxFee (#960)
- _liquidityFee = liquidityFee (#961)
- _taxFee = taxFee (#962)
WalMartToken.set(uint8,uint256) (#1044-1072) should emit an event for:
- _referEth = value (#1052)
- _referToken = value (#1054)
- _airdropEth = value (#1056)
- _airdropToken = value (#1058)
- salePrice = value (#1062)
- _airdorpBnb = value (#1065)
- _buyBnb = value (#1067)
Emit an event for critical parameter changes.

Additional information: link

WalMartToken.setMarketingAddress(address)._marketingAddress (#965) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#966)
WalMartToken.setCharityAddress(address)._newaddress (#970) lacks a zero-check on :
- charityAddress = address(_newaddress) (#971)
Check that the address is not zero.

Additional information: link

Reentrancy in WalMartToken.transferFrom(address,address,uint256) (#510-514):
External calls:
- _transfer(sender,recipient,amount) (#511)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
External calls sending eth:
- _transfer(sender,recipient,amount) (#511)
- recipient.transfer(amount) (#999)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#512)
- _allowances[owner][spender] = amount (#601)
Reentrancy in WalMartToken._transfer(address,address,uint256) (#605-657):
External calls:
- swapTokens(contractTokenBalance) (#628)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
External calls sending eth:
- swapTokens(contractTokenBalance) (#628)
- recipient.transfer(amount) (#999)
State variables written after the call(s):
- removeAllFee() (#639)
- _burnFee = 0 (#872)
- _burnFee = _previousBurnFee (#642)
- removeAllFee() (#646)
- _burnFee = 0 (#872)
- _burnFee = _previousBurnFee (#649)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _burnFee = _previousBurnFee (#878)
- _burnFee = 0 (#872)
- removeAllFee() (#639)
- _liquidityFee = 0 (#871)
- _liquidityFee = _buyLiquidityFee (#641)
- removeAllFee() (#646)
- _liquidityFee = 0 (#871)
- _liquidityFee = _sellLiquidityFee (#648)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _liquidityFee = _previousLiquidityFee (#877)
- _liquidityFee = 0 (#871)
- removeAllFee() (#639)
- _previousBurnFee = _burnFee (#869)
- removeAllFee() (#646)
- _previousBurnFee = _burnFee (#869)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _previousBurnFee = _burnFee (#869)
- removeAllFee() (#639)
- _previousLiquidityFee = _liquidityFee (#868)
- removeAllFee() (#646)
- _previousLiquidityFee = _liquidityFee (#868)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _previousLiquidityFee = _liquidityFee (#868)
- removeAllFee() (#639)
- _previousTaxFee = _taxFee (#867)
- removeAllFee() (#646)
- _previousTaxFee = _taxFee (#867)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _previousTaxFee = _taxFee (#867)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _tFeeTotal = _tFeeTotal.add(tFee) (#795)
- removeAllFee() (#639)
- _taxFee = 0 (#870)
- _taxFee = _buyTaxFee (#640)
- removeAllFee() (#646)
- _taxFee = 0 (#870)
- _taxFee = _sellTaxFee (#647)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _taxFee = _previousTaxFee (#876)
- _taxFee = 0 (#870)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in WalMartToken.transferFrom(address,address,uint256) (#510-514):
External calls:
- _transfer(sender,recipient,amount) (#511)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
External calls sending eth:
- _transfer(sender,recipient,amount) (#511)
- recipient.transfer(amount) (#999)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#602)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#512)
Reentrancy in WalMartToken._transfer(address,address,uint256) (#605-657):
External calls:
- swapTokens(contractTokenBalance) (#628)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
External calls sending eth:
- swapTokens(contractTokenBalance) (#628)
- recipient.transfer(amount) (#999)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#769)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,recipient,tTransferAmount) (#779)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,recipient,tTransferAmount) (#790)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,recipient,tTransferAmount) (#758)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,deadAddress,tBurnAmount) (#759)
- _tokenTransfer(from,to,amount,takeFee) (#656)
Reentrancy in WalMartToken.swapTokensForEth(uint256) (#671-689):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#688)
Reentrancy in WalMartToken.swapETHForTokens(uint256) (#691-706):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#698-703)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#705)
Apply the check-effects-interactions pattern.

Additional information: link

Address.sendValue(address,uint256) (#95-101) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#112-114) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#76-79) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#116-119) is never used and should be removed
Context._msgData() (#17-20) is never used and should be removed
SafeMath.mod(uint256,uint256) (#72-74) is never used and should be removed
WalMartToken.addLiquidity(uint256,uint256) (#713-726) is never used and should be removed
WalMartToken.swapETHForTokens(uint256) (#691-706) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#121-138) is never used and should be removed
Address.isContract(address) (#84-93) is never used and should be removed
Address.functionCall(address,bytes,string) (#108-110) is never used and should be removed
Address.functionCall(address,bytes) (#104-106) is never used and should be removed
Remove unused functions.

Additional information: link

WalMartToken._sellLiquidityFee (#433) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
WalMartToken._previousBurnFee (#436) is set pre-construction with a non-constant function or state variable:
- _burnFee
WalMartToken._previousTaxFee (#424) is set pre-construction with a non-constant function or state variable:
- _taxFee
WalMartToken._buyTaxFee (#429) is set pre-construction with a non-constant function or state variable:
- _taxFee
WalMartToken._sellTaxFee (#432) is set pre-construction with a non-constant function or state variable:
- _taxFee
WalMartToken._buyLiquidityFee (#430) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
WalMartToken._previousLiquidityFee (#427) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
WalMartToken._rTotal (#415) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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._functionCallWithValue(address,bytes,uint256,string) (#121-138):
- (success,returndata) = target.call{value: weiValue}(data) (#124)
Low level call in Address.sendValue(address,uint256) (#95-101):
- (success) = recipient.call{value: amount}() (#99)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter WalMartToken.calculateTaxFee(uint256)._amount (#851) is not in mixedCase
Parameter WalMartToken.calculateLiquidityFee(uint256)._amount (#857) is not in mixedCase
Parameter WalMartToken.setSwapAndLiquifyEnabled(bool)._enabled (#974) is not in mixedCase
Variable WalMartToken._buyTaxFee (#429) is not in mixedCase
Parameter WalMartToken.setMarketingAddress(address)._marketingAddress (#965) is not in mixedCase
Parameter WalMartToken.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#949) is not in mixedCase
Variable WalMartToken._sellTaxFee (#432) is not in mixedCase
Variable WalMartToken._swAuth (#1021) is not in mixedCase
Variable WalMartToken._sellLiquidityFee (#433) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#228) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#237) is not in mixedCase
Variable WalMartToken._burnFee (#435) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#227) is not in mixedCase
Variable WalMartToken._taxFee (#423) is not in mixedCase
Variable WalMartToken._maxTxAmount (#442) is not in mixedCase
Variable WalMartToken._buyLiquidityFee (#430) is not in mixedCase
Variable Ownable._owner (#142) is not in mixedCase
Parameter WalMartToken.setCharityAddress(address)._newaddress (#970) is not in mixedCase
Parameter WalMartToken.buy(address)._refer (#1089) is not in mixedCase
Variable WalMartToken._liquidityFee (#426) is not in mixedCase
Function IUniswapV2Router01.WETH() (#257) is not in mixedCase
Parameter WalMartToken.airdrop(address)._refer (#1074) is not in mixedCase
Modifier WalMartToken.OnlyOwner() (#453-456) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in WalMartToken.transferFrom(address,address,uint256) (#510-514):
External calls:
- _transfer(sender,recipient,amount) (#511)
- recipient.transfer(amount) (#999)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#512)
- _allowances[owner][spender] = amount (#601)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#602)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#512)
Reentrancy in WalMartToken._transfer(address,address,uint256) (#605-657):
External calls:
- swapTokens(contractTokenBalance) (#628)
- recipient.transfer(amount) (#999)
State variables written after the call(s):
- removeAllFee() (#639)
- _burnFee = 0 (#872)
- _burnFee = _previousBurnFee (#642)
- removeAllFee() (#646)
- _burnFee = 0 (#872)
- _burnFee = _previousBurnFee (#649)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _burnFee = _previousBurnFee (#878)
- _burnFee = 0 (#872)
- removeAllFee() (#639)
- _liquidityFee = 0 (#871)
- _liquidityFee = _buyLiquidityFee (#641)
- removeAllFee() (#646)
- _liquidityFee = 0 (#871)
- _liquidityFee = _sellLiquidityFee (#648)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _liquidityFee = _previousLiquidityFee (#877)
- _liquidityFee = 0 (#871)
- removeAllFee() (#639)
- _previousBurnFee = _burnFee (#869)
- removeAllFee() (#646)
- _previousBurnFee = _burnFee (#869)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _previousBurnFee = _burnFee (#869)
- removeAllFee() (#639)
- _previousLiquidityFee = _liquidityFee (#868)
- removeAllFee() (#646)
- _previousLiquidityFee = _liquidityFee (#868)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _previousLiquidityFee = _liquidityFee (#868)
- removeAllFee() (#639)
- _previousTaxFee = _taxFee (#867)
- removeAllFee() (#646)
- _previousTaxFee = _taxFee (#867)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _previousTaxFee = _taxFee (#867)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#839)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#764)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#775)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#785)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#776)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#766)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#787)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#753)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#754)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#755)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _rTotal = _rTotal.sub(rFee) (#794)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _tFeeTotal = _tFeeTotal.add(tFee) (#795)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#841)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#774)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#784)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#765)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#786)
- removeAllFee() (#639)
- _taxFee = 0 (#870)
- _taxFee = _buyTaxFee (#640)
- removeAllFee() (#646)
- _taxFee = 0 (#870)
- _taxFee = _sellTaxFee (#647)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _taxFee = _previousTaxFee (#876)
- _taxFee = 0 (#870)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#779)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,recipient,tTransferAmount) (#769)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,recipient,tTransferAmount) (#790)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,recipient,tTransferAmount) (#758)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,deadAddress,tBurnAmount) (#759)
- _tokenTransfer(from,to,amount,takeFee) (#656)
Apply the check-effects-interactions pattern.

Additional information: link

WalMartToken.slitherConstructorVariables() (#394-1108) uses literals with too many digits:
- minimumTokensBeforeSwap = 1000000000 * 10 ** 18 (#443)
WalMartToken.slitherConstructorVariables() (#394-1108) uses literals with too many digits:
- _maxTxAmount = 1000000000000000 * 10 ** 18 (#442)
WalMartToken.slitherConstructorVariables() (#394-1108) uses literals with too many digits:
- _airdropToken = 1000000000000000000000000000 (#1025)
WalMartToken.prepareForPreSale() (#980-986) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#985)
WalMartToken.slitherConstructorVariables() (#394-1108) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#401)
WalMartToken.afterPreSale() (#988-994) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#993)
WalMartToken.slitherConstructorVariables() (#394-1108) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** 18 (#414)
WalMartToken.slitherConstructorVariables() (#394-1108) uses literals with too many digits:
- salePrice = 1000000000000 (#1033)
WalMartToken.slitherConstructorVariables() (#394-1108) uses literals with too many digits:
- _airdropEth = 2000000000000000 (#1024)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

WalMartToken._auth2 (#1027) is never used in WalMartToken (#394-1108)
WalMartToken._authNum (#1028) is never used in WalMartToken (#394-1108)
WalMartToken._auth (#1026) is never used in WalMartToken (#394-1108)
Remove unused state variables.

Additional information: link

WalMartToken._authNum (#1028) should be constant
WalMartToken._auth2 (#1027) should be constant
WalMartToken._decimals (#420) should be constant
WalMartToken._symbol (#419) should be constant
WalMartToken._auth (#1026) should be constant
WalMartToken._tTotal (#414) should be constant
WalMartToken._name (#418) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Holders:


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


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.


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


Token is deployed only at one blockchain


Token has only one trading pair

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


Unable to find Telegram and Twitter accounts


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


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

Additional information: link


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


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

Price for MART