AnonFloki Token Logo

AnonFloki Token

About AnonFloki

Listings

Token 2 years
white paper

AnonFloki is a reward based meme token on the Binance Smart Chain. The token take its roots from the popular Floki meta and aims to create a deflationary reflections to holders.

The way our token is is we add 4% of the transaction fee to the reward pool, and automatically distribute BNB tokens to our holders every 24 hours. The number of BNB dividends is related to the number of tokens held.
One of the secrets that AnonFloki has is that it can continue to rise with the ""buyback"" feature, which can make the price of the tokens continue to rise. About 4% of each transaction will be used to flow into the marketing wallet, and the marketing wallets will repurchase the tokens to keep a healthy chart and increase holders, bringing more potential investors.

Social

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

AnonFloki.addLiquidity(uint256,uint256) (AnonFloki.sol#394-409) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (AnonFloki.sol#400-407)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in AnonFloki._transfer(address,address,uint256) (AnonFloki.sol#260-321):
External calls:
- swapAndSendToFee(marketingTokens) (AnonFloki.sol#290)
- IERC20(DividendToken).transfer(_marketingWalletAddress,newBalance) (AnonFloki.sol#329)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (AnonFloki.sol#386-392)
- swapAndLiquify(swapTokens) (AnonFloki.sol#292)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (AnonFloki.sol#400-407)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (AnonFloki.sol#366-372)
- swapAndSendDividends(sellTokens) (AnonFloki.sol#294)
- success = IERC20(DividendToken).transfer(address(dividendTracker),dividends) (AnonFloki.sol#414)
- dividendTracker.distributeDividends(dividends) (AnonFloki.sol#417)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (AnonFloki.sol#386-392)
External calls sending eth:
- swapAndLiquify(swapTokens) (AnonFloki.sol#292)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (AnonFloki.sol#400-407)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (AnonFloki.sol#308)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#220)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#221)
- super._transfer(from,to,amount) (AnonFloki.sol#310)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#220)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#221)
- swapping = false (AnonFloki.sol#295)
Apply the check-effects-interactions pattern.

Additional information: link

AnonFloki.swapAndSendToFee(uint256) (AnonFloki.sol#323-330) ignores return value by IERC20(DividendToken).transfer(_marketingWalletAddress,newBalance) (AnonFloki.sol#329)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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

AnonFloki._transfer(address,address,uint256) (AnonFloki.sol#260-321) uses a dangerous strict equality:
- from == uniswapV2Pair && liqAddBlock == 0 (AnonFloki.sol#268)
Don't use strict equality to determine if an account has enough Ether or tokens.

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.

AnonFloki.setMarketingWallet(address).wallet (AnonFloki.sol#151) lacks a zero-check on :
- _marketingWalletAddress = wallet (AnonFloki.sol#152)
Check that the address is not zero.

Additional information: link

Variable 'AnonFloki._transfer(address,address,uint256).lastProcessedIndex (AnonFloki.sol#315)' in AnonFloki._transfer(address,address,uint256) (AnonFloki.sol#260-321) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (AnonFloki.sol#316)
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 AnonFloki.updateDividendTracker(address) (AnonFloki.sol#109-119):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (AnonFloki.sol#113)
- newDividendTracker.excludeFromDividends(address(this)) (AnonFloki.sol#114)
- newDividendTracker.excludeFromDividends(owner()) (AnonFloki.sol#115)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (AnonFloki.sol#116)
State variables written after the call(s):
- dividendTracker = newDividendTracker (AnonFloki.sol#118)
Apply the check-effects-interactions pattern.

Additional information: link

AnonFloki._transfer(address,address,uint256).iterations (AnonFloki.sol#315) 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

AnonFloki.addLiquidity(uint256,uint256) (AnonFloki.sol#394-409) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (AnonFloki.sol#400-407)
Ensure that all the return values of the function calls are used.

Additional information: link

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

Additional information: link

AnonFloki.setSwapTokensAtAmount(uint256) (AnonFloki.sol#160-162) should emit an event for:
- swapTokensAtAmount = amount (AnonFloki.sol#161)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in AnonFloki.updateUniswapV2Router(address) (AnonFloki.sol#127-134):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (AnonFloki.sol#131-132)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (AnonFloki.sol#133)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AnonFloki.updateDividendTracker(address) (AnonFloki.sol#109-119):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (AnonFloki.sol#113)
- newDividendTracker.excludeFromDividends(address(this)) (AnonFloki.sol#114)
- newDividendTracker.excludeFromDividends(owner()) (AnonFloki.sol#115)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (AnonFloki.sol#116)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (AnonFloki.sol#117)
Apply the check-effects-interactions pattern.

Additional information: link

BABYDividendTracker.canAutoClaim(uint256) (AnonFloki.sol#547-553) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (AnonFloki.sol#548)
- block.timestamp.sub(lastClaimTime) >= claimWait (AnonFloki.sol#552)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.

Additional information: link

AnonFloki.totalFees (AnonFloki.sol#34) is set pre-construction with a non-constant function or state variable:
- TokenRewardsFee.add(liquidityFee).add(marketingFee)
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.6.2 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

Function IUniswapV2Router01.WETH() (IUniswapV2Router.sol#7) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (IUniswapV2Router.sol#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (IUniswapV2Router.sol#13)
Prevent variables from having similar names.

Additional information: link

BABYDividendTracker.getAccountAtIndex(uint256) (AnonFloki.sol#528-545) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (AnonFloki.sol#539)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (SafeMathInt.sol#36) is never used in SafeMathInt (SafeMathInt.sol#34-92)
Remove unused state variables.

Additional information: link

DividendPayingToken.DividendToken (DividendPayingToken.sol#24) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#52-56)
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


Unable to find token contract audit


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

Additional information: link


Unable to find code repository for the project


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 AnonFloki