FLOKIGANG Token Logo

FGANG [FLOKIGANG] Token

About FGANG

Listings

Not Found
Token 2 years

ShibaGang is all about sticking together. As a gang we are stronger, join the FLOKIGang! #FLOKIGANG

https://t.co/VvmSXFGUAU

Social

Laser Scorebeta Last Audit: 22 December 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Reentrancy in FLOKIGANG._transfer(address,address,uint256) (#682-737):
External calls:
- swapTokens(contractTokenBalance) (#717)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#766-772)
- buyBackTokens(balance.div(100)) (#725)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#784-789)
External calls sending eth:
- swapTokens(contractTokenBalance) (#717)
- recipient.transfer(amount) (#988)
- buyBackTokens(balance.div(100)) (#725)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#784-789)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _liquidityFee = _previousLiquidityFee (#942)
- _liquidityFee = 0 (#937)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _rOwned[marketingWallet] = _rOwned[marketingWallet].add(rLiquidity) (#913)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#829)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#838)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#849)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#859)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#830)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#840)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#850)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#861)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _rTotal = _rTotal.sub(rFee) (#868)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#915)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#858)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#848)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#839)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#860)
- buyBackTokens(balance.div(100)) (#725)
- inSwapAndLiquify = true (#490)
- inSwapAndLiquify = false (#492)
Apply the check-effects-interactions pattern.

Additional information: link

FLOKIGANG._isExcluded (#428) is never initialized. It is used in:
- FLOKIGANG.balanceOf(address) (#528-531)
- FLOKIGANG.isExcludedFromReward(address) (#563-565)
- FLOKIGANG.deliver(uint256) (#647-654)
- FLOKIGANG._tokenTransfer(address,address,uint256,bool) (#809-825)
- FLOKIGANG._takeLiquidity(uint256) (#910-916)
FLOKIGANG._excluded (#429) is never initialized. It is used in:
- FLOKIGANG._getCurrentSupply() (#898-908)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

FLOKIGANG.swapTokens(uint256) (#739-748) performs a multiplication on the result of a division:
-transferToAddressETH(marketingWallet,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#746)
Consider ordering multiplication before division.

Additional information: link

Redundant expression "this (#16)" inContext (#10-19)
Remove redundant statements if they congest code but offer no value.

Additional information: link

FLOKIGANG.swapTokensForEth(uint256) (#757-775) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (#761)
FLOKIGANG.swapTokensForEth(uint256) (#757-775) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#766-772)
FLOKIGANG.transferToAddressETH(address,uint256) (#987-989) has external calls inside a loop: recipient.transfer(amount) (#988)
FLOKIGANG.swapETHForTokens(uint256) (#777-792) has external calls inside a loop: path[0] = uniswapV2Router.WETH() (#780)
FLOKIGANG.swapETHForTokens(uint256) (#777-792) has external calls inside a loop: uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#784-789)
Favor pull over push strategy for external calls.

Additional information: link

FLOKIGANG.lockTheSwap() (#489-493) has costly operations inside a loop:
- inSwapAndLiquify = true (#490)
FLOKIGANG.lockTheSwap() (#489-493) has costly operations inside a loop:
- inSwapAndLiquify = false (#492)
FLOKIGANG.removeAllFee() (#930-938) has costly operations inside a loop:
- _previousTaxFee = _taxFee (#933)
FLOKIGANG.removeAllFee() (#930-938) has costly operations inside a loop:
- _previousLiquidityFee = _liquidityFee (#934)
FLOKIGANG.removeAllFee() (#930-938) has costly operations inside a loop:
- _taxFee = 0 (#936)
FLOKIGANG.removeAllFee() (#930-938) has costly operations inside a loop:
- _liquidityFee = 0 (#937)
FLOKIGANG._reflectFee(uint256,uint256) (#867-870) has costly operations inside a loop:
- _rTotal = _rTotal.sub(rFee) (#868)
FLOKIGANG._reflectFee(uint256,uint256) (#867-870) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal.add(tFee) (#869)
FLOKIGANG.restoreAllFee() (#940-943) has costly operations inside a loop:
- _taxFee = _previousTaxFee (#941)
FLOKIGANG.restoreAllFee() (#940-943) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (#942)
Use a local variable to hold the loop computation result.

Additional information: link

FLOKIGANG.addLiquidity(uint256,uint256) (#794-807) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#799-806)
Ensure that all the return values of the function calls are used.

Additional information: link

FLOKIGANG.allowance(address,address).owner (#538) shadows:
- Ownable.owner() (#162-164) (function)
FLOKIGANG._approve(address,address,uint256).owner (#674) shadows:
- Ownable.owner() (#162-164) (function)
Rename the local variables that shadow another component.

Additional information: link

FLOKIGANG.setTaxFeePercent(uint256) (#957-959) should emit an event for:
- _taxFee = taxFee (#958)
FLOKIGANG.setLiquidityFeePercent(uint256) (#961-963) should emit an event for:
- _liquidityFee = liquidityFee (#962)
FLOKIGANG.setMarketingDivisor(uint256) (#965-967) should emit an event for:
- marketingDivisor = divisor (#966)
FLOKIGANG.setNumTokensSellToAddToLiquidity(uint256) (#969-971) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#970)
FLOKIGANG.setBuybackUpperLimit(uint256) (#973-975) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 9 (#974)
Emit an event for critical parameter changes.

Additional information: link

FLOKIGANG.constructor(address)._marketingWallet (#495) lacks a zero-check on :
- marketingWallet = _marketingWallet (#507)
Check that the address is not zero.

Additional information: link

Reentrancy in FLOKIGANG._transfer(address,address,uint256) (#682-737):
External calls:
- swapTokens(contractTokenBalance) (#717)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#766-772)
- buyBackTokens(balance.div(100)) (#725)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#784-789)
External calls sending eth:
- swapTokens(contractTokenBalance) (#717)
- recipient.transfer(amount) (#988)
- buyBackTokens(balance.div(100)) (#725)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#784-789)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _previousLiquidityFee = _liquidityFee (#934)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _previousTaxFee = _taxFee (#933)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _tFeeTotal = _tFeeTotal.add(tFee) (#869)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _taxFee = _previousTaxFee (#941)
- _taxFee = 0 (#936)
Reentrancy in FLOKIGANG.constructor(address) (#495-510):
External calls:
- pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#499-500)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#505)
- _isExcludedFromFee[address(this)] = true (#506)
- marketingWallet = _marketingWallet (#507)
- uniswapV2Router = _uniswapV2Router (#502)
Reentrancy in FLOKIGANG.transferFrom(address,address,uint256) (#547-551):
External calls:
- _transfer(sender,recipient,amount) (#548)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#784-789)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#766-772)
External calls sending eth:
- _transfer(sender,recipient,amount) (#548)
- recipient.transfer(amount) (#988)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#784-789)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#549)
- _allowances[owner][spender] = amount (#678)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FLOKIGANG._transfer(address,address,uint256) (#682-737):
External calls:
- swapTokens(contractTokenBalance) (#717)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#766-772)
- buyBackTokens(balance.div(100)) (#725)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#784-789)
External calls sending eth:
- swapTokens(contractTokenBalance) (#717)
- recipient.transfer(amount) (#988)
- buyBackTokens(balance.div(100)) (#725)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#784-789)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#791)
- buyBackTokens(balance.div(100)) (#725)
- Transfer(sender,recipient,tTransferAmount) (#833)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- Transfer(sender,recipient,tTransferAmount) (#853)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- Transfer(sender,recipient,tTransferAmount) (#843)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- Transfer(sender,recipient,tTransferAmount) (#864)
- _tokenTransfer(from,to,amount,takeFee) (#736)
Reentrancy in FLOKIGANG.constructor(address) (#495-510):
External calls:
- pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#499-500)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#509)
Reentrancy in FLOKIGANG.swapETHForTokens(uint256) (#777-792):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#784-789)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#791)
Reentrancy in FLOKIGANG.swapTokensForEth(uint256) (#757-775):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#766-772)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#774)
Reentrancy in FLOKIGANG.transferFrom(address,address,uint256) (#547-551):
External calls:
- _transfer(sender,recipient,amount) (#548)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#784-789)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#766-772)
External calls sending eth:
- _transfer(sender,recipient,amount) (#548)
- recipient.transfer(amount) (#988)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#784-789)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#679)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#549)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#197-202) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#199)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#92-101) uses assembly
- INLINE ASM (#99)
Address._functionCallWithValue(address,bytes,uint256,string) (#129-146) uses assembly
- INLINE ASM (#138-141)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#129-146) is never used and should be removed
Address.functionCall(address,bytes) (#112-114) is never used and should be removed
Address.functionCall(address,bytes,string) (#116-118) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#120-122) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#124-127) is never used and should be removed
Address.isContract(address) (#92-101) is never used and should be removed
Address.sendValue(address,uint256) (#103-109) is never used and should be removed
Context._msgData() (#15-18) is never used and should be removed
FLOKIGANG.addLiquidity(uint256,uint256) (#794-807) is never used and should be removed
SafeMath.mod(uint256,uint256) (#80-82) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#84-87) is never used and should be removed
Remove unused functions.

Additional information: link

FLOKIGANG._rTotal (#433) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
FLOKIGANG._previousTaxFee (#442) is set pre-construction with a non-constant function or state variable:
- _taxFee
FLOKIGANG._previousLiquidityFee (#445) 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

Low level call in Address.sendValue(address,uint256) (#103-109):
- (success) = recipient.call{value: amount}() (#107)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#129-146):
- (success,returndata) = target.call{value: weiValue}(data) (#132)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#241) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#242) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#258) is not in mixedCase
Function IUniswapV2Router01.WETH() (#279) is not in mixedCase
Parameter FLOKIGANG.batchTransfer(address[],uint256)._users (#579) is not in mixedCase
Parameter FLOKIGANG.batchTransfer(address[],uint256)._amount (#579) is not in mixedCase
Parameter FLOKIGANG.addBuyer(address)._anAddress (#607) is not in mixedCase
Parameter FLOKIGANG.addBlacklist(address)._anAddress (#611) is not in mixedCase
Parameter FLOKIGANG.addBlacklistPrivate(address)._anAddress (#614) is not in mixedCase
Parameter FLOKIGANG.isBlacklisted(address)._anAddress (#617) is not in mixedCase
Parameter FLOKIGANG.deleteBlacklisted(address)._anAddress (#620) is not in mixedCase
Parameter FLOKIGANG.addSeller(address)._anAddress (#624) is not in mixedCase
Parameter FLOKIGANG.isSeller(address)._anAddress (#627) is not in mixedCase
Parameter FLOKIGANG.deleteSeller(address)._anAddress (#630) is not in mixedCase
Parameter FLOKIGANG.addAirdrops(address)._hello (#634) is not in mixedCase
Parameter FLOKIGANG.isWhitelisted(address)._wallet (#637) is not in mixedCase
Parameter FLOKIGANG.calculateTaxFee(uint256)._amount (#918) is not in mixedCase
Parameter FLOKIGANG.calculateLiquidityFee(uint256)._amount (#924) is not in mixedCase
Parameter FLOKIGANG.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#969) is not in mixedCase
Parameter FLOKIGANG.setSwapAndLiquifyEnabled(bool)._enabled (#977) is not in mixedCase
Parameter FLOKIGANG.setBuyBackEnabled(bool)._enabled (#982) is not in mixedCase
Variable FLOKIGANG._taxFee (#441) is not in mixedCase
Variable FLOKIGANG._liquidityFee (#444) is not in mixedCase
Variable FLOKIGANG._maxTxAmount (#456) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in FLOKIGANG._transfer(address,address,uint256) (#682-737):
External calls:
- swapTokens(contractTokenBalance) (#717)
- recipient.transfer(amount) (#988)
External calls sending eth:
- swapTokens(contractTokenBalance) (#717)
- recipient.transfer(amount) (#988)
- buyBackTokens(balance.div(100)) (#725)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#784-789)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _liquidityFee = _previousLiquidityFee (#942)
- _liquidityFee = 0 (#937)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _previousLiquidityFee = _liquidityFee (#934)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _previousTaxFee = _taxFee (#933)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _rOwned[marketingWallet] = _rOwned[marketingWallet].add(rLiquidity) (#913)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#829)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#838)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#849)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#859)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#830)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#840)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#850)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#861)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _rTotal = _rTotal.sub(rFee) (#868)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _tFeeTotal = _tFeeTotal.add(tFee) (#869)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#915)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#858)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#848)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#839)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#860)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- _taxFee = _previousTaxFee (#941)
- _taxFee = 0 (#936)
- buyBackTokens(balance.div(100)) (#725)
- inSwapAndLiquify = true (#490)
- inSwapAndLiquify = false (#492)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#791)
- buyBackTokens(balance.div(100)) (#725)
- Transfer(sender,recipient,tTransferAmount) (#833)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- Transfer(sender,recipient,tTransferAmount) (#853)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- Transfer(sender,recipient,tTransferAmount) (#843)
- _tokenTransfer(from,to,amount,takeFee) (#736)
- Transfer(sender,recipient,tTransferAmount) (#864)
- _tokenTransfer(from,to,amount,takeFee) (#736)
Reentrancy in FLOKIGANG.transferFrom(address,address,uint256) (#547-551):
External calls:
- _transfer(sender,recipient,amount) (#548)
- recipient.transfer(amount) (#988)
External calls sending eth:
- _transfer(sender,recipient,amount) (#548)
- recipient.transfer(amount) (#988)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#784-789)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#549)
- _allowances[owner][spender] = amount (#678)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#679)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#549)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#284) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#285)
Variable FLOKIGANG._transferBothExcluded(address,address,uint256).rTransferAmount (#857) is too similar to FLOKIGANG._transferStandard(address,address,uint256).tTransferAmount (#828)
Variable FLOKIGANG._transferFromExcluded(address,address,uint256).rTransferAmount (#847) is too similar to FLOKIGANG._transferFromExcluded(address,address,uint256).tTransferAmount (#847)
Variable FLOKIGANG.reflectionFromToken(uint256,bool).rTransferAmount (#663) is too similar to FLOKIGANG._getTValues(uint256).tTransferAmount (#881)
Variable FLOKIGANG._transferToExcluded(address,address,uint256).rTransferAmount (#837) is too similar to FLOKIGANG._transferToExcluded(address,address,uint256).tTransferAmount (#837)
Variable FLOKIGANG._transferToExcluded(address,address,uint256).rTransferAmount (#837) is too similar to FLOKIGANG._getValues(uint256).tTransferAmount (#873)
Variable FLOKIGANG._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#889) is too similar to FLOKIGANG._getTValues(uint256).tTransferAmount (#881)
Variable FLOKIGANG._transferBothExcluded(address,address,uint256).rTransferAmount (#857) is too similar to FLOKIGANG._getTValues(uint256).tTransferAmount (#881)
Variable FLOKIGANG.reflectionFromToken(uint256,bool).rTransferAmount (#663) is too similar to FLOKIGANG._transferFromExcluded(address,address,uint256).tTransferAmount (#847)
Variable FLOKIGANG._transferToExcluded(address,address,uint256).rTransferAmount (#837) is too similar to FLOKIGANG._getTValues(uint256).tTransferAmount (#881)
Variable FLOKIGANG._transferBothExcluded(address,address,uint256).rTransferAmount (#857) is too similar to FLOKIGANG._transferFromExcluded(address,address,uint256).tTransferAmount (#847)
Variable FLOKIGANG._transferStandard(address,address,uint256).rTransferAmount (#828) is too similar to FLOKIGANG._transferToExcluded(address,address,uint256).tTransferAmount (#837)
Variable FLOKIGANG._transferStandard(address,address,uint256).rTransferAmount (#828) is too similar to FLOKIGANG._getValues(uint256).tTransferAmount (#873)
Variable FLOKIGANG._transferFromExcluded(address,address,uint256).rTransferAmount (#847) is too similar to FLOKIGANG._getValues(uint256).tTransferAmount (#873)
Variable FLOKIGANG._transferBothExcluded(address,address,uint256).rTransferAmount (#857) is too similar to FLOKIGANG._transferBothExcluded(address,address,uint256).tTransferAmount (#857)
Variable FLOKIGANG._transferToExcluded(address,address,uint256).rTransferAmount (#837) is too similar to FLOKIGANG._transferFromExcluded(address,address,uint256).tTransferAmount (#847)
Variable FLOKIGANG._transferFromExcluded(address,address,uint256).rTransferAmount (#847) is too similar to FLOKIGANG._transferToExcluded(address,address,uint256).tTransferAmount (#837)
Variable FLOKIGANG._transferStandard(address,address,uint256).rTransferAmount (#828) is too similar to FLOKIGANG._transferStandard(address,address,uint256).tTransferAmount (#828)
Variable FLOKIGANG._transferStandard(address,address,uint256).rTransferAmount (#828) is too similar to FLOKIGANG._getTValues(uint256).tTransferAmount (#881)
Variable FLOKIGANG.reflectionFromToken(uint256,bool).rTransferAmount (#663) is too similar to FLOKIGANG._getValues(uint256).tTransferAmount (#873)
Variable FLOKIGANG.reflectionFromToken(uint256,bool).rTransferAmount (#663) is too similar to FLOKIGANG._transferToExcluded(address,address,uint256).tTransferAmount (#837)
Variable FLOKIGANG._transferFromExcluded(address,address,uint256).rTransferAmount (#847) is too similar to FLOKIGANG._getTValues(uint256).tTransferAmount (#881)
Variable FLOKIGANG._transferBothExcluded(address,address,uint256).rTransferAmount (#857) is too similar to FLOKIGANG._getValues(uint256).tTransferAmount (#873)
Variable FLOKIGANG._getValues(uint256).rTransferAmount (#874) is too similar to FLOKIGANG._getTValues(uint256).tTransferAmount (#881)
Variable FLOKIGANG._transferBothExcluded(address,address,uint256).rTransferAmount (#857) is too similar to FLOKIGANG._transferToExcluded(address,address,uint256).tTransferAmount (#837)
Variable FLOKIGANG._transferStandard(address,address,uint256).rTransferAmount (#828) is too similar to FLOKIGANG._transferFromExcluded(address,address,uint256).tTransferAmount (#847)
Variable FLOKIGANG._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#889) is too similar to FLOKIGANG._transferStandard(address,address,uint256).tTransferAmount (#828)
Variable FLOKIGANG._transferStandard(address,address,uint256).rTransferAmount (#828) is too similar to FLOKIGANG._transferBothExcluded(address,address,uint256).tTransferAmount (#857)
Variable FLOKIGANG._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#889) is too similar to FLOKIGANG._transferBothExcluded(address,address,uint256).tTransferAmount (#857)
Variable FLOKIGANG._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#889) is too similar to FLOKIGANG._getValues(uint256).tTransferAmount (#873)
Variable FLOKIGANG._getValues(uint256).rTransferAmount (#874) is too similar to FLOKIGANG._transferFromExcluded(address,address,uint256).tTransferAmount (#847)
Variable FLOKIGANG._transferFromExcluded(address,address,uint256).rTransferAmount (#847) is too similar to FLOKIGANG._transferStandard(address,address,uint256).tTransferAmount (#828)
Variable FLOKIGANG._getValues(uint256).rTransferAmount (#874) is too similar to FLOKIGANG._transferStandard(address,address,uint256).tTransferAmount (#828)
Variable FLOKIGANG._transferFromExcluded(address,address,uint256).rTransferAmount (#847) is too similar to FLOKIGANG._transferBothExcluded(address,address,uint256).tTransferAmount (#857)
Variable FLOKIGANG._getValues(uint256).rTransferAmount (#874) is too similar to FLOKIGANG._transferBothExcluded(address,address,uint256).tTransferAmount (#857)
Variable FLOKIGANG._getValues(uint256).rTransferAmount (#874) is too similar to FLOKIGANG._getValues(uint256).tTransferAmount (#873)
Variable FLOKIGANG._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#889) is too similar to FLOKIGANG._transferToExcluded(address,address,uint256).tTransferAmount (#837)
Variable FLOKIGANG._transferToExcluded(address,address,uint256).rTransferAmount (#837) is too similar to FLOKIGANG._transferStandard(address,address,uint256).tTransferAmount (#828)
Variable FLOKIGANG._transferToExcluded(address,address,uint256).rTransferAmount (#837) is too similar to FLOKIGANG._transferBothExcluded(address,address,uint256).tTransferAmount (#857)
Variable FLOKIGANG._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#889) is too similar to FLOKIGANG._transferFromExcluded(address,address,uint256).tTransferAmount (#847)
Variable FLOKIGANG.reflectionFromToken(uint256,bool).rTransferAmount (#663) is too similar to FLOKIGANG._transferStandard(address,address,uint256).tTransferAmount (#828)
Variable FLOKIGANG._getValues(uint256).rTransferAmount (#874) is too similar to FLOKIGANG._transferToExcluded(address,address,uint256).tTransferAmount (#837)
Variable FLOKIGANG.reflectionFromToken(uint256,bool).rTransferAmount (#663) is too similar to FLOKIGANG._transferBothExcluded(address,address,uint256).tTransferAmount (#857)
Prevent variables from having similar names.

Additional information: link

FLOKIGANG.slitherConstructorVariables() (#416-994) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#421)
FLOKIGANG.slitherConstructorVariables() (#416-994) uses literals with too many digits:
- _tTotal = 10000000000000 * 10 ** 9 (#432)
FLOKIGANG.slitherConstructorVariables() (#416-994) uses literals with too many digits:
- minimumTokensBeforeSwap = 1000000000 * 10 ** 9 (#449)
FLOKIGANG.slitherConstructorVariables() (#416-994) uses literals with too many digits:
- buyBackUpperLimit = 1000000000 * 10 ** 5 * 10 ** 9 (#450)
FLOKIGANG.slitherConstructorVariables() (#416-994) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 9 (#456)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

FLOKIGANG._buyerWallets (#452) is never used in FLOKIGANG (#416-994)
Remove unused state variables.

Additional information: link

FLOKIGANG._decimals (#438) should be constant
FLOKIGANG._name (#436) should be constant
FLOKIGANG._symbol (#437) should be constant
FLOKIGANG._tTotal (#432) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#171-174)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#176-180)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#182-184)
getTime() should be declared external:
- Ownable.getTime() (#186-188)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#190-195)
unlock() should be declared external:
- Ownable.unlock() (#197-202)
name() should be declared external:
- FLOKIGANG.name() (#512-514)
symbol() should be declared external:
- FLOKIGANG.symbol() (#516-518)
decimals() should be declared external:
- FLOKIGANG.decimals() (#520-522)
totalSupply() should be declared external:
- FLOKIGANG.totalSupply() (#524-526)
transfer(address,uint256) should be declared external:
- FLOKIGANG.transfer(address,uint256) (#533-536)
allowance(address,address) should be declared external:
- FLOKIGANG.allowance(address,address) (#538-540)
approve(address,uint256) should be declared external:
- FLOKIGANG.approve(address,uint256) (#542-545)
transferFrom(address,address,uint256) should be declared external:
- FLOKIGANG.transferFrom(address,address,uint256) (#547-551)
increaseAllowance(address,uint256) should be declared external:
- FLOKIGANG.increaseAllowance(address,uint256) (#553-556)
decreaseAllowance(address,uint256) should be declared external:
- FLOKIGANG.decreaseAllowance(address,uint256) (#558-561)
isExcludedFromReward(address) should be declared external:
- FLOKIGANG.isExcludedFromReward(address) (#563-565)
totalFees() should be declared external:
- FLOKIGANG.totalFees() (#567-569)
minimumTokensBeforeSwapAmount() should be declared external:
- FLOKIGANG.minimumTokensBeforeSwapAmount() (#571-573)
buyBackUpperLimitAmount() should be declared external:
- FLOKIGANG.buyBackUpperLimitAmount() (#575-577)
batchTransfer(address[],uint256) should be declared external:
- FLOKIGANG.batchTransfer(address[],uint256) (#579-583)
deliver(uint256) should be declared external:
- FLOKIGANG.deliver(uint256) (#647-654)
reflectionFromToken(uint256,bool) should be declared external:
- FLOKIGANG.reflectionFromToken(uint256,bool) (#657-666)
isExcludedFromFee(address) should be declared external:
- FLOKIGANG.isExcludedFromFee(address) (#945-947)
excludeFromFee(address) should be declared external:
- FLOKIGANG.excludeFromFee(address) (#949-951)
includeInFee(address) should be declared external:
- FLOKIGANG.includeInFee(address) (#953-955)
setSwapAndLiquifyEnabled(bool) should be declared external:
- FLOKIGANG.setSwapAndLiquifyEnabled(bool) (#977-980)
setBuyBackEnabled(bool) should be declared external:
- FLOKIGANG.setBuyBackEnabled(bool) (#982-985)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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.


Telegram account link seems to be invalid


Twitter account has less than 100 followers


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinGecko

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 that token and website are owned by the same team (no listings + unable to find contract on website)


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 Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for FGANG

News for FGANG