BeeTeeCee Token Logo

$BTC [BeeTeeCee] Token

About $BTC

Listings

Not Found
Token 2 years

Website

Not Found

BeeTeeCee, the only BTCB rewards token that will bring you to the moon🚀Completely safe, brought to you by two known devs in the crypto community✅

-Tired of having redistributions in the same token? Do you want something with a little more variety? Perhaps you've missed a few gems and you are looking for a safe place to invest? You've come to the right place!

📈 BeeTeeCee (#BTC) is here to create the most SOLID project!!!

📌 A new token has just launched on the Binance Smart Chain, $BTC has an actively growing community!

➡️ Our marketing plan; To deliver the best community reward token in BSC, our marketing manager has planned the most accurate schedule to ensure the organic growth of our community. Join our Telegram group and watch the results of our campaign. LET’S GET SOME MONEY

▫️ We’ve got based devs that gave conducted a range of successful projects before and knows how to guide a simple project with all the right fundamentals to moonshot success. Join now and be early boys. LET'S GOOOO!!

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token seems to be anonymous. As long as we are unable to find website score is limited.

BeeTeeCee.addLiquidity(uint256,uint256) (#1710-1725) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1716-1723)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BeeTeeCee._transfer(address,address,uint256) (#1555-1635):
External calls:
- swapAndSendToFee(marketingTokens) (#1591)
- IERC20(BTCB).transfer(_marketingWalletAddress,newBalance) (#1643)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1701-1707)
- swapAndLiquify(swapTokens) (#1594)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1716-1723)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1681-1687)
- swapAndSendDividends(sellTokens) (#1597)
- success = IERC20(BTCB).transfer(address(dividendTracker),dividends) (#1730)
- dividendTracker.distributeBTCBDividends(dividends) (#1733)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1701-1707)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1594)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1716-1723)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1617)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#1015)
- _balances[recipient] = _balances[recipient].add(amount) (#1016)
- super._transfer(from,to,amount) (#1620)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#1015)
- _balances[recipient] = _balances[recipient].add(amount) (#1016)
- swapping = false (#1599)
Apply the check-effects-interactions pattern.

Additional information: link

BeeTeeCee.swapAndSendToFee(uint256) (#1637-1644) ignores return value by IERC20(BTCB).transfer(_marketingWalletAddress,newBalance) (#1643)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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


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.

Variable 'BeeTeeCee._transfer(address,address,uint256).lastProcessedIndex (#1628)' in BeeTeeCee._transfer(address,address,uint256) (#1555-1635) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1629)
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 BeeTeeCee.updateUniswapV2Router(address) (#1400-1407):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1404-1405)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1406)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BeeTeeCee.updateDividendTracker(address) (#1383-1398):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1390)
- newDividendTracker.excludeFromDividends(address(this)) (#1391)
- newDividendTracker.excludeFromDividends(owner()) (#1392)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1393)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1397)
Apply the check-effects-interactions pattern.

Additional information: link

BeeTeeCee._transfer(address,address,uint256).iterations (#1628) 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

BeeTeeCee.addLiquidity(uint256,uint256) (#1710-1725) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1716-1723)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (#1217) shadows:
- Ownable._owner (#434) (state variable)
Rename the local variables that shadow another component.

Additional information: link

BeeTeeCee.setMaxWalletBalance(uint256) (#1448-1450) should emit an event for:
- maxWalletBalance = amount * (10 ** 18) (#1449)
Emit an event for critical parameter changes.

Additional information: link

BeeTeeCee.setMarketingWallet(address).wallet (#1424) lacks a zero-check on :
- _marketingWalletAddress = wallet (#1425)
Check that the address is not zero.

Additional information: link

Reentrancy in BeeTeeCee.updateDividendTracker(address) (#1383-1398):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1390)
- newDividendTracker.excludeFromDividends(address(this)) (#1391)
- newDividendTracker.excludeFromDividends(owner()) (#1392)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1393)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1395)
Apply the check-effects-interactions pattern.

Additional information: link

BeeTeeCeeDividendTracker.canAutoClaim(uint256) (#1863-1869) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1864)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1868)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.mul(int256,int256) (#731-738) is never used and should be removed
Remove unused functions.

Additional information: link

BeeTeeCee.totalFees (#1296) is set pre-construction with a non-constant function or state variable:
- BTCBRewardsFee.add(liquidityFee).add(marketingFee)
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.6.2 (#1270) allows old versions
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

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

Additional information: link

Redundant expression "this (#40)" inContext (#34-43)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1172) is too similar to BeeTeeCeeDividendTracker.getAccount(address).withdrawableDividends (#1804)
Prevent variables from having similar names.

Additional information: link

BeeTeeCeeDividendTracker.getAccountAtIndex(uint256) (#1844-1861) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1855)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#726) is never used in SafeMathInt (#724-782)
Remove unused state variables.

Additional information: link

DividendPayingToken.BTCB (#1120) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

process(uint256) should be declared external:
- BeeTeeCeeDividendTracker.process(uint256) (#1888-1933)
Use the external attribute for functions never called from the contract.

Additional information: link

Contract ticker ($BTC) 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.

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 Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for $BTC