The Seed Collector Token Logo

WORDS [The Seed Collector] Token

About WORDS

Listings

Token 19 months

A new take on blockchain gaming the world has never seen before. The Seed Collector is a post-apocalyptic zombie survival scavenger hunt. Try to stay alive, find the clues, and solve the hunt before the other players do. This will not be an easy task but will be worth it. The first episode of the game is ready and will be released at launch. Join our Telegram for more.

Social

Laser Scorebeta Last Audit: 21 April 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

WORDS._swapBack() (#921-965) sends eth to arbitrary user
Dangerous calls:
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#957)
- (prizeSuccess) = address(prizeFeeReceiver).call{gas: 30000,value: amountETHprize}() (#959)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountETHDev}() (#961)
WORDS.addLiquidity(uint256,uint256) (#967-981) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#970-977)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in WORDS._transfer(address,address,uint256) (#817-874):
External calls:
- _swapBack() (#866)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#970-977)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#940-946)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#957)
- (prizeSuccess) = address(prizeFeeReceiver).call{gas: 30000,value: amountETHprize}() (#959)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountETHDev}() (#961)
External calls sending eth:
- _swapBack() (#866)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#970-977)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#957)
- (prizeSuccess) = address(prizeFeeReceiver).call{gas: 30000,value: amountETHprize}() (#959)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountETHDev}() (#961)
State variables written after the call(s):
- _burn(from,amount) (#869)
- _balances[account] = accountBalance - amount (#402)
- _mint(to,amountReceived) (#871)
- _balances[account] += amount (#377)
- amountReceived = takeFee(to,amount) (#870)
- _balances[account] += amount (#377)
Apply the check-effects-interactions pattern.

Additional information: link

WORDS._totalSupply (#699) shadows:
- ERC20._totalSupply (#154)
Remove the state variable shadowing.

Additional information: link


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.


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

WORDS.constructor(string,string,uint8,uint256,address,address,uint256,uint256,uint256,uint256,uint256) (#747-804) performs a multiplication on the result of a division:
-_maxBuyTxAmount = _totalSupply / 10000 * _maxBuyTx (#788)
WORDS.constructor(string,string,uint8,uint256,address,address,uint256,uint256,uint256,uint256,uint256) (#747-804) performs a multiplication on the result of a division:
-_maxSellTxAmount = _totalSupply / 10000 * _maxSellTx (#789)
WORDS.constructor(string,string,uint8,uint256,address,address,uint256,uint256,uint256,uint256,uint256) (#747-804) performs a multiplication on the result of a division:
-_maxWalletToken = _totalSupply / 10000 * maxWalletToken_ (#790)
WORDS.constructor(string,string,uint8,uint256,address,address,uint256,uint256,uint256,uint256,uint256) (#747-804) performs a multiplication on the result of a division:
-swapThreshold = _totalSupply / 10000 * _swapThreshold (#792)
WORDS.constructor(string,string,uint8,uint256,address,address,uint256,uint256,uint256,uint256,uint256) (#747-804) performs a multiplication on the result of a division:
-maxSwapSize = _totalSupply / 10000 * _maxSwapSize (#793)
WORDS.takeFee(address,uint256) (#905-911) performs a multiplication on the result of a division:
-feeAmount = amount / 10000 * (totalFee) (#906)
WORDS._swapBack() (#921-965) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell / (totalFee) * (liquidityFee) / (2) (#931)
WORDS.setSwapBackSettings(bool,uint256,uint256) (#1033-1041) performs a multiplication on the result of a division:
-swapThreshold = _totalSupply / (10000) * (_percentage_min_base10000) (#1039)
WORDS.setSwapBackSettings(bool,uint256,uint256) (#1033-1041) performs a multiplication on the result of a division:
-maxSwapSize = _totalSupply / (10000) * (_percentage_max_base10000) (#1040)
WORDS.setMaxWalletPercent_base10000(uint256) (#1051-1053) performs a multiplication on the result of a division:
-_maxWalletToken = _totalSupply / (10000) * (value) (#1052)
WORDS.setMaxBuyTxPercent_base10000(uint256) (#1055-1057) performs a multiplication on the result of a division:
-_maxBuyTxAmount = _totalSupply / (10000) * (value) (#1056)
WORDS.setMaxSellTxPercent_base10000(uint256) (#1059-1061) performs a multiplication on the result of a division:
-_maxSellTxAmount = _totalSupply / (10000) * (value) (#1060)
Consider ordering multiplication before division.

Additional information: link

WORDS.addLiquidity(uint256,uint256) (#967-981) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#970-977)
Ensure that all the return values of the function calls are used.

Additional information: link

WORDS.setBuyFees(uint256[]) (#1007-1012) should emit an event for:
- BuytotalFee += buyFees[i] (#1010)
WORDS.setSellFees(uint256[]) (#1014-1019) should emit an event for:
- SelltotalFee += sellFees[i] (#1017)
WORDS.setSwapBackSettings(bool,uint256,uint256) (#1033-1041) should emit an event for:
- swapThreshold = _totalSupply / (10000) * (_percentage_min_base10000) (#1039)
- maxSwapSize = _totalSupply / (10000) * (_percentage_max_base10000) (#1040)
WORDS.setMaxWalletPercent_base10000(uint256) (#1051-1053) should emit an event for:
- _maxWalletToken = _totalSupply / (10000) * (value) (#1052)
WORDS.setMaxBuyTxPercent_base10000(uint256) (#1055-1057) should emit an event for:
- _maxBuyTxAmount = _totalSupply / (10000) * (value) (#1056)
WORDS.setMaxSellTxPercent_base10000(uint256) (#1059-1061) should emit an event for:
- _maxSellTxAmount = _totalSupply / (10000) * (value) (#1060)
Emit an event for critical parameter changes.

Additional information: link

WORDS.constructor(string,string,uint8,uint256,address,address,uint256,uint256,uint256,uint256,uint256).WETH_ (#753) lacks a zero-check on :
- WETH = WETH_ (#767)
WORDS.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#1022) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#1027)
WORDS.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#1024) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#1028)
WORDS.setFeeReceivers(address,address,address,address)._prizeFeeReceiver (#1025) lacks a zero-check on :
- prizeFeeReceiver = _prizeFeeReceiver (#1029)
WORDS.setFeeReceivers(address,address,address,address)._devFeeReceiver (#1023) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#1030)
Check that the address is not zero.

Additional information: link

Reentrancy in WORDS._transfer(address,address,uint256) (#817-874):
External calls:
- _swapBack() (#866)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#970-977)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#940-946)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#957)
- (prizeSuccess) = address(prizeFeeReceiver).call{gas: 30000,value: amountETHprize}() (#959)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountETHDev}() (#961)
External calls sending eth:
- _swapBack() (#866)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#970-977)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#957)
- (prizeSuccess) = address(prizeFeeReceiver).call{gas: 30000,value: amountETHprize}() (#959)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountETHDev}() (#961)
State variables written after the call(s):
- _burn(from,amount) (#869)
- _totalSupply -= amount (#404)
- _mint(to,amountReceived) (#871)
- _totalSupply += amount (#376)
- amountReceived = takeFee(to,amount) (#870)
- _totalSupply += amount (#376)
Reentrancy in WORDS.constructor(string,string,uint8,uint256,address,address,uint256,uint256,uint256,uint256,uint256) (#747-804):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WETH,address(this)) (#796)
State variables written after the call(s):
- _approve(address(this),address(router),type()(uint256).max) (#798)
- _allowances[owner][spender] = amount (#432)
- _mint(msg.sender,_totalSupply) (#803)
- _balances[account] += amount (#377)
- _mint(msg.sender,_totalSupply) (#803)
- _totalSupply += amount (#376)
- isFeeExempt[msg.sender] = true (#800)
- isTxLimitExempt[msg.sender] = true (#801)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in WORDS._swapBack() (#921-965):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#940-946)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#957)
- (prizeSuccess) = address(prizeFeeReceiver).call{gas: 30000,value: amountETHprize}() (#959)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountETHDev}() (#961)
- addLiquidity(amountToLiquify,amountETHLiquidity) (#964)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#970-977)
External calls sending eth:
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#957)
- (prizeSuccess) = address(prizeFeeReceiver).call{gas: 30000,value: amountETHprize}() (#959)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountETHDev}() (#961)
- addLiquidity(amountToLiquify,amountETHLiquidity) (#964)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#970-977)
Event emitted after the call(s):
- AutoLiquify(bnbAmount,tokenAmount) (#979)
- addLiquidity(amountToLiquify,amountETHLiquidity) (#964)
Reentrancy in WORDS._transfer(address,address,uint256) (#817-874):
External calls:
- _swapBack() (#866)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#970-977)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#940-946)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#957)
- (prizeSuccess) = address(prizeFeeReceiver).call{gas: 30000,value: amountETHprize}() (#959)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountETHDev}() (#961)
External calls sending eth:
- _swapBack() (#866)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#970-977)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#957)
- (prizeSuccess) = address(prizeFeeReceiver).call{gas: 30000,value: amountETHprize}() (#959)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountETHDev}() (#961)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#908)
- amountReceived = takeFee(to,amount) (#870)
- Transfer(address(0),account,amount) (#378)
- _mint(to,amountReceived) (#871)
- Transfer(address(0),account,amount) (#378)
- amountReceived = takeFee(to,amount) (#870)
- Transfer(account,address(0),amount) (#406)
- _burn(from,amount) (#869)
- Transfer(from,to,amountReceived) (#873)
Reentrancy in WORDS.addLiquidity(uint256,uint256) (#967-981):
External calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#970-977)
Event emitted after the call(s):
- AutoLiquify(bnbAmount,tokenAmount) (#979)
Reentrancy in WORDS.constructor(string,string,uint8,uint256,address,address,uint256,uint256,uint256,uint256,uint256) (#747-804):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WETH,address(this)) (#796)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#433)
- _approve(address(this),address(router),type()(uint256).max) (#798)
- Transfer(address(0),account,amount) (#378)
- _mint(msg.sender,_totalSupply) (#803)
Apply the check-effects-interactions pattern.

Additional information: link

WORDS.constructor(string,string,uint8,uint256,address,address,uint256,uint256,uint256,uint256,uint256) (#747-804) has costly operations inside a loop:
- BuytotalFee += buyFees[i] (#784)
WORDS.constructor(string,string,uint8,uint256,address,address,uint256,uint256,uint256,uint256,uint256) (#747-804) has costly operations inside a loop:
- SelltotalFee += sellFees[i] (#785)
WORDS.setBuyFees(uint256[]) (#1007-1012) has costly operations inside a loop:
- BuytotalFee += buyFees[i] (#1010)
WORDS.setSellFees(uint256[]) (#1014-1019) has costly operations inside a loop:
- SelltotalFee += sellFees[i] (#1017)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#143-145) is never used and should be removed
ERC20._transfer(address,address,uint256) (#340-360) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in WORDS._swapBack() (#921-965):
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#957)
- (prizeSuccess) = address(prizeFeeReceiver).call{gas: 30000,value: amountETHprize}() (#959)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountETHDev}() (#961)
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() (#637) is not in mixedCase
Parameter WORDS.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#1022) is not in mixedCase
Parameter WORDS.setFeeReceivers(address,address,address,address)._devFeeReceiver (#1023) is not in mixedCase
Parameter WORDS.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#1024) is not in mixedCase
Parameter WORDS.setFeeReceivers(address,address,address,address)._prizeFeeReceiver (#1025) is not in mixedCase
Parameter WORDS.setSwapBackSettings(bool,uint256,uint256)._enabled (#1034) is not in mixedCase
Parameter WORDS.setSwapBackSettings(bool,uint256,uint256)._percentage_min_base10000 (#1035) is not in mixedCase
Parameter WORDS.setSwapBackSettings(bool,uint256,uint256)._percentage_max_base10000 (#1036) is not in mixedCase
Function WORDS.setMaxWalletPercent_base10000(uint256) (#1051-1053) is not in mixedCase
Function WORDS.setMaxBuyTxPercent_base10000(uint256) (#1055-1057) is not in mixedCase
Function WORDS.setMaxSellTxPercent_base10000(uint256) (#1059-1061) is not in mixedCase
Variable WORDS.WETH (#693) is not in mixedCase
Variable WORDS.DEAD (#695) is not in mixedCase
Variable WORDS.ZERO (#696) is not in mixedCase
Variable WORDS.BuytotalFee (#717) is not in mixedCase
Variable WORDS.SelltotalFee (#718) is not in mixedCase
Variable WORDS._maxBuyTxAmount (#723) is not in mixedCase
Variable WORDS._maxSellTxAmount (#724) is not in mixedCase
Variable WORDS._maxWalletToken (#725) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#642) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#643)
Variable WORDS.setSwapBackSettings(bool,uint256,uint256)._percentage_max_base10000 (#1036) is too similar to WORDS.setSwapBackSettings(bool,uint256,uint256)._percentage_min_base10000 (#1035)
Variable WORDS._maxWalletToken (#725) is too similar to WORDS.constructor(string,string,uint8,uint256,address,address,uint256,uint256,uint256,uint256,uint256).maxWalletToken_ (#761)
Variable WORDS._totalSupply (#699) is too similar to WORDS.constructor(string,string,uint8,uint256,address,address,uint256,uint256,uint256,uint256,uint256).totalSupply_ (#751)
Prevent variables from having similar names.

Additional information: link

WORDS.slitherConstructorVariables() (#689-1083) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#695)
WORDS.slitherConstructorVariables() (#689-1083) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#696)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

WORDS.ZERO (#696) is never used in WORDS (#689-1083)
Remove unused state variables.

Additional information: link

WORDS.DEAD (#695) should be constant
WORDS.ZERO (#696) should be constant
WORDS.maxTotalFee (#719) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- ERC20.name() (#176-178)
symbol() should be declared external:
- ERC20.symbol() (#184-186)
decimals() should be declared external:
- ERC20.decimals() (#201-203)
- WORDS.decimals() (#808-810)
totalSupply() should be declared external:
- ERC20.totalSupply() (#208-210)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#227-231)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#272-281)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#295-299)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#315-324)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#534-536)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#542-545)
rescueToken(address,uint256) should be declared external:
- WORDS.rescueToken(address,uint256) (#1065-1067)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


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


Telegram account has relatively few subscribers


Twitter account has relatively few followers


Unable to find Discord account


Twitter account has few posts


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 verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


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

Price for WORDS

News for WORDS