TetherMint Finance is a DeFi 3.0 protocol that has a Triple Rewards Ecosystem for you.
TetherMintFinance.swapBack() (#630-680) sends eth to arbitrary user
Dangerous calls:
- address(TMFTreasuryFeeReceiver).transfer(amountBNBTreasury) (#664)
- address(TMFSustainabilityFeeReceiver).transfer(amountBNBSustainability) (#665)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in TetherMintFinance._transferFrom(address,address,uint256) (#530-565):
External calls:
- swapBack() (#539)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#645-651)
- distributor.deposit{value: amountBNBReflection}() (#662)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,TMFAutoLiquidityReceiver,block.timestamp) (#670-677)
- _rebase_percentage(rebaseRate) (#542)
- pairContract.sync() (#453)
External calls sending eth:
- swapBack() (#539)
- distributor.deposit{value: amountBNBReflection}() (#662)
- address(TMFTreasuryFeeReceiver).transfer(amountBNBTreasury) (#664)
- address(TMFSustainabilityFeeReceiver).transfer(amountBNBSustainability) (#665)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,TMFAutoLiquidityReceiver,block.timestamp) (#670-677)
State variables written after the call(s):
- _lastRebasedTime = block.timestamp (#543)
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#547)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#550)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#549)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#588)
- _rebase_percentage(rebaseRate) (#542)
- rate = rSupply.div(_totalSupply) (#452)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#322-333) ignores return value by USDTRewards.transfer(shareholder,amount) (#328)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
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.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
TetherMintFinance.rebase_percentage(uint256) (#426-428) performs a multiplication on the result of a division:
-newSupply = rebase(0,uint256(_totalSupply.div(1000000000).mul(_percentage_base1000000000))) (#427)
TetherMintFinance._rebase_percentage(uint256) (#430-433) performs a multiplication on the result of a division:
-newSupply = rebase(0,uint256(_totalSupply.div(1000000000).mul(_percentage_base1000000000))) (#432)
TetherMintFinance.takeFee(address,uint256,bool) (#579-592) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(feeDenominator).mul(_finalFee) (#586)
TetherMintFinance.swapBack() (#630-680) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell.div(totalFee).mul(TMFLiquidityProtocolFee).div(2) (#633)
TetherMintFinance.swapBack() (#630-680) performs a multiplication on the result of a division:
-amountToBurn = tokensToSell.div(totalFee).mul(TMFIncineratorFee) (#634)
TetherMintFinance.setSwapBackSettings(bool,uint256) (#702-705) performs a multiplication on the result of a division:
-swapThreshold = rSupply.div(100000).mul(_percentage_base100000) (#704)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#322-333):
External calls:
- USDTRewards.transfer(shareholder,amount) (#328)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#330)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#331)
Reentrancy in DividendDistributor.process(uint256) (#291-315):
External calls:
- distributeDividend(shareholders[currentIndex]) (#307)
- USDTRewards.transfer(shareholder,amount) (#328)
State variables written after the call(s):
- currentIndex ++ (#312)
Reentrancy in DividendDistributor.setShare(address,uint256) (#255-269):
External calls:
- distributeDividend(shareholder) (#257)
- USDTRewards.transfer(shareholder,amount) (#328)
State variables written after the call(s):
- shares[shareholder].amount = amount (#267)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#268)
Apply the check-effects-interactions pattern.
Additional information: link
TetherMintFinance.swapBack() (#630-680) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,TMFAutoLiquidityReceiver,block.timestamp) (#670-677)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#250-253) should emit an event for:
- minPeriod = _minPeriod (#251)
- minDistribution = _minDistribution (#252)
TetherMintFinance.setSwapBackSettings(bool,uint256) (#702-705) should emit an event for:
- swapThreshold = rSupply.div(100000).mul(_percentage_base100000) (#704)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).adr (#128) lacks a zero-check on :
- owner = adr (#129)
TetherMintFinance.setFeeReceivers(address,address,address)._TMFTreasuryFeeReceiver (#696) lacks a zero-check on :
- TMFTreasuryFeeReceiver = _TMFTreasuryFeeReceiver (#697)
TetherMintFinance.setFeeReceivers(address,address,address)._TMFSustainabilityFeeReceiver (#696) lacks a zero-check on :
- TMFSustainabilityFeeReceiver = _TMFSustainabilityFeeReceiver (#698)
TetherMintFinance.setFeeReceivers(address,address,address)._TMFAutoLiquidityReceiver (#696) lacks a zero-check on :
- TMFAutoLiquidityReceiver = _TMFAutoLiquidityReceiver (#699)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#322-333) has external calls inside a loop: USDTRewards.transfer(shareholder,amount) (#328)
TetherMintFinance.multiTransfer(address[],uint256[]) (#738-762) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],balanceOf(addresses[i_scope_0])) (#754)
TetherMintFinance.multiTransfer_fixed(address[],uint256) (#764-783) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#775)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in TetherMintFinance.constructor(address) (#461-490):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#463)
State variables written after the call(s):
- TMFAutoLiquidityReceiver = 0x227e59B72E53dD947E42435e0A23A5d9d73D129f (#486)
- TMFSustainabilityFeeReceiver = 0xD01F50063b950Ff692972D999c39083DaB999Db4 (#485)
- TMFTreasuryFeeReceiver = 0xf119ee0F7729649b21b618d3b80e0c2D2287d6AA (#484)
- _allowances[address(this)][address(router)] = uint256(- 1) (#464)
- _lastRebasedTime = block.timestamp (#482)
- _rBalance[newOwner] = rSupply (#488)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#468)
- autoRebase = false (#480)
- distributor = new DividendDistributor(address(router)) (#472)
- isDividendExempt[pair] = true (#476)
- isDividendExempt[address(this)] = true (#477)
- isDividendExempt[DEAD] = true (#478)
- isFeeExempt[newOwner] = true (#474)
- pairContract = InterfaceLP(pair) (#467)
- rate = rSupply.div(_totalSupply) (#469)
- rebaseRate = 235500 (#481)
Reentrancy in DividendDistributor.deposit() (#271-289):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#278-283)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#288)
- totalDividends = totalDividends.add(amount) (#287)
Reentrancy in DividendDistributor.distributeDividend(address) (#322-333):
External calls:
- USDTRewards.transfer(shareholder,amount) (#328)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#329)
Reentrancy in DividendDistributor.setShare(address,uint256) (#255-269):
External calls:
- distributeDividend(shareholder) (#257)
- USDTRewards.transfer(shareholder,amount) (#328)
State variables written after the call(s):
- addShareholder(shareholder) (#261)
- shareholderIndexes[shareholder] = shareholders.length (#355)
- removeShareholder(shareholder) (#263)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#361)
- addShareholder(shareholder) (#261)
- shareholders.push(shareholder) (#356)
- removeShareholder(shareholder) (#263)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#360)
- shareholders.pop() (#362)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#266)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in TetherMintFinance._transferFrom(address,address,uint256) (#530-565):
External calls:
- swapBack() (#539)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#645-651)
- distributor.deposit{value: amountBNBReflection}() (#662)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,TMFAutoLiquidityReceiver,block.timestamp) (#670-677)
- _rebase_percentage(rebaseRate) (#542)
- pairContract.sync() (#453)
External calls sending eth:
- swapBack() (#539)
- distributor.deposit{value: amountBNBReflection}() (#662)
- address(TMFTreasuryFeeReceiver).transfer(amountBNBTreasury) (#664)
- address(TMFSustainabilityFeeReceiver).transfer(amountBNBSustainability) (#665)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,TMFAutoLiquidityReceiver,block.timestamp) (#670-677)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#455)
- _rebase_percentage(rebaseRate) (#542)
- Transfer(sender,address(this),feeAmount.div(rate)) (#589)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#549)
Reentrancy in TetherMintFinance._transferFrom(address,address,uint256) (#530-565):
External calls:
- swapBack() (#539)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#645-651)
- distributor.deposit{value: amountBNBReflection}() (#662)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,TMFAutoLiquidityReceiver,block.timestamp) (#670-677)
- _rebase_percentage(rebaseRate) (#542)
- pairContract.sync() (#453)
- distributor.setShare(sender,balanceOf(sender)) (#554)
- distributor.setShare(recipient,balanceOf(recipient)) (#558)
- distributor.process(distributorGas) (#561)
External calls sending eth:
- swapBack() (#539)
- distributor.deposit{value: amountBNBReflection}() (#662)
- address(TMFTreasuryFeeReceiver).transfer(amountBNBTreasury) (#664)
- address(TMFSustainabilityFeeReceiver).transfer(amountBNBSustainability) (#665)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,TMFAutoLiquidityReceiver,block.timestamp) (#670-677)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived.div(rate)) (#563)
Reentrancy in TetherMintFinance.constructor(address) (#461-490):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#463)
Event emitted after the call(s):
- Transfer(address(0),newOwner,_totalSupply) (#489)
Reentrancy in TetherMintFinance.rebase(uint256,uint256) (#436-457):
External calls:
- pairContract.sync() (#453)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#455)
Reentrancy in TetherMintFinance.swapBack() (#630-680):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#645-651)
- distributor.deposit{value: amountBNBReflection}() (#662)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,TMFAutoLiquidityReceiver,block.timestamp) (#670-677)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#662)
- address(TMFTreasuryFeeReceiver).transfer(amountBNBTreasury) (#664)
- address(TMFSustainabilityFeeReceiver).transfer(amountBNBSustainability) (#665)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,TMFAutoLiquidityReceiver,block.timestamp) (#670-677)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#678)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#317-320) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#318-319)
TetherMintFinance.shouldRebase() (#594-601) uses timestamp for comparisons
Dangerous comparisons:
- autoRebase && (_totalSupply < MAX_SUPPLY) && msg.sender != pair && ! inSwap && block.timestamp >= (_lastRebasedTime + 900) (#595-600)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#291-315) has costly operations inside a loop:
- currentIndex = 0 (#303)
DividendDistributor.distributeDividend(address) (#322-333) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#327)
DividendDistributor.process(uint256) (#291-315) has costly operations inside a loop:
- currentIndex ++ (#312)
Use a local variable to hold the loop computation result.
Additional information: link
SafeMathInt.abs(int256) (#71-74) is never used and should be removed
SafeMathInt.add(int256,int256) (#65-69) is never used and should be removed
SafeMathInt.div(int256,int256) (#53-57) is never used and should be removed
SafeMathInt.mul(int256,int256) (#45-51) is never used and should be removed
SafeMathInt.sub(int256,int256) (#59-63) is never used and should be removed
Remove unused functions.
Additional information: link
TetherMintFinance.totalFee (#389) is set pre-construction with a non-constant function or state variable:
- TMFSustainabilityProtocolFee + TMFTreasuryFee + USDTReflectorFee + TMFLiquidityProtocolFee + TMFIncineratorFee
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.7.4 (#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
Function IDEXRouter.WETH() (#147) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#250) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#250) is not in mixedCase
Variable DividendDistributor._token (#203) is not in mixedCase
Variable DividendDistributor.USDTRewards (#211) is not in mixedCase
Variable DividendDistributor.WBNB (#212) is not in mixedCase
Function TetherMintFinance.rebase_percentage(uint256) (#426-428) is not in mixedCase
Parameter TetherMintFinance.rebase_percentage(uint256)._percentage_base1000000000 (#426) is not in mixedCase
Function TetherMintFinance._rebase_percentage(uint256) (#430-433) is not in mixedCase
Parameter TetherMintFinance._rebase_percentage(uint256)._percentage_base1000000000 (#430) is not in mixedCase
Parameter TetherMintFinance.setRebaseRate(uint256).newRate_base1000000000 (#607) is not in mixedCase
Parameter TetherMintFinance.setFeeReceivers(address,address,address)._TMFTreasuryFeeReceiver (#696) is not in mixedCase
Parameter TetherMintFinance.setFeeReceivers(address,address,address)._TMFSustainabilityFeeReceiver (#696) is not in mixedCase
Parameter TetherMintFinance.setFeeReceivers(address,address,address)._TMFAutoLiquidityReceiver (#696) is not in mixedCase
Parameter TetherMintFinance.setSwapBackSettings(bool,uint256)._enabled (#702) is not in mixedCase
Parameter TetherMintFinance.setSwapBackSettings(bool,uint256)._percentage_base100000 (#702) is not in mixedCase
Parameter TetherMintFinance.setLP(address)._address (#711) is not in mixedCase
Parameter TetherMintFinance.setDistributionCriteria(uint256,uint256)._minPeriod (#720) is not in mixedCase
Parameter TetherMintFinance.setDistributionCriteria(uint256,uint256)._minDistribution (#720) is not in mixedCase
Function TetherMintFinance.multiTransfer_fixed(address[],uint256) (#764-783) is not in mixedCase
Variable TetherMintFinance.WBNB (#370) is not in mixedCase
Variable TetherMintFinance.DEAD (#371) is not in mixedCase
Variable TetherMintFinance.ZERO (#372) is not in mixedCase
Constant TetherMintFinance._name (#374) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TetherMintFinance._symbol (#375) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TetherMintFinance._decimals (#376) is not in UPPER_CASE_WITH_UNDERSCORES
Variable TetherMintFinance._rBalance (#378) is not in mixedCase
Variable TetherMintFinance._allowances (#379) is not in mixedCase
Variable TetherMintFinance.TMFLiquidityProtocolFee (#384) is not in mixedCase
Variable TetherMintFinance.TMFSustainabilityProtocolFee (#385) is not in mixedCase
Variable TetherMintFinance.USDTReflectorFee (#386) is not in mixedCase
Variable TetherMintFinance.TMFTreasuryFee (#387) is not in mixedCase
Variable TetherMintFinance.TMFIncineratorFee (#388) is not in mixedCase
Variable TetherMintFinance.TMFTreasuryFeeReceiver (#393) is not in mixedCase
Variable TetherMintFinance.TMFSustainabilityFeeReceiver (#394) is not in mixedCase
Variable TetherMintFinance.TMFAutoLiquidityReceiver (#395) is not in mixedCase
Variable TetherMintFinance.rebase_count (#414) is not in mixedCase
Variable TetherMintFinance._totalSupply (#416) is not in mixedCase
Constant TetherMintFinance.rSupply (#419) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Reentrancy in TetherMintFinance._transferFrom(address,address,uint256) (#530-565):
External calls:
- swapBack() (#539)
- address(TMFTreasuryFeeReceiver).transfer(amountBNBTreasury) (#664)
- address(TMFSustainabilityFeeReceiver).transfer(amountBNBSustainability) (#665)
External calls sending eth:
- swapBack() (#539)
- distributor.deposit{value: amountBNBReflection}() (#662)
- address(TMFTreasuryFeeReceiver).transfer(amountBNBTreasury) (#664)
- address(TMFSustainabilityFeeReceiver).transfer(amountBNBSustainability) (#665)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,TMFAutoLiquidityReceiver,block.timestamp) (#670-677)
State variables written after the call(s):
- _lastRebasedTime = block.timestamp (#543)
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#547)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#550)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#549)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#588)
- _rebase_percentage(rebaseRate) (#542)
- _totalSupply = _totalSupply.add(uint256(supplyDelta)) (#445)
- _totalSupply = MAX_SUPPLY (#449)
- _rebase_percentage(rebaseRate) (#542)
- rate = rSupply.div(_totalSupply) (#452)
- _rebase_percentage(rebaseRate) (#542)
- rebase_count ++ (#437)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#455)
- _rebase_percentage(rebaseRate) (#542)
- Transfer(sender,address(this),feeAmount.div(rate)) (#589)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#549)
- Transfer(sender,recipient,amountReceived.div(rate)) (#563)
Reentrancy in TetherMintFinance.swapBack() (#630-680):
External calls:
- address(TMFTreasuryFeeReceiver).transfer(amountBNBTreasury) (#664)
- address(TMFSustainabilityFeeReceiver).transfer(amountBNBSustainability) (#665)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#662)
- address(TMFTreasuryFeeReceiver).transfer(amountBNBTreasury) (#664)
- address(TMFSustainabilityFeeReceiver).transfer(amountBNBSustainability) (#665)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,TMFAutoLiquidityReceiver,block.timestamp) (#670-677)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#678)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#152) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#153)
Prevent variables from having similar names.
Additional information: link
TetherMintFinance.rebase_percentage(uint256) (#426-428) uses literals with too many digits:
- newSupply = rebase(0,uint256(_totalSupply.div(1000000000).mul(_percentage_base1000000000))) (#427)
TetherMintFinance._rebase_percentage(uint256) (#430-433) uses literals with too many digits:
- newSupply = rebase(0,uint256(_totalSupply.div(1000000000).mul(_percentage_base1000000000))) (#432)
TetherMintFinance.setSwapBackSettings(bool,uint256) (#702-705) uses literals with too many digits:
- swapThreshold = rSupply.div(100000).mul(_percentage_base100000) (#704)
TetherMintFinance.setDistributorSettings(uint256) (#724-727) uses literals with too many digits:
- require(bool)(gas < 900000) (#725)
TetherMintFinance.slitherConstructorVariables() (#366-788) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#371)
TetherMintFinance.slitherConstructorVariables() (#366-788) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#372)
TetherMintFinance.slitherConstructorVariables() (#366-788) uses literals with too many digits:
- distributorGas = 500000 (#404)
TetherMintFinance.slitherConstructorConstantVariables() (#366-788) uses literals with too many digits:
- INITIAL_FRAGMENTS_SUPPLY = 100000000 * (10 ** _decimals) (#412)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (#43) is never used in SafeMathInt (#41-75)
Remove unused state variables.
Additional information: link
DividendDistributor.WBNB (#212) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#225) should be constant
TetherMintFinance.DEAD (#371) should be constant
TetherMintFinance.TMFIncineratorFee (#388) should be constant
TetherMintFinance.TMFLiquidityProtocolFee (#384) should be constant
TetherMintFinance.TMFSustainabilityProtocolFee (#385) should be constant
TetherMintFinance.TMFTreasuryFee (#387) should be constant
TetherMintFinance.USDTReflectorFee (#386) should be constant
TetherMintFinance.WBNB (#370) should be constant
TetherMintFinance.ZERO (#372) should be constant
TetherMintFinance.feeDenominator (#390) should be constant
TetherMintFinance.sellFee (#391) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
authorize(address) should be declared external:
- Auth.authorize(address) (#112-114)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#116-118)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#128-132)
rebase_percentage(uint256) should be declared external:
- TetherMintFinance.rebase_percentage(uint256) (#426-428)
autoRebaseEnabled(bool) should be declared external:
- TetherMintFinance.autoRebaseEnabled(bool) (#603-605)
setRebaseRate(uint256) should be declared external:
- TetherMintFinance.setRebaseRate(uint256) (#607-609)
getCirculatingSupply() should be declared external:
- TetherMintFinance.getCirculatingSupply() (#729-731)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract ticker ($TMF) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
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 token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Telegram account has relatively few subscribers
Twitter account has relatively few followers
Unable to find Youtube account