FireZard - The BSC Trading Card Game with instant win rewards through collectible NFTs. Summon, Earn and Trade while creating a passive income through our highly collectible Zards!
Bring back that sense of rush and excitement attached to opening a booster pack in hope that you might get lucky and find a nice holographic gem staring back you. Our NFT's are a little different though, they’ll have an instant win BNB prize which gets sent directly to your wallet.
Reentrancy in FireZard._transfer(address,address,uint256) (#687-730):
External calls:
- BP.protect(from,to,amount) (#700)
- swapTokens(contractTokenBalance) (#709)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#759-768)
- buyBackTokens(balance.div(100)) (#718)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp) (#781-789)
External calls sending eth:
- swapTokens(contractTokenBalance) (#709)
- recipient.transfer(amount) (#1043)
- buyBackTokens(balance.div(100)) (#718)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp) (#781-789)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#729)
- _liquidityFee = _previousLiquidityFee (#941)
- _liquidityFee = 0 (#936)
- _tokenTransfer(from,to,amount,takeFee) (#729)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#910)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#835)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#826)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#827)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#846)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#856)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#847)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#837)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#858)
- _tokenTransfer(from,to,amount,takeFee) (#729)
- _rTotal = _rTotal.sub(rFee) (#865)
- _tokenTransfer(from,to,amount,takeFee) (#729)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#912)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#845)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#855)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#836)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#857)
- buyBackTokens(balance.div(100)) (#718)
- inSwapAndLiquify = true (#520)
- inSwapAndLiquify = false (#522)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
FireZard.swapTokens(uint256) (#732-742) performs a multiplication on the result of a division:
-transferToAddressETH(developmentAddress,transferredBalance.div(_liquidityFee).mul(developmentDivisor)) (#740)
Consider ordering multiplication before division.
Additional information: link
FireZard.addLiquidity(uint256,uint256) (#793-804) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#796-803)
Ensure that all the return values of the function calls are used.
Additional information: link
FireZard._approve(address,address,uint256).owner (#679) shadows:
- Ownable.owner() (#176-178) (function)
Rename the local variables that shadow another component.
Additional information: link
FireZard.setDevelopmentAddress(address)._developmentAddress (#1010) lacks a zero-check on :
- developmentAddress = address(_developmentAddress) (#1011)
Check that the address is not zero.
Additional information: link
Reentrancy in FireZard.transferFrom(address,address,uint256) (#582-586):
External calls:
- _transfer(sender,recipient,amount) (#583)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp) (#781-789)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#759-768)
- BP.protect(from,to,amount) (#700)
External calls sending eth:
- _transfer(sender,recipient,amount) (#583)
- recipient.transfer(amount) (#1043)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp) (#781-789)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#584)
- _allowances[owner][spender] = amount (#683)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in FireZard.transferFrom(address,address,uint256) (#582-586):
External calls:
- _transfer(sender,recipient,amount) (#583)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp) (#781-789)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#759-768)
- BP.protect(from,to,amount) (#700)
External calls sending eth:
- _transfer(sender,recipient,amount) (#583)
- recipient.transfer(amount) (#1043)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp) (#781-789)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#684)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#584)
Apply the check-effects-interactions pattern.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#144-161) uses assembly
- INLINE ASM (#153-156)
Do not use evm assembly.
Additional information: link
FireZard.setBotProtectionDisableForever() (#623-626) compares to a boolean constant:
-require(bool)(BPDisabledForever == false) (#624)
Remove the equality to the boolean constant.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#99-102) is never used and should be removed
Remove unused functions.
Additional information: link
FireZard._maxTxAmount (#486) is set pre-construction with a non-constant function or state variable:
- 101 ** decimals()
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) (#144-161):
- (success,returndata) = target.call{value: weiValue}(data) (#147)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable FireZard.MAX_INT (#497) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#31)" inContext (#25-34)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in FireZard.transferFrom(address,address,uint256) (#582-586):
External calls:
- _transfer(sender,recipient,amount) (#583)
- recipient.transfer(amount) (#1043)
External calls sending eth:
- _transfer(sender,recipient,amount) (#583)
- recipient.transfer(amount) (#1043)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp) (#781-789)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#584)
- _allowances[owner][spender] = amount (#683)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#684)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#584)
Apply the check-effects-interactions pattern.
Additional information: link
Variable FireZard._getValues(uint256).rTransferAmount (#871) is too similar to FireZard._getTValues(uint256).tTransferAmount (#878)
Prevent variables from having similar names.
Additional information: link
FireZard.slitherConstructorVariables() (#419-1051) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 18 (#440)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#166) is never used in FireZard (#419-1051)
Remove unused state variables.
Additional information: link
Ownable._previousOwner (#166) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
setBuyBackEnabled(bool) should be declared external:
- FireZard.setBuyBackEnabled(bool) (#1024-1027)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap volume is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Token is deployed only at one blockchain
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute number of swaps.
Young tokens have high risks of 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
Young tokens have high risks of price dump / death
Token has relatively low CoinMarketCap rank
Twitter account link seems to be invalid