FLIRTY is an Erotic Social Media Platform where fans and artists can create or browse original NSFW content. Unlike any other social network, users can sign up whilst remaining totally anonymous if they choose.
Phase 1 is already complete and ready for your participation, the only limit is your imagination, check out what the FLIRTY community has already created in the Fantasy Room - if you can handle it!
FLIRTY TOKEN will be tightly integrated into the FLIRTY ecosystem with the advantage that it delivers anonymity and rewards artists to keep producing fantastic content. All this as we explore some of those hidden desires in a safe and fun way. We’re excited to see what the future holds.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in Flirty._transfer(address,address,uint256) (#1025-1062):
External calls:
- swapAndLiquify(contractTokenBalance) (#1052)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1097-1103)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1052)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
- _marketingAddress.transfer(marketingBNBToFund) (#1084)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1061)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#981)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1144)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1153)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#897)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1164)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1145)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1155)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1165)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#899)
- _tokenTransfer(from,to,amount,takeFee) (#1061)
- _rTotal = _rTotal.sub(rFee) (#936)
- _tokenTransfer(from,to,amount,takeFee) (#1061)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#983)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#896)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1163)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1154)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#898)
Apply the check-effects-interactions pattern.
Additional information: link
Flirty.addLiquidity(uint256,uint256) (#1106-1119) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
Ensure that all the return values of the function calls are used.
Additional information: link
Flirty._approve(address,address,uint256).owner (#1017) shadows:
- Ownable.owner() (#442-444) (function)
Rename the local variables that shadow another component.
Additional information: link
Flirty.setMaxTxPercent(uint256) (#921-925) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#922-924)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in Flirty.transferFrom(address,address,uint256) (#821-825):
External calls:
- _transfer(sender,recipient,amount) (#822)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1097-1103)
External calls sending eth:
- _transfer(sender,recipient,amount) (#822)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
- _marketingAddress.transfer(marketingBNBToFund) (#1084)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#823)
- _allowances[owner][spender] = amount (#1021)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Flirty.transferFrom(address,address,uint256) (#821-825):
External calls:
- _transfer(sender,recipient,amount) (#822)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1097-1103)
External calls sending eth:
- _transfer(sender,recipient,amount) (#822)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
- _marketingAddress.transfer(marketingBNBToFund) (#1084)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1022)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#823)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#489-494) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#491)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#387-408) uses assembly
- INLINE ASM (#400-403)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#255-258) is never used and should be removed
Remove unused functions.
Additional information: link
Flirty._previousLiquidityFee (#739) 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._functionCallWithValue(address,bytes,uint256,string) (#387-408):
- (success,returndata) = target.call{value: weiValue}(data) (#391)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable Flirty._maxTxAmount (#747) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#267)" inContext (#261-270)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in Flirty.transferFrom(address,address,uint256) (#821-825):
External calls:
- _transfer(sender,recipient,amount) (#822)
- _marketingAddress.transfer(marketingBNBToFund) (#1084)
External calls sending eth:
- _transfer(sender,recipient,amount) (#822)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1111-1118)
- _marketingAddress.transfer(marketingBNBToFund) (#1084)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#823)
- _allowances[owner][spender] = amount (#1021)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1022)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#823)
Apply the check-effects-interactions pattern.
Additional information: link
Variable Flirty._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to Flirty._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Prevent variables from having similar names.
Additional information: link
Flirty.slitherConstructorVariables() (#710-1171) uses literals with too many digits:
- _maxTxAmount = 10000000 * 10 ** 6 * 10 ** 9 (#747)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Flirty.numTokensSellToAddToLiquidity (#748) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
isExcludedFromFee(address) should be declared external:
- Flirty.isExcludedFromFee(address) (#1013-1015)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Number of Binance Smart Chain (BSC) token holders is low.
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.
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 contract audit
Unable to find audit 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 scam / 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
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