Supremium Token Logo

SUPR [Supremium] Token

ALERT: rug pull scam

About SUPR

Listings

Not Found
Token 2 years
white paper

Supremium is a deflationary token with reflections/rewards back to holders on every transaction.

Social

Laser Scorebeta Last Audit: 12 January 2022

report
Token seems to be a scam (type: rug pull scam).

Anti-Scam

Links


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

Reentrancy in Supremium._transfer(address,address,uint256) (#854-954):
External calls:
- buyAndBurnToken(contractBalance) (#873)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: EthAmount}(0,path,address(balancer),block.timestamp) (#1104-1109)
- swapTokensForEth() (#881)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1087-1093)
External calls sending eth:
- buyAndBurnToken(contractBalance) (#873)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: EthAmount}(0,path,address(balancer),block.timestamp) (#1104-1109)
State variables written after the call(s):
- transferAmount = collectBuyFee(sender,amount,rate) (#893)
- _burnFeeTotal = _burnFeeTotal.add(burnFee) (#1000)
- transferAmount = collectSellFee(sender,amount,rate) (#916)
- _burnFeeTotal = _burnFeeTotal.add(burnFee) (#1050)
- transferAmount = collectSellFee(sender,amount,rate) (#938)
- _burnFeeTotal = _burnFeeTotal.add(burnFee) (#1050)
- transferAmount = collectBuyFee(sender,amount,rate) (#893)
- _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(liquidityFee.mul(rate)) (#971)
- _reflectionBalance[marketingAddress] = _reflectionBalance[marketingAddress].add(marketingFee.mul(rate)) (#980)
- _reflectionBalance[buyAddress] = _reflectionBalance[buyAddress].add(buyFee.mul(rate)) (#988)
- _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate)) (#897)
- _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate)) (#898)
- transferAmount = collectSellFee(sender,amount,rate) (#916)
- _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(liquidityFee.mul(rate)) (#1022)
- _reflectionBalance[marketingAddress] = _reflectionBalance[marketingAddress].add(marketingFee.mul(rate)) (#1031)
- _reflectionBalance[sellAddress] = _reflectionBalance[sellAddress].add(sellFee.mul(rate)) (#1039)
- _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate)) (#920)
- _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate)) (#921)
- transferAmount = collectSellFee(sender,amount,rate) (#938)
- _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(liquidityFee.mul(rate)) (#1022)
- _reflectionBalance[marketingAddress] = _reflectionBalance[marketingAddress].add(marketingFee.mul(rate)) (#1031)
- _reflectionBalance[sellAddress] = _reflectionBalance[sellAddress].add(sellFee.mul(rate)) (#1039)
- _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate)) (#942)
- _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate)) (#943)
- transferAmount = collectBuyFee(sender,amount,rate) (#893)
- _reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate)) (#963)
- _reflectionTotal = _reflectionTotal.sub(burnFee.mul(rate)) (#999)
- transferAmount = collectSellFee(sender,amount,rate) (#916)
- _reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate)) (#1014)
- _reflectionTotal = _reflectionTotal.sub(burnFee.mul(rate)) (#1049)
- transferAmount = collectSellFee(sender,amount,rate) (#938)
- _reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate)) (#1014)
- _reflectionTotal = _reflectionTotal.sub(burnFee.mul(rate)) (#1049)
- _tokenBalance[sender] = _tokenBalance[sender].sub(amount) (#902)
- _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount) (#905)
- _tokenBalance[sender] = _tokenBalance[sender].sub(amount) (#925)
- _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount) (#928)
- _tokenBalance[sender] = _tokenBalance[sender].sub(amount) (#947)
- _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount) (#950)
- transferAmount = collectBuyFee(sender,amount,rate) (#893)
- _tokenTotal = _tokenTotal.sub(burnFee) (#998)
- transferAmount = collectSellFee(sender,amount,rate) (#916)
- _tokenTotal = _tokenTotal.sub(burnFee) (#1048)
- transferAmount = collectSellFee(sender,amount,rate) (#938)
- _tokenTotal = _tokenTotal.sub(burnFee) (#1048)
Apply the check-effects-interactions pattern.

Additional information: link

Supremium.rewardWallet (#657) is never initialized. It is used in:
- Supremium.excludeAccount(address) (#812-827)
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

Redundant expression "this (#21)" inContext (#15-24)
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 (#546) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#547)
Prevent variables from having similar names.

Additional information: link

Supremium.collectBuyFee(address,uint256,uint256) (#956-1005) performs a multiplication on the result of a division:
-taxFee = amount.mul(_taxFee).div(10 ** (_feeDecimal + 2)) (#961)
-_reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate)) (#963)
Supremium.collectBuyFee(address,uint256,uint256) (#956-1005) performs a multiplication on the result of a division:
-liquidityFee = amount.mul(_liquidityFee).div(10 ** (_feeDecimal + 2)) (#969)
-_reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(liquidityFee.mul(rate)) (#971)
Supremium.collectBuyFee(address,uint256,uint256) (#956-1005) performs a multiplication on the result of a division:
-marketingFee = amount.mul(_marketingFee).div(10 ** (_feeDecimal + 2)) (#978)
-_reflectionBalance[marketingAddress] = _reflectionBalance[marketingAddress].add(marketingFee.mul(rate)) (#980)
Supremium.collectBuyFee(address,uint256,uint256) (#956-1005) performs a multiplication on the result of a division:
-buyFee = amount.mul(_buyFee).div(10 ** (_feeDecimal + 2)) (#986)
-_reflectionBalance[buyAddress] = _reflectionBalance[buyAddress].add(buyFee.mul(rate)) (#988)
Supremium.collectBuyFee(address,uint256,uint256) (#956-1005) performs a multiplication on the result of a division:
-burnFee = amount.mul(_burnFee).div(10 ** (_feeDecimal + 2)) (#996)
-_reflectionTotal = _reflectionTotal.sub(burnFee.mul(rate)) (#999)
Supremium.collectSellFee(address,uint256,uint256) (#1007-1055) performs a multiplication on the result of a division:
-taxFee = amount.mul(_taxFee).div(10 ** (_feeDecimal + 2)) (#1012)
-_reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate)) (#1014)
Supremium.collectSellFee(address,uint256,uint256) (#1007-1055) performs a multiplication on the result of a division:
-liquidityFee = amount.mul(_liquidityFee).div(10 ** (_feeDecimal + 2)) (#1020)
-_reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(liquidityFee.mul(rate)) (#1022)
Supremium.collectSellFee(address,uint256,uint256) (#1007-1055) performs a multiplication on the result of a division:
-marketingFee = amount.mul(_marketingFee).div(10 ** (_feeDecimal + 2)) (#1029)
-_reflectionBalance[marketingAddress] = _reflectionBalance[marketingAddress].add(marketingFee.mul(rate)) (#1031)
Supremium.collectSellFee(address,uint256,uint256) (#1007-1055) performs a multiplication on the result of a division:
-sellFee = amount.mul(_sellFee).div(10 ** (_feeDecimal + 2)) (#1037)
-_reflectionBalance[sellAddress] = _reflectionBalance[sellAddress].add(sellFee.mul(rate)) (#1039)
Supremium.collectSellFee(address,uint256,uint256) (#1007-1055) performs a multiplication on the result of a division:
-burnFee = amount.mul(_burnFee).div(10 ** (_feeDecimal + 2)) (#1046)
-_reflectionTotal = _reflectionTotal.sub(burnFee.mul(rate)) (#1049)
Supremium.buyAndBurnToken(uint256) (#1112-1135) performs a multiplication on the result of a division:
-rewardForCaller = swapedTokens.mul(_rebalanceCallerFee).div(10 ** (_feeDecimal + 2)) (#1120)
-_reflectionBalance[_msgSender()] = _reflectionBalance[_msgSender()].add(rewardForCaller.mul(rate)) (#1125)
Consider ordering multiplication before division.

Additional information: link

Supremium.allowance(address,address).owner (#721) shadows:
- Ownable.owner() (#493-495) (function)
Supremium._approve(address,address,uint256).owner (#843) shadows:
- Ownable.owner() (#493-495) (function)
Rename the local variables that shadow another component.

Additional information: link

Supremium.setTaxFee(uint256) (#1151-1153) should emit an event for:
- _taxFee = fee (#1152)
Supremium.setSellFee(uint256) (#1155-1157) should emit an event for:
- _sellFee = fee (#1156)
Supremium.setBuyFee(uint256) (#1159-1161) should emit an event for:
- _buyFee = fee (#1160)
Supremium.setLiquidityFee(uint256) (#1163-1165) should emit an event for:
- _liquidityFee = fee (#1164)
Supremium.setRebalanceCallerFee(uint256) (#1171-1173) should emit an event for:
- _rebalanceCallerFee = fee (#1172)
Supremium.setMinTokensBeforeSwap(uint256) (#1183-1185) should emit an event for:
- minTokensBeforeSwap = amount (#1184)
Supremium.setMinEthBeforeSwap(uint256) (#1187-1189) should emit an event for:
- minEthBeforeSwap = amount (#1188)
Supremium.setRebalanceInterval(uint256) (#1191-1193) should emit an event for:
- rebalanceInterval = interval (#1192)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in Supremium._transfer(address,address,uint256) (#854-954):
External calls:
- buyAndBurnToken(contractBalance) (#873)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: EthAmount}(0,path,address(balancer),block.timestamp) (#1104-1109)
- swapTokensForEth() (#881)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1087-1093)
External calls sending eth:
- buyAndBurnToken(contractBalance) (#873)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: EthAmount}(0,path,address(balancer),block.timestamp) (#1104-1109)
State variables written after the call(s):
- swapTokensForEth() (#881)
- _allowances[owner][spender] = amount (#850)
- transferAmount = collectBuyFee(sender,amount,rate) (#893)
- _liquidityFeeTotal = _liquidityFeeTotal.add(liquidityFee) (#972)
- transferAmount = collectSellFee(sender,amount,rate) (#916)
- _liquidityFeeTotal = _liquidityFeeTotal.add(liquidityFee) (#1023)
- transferAmount = collectSellFee(sender,amount,rate) (#938)
- _liquidityFeeTotal = _liquidityFeeTotal.add(liquidityFee) (#1023)
- transferAmount = collectBuyFee(sender,amount,rate) (#893)
- _taxFeeTotal = _taxFeeTotal.add(taxFee) (#964)
- transferAmount = collectSellFee(sender,amount,rate) (#916)
- _taxFeeTotal = _taxFeeTotal.add(taxFee) (#1015)
- transferAmount = collectSellFee(sender,amount,rate) (#938)
- _taxFeeTotal = _taxFeeTotal.add(taxFee) (#1015)
Reentrancy in Supremium.buyAndBurnToken(uint256) (#1112-1135):
External calls:
- swapEthForTokens(contractBalance) (#1116)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: EthAmount}(0,path,address(balancer),block.timestamp) (#1104-1109)
State variables written after the call(s):
- _burnFeeTotal = _burnFeeTotal.add(amountToBurn) (#1128)
- _reflectionBalance[_msgSender()] = _reflectionBalance[_msgSender()].add(rewardForCaller.mul(rate)) (#1125)
- _reflectionBalance[address(balancer)] = 0 (#1126)
- _reflectionTotal = _reflectionTotal.sub(amountToBurn.mul(rate)) (#1130)
- _tokenTotal = _tokenTotal.sub(amountToBurn) (#1129)
Reentrancy in Supremium.constructor() (#672-688):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#676-677)
State variables written after the call(s):
- _reflectionBalance[owner()] = _reflectionTotal (#686)
- balancer = address(new Balancer()) (#681)
- isExcludedFromFee[owner()] = true (#683)
- isExcludedFromFee[address(this)] = true (#684)
- uniswapV2Router = _uniswapV2Router (#679)
Reentrancy in Supremium.transferFrom(address,address,uint256) (#739-748):
External calls:
- _transfer(sender,recipient,amount) (#744)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: EthAmount}(0,path,address(balancer),block.timestamp) (#1104-1109)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1087-1093)
External calls sending eth:
- _transfer(sender,recipient,amount) (#744)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: EthAmount}(0,path,address(balancer),block.timestamp) (#1104-1109)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#746)
- _allowances[owner][spender] = amount (#850)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Supremium._transfer(address,address,uint256) (#854-954):
External calls:
- buyAndBurnToken(contractBalance) (#873)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: EthAmount}(0,path,address(balancer),block.timestamp) (#1104-1109)
- swapTokensForEth() (#881)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1087-1093)
External calls sending eth:
- buyAndBurnToken(contractBalance) (#873)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: EthAmount}(0,path,address(balancer),block.timestamp) (#1104-1109)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#851)
- swapTokensForEth() (#881)
- SwapedTokenForEth(tokenAmount,ethAmount) (#1096)
- swapTokensForEth() (#881)
- Transfer(account,address(this),liquidityFee) (#1024)
- transferAmount = collectSellFee(sender,amount,rate) (#916)
- Transfer(account,address(this),liquidityFee) (#1024)
- transferAmount = collectSellFee(sender,amount,rate) (#938)
- Transfer(account,address(this),liquidityFee) (#973)
- transferAmount = collectBuyFee(sender,amount,rate) (#893)
- Transfer(account,marketingAddress,marketingFee) (#1032)
- transferAmount = collectSellFee(sender,amount,rate) (#938)
- Transfer(account,marketingAddress,marketingFee) (#981)
- transferAmount = collectBuyFee(sender,amount,rate) (#893)
- Transfer(account,marketingAddress,marketingFee) (#1032)
- transferAmount = collectSellFee(sender,amount,rate) (#916)
- Transfer(account,buyAddress,buyFee) (#990)
- transferAmount = collectBuyFee(sender,amount,rate) (#893)
- Transfer(account,sellAddress,sellFee) (#1041)
- transferAmount = collectSellFee(sender,amount,rate) (#916)
- Transfer(account,sellAddress,sellFee) (#1041)
- transferAmount = collectSellFee(sender,amount,rate) (#938)
- Transfer(account,address(0),burnFee) (#1051)
- transferAmount = collectSellFee(sender,amount,rate) (#916)
- Transfer(account,address(0),burnFee) (#1001)
- transferAmount = collectBuyFee(sender,amount,rate) (#893)
- Transfer(account,address(0),burnFee) (#1051)
- transferAmount = collectSellFee(sender,amount,rate) (#938)
- Transfer(sender,recipient,transferAmount) (#908)
- Transfer(sender,recipient,transferAmount) (#931)
- Transfer(sender,recipient,transferAmount) (#953)
Reentrancy in Supremium.buyAndBurnToken(uint256) (#1112-1135):
External calls:
- swapEthForTokens(contractBalance) (#1116)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: EthAmount}(0,path,address(balancer),block.timestamp) (#1104-1109)
Event emitted after the call(s):
- SwapedEthForTokens(contractBalance,swapedTokens,rewardForCaller,amountToBurn) (#1134)
- Transfer(address(balancer),_msgSender(),rewardForCaller) (#1132)
- Transfer(address(balancer),address(0),amountToBurn) (#1133)
Reentrancy in Supremium.constructor() (#672-688):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#676-677)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tokenTotal) (#687)
Reentrancy in Supremium.swapTokensForEth() (#1075-1097):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1087-1093)
Event emitted after the call(s):
- SwapedTokenForEth(tokenAmount,ethAmount) (#1096)
Reentrancy in Supremium.transferFrom(address,address,uint256) (#739-748):
External calls:
- _transfer(sender,recipient,amount) (#744)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: EthAmount}(0,path,address(balancer),block.timestamp) (#1104-1109)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1087-1093)
External calls sending eth:
- _transfer(sender,recipient,amount) (#744)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: EthAmount}(0,path,address(balancer),block.timestamp) (#1104-1109)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#851)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#746)
Apply the check-effects-interactions pattern.

Additional information: link

Supremium._transfer(address,address,uint256) (#854-954) uses timestamp for comparisons
Dangerous comparisons:
- now > lastRebalance + rebalanceInterval && rebalanceEnalbed && sender != address(uniswapV2Router) && contractBalance >= minEthBeforeSwap (#869-872)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#302-316) uses assembly
- INLINE ASM (#312-314)
Address._functionCallWithValue(address,bytes,uint256,string) (#431-459) uses assembly
- INLINE ASM (#451-454)
Do not use evm assembly.

Additional information: link

Supremium.includeAccount(address) (#829-840) has costly operations inside a loop:
- _excluded.pop() (#836)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#431-459) is never used and should be removed
Address.functionCall(address,bytes) (#366-371) is never used and should be removed
Address.functionCall(address,bytes,string) (#379-385) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#398-410) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#418-429) is never used and should be removed
Address.isContract(address) (#302-316) is never used and should be removed
Address.sendValue(address,uint256) (#334-346) is never used and should be removed
Context._msgData() (#20-23) is never used and should be removed
SafeMath.mod(uint256,uint256) (#255-257) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#271-278) is never used and should be removed
Remove unused functions.

Additional information: link

Supremium._reflectionTotal (#613) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tokenTotal))
Supremium.maxTxAmount (#648) is set pre-construction with a non-constant function or state variable:
- _tokenTotal
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

Pragma version^0.6.0 (#3) 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

Low level call in Address.sendValue(address,uint256) (#334-346):
- (success) = recipient.call{value: amount}() (#341)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#431-459):
- (success,returndata) = target.call{value: weiValue}(data) (#440-442)
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() (#542) is not in mixedCase
Parameter Supremium.swapEthForTokens(uint256).EthAmount (#1099) is not in mixedCase
Variable Supremium._reflectionBalance (#607) is not in mixedCase
Variable Supremium._tokenBalance (#608) is not in mixedCase
Variable Supremium._allowances (#609) is not in mixedCase
Variable Supremium._tokenTotal (#612) is not in mixedCase
Variable Supremium._reflectionTotal (#613) is not in mixedCase
Variable Supremium._isExcluded (#616) is not in mixedCase
Variable Supremium._excluded (#617) is not in mixedCase
Variable Supremium._feeDecimal (#620) is not in mixedCase
Variable Supremium._taxFee (#622) is not in mixedCase
Variable Supremium._liquidityFee (#623) is not in mixedCase
Variable Supremium._buyFee (#624) is not in mixedCase
Variable Supremium._sellFee (#625) is not in mixedCase
Variable Supremium._marketingFee (#626) is not in mixedCase
Variable Supremium._burnFee (#627) is not in mixedCase
Variable Supremium._liquidityRemoveFee (#633) is not in mixedCase
Variable Supremium._rebalanceCallerFee (#634) is not in mixedCase
Variable Supremium._swapCallerFee (#635) is not in mixedCase
Variable Supremium._taxFeeTotal (#637) is not in mixedCase
Variable Supremium._burnFeeTotal (#638) is not in mixedCase
Variable Supremium._liquidityFeeTotal (#639) is not in mixedCase
Variable Supremium._lpRewardFeeTotal (#640) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Supremium._burnFee (#627) should be constant
Supremium._decimals (#605) should be constant
Supremium._feeDecimal (#620) should be constant
Supremium._lpRewardFeeTotal (#640) should be constant
Supremium._marketingFee (#626) should be constant
Supremium._name (#603) should be constant
Supremium._symbol (#604) should be constant
Supremium.buyAddress (#630) should be constant
Supremium.marketingAddress (#629) should be constant
Supremium.rewardWallet (#657) should be constant
Supremium.sellAddress (#631) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#512-515)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#521-528)
name() should be declared external:
- Supremium.name() (#690-692)
symbol() should be declared external:
- Supremium.symbol() (#694-696)
decimals() should be declared external:
- Supremium.decimals() (#698-700)
totalSupply() should be declared external:
- Supremium.totalSupply() (#702-704)
transfer(address,uint256) should be declared external:
- Supremium.transfer(address,uint256) (#711-719)
allowance(address,address) should be declared external:
- Supremium.allowance(address,address) (#721-728)
approve(address,uint256) should be declared external:
- Supremium.approve(address,uint256) (#730-737)
transferFrom(address,address,uint256) should be declared external:
- Supremium.transferFrom(address,address,uint256) (#739-748)
increaseAllowance(address,uint256) should be declared external:
- Supremium.increaseAllowance(address,uint256) (#750-761)
decreaseAllowance(address,uint256) should be declared external:
- Supremium.decreaseAllowance(address,uint256) (#763-777)
isExcluded(address) should be declared external:
- Supremium.isExcluded(address) (#779-781)
reflectionFromToken(uint256,bool) should be declared external:
- Supremium.reflectionFromToken(uint256,bool) (#783-797)
setExcludedFromFee(address,bool) should be declared external:
- Supremium.setExcludedFromFee(address,bool) (#1142-1144)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Supremium.setSwapAndLiquifyEnabled(bool) (#1146-1149)
setTaxFee(uint256) should be declared external:
- Supremium.setTaxFee(uint256) (#1151-1153)
setSellFee(uint256) should be declared external:
- Supremium.setSellFee(uint256) (#1155-1157)
setBuyFee(uint256) should be declared external:
- Supremium.setBuyFee(uint256) (#1159-1161)
setLiquidityFee(uint256) should be declared external:
- Supremium.setLiquidityFee(uint256) (#1163-1165)
setLiquidityRemoveFee(uint256) should be declared external:
- Supremium.setLiquidityRemoveFee(uint256) (#1167-1169)
setRebalanceCallerFee(uint256) should be declared external:
- Supremium.setRebalanceCallerFee(uint256) (#1171-1173)
setSwapCallerFee(uint256) should be declared external:
- Supremium.setSwapCallerFee(uint256) (#1175-1177)
setMaxTxAmount(uint256) should be declared external:
- Supremium.setMaxTxAmount(uint256) (#1179-1181)
setMinTokensBeforeSwap(uint256) should be declared external:
- Supremium.setMinTokensBeforeSwap(uint256) (#1183-1185)
setMinEthBeforeSwap(uint256) should be declared external:
- Supremium.setMinEthBeforeSwap(uint256) (#1187-1189)
setRebalanceInterval(uint256) should be declared external:
- Supremium.setRebalanceInterval(uint256) (#1191-1193)
setRebalanceEnabled(bool) should be declared external:
- Supremium.setRebalanceEnabled(bool) (#1195-1197)
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.


Token is deployed only at one blockchain


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.


Telegram account link seems to be invalid


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

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

Additional information: link


Unable to find code repository for the project


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

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for SUPR