Spiky Inu was originated from the idea of a decentralised ecosystem created by a community associated with blockchain technology. We wanted all concerned to be able to contribute to this project under the same conditions and on a level playing field with the rest of the community.
SWAP✅ STAKING✅ KYC✅ AUDIT✅ SAFU ✅ COMIC♻️ GAMING♻️
5% Buy/Sell tax only!
SpikyInu.addLiquidity(uint256,uint256) (#776-789) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in SpikyInu._transfer(address,address,uint256) (#617-677):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#668)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#800-806)
- address(marketingWallet).sendValue(marketingAmt) (#752)
- address(devWallet).sendValue(devAmt) (#757)
- address(opsWallet).sendValue(opsAmt) (#762)
- address(charityWallet).sendValue(charityAmt) (#767)
- address(stakingWallet).sendValue(stakingAmt) (#772)
- swapAndLiquify(swapTokensAtAmount,taxes) (#669)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#800-806)
- address(marketingWallet).sendValue(marketingAmt) (#752)
- address(devWallet).sendValue(devAmt) (#757)
- address(opsWallet).sendValue(opsAmt) (#762)
- address(charityWallet).sendValue(charityAmt) (#767)
- address(stakingWallet).sendValue(stakingAmt) (#772)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#668)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
- swapAndLiquify(swapTokensAtAmount,taxes) (#669)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#676)
- _rOwned[address(this)] += rDev (#438)
- _rOwned[address(this)] += rStaking (#465)
- _rOwned[address(this)] += rMarketing (#429)
- _rOwned[address(this)] += rCharity (#456)
- _rOwned[address(this)] += rLiquidity (#420)
- _rOwned[address(this)] += rOps (#447)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#702)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#703)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#676)
- _rTotal -= rRfi (#410)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#676)
- _tOwned[address(this)] += tMarketing (#427)
- _tOwned[address(this)] += tCharity (#454)
- _tOwned[address(this)] += tOps (#445)
- _tOwned[address(this)] += tLiquidity (#418)
- _tOwned[address(this)] += tDev (#436)
- _tOwned[address(this)] += tStaking (#463)
- _tOwned[sender] = _tOwned[sender] - tAmount (#695)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#699)
Apply the check-effects-interactions pattern.
Additional information: link
SpikyInu.rescueAnyBEP20Tokens(address,address,uint256) (#876-879) ignores return value by IBEP20(_tokenAddr).transfer(_to,_amount) (#878)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
SpikyInu.swapAndLiquify(uint256,SpikyInu.Taxes) (#722-774) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#742)
-opsAmt = unitBalance * 2 * temp.ops (#760)
SpikyInu.swapAndLiquify(uint256,SpikyInu.Taxes) (#722-774) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#742)
-charityAmt = unitBalance * 2 * temp.charity (#765)
SpikyInu.swapAndLiquify(uint256,SpikyInu.Taxes) (#722-774) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#742)
-devAmt = unitBalance * 2 * temp.dev (#755)
SpikyInu.swapAndLiquify(uint256,SpikyInu.Taxes) (#722-774) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#742)
-stakingAmt = unitBalance * 2 * temp.staking (#770)
SpikyInu.swapAndLiquify(uint256,SpikyInu.Taxes) (#722-774) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#742)
-marketingAmt = unitBalance * 2 * temp.marketing (#750)
SpikyInu.swapAndLiquify(uint256,SpikyInu.Taxes) (#722-774) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#742)
-bnbToAddLiquidityWith = unitBalance * temp.liquidity (#743)
Consider ordering multiplication before division.
Additional information: link
SpikyInu.addLiquidity(uint256,uint256) (#776-789) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
Ensure that all the return values of the function calls are used.
Additional information: link
SpikyInu._approve(address,address,uint256).owner (#607) shadows:
- Ownable.owner() (#46-48) (function)
SpikyInu.allowance(address,address).owner (#264) shadows:
- Ownable.owner() (#46-48) (function)
Rename the local variables that shadow another component.
Additional information: link
SpikyInu.updatedeadline(uint256) (#334-338) should emit an event for:
- deadline = _deadline (#337)
SpikyInu.updateCooldown(bool,uint256) (#840-844) should emit an event for:
- coolDownTime = time * 1 (#842)
SpikyInu.updateSwapTokensAtAmount(uint256) (#846-849) should emit an event for:
- swapTokensAtAmount = amount * 10 ** _decimals (#848)
SpikyInu.updateMaxTxLimit(uint256,uint256,uint256) (#855-862) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#859)
- maxSellLimit = maxSell * 10 ** decimals() (#860)
- maxWalletLimit = maxWallet * 10 ** decimals() (#861)
Emit an event for critical parameter changes.
Additional information: link
SpikyInu.updateRouterAndPair(address,address).newPair (#864) lacks a zero-check on :
- pair = newPair (#866)
Check that the address is not zero.
Additional information: link
Reentrancy in SpikyInu._transfer(address,address,uint256) (#617-677):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#668)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#800-806)
- address(marketingWallet).sendValue(marketingAmt) (#752)
- address(devWallet).sendValue(devAmt) (#757)
- address(opsWallet).sendValue(opsAmt) (#762)
- address(charityWallet).sendValue(charityAmt) (#767)
- address(stakingWallet).sendValue(stakingAmt) (#772)
- swapAndLiquify(swapTokensAtAmount,taxes) (#669)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#800-806)
- address(marketingWallet).sendValue(marketingAmt) (#752)
- address(devWallet).sendValue(devAmt) (#757)
- address(opsWallet).sendValue(opsAmt) (#762)
- address(charityWallet).sendValue(charityAmt) (#767)
- address(stakingWallet).sendValue(stakingAmt) (#772)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#668)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
- swapAndLiquify(swapTokensAtAmount,taxes) (#669)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#676)
- totFeesPaid.marketing += tMarketing (#424)
- totFeesPaid.charity += tCharity (#451)
- totFeesPaid.liquidity += tLiquidity (#415)
- totFeesPaid.ops += tOps (#442)
- totFeesPaid.dev += tDev (#433)
- totFeesPaid.staking += tStaking (#460)
- totFeesPaid.rfi += tRfi (#411)
Reentrancy in SpikyInu.transferFrom(address,address,uint256) (#273-285):
External calls:
- _transfer(sender,recipient,amount) (#278)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#800-806)
- address(marketingWallet).sendValue(marketingAmt) (#752)
- address(devWallet).sendValue(devAmt) (#757)
- address(opsWallet).sendValue(opsAmt) (#762)
- address(charityWallet).sendValue(charityAmt) (#767)
- address(stakingWallet).sendValue(stakingAmt) (#772)
External calls sending eth:
- _transfer(sender,recipient,amount) (#278)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#282)
- _allowances[owner][spender] = amount (#613)
Reentrancy in SpikyInu.swapAndLiquify(uint256,SpikyInu.Taxes) (#722-774):
External calls:
- swapTokensForBNB(toSwap) (#739)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#800-806)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#747)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#747)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#747)
- _allowances[owner][spender] = amount (#613)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SpikyInu.swapAndLiquify(uint256,SpikyInu.Taxes) (#722-774):
External calls:
- swapTokensForBNB(toSwap) (#739)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#800-806)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#747)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#747)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#614)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#747)
Reentrancy in SpikyInu.transferFrom(address,address,uint256) (#273-285):
External calls:
- _transfer(sender,recipient,amount) (#278)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#800-806)
- address(marketingWallet).sendValue(marketingAmt) (#752)
- address(devWallet).sendValue(devAmt) (#757)
- address(opsWallet).sendValue(opsAmt) (#762)
- address(charityWallet).sendValue(charityAmt) (#767)
- address(stakingWallet).sendValue(stakingAmt) (#772)
External calls sending eth:
- _transfer(sender,recipient,amount) (#278)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#614)
- _approve(sender,_msgSender(),currentAllowance - amount) (#282)
Reentrancy in SpikyInu._transfer(address,address,uint256) (#617-677):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#668)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#800-806)
- address(marketingWallet).sendValue(marketingAmt) (#752)
- address(devWallet).sendValue(devAmt) (#757)
- address(opsWallet).sendValue(opsAmt) (#762)
- address(charityWallet).sendValue(charityAmt) (#767)
- address(stakingWallet).sendValue(stakingAmt) (#772)
- swapAndLiquify(swapTokensAtAmount,taxes) (#669)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#800-806)
- address(marketingWallet).sendValue(marketingAmt) (#752)
- address(devWallet).sendValue(devAmt) (#757)
- address(opsWallet).sendValue(opsAmt) (#762)
- address(charityWallet).sendValue(charityAmt) (#767)
- address(stakingWallet).sendValue(stakingAmt) (#772)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#668)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
- swapAndLiquify(swapTokensAtAmount,taxes) (#669)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#781-788)
- (success) = recipient.call{value: amount}() (#109)
Event emitted after the call(s):
- Transfer(sender,address(this),s.tLiquidity + s.tMarketing + s.tDev + s.tOps + s.tCharity + s.tStaking) (#708-712)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#676)
- Transfer(sender,recipient,s.tTransferAmount) (#719)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#676)
Apply the check-effects-interactions pattern.
Additional information: link
SpikyInu._transfer(address,address,uint256) (#617-677) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#654)
Avoid relying on block.timestamp.
Additional information: link
SpikyInu.includeInReward(address) (#356-367) has costly operations inside a loop:
- _excluded.pop() (#363)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#31-34) is never used and should be removed
Remove unused functions.
Additional information: link
SpikyInu._rTotal (#141) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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 Address.sendValue(address,uint256) (#106-111):
- (success) = recipient.call{value: amount}() (#109)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Parameter SpikyInu.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._staking (#388) is not in mixedCase
Parameter SpikyInu.rescueAnyBEP20Tokens(address,address,uint256)._to (#876) is not in mixedCase
Parameter SpikyInu.updatedeadline(uint256)._deadline (#334) is not in mixedCase
Constant SpikyInu._name (#158) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter SpikyInu.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._dev (#399) is not in mixedCase
Parameter SpikyInu.updateSwapEnabled(bool)._enabled (#851) is not in mixedCase
Struct SpikyInu.valuesFromGetValues (#187-205) is not in CapWords
Parameter SpikyInu.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._liquidity (#398) is not in mixedCase
Parameter SpikyInu.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._ops (#400) is not in mixedCase
Constant SpikyInu._symbol (#159) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter SpikyInu.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._dev (#385) is not in mixedCase
Parameter SpikyInu.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._ops (#386) is not in mixedCase
Variable SpikyInu.genesis_block (#148) is not in mixedCase
Parameter SpikyInu.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._staking (#402) is not in mixedCase
Parameter SpikyInu.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._rfi (#396) is not in mixedCase
Parameter SpikyInu.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._charity (#387) is not in mixedCase
Parameter SpikyInu.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._marketing (#383) is not in mixedCase
Function IRouter.WETH() (#78) is not in mixedCase
Parameter SpikyInu.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._rfi (#382) is not in mixedCase
Parameter SpikyInu.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._charity (#401) is not in mixedCase
Parameter SpikyInu.rescueAnyBEP20Tokens(address,address,uint256)._amount (#876) is not in mixedCase
Parameter SpikyInu.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._marketing (#397) is not in mixedCase
Constant SpikyInu._decimals (#137) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter SpikyInu.rescueAnyBEP20Tokens(address,address,uint256)._tokenAddr (#876) is not in mixedCase
Parameter SpikyInu.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._liquidity (#384) is not in mixedCase
Function SpikyInu.EnableTrading() (#327-332) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#32)" inContext (#26-35)
Remove redundant statements if they congest code but offer no value.
Additional information: link
SpikyInu.slitherConstructorVariables() (#114-883) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#151)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SpikyInu._tTotal (#140) should be constant
SpikyInu.deadWallet (#151) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
totalSupply() should be declared external:
- SpikyInu.totalSupply() (#255-257)
transferFrom(address,address,uint256) should be declared external:
- SpikyInu.transferFrom(address,address,uint256) (#273-285)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#55-57)
increaseAllowance(address,uint256) should be declared external:
- SpikyInu.increaseAllowance(address,uint256) (#287-290)
isExcludedFromFee(address) should be declared external:
- SpikyInu.isExcludedFromFee(address) (#377-379)
decreaseAllowance(address,uint256) should be declared external:
- SpikyInu.decreaseAllowance(address,uint256) (#292-301)
allowance(address,address) should be declared external:
- SpikyInu.allowance(address,address) (#264-266)
excludeFromFee(address) should be declared external:
- SpikyInu.excludeFromFee(address) (#369-371)
rescueAnyBEP20Tokens(address,address,uint256) should be declared external:
- SpikyInu.rescueAnyBEP20Tokens(address,address,uint256) (#876-879)
isExcludedFromReward(address) should be declared external:
- SpikyInu.isExcludedFromReward(address) (#308-310)
setTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256) should be declared external:
- SpikyInu.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#381-393)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#59-62)
approve(address,uint256) should be declared external:
- SpikyInu.approve(address,uint256) (#268-271)
setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256) should be declared external:
- SpikyInu.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#395-407)
name() should be declared external:
- SpikyInu.name() (#242-244)
reflectionFromToken(uint256,bool) should be declared external:
- SpikyInu.reflectionFromToken(uint256,bool) (#312-325)
transfer(address,uint256) should be declared external:
- SpikyInu.transfer(address,uint256) (#303-306)
includeInFee(address) should be declared external:
- SpikyInu.includeInFee(address) (#373-375)
symbol() should be declared external:
- SpikyInu.symbol() (#246-248)
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 4% buy tax and 5% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
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
Unable to find token on CoinMarketCap
Additional information: link
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 Telegram link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token is relatively young, but twitter if very old (probably it's fake).
Unable to find Blog account (Reddit or Medium)
Unable to find Discord account