TRT.Finance introduces a revolutionary FAAS concept to the DeFi community
merging the profitable realm of blockchain farming with the transparency
TRTFINANCE.addLiquidity(uint256,uint256) (#1043-1056) sends eth to arbitrary user
Dangerous calls:
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
TRTFINANCE.airdrop(address) (#1449-1462) sends eth to arbitrary user
Dangerous calls:
- address(address(uint160(_refer))).transfer(referEth) (#1458)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in TRTFINANCE._transfer(address,address,uint256) (#957-988):
External calls:
- swapAndLiquify() (#967)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- swapAndLiquify() (#967)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
State variables written after the call(s):
- super._transfer(sender,recipient,amount) (#971)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#567)
- _balances[recipient] = _balances[recipient].add(amount) (#568)
- super._transfer(sender,BURN_ADDRESS,burnAmount) (#983)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#567)
- _balances[recipient] = _balances[recipient].add(amount) (#568)
- super._transfer(sender,address(this),liquidityAmount) (#984)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#567)
- _balances[recipient] = _balances[recipient].add(amount) (#568)
- super._transfer(sender,recipient,sendAmount) (#985)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#567)
- _balances[recipient] = _balances[recipient].add(amount) (#568)
Reentrancy in TRTFINANCE.airdrop(address) (#1449-1462):
External calls:
- _transfer(address(this),_msgSender(),_airdropToken) (#1451)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
- _transfer(address(this),_refer,referToken) (#1454)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- _transfer(address(this),_msgSender(),_airdropToken) (#1451)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- _transfer(address(this),_refer,referToken) (#1454)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
State variables written after the call(s):
- _transfer(address(this),_refer,referToken) (#1454)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#567)
- _balances[recipient] = _balances[recipient].add(amount) (#568)
- _transfer(address(this),_refer,referToken) (#1454)
- _inSwapAndLiquify = true (#925)
- _inSwapAndLiquify = false (#927)
- _transfer(address(this),_refer,referToken) (#1454)
- transferTaxRate = 0 (#932)
- transferTaxRate = _transferTaxRate (#934)
Reentrancy in TRTFINANCE.buy(address) (#1464-1480):
External calls:
- _transfer(address(this),_msgSender(),_token) (#1469)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
- _transfer(address(this),_refer,referToken) (#1472)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- _transfer(address(this),_msgSender(),_token) (#1469)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- _transfer(address(this),_refer,referToken) (#1472)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
State variables written after the call(s):
- _transfer(address(this),_refer,referToken) (#1472)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#567)
- _balances[recipient] = _balances[recipient].add(amount) (#568)
- _transfer(address(this),_refer,referToken) (#1472)
- _inSwapAndLiquify = true (#925)
- _inSwapAndLiquify = false (#927)
- _transfer(address(this),_refer,referToken) (#1472)
- transferTaxRate = 0 (#932)
- transferTaxRate = _transferTaxRate (#934)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
TRTFINANCE._writeCheckpoint(address,uint32,uint256,uint256) (#1358-1376) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (#1368)
Don't use strict equality to determine if an account has enough Ether or tokens.
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.
Contract ownership is not renounced (belongs to a wallet)
Redundant expression "this (#9)" inContext (#3-12)
Remove redundant statements if they congest code but offer no value.
Additional information: link
TRTFINANCE._transfer(address,address,uint256) (#957-988) performs a multiplication on the result of a division:
-taxAmount = amount.mul(transferTaxRate).div(10000) (#974)
-burnAmount = taxAmount.mul(burnRate).div(100) (#975)
Consider ordering multiplication before division.
Additional information: link
TRTFINANCE.addLiquidity(uint256,uint256) (#1043-1056) ignores return value by TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
Ensure that all the return values of the function calls are used.
Additional information: link
BEP20.constructor(string,string).name (#397) shadows:
- BEP20.name() (#413-415) (function)
- IBEP20.name() (#107) (function)
BEP20.constructor(string,string).symbol (#397) shadows:
- BEP20.symbol() (#421-423) (function)
- IBEP20.symbol() (#102) (function)
BEP20.allowance(address,address).owner (#462) shadows:
- Ownable.owner() (#49-51) (function)
BEP20._approve(address,address,uint256).owner (#621) shadows:
- Ownable.owner() (#49-51) (function)
TRTFINANCE.swapAndLiquify().maxTransferAmount (#993) shadows:
- TRTFINANCE.maxTransferAmount() (#1061-1063) (function)
Rename the local variables that shadow another component.
Additional information: link
TRTFINANCE.set(uint8,uint256) (#1419-1447) should emit an event for:
- _referEth = value (#1427)
- _referToken = value (#1429)
- _airdropEth = value (#1431)
- _airdropToken = value (#1433)
- salePrice = value (#1437)
- _airdorpBnb = value (#1440)
- _buyBnb = value (#1442)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in TRTFINANCE.airdrop(address) (#1449-1462):
External calls:
- _transfer(address(this),_msgSender(),_airdropToken) (#1451)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
- _transfer(address(this),_refer,referToken) (#1454)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- _transfer(address(this),_msgSender(),_airdropToken) (#1451)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- _transfer(address(this),_refer,referToken) (#1454)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
State variables written after the call(s):
- _transfer(address(this),_refer,referToken) (#1454)
- _allowances[owner][spender] = amount (#625)
Reentrancy in TRTFINANCE.buy(address) (#1464-1480):
External calls:
- _transfer(address(this),_msgSender(),_token) (#1469)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
- _transfer(address(this),_refer,referToken) (#1472)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- _transfer(address(this),_msgSender(),_token) (#1469)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- _transfer(address(this),_refer,referToken) (#1472)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
State variables written after the call(s):
- _transfer(address(this),_refer,referToken) (#1472)
- _allowances[owner][spender] = amount (#625)
Reentrancy in TRTFINANCE.swapAndLiquify() (#991-1021):
External calls:
- swapTokensForEth(half) (#1011)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
- addLiquidity(otherHalf,newBalance) (#1017)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1017)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1017)
- _allowances[owner][spender] = amount (#625)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in TRTFINANCE._transfer(address,address,uint256) (#957-988):
External calls:
- swapAndLiquify() (#967)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- swapAndLiquify() (#967)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#569)
- super._transfer(sender,recipient,amount) (#971)
- Transfer(sender,recipient,amount) (#569)
- super._transfer(sender,recipient,sendAmount) (#985)
- Transfer(sender,recipient,amount) (#569)
- super._transfer(sender,address(this),liquidityAmount) (#984)
- Transfer(sender,recipient,amount) (#569)
- super._transfer(sender,BURN_ADDRESS,burnAmount) (#983)
Reentrancy in TRTFINANCE.airdrop(address) (#1449-1462):
External calls:
- _transfer(address(this),_msgSender(),_airdropToken) (#1451)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
- _transfer(address(this),_refer,referToken) (#1454)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- _transfer(address(this),_msgSender(),_airdropToken) (#1451)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- _transfer(address(this),_refer,referToken) (#1454)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#626)
- _transfer(address(this),_refer,referToken) (#1454)
- SwapAndLiquify(half,newBalance,otherHalf) (#1019)
- _transfer(address(this),_refer,referToken) (#1454)
- Transfer(sender,recipient,amount) (#569)
- _transfer(address(this),_refer,referToken) (#1454)
Reentrancy in TRTFINANCE.buy(address) (#1464-1480):
External calls:
- _transfer(address(this),_msgSender(),_token) (#1469)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
- _transfer(address(this),_refer,referToken) (#1472)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- _transfer(address(this),_msgSender(),_token) (#1469)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
- _transfer(address(this),_refer,referToken) (#1472)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#626)
- _transfer(address(this),_refer,referToken) (#1472)
- SwapAndLiquify(half,newBalance,otherHalf) (#1019)
- _transfer(address(this),_refer,referToken) (#1472)
- Transfer(sender,recipient,amount) (#569)
- _transfer(address(this),_refer,referToken) (#1472)
Reentrancy in TRTFINANCE.swapAndLiquify() (#991-1021):
External calls:
- swapTokensForEth(half) (#1011)
- TRTRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
- addLiquidity(otherHalf,newBalance) (#1017)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1017)
- TRTRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1048-1055)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#626)
- addLiquidity(otherHalf,newBalance) (#1017)
- SwapAndLiquify(half,newBalance,otherHalf) (#1019)
Apply the check-effects-interactions pattern.
Additional information: link
TRTFINANCE.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (#1224-1265) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now <= expiry,TRT::delegateBySig: signature expired) (#1263)
Avoid relying on block.timestamp.
Additional information: link
TRTFINANCE.getChainId() (#1383-1387) uses assembly
- INLINE ASM (#1385)
Do not use evm assembly.
Additional information: link
TRTFINANCE._transfer(address,address,uint256) (#957-988) compares to a boolean constant:
-swapAndLiquifyEnabled == true && _inSwapAndLiquify == false && address(TRTRouter) != address(0) && TRTPair != address(0) && sender != TRTPair && sender != owner() (#960-965)
TRTFINANCE.antiWhale(address,address,uint256) (#912-922) compares to a boolean constant:
-_excludedFromAntiWhale[sender] == false && _excludedFromAntiWhale[recipient] == false (#915-916)
Remove the equality to the boolean constant.
Additional information: link
Different versions of Solidity is used:
- Version used: ['0.6.12', '>=0.4.0', '>=0.5.0', '>=0.6.0<0.8.0', '>=0.6.2', '>=0.6.4']
- >=0.6.0<0.8.0 (#1)
- >=0.6.0<0.8.0 (#18)
- >=0.6.4 (#86)
- >=0.6.0<0.8.0 (#183)
- >=0.4.0 (#345)
- >=0.6.2 (#643)
- >=0.6.2 (#741)
- >=0.5.0 (#787)
- >=0.5.0 (#842)
- 0.6.12 (#862)
Use one Solidity version.
Additional information: link
BEP20._burn(address,uint256) (#600-606) is never used and should be removed
BEP20._burnFrom(address,uint256) (#635-638) is never used and should be removed
Context._msgData() (#8-11) is never used and should be removed
SafeMath.mod(uint256,uint256) (#319-321) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#335-338) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version>=0.6.0<0.8.0 (#1) is too complex
Pragma version>=0.6.0<0.8.0 (#18) is too complex
Pragma version>=0.6.4 (#86) allows old versions
Pragma version>=0.6.0<0.8.0 (#183) is too complex
Pragma version>=0.4.0 (#345) allows old versions
Pragma version>=0.6.2 (#643) allows old versions
Pragma version>=0.6.2 (#741) allows old versions
Pragma version>=0.5.0 (#787) allows old versions
Pragma version>=0.5.0 (#842) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Variable Ownable._swAuth (#34) is not in mixedCase
Function IUniswapV2Router01.WETH() (#647) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#804) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#805) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#822) is not in mixedCase
Parameter TRTFINANCE.mint(address,uint256)._to (#951) is not in mixedCase
Parameter TRTFINANCE.mint(address,uint256)._amount (#951) is not in mixedCase
Parameter TRTFINANCE.isExcludedFromAntiWhale(address)._account (#1068) is not in mixedCase
Parameter TRTFINANCE.updateTransferTaxRate(uint16)._transferTaxRate (#1079) is not in mixedCase
Parameter TRTFINANCE.updateBurnRate(uint16)._burnRate (#1089) is not in mixedCase
Parameter TRTFINANCE.updateMaxTransferAmountRate(uint16)._maxTransferAmountRate (#1099) is not in mixedCase
Parameter TRTFINANCE.updateMinAmountToLiquify(uint256)._minAmount (#1109) is not in mixedCase
Parameter TRTFINANCE.setExcludedFromAntiWhale(address,bool)._account (#1118) is not in mixedCase
Parameter TRTFINANCE.setExcludedFromAntiWhale(address,bool)._excluded (#1118) is not in mixedCase
Parameter TRTFINANCE.updateSwapAndLiquifyEnabled(bool)._enabled (#1126) is not in mixedCase
Parameter TRTFINANCE.updateTRTRouter(address)._router (#1135) is not in mixedCase
Parameter TRTFINANCE.airdrop(address)._refer (#1449) is not in mixedCase
Parameter TRTFINANCE.buy(address)._refer (#1464) is not in mixedCase
Variable TRTFINANCE.TRTRouter (#888) is not in mixedCase
Variable TRTFINANCE.TRTPair (#890) is not in mixedCase
Variable TRTFINANCE._delegates (#1166) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#652) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#653)
Prevent variables from having similar names.
Additional information: link
TRTFINANCE.slitherConstructorVariables() (#869-1483) uses literals with too many digits:
- _airdropEth = 2000000000000000 (#1400)
TRTFINANCE.slitherConstructorVariables() (#869-1483) uses literals with too many digits:
- _airdropToken = 20000000000000000000000000 (#1401)
TRTFINANCE.slitherConstructorVariables() (#869-1483) uses literals with too many digits:
- salePrice = 10000000000 (#1409)
TRTFINANCE.slitherConstructorConstantVariables() (#869-1483) uses literals with too many digits:
- BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD (#877)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
TRTFINANCE._auth (#1402) is never used in TRTFINANCE (#869-1483)
TRTFINANCE._auth2 (#1403) is never used in TRTFINANCE (#869-1483)
TRTFINANCE._authNum (#1404) is never used in TRTFINANCE (#869-1483)
Remove unused state variables.
Additional information: link
TRTFINANCE._auth (#1402) should be constant
TRTFINANCE._auth2 (#1403) should be constant
TRTFINANCE._authNum (#1404) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#68-71)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#77-81)
symbol() should be declared external:
- BEP20.symbol() (#421-423)
decimals() should be declared external:
- BEP20.decimals() (#428-430)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (#454-457)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (#462-464)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (#473-476)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (#490-498)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (#512-515)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (#531-534)
mint(uint256) should be declared external:
- BEP20.mint(uint256) (#544-547)
mint(address,uint256) should be declared external:
- TRTFINANCE.mint(address,uint256) (#951-954)
isExcludedFromAntiWhale(address) should be declared external:
- TRTFINANCE.isExcludedFromAntiWhale(address) (#1068-1070)
updateTransferTaxRate(uint16) should be declared external:
- TRTFINANCE.updateTransferTaxRate(uint16) (#1079-1083)
updateBurnRate(uint16) should be declared external:
- TRTFINANCE.updateBurnRate(uint16) (#1089-1093)
updateMaxTransferAmountRate(uint16) should be declared external:
- TRTFINANCE.updateMaxTransferAmountRate(uint16) (#1099-1103)
updateMinAmountToLiquify(uint256) should be declared external:
- TRTFINANCE.updateMinAmountToLiquify(uint256) (#1109-1112)
setExcludedFromAntiWhale(address,bool) should be declared external:
- TRTFINANCE.setExcludedFromAntiWhale(address,bool) (#1118-1120)
updateSwapAndLiquifyEnabled(bool) should be declared external:
- TRTFINANCE.updateSwapAndLiquifyEnabled(bool) (#1126-1129)
updateTRTRouter(address) should be declared external:
- TRTFINANCE.updateTRTRouter(address) (#1135-1140)
transferOperator(address) should be declared external:
- TRTFINANCE.transferOperator(address) (#1153-1157)
clearAllETH() should be declared external:
- TRTFINANCE.clearAllETH() (#1412-1415)
set(uint8,uint256) should be declared external:
- TRTFINANCE.set(uint8,uint256) (#1419-1447)
airdrop(address) should be declared external:
- TRTFINANCE.airdrop(address) (#1449-1462)
buy(address) should be declared external:
- TRTFINANCE.buy(address) (#1464-1480)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract name (TRT.FINANCE) 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.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find audit 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
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Telegram account has less than 100 subscribers
Twitter account has less than 100 followers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts