Zaigar Finance Token Logo

ZAIF [Zaigar Finance] Token

ALERT: dead

About ZAIF

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

Zaigar Finance is a decentralized farm platform on BSC.

Social

Laser Scorebeta Last Audit: 15 October 2022

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

RGBEP20.addLiquidity(uint256,uint256) (contracts/libs/RGBEP20.sol#743-756) sends eth to arbitrary user
Dangerous calls:
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/libs/RGBEP20.sol#748-755)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in RGBEP20._transfer(address,address,uint256) (contracts/libs/RGBEP20.sol#669-697):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/libs/RGBEP20.sol#692)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/libs/RGBEP20.sol#748-755)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/libs/RGBEP20.sol#734-740)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/libs/RGBEP20.sol#692)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/libs/RGBEP20.sol#748-755)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (contracts/libs/RGBEP20.sol#696)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (contracts/libs/RGBEP20.sol#643)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/libs/RGBEP20.sol#824)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/libs/RGBEP20.sol#833)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/libs/RGBEP20.sol#844)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/libs/RGBEP20.sol#584)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/libs/RGBEP20.sol#825)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/libs/RGBEP20.sol#835)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/libs/RGBEP20.sol#845)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/libs/RGBEP20.sol#586)
- _tokenTransfer(from,to,amount) (contracts/libs/RGBEP20.sol#696)
- _rTotal = _rTotal.sub(rFee) (contracts/libs/RGBEP20.sol#598)
- _tokenTransfer(from,to,amount) (contracts/libs/RGBEP20.sol#696)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (contracts/libs/RGBEP20.sol#645)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/libs/RGBEP20.sol#843)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/libs/RGBEP20.sol#583)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/libs/RGBEP20.sol#834)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/libs/RGBEP20.sol#585)
- _tokenTransfer(from,to,amount) (contracts/libs/RGBEP20.sol#696)
- _tTotal = _tTotal.sub(burnAmt) (contracts/libs/RGBEP20.sol#800)
Apply the check-effects-interactions pattern.

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.


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

ZaifToken._writeCheckpoint(address,uint32,uint256,uint256) (contracts/ZaifToken.sol#219-237) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (contracts/ZaifToken.sol#229)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

RGBEP20.constructor(string,string).name (contracts/libs/RGBEP20.sol#177) shadows:
- RGBEP20.name() (contracts/libs/RGBEP20.sol#267-269) (function)
- IBEP20.name() (@pancakeswap/pancake-swap-lib/contracts/token/BEP20/IBEP20.sol#24) (function)
RGBEP20.setExcludedFromAntiWhale(address,bool)._excluded (contracts/libs/RGBEP20.sol#498) shadows:
- RGBEP20._excluded (contracts/libs/RGBEP20.sol#71) (state variable)
RGBEP20.clearETH()._owner (contracts/libs/RGBEP20.sol#416) shadows:
- Ownable._owner (@pancakeswap/pancake-swap-lib/contracts/access/Ownable.sol#20) (state variable)
RGBEP20.allowance(address,address).owner (contracts/libs/RGBEP20.sol#302) shadows:
- Ownable.owner() (@pancakeswap/pancake-swap-lib/contracts/access/Ownable.sol#36-38) (function)
RGBEP20.constructor(string,string).symbol (contracts/libs/RGBEP20.sol#177) shadows:
- RGBEP20.symbol() (contracts/libs/RGBEP20.sol#271-273) (function)
- IBEP20.symbol() (@pancakeswap/pancake-swap-lib/contracts/token/BEP20/IBEP20.sol#19) (function)
RGBEP20._approve(address,address,uint256).owner (contracts/libs/RGBEP20.sol#661) shadows:
- Ownable.owner() (@pancakeswap/pancake-swap-lib/contracts/access/Ownable.sol#36-38) (function)
Rename the local variables that shadow another component.

Additional information: link

RGBEP20.updateBurnFee(uint256) (contracts/libs/RGBEP20.sol#507-509) should emit an event for:
- _burnFee = burnFee (contracts/libs/RGBEP20.sol#508)
Emit an event for critical parameter changes.

Additional information: link

RGBEP20.setmarketingWallet(address).newWallet (contracts/libs/RGBEP20.sol#896) lacks a zero-check on :
- marketingWallet = newWallet (contracts/libs/RGBEP20.sol#897)
RGBEP20.clearETH()._owner (contracts/libs/RGBEP20.sol#416) lacks a zero-check on :
- _owner.transfer(address(this).balance) (contracts/libs/RGBEP20.sol#417)
Check that the address is not zero.

Additional information: link

RGBEP20.addLiquidity(uint256,uint256) (contracts/libs/RGBEP20.sol#743-756) ignores return value by pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/libs/RGBEP20.sol#748-755)
RGBEP20.burn(uint256) (contracts/libs/RGBEP20.sol#458-464) ignores return value by _tOwned[address(this)].sub(_amount) (contracts/libs/RGBEP20.sol#463)
Ensure that all the return values of the function calls are used.

Additional information: link

Reentrancy in RGBEP20._transfer(address,address,uint256) (contracts/libs/RGBEP20.sol#669-697):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/libs/RGBEP20.sol#692)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/libs/RGBEP20.sol#748-755)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/libs/RGBEP20.sol#734-740)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/libs/RGBEP20.sol#692)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/libs/RGBEP20.sol#748-755)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (contracts/libs/RGBEP20.sol#696)
- _burnFee = 0 (contracts/libs/RGBEP20.sol#875)
- _burnFee = 100 (contracts/libs/RGBEP20.sol#883)
- _tokenTransfer(from,to,amount) (contracts/libs/RGBEP20.sol#696)
- _liquidityFee = 0 (contracts/libs/RGBEP20.sol#882)
- _liquidityFee = 0 (contracts/libs/RGBEP20.sol#874)
- _liquidityFee = 0 (contracts/libs/RGBEP20.sol#783)
- _liquidityFee = _previousLiquidityFee (contracts/libs/RGBEP20.sol#805)
- _tokenTransfer(from,to,amount) (contracts/libs/RGBEP20.sol#696)
- _marketingFee = 0 (contracts/libs/RGBEP20.sol#876)
- _marketingFee = 200 (contracts/libs/RGBEP20.sol#884)
- _tokenTransfer(from,to,amount) (contracts/libs/RGBEP20.sol#696)
- _tFeeTotal = _tFeeTotal.add(tFee) (contracts/libs/RGBEP20.sol#599)
- _tokenTransfer(from,to,amount) (contracts/libs/RGBEP20.sol#696)
- _taxFee = 0 (contracts/libs/RGBEP20.sol#873)
- _taxFee = 200 (contracts/libs/RGBEP20.sol#881)
- _taxFee = 0 (contracts/libs/RGBEP20.sol#782)
- _taxFee = _previousTaxFee (contracts/libs/RGBEP20.sol#804)
Reentrancy in RGBEP20.swapAndLiquify(uint256) (contracts/libs/RGBEP20.sol#702-723):
External calls:
- swapTokensForEth(half) (contracts/libs/RGBEP20.sol#714)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/libs/RGBEP20.sol#734-740)
- addLiquidity(otherHalf,newBalance) (contracts/libs/RGBEP20.sol#720)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/libs/RGBEP20.sol#748-755)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/libs/RGBEP20.sol#720)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/libs/RGBEP20.sol#748-755)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (contracts/libs/RGBEP20.sol#720)
- _allowances[owner][spender] = amount (contracts/libs/RGBEP20.sol#665)
Reentrancy in RGBEP20.setRouterAddress(address) (contracts/libs/RGBEP20.sol#902-906):
External calls:
- pancakePair = IPancakeFactory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (contracts/libs/RGBEP20.sol#904)
State variables written after the call(s):
- pancakeRouter = _newPancakeRouter (contracts/libs/RGBEP20.sol#905)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in RGBEP20._transfer(address,address,uint256) (contracts/libs/RGBEP20.sol#669-697):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/libs/RGBEP20.sol#692)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/libs/RGBEP20.sol#748-755)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/libs/RGBEP20.sol#734-740)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/libs/RGBEP20.sol#692)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/libs/RGBEP20.sol#748-755)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (contracts/libs/RGBEP20.sol#828)
- _tokenTransfer(from,to,amount) (contracts/libs/RGBEP20.sol#696)
- Transfer(sender,recipient,tTransferAmount) (contracts/libs/RGBEP20.sol#838)
- _tokenTransfer(from,to,amount) (contracts/libs/RGBEP20.sol#696)
- Transfer(sender,recipient,tTransferAmount) (contracts/libs/RGBEP20.sol#848)
- _tokenTransfer(from,to,amount) (contracts/libs/RGBEP20.sol#696)
- Transfer(sender,recipient,tTransferAmount) (contracts/libs/RGBEP20.sol#589)
- _tokenTransfer(from,to,amount) (contracts/libs/RGBEP20.sol#696)
Reentrancy in RGBEP20.swapAndLiquify(uint256) (contracts/libs/RGBEP20.sol#702-723):
External calls:
- swapTokensForEth(half) (contracts/libs/RGBEP20.sol#714)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/libs/RGBEP20.sol#734-740)
- addLiquidity(otherHalf,newBalance) (contracts/libs/RGBEP20.sol#720)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/libs/RGBEP20.sol#748-755)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/libs/RGBEP20.sol#720)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/libs/RGBEP20.sol#748-755)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/libs/RGBEP20.sol#666)
- addLiquidity(otherHalf,newBalance) (contracts/libs/RGBEP20.sol#720)
- SwapAndLiquify(half,newBalance,otherHalf) (contracts/libs/RGBEP20.sol#722)
Apply the check-effects-interactions pattern.

Additional information: link

ZaifToken.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (contracts/ZaifToken.sol#85-126) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now <= expiry,ZAIF::delegateBySig: signature expired) (contracts/ZaifToken.sol#124)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#134-160) uses assembly
- INLINE ASM (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#152-155)
Address.isContract(address) (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#26-37) uses assembly
- INLINE ASM (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#33-35)
ZaifToken.getChainId() (contracts/ZaifToken.sol#244-248) uses assembly
- INLINE ASM (contracts/ZaifToken.sol#246)
Do not use evm assembly.

Additional information: link

RGBEP20.getAirdrop(address) (contracts/libs/RGBEP20.sol#320-361) compares to a boolean constant:
-require(bool,string)(airdropFinished != true,Reached Airdrop cap!) (contracts/libs/RGBEP20.sol#331)
RGBEP20.antiWhale(address,address,uint256) (contracts/libs/RGBEP20.sol#225-235) compares to a boolean constant:
-_excludedFromAntiWhale[sender] == false && _excludedFromAntiWhale[recipient] == false (contracts/libs/RGBEP20.sol#228-229)
RGBEP20.getAirdrop(address) (contracts/libs/RGBEP20.sol#320-361) compares to a boolean constant:
-require(bool,string)(_claimedAirdrop[msg.sender] != true,Already claimed airdrop!) (contracts/libs/RGBEP20.sol#322)
Remove the equality to the boolean constant.

Additional information: link

Different versions of Solidity are used:
- Version used: ['>=0.4.0', '>=0.5.0', '>=0.6.0', '>=0.6.12', '>=0.6.2', '^0.6.2']
- >=0.4.0 (@pancakeswap/pancake-swap-lib/contracts/GSN/Context.sol#3)
- >=0.4.0 (@pancakeswap/pancake-swap-lib/contracts/access/Ownable.sol#3)
- >=0.4.0 (@pancakeswap/pancake-swap-lib/contracts/math/SafeMath.sol#3)
- >=0.4.0 (@pancakeswap/pancake-swap-lib/contracts/token/BEP20/IBEP20.sol#3)
- ^0.6.2 (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#3)
- >=0.6.12 (contracts/ZaifToken.sol#2)
- >=0.5.0 (contracts/interfaces/IPancakeFactory.sol#1)
- >=0.5.0 (contracts/interfaces/IPancakePair.sol#1)
- >=0.6.2 (contracts/interfaces/IPancakeRouter01.sol#1)
- >=0.6.2 (contracts/interfaces/IPancakeRouter02.sol#1)
- >=0.6.0 (contracts/libs/RGBEP20.sol#14)
Use one Solidity version.

Additional information: link

RGBEP20.zaiRouterAddress (contracts/libs/RGBEP20.sol#128) is never used in ZaifToken (contracts/ZaifToken.sol#12-250)
RGBEP20._previousBurnFee (contracts/libs/RGBEP20.sol#116) is never used in ZaifToken (contracts/ZaifToken.sol#12-250)
RGBEP20._previousmarketingFee (contracts/libs/RGBEP20.sol#120) is never used in ZaifToken (contracts/ZaifToken.sol#12-250)
Remove unused state variables.

Additional information: link

Address.sendValue(address,uint256) (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#55-61) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#110-116) is never used and should be removed
SafeMath.sqrt(uint256) (@pancakeswap/pancake-swap-lib/contracts/math/SafeMath.sol#177-188) is never used and should be removed
SafeMath.min(uint256,uint256) (@pancakeswap/pancake-swap-lib/contracts/math/SafeMath.sol#172-174) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (@pancakeswap/pancake-swap-lib/contracts/math/SafeMath.sol#163-170) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#124-132) is never used and should be removed
Context._msgData() (@pancakeswap/pancake-swap-lib/contracts/GSN/Context.sol#24-27) is never used and should be removed
SafeMath.mod(uint256,uint256) (@pancakeswap/pancake-swap-lib/contracts/math/SafeMath.sol#147-149) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#134-160) is never used and should be removed
Address.isContract(address) (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#26-37) is never used and should be removed
Address.functionCall(address,bytes,string) (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#91-97) is never used and should be removed
Address.functionCall(address,bytes) (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#81-83) is never used and should be removed
Remove unused functions.

Additional information: link

RGBEP20.transferFeeRate (contracts/libs/RGBEP20.sol#125) is set pre-construction with a non-constant function or state variable:
- _taxFee + _burnFee + _marketingFee + _liquidityFee
RGBEP20._previousmarketingFee (contracts/libs/RGBEP20.sol#120) is set pre-construction with a non-constant function or state variable:
- _marketingFee
RGBEP20._rTotal (contracts/libs/RGBEP20.sol#158) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
RGBEP20._previousBurnFee (contracts/libs/RGBEP20.sol#116) is set pre-construction with a non-constant function or state variable:
- _burnFee
RGBEP20._previousLiquidityFee (contracts/libs/RGBEP20.sol#113) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
RGBEP20._previousTaxFee (contracts/libs/RGBEP20.sol#110) is set pre-construction with a non-constant function or state variable:
- _taxFee
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

Pragma version>=0.4.0 (@pancakeswap/pancake-swap-lib/contracts/GSN/Context.sol#3) allows old versions
Pragma version>=0.6.0 (contracts/libs/RGBEP20.sol#14) allows old versions
Pragma version>=0.5.0 (contracts/interfaces/IPancakePair.sol#1) allows old versions
Pragma version>=0.4.0 (@pancakeswap/pancake-swap-lib/contracts/math/SafeMath.sol#3) allows old versions
Pragma version>=0.6.2 (contracts/interfaces/IPancakeRouter02.sol#1) allows old versions
Pragma version>=0.4.0 (@pancakeswap/pancake-swap-lib/contracts/access/Ownable.sol#3) allows old versions
Pragma version>=0.4.0 (@pancakeswap/pancake-swap-lib/contracts/token/BEP20/IBEP20.sol#3) allows old versions
Pragma version>=0.6.2 (contracts/interfaces/IPancakeRouter01.sol#1) allows old versions
Pragma version^0.6.2 (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#3) allows old versions
Pragma version>=0.5.0 (contracts/interfaces/IPancakeFactory.sol#1) allows old versions
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) (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#134-160):
- (success,returndata) = target.call{value: weiValue}(data) (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#143)
Low level call in Address.sendValue(address,uint256) (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#55-61):
- (success) = recipient.call{value: amount}() (@pancakeswap/pancake-swap-lib/contracts/utils/Address.sol#59)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter RGBEP20.setExcludedFromAntiWhale(address,bool)._account (contracts/libs/RGBEP20.sol#498) is not in mixedCase
Constant RGBEP20._maxSupply (contracts/libs/RGBEP20.sol#73) is not in UPPER_CASE_WITH_UNDERSCORES
Function IPancakeRouter01.WETH() (contracts/interfaces/IPancakeRouter01.sol#5) is not in mixedCase
Parameter RGBEP20.startAirdrop(uint256,uint256,uint256,uint256)._aCap (contracts/libs/RGBEP20.sol#400) is not in mixedCase
Parameter RGBEP20.startSale(uint256,uint256,uint256,uint256,uint256)._sSBlock (contracts/libs/RGBEP20.sol#407) is not in mixedCase
Parameter RGBEP20.startSale(uint256,uint256,uint256,uint256,uint256)._sCap (contracts/libs/RGBEP20.sol#407) is not in mixedCase
Parameter RGBEP20.isExcludedFromAntiWhale(address)._account (contracts/libs/RGBEP20.sol#490) is not in mixedCase
Parameter RGBEP20.setSwapAndLiquifyEnabled(bool)._enabled (contracts/libs/RGBEP20.sol#909) is not in mixedCase
Parameter RGBEP20.getAirdrop(address)._refer (contracts/libs/RGBEP20.sol#320) is not in mixedCase
Parameter RGBEP20.sendBNB(address,uint256)._to (contracts/libs/RGBEP20.sol#813) is not in mixedCase
Parameter ZaifToken.mint(address,uint256)._amount (contracts/ZaifToken.sol#15) is not in mixedCase
Parameter RGBEP20.startSale(uint256,uint256,uint256,uint256,uint256)._sEBlock (contracts/libs/RGBEP20.sol#407) is not in mixedCase
Parameter RGBEP20.startSale(uint256,uint256,uint256,uint256,uint256)._sChunk (contracts/libs/RGBEP20.sol#407) is not in mixedCase
Parameter RGBEP20.burn(uint256)._amount (contracts/libs/RGBEP20.sol#458) is not in mixedCase
Parameter ZaifToken.mint(address,uint256)._to (contracts/ZaifToken.sol#15) is not in mixedCase
Variable RGBEP20._taxFee (contracts/libs/RGBEP20.sol#109) is not in mixedCase
Parameter RGBEP20.startAirdrop(uint256,uint256,uint256,uint256)._aSBlock (contracts/libs/RGBEP20.sol#400) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (contracts/interfaces/IPancakePair.sol#36) is not in mixedCase
Parameter RGBEP20.calculateLiquidityFee(uint256)._amount (contracts/libs/RGBEP20.sol#652) is not in mixedCase
Variable RGBEP20._liquidityFee (contracts/libs/RGBEP20.sol#112) is not in mixedCase
Parameter RGBEP20.startAirdrop(uint256,uint256,uint256,uint256)._aAmt (contracts/libs/RGBEP20.sol#400) is not in mixedCase
Parameter RGBEP20.startSale(uint256,uint256,uint256,uint256,uint256)._sPrice (contracts/libs/RGBEP20.sol#407) is not in mixedCase
Parameter RGBEP20.tokenSale(address)._refer (contracts/libs/RGBEP20.sol#363) is not in mixedCase
Variable ZaifToken._delegates (contracts/ZaifToken.sol#27) is not in mixedCase
Function RGBEP20.SwapAndLiquifyEnable() (contracts/libs/RGBEP20.sol#859-863) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (contracts/interfaces/IPancakePair.sol#19) is not in mixedCase
Variable RGBEP20._marketingFee (contracts/libs/RGBEP20.sol#118) is not in mixedCase
Parameter RGBEP20.startAirdrop(uint256,uint256,uint256,uint256)._aEBlock (contracts/libs/RGBEP20.sol#400) is not in mixedCase
Function IPancakePair.DOMAIN_SEPARATOR() (contracts/interfaces/IPancakePair.sol#18) is not in mixedCase
Event RGBEP20maxTransferRateUpdated(address,uint256,uint256) (contracts/libs/RGBEP20.sol#166) is not in CapWords
Variable RGBEP20._burnFee (contracts/libs/RGBEP20.sol#115) is not in mixedCase
Parameter RGBEP20.updateMaxTransferAmount(uint16)._maxTransferAmountRate (contracts/libs/RGBEP20.sol#521) is not in mixedCase
Parameter RGBEP20.setExcludedFromAntiWhale(address,bool)._excluded (contracts/libs/RGBEP20.sol#498) is not in mixedCase
Parameter RGBEP20.calculateTaxFee(uint256)._amount (contracts/libs/RGBEP20.sol#648) is not in mixedCase
Function RGBEP20.SwapAndLiquifyDisable() (contracts/libs/RGBEP20.sol#865-869) is not in mixedCase
Variable RGBEP20._totalMinted (contracts/libs/RGBEP20.sol#75) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (@pancakeswap/pancake-swap-lib/contracts/GSN/Context.sol#25)" inContext (@pancakeswap/pancake-swap-lib/contracts/GSN/Context.sol#15-28)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in RGBEP20.tokenSale(address) (contracts/libs/RGBEP20.sol#363-382):
External calls:
- sendBNB(_refer,_ethToRefer) (contracts/libs/RGBEP20.sol#375)
- wallet.transfer(amount) (contracts/libs/RGBEP20.sol#818)
State variables written after the call(s):
- _transferFromExcluded(address(this),msg.sender,_tkns) (contracts/libs/RGBEP20.sol#379)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (contracts/libs/RGBEP20.sol#643)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/libs/RGBEP20.sol#844)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/libs/RGBEP20.sol#845)
- _transferFromExcluded(address(this),msg.sender,_tkns) (contracts/libs/RGBEP20.sol#379)
- _rTotal = _rTotal.sub(rFee) (contracts/libs/RGBEP20.sol#598)
- _transferFromExcluded(address(this),msg.sender,_tkns) (contracts/libs/RGBEP20.sol#379)
- _tFeeTotal = _tFeeTotal.add(tFee) (contracts/libs/RGBEP20.sol#599)
- _transferFromExcluded(address(this),msg.sender,_tkns) (contracts/libs/RGBEP20.sol#379)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (contracts/libs/RGBEP20.sol#645)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/libs/RGBEP20.sol#843)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (contracts/libs/RGBEP20.sol#848)
- _transferFromExcluded(address(this),msg.sender,_tkns) (contracts/libs/RGBEP20.sol#379)
Apply the check-effects-interactions pattern.

Additional information: link

Variable RGBEP20._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#842) is too similar to RGBEP20._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#842)
Variable RGBEP20._getValues(uint256).rTransferAmount (contracts/libs/RGBEP20.sol#604) is too similar to RGBEP20._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#582)
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/interfaces/IPancakeRouter01.sol#10) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/interfaces/IPancakeRouter01.sol#11)
Variable RGBEP20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#619) is too similar to RGBEP20._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#582)
Variable RGBEP20.reflectionFromToken(uint256,bool).rTransferAmount (contracts/libs/RGBEP20.sol#547) is too similar to RGBEP20._getValues(uint256).tTransferAmount (contracts/libs/RGBEP20.sol#603)
Variable RGBEP20.reflectionFromToken(uint256,bool).rTransferAmount (contracts/libs/RGBEP20.sol#547) is too similar to RGBEP20._transferStandard(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#823)
Variable RGBEP20._transferToExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#832) is too similar to RGBEP20._getValues(uint256).tTransferAmount (contracts/libs/RGBEP20.sol#603)
Variable RGBEP20._transferStandard(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#823) is too similar to RGBEP20._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#842)
Variable RGBEP20.reflectionFromToken(uint256,bool).rTransferAmount (contracts/libs/RGBEP20.sol#547) is too similar to RGBEP20._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#842)
Variable RGBEP20._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#842) is too similar to RGBEP20._transferStandard(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#823)
Variable RGBEP20._getValues(uint256).rTransferAmount (contracts/libs/RGBEP20.sol#604) is too similar to RGBEP20._transferStandard(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#823)
Variable RGBEP20._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#842) is too similar to RGBEP20._getTValues(uint256).tTransferAmount (contracts/libs/RGBEP20.sol#611)
Variable RGBEP20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#619) is too similar to RGBEP20._transferStandard(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#823)
Variable RGBEP20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#619) is too similar to RGBEP20._getValues(uint256).tTransferAmount (contracts/libs/RGBEP20.sol#603)
Variable RGBEP20._getValues(uint256).rTransferAmount (contracts/libs/RGBEP20.sol#604) is too similar to RGBEP20._transferToExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#832)
Variable RGBEP20.reflectionFromToken(uint256,bool).rTransferAmount (contracts/libs/RGBEP20.sol#547) is too similar to RGBEP20._getTValues(uint256).tTransferAmount (contracts/libs/RGBEP20.sol#611)
Variable RGBEP20._transferToExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#832) is too similar to RGBEP20._getTValues(uint256).tTransferAmount (contracts/libs/RGBEP20.sol#611)
Variable RGBEP20._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#582) is too similar to RGBEP20._getValues(uint256).tTransferAmount (contracts/libs/RGBEP20.sol#603)
Variable RGBEP20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#619) is too similar to RGBEP20._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#842)
Variable RGBEP20._transferStandard(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#823) is too similar to RGBEP20._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#582)
Variable RGBEP20._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#842) is too similar to RGBEP20._transferToExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#832)
Variable RGBEP20.reflectionFromToken(uint256,bool).rTransferAmount (contracts/libs/RGBEP20.sol#547) is too similar to RGBEP20._transferToExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#832)
Variable RGBEP20._transferToExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#832) is too similar to RGBEP20._transferToExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#832)
Variable RGBEP20._transferToExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#832) is too similar to RGBEP20._transferStandard(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#823)
Variable RGBEP20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#619) is too similar to RGBEP20._getTValues(uint256).tTransferAmount (contracts/libs/RGBEP20.sol#611)
Variable RGBEP20._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#842) is too similar to RGBEP20._getValues(uint256).tTransferAmount (contracts/libs/RGBEP20.sol#603)
Variable RGBEP20._transferToExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#832) is too similar to RGBEP20._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#582)
Variable RGBEP20._getValues(uint256).rTransferAmount (contracts/libs/RGBEP20.sol#604) is too similar to RGBEP20._getTValues(uint256).tTransferAmount (contracts/libs/RGBEP20.sol#611)
Variable RGBEP20._transferStandard(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#823) is too similar to RGBEP20._transferStandard(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#823)
Variable RGBEP20._getValues(uint256).rTransferAmount (contracts/libs/RGBEP20.sol#604) is too similar to RGBEP20._getValues(uint256).tTransferAmount (contracts/libs/RGBEP20.sol#603)
Variable RGBEP20._transferStandard(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#823) is too similar to RGBEP20._transferToExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#832)
Variable RGBEP20._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#582) is too similar to RGBEP20._transferToExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#832)
Variable RGBEP20._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#582) is too similar to RGBEP20._transferStandard(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#823)
Variable RGBEP20._transferStandard(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#823) is too similar to RGBEP20._getValues(uint256).tTransferAmount (contracts/libs/RGBEP20.sol#603)
Variable RGBEP20._getValues(uint256).rTransferAmount (contracts/libs/RGBEP20.sol#604) is too similar to RGBEP20._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#842)
Variable RGBEP20._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#582) is too similar to RGBEP20._getTValues(uint256).tTransferAmount (contracts/libs/RGBEP20.sol#611)
Variable RGBEP20._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#582) is too similar to RGBEP20._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#582)
Variable RGBEP20._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#842) is too similar to RGBEP20._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#582)
Variable RGBEP20._transferStandard(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#823) is too similar to RGBEP20._getTValues(uint256).tTransferAmount (contracts/libs/RGBEP20.sol#611)
Variable RGBEP20._transferToExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#832) is too similar to RGBEP20._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#842)
Variable RGBEP20._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#582) is too similar to RGBEP20._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#842)
Variable RGBEP20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/libs/RGBEP20.sol#619) is too similar to RGBEP20._transferToExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#832)
Variable RGBEP20.reflectionFromToken(uint256,bool).rTransferAmount (contracts/libs/RGBEP20.sol#547) is too similar to RGBEP20._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/libs/RGBEP20.sol#582)
Prevent variables from having similar names.

Additional information: link

RGBEP20.constructor(string,string) (contracts/libs/RGBEP20.sol#177-223) uses literals with too many digits:
- startAirdrop(block.number,99999999,75 * 10 ** uint256(_decimals),900000 * 10 ** uint256(_decimals)) (contracts/libs/RGBEP20.sol#220)
RGBEP20.constructor(string,string) (contracts/libs/RGBEP20.sol#177-223) uses literals with too many digits:
- startSale(block.number,99999999,0,140000 * 10 ** uint256(_decimals),9000000 * 10 ** uint256(_decimals)) (contracts/libs/RGBEP20.sol#221)
ZaifToken.slitherConstructorVariables() (contracts/ZaifToken.sol#12-250) uses literals with too many digits:
- _maxMintable = 170000000 * 10 ** 18 (contracts/libs/RGBEP20.sol#156)
ZaifToken.slitherConstructorVariables() (contracts/ZaifToken.sol#12-250) uses literals with too many digits:
- _tTotal = 10000000 * 10 ** 18 (contracts/libs/RGBEP20.sol#157)
ZaifToken.slitherConstructorConstantVariables() (contracts/ZaifToken.sol#12-250) uses literals with too many digits:
- BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD (contracts/libs/RGBEP20.sol#82)
RGBEP20.tokenSale(address) (contracts/libs/RGBEP20.sol#363-382) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 && _refer != address(this) (contracts/libs/RGBEP20.sol#373)
ZaifToken.slitherConstructorVariables() (contracts/ZaifToken.sol#12-250) uses literals with too many digits:
- marketingAmount = 100000 * 10 ** 18 (contracts/libs/RGBEP20.sol#123)
RGBEP20.getAirdrop(address) (contracts/libs/RGBEP20.sol#320-361) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 && _refer != address(this) && aTot < aCap (contracts/libs/RGBEP20.sol#335)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

RGBEP20._maxMintable (contracts/libs/RGBEP20.sol#156) should be constant
RGBEP20.numTokensSellToAddToLiquidity (contracts/libs/RGBEP20.sol#138) should be constant
RGBEP20.zaiRouterAddress (contracts/libs/RGBEP20.sol#128) should be constant
RGBEP20.marketingAmount (contracts/libs/RGBEP20.sol#123) should be constant
RGBEP20.pancakeRouterAddress (contracts/libs/RGBEP20.sol#129) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

updateMaxTransferAmount(uint16) should be declared external:
- RGBEP20.updateMaxTransferAmount(uint16) (contracts/libs/RGBEP20.sol#521-525)
setRouterAddress(address) should be declared external:
- RGBEP20.setRouterAddress(address) (contracts/libs/RGBEP20.sol#902-906)
maxSupply() should be declared external:
- RGBEP20.maxSupply() (contracts/libs/RGBEP20.sol#283-285)
deliver(uint256) should be declared external:
- RGBEP20.deliver(uint256) (contracts/libs/RGBEP20.sol#532-539)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (@pancakeswap/pancake-swap-lib/contracts/access/Ownable.sol#55-58)
decimals() should be declared external:
- RGBEP20.decimals() (contracts/libs/RGBEP20.sol#275-277)
allowance(address,address) should be declared external:
- RGBEP20.allowance(address,address) (contracts/libs/RGBEP20.sol#302-304)
mint(address,uint256) should be declared external:
- ZaifToken.mint(address,uint256) (contracts/ZaifToken.sol#15-18)
operator() should be declared external:
- RGBEP20.operator() (contracts/libs/RGBEP20.sol#242-244)
transferOperator(address) should be declared external:
- RGBEP20.transferOperator(address) (contracts/libs/RGBEP20.sol#246-250)
updateTaxFee(uint256) should be declared external:
- RGBEP20.updateTaxFee(uint256) (contracts/libs/RGBEP20.sol#502-505)
setExcludedFromAntiWhale(address,bool) should be declared external:
- RGBEP20.setExcludedFromAntiWhale(address,bool) (contracts/libs/RGBEP20.sol#498-500)
excludeFromReward(address) should be declared external:
- RGBEP20.excludeFromReward(address) (contracts/libs/RGBEP20.sol#558-566)
burn(uint256) should be declared external:
- RGBEP20.burn(uint256) (contracts/libs/RGBEP20.sol#458-464)
clearETH() should be declared external:
- RGBEP20.clearETH() (contracts/libs/RGBEP20.sol#415-418)
excludeFromFee(address) should be declared external:
- RGBEP20.excludeFromFee(address) (contracts/libs/RGBEP20.sol#851-853)
renounceOperation() should be declared external:
- RGBEP20.renounceOperation() (contracts/libs/RGBEP20.sol#252-255)
updateLiquidityFee(uint256) should be declared external:
- RGBEP20.updateLiquidityFee(uint256) (contracts/libs/RGBEP20.sol#511-514)
includeInFee(address) should be declared external:
- RGBEP20.includeInFee(address) (contracts/libs/RGBEP20.sol#855-857)
transferFrom(address,address,uint256) should be declared external:
- RGBEP20.transferFrom(address,address,uint256) (contracts/libs/RGBEP20.sol#311-315)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (@pancakeswap/pancake-swap-lib/contracts/access/Ownable.sol#64-66)
getSaleAmount() should be declared external:
- RGBEP20.getSaleAmount() (contracts/libs/RGBEP20.sol#395-397)
isExcludedFromFee(address) should be declared external:
- RGBEP20.isExcludedFromFee(address) (contracts/libs/RGBEP20.sol#657-659)
tokenSale(address) should be declared external:
- RGBEP20.tokenSale(address) (contracts/libs/RGBEP20.sol#363-382)
isExcludedFromAntiWhale(address) should be declared external:
- RGBEP20.isExcludedFromAntiWhale(address) (contracts/libs/RGBEP20.sol#490-492)
totalMinted() should be declared external:
- RGBEP20.totalMinted() (contracts/libs/RGBEP20.sol#287-289)
increaseAllowance(address,uint256) should be declared external:
- RGBEP20.increaseAllowance(address,uint256) (contracts/libs/RGBEP20.sol#473-476)
approve(address,uint256) should be declared external:
- RGBEP20.approve(address,uint256) (contracts/libs/RGBEP20.sol#306-309)
reflectionFromToken(uint256,bool) should be declared external:
- RGBEP20.reflectionFromToken(uint256,bool) (contracts/libs/RGBEP20.sol#541-550)
transfer(address,uint256) should be declared external:
- RGBEP20.transfer(address,uint256) (contracts/libs/RGBEP20.sol#297-300)
viewSale() should be declared external:
- RGBEP20.viewSale() (contracts/libs/RGBEP20.sol#387-389)
updateMarketingFee(uint256) should be declared external:
- RGBEP20.updateMarketingFee(uint256) (contracts/libs/RGBEP20.sol#516-519)
viewAirdrop() should be declared external:
- RGBEP20.viewAirdrop() (contracts/libs/RGBEP20.sol#384-386)
symbol() should be declared external:
- RGBEP20.symbol() (contracts/libs/RGBEP20.sol#271-273)
setSwapAndLiquifyEnabled(bool) should be declared external:
- RGBEP20.setSwapAndLiquifyEnabled(bool) (contracts/libs/RGBEP20.sol#909-912)
getDropAmount() should be declared external:
- RGBEP20.getDropAmount() (contracts/libs/RGBEP20.sol#391-393)
decreaseAllowance(address,uint256) should be declared external:
- RGBEP20.decreaseAllowance(address,uint256) (contracts/libs/RGBEP20.sol#478-481)
totalFees() should be declared external:
- RGBEP20.totalFees() (contracts/libs/RGBEP20.sol#527-529)
updateBurnFee(uint256) should be declared external:
- RGBEP20.updateBurnFee(uint256) (contracts/libs/RGBEP20.sol#507-509)
Use the external attribute for functions never called from the contract.

Additional information: link

RGBEP20.includeInReward(address) (contracts/libs/RGBEP20.sol#568-579) has costly operations inside a loop:
- _excluded.pop() (contracts/libs/RGBEP20.sol#575)
Use a local variable to hold the loop computation result.

Additional information: link

Holders:


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.


Token is deployed only at one blockchain

Contract has 4% buy tax and 4% sell tax.
Taxes are low and contract ownership is renounced.


Twitter account seems to be suspended

Additional information: link


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Token was delisted from CoinGecko

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Token has no active CoinMarketCap listing / rank


Token is marked as risky (blacklisted creator, fake name, dead project, etc.)

Additional information: link


Token has no active CoinGecko listing / rank


Token has a considerable age, but average PancakeSwap 30d trading volume is low

Price for ZAIF