We are a community driven token, that came together while trying to breathe life into a dead contract. As a community, we decided to take our liquidity, and have our expert team of devs work tirelessly to build us our very own Custom Contract. Not a fork. Not an imitation. A one of a kind, safe, un-ruggable contract. With Tokenomics that will ensure each and every diamond handed holder will reap the rewards for years to come!
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in EVERYAPE._transfer(address,address,uint256) (#668-713):
External calls:
- swapTokens(contractTokenBalance) (#693)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
- buyBackTokens(balance.div(100)) (#701)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#763-768)
External calls sending eth:
- swapTokens(contractTokenBalance) (#693)
- recipient.transfer(amount) (#999)
- buyBackTokens(balance.div(100)) (#701)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#763-768)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#712)
- _liquidityFee = _previousLiquidityFee (#921)
- _liquidityFee = 0 (#916)
- _tokenTransfer(from,to,amount,takeFee) (#712)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#892)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#808)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#817)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#828)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#838)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#809)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#819)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#829)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#840)
- _tokenTransfer(from,to,amount,takeFee) (#712)
- _rTotal = _rTotal.sub(rFee) (#847)
- _tokenTransfer(from,to,amount,takeFee) (#712)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#894)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#837)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#827)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#818)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#839)
- buyBackTokens(balance.div(100)) (#701)
- inSwapAndLiquify = true (#518)
- inSwapAndLiquify = false (#520)
Apply the check-effects-interactions pattern.
Additional information: link
EVERYAPE.swapTokens(uint256) (#715-727) performs a multiplication on the result of a division:
-transferToAddressETH(buybackAddress,transferredBalance.div(_liquidityFee).mul(buybackDivisor)) (#725)
Consider ordering multiplication before division.
Additional information: link
EVERYAPE.addLiquidity(uint256,uint256) (#773-786) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#778-785)
Ensure that all the return values of the function calls are used.
Additional information: link
EVERYAPE._approve(address,address,uint256).owner (#660) shadows:
- Ownable.owner() (#193-195) (function)
Rename the local variables that shadow another component.
Additional information: link
EVERYAPE.setBuybackUpperLimit(uint256) (#975-977) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#976)
Emit an event for critical parameter changes.
Additional information: link
EVERYAPE.setMarketingAddress(address)._marketingAddress (#979) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#980)
Check that the address is not zero.
Additional information: link
Reentrancy in EVERYAPE.transferFrom(address,address,uint256) (#578-582):
External calls:
- _transfer(sender,recipient,amount) (#579)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#763-768)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
External calls sending eth:
- _transfer(sender,recipient,amount) (#579)
- recipient.transfer(amount) (#999)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#763-768)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#580)
- _allowances[owner][spender] = amount (#664)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in EVERYAPE.transferFrom(address,address,uint256) (#578-582):
External calls:
- _transfer(sender,recipient,amount) (#579)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#763-768)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
External calls sending eth:
- _transfer(sender,recipient,amount) (#579)
- recipient.transfer(amount) (#999)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#763-768)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#665)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#580)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#228-233) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#230)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#160-177) uses assembly
- INLINE ASM (#169-172)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#115-118) is never used and should be removed
Remove unused functions.
Additional information: link
EVERYAPE._previousLiquidityFee (#479) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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
solc-0.8.7 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
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#160-177):
- (success,returndata) = target.call{value: weiValue}(data) (#163)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable EVERYAPE._contractPaused (#492) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#47)" inContext (#41-50)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in EVERYAPE.transferFrom(address,address,uint256) (#578-582):
External calls:
- _transfer(sender,recipient,amount) (#579)
- recipient.transfer(amount) (#999)
External calls sending eth:
- _transfer(sender,recipient,amount) (#579)
- recipient.transfer(amount) (#999)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#763-768)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#580)
- _allowances[owner][spender] = amount (#664)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#665)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#580)
Apply the check-effects-interactions pattern.
Additional information: link
Variable EVERYAPE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#868) is too similar to EVERYAPE._getValues(uint256).tTransferAmount (#852)
Prevent variables from having similar names.
Additional information: link
EVERYAPE.slitherConstructorVariables() (#447-1005) uses literals with too many digits:
- _maxTxAmount = 300000 * 10 ** 6 * 10 ** 9 (#484)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
EVERYAPE.deadAddress (#453) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
setPaused(bool) should be declared external:
- EVERYAPE.setPaused(bool) (#993-996)
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 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.
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
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
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 Youtube account
Unable to find Discord account