Fan token dedicated to Boba Fett fighting against a horde of gangsters as he tries to hold onto his new found kingdom he took from the Hutts.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
FETT.swapBnbForTokens(uint256) (#814-831) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
FETT.swapBack() (#900-936) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in FETT._transferFrom(address,address,uint256) (#725-768):
External calls:
- swapBack() (#740)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp.add(300)) (#907-935)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
External calls sending eth:
- swapBack() (#740)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#747-750)
- amountReceived = takeFee(sender,recipient,amount) (#752)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#793)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#753)
- buyBackTokens() (#743)
- inSwap = true (#679)
- inSwap = false (#681)
Apply the check-effects-interactions pattern.
Additional information: link
SafeToken.withdraw(address,uint256) (#254-256) ignores return value by IBEP20(_token).transfer(owner(),_amount) (#255)
DividendDistributor.distributeDividend(address) (#430-447) ignores return value by ADA.transfer(shareholder,amount) (#438)
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.
FETT.swapBack() (#900-936) ignores return value by address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
Ensure that the return value of a low-level call is checked or logged.
Additional information: link
FETT.swapBack().e (#927) 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
DividendDistributor.constructor(address).owner (#307) shadows:
- Ownable.owner() (#91-93) (function)
Rename the local variables that shadow another component.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#430-447):
External calls:
- ADA.transfer(shareholder,amount) (#438)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#440-442)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#443-445)
Reentrancy in DividendDistributor.process(uint256) (#392-418):
External calls:
- distributeDividend(shareholders[currentIndex]) (#410)
- ADA.transfer(shareholder,amount) (#438)
State variables written after the call(s):
- currentIndex ++ (#415)
Reentrancy in DividendDistributor.setShare(address,uint256) (#323-349):
External calls:
- distributeDividend(shareholder) (#329)
- ADA.transfer(shareholder,amount) (#438)
State variables written after the call(s):
- shares[shareholder].amount = amount (#345)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#346-348)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256,uint256) (#313-321) should emit an event for:
- minPeriod = _minPeriod (#318)
- minDistribution = _minDistribution (#319)
FETT.setDistributorSettings(uint256) (#720-723) should emit an event for:
- distributorGas = gas (#722)
FETT.setTxLimit(uint256) (#833-835) should emit an event for:
- _maxTxAmount = amount (#834)
FETT.setFees(uint256,uint256,uint256,uint256) (#858-870) should emit an event for:
- burnFee = _burnFee (#864)
- reflectionFee = _reflectionFee (#865)
- marketingFee = _marketingFee (#866)
- totalFee = _burnFee.add(_reflectionFee).add(_marketingFee) (#867)
- feeDenominator = _feeDenominator (#868)
FETT.setSwapBackSettings(bool,uint256) (#876-882) should emit an event for:
- swapThreshold = _amount (#881)
FETT.setBuyBackEnable(uint256,bool) (#938-944) should emit an event for:
- buyBackUpperLimit = _buyBackUpperLimit (#942)
Emit an event for critical parameter changes.
Additional information: link
Ownable.constructor().msgSender (#83) lacks a zero-check on :
- _owner = msgSender (#84)
FETT.constructor().owner_ (#692) lacks a zero-check on :
- marketing = owner_ (#702)
FETT.setMarketingWallet(address)._marketing (#872) lacks a zero-check on :
- marketing = _marketing (#873)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#430-447) has external calls inside a loop: ADA.transfer(shareholder,amount) (#438)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'FETT.swapBack().e (#927)' in FETT.swapBack() (#900-936) potentially used before declaration: SwapBackFailed(string(abi.encodePacked(SwapBack failed with error ,e))) (#928-930)
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 FETT.constructor() (#684-709):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#686)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = ~ uint256(0) (#687)
- _balances[owner_] = _totalSupply (#704)
- _maxTxAmount = _totalSupply (#708)
- distributor = new DividendDistributor(msg.sender) (#690)
- excludeDividend[pair] = true (#696)
- excludeDividend[address(this)] = true (#697)
- excludeDividend[DEAD] = true (#700)
- excludeFee[owner_] = true (#694)
- excludeFee[address(this)] = true (#698)
- excludeMaxTxn[owner_] = true (#695)
- excludeMaxTxn[address(this)] = true (#699)
- marketing = owner_ (#702)
- pairs[pair] = true (#688)
- swapThreshold = _totalSupply / 5000 (#707)
Reentrancy in DividendDistributor.deposit() (#373-390):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#380-382)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#387-389)
- totalDividends = totalDividends.add(amount) (#386)
Reentrancy in DividendDistributor.distributeDividend(address) (#430-447):
External calls:
- ADA.transfer(shareholder,amount) (#438)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#439)
Reentrancy in DividendDistributor.setShare(address,uint256) (#323-349):
External calls:
- distributeDividend(shareholder) (#329)
- ADA.transfer(shareholder,amount) (#438)
State variables written after the call(s):
- addShareholder(shareholder) (#336)
- shareholderIndexes[shareholder] = shareholders.length (#484)
- removeShareholder(shareholder) (#341)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#492-494)
- addShareholder(shareholder) (#336)
- shareholders.push(shareholder) (#485)
- removeShareholder(shareholder) (#341)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#489-491)
- shareholders.pop() (#495)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#344)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in FETT._transferFrom(address,address,uint256) (#725-768):
External calls:
- swapBack() (#740)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp.add(300)) (#907-935)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
External calls sending eth:
- swapBack() (#740)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
Event emitted after the call(s):
- SwapBNBForTokens(amount,path) (#830)
- buyBackTokens() (#743)
- Transfer(sender,address(this),feeAmount) (#794)
- amountReceived = takeFee(sender,recipient,amount) (#752)
Reentrancy in FETT._transferFrom(address,address,uint256) (#725-768):
External calls:
- swapBack() (#740)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp.add(300)) (#907-935)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
- distributor.setShare(sender,_balances[sender]) (#756)
- distributor.setShare(recipient,_balances[recipient]) (#759-761)
- distributor.process(distributorGas) (#764)
External calls sending eth:
- swapBack() (#740)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#766)
Reentrancy in FETT.constructor() (#684-709):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#686)
Event emitted after the call(s):
- Transfer(address(0),owner_,_totalSupply) (#705)
Reentrancy in FETT.swapBack() (#900-936):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp.add(300)) (#907-935)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
Event emitted after the call(s):
- SwapBackSuccess(swapThreshold) (#926)
Reentrancy in FETT.swapBack() (#900-936):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp.add(300)) (#907-935)
Event emitted after the call(s):
- SwapBackFailed(string(abi.encodePacked(SwapBack failed with error ,e))) (#928-930)
- SwapBackFailed(SwapBack failed without an error message from pancakeSwap) (#932-934)
Reentrancy in FETT.swapBnbForTokens(uint256) (#814-831):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
Event emitted after the call(s):
- SwapBNBForTokens(amount,path) (#830)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.getAccount(address) (#351-371) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#368-370)
DividendDistributor.shouldDistribute(address) (#420-428) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#425-427)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#392-418) has costly operations inside a loop:
- currentIndex = 0 (#406)
DividendDistributor.distributeDividend(address) (#430-447) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#437)
DividendDistributor.process(uint256) (#392-418) has costly operations inside a loop:
- currentIndex ++ (#415)
Use a local variable to hold the loop computation result.
Additional information: link
BASEToken._transferFrom(address,address,uint256) (#583-589) is never used and should be removed
Context._msgData() (#65-68) is never used and should be removed
Remove unused functions.
Additional information: link
FETT.totalFee (#666) is set pre-construction with a non-constant function or state variable:
- burnFee.add(reflectionFee).add(marketingFee)
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Low level call in FETT.swapBack() (#900-936):
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IDEXRouter.WETH() (#177) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._token (#254) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._amount (#254) is not in mixedCase
Parameter SafeToken.withdrawBNB(uint256)._amount (#258) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minPeriod (#314) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minDistribution (#315) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minimumTokenBalanceForDividends (#316) is not in mixedCase
Parameter DividendDistributor.getAccount(address)._account (#351) is not in mixedCase
Variable DividendDistributor._token (#265) is not in mixedCase
Variable DividendDistributor.ADA (#273) is not in mixedCase
Variable DividendDistributor.WBNB (#274) is not in mixedCase
Parameter LockToken.includeToWhiteList(address[])._users (#516) is not in mixedCase
Variable BASEToken.WBNB (#526) is not in mixedCase
Variable BASEToken.DEAD (#527) is not in mixedCase
Variable BASEToken.ZERO (#528) is not in mixedCase
Variable BASEToken._balances (#530) is not in mixedCase
Variable BASEToken._allowances (#531) is not in mixedCase
Variable BASEToken._name (#533) is not in mixedCase
Variable BASEToken._symbol (#534) is not in mixedCase
Variable BASEToken._decimals (#535) is not in mixedCase
Variable BASEToken._totalSupply (#536) is not in mixedCase
Parameter FETT.changeDex(address)._dex (#711) is not in mixedCase
Parameter FETT.setDex(address,bool)._dex (#715) is not in mixedCase
Parameter FETT.setFees(uint256,uint256,uint256,uint256)._burnFee (#859) is not in mixedCase
Parameter FETT.setFees(uint256,uint256,uint256,uint256)._reflectionFee (#860) is not in mixedCase
Parameter FETT.setFees(uint256,uint256,uint256,uint256)._marketingFee (#861) is not in mixedCase
Parameter FETT.setFees(uint256,uint256,uint256,uint256)._feeDenominator (#862) is not in mixedCase
Parameter FETT.setMarketingWallet(address)._marketing (#872) is not in mixedCase
Parameter FETT.setSwapBackSettings(bool,uint256)._enabled (#876) is not in mixedCase
Parameter FETT.setSwapBackSettings(bool,uint256)._amount (#876) is not in mixedCase
Parameter FETT.setDistributionCriteria(uint256,uint256,uint256)._minPeriod (#885) is not in mixedCase
Parameter FETT.setDistributionCriteria(uint256,uint256,uint256)._minDistribution (#886) is not in mixedCase
Parameter FETT.setDistributionCriteria(uint256,uint256,uint256)._minimumTokenBalanceForDividends (#887) is not in mixedCase
Parameter FETT.setBuyBackEnable(uint256,bool)._buyBackUpperLimit (#938) is not in mixedCase
Variable FETT._maxTxAmount (#651) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#66)" inContext (#60-69)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#182) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#183)
Variable BASEToken._totalSupply (#536) is too similar to BASEToken.constructor(string,string,uint256,uint8).totalSupply_ (#541)
Prevent variables from having similar names.
Additional information: link
DividendDistributor.slitherConstructorVariables() (#263-497) uses literals with too many digits:
- minimumTokenBalanceForDividends = 10000000 * (10 ** 9) (#291)
FETT.setDistributorSettings(uint256) (#720-723) uses literals with too many digits:
- require(bool)(gas <= 1000000) (#721)
FETT.slitherConstructorVariables() (#639-947) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#527)
FETT.slitherConstructorVariables() (#639-947) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#528)
FETT.slitherConstructorVariables() (#639-947) uses literals with too many digits:
- distributorGas = 500000 (#661)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BASEToken.DEAD (#527) should be constant
BASEToken.WBNB (#526) should be constant
BASEToken.ZERO (#528) should be constant
DividendDistributor.WBNB (#274) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#287) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#110-113)
getAccount(address) should be declared external:
- DividendDistributor.getAccount(address) (#351-371)
approve(address,uint256) should be declared external:
- BASEToken.approve(address,uint256) (#552-560)
getCirculatingSupply() should be declared external:
- BASEToken.getCirculatingSupply() (#591-593)
changeDex(address) should be declared external:
- FETT.changeDex(address) (#711-713)
setDex(address,bool) should be declared external:
- FETT.setDex(address,bool) (#715-718)
setBuyBackEnable(uint256,bool) should be declared external:
- FETT.setBuyBackEnable(uint256,bool) (#938-944)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Contract has 11% buy tax and 11% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
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 whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Young tokens have high risks of scam / price dump / death
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
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts