Wildfire token was created to help wildfire cases especially nowadays. We want to plant new trees to replace burned trees. Our planet always must be green.
Our project aims to save animals, trees and humans from wildfires. These days, fire is occuring in different parts of the world. We saw this wildfires and think we have to stop these. Our world is unique. We have to protect the world.
Every single tree creates a lot of oxygen to the world. If trees are gone, our life is over.
That’s not the only problem. Trees give us vegetables, fruits etc. different types of foods. If they are gone, we don’t have enough food.
The third problem is ecological balance. Forests are habitats. They contain millions of species. If forests burn, animals will hurt or die, ecological balance is disturbed.
We have to save forests. Green is life. #savegreensavelife
Reentrancy in WildFireToken._transfer(address,address,uint256) (#656-694):
External calls:
- swapTokens(contractTokenBalance) (#674)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#723-729)
- buyBackTokens(balance.div(100)) (#682)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
External calls sending eth:
- swapTokens(contractTokenBalance) (#674)
- recipient.transfer(amount) (#967)
- buyBackTokens(balance.div(100)) (#682)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#693)
- _liquidityFee = _previousLiquidityFee (#899)
- _liquidityFee = 0 (#894)
- _tokenTransfer(from,to,amount,takeFee) (#693)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#870)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#786)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#795)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#806)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#816)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#787)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#797)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#807)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#818)
- _tokenTransfer(from,to,amount,takeFee) (#693)
- _rTotal = _rTotal.sub(rFee) (#825)
- _tokenTransfer(from,to,amount,takeFee) (#693)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#872)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#805)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#815)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#796)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#817)
- buyBackTokens(balance.div(100)) (#682)
- inSwapAndLiquify = true (#510)
- inSwapAndLiquify = false (#512)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
WildFireToken.swapTokens(uint256) (#696-705) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#703)
Consider ordering multiplication before division.
Additional information: link
WildFireToken.addLiquidity(uint256,uint256) (#751-764) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#756-763)
Ensure that all the return values of the function calls are used.
Additional information: link
WildFireToken._approve(address,address,uint256).owner (#648) shadows:
- Ownable.owner() (#191-193) (function)
Rename the local variables that shadow another component.
Additional information: link
WildFireToken.setBuybackUpperLimit(uint256) (#934-936) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#935)
Emit an event for critical parameter changes.
Additional information: link
WildFireToken.setMarketingAddress(address)._marketingAddress (#938) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#939)
Check that the address is not zero.
Additional information: link
Reentrancy in WildFireToken.transferFrom(address,address,uint256) (#566-570):
External calls:
- _transfer(sender,recipient,amount) (#567)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#723-729)
External calls sending eth:
- _transfer(sender,recipient,amount) (#567)
- recipient.transfer(amount) (#967)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#568)
- _allowances[owner][spender] = amount (#652)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in WildFireToken.transferFrom(address,address,uint256) (#566-570):
External calls:
- _transfer(sender,recipient,amount) (#567)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#723-729)
External calls sending eth:
- _transfer(sender,recipient,amount) (#567)
- recipient.transfer(amount) (#967)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#653)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#568)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#226-231) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#228)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#158-175) uses assembly
- INLINE ASM (#167-170)
Do not use evm assembly.
Additional information: link
WildFireToken.addLiquidity(uint256,uint256) (#751-764) is never used and should be removed
Remove unused functions.
Additional information: link
WildFireToken._previousLiquidityFee (#474) 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.4 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) (#158-175):
- (success,returndata) = target.call{value: weiValue}(data) (#161)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable WildFireToken._maxTxAmount (#478) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#45)" inContext (#39-48)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in WildFireToken.transferFrom(address,address,uint256) (#566-570):
External calls:
- _transfer(sender,recipient,amount) (#567)
- recipient.transfer(amount) (#967)
External calls sending eth:
- _transfer(sender,recipient,amount) (#567)
- recipient.transfer(amount) (#967)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#568)
- _allowances[owner][spender] = amount (#652)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#653)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#568)
Apply the check-effects-interactions pattern.
Additional information: link
Variable WildFireToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#846) is too similar to WildFireToken._transferStandard(address,address,uint256).tTransferAmount (#785)
Prevent variables from having similar names.
Additional information: link
WildFireToken.slitherConstructorVariables() (#445-973) uses literals with too many digits:
- minimumTokensBeforeSwap = 200000 * 10 ** 6 * 10 ** 9 (#479)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
WildFireToken.deadAddress (#450) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
setBuyBackEnabled(bool) should be declared external:
- WildFireToken.setBuyBackEnabled(bool) (#947-950)
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
Token was delisted (assigned to inactive / untracked listing) from 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
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 Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account