FoxGirl Token Logo

FOXGIRL Token

ALERT: honeypot scam

About FOXGIRL

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
[CoinGecko] alert: Foxgirl has migrated from the old contract to a new one.
white paper

Join and invest in FoxGirl.com for all the latest fair launches and stealth launches. Follow trusted and verified token developers and set alerts for your favorite upcoming launches. Invest in and enjoy a revolutionary and integral to crypto platform with an intuitive interface that every crypto enthusiast will soon be using daily.

Social

Laser Scorebeta Last Audit: 18 June 2022

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

Reentrancy in foxgirl._transfer(address,address,uint256) (#784-873):
External calls:
- swapAndLiquify(contractTokenBalance) (#850)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#920-926)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#850)
- wallet.transfer(amount) (#889)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#993)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#994)
- _tOwned[address(this)] = _tOwned[address(this)].add(tDev) (#995)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- txCount ++ (#982)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

Address.isContract(address) (#90-94) uses assembly
- INLINE ASM (#92)
Address._verifyCallResult(bool,bytes,string) (#142-155) uses assembly
- INLINE ASM (#147-150)
Do not use evm assembly.

Additional information: link

foxgirl.blacklist_Remove_Wallets(address[]).gasUsed (#677) is a local variable never initialized
foxgirl.blacklist_Remove_Wallets(address[]).i (#679) is a local variable never initialized
foxgirl.blacklist_Add_Wallets(address[]).i (#661) is a local variable never initialized
foxgirl.blacklist_Add_Wallets(address[]).gasUsed (#659) 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

foxgirl.allowance(address,address).owner (#542) shadows:
- Ownable.owner() (#170-172) (function)
foxgirl._approve(address,address,uint256).owner (#776) shadows:
- Ownable.owner() (#170-172) (function)
Rename the local variables that shadow another component.

Additional information: link

foxgirl._set_Fees(uint256,uint256) (#604-610) should emit an event for:
- _sellFee = Sell_Fee (#607)
- _buyFee = Buy_Fee (#608)
foxgirl.set_Number_Of_Transactions_Before_Liquify_Trigger(uint8) (#634-636) should emit an event for:
- swapTrigger = number_of_transactions (#635)
foxgirl.set_Max_Transaction_Percent(uint256) (#740-742) should emit an event for:
- _maxTxAmount = _tTotal * maxTxPercent_x100 / 10000 (#741)
foxgirl.set_Max_Wallet_Percent(uint256) (#745-747) should emit an event for:
- _maxWalletToken = _tTotal * maxWallPercent_x100 / 10000 (#746)
Emit an event for critical parameter changes.

Additional information: link

foxgirl.Wallet_Update_Dev(address).wallet (#615) lacks a zero-check on :
- Wallet_Dev = wallet (#616)
foxgirl.set_New_Pair_Address(address).newPair (#965) lacks a zero-check on :
- uniswapV2Pair = newPair (#966)
Check that the address is not zero.

Additional information: link

Reentrancy in foxgirl._transfer(address,address,uint256) (#784-873):
External calls:
- swapAndLiquify(contractTokenBalance) (#850)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#920-926)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#850)
- wallet.transfer(amount) (#889)
State variables written after the call(s):
- _TotalFee = _buyFee (#870)
- _TotalFee = _sellFee (#870)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _TotalFee = _previousTotalFee (#768)
- _TotalFee = 0 (#761)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _buyFee = _previousBuyFee (#769)
- _buyFee = 0 (#759)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _previousBuyFee = _buyFee (#756)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _previousSellFee = _sellFee (#757)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _previousTotalFee = _TotalFee (#758)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _sellFee = _previousSellFee (#770)
- _sellFee = 0 (#760)
Reentrancy in foxgirl.constructor() (#493-508):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#500-501)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#503)
- _isExcludedFromFee[address(this)] = true (#504)
- _isExcludedFromFee[Wallet_Dev] = true (#505)
- uniswapV2Router = _uniswapV2Router (#502)
Reentrancy in foxgirl.set_New_Router_and_Make_Pair(address) (#952-956):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPCSRouter.factory()).createPair(address(this),_newPCSRouter.WETH()) (#954)
State variables written after the call(s):
- uniswapV2Router = _newPCSRouter (#955)
Reentrancy in foxgirl.transferFrom(address,address,uint256) (#551-555):
External calls:
- _transfer(sender,recipient,amount) (#552)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#920-926)
External calls sending eth:
- _transfer(sender,recipient,amount) (#552)
- wallet.transfer(amount) (#889)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#553)
- _allowances[owner][spender] = amount (#779)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in foxgirl._transfer(address,address,uint256) (#784-873):
External calls:
- swapAndLiquify(contractTokenBalance) (#850)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#920-926)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#850)
- wallet.transfer(amount) (#889)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#996)
- _tokenTransfer(from,to,amount,takeFee) (#872)
Reentrancy in foxgirl.constructor() (#493-508):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#500-501)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#507)
Reentrancy in foxgirl.transferFrom(address,address,uint256) (#551-555):
External calls:
- _transfer(sender,recipient,amount) (#552)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#920-926)
External calls sending eth:
- _transfer(sender,recipient,amount) (#552)
- wallet.transfer(amount) (#889)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#780)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#553)
Apply the check-effects-interactions pattern.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#142-155) is never used and should be removed
Address.functionCall(address,bytes) (#102-104) is never used and should be removed
Address.functionCall(address,bytes,string) (#106-108) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#110-112) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#114-119) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#132-134) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#136-140) is never used and should be removed
Address.functionStaticCall(address,bytes) (#121-123) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#125-129) is never used and should be removed
Address.isContract(address) (#90-94) is never used and should be removed
Address.sendValue(address,uint256) (#96-100) is never used and should be removed
Context._msgData() (#81-84) is never used and should be removed
SafeMath.div(uint256,uint256) (#54-56) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#65-70) is never used and should be removed
SafeMath.mul(uint256,uint256) (#50-52) is never used and should be removed
Remove unused functions.

Additional information: link

foxgirl._previousTotalFee (#439) is set pre-construction with a non-constant function or state variable:
- _TotalFee
foxgirl._previousBuyFee (#440) is set pre-construction with a non-constant function or state variable:
- _buyFee
foxgirl._previousSellFee (#441) is set pre-construction with a non-constant function or state variable:
- _sellFee
foxgirl._maxWalletToken (#450) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(4).div(100)
foxgirl._previousMaxWalletToken (#451) is set pre-construction with a non-constant function or state variable:
- _maxWalletToken
foxgirl._maxTxAmount (#455) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(4).div(100)
foxgirl._previousMaxTxAmount (#456) is set pre-construction with a non-constant function or state variable:
- _maxTxAmount
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.sendValue(address,uint256) (#96-100):
- (success) = recipient.call{value: amount}() (#98)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#114-119):
- (success,returndata) = target.call{value: value}(data) (#117)
Low level call in Address.functionStaticCall(address,bytes,string) (#125-129):
- (success,returndata) = target.staticcall(data) (#127)
Low level call in Address.functionDelegateCall(address,bytes,string) (#136-140):
- (success,returndata) = target.delegatecall(data) (#138)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#218) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#219) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#232) is not in mixedCase
Function IUniswapV2Router01.WETH() (#249) is not in mixedCase
Contract foxgirl (#382-1012) is not in CapWords
Function foxgirl._set_Fees(uint256,uint256) (#604-610) is not in mixedCase
Parameter foxgirl._set_Fees(uint256,uint256).Buy_Fee (#604) is not in mixedCase
Parameter foxgirl._set_Fees(uint256,uint256).Sell_Fee (#604) is not in mixedCase
Function foxgirl.Wallet_Update_Dev(address) (#615-618) is not in mixedCase
Function foxgirl.set_Swap_And_Liquify_Enabled(bool) (#628-631) is not in mixedCase
Parameter foxgirl.set_Swap_And_Liquify_Enabled(bool).true_or_false (#628) is not in mixedCase
Function foxgirl.set_Number_Of_Transactions_Before_Liquify_Trigger(uint8) (#634-636) is not in mixedCase
Parameter foxgirl.set_Number_Of_Transactions_Before_Liquify_Trigger(uint8).number_of_transactions (#634) is not in mixedCase
Function foxgirl.blacklist_Add_Wallets(address[]) (#656-669) is not in mixedCase
Function foxgirl.blacklist_Remove_Wallets(address[]) (#674-687) is not in mixedCase
Function foxgirl.blacklist_Switch(bool) (#701-703) is not in mixedCase
Parameter foxgirl.blacklist_Switch(bool).true_or_false (#701) is not in mixedCase
Function foxgirl.set_Transfers_Without_Fees(bool) (#718-720) is not in mixedCase
Parameter foxgirl.set_Transfers_Without_Fees(bool).true_or_false (#718) is not in mixedCase
Function foxgirl.set_Max_Transaction_Percent(uint256) (#740-742) is not in mixedCase
Parameter foxgirl.set_Max_Transaction_Percent(uint256).maxTxPercent_x100 (#740) is not in mixedCase
Function foxgirl.set_Max_Wallet_Percent(uint256) (#745-747) is not in mixedCase
Parameter foxgirl.set_Max_Wallet_Percent(uint256).maxWallPercent_x100 (#745) is not in mixedCase
Function foxgirl.process_Tokens_Now(uint256) (#903-910) is not in mixedCase
Parameter foxgirl.process_Tokens_Now(uint256).percent_Of_Tokens_To_Process (#903) is not in mixedCase
Function foxgirl.remove_Random_Tokens(address,address,uint256) (#936-941) is not in mixedCase
Parameter foxgirl.remove_Random_Tokens(address,address,uint256).random_Token_Address (#936) is not in mixedCase
Parameter foxgirl.remove_Random_Tokens(address,address,uint256).send_to_wallet (#936) is not in mixedCase
Parameter foxgirl.remove_Random_Tokens(address,address,uint256).number_of_tokens (#936) is not in mixedCase
Function foxgirl.set_New_Router_and_Make_Pair(address) (#952-956) is not in mixedCase
Function foxgirl.set_New_Router_Address(address) (#959-962) is not in mixedCase
Function foxgirl.set_New_Pair_Address(address) (#965-967) is not in mixedCase
Variable foxgirl._isExcludedFromFee (#390) is not in mixedCase
Variable foxgirl._isBlacklisted (#393) is not in mixedCase
Variable foxgirl.Wallet_Dev (#405) is not in mixedCase
Variable foxgirl.Wallet_Burn (#406) is not in mixedCase
Variable foxgirl.Wallet_zero (#407) is not in mixedCase
Variable foxgirl._TotalFee (#433) is not in mixedCase
Variable foxgirl._buyFee (#434) is not in mixedCase
Variable foxgirl._sellFee (#435) is not in mixedCase
Variable foxgirl._maxWalletToken (#450) is not in mixedCase
Variable foxgirl._maxTxAmount (#455) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#82)" inContext (#76-85)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in foxgirl._transfer(address,address,uint256) (#784-873):
External calls:
- swapAndLiquify(contractTokenBalance) (#850)
- wallet.transfer(amount) (#889)
State variables written after the call(s):
- _TotalFee = _buyFee (#870)
- _TotalFee = _sellFee (#870)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _TotalFee = _previousTotalFee (#768)
- _TotalFee = 0 (#761)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _buyFee = _previousBuyFee (#769)
- _buyFee = 0 (#759)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _previousBuyFee = _buyFee (#756)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _previousSellFee = _sellFee (#757)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _previousTotalFee = _TotalFee (#758)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _sellFee = _previousSellFee (#770)
- _sellFee = 0 (#760)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#993)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#994)
- _tOwned[address(this)] = _tOwned[address(this)].add(tDev) (#995)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- txCount ++ (#982)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#996)
- _tokenTransfer(from,to,amount,takeFee) (#872)
Reentrancy in foxgirl.transferFrom(address,address,uint256) (#551-555):
External calls:
- _transfer(sender,recipient,amount) (#552)
- wallet.transfer(amount) (#889)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#553)
- _allowances[owner][spender] = amount (#779)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#780)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#553)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#253) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#254)
Prevent variables from having similar names.

Additional information: link

foxgirl.slitherConstructorVariables() (#382-1012) uses literals with too many digits:
- Wallet_Burn = address(0x000000000000000000000000000000000000dEaD) (#406)
foxgirl.slitherConstructorVariables() (#382-1012) uses literals with too many digits:
- Wallet_zero = address(0x0000000000000000000000000000000000000000) (#407)
foxgirl.slitherConstructorVariables() (#382-1012) uses literals with too many digits:
- _tTotal = 100000000000000 * 10 ** 18 (#420)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

foxgirl.Wallet_zero (#407) is never used in foxgirl (#382-1012)
foxgirl._tFeeTotal (#421) is never used in foxgirl (#382-1012)
foxgirl._previousMaxWalletToken (#451) is never used in foxgirl (#382-1012)
foxgirl._previousMaxTxAmount (#456) is never used in foxgirl (#382-1012)
Remove unused state variables.

Additional information: link

foxgirl.Wallet_Burn (#406) should be constant
foxgirl.Wallet_zero (#407) should be constant
foxgirl._decimals (#419) should be constant
foxgirl._name (#417) should be constant
foxgirl._symbol (#418) should be constant
foxgirl._tFeeTotal (#421) should be constant
foxgirl._tTotal (#420) should be constant
foxgirl.maxPossibleFee (#429) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#181-184)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#187-191)
name() should be declared external:
- foxgirl.name() (#517-519)
symbol() should be declared external:
- foxgirl.symbol() (#521-523)
decimals() should be declared external:
- foxgirl.decimals() (#525-527)
totalSupply() should be declared external:
- foxgirl.totalSupply() (#529-531)
transfer(address,uint256) should be declared external:
- foxgirl.transfer(address,uint256) (#537-540)
allowance(address,address) should be declared external:
- foxgirl.allowance(address,address) (#542-544)
approve(address,uint256) should be declared external:
- foxgirl.approve(address,uint256) (#546-549)
transferFrom(address,address,uint256) should be declared external:
- foxgirl.transferFrom(address,address,uint256) (#551-555)
increaseAllowance(address,uint256) should be declared external:
- foxgirl.increaseAllowance(address,uint256) (#557-560)
decreaseAllowance(address,uint256) should be declared external:
- foxgirl.decreaseAllowance(address,uint256) (#562-565)
excludeFromFee(address) should be declared external:
- foxgirl.excludeFromFee(address) (#584-586)
includeInFee(address) should be declared external:
- foxgirl.includeInFee(address) (#589-591)
Wallet_Update_Dev(address) should be declared external:
- foxgirl.Wallet_Update_Dev(address) (#615-618)
set_Swap_And_Liquify_Enabled(bool) should be declared external:
- foxgirl.set_Swap_And_Liquify_Enabled(bool) (#628-631)
set_Number_Of_Transactions_Before_Liquify_Trigger(uint8) should be declared external:
- foxgirl.set_Number_Of_Transactions_Before_Liquify_Trigger(uint8) (#634-636)
blacklist_Switch(bool) should be declared external:
- foxgirl.blacklist_Switch(bool) (#701-703)
process_Tokens_Now(uint256) should be declared external:
- foxgirl.process_Tokens_Now(uint256) (#903-910)
set_New_Router_and_Make_Pair(address) should be declared external:
- foxgirl.set_New_Router_and_Make_Pair(address) (#952-956)
set_New_Router_Address(address) should be declared external:
- foxgirl.set_New_Router_Address(address) (#959-962)
set_New_Pair_Address(address) should be declared external:
- foxgirl.set_New_Pair_Address(address) (#965-967)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


Average 30d PancakeSwap liquidity 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.


Token is deployed only at one blockchain


Average 30d PancakeSwap volume is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


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 from CoinHunt

Additional information: link


Unable to verify token contract address on the website


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


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 price dump / death


Token has relatively low CoinMarketCap rank

Price for FOXGIRL

News for FOXGIRL