BunnyGirl Token Logo

BUNNYGIRL Token

ALERT: dead

About BUNNYGIRL

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

BunnyGirl is a project that was introduced in Q4 2021 as a community driven token on the Binance Smart Chain.

BunnyGirl intends to become a DAO in the near future where token holders gain access to exclusive token and NFT airdrops. Furthermore, a community vault will be created where members of BunnyGirl decide on which assets to invest in. Profits from the vault will be shared among token holders.

BunnyGirl was founded by two people who have chosen not to reveal their identities for now. The team consists of a leading developer and a head of marketing (a writer also responsible for content creation and social media management.

Social

Laser Scorebeta Last Audit: 6 May 2022

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

Anti-Scam

Links


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

Reentrancy in bunnygirl._transfer(address,address,uint256) (#785-874):
External calls:
- swapAndLiquify(contractTokenBalance) (#851)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#921-927)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#851)
- wallet.transfer(amount) (#890)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#873)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#994)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#995)
- _tOwned[address(this)] = _tOwned[address(this)].add(tDev) (#996)
- _tokenTransfer(from,to,amount,takeFee) (#873)
- txCount ++ (#983)
Apply the check-effects-interactions pattern.

Additional information: link


Token is flagged by TokenSniffer due to previous scams commited by owner (blacklist)


Contract ownership is not renounced (belongs to a wallet)

bunnygirl.Wallet_zero (#408) is never used in bunnygirl (#383-1014)
bunnygirl._tFeeTotal (#422) is never used in bunnygirl (#383-1014)
bunnygirl._previousMaxWalletToken (#452) is never used in bunnygirl (#383-1014)
bunnygirl._previousMaxTxAmount (#457) is never used in bunnygirl (#383-1014)
Remove unused state variables.

Additional information: link

bunnygirl.Wallet_Burn (#407) should be constant
bunnygirl.Wallet_zero (#408) should be constant
bunnygirl._decimals (#420) should be constant
bunnygirl._name (#418) should be constant
bunnygirl._symbol (#419) should be constant
bunnygirl._tFeeTotal (#422) should be constant
bunnygirl._tTotal (#421) should be constant
bunnygirl.maxPossibleFee (#430) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#182-185)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#188-192)
name() should be declared external:
- bunnygirl.name() (#518-520)
symbol() should be declared external:
- bunnygirl.symbol() (#522-524)
decimals() should be declared external:
- bunnygirl.decimals() (#526-528)
totalSupply() should be declared external:
- bunnygirl.totalSupply() (#530-532)
transfer(address,uint256) should be declared external:
- bunnygirl.transfer(address,uint256) (#538-541)
allowance(address,address) should be declared external:
- bunnygirl.allowance(address,address) (#543-545)
approve(address,uint256) should be declared external:
- bunnygirl.approve(address,uint256) (#547-550)
transferFrom(address,address,uint256) should be declared external:
- bunnygirl.transferFrom(address,address,uint256) (#552-556)
increaseAllowance(address,uint256) should be declared external:
- bunnygirl.increaseAllowance(address,uint256) (#558-561)
decreaseAllowance(address,uint256) should be declared external:
- bunnygirl.decreaseAllowance(address,uint256) (#563-566)
excludeFromFee(address) should be declared external:
- bunnygirl.excludeFromFee(address) (#585-587)
includeInFee(address) should be declared external:
- bunnygirl.includeInFee(address) (#590-592)
Wallet_Update_Dev(address) should be declared external:
- bunnygirl.Wallet_Update_Dev(address) (#616-619)
set_Swap_And_Liquify_Enabled(bool) should be declared external:
- bunnygirl.set_Swap_And_Liquify_Enabled(bool) (#629-632)
set_Number_Of_Transactions_Before_Liquify_Trigger(uint8) should be declared external:
- bunnygirl.set_Number_Of_Transactions_Before_Liquify_Trigger(uint8) (#635-637)
blacklist_Switch(bool) should be declared external:
- bunnygirl.blacklist_Switch(bool) (#702-704)
process_Tokens_Now(uint256) should be declared external:
- bunnygirl.process_Tokens_Now(uint256) (#904-911)
set_New_Router_and_Make_Pair(address) should be declared external:
- bunnygirl.set_New_Router_and_Make_Pair(address) (#953-957)
set_New_Router_Address(address) should be declared external:
- bunnygirl.set_New_Router_Address(address) (#960-963)
set_New_Pair_Address(address) should be declared external:
- bunnygirl.set_New_Pair_Address(address) (#966-968)
Use the external attribute for functions never called from the contract.

Additional information: link

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

Additional information: link

bunnygirl.blacklist_Add_Wallets(address[]).gasUsed (#660) is a local variable never initialized
bunnygirl.blacklist_Remove_Wallets(address[]).i (#680) is a local variable never initialized
bunnygirl.blacklist_Remove_Wallets(address[]).gasUsed (#678) is a local variable never initialized
bunnygirl.blacklist_Add_Wallets(address[]).i (#662) 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

bunnygirl.allowance(address,address).owner (#543) shadows:
- Ownable.owner() (#171-173) (function)
bunnygirl._approve(address,address,uint256).owner (#777) shadows:
- Ownable.owner() (#171-173) (function)
Rename the local variables that shadow another component.

Additional information: link

bunnygirl._set_Fees(uint256,uint256) (#605-611) should emit an event for:
- _sellFee = Sell_Fee (#608)
- _buyFee = Buy_Fee (#609)
bunnygirl.set_Number_Of_Transactions_Before_Liquify_Trigger(uint8) (#635-637) should emit an event for:
- swapTrigger = number_of_transactions (#636)
bunnygirl.set_Max_Transaction_Percent(uint256) (#741-743) should emit an event for:
- _maxTxAmount = _tTotal * maxTxPercent_x100 / 10000 (#742)
bunnygirl.set_Max_Wallet_Percent(uint256) (#746-748) should emit an event for:
- _maxWalletToken = _tTotal * maxWallPercent_x100 / 10000 (#747)
Emit an event for critical parameter changes.

Additional information: link

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

Additional information: link

Reentrancy in bunnygirl._transfer(address,address,uint256) (#785-874):
External calls:
- swapAndLiquify(contractTokenBalance) (#851)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#921-927)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#851)
- wallet.transfer(amount) (#890)
State variables written after the call(s):
- _TotalFee = _buyFee (#871)
- _TotalFee = _sellFee (#871)
- _tokenTransfer(from,to,amount,takeFee) (#873)
- _TotalFee = _previousTotalFee (#769)
- _TotalFee = 0 (#762)
- _tokenTransfer(from,to,amount,takeFee) (#873)
- _buyFee = _previousBuyFee (#770)
- _buyFee = 0 (#760)
- _tokenTransfer(from,to,amount,takeFee) (#873)
- _previousBuyFee = _buyFee (#757)
- _tokenTransfer(from,to,amount,takeFee) (#873)
- _previousSellFee = _sellFee (#758)
- _tokenTransfer(from,to,amount,takeFee) (#873)
- _previousTotalFee = _TotalFee (#759)
- _tokenTransfer(from,to,amount,takeFee) (#873)
- _sellFee = _previousSellFee (#771)
- _sellFee = 0 (#761)
Reentrancy in bunnygirl.constructor() (#494-509):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#501-502)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#504)
- _isExcludedFromFee[address(this)] = true (#505)
- _isExcludedFromFee[Wallet_Dev] = true (#506)
- uniswapV2Router = _uniswapV2Router (#503)
Reentrancy in bunnygirl.set_New_Router_and_Make_Pair(address) (#953-957):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPCSRouter.factory()).createPair(address(this),_newPCSRouter.WETH()) (#955)
State variables written after the call(s):
- uniswapV2Router = _newPCSRouter (#956)
Reentrancy in bunnygirl.transferFrom(address,address,uint256) (#552-556):
External calls:
- _transfer(sender,recipient,amount) (#553)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#921-927)
External calls sending eth:
- _transfer(sender,recipient,amount) (#553)
- wallet.transfer(amount) (#890)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#554)
- _allowances[owner][spender] = amount (#780)
Apply the check-effects-interactions pattern.

Additional information: link

bunnygirl.slitherConstructorVariables() (#383-1014) uses literals with too many digits:
- Wallet_Burn = address(0x000000000000000000000000000000000000dEaD) (#407)
bunnygirl.slitherConstructorVariables() (#383-1014) uses literals with too many digits:
- Wallet_zero = address(0x0000000000000000000000000000000000000000) (#408)
bunnygirl.slitherConstructorVariables() (#383-1014) uses literals with too many digits:
- _tTotal = 100000000000000 * 10 ** 18 (#421)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Reentrancy in bunnygirl._transfer(address,address,uint256) (#785-874):
External calls:
- swapAndLiquify(contractTokenBalance) (#851)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#921-927)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#851)
- wallet.transfer(amount) (#890)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#997)
- _tokenTransfer(from,to,amount,takeFee) (#873)
Reentrancy in bunnygirl.constructor() (#494-509):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#501-502)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#508)
Reentrancy in bunnygirl.transferFrom(address,address,uint256) (#552-556):
External calls:
- _transfer(sender,recipient,amount) (#553)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#921-927)
External calls sending eth:
- _transfer(sender,recipient,amount) (#553)
- wallet.transfer(amount) (#890)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#781)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#554)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#91-95) uses assembly
- INLINE ASM (#93)
Address._verifyCallResult(bool,bytes,string) (#143-156) uses assembly
- INLINE ASM (#148-151)
Do not use evm assembly.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#143-156) is never used and should be removed
Address.functionCall(address,bytes) (#103-105) is never used and should be removed
Address.functionCall(address,bytes,string) (#107-109) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#111-113) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#115-120) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#133-135) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#137-141) is never used and should be removed
Address.functionStaticCall(address,bytes) (#122-124) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#126-130) is never used and should be removed
Address.isContract(address) (#91-95) is never used and should be removed
Address.sendValue(address,uint256) (#97-101) is never used and should be removed
Context._msgData() (#82-85) is never used and should be removed
SafeMath.div(uint256,uint256) (#55-57) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#66-71) is never used and should be removed
SafeMath.mul(uint256,uint256) (#51-53) is never used and should be removed
Remove unused functions.

Additional information: link

bunnygirl._previousTotalFee (#440) is set pre-construction with a non-constant function or state variable:
- _TotalFee
bunnygirl._previousBuyFee (#441) is set pre-construction with a non-constant function or state variable:
- _buyFee
bunnygirl._previousSellFee (#442) is set pre-construction with a non-constant function or state variable:
- _sellFee
bunnygirl._maxWalletToken (#451) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(4).div(100)
bunnygirl._previousMaxWalletToken (#452) is set pre-construction with a non-constant function or state variable:
- _maxWalletToken
bunnygirl._maxTxAmount (#456) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(4).div(100)
bunnygirl._previousMaxTxAmount (#457) 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) (#97-101):
- (success) = recipient.call{value: amount}() (#99)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#115-120):
- (success,returndata) = target.call{value: value}(data) (#118)
Low level call in Address.functionStaticCall(address,bytes,string) (#126-130):
- (success,returndata) = target.staticcall(data) (#128)
Low level call in Address.functionDelegateCall(address,bytes,string) (#137-141):
- (success,returndata) = target.delegatecall(data) (#139)
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() (#219) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#220) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#233) is not in mixedCase
Function IUniswapV2Router01.WETH() (#250) is not in mixedCase
Contract bunnygirl (#383-1014) is not in CapWords
Function bunnygirl._set_Fees(uint256,uint256) (#605-611) is not in mixedCase
Parameter bunnygirl._set_Fees(uint256,uint256).Buy_Fee (#605) is not in mixedCase
Parameter bunnygirl._set_Fees(uint256,uint256).Sell_Fee (#605) is not in mixedCase
Function bunnygirl.Wallet_Update_Dev(address) (#616-619) is not in mixedCase
Function bunnygirl.set_Swap_And_Liquify_Enabled(bool) (#629-632) is not in mixedCase
Parameter bunnygirl.set_Swap_And_Liquify_Enabled(bool).true_or_false (#629) is not in mixedCase
Function bunnygirl.set_Number_Of_Transactions_Before_Liquify_Trigger(uint8) (#635-637) is not in mixedCase
Parameter bunnygirl.set_Number_Of_Transactions_Before_Liquify_Trigger(uint8).number_of_transactions (#635) is not in mixedCase
Function bunnygirl.blacklist_Add_Wallets(address[]) (#657-670) is not in mixedCase
Function bunnygirl.blacklist_Remove_Wallets(address[]) (#675-688) is not in mixedCase
Function bunnygirl.blacklist_Switch(bool) (#702-704) is not in mixedCase
Parameter bunnygirl.blacklist_Switch(bool).true_or_false (#702) is not in mixedCase
Function bunnygirl.set_Transfers_Without_Fees(bool) (#719-721) is not in mixedCase
Parameter bunnygirl.set_Transfers_Without_Fees(bool).true_or_false (#719) is not in mixedCase
Function bunnygirl.set_Max_Transaction_Percent(uint256) (#741-743) is not in mixedCase
Parameter bunnygirl.set_Max_Transaction_Percent(uint256).maxTxPercent_x100 (#741) is not in mixedCase
Function bunnygirl.set_Max_Wallet_Percent(uint256) (#746-748) is not in mixedCase
Parameter bunnygirl.set_Max_Wallet_Percent(uint256).maxWallPercent_x100 (#746) is not in mixedCase
Function bunnygirl.process_Tokens_Now(uint256) (#904-911) is not in mixedCase
Parameter bunnygirl.process_Tokens_Now(uint256).percent_Of_Tokens_To_Process (#904) is not in mixedCase
Function bunnygirl.remove_Random_Tokens(address,address,uint256) (#937-942) is not in mixedCase
Parameter bunnygirl.remove_Random_Tokens(address,address,uint256).random_Token_Address (#937) is not in mixedCase
Parameter bunnygirl.remove_Random_Tokens(address,address,uint256).send_to_wallet (#937) is not in mixedCase
Parameter bunnygirl.remove_Random_Tokens(address,address,uint256).number_of_tokens (#937) is not in mixedCase
Function bunnygirl.set_New_Router_and_Make_Pair(address) (#953-957) is not in mixedCase
Function bunnygirl.set_New_Router_Address(address) (#960-963) is not in mixedCase
Function bunnygirl.set_New_Pair_Address(address) (#966-968) is not in mixedCase
Variable bunnygirl._isExcludedFromFee (#391) is not in mixedCase
Variable bunnygirl._isBlacklisted (#394) is not in mixedCase
Variable bunnygirl.Wallet_Dev (#406) is not in mixedCase
Variable bunnygirl.Wallet_Burn (#407) is not in mixedCase
Variable bunnygirl.Wallet_zero (#408) is not in mixedCase
Variable bunnygirl._TotalFee (#434) is not in mixedCase
Variable bunnygirl._buyFee (#435) is not in mixedCase
Variable bunnygirl._sellFee (#436) is not in mixedCase
Variable bunnygirl._maxWalletToken (#451) is not in mixedCase
Variable bunnygirl._maxTxAmount (#456) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#83)" inContext (#77-86)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in bunnygirl._transfer(address,address,uint256) (#785-874):
External calls:
- swapAndLiquify(contractTokenBalance) (#851)
- wallet.transfer(amount) (#890)
State variables written after the call(s):
- _TotalFee = _buyFee (#871)
- _TotalFee = _sellFee (#871)
- _tokenTransfer(from,to,amount,takeFee) (#873)
- _TotalFee = _previousTotalFee (#769)
- _TotalFee = 0 (#762)
- _tokenTransfer(from,to,amount,takeFee) (#873)
- _buyFee = _previousBuyFee (#770)
- _buyFee = 0 (#760)
- _tokenTransfer(from,to,amount,takeFee) (#873)
- _previousBuyFee = _buyFee (#757)
- _tokenTransfer(from,to,amount,takeFee) (#873)
- _previousSellFee = _sellFee (#758)
- _tokenTransfer(from,to,amount,takeFee) (#873)
- _previousTotalFee = _TotalFee (#759)
- _tokenTransfer(from,to,amount,takeFee) (#873)
- _sellFee = _previousSellFee (#771)
- _sellFee = 0 (#761)
- _tokenTransfer(from,to,amount,takeFee) (#873)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#994)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#995)
- _tOwned[address(this)] = _tOwned[address(this)].add(tDev) (#996)
- _tokenTransfer(from,to,amount,takeFee) (#873)
- txCount ++ (#983)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#997)
- _tokenTransfer(from,to,amount,takeFee) (#873)
Reentrancy in bunnygirl.transferFrom(address,address,uint256) (#552-556):
External calls:
- _transfer(sender,recipient,amount) (#553)
- wallet.transfer(amount) (#890)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#554)
- _allowances[owner][spender] = amount (#780)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#781)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#554)
Apply the check-effects-interactions pattern.

Additional information: link

Holders:

Contract has 10% buy tax and 25% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Token is deployed only at one blockchain


Average 30d PancakeSwap liquidity is low.


Average 30d number of PancakeSwap swaps is low.


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


Last post in Twitter was more than 30 days ago


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 find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token is marked as risky (blacklisted creator, fake name, dead project, etc.)

Additional information: link


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for BUNNYGIRL

News for BUNNYGIRL