Seed Finance Token Logo

SEED [Seed Finance] Token

ALERT: unclassified scam

About SEED

Listings

Not Found
Token 2 years

Website

Not Found

Seed Contract:
0x128cEAc02deBFaBbC77b16e642e9d534e38e9cc1

Telegram:
https://t.co/Pp3BP4sRRs

#seed #cryptocurrency

Social

Laser Scorebeta Last Audit: 16 November 2022

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


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

TokenContract.addLiquidity(uint256,uint256) (#872-885) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in TokenContract._transfer(address,address,uint256) (#794-828):
External calls:
- swapAndLiquify(balanceOf(address(this))) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#862-868)
External calls sending eth:
- swapAndLiquify(balanceOf(address(this))) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#827)
- _rOwned[to] = _rOwned[to].add(rAmount) (#763)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#956)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#947)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#967)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#948)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#977)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#958)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#968)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#979)
- _tokenTransfer(from,to,amount,takeFee) (#827)
- _rTotal = _rTotal.sub(rFee) (#706)
- _tokenTransfer(from,to,amount,takeFee) (#827)
- _tOwned[to] = _tOwned[to].add(amount) (#765)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#976)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#966)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#957)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#978)
Apply the check-effects-interactions pattern.

Additional information: link

TokenContract.withdrawStuckToken(address,address) (#895-898) ignores return value by IERC20(token).transfer(recipient,IERC20(token).balanceOf(address(this))) (#897)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Contract creator or owner is blacklisted for past scams


Contract ownership is not renounced (belongs to a wallet)


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.

TokenContract.slitherConstructorVariables() (#513-985) uses literals with too many digits:
- _tTotal = 5000000000000 * 10 ** 18 (#524)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

TokenContract.addLiquidity(uint256,uint256) (#872-885) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
Ensure that all the return values of the function calls are used.

Additional information: link

TokenContract._approve(address,address,uint256).owner (#786) shadows:
- Ownable.owner() (#335-337) (function)
TokenContract.allowance(address,address).owner (#611) shadows:
- Ownable.owner() (#335-337) (function)
Rename the local variables that shadow another component.

Additional information: link

TokenContract.setSellFeePercent(uint256,uint256,uint256) (#683-688) should emit an event for:
- _sReward = reflect (#685)
- _sDevfee = dev (#686)
- _sRfuel = liquid (#687)
TokenContract.setBuyFeePercent(uint256,uint256,uint256) (#676-681) should emit an event for:
- _bReward = reflect (#678)
- _bDevfee = dev (#679)
- _bRfuel = liquid (#680)
Emit an event for critical parameter changes.

Additional information: link

TokenContract.updateRouter(address)._uniswapV2Pair (#906-907) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#908)
TokenContract.setdevWallet(address).wallet (#672) lacks a zero-check on :
- devWallet = wallet (#673)
Check that the address is not zero.

Additional information: link

Reentrancy in TokenContract.transferFrom(address,address,uint256) (#620-624):
External calls:
- _transfer(sender,recipient,amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#862-868)
External calls sending eth:
- _transfer(sender,recipient,amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#622)
- _allowances[owner][spender] = amount (#790)
Reentrancy in TokenContract.updateRouter(address) (#900-909):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#906-907)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#908)
Reentrancy in TokenContract._transfer(address,address,uint256) (#794-828):
External calls:
- swapAndLiquify(balanceOf(address(this))) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#862-868)
External calls sending eth:
- swapAndLiquify(balanceOf(address(this))) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#827)
- _tTotalDistributedToken = _tTotalDistributedToken.add(tFee) (#707)
- _tokenTransfer(from,to,amount,takeFee) (#827)
- currentDevFee = 0 (#915)
- currentDevFee = _bDevfee (#919)
- currentDevFee = _sDevfee (#923)
- currentDevFee = 0 (#927)
- _tokenTransfer(from,to,amount,takeFee) (#827)
- currentLiquidNDevFee = currentDevFee + currentLiquidityFee (#930)
- _tokenTransfer(from,to,amount,takeFee) (#827)
- currentLiquidityFee = 0 (#916)
- currentLiquidityFee = _bRfuel (#920)
- currentLiquidityFee = _sRfuel (#924)
- currentLiquidityFee = 0 (#928)
- _tokenTransfer(from,to,amount,takeFee) (#827)
- currentRefectionFee = 0 (#914)
- currentRefectionFee = _bReward (#918)
- currentRefectionFee = _sReward (#922)
- currentRefectionFee = 0 (#926)
Reentrancy in TokenContract.swapAndLiquify(uint256) (#830-851):
External calls:
- swapTokensForEth(half) (#842)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#862-868)
- addLiquidity(otherHalf,newBalance) (#848)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#848)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#848)
- _allowances[owner][spender] = amount (#790)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in TokenContract.transferFrom(address,address,uint256) (#620-624):
External calls:
- _transfer(sender,recipient,amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#862-868)
External calls sending eth:
- _transfer(sender,recipient,amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#791)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#622)
Reentrancy in TokenContract._transfer(address,address,uint256) (#794-828):
External calls:
- swapAndLiquify(balanceOf(address(this))) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#862-868)
External calls sending eth:
- swapAndLiquify(balanceOf(address(this))) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
Event emitted after the call(s):
- Transfer(from,to,amount) (#767)
- _tokenTransfer(from,to,amount,takeFee) (#827)
- Transfer(sender,recipient,tTransferAmount) (#951)
- _tokenTransfer(from,to,amount,takeFee) (#827)
- Transfer(sender,recipient,tTransferAmount) (#961)
- _tokenTransfer(from,to,amount,takeFee) (#827)
- Transfer(sender,recipient,tTransferAmount) (#971)
- _tokenTransfer(from,to,amount,takeFee) (#827)
- Transfer(sender,recipient,tTransferAmount) (#982)
- _tokenTransfer(from,to,amount,takeFee) (#827)
Reentrancy in TokenContract.swapAndLiquify(uint256) (#830-851):
External calls:
- swapTokensForEth(half) (#842)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#862-868)
- addLiquidity(otherHalf,newBalance) (#848)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#848)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#877-884)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#791)
- addLiquidity(otherHalf,newBalance) (#848)
- SwapAndLiquify(half,newBalance,otherHalf) (#850)
Apply the check-effects-interactions pattern.

Additional information: link

TokenContract.includeInReward(address) (#659-670) has costly operations inside a loop:
- _excluded.pop() (#666)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#507-510) is never used and should be removed
Context._msgData() (#27-30) is never used and should be removed
SafeMath.mod(uint256,uint256) (#491-493) is never used and should be removed
Remove unused functions.

Additional information: link

TokenContract._rTotal (#525) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
TokenContract.currentLiquidNDevFee (#540) is set pre-construction with a non-constant function or state variable:
- currentDevFee.add(currentLiquidityFee)
TokenContract.numTokensSellToAddToLiquidity (#549) is set pre-construction with a non-constant function or state variable:
- _tTotal / 1000
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.8.0 (#3) allows old versions
solc-0.8.0 is not recommended for deployment
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

Parameter TokenContract.process_Tokens_Now(uint256).percent_Of_Tokens_To_Process (#887) is not in mixedCase
Parameter TokenContract.calculateReflectionFee(uint256)._amount (#770) is not in mixedCase
Variable TokenContract._sReward (#534) is not in mixedCase
Variable TokenContract._bDevfee (#532) is not in mixedCase
Function TokenContract.process_Tokens_Now(uint256) (#887-893) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#282) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#299) is not in mixedCase
Variable TokenContract._bReward (#531) is not in mixedCase
Parameter TokenContract.calculateLiquidNDevFee(uint256)._amount (#776) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#281) is not in mixedCase
Variable TokenContract._sDevfee (#535) is not in mixedCase
Variable TokenContract._sRfuel (#536) is not in mixedCase
Parameter TokenContract.setSwapAndLiquifyEnabled(bool)._enabled (#698) is not in mixedCase
Function IUniswapV2Router01.WETH() (#114) is not in mixedCase
Variable TokenContract._bRfuel (#533) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#975) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#719)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNDevFee (#726) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tLiquidNDevFee (#975)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#946) is too similar to TokenContract._getValues(uint256).tTransferAmount (#711)
Variable TokenContract._getValues(uint256).rTransferAmount (#712) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#965)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#727) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#965)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#955) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#955)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#946) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#946)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#965) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#719)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#965) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#975)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#965) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#946)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#955) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#719)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#955) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#946)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#955) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#965)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNDevFee (#726) is too similar to TokenContract._getTValues(uint256).tLiquidNDevFee (#718)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#955) is too similar to TokenContract._getValues(uint256).tTransferAmount (#711)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNDevFee (#726) is too similar to TokenContract._transferToExcluded(address,address,uint256).tLiquidNDevFee (#955)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#727) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#946)
Variable TokenContract._getValues(uint256).rTransferAmount (#712) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#955)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#975) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#975)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNDevFee (#726) is too similar to TokenContract._takeLiquidNDevFee(uint256,address).tLiquidNDevFee (#749)
Variable TokenContract._getValues(uint256).rTransferAmount (#712) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#946)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNDevFee (#726) is too similar to TokenContract._transferStandard(address,address,uint256).tLiquidNDevFee (#946)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#727) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#719)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#946) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#719)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNDevFee (#726) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tLiquidNDevFee (#965)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#955) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#975)
Variable TokenContract._getValues(uint256).rTransferAmount (#712) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#719)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#975) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#946)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#975) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#965)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#946) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#975)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#975) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#955)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#727) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#955)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#946) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#955)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#119) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#120)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNDevFee (#726) is too similar to TokenContract._getRValues(uint256,uint256,uint256,uint256).tLiquidNDevFee (#723)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#965) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#965)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNDevFee (#726) is too similar to TokenContract._getValues(uint256).tLiquidNDevFee (#711)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#727) is too similar to TokenContract._getValues(uint256).tTransferAmount (#711)
Variable TokenContract._getValues(uint256).rTransferAmount (#712) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#975)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#727) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#975)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#965) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#955)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#965) is too similar to TokenContract._getValues(uint256).tTransferAmount (#711)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#975) is too similar to TokenContract._getValues(uint256).tTransferAmount (#711)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#946) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#965)
Variable TokenContract._getValues(uint256).rTransferAmount (#712) is too similar to TokenContract._getValues(uint256).tTransferAmount (#711)
Prevent variables from having similar names.

Additional information: link

TokenContract._tTotal (#524) should be constant
TokenContract._symbol (#529) should be constant
TokenContract._name (#528) should be constant
TokenContract._decimals (#530) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

totalSupply() should be declared external:
- TokenContract.totalSupply() (#597-599)
name() should be declared external:
- TokenContract.name() (#585-587)
symbol() should be declared external:
- TokenContract.symbol() (#589-591)
approve(address,uint256) should be declared external:
- TokenContract.approve(address,uint256) (#615-618)
transfer(address,uint256) should be declared external:
- TokenContract.transfer(address,uint256) (#606-609)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#354-357)
isExcludedFromReward(address) should be declared external:
- TokenContract.isExcludedFromReward(address) (#636-638)
allowance(address,address) should be declared external:
- TokenContract.allowance(address,address) (#611-613)
excludeFromReward(address) should be declared external:
- TokenContract.excludeFromReward(address) (#650-657)
totalDistributedFees() should be declared external:
- TokenContract.totalDistributedFees() (#640-642)
transferFrom(address,address,uint256) should be declared external:
- TokenContract.transferFrom(address,address,uint256) (#620-624)
isExcludedFromFee(address) should be declared external:
- TokenContract.isExcludedFromFee(address) (#782-784)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#363-367)
setBuyFeePercent(uint256,uint256,uint256) should be declared external:
- TokenContract.setBuyFeePercent(uint256,uint256,uint256) (#676-681)
increaseAllowance(address,uint256) should be declared external:
- TokenContract.increaseAllowance(address,uint256) (#626-629)
setSellFeePercent(uint256,uint256,uint256) should be declared external:
- TokenContract.setSellFeePercent(uint256,uint256,uint256) (#683-688)
setSwapAndLiquifyEnabled(bool) should be declared external:
- TokenContract.setSwapAndLiquifyEnabled(bool) (#698-701)
decreaseAllowance(address,uint256) should be declared external:
- TokenContract.decreaseAllowance(address,uint256) (#631-634)
setdevWallet(address) should be declared external:
- TokenContract.setdevWallet(address) (#672-674)
decimals() should be declared external:
- TokenContract.decimals() (#593-595)
excludeFromFee(address) should be declared external:
- TokenContract.excludeFromFee(address) (#690-692)
includeInFee(address) should be declared external:
- TokenContract.includeInFee(address) (#694-696)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.

Contract has 6% buy tax and 0% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account link seems to be invalid


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


Unable to find website, listings and other project-related information


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

Price for SEED

News for SEED