Rematic Token Logo

RMTX [Rematic] Token

About RMTX

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
[CoinMarketCap] alert: Rematic old contract has been migrated to a new one. Find more details in their announcement.
[CoinGecko] alert: RematicEGC has recently migrated from their old contract to a new one. For more information, please visit this post.
white paper

RMTX is the Crosschain Token (ETH, POLY, BSC) that provided 10% holder reflections with an additional 1% automated buy back and burn. RMTX is the inaugural token of Rematic Tokens and rewards investors in three ways. First, 10% of all buys, sells, and transfers (not across chains, that free) are distributed to holders. Second, the automated buyback and burn makes RMTX a deflationary token, thus raising the value to all holders over time. Third, and most importantly, as the premier token of Rematic Tokens, a portion of all profits obtained from business generated revenue will be distributed in the form of dividend payments and/or additional RMTX token burns.

The vision of Rematic Tokens LLC (RTL) is to bring a trusted, professional, and business level execution of product development and services to the cryptocurrency, commercial, and public/federal space for its clients and communities. RTL is a legal entity established in the state of Virginia, operating globally. In addition to providing services to other tokens and their communities, it acts on behalf of $RMTX investor interests and serves as the operational arm for the $RMTX community. $RMTX token serves as a funding mechanism and is the inaugural token of Rematic Tokens LLC.

Rematic Tokens LLC product development will be funded by $RMTX, built and managed by RTL, and owned by $RMTX holders. 100% fair, 100% transparent. For more details on utilities, visit the website.

Social

Laser Scorebeta Last Audit: 6 May 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

Rematic.buyTokens(uint256) (#1778-1792) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapETHForExactTokens{value: bnbAmount}(0,path,deadWallet,block.timestamp) (#1786-1791)
Rematic.addLiquidity(uint256,uint256) (#1814-1828) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Rematic._transfer(address,address,uint256) (#1618-1710):
External calls:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- swap(contractTokenBalance.mul(burnFee).div(totalFees)) (#1651)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- buyTokens(burnBnb) (#1655)
- uniswapV2Router.swapETHForExactTokens{value: bnbAmount}(0,path,deadWallet,block.timestamp) (#1786-1791)
- swapAndLiquify(swapTokens) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- swapAndSendDividends(sellTokens) (#1661)
- success = IERC20(REWARD).transfer(address(dividendTracker),dividends) (#1833)
- dividendTracker.distributeRewardDividends(dividends) (#1836)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1805-1811)
External calls sending eth:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
- buyTokens(burnBnb) (#1655)
- uniswapV2Router.swapETHForExactTokens{value: bnbAmount}(0,path,deadWallet,block.timestamp) (#1786-1791)
- swapAndLiquify(swapTokens) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1692)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#945)
- _balances[recipient] = _balances[recipient].add(amount) (#946)
- super._transfer(from,to,amount) (#1695)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#945)
- _balances[recipient] = _balances[recipient].add(amount) (#946)
- swapping = false (#1663)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.


Contract ownership is not renounced (belongs to a wallet)

IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#574-577) contains a tautology or contradiction:
- require(bool,string)(index >= 0,index min 0) (#575)
IterableMapping.remove(IterableMapping.Map,address) (#596-614) contains a tautology or contradiction:
- require(bool,string)(lastIndex >= 0,min 0) (#606)
IterableMapping.remove(IterableMapping.Map,address) (#596-614) contains a tautology or contradiction:
- require(bool,string)(index >= 0,min 0) (#611)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link

Rematic.antiWhale(address,address,uint256) (#1418-1428) compares to a boolean constant:
-_excludedFromAntiWhale[sender] == false && _excludedFromAntiWhale[recipient] == false (#1421-1422)
Remove the equality to the boolean constant.

Additional information: link

Rematic.totalFees (#1288) is set pre-construction with a non-constant function or state variable:
- RewardsFee.add(liquidityFee).add(teamFee).add(burnFee)
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

Rematic.deadWallet (#1273) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1159-1175):
External calls:
- success = IERC20(REWARD).transfer(user,_withdrawableDividend) (#1164)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1167)
Reentrancy in Rematic.updateDividendTracker(address) (#1400-1416):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1407)
- newDividendTracker.excludeFromDividends(address(this)) (#1408)
- newDividendTracker.excludeFromDividends(owner()) (#1409)
- newDividendTracker.excludeFromDividends(deadWallet) (#1410)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1411)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1415)
Apply the check-effects-interactions pattern.

Additional information: link

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

Rematic.claim() (#1595-1597) ignores return value by dividendTracker.processAccount(msg.sender,false) (#1596)
Rematic.claimAddress(address) (#1599-1601) ignores return value by dividendTracker.processAccount(address(claimee),false) (#1600)
Rematic._transfer(address,address,uint256) (#1618-1710) ignores return value by dividendTracker.process(gas) (#1703-1708)
Rematic.buyTokens(uint256) (#1778-1792) ignores return value by uniswapV2Router.swapETHForExactTokens{value: bnbAmount}(0,path,deadWallet,block.timestamp) (#1786-1791)
Rematic.addLiquidity(uint256,uint256) (#1814-1828) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (#1133) shadows:
- ERC20._name (#767) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#1133) shadows:
- ERC20._symbol (#768) (state variable)
DividendPayingToken.dividendOf(address)._owner (#1185) shadows:
- Ownable._owner (#281) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#1192) shadows:
- Ownable._owner (#281) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#1199) shadows:
- Ownable._owner (#281) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#1209) shadows:
- Ownable._owner (#281) (state variable)
Rename the local variables that shadow another component.

Additional information: link

Rematic.changeTimeSells(uint256) (#1390-1393) should emit an event for:
- timeBetweenSells = _value (#1392)
Rematic.changeTimeBuys(uint256) (#1394-1397) should emit an event for:
- timeBetweenBuys = _value (#1396)
Rematic.setSwapTokensAtAmount(uint256) (#1470-1472) should emit an event for:
- swapTokensAtAmount = amount (#1471)
Rematic.setRewardsFee(uint256) (#1480-1484) should emit an event for:
- RewardsFee = value (#1481)
- totalFees = RewardsFee.add(liquidityFee).add(teamFee).add(burnFee) (#1482)
Rematic.setMaxTransfertAmountRate(uint256) (#1485-1488) should emit an event for:
- maxTransferAmountRate = value (#1487)
Rematic.setLiquidityFee(uint256) (#1490-1494) should emit an event for:
- liquidityFee = value (#1491)
- totalFees = RewardsFee.add(liquidityFee).add(teamFee).add(burnFee) (#1492)
Rematic.setteamFee(uint256) (#1496-1500) should emit an event for:
- teamFee = value (#1497)
- totalFees = RewardsFee.add(liquidityFee).add(teamFee).add(burnFee) (#1498)
Rematic.setBurnFee(uint256) (#1501-1505) should emit an event for:
- burnFee = value (#1502)
- totalFees = RewardsFee.add(liquidityFee).add(teamFee).add(burnFee) (#1503)
Rematic.setBuyBackBurnValue(uint256) (#1729-1732) should emit an event for:
- bnbValueForBuyBurn = value (#1731)
RematicDividendTracker.setLastProcessedIndex(uint256) (#1892-1894) should emit an event for:
- lastProcessedIndex = index (#1893)
Emit an event for critical parameter changes.

Additional information: link

Rematic.changeRewardToken(address)._token (#1385) lacks a zero-check on :
- REWARD = _token (#1387)
Rematic.updateUniswapV2Router(address)._uniswapV2Pair (#1445-1446) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1447)
Rematic.setMarketingWallet(address).wallet (#1474) lacks a zero-check on :
- _marketingWalletAddress = wallet (#1475)
DividendPayingToken.changeReward(address)._token (#1177) lacks a zero-check on :
- REWARD = _token (#1178)
Check that the address is not zero.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (#1159-1175) has external calls inside a loop: success = IERC20(REWARD).transfer(user,_withdrawableDividend) (#1164)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'Rematic._transfer(address,address,uint256).claims (#1703)' in Rematic._transfer(address,address,uint256) (#1618-1710) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,msg.sender) (#1704)
Variable 'Rematic._transfer(address,address,uint256).iterations (#1703)' in Rematic._transfer(address,address,uint256) (#1618-1710) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,msg.sender) (#1704)
Variable 'Rematic._transfer(address,address,uint256).lastProcessedIndex (#1703)' in Rematic._transfer(address,address,uint256) (#1618-1710) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,msg.sender) (#1704)
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 Rematic._transfer(address,address,uint256) (#1618-1710):
External calls:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- swap(contractTokenBalance.mul(burnFee).div(totalFees)) (#1651)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
External calls sending eth:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
State variables written after the call(s):
- swap(contractTokenBalance.mul(burnFee).div(totalFees)) (#1651)
- _allowances[owner][spender] = amount (#1011)
Reentrancy in Rematic._transfer(address,address,uint256) (#1618-1710):
External calls:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- swap(contractTokenBalance.mul(burnFee).div(totalFees)) (#1651)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- buyTokens(burnBnb) (#1655)
- uniswapV2Router.swapETHForExactTokens{value: bnbAmount}(0,path,deadWallet,block.timestamp) (#1786-1791)
- swapAndLiquify(swapTokens) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
External calls sending eth:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
- buyTokens(burnBnb) (#1655)
- uniswapV2Router.swapETHForExactTokens{value: bnbAmount}(0,path,deadWallet,block.timestamp) (#1786-1791)
- swapAndLiquify(swapTokens) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (#1659)
- _allowances[owner][spender] = amount (#1011)
Reentrancy in Rematic._transfer(address,address,uint256) (#1618-1710):
External calls:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- swap(contractTokenBalance.mul(burnFee).div(totalFees)) (#1651)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- buyTokens(burnBnb) (#1655)
- uniswapV2Router.swapETHForExactTokens{value: bnbAmount}(0,path,deadWallet,block.timestamp) (#1786-1791)
- swapAndLiquify(swapTokens) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- swapAndSendDividends(sellTokens) (#1661)
- success = IERC20(REWARD).transfer(address(dividendTracker),dividends) (#1833)
- dividendTracker.distributeRewardDividends(dividends) (#1836)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1805-1811)
External calls sending eth:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
- buyTokens(burnBnb) (#1655)
- uniswapV2Router.swapETHForExactTokens{value: bnbAmount}(0,path,deadWallet,block.timestamp) (#1786-1791)
- swapAndLiquify(swapTokens) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1661)
- _allowances[owner][spender] = amount (#1011)
- transactionLockTimeBuy[to] = block.timestamp (#1685)
- transactionLockTimeSell[from] = block.timestamp (#1678)
Reentrancy in Rematic.changeRewardToken(address) (#1385-1388):
External calls:
- dividendTracker.changeReward(_token) (#1386)
State variables written after the call(s):
- REWARD = _token (#1387)
Reentrancy in Rematic.constructor() (#1344-1379):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1350-1351)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1354)
- uniswapV2Router = _uniswapV2Router (#1353)
Reentrancy in Rematic.constructor() (#1344-1379):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1350-1351)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1356)
- dividendTracker.excludeFromDividends(pair) (#1522)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1359)
- dividendTracker.excludeFromDividends(address(this)) (#1360)
- dividendTracker.excludeFromDividends(owner()) (#1361)
- dividendTracker.excludeFromDividends(deadWallet) (#1362)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1363)
State variables written after the call(s):
- _mint(owner(),value.mul((10 ** 18))) (#1378)
- _balances[account] = _balances[account].add(amount) (#965)
- _excludedFromAntiWhale[msg.sender] = true (#1369)
- _excludedFromAntiWhale[address(0)] = true (#1370)
- _excludedFromAntiWhale[address(this)] = true (#1371)
- _excludedFromAntiWhale[deadWallet] = true (#1372)
- excludeFromFees(owner(),true) (#1366)
- _isExcludedFromFees[account] = excluded (#1452)
- excludeFromFees(_marketingWalletAddress,true) (#1367)
- _isExcludedFromFees[account] = excluded (#1452)
- excludeFromFees(address(this),true) (#1368)
- _isExcludedFromFees[account] = excluded (#1452)
- _mint(owner(),value.mul((10 ** 18))) (#1378)
- _totalSupply = _totalSupply.add(amount) (#964)
Reentrancy in RematicDividendTracker.processAccount(address,bool) (#2038-2048):
External calls:
- amount = _withdrawDividendOfUser(account) (#2039)
- success = IERC20(REWARD).transfer(user,_withdrawableDividend) (#1164)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#2042)
Reentrancy in Rematic.swapAndLiquify(uint256) (#1736-1757):
External calls:
- swapTokensForEth(half) (#1748)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- addLiquidity(otherHalf,newBalance) (#1754)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1754)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1754)
- _allowances[owner][spender] = amount (#1011)
Reentrancy in Rematic.updateUniswapV2Router(address) (#1441-1448):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1445-1446)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1447)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Rematic._setAutomatedMarketMakerPair(address,bool) (#1517-1526):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1522)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1525)
Reentrancy in Rematic._transfer(address,address,uint256) (#1618-1710):
External calls:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- swap(contractTokenBalance.mul(burnFee).div(totalFees)) (#1651)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
External calls sending eth:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1012)
- swap(contractTokenBalance.mul(burnFee).div(totalFees)) (#1651)
Reentrancy in Rematic._transfer(address,address,uint256) (#1618-1710):
External calls:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- swap(contractTokenBalance.mul(burnFee).div(totalFees)) (#1651)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- buyTokens(burnBnb) (#1655)
- uniswapV2Router.swapETHForExactTokens{value: bnbAmount}(0,path,deadWallet,block.timestamp) (#1786-1791)
- swapAndLiquify(swapTokens) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
External calls sending eth:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
- buyTokens(burnBnb) (#1655)
- uniswapV2Router.swapETHForExactTokens{value: bnbAmount}(0,path,deadWallet,block.timestamp) (#1786-1791)
- swapAndLiquify(swapTokens) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1012)
- swapAndLiquify(swapTokens) (#1659)
- SwapAndLiquify(half,newBalance,otherHalf) (#1756)
- swapAndLiquify(swapTokens) (#1659)
Reentrancy in Rematic._transfer(address,address,uint256) (#1618-1710):
External calls:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- swap(contractTokenBalance.mul(burnFee).div(totalFees)) (#1651)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- buyTokens(burnBnb) (#1655)
- uniswapV2Router.swapETHForExactTokens{value: bnbAmount}(0,path,deadWallet,block.timestamp) (#1786-1791)
- swapAndLiquify(swapTokens) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- swapAndSendDividends(sellTokens) (#1661)
- success = IERC20(REWARD).transfer(address(dividendTracker),dividends) (#1833)
- dividendTracker.distributeRewardDividends(dividends) (#1836)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1805-1811)
External calls sending eth:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
- buyTokens(burnBnb) (#1655)
- uniswapV2Router.swapETHForExactTokens{value: bnbAmount}(0,path,deadWallet,block.timestamp) (#1786-1791)
- swapAndLiquify(swapTokens) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1012)
- swapAndSendDividends(sellTokens) (#1661)
- SendDividends(tokens,dividends) (#1837)
- swapAndSendDividends(sellTokens) (#1661)
- Transfer(sender,recipient,amount) (#947)
- super._transfer(from,address(this),fees) (#1692)
- Transfer(sender,recipient,amount) (#947)
- super._transfer(from,to,amount) (#1695)
Reentrancy in Rematic._transfer(address,address,uint256) (#1618-1710):
External calls:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- swap(contractTokenBalance.mul(burnFee).div(totalFees)) (#1651)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- buyTokens(burnBnb) (#1655)
- uniswapV2Router.swapETHForExactTokens{value: bnbAmount}(0,path,deadWallet,block.timestamp) (#1786-1791)
- swapAndLiquify(swapTokens) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- swapAndSendDividends(sellTokens) (#1661)
- success = IERC20(REWARD).transfer(address(dividendTracker),dividends) (#1833)
- dividendTracker.distributeRewardDividends(dividends) (#1836)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1805-1811)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1697)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1698)
- dividendTracker.process(gas) (#1703-1708)
External calls sending eth:
- swapAndSendToFee(teamTokens) (#1648)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
- buyTokens(burnBnb) (#1655)
- uniswapV2Router.swapETHForExactTokens{value: bnbAmount}(0,path,deadWallet,block.timestamp) (#1786-1791)
- swapAndLiquify(swapTokens) (#1659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,msg.sender) (#1704)
Reentrancy in Rematic.constructor() (#1344-1379):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1350-1351)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1356)
- dividendTracker.excludeFromDividends(pair) (#1522)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1525)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1356)
Reentrancy in Rematic.constructor() (#1344-1379):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1350-1351)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1356)
- dividendTracker.excludeFromDividends(pair) (#1522)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1359)
- dividendTracker.excludeFromDividends(address(this)) (#1360)
- dividendTracker.excludeFromDividends(owner()) (#1361)
- dividendTracker.excludeFromDividends(deadWallet) (#1362)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1363)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1454)
- excludeFromFees(address(this),true) (#1368)
- ExcludeFromFees(account,excluded) (#1454)
- excludeFromFees(_marketingWalletAddress,true) (#1367)
- ExcludeFromFees(account,excluded) (#1454)
- excludeFromFees(owner(),true) (#1366)
- Transfer(address(0),account,amount) (#966)
- _mint(owner(),value.mul((10 ** 18))) (#1378)
Reentrancy in RematicDividendTracker.processAccount(address,bool) (#2038-2048):
External calls:
- amount = _withdrawDividendOfUser(account) (#2039)
- success = IERC20(REWARD).transfer(user,_withdrawableDividend) (#1164)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#2043)
Reentrancy in Rematic.processDividendTracker(uint256) (#1590-1593):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1591)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,msg.sender) (#1592)
Reentrancy in Rematic.swapAndLiquify(uint256) (#1736-1757):
External calls:
- swapTokensForEth(half) (#1748)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1769-1775)
- addLiquidity(otherHalf,newBalance) (#1754)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1754)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1820-1827)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1012)
- addLiquidity(otherHalf,newBalance) (#1754)
- SwapAndLiquify(half,newBalance,otherHalf) (#1756)
Reentrancy in Rematic.swapAndSendDividends(uint256) (#1830-1839):
External calls:
- swapTokensForREWARD(tokens) (#1831)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1805-1811)
- success = IERC20(REWARD).transfer(address(dividendTracker),dividends) (#1833)
- dividendTracker.distributeRewardDividends(dividends) (#1836)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (#1837)
Reentrancy in Rematic.updateDividendTracker(address) (#1400-1416):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1407)
- newDividendTracker.excludeFromDividends(address(this)) (#1408)
- newDividendTracker.excludeFromDividends(owner()) (#1409)
- newDividendTracker.excludeFromDividends(deadWallet) (#1410)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1411)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1413)
Apply the check-effects-interactions pattern.

Additional information: link

Rematic._transfer(address,address,uint256) (#1618-1710) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp - transactionLockTimeSell[from] > timeBetweenSells,Wait before Sell!) (#1677)
- require(bool,string)(block.timestamp - transactionLockTimeBuy[to] > timeBetweenBuys,Wait before Buy!) (#1684)
RematicDividendTracker.getAccount(address) (#1906-1945) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1944)
RematicDividendTracker.canAutoClaim(uint256) (#1966-1972) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1967)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1971)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#18-21) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1219-1225) is never used and should be removed
SafeMath.mod(uint256,uint256) (#253-255) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#269-272) is never used and should be removed
SafeMathInt.abs(int256) (#116-119) is never used and should be removed
SafeMathInt.div(int256,int256) (#86-92) is never used and should be removed
SafeMathInt.mul(int256,int256) (#74-81) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Rematic.swapAndSendToFee(uint256) (#1712-1721):
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1717)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Router01.WETH() (#339) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#495) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#496) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#513) is not in mixedCase
Parameter DividendPayingToken.changeReward(address)._token (#1177) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1185) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1192) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1199) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1209) is not in mixedCase
Variable DividendPayingToken.REWARD (#1107) is not in mixedCase
Constant DividendPayingToken.magnitude (#1113) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter Rematic.changeRewardToken(address)._token (#1385) is not in mixedCase
Parameter Rematic.changeTimeSells(uint256)._value (#1390) is not in mixedCase
Parameter Rematic.changeTimeBuys(uint256)._value (#1394) is not in mixedCase
Variable Rematic.REWARD (#1275) is not in mixedCase
Variable Rematic._isBlacklisted (#1279) is not in mixedCase
Variable Rematic.RewardsFee (#1284) is not in mixedCase
Variable Rematic._marketingWalletAddress (#1290) is not in mixedCase
Parameter RematicDividendTracker.getAccount(address)._account (#1906) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#19)" inContext (#13-22)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#344) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#345)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1160) is too similar to RematicDividendTracker.getAccount(address).withdrawableDividends (#1911)
Prevent variables from having similar names.

Additional information: link

Rematic.constructor() (#1344-1379) uses literals with too many digits:
- value = 1000000000000000 (#1377)
Rematic.updateGasForProcessing(uint256) (#1528-1533) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,Rematic: gasForProcessing must be between 200,000 and 500,000) (#1529)
Rematic.slitherConstructorVariables() (#1263-1840) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#1273)
Rematic.slitherConstructorVariables() (#1263-1840) uses literals with too many digits:
- swapTokensAtAmount = 40000000 * (10 ** 18) (#1277)
Rematic.slitherConstructorVariables() (#1263-1840) uses literals with too many digits:
- gasForProcessing = 300000 (#1295)
Rematic.slitherConstructorVariables() (#1263-1840) uses literals with too many digits:
- bnbValueForBuyBurn = 1000000000000000 (#1297)
RematicDividendTracker.constructor() (#1862-1865) uses literals with too many digits:
- minimumTokenBalanceForDividends = 200000 * (10 ** 18) (#1864)
RematicDividendTracker.getAccountAtIndex(uint256) (#1947-1964) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1958)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#69) is never used in SafeMathInt (#67-126)
Remove unused state variables.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#316-319)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#325-329)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#563-565)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#567-572)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#574-577)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#581-583)
name() should be declared external:
- ERC20.name() (#787-789)
symbol() should be declared external:
- ERC20.symbol() (#795-797)
decimals() should be declared external:
- ERC20.decimals() (#812-814)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#838-841)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#846-848)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#857-860)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#875-883)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#897-900)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#916-919)
distributeRewardDividends(uint256) should be declared external:
- DividendPayingToken.distributeRewardDividends(uint256) (#1138-1149)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#1153-1155)
- RematicDividendTracker.withdrawDividend() (#1871-1873)
changeReward(address) should be declared external:
- DividendPayingToken.changeReward(address) (#1177-1179)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1185-1187)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1199-1201)
changeRewardToken(address) should be declared external:
- Rematic.changeRewardToken(address) (#1385-1388)
changeTimeSells(uint256) should be declared external:
- Rematic.changeTimeSells(uint256) (#1390-1393)
changeTimeBuys(uint256) should be declared external:
- Rematic.changeTimeBuys(uint256) (#1394-1397)
updateDividendTracker(address) should be declared external:
- Rematic.updateDividendTracker(address) (#1400-1416)
updateUniswapV2Router(address) should be declared external:
- Rematic.updateUniswapV2Router(address) (#1441-1448)
excludeFromAntiwhale(address,bool) should be declared external:
- Rematic.excludeFromAntiwhale(address,bool) (#1457-1460)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- Rematic.excludeMultipleAccountsFromFees(address[],bool) (#1462-1468)
setMaxTransfertAmountRate(uint256) should be declared external:
- Rematic.setMaxTransfertAmountRate(uint256) (#1485-1488)
isExcludedFromAntiwhale(address) should be declared external:
- Rematic.isExcludedFromAntiwhale(address) (#1507-1509)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- Rematic.setAutomatedMarketMakerPair(address,bool) (#1511-1515)
updateGasForProcessing(uint256) should be declared external:
- Rematic.updateGasForProcessing(uint256) (#1528-1533)
isExcludedFromFees(address) should be declared external:
- Rematic.isExcludedFromFees(address) (#1548-1550)
withdrawableDividendOf(address) should be declared external:
- Rematic.withdrawableDividendOf(address) (#1552-1554)
dividendTokenBalanceOf(address) should be declared external:
- Rematic.dividendTokenBalanceOf(address) (#1556-1558)
launchTrade() should be declared external:
- Rematic.launchTrade() (#1614-1616)
setBuyBackBurnValue(uint256) should be declared external:
- Rematic.setBuyBackBurnValue(uint256) (#1729-1732)
getAccountAtIndex(uint256) should be declared external:
- RematicDividendTracker.getAccountAtIndex(uint256) (#1947-1964)
process(uint256) should be declared external:
- RematicDividendTracker.process(uint256) (#1991-2036)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

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


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

No disclosed threats


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

Additional information: link


Unable to find whitepaper 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 price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for RMTX

News for RMTX