flokidoge Token Logo

$FLOGE [flokidoge] Token

About $FLOGE

Listings

Token 2 years
white paper

Welcome to FlokiDoge! The cutest meme token to launch in 2021 which is inspired by Elon Musk’s dog named Floki and his favorite meme coin of all time, Doge. Early in November Elon Musk suggested Floki become the CEO of Doge! Floki is so young and we are excited to see him grow up, and one day become the CEO. FlokiDoge – the two are meant to be!
One thing the crypto space is currently missing is an online marketplace for freelance services. Similar to Fiverr, but payments in crypto and better. We are going to develop this marketplace and name it Floge. We plan to use proceeds from transactions to buyback on the FlokiDoge chart, and further develop this marketplace. We will increase exposure of those account owners who are able to get good ratings, and those with bad ratings will have their accounts disabled. This is to ensure safety in our eco-system.
Services to be provided on Floge:

- Graphic Designers, Shillers, Voice/Text chat moderators in various languages, Translators, Social Media Managers, Smart Contract Developers, Youtubers, Audit Services, Website Developers, and much more! You name the service, you will be able to find it on Floge.

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links

Reentrancy in flokidoge._transfer(address,address,uint256) (#641-671):
External calls:
- swapTokens(contractTokenBalance) (#659)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#700-706)
External calls sending eth:
- swapTokens(contractTokenBalance) (#659)
- recipient.transfer(amount) (#942)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _LiqMarketing = _previousLiqMarketing (#882)
- _LiqMarketing = 0 (#877)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#853)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#769)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#778)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#770)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#789)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#799)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#780)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#790)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#801)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _rTotal = _rTotal.sub(rFee) (#808)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#855)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#788)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#798)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#779)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#800)
Apply the check-effects-interactions pattern.

Additional information: link


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

flokidoge.swapTokens(uint256) (#674-682) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_LiqMarketing).mul(marketingDivisor)) (#681)
Consider ordering multiplication before division.

Additional information: link

flokidoge.addLiquidity(uint256,uint256) (#728-741) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#733-740)
Ensure that all the return values of the function calls are used.

Additional information: link

flokidoge._approve(address,address,uint256).owner (#633) shadows:
- Ownable.owner() (#174-176) (function)
Rename the local variables that shadow another component.

Additional information: link

flokidoge.setNumTokensSellToAddToLiquidity(uint256) (#914-916) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#915)
Emit an event for critical parameter changes.

Additional information: link

flokidoge.setMarketingAddress(address)._marketingAddress (#919) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#920)
Check that the address is not zero.

Additional information: link

Reentrancy in flokidoge.transferFrom(address,address,uint256) (#554-558):
External calls:
- _transfer(sender,recipient,amount) (#555)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#700-706)
External calls sending eth:
- _transfer(sender,recipient,amount) (#555)
- recipient.transfer(amount) (#942)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#556)
- _allowances[owner][spender] = amount (#637)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in flokidoge.transferFrom(address,address,uint256) (#554-558):
External calls:
- _transfer(sender,recipient,amount) (#555)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#700-706)
External calls sending eth:
- _transfer(sender,recipient,amount) (#555)
- recipient.transfer(amount) (#942)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#638)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#556)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#141-158) uses assembly
- INLINE ASM (#150-153)
Do not use evm assembly.

Additional information: link

flokidoge.swapETHForTokens(uint256) (#711-726) is never used and should be removed
Remove unused functions.

Additional information: link

flokidoge._previousLiqMarketing (#458) is set pre-construction with a non-constant function or state variable:
- _LiqMarketing
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

solc-0.8.7 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#141-158):
- (success,returndata) = target.call{value: weiValue}(data) (#144)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable flokidoge._maxTxAmount (#463) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#28)" inContext (#22-31)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in flokidoge.transferFrom(address,address,uint256) (#554-558):
External calls:
- _transfer(sender,recipient,amount) (#555)
- recipient.transfer(amount) (#942)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#556)
- _allowances[owner][spender] = amount (#637)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#638)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#556)
Apply the check-effects-interactions pattern.

Additional information: link

Variable flokidoge._getValues(uint256).rTransferAmount (#814) is too similar to flokidoge._getValues(uint256).tTransferAmount (#813)
Prevent variables from having similar names.

Additional information: link

flokidoge.slitherConstructorVariables() (#428-948) uses literals with too many digits:
- minimumTokensBeforeSwap = 1000000 * 10 ** 6 * 10 ** 9 (#464)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

flokidoge.ecosystemAddress (#433) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

includeInFee(address) should be declared external:
- flokidoge.includeInFee(address) (#893-895)
Use the external attribute for functions never called from the contract.

Additional information: link

Contract ticker ($FLOGE) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Holders:


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.


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 token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


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


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


Token has no active CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for $FLOGE