REWARDSINUV2 is a community controlled deflationary token.
REWARDSINUV2 purpose is to develop solutions that will make the cryptocurrency space safer and easier to understand for everyone. The WEEDOGE token includes a 4% auto liquidity system. 3% of the tax charged into the marketing for long-term development.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in REWARDSINU2._transfer(address,address,uint256) (#562-592):
External calls:
- swapAndSendToFee(sellTokens) (#578)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#626-632)
External calls sending eth:
- swapAndSendToFee(sellTokens) (#578)
- address(_marketing).transfer(ethToSend) (#599)
State variables written after the call(s):
- _tOwned[from] -= amount (#582)
- transferAmount = _getValues(amount,from) (#587)
- _tOwned[address(this)] += marketingFee + liquidityFee (#544)
- _tOwned[to] += transferAmount (#590)
- swapping = false (#579)
Apply the check-effects-interactions pattern.
Additional information: link
REWARDSINU2.allowance(address,address).owner (#508) shadows:
- Ownable.owner() (#198-200) (function)
REWARDSINU2._approve(address,address,uint256).owner (#554) shadows:
- Ownable.owner() (#198-200) (function)
Rename the local variables that shadow another component.
Additional information: link
Pragma version^0.8.15 (#11) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.15 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
Low level call in Address.sendValue(address,uint256) (#132-138):
- (success) = recipient.call{value: amount}() (#136)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#161-182):
- (success,returndata) = target.call{value: weiValue}(data) (#165)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Redundant expression "this (#113)" inContext (#107-116)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Contract name (Rewards Inu 2.0) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
Reentrancy in REWARDSINU2.constructor() (#465-481):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#470)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#476)
- _isExcludedFromFee[address(this)] = true (#477)
- _isExcludedFromFee[_marketing] = true (#478)
- uniswapV2Pair = _uniswapV2Pair (#473)
- uniswapV2Router = _uniswapV2Router (#472)
Reentrancy in REWARDSINU2.swapAndLiquify() (#602-614):
External calls:
- newBalance = swapTokensForEth(half) (#607)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#626-632)
- addLiquidity(otherHalf,newBalance) (#611)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#641-648)
- (success) = recipient.call{value: amount}() (#136)
- address(_marketing).sendValue(ethAmount - ethFromLiquidity) (#651)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#611)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#641-648)
- (success) = recipient.call{value: amount}() (#136)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#611)
- _allowances[owner][spender] = amount (#558)
Reentrancy in REWARDSINU2.transferFrom(address,address,uint256) (#517-521):
External calls:
- _transfer(sender,recipient,amount) (#518)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#626-632)
External calls sending eth:
- _transfer(sender,recipient,amount) (#518)
- address(_marketing).transfer(ethToSend) (#599)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#519)
- _allowances[owner][spender] = amount (#558)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in REWARDSINU2._transfer(address,address,uint256) (#562-592):
External calls:
- swapAndSendToFee(sellTokens) (#578)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#626-632)
External calls sending eth:
- swapAndSendToFee(sellTokens) (#578)
- address(_marketing).transfer(ethToSend) (#599)
Event emitted after the call(s):
- Transfer(from,address(this),marketingFee + liquidityFee) (#545)
- transferAmount = _getValues(amount,from) (#587)
- Transfer(from,to,transferAmount) (#591)
Reentrancy in REWARDSINU2.constructor() (#465-481):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#470)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#480)
Reentrancy in REWARDSINU2.swapAndLiquify() (#602-614):
External calls:
- newBalance = swapTokensForEth(half) (#607)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#626-632)
- addLiquidity(otherHalf,newBalance) (#611)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#641-648)
- (success) = recipient.call{value: amount}() (#136)
- address(_marketing).sendValue(ethAmount - ethFromLiquidity) (#651)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#611)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#641-648)
- (success) = recipient.call{value: amount}() (#136)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#559)
- addLiquidity(otherHalf,newBalance) (#611)
- SwapAndLiquify(half,newBalance,otherHalf) (#612)
Reentrancy in REWARDSINU2.transferFrom(address,address,uint256) (#517-521):
External calls:
- _transfer(sender,recipient,amount) (#518)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#626-632)
External calls sending eth:
- _transfer(sender,recipient,amount) (#518)
- address(_marketing).transfer(ethToSend) (#599)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#559)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#519)
Apply the check-effects-interactions pattern.
Additional information: link
REWARDSINU2.addLiquidity(uint256,uint256) (#636-652) uses timestamp for comparisons
Dangerous comparisons:
- ethAmount - ethFromLiquidity > 0 (#650)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#122-129) uses assembly
- INLINE ASM (#127)
Address._functionCallWithValue(address,bytes,uint256,string) (#161-182) uses assembly
- INLINE ASM (#174-177)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#161-182) is never used and should be removed
Address.functionCall(address,bytes) (#141-143) is never used and should be removed
Address.functionCall(address,bytes,string) (#146-148) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#151-153) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#156-159) is never used and should be removed
Address.isContract(address) (#122-129) is never used and should be removed
Address.sendValue(address,uint256) (#132-138) is never used and should be removed
Context._msgData() (#112-115) is never used and should be removed
REWARDSINU2.addLiquidity(uint256,uint256) (#636-652) is never used and should be removed
REWARDSINU2.swapAndLiquify() (#602-614) is never used and should be removed
SafeMath.add(uint256,uint256) (#48-53) is never used and should be removed
SafeMath.div(uint256,uint256) (#82-84) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#87-93) is never used and should be removed
SafeMath.mod(uint256,uint256) (#96-98) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#101-104) is never used and should be removed
SafeMath.mul(uint256,uint256) (#69-79) is never used and should be removed
SafeMath.sub(uint256,uint256) (#56-58) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#61-66) is never used and should be removed
Remove unused functions.
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#258) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#259) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#276) is not in mixedCase
Function IUniswapV2Router01.WETH() (#298) is not in mixedCase
Variable REWARDSINU2._maxTxAmount (#448) is not in mixedCase
Constant REWARDSINU2._name (#450) is not in UPPER_CASE_WITH_UNDERSCORES
Constant REWARDSINU2._symbol (#451) is not in UPPER_CASE_WITH_UNDERSCORES
Constant REWARDSINU2._decimals (#452) is not in UPPER_CASE_WITH_UNDERSCORES
Variable REWARDSINU2._MarketingTax (#454) is not in mixedCase
Variable REWARDSINU2._LiquidityTax (#455) is not in mixedCase
Variable REWARDSINU2._marketing (#456) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in REWARDSINU2._transfer(address,address,uint256) (#562-592):
External calls:
- swapAndSendToFee(sellTokens) (#578)
- address(_marketing).transfer(ethToSend) (#599)
State variables written after the call(s):
- _tOwned[from] -= amount (#582)
- transferAmount = _getValues(amount,from) (#587)
- _tOwned[address(this)] += marketingFee + liquidityFee (#544)
- _tOwned[to] += transferAmount (#590)
- swapping = false (#579)
Event emitted after the call(s):
- Transfer(from,address(this),marketingFee + liquidityFee) (#545)
- transferAmount = _getValues(amount,from) (#587)
- Transfer(from,to,transferAmount) (#591)
Reentrancy in REWARDSINU2.transferFrom(address,address,uint256) (#517-521):
External calls:
- _transfer(sender,recipient,amount) (#518)
- address(_marketing).transfer(ethToSend) (#599)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#519)
- _allowances[owner][spender] = amount (#558)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#559)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#519)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#303) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#304)
Prevent variables from having similar names.
Additional information: link
Address.sendValue(address,uint256) (#132-138) uses literals with too many digits:
- recipient = address(0x000000000000000000000000000000000000dEaD) (#134)
REWARDSINU2.slitherConstructorVariables() (#435-654) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 9 (#447)
REWARDSINU2.slitherConstructorVariables() (#435-654) uses literals with too many digits:
- _maxTxAmount = 20000000000 * 10 ** 9 (#448)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
REWARDSINU2._LiquidityTax (#455) should be constant
REWARDSINU2._MarketingTax (#454) should be constant
REWARDSINU2._marketing (#456) should be constant
REWARDSINU2._maxTxAmount (#448) should be constant
REWARDSINU2._tTotal (#447) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#209-212)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#215-219)
name() should be declared external:
- REWARDSINU2.name() (#483-485)
symbol() should be declared external:
- REWARDSINU2.symbol() (#487-489)
decimals() should be declared external:
- REWARDSINU2.decimals() (#491-493)
totalSupply() should be declared external:
- REWARDSINU2.totalSupply() (#495-497)
transfer(address,uint256) should be declared external:
- REWARDSINU2.transfer(address,uint256) (#503-506)
allowance(address,address) should be declared external:
- REWARDSINU2.allowance(address,address) (#508-510)
approve(address,uint256) should be declared external:
- REWARDSINU2.approve(address,uint256) (#512-515)
transferFrom(address,address,uint256) should be declared external:
- REWARDSINU2.transferFrom(address,address,uint256) (#517-521)
decreaseAllowance(address,uint256) should be declared external:
- REWARDSINU2.decreaseAllowance(address,uint256) (#523-526)
excludeFromFee(address) should be declared external:
- REWARDSINU2.excludeFromFee(address) (#528-530)
includeInFee(address) should be declared external:
- REWARDSINU2.includeInFee(address) (#532-534)
isExcludedFromFee(address) should be declared external:
- REWARDSINU2.isExcludedFromFee(address) (#550-552)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find KYC or doxxing proof
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
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
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Telegram account has less than 100 subscribers
Twitter account has less than 100 followers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts