KishuBTC Token Logo

KBTC [KishuBTC] Token

About KBTC

Listings

Not Found
Token 2 years
white paper

KishuBTC is a multi-utility community token that rewards its holders 6% Bitcoin ($BTC) dividends for holding. We have Buybacks, Daily Burns and Daily Lotteries that gives away $BTC.

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

BABYTOKEN.addLiquidity(uint256,uint256) (#3017-3030) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#3022-3029)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BABYTOKEN._transfer(address,address,uint256) (#2856-2944):
External calls:
- swapAndSendToFee(marketingTokens) (#2889)
- IERC20(rewardToken).transfer(_marketingWalletAddress,newBalance) (#2955)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#3008-3014)
- swapAndLiquify(swapTokens) (#2894)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#3022-3029)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2990-2996)
- swapAndSendDividends(sellTokens) (#2897)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (#3035-3038)
- dividendTracker.distributeCAKEDividends(dividends) (#3041)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#3008-3014)
External calls sending eth:
- swapAndLiquify(swapTokens) (#2894)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#3022-3029)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2916)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#1413)
- _balances[recipient] = _balances[recipient].add(amount) (#1414)
- super._transfer(from,to,amount) (#2919)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#1413)
- _balances[recipient] = _balances[recipient].add(amount) (#1414)
- swapping = false (#2899)
Apply the check-effects-interactions pattern.

Additional information: link

OwnableUpgradeable.__gap (#1654) shadows:
- ContextUpgradeable.__gap (#892)
Remove the state variable shadowing.

Additional information: link

BABYTOKEN.swapAndSendToFee(uint256) (#2946-2956) ignores return value by IERC20(rewardToken).transfer(_marketingWalletAddress,newBalance) (#2955)
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.


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.

Reentrancy in BABYTOKEN.updateDividendTracker(address) (#2638-2661):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#2653)
- newDividendTracker.excludeFromDividends(address(this)) (#2654)
- newDividendTracker.excludeFromDividends(owner()) (#2655)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#2656)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#2660)
Apply the check-effects-interactions pattern.

Additional information: link

BABYTOKEN._transfer(address,address,uint256).lastProcessedIndex (#2932) 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

BABYTOKEN.addLiquidity(uint256,uint256) (#3017-3030) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#3022-3029)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (#2418) shadows:
- OwnableUpgradeable._owner (#1600) (state variable)
Rename the local variables that shadow another component.

Additional information: link

BABYTOKEN.setMarketingFee(uint256) (#2710-2713) should emit an event for:
- marketingFee = value (#2711)
- totalFees = tokenRewardsFee.add(liquidityFee).add(marketingFee) (#2712)
Emit an event for critical parameter changes.

Additional information: link

BABYTOKEN.setMarketingWallet(address).wallet (#2696) lacks a zero-check on :
- _marketingWalletAddress = wallet (#2697)
Check that the address is not zero.

Additional information: link

Variable 'BABYTOKEN._transfer(address,address,uint256).claims (#2931)' in BABYTOKEN._transfer(address,address,uint256) (#2856-2944) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2934-2941)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in BABYTOKEN.updateUniswapV2Router(address) (#2663-2673):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#2670-2671)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#2672)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BABYTOKEN.updateDividendTracker(address) (#2638-2661):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#2653)
- newDividendTracker.excludeFromDividends(address(this)) (#2654)
- newDividendTracker.excludeFromDividends(owner()) (#2655)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#2656)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#2658)
Apply the check-effects-interactions pattern.

Additional information: link

BABYTOKENDividendTracker.canAutoClaim(uint256) (#3202-3208) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#3203)
- block.timestamp.sub(lastClaimTime) >= claimWait (#3207)
Avoid relying on block.timestamp.

Additional information: link

Clones.predictDeterministicAddress(address,bytes32,address) (#1716-1728) uses assembly
- INLINE ASM (#1718-1727)
Do not use evm assembly.

Additional information: link

SafeMathUpgradeable.trySub(uint256,uint256) (#1011-1014) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in AddressUpgradeable.functionStaticCall(address,bytes,string) (#774-780):
- (success,returndata) = target.staticcall(data) (#778)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter BABYTOKENDividendTracker.getAccount(address)._account (#3130) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#889)" inContextUpgradeable (#877-893)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#2358) is too similar to BABYTOKENDividendTracker.getAccount(address).withdrawableDividends (#3137)
Prevent variables from having similar names.

Additional information: link

BABYTOKEN.slitherConstructorVariables() (#2493-3045) uses literals with too many digits:
- gasForProcessing = 300000 (#2518)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

OwnableUpgradeable.__gap (#1654) is never used in BABYTOKENDividendTracker (#3047-3297)
Remove unused state variables.

Additional information: link

process(uint256) should be declared external:
- BABYTOKENDividendTracker.process(uint256) (#3227-3279)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Twitter account link seems to be invalid


Telegram account has relatively few subscribers


Unable to find Discord account


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


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

Price for KBTC