ValorFoundation Token Logo

Valor [ValorFoundation] Token

About Valor

Listings

Token 2 years
CoinMarketCap 2 years
white paper

Valor is a 100% cause-based utility project. Our sole purpose is to provide support in the form of financial assistance to Veteran causes in North America, United Kingdom and Australia/New Zealand. Valor also provides relief to the families of fallen Law Enforcement Officers and First Responders. Join us and make a difference!

Social

Laser Scorebeta Last Audit: 17 February 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

Reentrancy in ValorFoundation._transfer(address,address,uint256) (#674-686):
External calls:
- swapAndLiquify(swapThreshold,false) (#679)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#635-642)
External calls sending eth:
- swapAndLiquify(swapThreshold,false) (#679)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _rOwned[address(this)] = _rOwned[address(this)].add(rSecondary) (#591)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#708)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#715)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#709)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#732)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#724)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#725)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#717)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#734)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _rTotal = _rTotal.sub(rFee) (#587)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _tOwned[address(this)] = _tOwned[address(this)].add(tSecondary) (#593)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#731)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#723)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#716)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#733)
Reentrancy in ValorFoundation.ownerWithdrawCharityBNB(uint256) (#900-905):
External calls:
- (sent) = msg.sender.call{value: (amountWei)}() (#902)
State variables written after the call(s):
- totalCharityBNB -= amountWei (#904)
Reentrancy in ValorFoundation.ownerWithdrawMarketingBNB(uint256) (#894-899):
External calls:
- (sent) = msg.sender.call{value: (amountWei)}() (#896)
State variables written after the call(s):
- totalMarketingBNB -= amountWei (#898)
Reentrancy in ValorFoundation.ownerWithdrawProjectOperationsBNB(uint256) (#906-911):
External calls:
- (sent) = msg.sender.call{value: (amountWei)}() (#908)
State variables written after the call(s):
- totalProjectOperationBNB -= amountWei (#910)
Apply the check-effects-interactions pattern.

Additional information: link

ValorFoundation.ownerWithdrawStrandedToken(address) (#818-822) ignores return value by token.transfer(msg.sender,token.balanceOf(address(this))) (#821)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

ValorFoundation.swapAndLiquify(uint8,bool).toSwap (#598) is written in both
toSwap = contractBalance (#608)
toSwap = liquidityBNBTokens + tokensLeft (#615)
Fix or remove the writes.

Additional information: link


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.

ValorFoundation.swapAndLiquify(uint8,bool) (#597-629) performs a multiplication on the result of a division:
-maxSwapSize = (30000000 * 10 ** 9) / 100 (#602)
-totalLiquidityTokens = toSwap * _taxes.liquidityTax / 100 (#611)
-toSwap = maxSwapSize (#604)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in ValorFoundation.ownerRemoveLPPercent(uint8) (#871-881):
External calls:
- _removeLiquidityPercent(LPPercent) (#875)
- lpToken.approve(address(_pancakeRouter),amount) (#661)
- _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (#662-670)
State variables written after the call(s):
- liquidityUnlockSeconds += fixedLPLockTime (#879)
Apply the check-effects-interactions pattern.

Additional information: link

ValorFoundation.addLiquidity(uint256,uint256) (#645-657) ignores return value by _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
ValorFoundation._removeLiquidityPercent(uint8) (#658-671) ignores return value by lpToken.approve(address(_pancakeRouter),amount) (#661)
ValorFoundation._removeLiquidityPercent(uint8) (#658-671) ignores return value by _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (#662-670)
Ensure that all the return values of the function calls are used.

Additional information: link

ValorFoundation.allowance(address,address).owner (#494) shadows:
- Ownable.owner() (#182-184) (function)
ValorFoundation._approve(address,address,uint256).owner (#519) shadows:
- Ownable.owner() (#182-184) (function)
Rename the local variables that shadow another component.

Additional information: link

ValorFoundation.ownerWithdrawMarketingBNB(uint256) (#894-899) should emit an event for:
- totalMarketingBNB -= amountWei (#898)
ValorFoundation.ownerWithdrawCharityBNB(uint256) (#900-905) should emit an event for:
- totalCharityBNB -= amountWei (#904)
ValorFoundation.ownerWithdrawProjectOperationsBNB(uint256) (#906-911) should emit an event for:
- totalProjectOperationBNB -= amountWei (#910)
Emit an event for critical parameter changes.

Additional information: link

ValorFoundation.ownerSetAirDropper(address)._airDropper (#804) lacks a zero-check on :
- airDropper = _airDropper (#805)
ValorFoundation.ownerUpdatePancakePair(address,address)._pancakePair (#856) lacks a zero-check on :
- _pancakePairAddress = _pancakePair (#857)
ValorFoundation.ownerUpdatePancakePair(address,address).pancakeRouter (#856) lacks a zero-check on :
- _pancakeRouterAddress = pancakeRouter (#858)
Check that the address is not zero.

Additional information: link

Reentrancy in ValorFoundation._transfer(address,address,uint256) (#674-686):
External calls:
- swapAndLiquify(swapThreshold,false) (#679)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#635-642)
External calls sending eth:
- swapAndLiquify(swapThreshold,false) (#679)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _previousReflectFee = _reflectFee (#576)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _previousSecondaryFee = _secondaryTax (#577)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _reflectFee = _previousReflectFee (#583)
- _reflectFee = 0 (#579)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _secondaryTax = _previousSecondaryFee (#584)
- _secondaryTax = 0 (#580)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _tFeeTotal = _tFeeTotal.add(tFee) (#588)
Reentrancy in ValorFoundation.constructor() (#456-468):
External calls:
- _pancakePairAddress = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#460)
State variables written after the call(s):
- _approve(address(this),address(_pancakeRouter),type()(uint256).max) (#461)
- _allowances[owner][spender] = amount (#523)
- excludeFromReward(address(_pancakePairAddress)) (#463)
- _excluded.push(account) (#774)
- excludeFromReward(address(burnWallet)) (#464)
- _excluded.push(account) (#774)
- excludeFromReward(address(_pancakePairAddress)) (#463)
- _isExcluded[account] = true (#773)
- excludeFromReward(address(burnWallet)) (#464)
- _isExcluded[account] = true (#773)
- _isExcludedFromFee[owner()] = _isExcludedFromFee[burnWallet] = _isExcludedFromFee[address(this)] = true (#466)
- excludeFromReward(address(_pancakePairAddress)) (#463)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#771)
- excludeFromReward(address(burnWallet)) (#464)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#771)
- _taxes.charityTax = _taxes.liquidityTax = _taxes.marketingTax = _taxes.projectOperationTax = 25 (#467)
Reentrancy in ValorFoundation.ownerReleaseAllLP() (#861-869):
External calls:
- _removeLiquidityPercent(100) (#864)
- lpToken.approve(address(_pancakeRouter),amount) (#661)
- _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (#662-670)
State variables written after the call(s):
- totalMarketingBNB += newBNB (#867)
Reentrancy in ValorFoundation.ownerRemoveLPPercent(uint8) (#871-881):
External calls:
- _removeLiquidityPercent(LPPercent) (#875)
- lpToken.approve(address(_pancakeRouter),amount) (#661)
- _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (#662-670)
State variables written after the call(s):
- totalMarketingBNB += newBNB (#878)
Reentrancy in ValorFoundation.swapAndLiquify(uint8,bool) (#597-629):
External calls:
- swapTokensForBNB(toSwap) (#617)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#635-642)
- addLiquidity(liquidityTokens,LPBNB) (#620)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
External calls sending eth:
- addLiquidity(liquidityTokens,LPBNB) (#620)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
State variables written after the call(s):
- totalCharityBNB += charityBNB (#625)
- totalMarketingBNB += marketingBNB (#627)
- totalProjectOperationBNB += projectOperationBNB (#626)
Reentrancy in ValorFoundation.transferFrom(address,address,uint256) (#501-505):
External calls:
- _transfer(sender,recipient,amount) (#502)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#635-642)
External calls sending eth:
- _transfer(sender,recipient,amount) (#502)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#503)
- _allowances[owner][spender] = amount (#523)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable._lockTime (#166) should be constant
Ownable._previousOwner (#165) should be constant
ValorFoundation._decimals (#411) should be constant
ValorFoundation._name (#409) should be constant
ValorFoundation._symbol (#410) should be constant
ValorFoundation._tTotal (#405) should be constant
ValorFoundation.burnWallet (#414) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Reentrancy in ValorFoundation._transfer(address,address,uint256) (#674-686):
External calls:
- swapAndLiquify(swapThreshold,false) (#679)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#635-642)
External calls sending eth:
- swapAndLiquify(swapThreshold,false) (#679)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#711)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- Transfer(sender,recipient,tTransferAmount) (#719)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- Transfer(sender,recipient,tTransferAmount) (#727)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- Transfer(sender,recipient,tTransferAmount) (#736)
- _tokenTransfer(from,to,amount,takeFee) (#685)
Reentrancy in ValorFoundation.constructor() (#456-468):
External calls:
- _pancakePairAddress = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#460)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#524)
- _approve(address(this),address(_pancakeRouter),type()(uint256).max) (#461)
Reentrancy in ValorFoundation.ownerCreateLP() (#829-836):
External calls:
- addLiquidity(LPTokens,amountWei) (#833)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
Event emitted after the call(s):
- OwnerCreateLP(LPTokens,amountWei) (#835)
Reentrancy in ValorFoundation.ownerReleaseAllLP() (#861-869):
External calls:
- _removeLiquidityPercent(100) (#864)
- lpToken.approve(address(_pancakeRouter),amount) (#661)
- _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (#662-670)
Event emitted after the call(s):
- OwnerRemoveLPPercent(100) (#868)
Reentrancy in ValorFoundation.ownerRemoveLPPercent(uint8) (#871-881):
External calls:
- _removeLiquidityPercent(LPPercent) (#875)
- lpToken.approve(address(_pancakeRouter),amount) (#661)
- _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (#662-670)
Event emitted after the call(s):
- OwnerRemoveLPPercent(LPPercent) (#880)
Reentrancy in ValorFoundation.ownerTriggerSwap(uint8,bool) (#848-851):
External calls:
- swapAndLiquify(_swapThreshold,ignoreLimits) (#849)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#635-642)
External calls sending eth:
- swapAndLiquify(_swapThreshold,ignoreLimits) (#849)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
Event emitted after the call(s):
- OwnerTriggerSwap(_swapThreshold,ignoreLimits) (#850)
Reentrancy in ValorFoundation.swapAndLiquify(uint8,bool) (#597-629):
External calls:
- swapTokensForBNB(toSwap) (#617)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#635-642)
- addLiquidity(liquidityTokens,LPBNB) (#620)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
External calls sending eth:
- addLiquidity(liquidityTokens,LPBNB) (#620)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
Event emitted after the call(s):
- SwapAndLiquify(liquidityTokens,LPBNB) (#628)
Reentrancy in ValorFoundation.transferFrom(address,address,uint256) (#501-505):
External calls:
- _transfer(sender,recipient,amount) (#502)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#635-642)
External calls sending eth:
- _transfer(sender,recipient,amount) (#502)
- _pancakeRouter.addLiquidityETH{value: amountWei}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#647-656)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#524)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#503)
Apply the check-effects-interactions pattern.

Additional information: link

ValorFoundation.ownerReleaseAllLP() (#861-869) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(block.timestamp >= liquidityUnlockSeconds + 2592000) (#862)
ValorFoundation.ownerRemoveLPPercent(uint8) (#871-881) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(block.timestamp >= liquidityUnlockSeconds) (#872)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#94-101) uses assembly
- INLINE ASM (#99)
Address._functionCallWithValue(address,bytes,uint256,string) (#136-157) uses assembly
- INLINE ASM (#149-152)
Do not use evm assembly.

Additional information: link

ValorFoundation.includeInReward(address) (#776-787) has costly operations inside a loop:
- _excluded.pop() (#783)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#136-157) is never used and should be removed
Address.functionCall(address,bytes) (#112-114) is never used and should be removed
Address.functionCall(address,bytes,string) (#122-124) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#126-128) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#131-134) is never used and should be removed
Address.isContract(address) (#94-101) is never used and should be removed
Address.sendValue(address,uint256) (#103-109) is never used and should be removed
Context._msgData() (#83-86) is never used and should be removed
SafeMath.mod(uint256,uint256) (#69-71) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#72-75) is never used and should be removed
Remove unused functions.

Additional information: link

ValorFoundation._rTotal (#406) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ValorFoundation._previousReflectFee (#429) is set pre-construction with a non-constant function or state variable:
- _reflectFee
ValorFoundation._previousSecondaryFee (#431) is set pre-construction with a non-constant function or state variable:
- _secondaryTax
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) (#103-109):
- (success) = recipient.call{value: amount}() (#107)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#136-157):
- (success,returndata) = target.call{value: weiValue}(data) (#140)
Low level call in ValorFoundation.ownerWithdrawBNB() (#795-798):
- (success) = msg.sender.call{value: (address(this).balance)}() (#796)
Low level call in ValorFoundation.ownerWithdrawMarketingBNB(uint256) (#894-899):
- (sent) = msg.sender.call{value: (amountWei)}() (#896)
Low level call in ValorFoundation.ownerWithdrawCharityBNB(uint256) (#900-905):
- (sent) = msg.sender.call{value: (amountWei)}() (#902)
Low level call in ValorFoundation.ownerWithdrawProjectOperationsBNB(uint256) (#906-911):
- (sent) = msg.sender.call{value: (amountWei)}() (#908)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakeRouter01.WETH() (#298) is not in mixedCase
Function IPancakeBEP20.DOMAIN_SEPARATOR() (#356) is not in mixedCase
Function IPancakeBEP20.PERMIT_TYPEHASH() (#357) is not in mixedCase
Parameter ValorFoundation.calculateReflectFee(uint256)._amount (#563) is not in mixedCase
Parameter ValorFoundation.calculateSecondaryFee(uint256)._amount (#568) is not in mixedCase
Parameter ValorFoundation.swapAndLiquify(uint8,bool)._swapThreshold (#597) is not in mixedCase
Parameter ValorFoundation.ownerSetAirDropper(address)._airDropper (#804) is not in mixedCase
Parameter ValorFoundation.ownerTriggerSwap(uint8,bool)._swapThreshold (#848) is not in mixedCase
Parameter ValorFoundation.ownerUpdatePancakePair(address,address)._pancakePair (#856) is not in mixedCase
Parameter ValorFoundation.ownerRemoveLPPercent(uint8).LPPercent (#871) is not in mixedCase
Parameter ValorFoundation.ownerUpdateSwapThreshold(uint8)._swapThreshold (#889) is not in mixedCase
Constant ValorFoundation.fixedLPLockTime (#425) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ValorFoundation._reflectFee (#428) is not in mixedCase
Variable ValorFoundation._secondaryTax (#430) is not in mixedCase
Variable ValorFoundation._pancakeRouterAddress (#443) is not in mixedCase
Variable ValorFoundation._pancakePairAddress (#444) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#84)" inContext (#78-87)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#217) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#218)
Variable ValorFoundation._transferToExcluded(address,address,uint256).rTransferAmount (#714) is too similar to ValorFoundation._getValues(uint256).tTransferAmount (#529)
Variable ValorFoundation._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#543) is too similar to ValorFoundation._transferToExcluded(address,address,uint256).tTransferAmount (#714)
Variable ValorFoundation._transferFromExcluded(address,address,uint256).rTransferAmount (#722) is too similar to ValorFoundation._transferToExcluded(address,address,uint256).tTransferAmount (#714)
Variable ValorFoundation.reflectionFromToken(uint256,bool).rTransferAmount (#755) is too similar to ValorFoundation._getTValues(uint256).tTransferAmount (#536)
Variable ValorFoundation._transferToExcluded(address,address,uint256).rTransferAmount (#714) is too similar to ValorFoundation._transferToExcluded(address,address,uint256).tTransferAmount (#714)
Variable ValorFoundation.reflectionFromToken(uint256,bool).rTransferAmount (#755) is too similar to ValorFoundation._getValues(uint256).tTransferAmount (#529)
Variable ValorFoundation._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#543) is too similar to ValorFoundation._transferStandard(address,address,uint256).tTransferAmount (#707)
Variable ValorFoundation._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#543) is too similar to ValorFoundation._transferBothExcluded(address,address,uint256).tTransferAmount (#730)
Variable ValorFoundation._transferBothExcluded(address,address,uint256).rTransferAmount (#730) is too similar to ValorFoundation._transferBothExcluded(address,address,uint256).tTransferAmount (#730)
Variable ValorFoundation._transferFromExcluded(address,address,uint256).rTransferAmount (#722) is too similar to ValorFoundation._transferBothExcluded(address,address,uint256).tTransferAmount (#730)
Variable ValorFoundation._transferFromExcluded(address,address,uint256).rTransferAmount (#722) is too similar to ValorFoundation._transferStandard(address,address,uint256).tTransferAmount (#707)
Variable ValorFoundation._transferStandard(address,address,uint256).rTransferAmount (#707) is too similar to ValorFoundation._transferBothExcluded(address,address,uint256).tTransferAmount (#730)
Variable ValorFoundation._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#543) is too similar to ValorFoundation._transferFromExcluded(address,address,uint256).tTransferAmount (#722)
Variable ValorFoundation._transferStandard(address,address,uint256).rTransferAmount (#707) is too similar to ValorFoundation._transferStandard(address,address,uint256).tTransferAmount (#707)
Variable ValorFoundation._transferFromExcluded(address,address,uint256).rTransferAmount (#722) is too similar to ValorFoundation._transferFromExcluded(address,address,uint256).tTransferAmount (#722)
Variable ValorFoundation._transferToExcluded(address,address,uint256).rTransferAmount (#714) is too similar to ValorFoundation._transferBothExcluded(address,address,uint256).tTransferAmount (#730)
Variable ValorFoundation._transferToExcluded(address,address,uint256).rTransferAmount (#714) is too similar to ValorFoundation._transferStandard(address,address,uint256).tTransferAmount (#707)
Variable ValorFoundation.reflectionFromToken(uint256,bool).rTransferAmount (#755) is too similar to ValorFoundation._transferToExcluded(address,address,uint256).tTransferAmount (#714)
Variable ValorFoundation._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#543) is too similar to ValorFoundation._getTValues(uint256).tTransferAmount (#536)
Variable ValorFoundation._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#543) is too similar to ValorFoundation._getValues(uint256).tTransferAmount (#529)
Variable ValorFoundation._transferFromExcluded(address,address,uint256).rTransferAmount (#722) is too similar to ValorFoundation._getValues(uint256).tTransferAmount (#529)
Variable ValorFoundation.reflectionFromToken(uint256,bool).rTransferAmount (#755) is too similar to ValorFoundation._transferBothExcluded(address,address,uint256).tTransferAmount (#730)
Variable ValorFoundation.reflectionFromToken(uint256,bool).rTransferAmount (#755) is too similar to ValorFoundation._transferStandard(address,address,uint256).tTransferAmount (#707)
Variable ValorFoundation._getValues(uint256).rTransferAmount (#530) is too similar to ValorFoundation._transferBothExcluded(address,address,uint256).tTransferAmount (#730)
Variable ValorFoundation.reflectionFromToken(uint256,bool).rTransferAmount (#755) is too similar to ValorFoundation._transferFromExcluded(address,address,uint256).tTransferAmount (#722)
Variable ValorFoundation._getValues(uint256).rTransferAmount (#530) is too similar to ValorFoundation._getValues(uint256).tTransferAmount (#529)
Variable ValorFoundation._transferBothExcluded(address,address,uint256).rTransferAmount (#730) is too similar to ValorFoundation._getValues(uint256).tTransferAmount (#529)
Variable ValorFoundation._transferStandard(address,address,uint256).rTransferAmount (#707) is too similar to ValorFoundation._getValues(uint256).tTransferAmount (#529)
Variable ValorFoundation._transferToExcluded(address,address,uint256).rTransferAmount (#714) is too similar to ValorFoundation._transferFromExcluded(address,address,uint256).tTransferAmount (#722)
Variable ValorFoundation._transferToExcluded(address,address,uint256).rTransferAmount (#714) is too similar to ValorFoundation._getTValues(uint256).tTransferAmount (#536)
Variable ValorFoundation._getValues(uint256).rTransferAmount (#530) is too similar to ValorFoundation._transferFromExcluded(address,address,uint256).tTransferAmount (#722)
Variable ValorFoundation._transferStandard(address,address,uint256).rTransferAmount (#707) is too similar to ValorFoundation._transferFromExcluded(address,address,uint256).tTransferAmount (#722)
Variable ValorFoundation._getValues(uint256).rTransferAmount (#530) is too similar to ValorFoundation._getTValues(uint256).tTransferAmount (#536)
Variable ValorFoundation._transferBothExcluded(address,address,uint256).rTransferAmount (#730) is too similar to ValorFoundation._transferFromExcluded(address,address,uint256).tTransferAmount (#722)
Variable ValorFoundation._transferStandard(address,address,uint256).rTransferAmount (#707) is too similar to ValorFoundation._getTValues(uint256).tTransferAmount (#536)
Variable ValorFoundation._transferBothExcluded(address,address,uint256).rTransferAmount (#730) is too similar to ValorFoundation._getTValues(uint256).tTransferAmount (#536)
Variable ValorFoundation._transferFromExcluded(address,address,uint256).rTransferAmount (#722) is too similar to ValorFoundation._getTValues(uint256).tTransferAmount (#536)
Variable ValorFoundation._getValues(uint256).rTransferAmount (#530) is too similar to ValorFoundation._transferStandard(address,address,uint256).tTransferAmount (#707)
Variable ValorFoundation._transferBothExcluded(address,address,uint256).rTransferAmount (#730) is too similar to ValorFoundation._transferStandard(address,address,uint256).tTransferAmount (#707)
Variable ValorFoundation._transferBothExcluded(address,address,uint256).rTransferAmount (#730) is too similar to ValorFoundation._transferToExcluded(address,address,uint256).tTransferAmount (#714)
Variable ValorFoundation._getValues(uint256).rTransferAmount (#530) is too similar to ValorFoundation._transferToExcluded(address,address,uint256).tTransferAmount (#714)
Variable ValorFoundation._transferStandard(address,address,uint256).rTransferAmount (#707) is too similar to ValorFoundation._transferToExcluded(address,address,uint256).tTransferAmount (#714)
Prevent variables from having similar names.

Additional information: link

ValorFoundation.swapAndLiquify(uint8,bool) (#597-629) uses literals with too many digits:
- maxSwapSize = (30000000 * 10 ** 9) / 100 (#602)
ValorFoundation.ownerCreateLP() (#829-836) uses literals with too many digits:
- LPTokens = 30000000 * 10 ** 9 (#831)
ValorFoundation.ownerBurnInitialToken() (#837-841) uses literals with too many digits:
- tokenToBurn = 40000000 * 10 ** 9 (#838)
ValorFoundation.withdrawAirDropTokens() (#842-847) uses literals with too many digits:
- tokenToAirDrop = 50000000 * 10 ** 9 (#844)
ValorFoundation.slitherConstructorVariables() (#377-913) uses literals with too many digits:
- _tTotal = 120000000 * 10 ** 9 (#405)
ValorFoundation.slitherConstructorVariables() (#377-913) uses literals with too many digits:
- burnWallet = 0x000000000000000000000000000000000000dEaD (#414)
ValorFoundation.slitherConstructorVariables() (#377-913) uses literals with too many digits:
- airDropper = 0x0000000000000000000000000000000000000000 (#415)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#165) is never used in ValorFoundation (#377-913)
Ownable._lockTime (#166) is never used in ValorFoundation (#377-913)
Remove unused state variables.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#193-196)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#202-206)
name() should be declared external:
- ValorFoundation.name() (#472-474)
symbol() should be declared external:
- ValorFoundation.symbol() (#475-477)
decimals() should be declared external:
- ValorFoundation.decimals() (#478-480)
totalSupply() should be declared external:
- ValorFoundation.totalSupply() (#481-483)
transfer(address,uint256) should be declared external:
- ValorFoundation.transfer(address,uint256) (#490-493)
allowance(address,address) should be declared external:
- ValorFoundation.allowance(address,address) (#494-496)
approve(address,uint256) should be declared external:
- ValorFoundation.approve(address,uint256) (#497-500)
transferFrom(address,address,uint256) should be declared external:
- ValorFoundation.transferFrom(address,address,uint256) (#501-505)
increaseAllowance(address,uint256) should be declared external:
- ValorFoundation.increaseAllowance(address,uint256) (#506-509)
decreaseAllowance(address,uint256) should be declared external:
- ValorFoundation.decreaseAllowance(address,uint256) (#510-513)
isExcludedFromReward(address) should be declared external:
- ValorFoundation.isExcludedFromReward(address) (#740-742)
totalFees() should be declared external:
- ValorFoundation.totalFees() (#743-745)
isExcludedFromFee(address) should be declared external:
- ValorFoundation.isExcludedFromFee(address) (#746-748)
reflectionFromToken(uint256,bool) should be declared external:
- ValorFoundation.reflectionFromToken(uint256,bool) (#749-758)
excludeFromFee(address) should be declared external:
- ValorFoundation.excludeFromFee(address) (#788-790)
includeInFee(address) should be declared external:
- ValorFoundation.includeInFee(address) (#791-793)
ownerWithdrawBNB() should be declared external:
- ValorFoundation.ownerWithdrawBNB() (#795-798)
ownerUpdateTaxes(uint8,uint8) should be declared external:
- ValorFoundation.ownerUpdateTaxes(uint8,uint8) (#799-803)
ownerSetAirDropper(address) should be declared external:
- ValorFoundation.ownerSetAirDropper(address) (#804-807)
ownerFixStuckBNB() should be declared external:
- ValorFoundation.ownerFixStuckBNB() (#808-811)
ownerLockLP() should be declared external:
- ValorFoundation.ownerLockLP() (#813-816)
ownerWithdrawStrandedToken(address) should be declared external:
- ValorFoundation.ownerWithdrawStrandedToken(address) (#818-822)
ownerExtendLPLock(uint256) should be declared external:
- ValorFoundation.ownerExtendLPLock(uint256) (#823-827)
ownerCreateLP() should be declared external:
- ValorFoundation.ownerCreateLP() (#829-836)
ownerBurnInitialToken() should be declared external:
- ValorFoundation.ownerBurnInitialToken() (#837-841)
withdrawAirDropTokens() should be declared external:
- ValorFoundation.withdrawAirDropTokens() (#842-847)
ownerTriggerSwap(uint8,bool) should be declared external:
- ValorFoundation.ownerTriggerSwap(uint8,bool) (#848-851)
ownerSwitchSwapAndLiquify(bool) should be declared external:
- ValorFoundation.ownerSwitchSwapAndLiquify(bool) (#852-855)
ownerUpdatePancakePair(address,address) should be declared external:
- ValorFoundation.ownerUpdatePancakePair(address,address) (#856-859)
ownerReleaseAllLP() should be declared external:
- ValorFoundation.ownerReleaseAllLP() (#861-869)
ownerRemoveLPPercent(uint8) should be declared external:
- ValorFoundation.ownerRemoveLPPercent(uint8) (#871-881)
ownerUpdateSecondaryTaxes(uint8,uint8,uint8,uint8) should be declared external:
- ValorFoundation.ownerUpdateSecondaryTaxes(uint8,uint8,uint8,uint8) (#882-888)
ownerUpdateSwapThreshold(uint8) should be declared external:
- ValorFoundation.ownerUpdateSwapThreshold(uint8) (#889-893)
ownerWithdrawMarketingBNB(uint256) should be declared external:
- ValorFoundation.ownerWithdrawMarketingBNB(uint256) (#894-899)
ownerWithdrawCharityBNB(uint256) should be declared external:
- ValorFoundation.ownerWithdrawCharityBNB(uint256) (#900-905)
ownerWithdrawProjectOperationsBNB(uint256) should be declared external:
- ValorFoundation.ownerWithdrawProjectOperationsBNB(uint256) (#906-911)
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 number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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


Token is deployed only at one blockchain


Token has only one trading pair

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


Last post in Twitter was more than 30 days ago


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


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 token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


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


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for Valor

News for Valor