Billionaire Kishu Token Logo

$BLK [Billionaire Kishu] Token

About $BLK

Listings

Token 3 years
white paper

BillionaireKishu ($BLK) is a community-driven project with solid tokenomics. Liquidity is locked Forever & Launching a POS Staking platform with Exclusive NFT's.

Social

Laser Scorebeta Last Audit: 2 March 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

BillionaireKishu.swapAndLiquify(address) (#1120-1149) sends eth to arbitrary user
Dangerous calls:
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1144)
BillionaireKishu.addLiquidity(address,address,uint256,uint256) (#1168-1182) sends eth to arbitrary user
Dangerous calls:
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1174-1181)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BillionaireKishu._transfer(address,address,uint256) (#1001-1031):
External calls:
- swapAndLiquify(to) (#1018)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1174-1181)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1159-1165)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1144)
External calls sending eth:
- swapAndLiquify(to) (#1018)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1174-1181)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1144)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _liquidityFee = _previousLiquidityFee (#968)
- _liquidityFee = 0 (#962)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _rOwned[address(this)] += rLiquidity (#928)
- _rOwned[sender] -= rAmount (#1074)
- _rOwned[burnAddress] += rBurn (#933)
- _rOwned[recipient] += rTransferAmount (#1079)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _rTotal = _rTotal - rFee (#826)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _tOwned[address(this)] += tLiquidity (#930)
- _tOwned[sender] -= tAmount (#1076)
- _tOwned[recipient] += tTransferAmount (#1078)
- _tOwned[burnAddress] += tBurn (#935)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

Contract ticker ($BLK) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

BillionaireKishu.slitherConstructorVariables() (#498-1199) uses literals with too many digits:
- _maxWalletToken = 15000000000 * (10 ** _decimals) (#523)
BillionaireKishu.slitherConstructorVariables() (#498-1199) uses literals with too many digits:
- _maxTxAmount = 10000000000 * (10 ** _decimals) (#524)
BillionaireKishu.slitherConstructorVariables() (#498-1199) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#526)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BillionaireKishu._takeLiquidity(uint256) (#921-939) performs a multiplication on the result of a division:
-tBurn = (tLiquidity * totalFeesToBurn) / _liquidityFee (#924)
-rBurn = tBurn * currentRate (#925)
Consider ordering multiplication before division.

Additional information: link

BillionaireKishu.addLiquidity(address,address,uint256,uint256) (#1168-1182) ignores return value by markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1174-1181)
Ensure that all the return values of the function calls are used.

Additional information: link

BillionaireKishu.allowance(address,address)._owner (#678) shadows:
- Ownable._owner (#42) (state variable)
BillionaireKishu._approve(address,address,uint256)._owner (#982) shadows:
- Ownable._owner (#42) (state variable)
BillionaireKishu.addLiquidity(address,address,uint256,uint256).owner (#1170) shadows:
- Ownable.owner() (#56-58) (function)
Rename the local variables that shadow another component.

Additional information: link

BillionaireKishu.setTaxFeePercent(uint256) (#755-759) should emit an event for:
- _taxFee = taxFee (#757)
- _previousTaxFee = _taxFee (#758)
BillionaireKishu.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256) (#761-773) should emit an event for:
- _liquidityFee = totalBNBFee (#762)
- _previousLiquidityFee = _liquidityFee (#763)
- totalFeesToLP = _lpFee (#765)
- totalFeesToBurn = _burnFee (#767)
- sellBias = _sellbias (#769)
- previousSellBias = sellBias (#770)
BillionaireKishu.setAmountToSell(uint256) (#775-777) should emit an event for:
- minTokenNumberToSell = _tTotal / _divisor (#776)
BillionaireKishu.updateGnosisGas(uint256) (#1106-1108) should emit an event for:
- gnosisGas = _amount (#1107)
Emit an event for critical parameter changes.

Additional information: link

BillionaireKishu.constructor(address,address)._marketing (#577) lacks a zero-check on :
- marketingWallet = _marketing (#592)
BillionaireKishu.constructor(address,address)._liquidity (#577) lacks a zero-check on :
- liquidityWallet = _liquidity (#593)
BillionaireKishu.setMarketingWallet(address)._newAddress (#779) lacks a zero-check on :
- marketingWallet = _newAddress (#780)
BillionaireKishu.setLiquidityWallet(address)._newAddress (#783) lacks a zero-check on :
- liquidityWallet = _newAddress (#784)
Check that the address is not zero.

Additional information: link

BillionaireKishu.swapTokensForEth(address,uint256) (#1151-1166) has external calls inside a loop: path[1] = markets[pair].WETH() (#1157)
BillionaireKishu.swapTokensForEth(address,uint256) (#1151-1166) has external calls inside a loop: markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1159-1165)
BillionaireKishu.addLiquidity(address,address,uint256,uint256) (#1168-1182) has external calls inside a loop: markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1174-1181)
BillionaireKishu.swapAndLiquify(address) (#1120-1149) has external calls inside a loop: (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1144)
BillionaireKishu._transfer(address,address,uint256) (#1001-1031) has external calls inside a loop: antisnipe.onPreTransferCheck(from,to,amount) (#1029)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in BillionaireKishu._transfer(address,address,uint256) (#1001-1031):
External calls:
- swapAndLiquify(to) (#1018)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1174-1181)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1159-1165)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1144)
External calls sending eth:
- swapAndLiquify(to) (#1018)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1174-1181)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1144)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _previousLiquidityFee = _liquidityFee (#958)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _previousTaxFee = _taxFee (#957)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _tFeeTotal = _tFeeTotal + tFee (#827)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _taxFee = _previousTaxFee (#967)
- _taxFee = 0 (#961)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- previousSellBias = sellBias (#959)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- sellBias = previousSellBias (#969)
- sellBias = 0 (#963)
Reentrancy in BillionaireKishu.addMarket(address) (#811-820):
External calls:
- pair = IPancakeFactory(router.factory()).createPair(address(this),router.WETH()) (#813-816)
State variables written after the call(s):
- excludeFromReward(pair) (#819)
- _excluded.push(account) (#661)
- excludeFromReward(pair) (#819)
- _isExcludedFromRewards[account] = true (#660)
- excludeFromReward(pair) (#819)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#658)
- liquidityPools[pair] = true (#817)
- markets[pair] = router (#818)
Reentrancy in BillionaireKishu.constructor(address,address) (#577-621):
External calls:
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#585-588)
State variables written after the call(s):
- _approve(address(this),routerAddress,_tTotal) (#613)
- _allowances[_owner][spender] = amount (#989)
- _approve(msg.sender,routerAddress,_tTotal) (#614)
- _allowances[_owner][spender] = amount (#989)
- _excluded.push(address(this)) (#601)
- _excluded.push(burnAddress) (#603)
- _excluded.push(msg.sender) (#605)
- _excluded.push(pancakePair) (#607)
- _isExcludedFromFee[owner()] = true (#610)
- _isExcludedFromFee[address(this)] = true (#611)
- _isExcludedFromRewards[address(this)] = true (#600)
- _isExcludedFromRewards[burnAddress] = true (#602)
- _isExcludedFromRewards[msg.sender] = true (#604)
- _isExcludedFromRewards[pancakePair] = true (#606)
- _liqProvWhitelist[msg.sender] = true (#596)
- _taxWhitelist[msg.sender] = true (#595)
- _taxWhitelist[_marketing] = true (#597)
- _taxWhitelist[address(this)] = true (#598)
- antisnipe = IAntiSnipe(0x8EFDb3b642eb2a20607ffe0A56CFefF6a95Df002) (#616)
- liquidityPools[pancakePair] = true (#589)
- liquidityWallet = _liquidity (#593)
- marketingWallet = _marketing (#592)
- markets[pancakePair] = pancakeRouter (#590)
Reentrancy in BillionaireKishu.transferFrom(address,address,uint256) (#700-712):
External calls:
- _transfer(sender,recipient,amount) (#705)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1174-1181)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1159-1165)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1144)
- antisnipe.onPreTransferCheck(from,to,amount) (#1029)
External calls sending eth:
- _transfer(sender,recipient,amount) (#705)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1174-1181)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1144)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#706-710)
- _allowances[_owner][spender] = amount (#989)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BillionaireKishu._transfer(address,address,uint256) (#1001-1031):
External calls:
- swapAndLiquify(to) (#1018)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1174-1181)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1159-1165)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1144)
External calls sending eth:
- swapAndLiquify(to) (#1018)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1174-1181)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1144)
Event emitted after the call(s):
- Transfer(address(this),burnAddress,tBurn) (#937)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- Transfer(sender,recipient,tTransferAmount) (#1085)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
Reentrancy in BillionaireKishu.constructor(address,address) (#577-621):
External calls:
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#585-588)
Event emitted after the call(s):
- Approval(_owner,spender,amount) (#990)
- _approve(msg.sender,routerAddress,_tTotal) (#614)
- Approval(_owner,spender,amount) (#990)
- _approve(address(this),routerAddress,_tTotal) (#613)
Reentrancy in BillionaireKishu.constructor(address,address) (#577-621):
External calls:
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#585-588)
- antisnipe.setTokenOwner(msg.sender) (#618)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#620)
Reentrancy in BillionaireKishu.swapAndLiquify(address) (#1120-1149):
External calls:
- swapTokensForEth(to,amountToSwap - tokensForLP) (#1128-1131)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1159-1165)
- addLiquidity(to,liquidityWallet,tokensForLP,bnbToBeAddedToLiquidity) (#1139)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1174-1181)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1144)
External calls sending eth:
- addLiquidity(to,liquidityWallet,tokensForLP,bnbToBeAddedToLiquidity) (#1139)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1174-1181)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1144)
Event emitted after the call(s):
- SwapAndLiquify(amountToSwap,deltaBalance,tokensForLP) (#1148)
Reentrancy in BillionaireKishu.transferFrom(address,address,uint256) (#700-712):
External calls:
- _transfer(sender,recipient,amount) (#705)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1174-1181)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1159-1165)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1144)
- antisnipe.onPreTransferCheck(from,to,amount) (#1029)
External calls sending eth:
- _transfer(sender,recipient,amount) (#705)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1174-1181)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1144)
Event emitted after the call(s):
- Approval(_owner,spender,amount) (#990)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#706-710)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#161-171) uses assembly
- INLINE ASM (#167-169)
Address.verifyCallResult(bool,bytes,string) (#330-350) uses assembly
- INLINE ASM (#342-345)
Do not use evm assembly.

Additional information: link

BillionaireKishu._decimals (#503) should be constant
BillionaireKishu._name (#501) should be constant
BillionaireKishu._symbol (#502) should be constant
BillionaireKishu.burnAddress (#526) should be constant
BillionaireKishu.protectedFrom (#552) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

BillionaireKishu.includeInReward(address) (#664-675) has costly operations inside a loop:
- _excluded.pop() (#671)
BillionaireKishu._transfer(address,address,uint256) (#1001-1031) has costly operations inside a loop:
- liquidityLaunched = true (#1012)
BillionaireKishu.swapping() (#570) has costly operations inside a loop:
- inSwap = true (#570)
BillionaireKishu.swapping() (#570) has costly operations inside a loop:
- inSwap = false (#570)
BillionaireKishu.removeAllFee() (#954-964) has costly operations inside a loop:
- _previousTaxFee = _taxFee (#957)
BillionaireKishu.removeAllFee() (#954-964) has costly operations inside a loop:
- _previousLiquidityFee = _liquidityFee (#958)
BillionaireKishu.removeAllFee() (#954-964) has costly operations inside a loop:
- previousSellBias = sellBias (#959)
BillionaireKishu.removeAllFee() (#954-964) has costly operations inside a loop:
- _taxFee = 0 (#961)
BillionaireKishu.removeAllFee() (#954-964) has costly operations inside a loop:
- _liquidityFee = 0 (#962)
BillionaireKishu.removeAllFee() (#954-964) has costly operations inside a loop:
- sellBias = 0 (#963)
BillionaireKishu._reflectFee(uint256,uint256) (#825-828) has costly operations inside a loop:
- _rTotal = _rTotal - rFee (#826)
BillionaireKishu._reflectFee(uint256,uint256) (#825-828) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal + tFee (#827)
BillionaireKishu.restoreAllFee() (#966-970) has costly operations inside a loop:
- _taxFee = _previousTaxFee (#967)
BillionaireKishu.restoreAllFee() (#966-970) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (#968)
BillionaireKishu.restoreAllFee() (#966-970) has costly operations inside a loop:
- sellBias = previousSellBias (#969)
Use a local variable to hold the loop computation result.

Additional information: link

Address.functionCall(address,bytes) (#214-216) is never used and should be removed
Address.functionCall(address,bytes,string) (#224-230) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#243-249) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#257-268) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#303-305) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#313-322) is never used and should be removed
Address.functionStaticCall(address,bytes) (#276-278) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#286-295) is never used and should be removed
Address.isContract(address) (#161-171) is never used and should be removed
Address.sendValue(address,uint256) (#189-194) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#330-350) is never used and should be removed
Context._msgData() (#24-26) is never used and should be removed
Remove unused functions.

Additional information: link

BillionaireKishu._tTotal (#520) is set pre-construction with a non-constant function or state variable:
- 1_000_000_000_000 * (10 ** _decimals)
BillionaireKishu._rTotal (#521) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
BillionaireKishu._maxWalletToken (#523) is set pre-construction with a non-constant function or state variable:
- 15000000000 * (10 ** _decimals)
BillionaireKishu._maxTxAmount (#524) is set pre-construction with a non-constant function or state variable:
- 10000000000 * (10 ** _decimals)
BillionaireKishu._previousTaxFee (#534) is set pre-construction with a non-constant function or state variable:
- _taxFee
BillionaireKishu.previousSellBias (#539) is set pre-construction with a non-constant function or state variable:
- sellBias
BillionaireKishu._previousLiquidityFee (#542) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
BillionaireKishu.minTokenNumberToSell (#544) is set pre-construction with a non-constant function or state variable:
- _tTotal / 1000
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

Pragma version^0.8.8 (#7) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
solc-0.8.8 is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
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

Low level call in Address.sendValue(address,uint256) (#189-194):
- (success) = recipient.call{value: amount}() (#192)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#257-268):
- (success,returndata) = target.call{value: value}(data) (#266)
Low level call in Address.functionStaticCall(address,bytes,string) (#286-295):
- (success,returndata) = target.staticcall(data) (#293)
Low level call in Address.functionDelegateCall(address,bytes,string) (#313-322):
- (success,returndata) = target.delegatecall(data) (#320)
Low level call in BillionaireKishu.swapAndLiquify(address) (#1120-1149):
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1144)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakeRouter01.WETH() (#355) is not in mixedCase
Parameter BillionaireKishu.setTeamMember(address,bool)._team (#644) is not in mixedCase
Parameter BillionaireKishu.setTeamMember(address,bool)._enabled (#644) is not in mixedCase
Parameter BillionaireKishu.allowance(address,address)._owner (#678) is not in mixedCase
Parameter BillionaireKishu.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._marketingFee (#761) is not in mixedCase
Parameter BillionaireKishu.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._lpFee (#761) is not in mixedCase
Parameter BillionaireKishu.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._burnFee (#761) is not in mixedCase
Parameter BillionaireKishu.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._sellbias (#761) is not in mixedCase
Parameter BillionaireKishu.setAmountToSell(uint256)._divisor (#775) is not in mixedCase
Parameter BillionaireKishu.setMarketingWallet(address)._newAddress (#779) is not in mixedCase
Parameter BillionaireKishu.setLiquidityWallet(address)._newAddress (#783) is not in mixedCase
Parameter BillionaireKishu.setLiqidityProviderWhitelisted(address,bool)._address (#787) is not in mixedCase
Parameter BillionaireKishu.setLiqidityProviderWhitelisted(address,bool)._whitelisted (#787) is not in mixedCase
Parameter BillionaireKishu.getLPWhitelisted(address)._account (#797) is not in mixedCase
Parameter BillionaireKishu.setSwapAndLiquifyEnabled(bool)._enabled (#801) is not in mixedCase
Parameter BillionaireKishu.addMarket(address)._market (#811) is not in mixedCase
Function BillionaireKishu._getRate() (#899-902) is not in mixedCase
Parameter BillionaireKishu.calculateTaxFee(uint256,bool)._amount (#941) is not in mixedCase
Parameter BillionaireKishu.calculateLiquidityFee(uint256,bool)._amount (#946) is not in mixedCase
Parameter BillionaireKishu.activateLP(bool)._enabled (#976) is not in mixedCase
Parameter BillionaireKishu.setProtection(IAntiSnipe)._protection (#993) is not in mixedCase
Parameter BillionaireKishu.setProtection(bool)._enable (#997) is not in mixedCase
Parameter BillionaireKishu.updateGnosisGas(uint256)._amount (#1106) is not in mixedCase
Parameter BillionaireKishu.airdrop(address[],uint256[])._addresses (#1184) is not in mixedCase
Parameter BillionaireKishu.airdrop(address[],uint256[])._amount (#1184) is not in mixedCase
Variable BillionaireKishu._maxWalletToken (#523) is not in mixedCase
Variable BillionaireKishu._maxTxAmount (#524) is not in mixedCase
Variable BillionaireKishu._taxFee (#533) is not in mixedCase
Variable BillionaireKishu._liquidityFee (#541) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#360) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#361)
Variable BillionaireKishu._transferStandard(address,address,uint256).rTransferAmount (#1068) is too similar to BillionaireKishu._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable BillionaireKishu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#895) is too similar to BillionaireKishu._getTValues(uint256,bool).tTransferAmount (#874)
Variable BillionaireKishu._getValues(uint256,bool).rTransferAmount (#847) is too similar to BillionaireKishu._getTValues(uint256,bool).tTransferAmount (#874)
Variable BillionaireKishu._transferStandard(address,address,uint256).rTransferAmount (#1068) is too similar to BillionaireKishu._getTValues(uint256,bool).tTransferAmount (#874)
Variable BillionaireKishu._getValues(uint256,bool).rTransferAmount (#847) is too similar to BillionaireKishu._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable BillionaireKishu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#895) is too similar to BillionaireKishu._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable BillionaireKishu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#895) is too similar to BillionaireKishu._getValues(uint256,bool).tTransferAmount (#843)
Variable BillionaireKishu._getValues(uint256,bool).rTransferAmount (#847) is too similar to BillionaireKishu._getValues(uint256,bool).tTransferAmount (#843)
Variable BillionaireKishu._transferStandard(address,address,uint256).rTransferAmount (#1068) is too similar to BillionaireKishu._getValues(uint256,bool).tTransferAmount (#843)
Prevent variables from having similar names.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#75-77)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#83-86)
name() should be declared external:
- BillionaireKishu.name() (#623-625)
symbol() should be declared external:
- BillionaireKishu.symbol() (#627-629)
decimals() should be declared external:
- BillionaireKishu.decimals() (#631-633)
totalSupply() should be declared external:
- BillionaireKishu.totalSupply() (#635-637)
isExcludedFromReward(address) should be declared external:
- BillionaireKishu.isExcludedFromReward(address) (#648-650)
allowance(address,address) should be declared external:
- BillionaireKishu.allowance(address,address) (#678-684)
totalFees() should be declared external:
- BillionaireKishu.totalFees() (#686-688)
approve(address,uint256) should be declared external:
- BillionaireKishu.approve(address,uint256) (#690-693)
transfer(address,uint256) should be declared external:
- BillionaireKishu.transfer(address,uint256) (#695-698)
transferFrom(address,address,uint256) should be declared external:
- BillionaireKishu.transferFrom(address,address,uint256) (#700-712)
increaseAllowance(address,uint256) should be declared external:
- BillionaireKishu.increaseAllowance(address,uint256) (#714-725)
decreaseAllowance(address,uint256) should be declared external:
- BillionaireKishu.decreaseAllowance(address,uint256) (#727-738)
setAccountWhitelisted(address,bool) should be declared external:
- BillionaireKishu.setAccountWhitelisted(address,bool) (#750-753)
setSwapAndLiquifyEnabled(bool) should be declared external:
- BillionaireKishu.setSwapAndLiquifyEnabled(bool) (#801-804)
isWhitelisted(address) should be declared external:
- BillionaireKishu.isWhitelisted(address) (#972-974)
excludeFromFee(address) should be declared external:
- BillionaireKishu.excludeFromFee(address) (#1098-1100)
includeInFee(address) should be declared external:
- BillionaireKishu.includeInFee(address) (#1102-1104)
setMaxTxPercent(uint256) should be declared external:
- BillionaireKishu.setMaxTxPercent(uint256) (#1110-1113)
setMaxWalletPercent(uint256) should be declared external:
- BillionaireKishu.setMaxWalletPercent(uint256) (#1115-1118)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.

Contract has 9% buy tax and 11% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Average 30d PancakeSwap liquidity is low.


Average 30d PancakeSwap volume is low.


Number of Binance Smart Chain (BSC) token holders is low.


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find code repository for the project


Young tokens have high risks of 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


Young tokens have high risks of price dump / death

Price for $BLK

News for $BLK