FlokiGravity Token Logo

FLOKIG [FlokiGravity] Token

ALERT: honeypot scam

About FLOKIG

Listings

Token 2 years
CoinMarketCap 2 years
white paper

Combining the newly introduced elastic supply mechanics META along with clever buybacks, calculated social marketing movement and several upcoming tools, Floki Gravity will establish itself as a mass adoption unparalleled DEFI pioneer champion.
FlokiHammer REBASE
Floki Gravity is the first born FLOKI from the newly introduced elastic supply token META. This means that $FLOKIG supply (total number of tokens) is always decreasing, leading each token to a mathematically guaranteed price of $1,337,000 USD. Supply and price changes happen every 4 hours if they weren’t already manually triggered by the FlokiHammer and they are called “Rebases”. Rebases will push the price to a rising price peg by burning supply, making it a gravity-free upcoin.

Laser Scorebeta Last Audit: 29 January 2022

report
Token seems to be a scam (type: honeypot scam).

Anti-Scam

Links


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


Contract creator or owner is blacklisted for past scams

FlokiGravity.swapETHForTokens(uint256) (#968-981) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#975-980)
FlokiGravity.addLiquidity(uint256,uint256) (#984-998) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in FlokiGravity._transfer(address,address,uint256) (#827-861):
External calls:
- swapAndLiquify(numTokensSell) (#848)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#958-964)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#854)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#975-980)
External calls sending eth:
- swapAndLiquify(numTokensSell) (#848)
- recipient.transfer(amount) (#944)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#854)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#975-980)
State variables written after the call(s):
- _tokenTransfer(from,to,value) (#858)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(rFee) (#903)
- _gonBalances[sender] = _gonBalances[sender].sub(gonValue) (#884)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonValue) (#885)
- _gonBalances[sender] = _gonBalances[sender].sub(gonDeduct) (#876)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonValue) (#877)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#854)
- inSwapAndLiquify = true (#656)
- inSwapAndLiquify = false (#658)
Apply the check-effects-interactions pattern.

Additional information: link

FlokiGravity.burnAutoLP() (#1103-1108) ignores return value by uniswapV2Pair.transfer(owner(),balance) (#1107)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Ownable._lockTime (#300) is never initialized. It is used in:
- Ownable.getUnlockTime() (#351-353)
- Ownable.unlock() (#364-369)
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


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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

FlokiGravity.rebase_percentage(uint256,bool) (#742-750) performs a multiplication on the result of a division:
-rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000))) (#747)
FlokiGravity.rebase_percentage(uint256,bool) (#742-750) performs a multiplication on the result of a division:
-rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000)).mul(- 1)) (#745)
Consider ordering multiplication before division.

Additional information: link

FlokiGravity.addLiquidity(uint256,uint256) (#984-998) ignores return value by uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
Ensure that all the return values of the function calls are used.

Additional information: link

ERC20Detailed.constructor(string,string,uint8).name (#540) shadows:
- ERC20Detailed.name() (#549-551) (function)
ERC20Detailed.constructor(string,string,uint8).symbol (#540) shadows:
- ERC20Detailed.symbol() (#557-559) (function)
ERC20Detailed.constructor(string,string,uint8).decimals (#540) shadows:
- ERC20Detailed.decimals() (#573-575) (function)
FlokiGravity._approve(address,address,uint256).owner (#1018) shadows:
- Ownable.owner() (#321-323) (function)
Rename the local variables that shadow another component.

Additional information: link

FlokiGravity.setMaster(address) (#756-761) should emit an event for:
- master = _master (#760)
Emit an event for critical parameter changes.

Additional information: link

FlokiGravity.setTransactionTax(uint256) (#1140-1143) should emit an event for:
- transactionTax = _transactionTax (#1142)
Emit an event for critical parameter changes.

Additional information: link

FlokiGravity.constructor(address,address)._marketingAddress (#678) lacks a zero-check on :
- marketingAddress = _marketingAddress (#682)
FlokiGravity.setMaster(address)._master (#756) lacks a zero-check on :
- master = _master (#760)
FlokiGravity.setLP(address)._lp (#766) lacks a zero-check on :
- lp = _lp (#770)
FlokiGravity.setMarketingAddress(address)._marketingAddress (#1150) lacks a zero-check on :
- marketingAddress = _marketingAddress (#1151)
Check that the address is not zero.

Additional information: link

Reentrancy in FlokiGravity.constructor(address,address) (#678-709):
External calls:
- uniswapV2PairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#686-687)
State variables written after the call(s):
- _gonBalances[msg.sender] = TOTAL_GONS (#699)
- _gonsPerFragment = TOTAL_GONS.div(_totalSupply) (#700)
- _isExcluded[owner()] = true (#705)
- _isExcluded[address(this)] = true (#706)
- _maxTxAmount = _totalSupply.div(200) (#698)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#697)
- initialDistributionFinished = false (#702)
- setLP(uniswapV2PairAddress) (#691)
- lp = _lp (#770)
- setLP(uniswapV2PairAddress) (#691)
- lpContract = ILP(_lp) (#771)
- uniswapV2Pair = _uniswapV2Pair (#695)
- uniswapV2Router = _uniswapV2Router (#689)
Reentrancy in FlokiGravity.swapAndLiquify(uint256) (#907-934):
External calls:
- swapTokensForEth(threequarters) (#919)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#958-964)
- addLiquidity(onequarter,sharedETH) (#927)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
External calls sending eth:
- addLiquidity(onequarter,sharedETH) (#927)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
State variables written after the call(s):
- addLiquidity(onequarter,sharedETH) (#927)
- _allowedFragments[owner][spender] = value (#1022)
Reentrancy in FlokiGravity.transferFrom(address,address,uint256) (#811-818):
External calls:
- _transfer(sender,recipient,amount) (#815)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#975-980)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#958-964)
External calls sending eth:
- _transfer(sender,recipient,amount) (#815)
- recipient.transfer(amount) (#944)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#975-980)
State variables written after the call(s):
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#816)
- _allowedFragments[owner][spender] = value (#1022)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FlokiGravity._transfer(address,address,uint256) (#827-861):
External calls:
- swapAndLiquify(numTokensSell) (#848)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#958-964)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#854)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#975-980)
External calls sending eth:
- swapAndLiquify(numTokensSell) (#848)
- recipient.transfer(amount) (#944)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#854)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#975-980)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#886)
- _tokenTransfer(from,to,value) (#858)
- Transfer(sender,recipient,amount) (#879)
- _tokenTransfer(from,to,value) (#858)
Reentrancy in FlokiGravity.constructor(address,address) (#678-709):
External calls:
- uniswapV2PairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#686-687)
Event emitted after the call(s):
- Transfer(address(0x0),msg.sender,_totalSupply) (#708)
Reentrancy in FlokiGravity.rebase(uint256,int256) (#716-740):
External calls:
- lpContract.sync() (#736)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#738)
Reentrancy in FlokiGravity.swapAndLiquify(uint256) (#907-934):
External calls:
- swapTokensForEth(threequarters) (#919)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#958-964)
- addLiquidity(onequarter,sharedETH) (#927)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
External calls sending eth:
- addLiquidity(onequarter,sharedETH) (#927)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
Event emitted after the call(s):
- Approval(owner,spender,value) (#1023)
- addLiquidity(onequarter,sharedETH) (#927)
Reentrancy in FlokiGravity.swapAndLiquify(uint256) (#907-934):
External calls:
- swapTokensForEth(threequarters) (#919)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#958-964)
- addLiquidity(onequarter,sharedETH) (#927)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
External calls sending eth:
- addLiquidity(onequarter,sharedETH) (#927)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
- transferToAddressETH(marketingAddress,sharedETH) (#930)
- recipient.transfer(amount) (#944)
Event emitted after the call(s):
- SwapAndLiquify(threequarters,sharedETH,onequarter) (#932)
Reentrancy in FlokiGravity.transferFrom(address,address,uint256) (#811-818):
External calls:
- _transfer(sender,recipient,amount) (#815)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#975-980)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#958-964)
External calls sending eth:
- _transfer(sender,recipient,amount) (#815)
- recipient.transfer(amount) (#944)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#975-980)
Event emitted after the call(s):
- Approval(owner,spender,value) (#1023)
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#816)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

SafeMath.mod(uint256,uint256) (#449-452) is never used and should be removed
SafeMathInt.abs(int256) (#520-526) is never used and should be removed
SafeMathInt.add(int256,int256) (#508-515) is never used and should be removed
SafeMathInt.div(int256,int256) (#482-491) is never used and should be removed
SafeMathInt.sub(int256,int256) (#496-503) is never used and should be removed
Remove unused functions.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#88) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#90) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#108) is not in mixedCase
Function IUniswapV2Router02.WETH() (#142) is not in mixedCase
Function FlokiGravity.rebase_percentage(uint256,bool) (#742-750) is not in mixedCase
Parameter FlokiGravity.rebase_percentage(uint256,bool)._percentage_base1000 (#742) is not in mixedCase
Parameter FlokiGravity.setMaster(address)._master (#756) is not in mixedCase
Parameter FlokiGravity.setLP(address)._lp (#766) is not in mixedCase
Parameter FlokiGravity.setSwapAndLiquifyEnabled(bool)._enabled (#784) is not in mixedCase
Parameter FlokiGravity.calculateFee(uint256)._amount (#897) is not in mixedCase
Parameter FlokiGravity.enableTransfer(address)._addr (#1085) is not in mixedCase
Parameter FlokiGravity.excludeAddress(address)._addr (#1091) is not in mixedCase
Parameter FlokiGravity.includeAddress(address)._addr (#1097) is not in mixedCase
Parameter FlokiGravity.setBuyBackEnabled(bool)._enabled (#1119) is not in mixedCase
Parameter FlokiGravity.setBuyBackLimit(uint256)._buybackLimit (#1123) is not in mixedCase
Parameter FlokiGravity.setBuyBackDivisor(uint256)._buybackDivisor (#1127) is not in mixedCase
Parameter FlokiGravity.setnumTokensSellDivisor(uint256)._numTokensSellDivisor (#1131) is not in mixedCase
Parameter FlokiGravity.setTransactionTax(uint256)._transactionTax (#1140) is not in mixedCase
Parameter FlokiGravity.setMarketingAddress(address)._marketingAddress (#1150) is not in mixedCase
Variable FlokiGravity._maxTxAmount (#669) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in FlokiGravity._transfer(address,address,uint256) (#827-861):
External calls:
- swapAndLiquify(numTokensSell) (#848)
- recipient.transfer(amount) (#944)
External calls sending eth:
- swapAndLiquify(numTokensSell) (#848)
- recipient.transfer(amount) (#944)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#854)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#975-980)
State variables written after the call(s):
- _tokenTransfer(from,to,value) (#858)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(rFee) (#903)
- _gonBalances[sender] = _gonBalances[sender].sub(gonValue) (#884)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonValue) (#885)
- _gonBalances[sender] = _gonBalances[sender].sub(gonDeduct) (#876)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonValue) (#877)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#854)
- inSwapAndLiquify = true (#656)
- inSwapAndLiquify = false (#658)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#886)
- _tokenTransfer(from,to,value) (#858)
- Transfer(sender,recipient,amount) (#879)
- _tokenTransfer(from,to,value) (#858)
Reentrancy in FlokiGravity.swapAndLiquify(uint256) (#907-934):
External calls:
- transferToAddressETH(marketingAddress,sharedETH) (#930)
- recipient.transfer(amount) (#944)
External calls sending eth:
- addLiquidity(onequarter,sharedETH) (#927)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
- transferToAddressETH(marketingAddress,sharedETH) (#930)
- recipient.transfer(amount) (#944)
Event emitted after the call(s):
- SwapAndLiquify(threequarters,sharedETH,onequarter) (#932)
Reentrancy in FlokiGravity.transferFrom(address,address,uint256) (#811-818):
External calls:
- _transfer(sender,recipient,amount) (#815)
- recipient.transfer(amount) (#944)
External calls sending eth:
- _transfer(sender,recipient,amount) (#815)
- recipient.transfer(amount) (#944)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#990-997)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#975-980)
State variables written after the call(s):
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#816)
- _allowedFragments[owner][spender] = value (#1022)
Event emitted after the call(s):
- Approval(owner,spender,value) (#1023)
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#816)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router02.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#147) is too similar to IUniswapV2Router02.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#148)
Prevent variables from having similar names.

Additional information: link

FlokiGravity.slitherConstructorVariables() (#584-1155) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#644)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#462) is never used in SafeMathInt (#460-527)
FlokiGravity.privateSaleDropCompleted (#653) is never used in FlokiGravity (#584-1155)
Remove unused state variables.

Additional information: link

FlokiGravity.deadAddress (#644) should be constant
FlokiGravity.privateSaleDropCompleted (#653) should be constant
Ownable._lockTime (#300) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#346-349)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#351-353)
lock() should be declared external:
- Ownable.lock() (#357-362)
unlock() should be declared external:
- Ownable.unlock() (#364-369)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#375-377)
name() should be declared external:
- ERC20Detailed.name() (#549-551)
symbol() should be declared external:
- ERC20Detailed.symbol() (#557-559)
decimals() should be declared external:
- ERC20Detailed.decimals() (#573-575)
setSwapAndLiquifyEnabled(bool) should be declared external:
- FlokiGravity.setSwapAndLiquifyEnabled(bool) (#784-787)
increaseAllowance(address,uint256) should be declared external:
- FlokiGravity.increaseAllowance(address,uint256) (#1009-1015)
approve(address,uint256) should be declared external:
- FlokiGravity.approve(address,uint256) (#1038-1043)
allowance(address,address) should be declared external:
- FlokiGravity.allowance(address,address) (#1052-1057)
setBuyBackEnabled(bool) should be declared external:
- FlokiGravity.setBuyBackEnabled(bool) (#1119-1121)
setBuyBackLimit(uint256) should be declared external:
- FlokiGravity.setBuyBackLimit(uint256) (#1123-1125)
setBuyBackDivisor(uint256) should be declared external:
- FlokiGravity.setBuyBackDivisor(uint256) (#1127-1129)
setnumTokensSellDivisor(uint256) should be declared external:
- FlokiGravity.setnumTokensSellDivisor(uint256) (#1131-1133)
Use the external attribute for functions never called from the contract.

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


Telegram account link seems to be invalid


Twitter account link seems to be invalid


Unable to find Youtube account


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 contract audit


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


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Young tokens have high risks of price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for FLOKIG