Billionaire Cat is a community focused, decentralised cryptocurrency, we aim to become the latest cat on the block. Billionaire Cat - created for people that love Cats and want to become Billionaires. Unlike other meme tokens such as Doge, our community is developing genuine use-case. We truly believe BILLIONAIRE CAT token is an extremely unique community.
BillionaireCat.addLiquidity(uint256,uint256) (#724-737) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#729-736)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in BillionaireCat._transfer(address,address,uint256) (#566-655):
External calls:
- handle_fees(feeswap,currentTaxes) (#643)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#729-736)
- (success) = recipient.call{value: amount}() (#368)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#715-721)
- address(marketingWallet).sendValue(marketingAmt) (#685)
- address(opsWallet).sendValue(opsAmt) (#690)
- address(buybackWallet).sendValue(buybackAmt) (#695)
- address(devWallet).sendValue(devAmt) (#700)
External calls sending eth:
- handle_fees(feeswap,currentTaxes) (#643)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#729-736)
- (success) = recipient.call{value: amount}() (#368)
State variables written after the call(s):
- super._transfer(sender,recipient,amount - fee) (#646)
- _balances[sender] = senderBalance - amount (#269)
- _balances[recipient] += amount (#270)
- super._transfer(sender,address(this),feeAmount) (#651)
- _balances[sender] = senderBalance - amount (#269)
- _balances[recipient] += amount (#270)
Apply the check-effects-interactions pattern.
Additional information: link
BillionaireCat.rescueBSC20(address,uint256) (#849-851) ignores return value by IERC20(tokenAdd).transfer(devWallet,amount) (#850)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
BillionaireCat._transfer(address,address,uint256).fee (#604) is written in both
fee = 0 (#613)
fee = (amount * feesum) / 100 (#639)
Fix or remove the writes.
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.
Contract ownership is not renounced (belongs to a wallet)
Variable ERC20._balances (#57) is not in mixedCase
Variable ERC20._allowances (#59) is not in mixedCase
Function IRouter.WETH() (#414) is not in mixedCase
Function BillionaireCat.handle_fees(uint256,BillionaireCat.Taxes) (#657-704) is not in mixedCase
Parameter BillionaireCat.updateLiquidityTreshhold(uint256).new_amount (#744) is not in mixedCase
Function BillionaireCat.SetBuyTaxes(uint256,uint256,uint256,uint256,uint256) (#749-758) is not in mixedCase
Parameter BillionaireCat.SetBuyTaxes(uint256,uint256,uint256,uint256,uint256)._marketing (#750) is not in mixedCase
Parameter BillionaireCat.SetBuyTaxes(uint256,uint256,uint256,uint256,uint256)._liquidity (#751) is not in mixedCase
Parameter BillionaireCat.SetBuyTaxes(uint256,uint256,uint256,uint256,uint256)._ops (#752) is not in mixedCase
Parameter BillionaireCat.SetBuyTaxes(uint256,uint256,uint256,uint256,uint256)._buyback (#753) is not in mixedCase
Parameter BillionaireCat.SetBuyTaxes(uint256,uint256,uint256,uint256,uint256)._dev (#754) is not in mixedCase
Function BillionaireCat.SetSellTaxes(uint256,uint256,uint256,uint256,uint256) (#760-769) is not in mixedCase
Parameter BillionaireCat.SetSellTaxes(uint256,uint256,uint256,uint256,uint256)._marketing (#761) is not in mixedCase
Parameter BillionaireCat.SetSellTaxes(uint256,uint256,uint256,uint256,uint256)._liquidity (#762) is not in mixedCase
Parameter BillionaireCat.SetSellTaxes(uint256,uint256,uint256,uint256,uint256)._ops (#763) is not in mixedCase
Parameter BillionaireCat.SetSellTaxes(uint256,uint256,uint256,uint256,uint256)._buyback (#764) is not in mixedCase
Parameter BillionaireCat.SetSellTaxes(uint256,uint256,uint256,uint256,uint256)._dev (#765) is not in mixedCase
Function BillionaireCat.EnableTrading() (#776-781) is not in mixedCase
Parameter BillionaireCat.updatedeadline(uint256)._deadline (#783) is not in mixedCase
Parameter BillionaireCat.updateExemptFee(address,bool)._address (#820) is not in mixedCase
Variable BillionaireCat.genesis_block (#456) is not in mixedCase
Constant BillionaireCat.deadWallet (#464) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#12)" inContext (#6-15)
Remove redundant statements if they congest code but offer no value.
Additional information: link
BillionaireCat.slitherConstructorConstantVariables() (#441-856) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#464)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BillionaireCat.launchtax (#458) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
BillionaireCat.handle_fees(uint256,BillionaireCat.Taxes) (#657-704) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - swapTaxes.liquidity) (#675)
-bnbToAddLiquidityWith = unitBalance * swapTaxes.liquidity (#676)
BillionaireCat.handle_fees(uint256,BillionaireCat.Taxes) (#657-704) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - swapTaxes.liquidity) (#675)
-marketingAmt = unitBalance * 2 * swapTaxes.marketing (#683)
BillionaireCat.handle_fees(uint256,BillionaireCat.Taxes) (#657-704) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - swapTaxes.liquidity) (#675)
-opsAmt = unitBalance * 2 * swapTaxes.ops (#688)
BillionaireCat.handle_fees(uint256,BillionaireCat.Taxes) (#657-704) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - swapTaxes.liquidity) (#675)
-buybackAmt = unitBalance * 2 * swapTaxes.buyback (#693)
BillionaireCat.handle_fees(uint256,BillionaireCat.Taxes) (#657-704) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - swapTaxes.liquidity) (#675)
-devAmt = unitBalance * 2 * swapTaxes.dev (#698)
Consider ordering multiplication before division.
Additional information: link
BillionaireCat._transfer(address,address,uint256).currentTaxes (#605) is a local variable never initialized
BillionaireCat._transfer(address,address,uint256).feeswap (#602) is a local variable never initialized
BillionaireCat._transfer(address,address,uint256).feesum (#603) 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
BillionaireCat.addLiquidity(uint256,uint256) (#724-737) ignores return value by router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#729-736)
Ensure that all the return values of the function calls are used.
Additional information: link
BillionaireCat.updateLiquidityTreshhold(uint256) (#744-747) should emit an event for:
- tokenLiquidityThreshold = new_amount * 10 ** decimals() (#746)
BillionaireCat.updatedeadline(uint256) (#783-786) should emit an event for:
- deadline = _deadline (#785)
BillionaireCat.updateCooldown(bool,uint256) (#804-808) should emit an event for:
- coolDownTime = time * 1 (#805)
BillionaireCat.updateMaxBuyTxLimit(uint256) (#830-833) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#831)
BillionaireCat.updateMaxSellTxLimit(uint256) (#835-838) should emit an event for:
- maxSellLimit = maxSell * 10 ** decimals() (#836)
BillionaireCat.updateMaxWalletlimit(uint256) (#840-843) should emit an event for:
- maxWalletLimit = amount * 10 ** decimals() (#841)
Emit an event for critical parameter changes.
Additional information: link
BillionaireCat.constructor(address)._pair (#499) lacks a zero-check on :
- pair = _pair (#502)
BillionaireCat.updateRouterAndPair(address,address).newPair (#771) lacks a zero-check on :
- pair = newPair (#773)
BillionaireCat.updateMarketingWallet(address).newWallet (#788) lacks a zero-check on :
- marketingWallet = newWallet (#789)
BillionaireCat.updateOpsWallet(address).newWallet (#792) lacks a zero-check on :
- opsWallet = newWallet (#793)
BillionaireCat.updateBuybackWallet(address).newWallet (#796) lacks a zero-check on :
- buybackWallet = newWallet (#797)
BillionaireCat.updateDevWallet(address).newWallet (#800) lacks a zero-check on :
- devWallet = newWallet (#801)
Check that the address is not zero.
Additional information: link
Modifier BillionaireCat.mutexLock() (#485-491) does not always execute _; or revert
All the paths in a modifier must execute _ or revert.
Additional information: link
Reentrancy in BillionaireCat.constructor(address) (#493-519):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#499)
State variables written after the call(s):
- allowedTransfer[address(this)] = true (#510)
- allowedTransfer[owner()] = true (#511)
- allowedTransfer[pair] = true (#512)
- allowedTransfer[marketingWallet] = true (#513)
- allowedTransfer[opsWallet] = true (#514)
- allowedTransfer[buybackWallet] = true (#515)
- allowedTransfer[devWallet] = true (#516)
- allowedTransfer[deadWallet] = true (#517)
- exemptFee[address(this)] = true (#503)
- exemptFee[marketingWallet] = true (#504)
- exemptFee[opsWallet] = true (#505)
- exemptFee[buybackWallet] = true (#506)
- exemptFee[devWallet] = true (#507)
- exemptFee[deadWallet] = true (#508)
- pair = _pair (#502)
- router = _router (#501)
Reentrancy in BillionaireCat.handle_fees(uint256,BillionaireCat.Taxes) (#657-704):
External calls:
- swapTokensForETH(toSwap) (#672)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#715-721)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#680)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#729-736)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#680)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#729-736)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#680)
- _allowances[owner][spender] = amount (#339)
Reentrancy in BillionaireCat.transferFrom(address,address,uint256) (#526-538):
External calls:
- _transfer(sender,recipient,amount) (#531)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#729-736)
- (success) = recipient.call{value: amount}() (#368)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#715-721)
- address(marketingWallet).sendValue(marketingAmt) (#685)
- address(opsWallet).sendValue(opsAmt) (#690)
- address(buybackWallet).sendValue(buybackAmt) (#695)
- address(devWallet).sendValue(devAmt) (#700)
External calls sending eth:
- _transfer(sender,recipient,amount) (#531)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#729-736)
- (success) = recipient.call{value: amount}() (#368)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#535)
- _allowances[owner][spender] = amount (#339)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BillionaireCat._transfer(address,address,uint256) (#566-655):
External calls:
- handle_fees(feeswap,currentTaxes) (#643)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#729-736)
- (success) = recipient.call{value: amount}() (#368)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#715-721)
- address(marketingWallet).sendValue(marketingAmt) (#685)
- address(opsWallet).sendValue(opsAmt) (#690)
- address(buybackWallet).sendValue(buybackAmt) (#695)
- address(devWallet).sendValue(devAmt) (#700)
External calls sending eth:
- handle_fees(feeswap,currentTaxes) (#643)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#729-736)
- (success) = recipient.call{value: amount}() (#368)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#272)
- super._transfer(sender,recipient,amount - fee) (#646)
- Transfer(sender,recipient,amount) (#272)
- super._transfer(sender,address(this),feeAmount) (#651)
Reentrancy in BillionaireCat.handle_fees(uint256,BillionaireCat.Taxes) (#657-704):
External calls:
- swapTokensForETH(toSwap) (#672)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#715-721)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#680)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#729-736)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#680)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#729-736)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#340)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#680)
Reentrancy in BillionaireCat.transferFrom(address,address,uint256) (#526-538):
External calls:
- _transfer(sender,recipient,amount) (#531)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#729-736)
- (success) = recipient.call{value: amount}() (#368)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#715-721)
- address(marketingWallet).sendValue(marketingAmt) (#685)
- address(opsWallet).sendValue(opsAmt) (#690)
- address(buybackWallet).sendValue(buybackAmt) (#695)
- address(devWallet).sendValue(devAmt) (#700)
External calls sending eth:
- _transfer(sender,recipient,amount) (#531)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#729-736)
- (success) = recipient.call{value: amount}() (#368)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#340)
- _approve(sender,_msgSender(),currentAllowance - amount) (#535)
Apply the check-effects-interactions pattern.
Additional information: link
BillionaireCat._transfer(address,address,uint256) (#566-655) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#597)
Avoid relying on block.timestamp.
Additional information: link
Context._msgData() (#11-14) is never used and should be removed
ERC20._burn(address,uint256) (#305-316) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#365-370):
- (success) = recipient.call{value: amount}() (#368)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
name() should be declared external:
- ERC20.name() (#83-85)
symbol() should be declared external:
- ERC20.symbol() (#91-93)
totalSupply() should be declared external:
- ERC20.totalSupply() (#115-117)
transfer(address,uint256) should be declared external:
- BillionaireCat.transfer(address,uint256) (#561-564)
- ERC20.transfer(address,uint256) (#134-142)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#147-155)
approve(address,uint256) should be declared external:
- BillionaireCat.approve(address,uint256) (#521-524)
- ERC20.approve(address,uint256) (#164-167)
transferFrom(address,address,uint256) should be declared external:
- BillionaireCat.transferFrom(address,address,uint256) (#526-538)
- ERC20.transferFrom(address,address,uint256) (#182-194)
increaseAllowance(address,uint256) should be declared external:
- BillionaireCat.increaseAllowance(address,uint256) (#540-547)
- ERC20.increaseAllowance(address,uint256) (#208-215)
decreaseAllowance(address,uint256) should be declared external:
- BillionaireCat.decreaseAllowance(address,uint256) (#549-559)
- ERC20.decreaseAllowance(address,uint256) (#231-241)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#391-393)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#395-398)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token contract audit
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
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
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account