REWARDS Token Logo

REWARDS Token

About REWARDS

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

$REWARDS Token is a deflationary token designed to become more scarce over time. All holders of $REWARDS will earn $USDT and $REWARDS Tokens which will be automatically sent to your wallet by simply holding $REWARDS Tokens in your wallet. The community receives more $USDT and Rewards Token from the Tax generated by each transaction.

Social

Laser Scorebeta Last Audit: 8 December 2022

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

Anti-Scam

Links

REWARDS.addLiquidity(uint256,uint256) (#1660-1675) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

REWARDS.swapAndSendToFee(uint256) (#1587-1594) ignores return value by IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1593)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Reentrancy in REWARDS._transfer(address,address,uint256) (#1515-1585):
External calls:
- swapAndSendToFee(marketingTokens) (#1541)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1593)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1651-1657)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1631-1637)
- swapAndSendDividends(sellTokens) (#1547)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1680)
- dividendTracker.distributeUSDTDividends(dividends) (#1683)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1651-1657)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1567)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#928)
- _balances[recipient] = _balances[recipient].add(amount) (#929)
- super._transfer(from,to,amount) (#1570)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#928)
- _balances[recipient] = _balances[recipient].add(amount) (#929)
- swapping = false (#1549)
Apply the check-effects-interactions pattern.

Additional information: link


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


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)


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.

REWARDS.totalFees (#1266) is set pre-construction with a non-constant function or state variable:
- USDTRewardsFee.add(liquidityFee).add(marketingFee)
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

Redundant expression "this (#110)" inContext (#104-113)
Remove redundant statements if they congest code but offer no value.

Additional information: link

REWARDS.slitherConstructorVariables() (#1246-1687) uses literals with too many digits:
- swapTokensAtAmount = 2000000 * (10 ** 18) (#1260)
REWARDS.updateGasForProcessing(uint256) (#1436-1441) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,REWARDS: gasForProcessing must be between 200,000 and 500,000) (#1437)
REWARDS.constructor() (#1315-1347) uses literals with too many digits:
- _mint(owner(),1000000000000000 * (10 ** 18)) (#1346)
REWARDSDividendTracker.getAccountAtIndex(uint256) (#1794-1811) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1805)
REWARDS.slitherConstructorVariables() (#1246-1687) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#1256)
REWARDSDividendTracker.constructor() (#1709-1712) uses literals with too many digits:
- minimumTokenBalanceForDividends = 200000 * (10 ** 18) (#1711)
REWARDS.slitherConstructorVariables() (#1246-1687) uses literals with too many digits:
- gasForProcessing = 300000 (#1272)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#574) is never used in SafeMathInt (#572-630)
Remove unused state variables.

Additional information: link

REWARDS.deadWallet (#1256) should be constant
REWARDS.swapTokensAtAmount (#1260) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (#1146-1162) has external calls inside a loop: success = IERC20(USDT).transfer(user,_withdrawableDividend) (#1151)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in REWARDS.updateDividendTracker(address) (#1353-1368):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1360)
- newDividendTracker.excludeFromDividends(address(this)) (#1361)
- newDividendTracker.excludeFromDividends(owner()) (#1362)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1363)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1367)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1146-1162):
External calls:
- success = IERC20(USDT).transfer(user,_withdrawableDividend) (#1151)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1154)
Apply the check-effects-interactions pattern.

Additional information: link

REWARDS._transfer(address,address,uint256).claims (#1578) is a local variable never initialized
REWARDS._transfer(address,address,uint256).iterations (#1578) is a local variable never initialized
REWARDS._transfer(address,address,uint256).lastProcessedIndex (#1578) is a local variable never initialized
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

REWARDS.addLiquidity(uint256,uint256) (#1660-1675) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
REWARDS.claim() (#1502-1504) ignores return value by dividendTracker.processAccount(msg.sender,false) (#1503)
REWARDS._transfer(address,address,uint256) (#1515-1585) ignores return value by dividendTracker.process(gas) (#1578-1583)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (#1120) shadows:
- ERC20._name (#750) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#1192) shadows:
- Ownable._owner (#366) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#1175) shadows:
- Ownable._owner (#366) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#1120) shadows:
- ERC20._symbol (#751) (state variable)
DividendPayingToken.dividendOf(address)._owner (#1168) shadows:
- Ownable._owner (#366) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#1182) shadows:
- Ownable._owner (#366) (state variable)
Rename the local variables that shadow another component.

Additional information: link

REWARDS.setLiquiditFee(uint256) (#1403-1406) should emit an event for:
- liquidityFee = value (#1404)
- totalFees = USDTRewardsFee.add(liquidityFee).add(marketingFee) (#1405)
REWARDS.setUSDTRewardsFee(uint256) (#1398-1401) should emit an event for:
- USDTRewardsFee = value (#1399)
- totalFees = USDTRewardsFee.add(liquidityFee).add(marketingFee) (#1400)
REWARDS.setMarketingFee(uint256) (#1408-1412) should emit an event for:
- marketingFee = value (#1409)
- totalFees = USDTRewardsFee.add(liquidityFee).add(marketingFee) (#1410)
Emit an event for critical parameter changes.

Additional information: link

REWARDS.setMarketingWallet(address).wallet (#1394) lacks a zero-check on :
- _marketingWalletAddress = wallet (#1395)
REWARDS.updateUniswapV2Router(address)._uniswapV2Pair (#1374-1375) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1376)
Check that the address is not zero.

Additional information: link

Variable 'REWARDS._transfer(address,address,uint256).lastProcessedIndex (#1578)' in REWARDS._transfer(address,address,uint256) (#1515-1585) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1579)
Variable 'REWARDS._transfer(address,address,uint256).claims (#1578)' in REWARDS._transfer(address,address,uint256) (#1515-1585) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1579)
Variable 'REWARDS._transfer(address,address,uint256).iterations (#1578)' in REWARDS._transfer(address,address,uint256) (#1515-1585) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1579)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in REWARDS.updateUniswapV2Router(address) (#1370-1377):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1374-1375)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1376)
Reentrancy in REWARDSDividendTracker.processAccount(address,bool) (#1885-1895):
External calls:
- amount = _withdrawDividendOfUser(account) (#1886)
- success = IERC20(USDT).transfer(user,_withdrawableDividend) (#1151)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1889)
Reentrancy in REWARDS.swapAndLiquify(uint256) (#1596-1617):
External calls:
- swapTokensForEth(half) (#1608)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1631-1637)
- addLiquidity(otherHalf,newBalance) (#1614)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1614)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1614)
- _allowances[owner][spender] = amount (#994)
Reentrancy in REWARDS._transfer(address,address,uint256) (#1515-1585):
External calls:
- swapAndSendToFee(marketingTokens) (#1541)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1593)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1651-1657)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1631-1637)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (#1544)
- _allowances[owner][spender] = amount (#994)
Reentrancy in REWARDS._transfer(address,address,uint256) (#1515-1585):
External calls:
- swapAndSendToFee(marketingTokens) (#1541)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1593)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1651-1657)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1631-1637)
- swapAndSendDividends(sellTokens) (#1547)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1680)
- dividendTracker.distributeUSDTDividends(dividends) (#1683)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1651-1657)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1547)
- _allowances[owner][spender] = amount (#994)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in REWARDSDividendTracker.processAccount(address,bool) (#1885-1895):
External calls:
- amount = _withdrawDividendOfUser(account) (#1886)
- success = IERC20(USDT).transfer(user,_withdrawableDividend) (#1151)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1890)
Reentrancy in REWARDS.updateDividendTracker(address) (#1353-1368):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1360)
- newDividendTracker.excludeFromDividends(address(this)) (#1361)
- newDividendTracker.excludeFromDividends(owner()) (#1362)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1363)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1365)
Reentrancy in REWARDS.swapAndSendDividends(uint256) (#1677-1686):
External calls:
- swapTokensForUSDT(tokens) (#1678)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1651-1657)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1680)
- dividendTracker.distributeUSDTDividends(dividends) (#1683)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (#1684)
Reentrancy in REWARDS.processDividendTracker(uint256) (#1497-1500):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1498)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1499)
Reentrancy in REWARDS._setAutomatedMarketMakerPair(address,bool) (#1424-1433):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1429)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1432)
Reentrancy in REWARDS._transfer(address,address,uint256) (#1515-1585):
External calls:
- swapAndSendToFee(marketingTokens) (#1541)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1593)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1651-1657)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1631-1637)
- swapAndSendDividends(sellTokens) (#1547)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1680)
- dividendTracker.distributeUSDTDividends(dividends) (#1683)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1651-1657)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#995)
- swapAndSendDividends(sellTokens) (#1547)
- SendDividends(tokens,dividends) (#1684)
- swapAndSendDividends(sellTokens) (#1547)
- Transfer(sender,recipient,amount) (#930)
- super._transfer(from,to,amount) (#1570)
- Transfer(sender,recipient,amount) (#930)
- super._transfer(from,address(this),fees) (#1567)
Reentrancy in REWARDS._transfer(address,address,uint256) (#1515-1585):
External calls:
- swapAndSendToFee(marketingTokens) (#1541)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1593)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1651-1657)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1631-1637)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#995)
- swapAndLiquify(swapTokens) (#1544)
- SwapAndLiquify(half,newBalance,otherHalf) (#1616)
- swapAndLiquify(swapTokens) (#1544)
Reentrancy in REWARDS._transfer(address,address,uint256) (#1515-1585):
External calls:
- swapAndSendToFee(marketingTokens) (#1541)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1593)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1651-1657)
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1631-1637)
- swapAndSendDividends(sellTokens) (#1547)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1680)
- dividendTracker.distributeUSDTDividends(dividends) (#1683)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1651-1657)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1572)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1573)
- dividendTracker.process(gas) (#1578-1583)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1579)
Reentrancy in REWARDS.swapAndLiquify(uint256) (#1596-1617):
External calls:
- swapTokensForEth(half) (#1608)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1631-1637)
- addLiquidity(otherHalf,newBalance) (#1614)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1614)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1666-1673)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#995)
- addLiquidity(otherHalf,newBalance) (#1614)
- SwapAndLiquify(half,newBalance,otherHalf) (#1616)
Apply the check-effects-interactions pattern.

Additional information: link

REWARDSDividendTracker.getAccount(address) (#1749-1792) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1789-1791)
REWARDSDividendTracker.canAutoClaim(uint256) (#1813-1819) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1814)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1818)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.div(int256,int256) (#591-597) is never used and should be removed
SafeMathInt.abs(int256) (#620-623) is never used and should be removed
SafeMathInt.mul(int256,int256) (#579-586) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#558-561) is never used and should be removed
Context._msgData() (#109-112) is never used and should be removed
SafeMath.mod(uint256,uint256) (#542-544) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1202-1208) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.6.2 (#1083) allows old versions
Pragma version^0.6.2 (#1059) allows old versions
Pragma version^0.6.2 (#282) allows old versions
Pragma version^0.6.2 (#337) allows old versions
Pragma version^0.6.2 (#419) allows old versions
Pragma version^0.6.2 (#92) allows old versions
Pragma version^0.6.2 (#1022) allows old versions
Pragma version^0.6.2 (#715) allows old versions
Pragma version^0.6.2 (#650) allows old versions
Pragma version^0.6.2 (#4) allows old versions
Pragma version^0.6.2 (#262) allows old versions
Pragma version^0.6.2 (#363) allows old versions
Pragma version^0.6.2 (#634) allows old versions
Pragma version^0.6.2 (#10) allows old versions
Pragma version^0.6.2 (#566) allows old versions
Pragma version^0.6.2 (#118) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Variable REWARDS.USDT (#1258) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#300) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#317) is not in mixedCase
Constant DividendPayingToken.magnitude (#1100) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#299) is not in mixedCase
Parameter REWARDSDividendTracker.getAccount(address)._account (#1749) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1168) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1182) is not in mixedCase
Variable REWARDS.USDTRewardsFee (#1263) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1175) is not in mixedCase
Variable DividendPayingToken.USDT (#1094) is not in mixedCase
Function IUniswapV2Router01.WETH() (#122) is not in mixedCase
Variable REWARDS._marketingWalletAddress (#1268) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1192) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#127) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#128)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1147) is too similar to REWARDSDividendTracker.getAccount(address).withdrawableDividends (#1754)
Prevent variables from having similar names.

Additional information: link

updateUniswapV2Router(address) should be declared external:
- REWARDS.updateUniswapV2Router(address) (#1370-1377)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#661-663)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#858-866)
getAccountAtIndex(uint256) should be declared external:
- REWARDSDividendTracker.getAccountAtIndex(uint256) (#1794-1811)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#672-674)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#401-404)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#1140-1142)
- REWARDSDividendTracker.withdrawDividend() (#1718-1720)
isExcludedFromFees(address) should be declared external:
- REWARDS.isExcludedFromFees(address) (#1455-1457)
decimals() should be declared external:
- ERC20.decimals() (#795-797)
distributeUSDTDividends(uint256) should be declared external:
- DividendPayingToken.distributeUSDTDividends(uint256) (#1125-1136)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1168-1170)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#665-670)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#899-902)
symbol() should be declared external:
- ERC20.symbol() (#778-780)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#821-824)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#880-883)
updateGasForProcessing(uint256) should be declared external:
- REWARDS.updateGasForProcessing(uint256) (#1436-1441)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#678-680)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#410-414)
name() should be declared external:
- ERC20.name() (#770-772)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- REWARDS.excludeMultipleAccountsFromFees(address[],bool) (#1386-1392)
process(uint256) should be declared external:
- REWARDSDividendTracker.process(uint256) (#1838-1883)
updateDividendTracker(address) should be declared external:
- REWARDS.updateDividendTracker(address) (#1353-1368)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- REWARDS.setAutomatedMarketMakerPair(address,bool) (#1415-1419)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#840-843)
withdrawableDividendOf(address) should be declared external:
- REWARDS.withdrawableDividendOf(address) (#1459-1461)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1182-1184)
dividendTokenBalanceOf(address) should be declared external:
- REWARDS.dividendTokenBalanceOf(address) (#1463-1465)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#829-831)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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

Contract has 13% buy tax and 14% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account has relatively few followers


Twitter account has few posts


Unable to find Youtube account


Unable to crawl data from the website


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token contract audit


Token is not listed at Mobula.Finance

Additional information: link


Unable to verify token contract address on the website


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 Twitter link on the website


Unable to find code repository for the project


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


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


Token has no active CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for REWARDS

News for REWARDS