Safe Baby Shiba is a meme token that is community driven. over 1500 organic holders within 3 hours of launch. Looking for token growth and eventually NFT's as giveaways to holders.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in TokenContract._transfer(address,address,uint256) (#993-1030):
External calls:
- swapAndLiquify(contractTokenBalance) (#1017)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1078-1085)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1064-1070)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1017)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1078-1085)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1029)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#944)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1143)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1152)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#862)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1163)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1144)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1154)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1164)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#864)
- _tokenTransfer(from,to,amount,takeFee) (#1029)
- _rTotal = _rTotal.sub(rFee) (#899)
- _tokenTransfer(from,to,amount,takeFee) (#1029)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#946)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1162)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#861)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1153)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#863)
Apply the check-effects-interactions pattern.
Additional information: link
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.
Redundant expression "this (#241)" inContext (#235-244)
Remove redundant statements if they congest code but offer no value.
Additional information: link
TokenContract.addLiquidity(uint256,uint256) (#1073-1086) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1078-1085)
Ensure that all the return values of the function calls are used.
Additional information: link
TokenContract.allowance(address,address).owner (#774) shadows:
- Ownable.owner() (#413-415) (function)
TokenContract._approve(address,address,uint256).owner (#985) shadows:
- Ownable.owner() (#413-415) (function)
Rename the local variables that shadow another component.
Additional information: link
TokenContract.setTaxFeePercent(uint256) (#878-880) should emit an event for:
- _taxFee = taxFee (#879)
TokenContract.setLiquidityFeePercent(uint256) (#882-884) should emit an event for:
- _liquidityFee = liquidityFee (#883)
TokenContract.setNumTokensSellToAddToLiquidity(uint256) (#886-888) should emit an event for:
- numTokensSellToAddToLiquidity = swapNumber * 10 ** 9 (#887)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in TokenContract._transfer(address,address,uint256) (#993-1030):
External calls:
- swapAndLiquify(contractTokenBalance) (#1017)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1078-1085)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1064-1070)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1017)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1078-1085)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1029)
- _hasLiqBeenAdded = true (#1091)
- _tokenTransfer(from,to,amount,takeFee) (#1029)
- _isSniper[recipient] = true (#1115)
- _tokenTransfer(from,to,amount,takeFee) (#1029)
- _liqAddBlock = block.number (#1092)
- _tokenTransfer(from,to,amount,takeFee) (#1029)
- _liquidityFee = _previousLiquidityFee (#978)
- _liquidityFee = 0 (#973)
- _tokenTransfer(from,to,amount,takeFee) (#1029)
- _previousLiquidityFee = _liquidityFee (#970)
- _tokenTransfer(from,to,amount,takeFee) (#1029)
- _previousTaxFee = _taxFee (#969)
- _tokenTransfer(from,to,amount,takeFee) (#1029)
- _tFeeTotal = _tFeeTotal.add(tFee) (#900)
- _tokenTransfer(from,to,amount,takeFee) (#1029)
- _taxFee = _previousTaxFee (#977)
- _taxFee = 0 (#972)
Reentrancy in TokenContract.constructor() (#728-745):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#733-734)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#740)
- _isExcludedFromFee[address(this)] = true (#741)
- _liquidityHolders[owner()] = true (#742)
- uniswapV2Router = _uniswapV2Router (#737)
Reentrancy in TokenContract.swapAndLiquify(uint256) (#1032-1053):
External calls:
- swapTokensForEth(half) (#1044)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1064-1070)
- addLiquidity(otherHalf,newBalance) (#1050)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1078-1085)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1050)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1078-1085)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1050)
- _allowances[owner][spender] = amount (#989)
Reentrancy in TokenContract.transferFrom(address,address,uint256) (#783-787):
External calls:
- _transfer(sender,recipient,amount) (#784)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1078-1085)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1064-1070)
External calls sending eth:
- _transfer(sender,recipient,amount) (#784)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1078-1085)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#785)
- _allowances[owner][spender] = amount (#989)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in TokenContract._transfer(address,address,uint256) (#993-1030):
External calls:
- swapAndLiquify(contractTokenBalance) (#1017)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1078-1085)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1064-1070)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1017)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1078-1085)
Event emitted after the call(s):
- SniperCaught(recipient) (#1116)
- _tokenTransfer(from,to,amount,takeFee) (#1029)
- Transfer(sender,recipient,tTransferAmount) (#1147)
- _tokenTransfer(from,to,amount,takeFee) (#1029)
- Transfer(sender,recipient,tTransferAmount) (#1167)
- _tokenTransfer(from,to,amount,takeFee) (#1029)
- Transfer(sender,recipient,tTransferAmount) (#1157)
- _tokenTransfer(from,to,amount,takeFee) (#1029)
- Transfer(sender,recipient,tTransferAmount) (#867)
- _tokenTransfer(from,to,amount,takeFee) (#1029)
Reentrancy in TokenContract.constructor() (#728-745):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#733-734)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#744)
Reentrancy in TokenContract.swapAndLiquify(uint256) (#1032-1053):
External calls:
- swapTokensForEth(half) (#1044)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1064-1070)
- addLiquidity(otherHalf,newBalance) (#1050)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1078-1085)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1050)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1078-1085)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#990)
- addLiquidity(otherHalf,newBalance) (#1050)
- SwapAndLiquify(half,newBalance,otherHalf) (#1052)
Reentrancy in TokenContract.transferFrom(address,address,uint256) (#783-787):
External calls:
- _transfer(sender,recipient,amount) (#784)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1078-1085)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1064-1070)
External calls sending eth:
- _transfer(sender,recipient,amount) (#784)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1078-1085)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#990)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#785)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#268-277) uses assembly
- INLINE ASM (#275)
Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) uses assembly
- INLINE ASM (#374-377)
Do not use evm assembly.
Additional information: link
TokenContract.includeInReward(address) (#847-858) has costly operations inside a loop:
- _excluded.pop() (#854)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) is never used and should be removed
Address.functionCall(address,bytes) (#321-323) is never used and should be removed
Address.functionCall(address,bytes,string) (#331-333) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#346-348) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#356-359) is never used and should be removed
Address.isContract(address) (#268-277) is never used and should be removed
Address.sendValue(address,uint256) (#295-301) is never used and should be removed
Context._msgData() (#240-243) is never used and should be removed
SafeMath.mod(uint256,uint256) (#213-215) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#229-232) is never used and should be removed
Remove unused functions.
Additional information: link
TokenContract._tTotal (#682) is set pre-construction with a non-constant function or state variable:
- startingSupply * 10 ** 9
TokenContract._rTotal (#683) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
TokenContract._previousTaxFee (#692) is set pre-construction with a non-constant function or state variable:
- _taxFee
TokenContract._previousLiquidityFee (#695) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
TokenContract.numTokensSellToAddToLiquidity (#707) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 5) / 10000
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) (#295-301):
- (success) = recipient.call{value: amount}() (#299)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#361-382):
- (success,returndata) = target.call{value: weiValue}(data) (#365)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable Ownable._owner (#398) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#484) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#485) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#502) is not in mixedCase
Function IUniswapV2Router01.WETH() (#524) is not in mixedCase
Parameter TokenContract.setSwapAndLiquifyEnabled(bool)._enabled (#890) is not in mixedCase
Parameter TokenContract.calculateTaxFee(uint256)._amount (#954) is not in mixedCase
Parameter TokenContract.calculateLiquidityFee(uint256)._amount (#960) is not in mixedCase
Variable TokenContract._taxFee (#691) is not in mixedCase
Variable TokenContract._liquidityFee (#694) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#529) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#530)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#920) is too similar to TokenContract._getValues(uint256).tTransferAmount (#904)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to TokenContract._getValues(uint256).tTransferAmount (#904)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#920) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable TokenContract.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#920) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#912)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#920) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#920) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#912)
Variable TokenContract._getValues(uint256).rTransferAmount (#905) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable TokenContract.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to TokenContract._getValues(uint256).tTransferAmount (#904)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#920) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to TokenContract._getValues(uint256).tTransferAmount (#904)
Variable TokenContract.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to TokenContract._getValues(uint256).tTransferAmount (#904)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable TokenContract.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable TokenContract.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#912)
Variable TokenContract._getValues(uint256).rTransferAmount (#905) is too similar to TokenContract._getValues(uint256).tTransferAmount (#904)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#912)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#912)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable TokenContract._getValues(uint256).rTransferAmount (#905) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable TokenContract._getValues(uint256).rTransferAmount (#905) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable TokenContract._getValues(uint256).rTransferAmount (#905) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#912)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to TokenContract._getValues(uint256).tTransferAmount (#904)
Variable TokenContract._getValues(uint256).rTransferAmount (#905) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#912)
Variable TokenContract.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Prevent variables from having similar names.
Additional information: link
Ownable._previousOwner (#399) is never used in TokenContract (#662-1181)
Ownable._lockTime (#400) is never used in TokenContract (#662-1181)
Remove unused state variables.
Additional information: link
Ownable._lockTime (#400) should be constant
Ownable._previousOwner (#399) should be constant
TokenContract._decimals (#681) should be constant
TokenContract._name (#686) should be constant
TokenContract._symbol (#687) should be constant
TokenContract._v2Router (#699) should be constant
TokenContract.sniperProtection (#709) should be constant
TokenContract.startingSupply (#678) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#432-435)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#441-445)
name() should be declared external:
- TokenContract.name() (#748-750)
symbol() should be declared external:
- TokenContract.symbol() (#752-754)
decimals() should be declared external:
- TokenContract.decimals() (#756-758)
totalSupply() should be declared external:
- TokenContract.totalSupply() (#760-762)
transfer(address,uint256) should be declared external:
- TokenContract.transfer(address,uint256) (#769-772)
allowance(address,address) should be declared external:
- TokenContract.allowance(address,address) (#774-776)
approve(address,uint256) should be declared external:
- TokenContract.approve(address,uint256) (#778-781)
transferFrom(address,address,uint256) should be declared external:
- TokenContract.transferFrom(address,address,uint256) (#783-787)
increaseAllowance(address,uint256) should be declared external:
- TokenContract.increaseAllowance(address,uint256) (#789-792)
decreaseAllowance(address,uint256) should be declared external:
- TokenContract.decreaseAllowance(address,uint256) (#794-797)
isExcludedFromReward(address) should be declared external:
- TokenContract.isExcludedFromReward(address) (#799-801)
totalFees() should be declared external:
- TokenContract.totalFees() (#807-809)
deliver(uint256) should be declared external:
- TokenContract.deliver(uint256) (#811-818)
reflectionFromToken(uint256,bool) should be declared external:
- TokenContract.reflectionFromToken(uint256,bool) (#820-829)
includeInFee(address) should be declared external:
- TokenContract.includeInFee(address) (#874-876)
setNumTokensSellToAddToLiquidity(uint256) should be declared external:
- TokenContract.setNumTokensSellToAddToLiquidity(uint256) (#886-888)
setSwapAndLiquifyEnabled(bool) should be declared external:
- TokenContract.setSwapAndLiquifyEnabled(bool) (#890-893)
claimTokens() should be declared external:
- TokenContract.claimTokens() (#950-952)
isExcludedFromFee(address) should be declared external:
- TokenContract.isExcludedFromFee(address) (#981-983)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
Unable to crawl data from the website
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on 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 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 Telegram link on the website
Unable to find Twitter link on the website
Unable to find code repository for the project
Token has a considerable age, but we're still unable to find its website
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but social accounts / website are missing or have few users
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account