MiniFloki Token Logo

MiniFloki Token

About MiniFloki

Listings

Token 2 years
white paper

Meet MiniFloki, Inspired by the hottest memecoin to hit the market in recent times, Mini Floki sends Floki rewards right to your wallet automatically just by holding! Mini Floki combines the best of both worlds – capitalizing on the current hype of Floki while also providing Floki rewards to holders. MiniFloki's tokenomics are designed to ensure the long-term growth potential of Mini Floki and provide protection to holders. How do they do it? Firstly, 1% of all transactions goes to the liquidity pool, helping prevent volatility as this pool grows. Secondly, 5% goes towards buying Floki and sending it directly to holder’s wallets! Lastly, 9% is for marketing and manual buyback.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Reentrancy in MiniFloki._transfer(address,address,uint256) (#1756-1866):
External calls:
- swapAndSendDividends(minimumTokensBeforeSwap) (#1828)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1915-1922)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1880-1886)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1900-1906)
- address(_buybackWalletAddress).call{gas: divgas,value: address(this).balance}() (#1970)
- success = IERC20(Floki).transfer(address(dividendTracker),total) (#1975)
- dividendTracker.distributeFlokiividends(total) (#1977)
External calls sending eth:
- swapAndSendDividends(minimumTokensBeforeSwap) (#1828)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1915-1922)
- address(_buybackWalletAddress).call{gas: divgas,value: address(this).balance}() (#1970)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1848)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#981)
- _balances[recipient] = _balances[recipient].add(amount) (#982)
- super._transfer(from,to,amount) (#1851)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#981)
- _balances[recipient] = _balances[recipient].add(amount) (#982)
- swapping = false (#1830)
Apply the check-effects-interactions pattern.

Additional information: link

MiniFloki.addLiquidity(uint256,uint256) (#1909-1924) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1915-1922)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


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


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.

Reentrancy in MiniFloki.updateUniswapV2Router(address) (#1616-1623):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1620-1621)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1622)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MiniFloki.updateDividendTracker(address) (#1599-1614):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1606)
- newDividendTracker.excludeFromDividends(address(this)) (#1607)
- newDividendTracker.excludeFromDividends(owner()) (#1608)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1609)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1613)
Apply the check-effects-interactions pattern.

Additional information: link

MiniFloki.swapAndSendDividends(uint256) (#1926-1981) ignores return value by address(_buybackWalletAddress).call{gas: divgas,value: address(this).balance}() (#1970)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link

MiniFloki._transfer(address,address,uint256).lastProcessedIndex (#1859) is a local variable never initialized
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

MiniFloki.addLiquidity(uint256,uint256) (#1909-1924) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1915-1922)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (#1188) shadows:
- Ownable._owner (#491) (state variable)
Rename the local variables that shadow another component.

Additional information: link

MiniFloki.setMaxTxAmount(uint256) (#2052-2054) should emit an event for:
- _maxTxAmount = maxTxAmount (#2053)
Emit an event for critical parameter changes.

Additional information: link

MiniFloki.setCurrentLiqPair(address)._pair (#2044) lacks a zero-check on :
- currentLiqPair = _pair (#2045)
Check that the address is not zero.

Additional information: link

Variable 'MiniFloki._transfer(address,address,uint256).lastProcessedIndex (#1859)' in MiniFloki._transfer(address,address,uint256) (#1756-1866) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1860)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in MiniFloki.updateDividendTracker(address) (#1599-1614):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1606)
- newDividendTracker.excludeFromDividends(address(this)) (#1607)
- newDividendTracker.excludeFromDividends(owner()) (#1608)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1609)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1611)
Apply the check-effects-interactions pattern.

Additional information: link

MiniFloki._transfer(address,address,uint256) (#1756-1866) uses timestamp for comparisons
Dangerous comparisons:
- uptrendEstablished && _startTimeForSwap + _intervalSecondsForSwap <= block.timestamp (#1823)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.mul(int256,int256) (#725-732) is never used and should be removed
Remove unused functions.

Additional information: link

MiniFloki.totalFees (#1477) is set pre-construction with a non-constant function or state variable:
- FlokiFee.add(liquidityFee).add(buybackFee)
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 MiniFloki.swapAndSendDividends(uint256) (#1926-1981):
- address(_buybackWalletAddress).call{gas: divgas,value: address(this).balance}() (#1970)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable MiniFloki._maxTxAmount (#1498) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#30)" inContext (#24-33)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1143) is too similar to MiniFlokiDividendTracker.getAccount(address).withdrawableDividends (#1310)
Prevent variables from having similar names.

Additional information: link

MiniFloki.slitherConstructorVariables() (#1455-2107) uses literals with too many digits:
- _maxTxAmount = 10000000 * 10 ** 18 (#1498)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#720) is never used in SafeMathInt (#718-776)
Remove unused state variables.

Additional information: link

MiniFloki.sniperProtection (#1490) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

launch() should be declared external:
- MiniFloki.launch() (#2079-2083)
Use the external attribute for functions never called from the contract.

Additional information: link

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 Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord 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


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


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for MiniFloki