Telebets Token Logo

TLB [Telebets] Token

About TLB

Listings

Not Found
Token 21 months
white paper

Play Roulette and Jackpot on Telegram!, a unique Play2Earn Game Powered by BSC & Telegram.

Social

Laser Scorebeta Last Audit: 26 April 2022

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

Anti-Scam

Links

Telebets.swapAndLiquify(uint256) (#1031-1048) sends eth to arbitrary user
Dangerous calls:
- _marketingWalletAddress.transfer(bnbForMarketing) (#1046)
Telebets.addLiquidity(uint256,uint256) (#1085-1100) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1091-1098)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

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...)

Reentrancy in Telebets._transfer(address,address,uint256) (#965-1028):
External calls:
- swapAndLiquify(swapTokens) (#990)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1091-1098)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- swapAndSendDividends(sellTokens) (#993)
- success = IBEP20(BUSD).transfer(address(dividendTracker),dividends) (#1105)
- dividendTracker.distributeBUSDDividends(dividends) (#1108)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1076-1082)
External calls sending eth:
- swapAndLiquify(swapTokens) (#990)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1091-1098)
- _marketingWalletAddress.transfer(bnbForMarketing) (#1046)
- _buybackWalletAddress.transfer(bnbForBuyback) (#1047)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1010)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#260)
- _balances[recipient] = _balances[recipient].add(amount) (#261)
- super._transfer(from,to,amount) (#1014)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#260)
- _balances[recipient] = _balances[recipient].add(amount) (#261)
- swapping = false (#994)
Apply the check-effects-interactions pattern.

Additional information: link

Telebets._totalSupply (#725) shadows:
- BEP20._totalSupply (#170)
Remove the state variable shadowing.

Additional information: link

Telebets.recoverBEP20Tokens(address,uint256) (#951-956) ignores return value by IBEP20(_token).transfer(owner(),_amount) (#955)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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)

Telebets.updateGasForProcessing(uint256) (#867-872) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,Telebets: gasForProcessing must be between 200,000 and 500,000) (#868)
Telebets.slitherConstructorVariables() (#711-1193) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#721)
Telebets.slitherConstructorVariables() (#711-1193) uses literals with too many digits:
- gasForProcessing = 300000 (#739)
Telebets.slitherConstructorVariables() (#711-1193) uses literals with too many digits:
- _amountDueForSaleLimit = _totalSupply.div(1000000) (#1130)
TelebetsDividendTracker.getAccountAtIndex(uint256) (#1300-1317) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1311)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#121) is never used in SafeMathInt (#119-155)
Remove unused state variables.

Additional information: link

Telebets._buybackWalletAddress (#737) should be constant
Telebets._totalSupply (#725) should be constant
Telebets.deadWallet (#721) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#51-54)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#56-60)
name() should be declared external:
- BEP20.name() (#182-184)
symbol() should be declared external:
- BEP20.symbol() (#190-192)
decimals() should be declared external:
- BEP20.decimals() (#194-196)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (#213-216)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (#218-220)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (#222-225)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (#227-235)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (#238-241)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (#244-247)
distributeBUSDDividends(uint256) should be declared external:
- DividendPayingToken.distributeBUSDDividends(uint256) (#346-357)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#359-361)
- TelebetsDividendTracker.withdrawDividend() (#1224-1226)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#383-385)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#392-394)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#447-449)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#451-456)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#458-460)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#464-466)
updateDividendTracker(address) should be declared external:
- Telebets.updateDividendTracker(address) (#786-797)
updateUniswapV2Router(address) should be declared external:
- Telebets.updateUniswapV2Router(address) (#799-806)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- Telebets.excludeMultipleAccountsFromFees(address[],bool) (#814-819)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- Telebets.setAutomatedMarketMakerPair(address,bool) (#850-853)
updateGasForProcessing(uint256) should be declared external:
- Telebets.updateGasForProcessing(uint256) (#867-872)
isExcludedFromFees(address) should be declared external:
- Telebets.isExcludedFromFees(address) (#891-893)
withdrawableDividendOf(address) should be declared external:
- Telebets.withdrawableDividendOf(address) (#895-897)
dividendTokenBalanceOf(address) should be declared external:
- Telebets.dividendTokenBalanceOf(address) (#899-901)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Telebets.setSwapAndLiquifyEnabled(bool) (#1122-1126)
getAccountAtIndex(uint256) should be declared external:
- TelebetsDividendTracker.getAccountAtIndex(uint256) (#1300-1317)
process(uint256) should be declared external:
- TelebetsDividendTracker.process(uint256) (#1344-1389)
Use the external attribute for functions never called from the contract.

Additional information: link

Telebets.slitherConstructorVariables() (#711-1193) performs a multiplication on the result of a division:
-_walletHoldingMaxLimit = _totalSupply.div(100).mul(2) (#1129)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#364-380):
External calls:
- success = IBEP20(BUSD).transfer(user,_withdrawableDividend) (#369)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#372)
Reentrancy in Telebets.updateDividendTracker(address) (#786-797):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#791)
- newDividendTracker.excludeFromDividends(address(this)) (#792)
- newDividendTracker.excludeFromDividends(owner()) (#793)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#794)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#796)
Apply the check-effects-interactions pattern.

Additional information: link

Telebets._transfer(address,address,uint256).iterations (#1021) is a local variable never initialized
Telebets._transfer(address,address,uint256).claims (#1021) is a local variable never initialized
Telebets._transfer(address,address,uint256).lastProcessedIndex (#1021) 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

Telebets.claim() (#938-940) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#939)
Telebets._transfer(address,address,uint256) (#965-1028) ignores return value by dividendTracker.process(gas) (#1021-1026)
Telebets.addLiquidity(uint256,uint256) (#1085-1100) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1091-1098)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (#341) shadows:
- BEP20._name (#171) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#341) shadows:
- BEP20._symbol (#172) (state variable)
DividendPayingToken.dividendOf(address)._owner (#383) shadows:
- Ownable._owner (#34) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#388) shadows:
- Ownable._owner (#34) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#392) shadows:
- Ownable._owner (#34) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#396) shadows:
- Ownable._owner (#34) (state variable)
Rename the local variables that shadow another component.

Additional information: link

Telebets.setBUSDRewardsFee(uint256) (#825-829) should emit an event for:
- BUSDRewardsFee = value (#826)
- totalFees = BUSDRewardsFee.add(liquidityFee).add(marketingFee).add(buybackFee) (#827)
Telebets.setLiquidityFee(uint256) (#831-835) should emit an event for:
- liquidityFee = value (#832)
- totalFees = BUSDRewardsFee.add(liquidityFee).add(marketingFee).add(buybackFee) (#833)
Telebets.setMarketingFee(uint256) (#837-841) should emit an event for:
- marketingFee = value (#838)
- totalFees = BUSDRewardsFee.add(liquidityFee).add(marketingFee).add(buybackFee) (#839)
Telebets.setBuybackFee(uint256) (#844-848) should emit an event for:
- buybackFee = value (#845)
- totalFees = BUSDRewardsFee.add(liquidityFee).add(marketingFee).add(buybackFee) (#846)
Telebets.setSwapTokensAtAmount(uint256) (#882-885) should emit an event for:
- swapTokensAtAmount = _value (#884)
Telebets.setMaxTxAmount(uint256) (#1113-1116) should emit an event for:
- _maxTxAmount = _amount (#1115)
Telebets.updateMaxAllowedSalePercentage(uint256) (#1170-1173) should emit an event for:
- maxAllowedSalePercentage = _percent (#1172)
Telebets.setWalletMaxHoldingLimit(uint256) (#1181-1184) should emit an event for:
- _walletHoldingMaxLimit = _amount (#1183)
Telebets.setAmountDueForSaleLimit(uint256) (#1187-1190) should emit an event for:
- _amountDueForSaleLimit = _amount (#1189)
Emit an event for critical parameter changes.

Additional information: link

Telebets.updateUniswapV2Router(address)._uniswapV2Pair (#803-804) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#805)
Telebets.setMarketingWallet(address).wallet (#821) lacks a zero-check on :
- _marketingWalletAddress = wallet (#822)
Check that the address is not zero.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (#364-380) has external calls inside a loop: success = IBEP20(BUSD).transfer(user,_withdrawableDividend) (#369)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'Telebets._transfer(address,address,uint256).claims (#1021)' in Telebets._transfer(address,address,uint256) (#965-1028) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1022)
Variable 'Telebets._transfer(address,address,uint256).lastProcessedIndex (#1021)' in Telebets._transfer(address,address,uint256) (#965-1028) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1022)
Variable 'Telebets._transfer(address,address,uint256).iterations (#1021)' in Telebets._transfer(address,address,uint256) (#965-1028) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1022)
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 Telebets._transfer(address,address,uint256) (#965-1028):
External calls:
- swapAndLiquify(swapTokens) (#990)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1091-1098)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- swapAndSendDividends(sellTokens) (#993)
- success = IBEP20(BUSD).transfer(address(dividendTracker),dividends) (#1105)
- dividendTracker.distributeBUSDDividends(dividends) (#1108)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1076-1082)
External calls sending eth:
- swapAndLiquify(swapTokens) (#990)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1091-1098)
- _marketingWalletAddress.transfer(bnbForMarketing) (#1046)
- _buybackWalletAddress.transfer(bnbForBuyback) (#1047)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#993)
- _allowances[owner][spender] = amount (#296)
Reentrancy in Telebets.constructor() (#754-781):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#759-760)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#762)
- uniswapV2Router = _uniswapV2Router (#761)
Reentrancy in Telebets.constructor() (#754-781):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#759-760)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#763)
- dividendTracker.excludeFromDividends(pair) (#861)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#765)
- dividendTracker.excludeFromDividends(address(this)) (#766)
- dividendTracker.excludeFromDividends(owner()) (#767)
- dividendTracker.excludeFromDividends(deadWallet) (#768)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#769)
State variables written after the call(s):
- _mint(owner(),_totalSupply) (#780)
- _balances[account] = _balances[account].add(amount) (#272)
- excludeFromFees(owner(),true) (#771)
- _isExcludedFromFees[account] = excluded (#810)
- excludeFromFees(address(this),true) (#772)
- _isExcludedFromFees[account] = excluded (#810)
- excludeWalletsFromWhales() (#779)
- _isExcludedFromWhale[owner()] = true (#1138)
- _isExcludedFromWhale[address(this)] = true (#1139)
- _isExcludedFromWhale[address(0)] = true (#1140)
- _isExcludedFromWhale[uniswapV2Pair] = true (#1141)
- _mint(owner(),_totalSupply) (#780)
- _totalSupply = _totalSupply.add(amount) (#271)
Reentrancy in TelebetsDividendTracker.processAccount(address,bool) (#1393-1403):
External calls:
- amount = _withdrawDividendOfUser(account) (#1394)
- success = IBEP20(BUSD).transfer(user,_withdrawableDividend) (#369)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1397)
Reentrancy in Telebets.swapAndLiquify(uint256) (#1031-1048):
External calls:
- swapTokensForEth(swapableTokens) (#1037)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- addLiquidity(halfLiquidityTokens,bnbForLiquidity) (#1042)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1091-1098)
External calls sending eth:
- addLiquidity(halfLiquidityTokens,bnbForLiquidity) (#1042)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1091-1098)
State variables written after the call(s):
- addLiquidity(halfLiquidityTokens,bnbForLiquidity) (#1042)
- _allowances[owner][spender] = amount (#296)
Reentrancy in Telebets.updateUniswapV2Router(address) (#799-806):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#803-804)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#805)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Telebets._setAutomatedMarketMakerPair(address,bool) (#856-864):
External calls:
- dividendTracker.excludeFromDividends(pair) (#861)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#863)
Reentrancy in Telebets._transfer(address,address,uint256) (#965-1028):
External calls:
- swapAndLiquify(swapTokens) (#990)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1091-1098)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- swapAndSendDividends(sellTokens) (#993)
- success = IBEP20(BUSD).transfer(address(dividendTracker),dividends) (#1105)
- dividendTracker.distributeBUSDDividends(dividends) (#1108)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1076-1082)
External calls sending eth:
- swapAndLiquify(swapTokens) (#990)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1091-1098)
- _marketingWalletAddress.transfer(bnbForMarketing) (#1046)
- _buybackWalletAddress.transfer(bnbForBuyback) (#1047)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#297)
- swapAndSendDividends(sellTokens) (#993)
- SendDividends(tokens,dividends) (#1109)
- swapAndSendDividends(sellTokens) (#993)
- Transfer(sender,recipient,amount) (#262)
- super._transfer(from,to,amount) (#1014)
- Transfer(sender,recipient,amount) (#262)
- super._transfer(from,address(this),fees) (#1010)
Reentrancy in Telebets._transfer(address,address,uint256) (#965-1028):
External calls:
- swapAndLiquify(swapTokens) (#990)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1091-1098)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- swapAndSendDividends(sellTokens) (#993)
- success = IBEP20(BUSD).transfer(address(dividendTracker),dividends) (#1105)
- dividendTracker.distributeBUSDDividends(dividends) (#1108)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1076-1082)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1015)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1016)
- dividendTracker.process(gas) (#1021-1026)
External calls sending eth:
- swapAndLiquify(swapTokens) (#990)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1091-1098)
- _marketingWalletAddress.transfer(bnbForMarketing) (#1046)
- _buybackWalletAddress.transfer(bnbForBuyback) (#1047)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1022)
Reentrancy in Telebets.constructor() (#754-781):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#759-760)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#763)
- dividendTracker.excludeFromDividends(pair) (#861)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#863)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#763)
Reentrancy in Telebets.constructor() (#754-781):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#759-760)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#763)
- dividendTracker.excludeFromDividends(pair) (#861)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#765)
- dividendTracker.excludeFromDividends(address(this)) (#766)
- dividendTracker.excludeFromDividends(owner()) (#767)
- dividendTracker.excludeFromDividends(deadWallet) (#768)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#769)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#811)
- excludeFromFees(address(this),true) (#772)
- ExcludeFromFees(account,excluded) (#811)
- excludeFromFees(owner(),true) (#771)
- Transfer(address(0),account,amount) (#273)
- _mint(owner(),_totalSupply) (#780)
Reentrancy in TelebetsDividendTracker.processAccount(address,bool) (#1393-1403):
External calls:
- amount = _withdrawDividendOfUser(account) (#1394)
- success = IBEP20(BUSD).transfer(user,_withdrawableDividend) (#369)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1398)
Reentrancy in Telebets.processDividendTracker(uint256) (#933-936):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#934)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#935)
Reentrancy in Telebets.swapAndLiquify(uint256) (#1031-1048):
External calls:
- swapTokensForEth(swapableTokens) (#1037)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- addLiquidity(halfLiquidityTokens,bnbForLiquidity) (#1042)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1091-1098)
External calls sending eth:
- addLiquidity(halfLiquidityTokens,bnbForLiquidity) (#1042)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1091-1098)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#297)
- addLiquidity(halfLiquidityTokens,bnbForLiquidity) (#1042)
- SwapAndLiquify(halfLiquidityTokens,bnbForLiquidity,halfLiquidityTokens) (#1043)
Reentrancy in Telebets.swapAndSendDividends(uint256) (#1102-1111):
External calls:
- swapTokensForBUSD(tokens) (#1103)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1076-1082)
- success = IBEP20(BUSD).transfer(address(dividendTracker),dividends) (#1105)
- dividendTracker.distributeBUSDDividends(dividends) (#1108)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (#1109)
Reentrancy in Telebets.updateDividendTracker(address) (#786-797):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#791)
- newDividendTracker.excludeFromDividends(address(this)) (#792)
- newDividendTracker.excludeFromDividends(owner()) (#793)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#794)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#795)
Apply the check-effects-interactions pattern.

Additional information: link

TelebetsDividendTracker.getAccount(address) (#1255-1298) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1295-1297)
TelebetsDividendTracker.canAutoClaim(uint256) (#1319-1325) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1320)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1324)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#27-30) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#401-407) is never used and should be removed
SafeMath.mod(uint256,uint256) (#108-110) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#113-116) is never used and should be removed
SafeMathInt.abs(int256) (#146-149) is never used and should be removed
SafeMathInt.div(int256,int256) (#129-132) is never used and should be removed
SafeMathInt.mul(int256,int256) (#122-127) is never used and should be removed
Remove unused functions.

Additional information: link

Telebets._maxTxAmount (#727) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(2).div(100)
Telebets.totalFees (#734) is set pre-construction with a non-constant function or state variable:
- BUSDRewardsFee.add(liquidityFee).add(marketingFee).add(buybackFee)
Telebets._walletHoldingMaxLimit (#1129) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(100).mul(2)
Telebets._amountDueForSaleLimit (#1130) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(1000000)
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

Parameter DividendPayingToken.dividendOf(address)._owner (#383) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#388) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#392) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#396) is not in mixedCase
Variable DividendPayingToken.BUSD (#333) is not in mixedCase
Constant DividendPayingToken.magnitude (#334) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Router01.WETH() (#502) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#659) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#660) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#667) is not in mixedCase
Parameter LockToken.includeToWhiteList(address[])._users (#704) is not in mixedCase
Parameter Telebets.setSwapTokensAtAmount(uint256)._value (#882) is not in mixedCase
Parameter Telebets.recoverBEP20Tokens(address,uint256)._token (#951) is not in mixedCase
Parameter Telebets.recoverBEP20Tokens(address,uint256)._amount (#951) is not in mixedCase
Parameter Telebets.recoverBNB(uint256)._amount (#959) is not in mixedCase
Parameter Telebets.setMaxTxAmount(uint256)._amount (#1113) is not in mixedCase
Parameter Telebets.setSwapAndLiquifyEnabled(bool)._enabled (#1122) is not in mixedCase
Parameter Telebets.updateMaxAllowedSalePercentage(uint256)._percent (#1170) is not in mixedCase
Parameter Telebets.setExcludedFromWhale(address,bool)._enabled (#1176) is not in mixedCase
Parameter Telebets.setWalletMaxHoldingLimit(uint256)._amount (#1181) is not in mixedCase
Parameter Telebets.setAmountDueForSaleLimit(uint256)._amount (#1187) is not in mixedCase
Variable Telebets._totalSupply (#725) is not in mixedCase
Variable Telebets.BUSD (#723) is not in mixedCase
Variable Telebets._maxTxAmount (#727) is not in mixedCase
Variable Telebets.BUSDRewardsFee (#729) is not in mixedCase
Variable Telebets._marketingWalletAddress (#736) is not in mixedCase
Variable Telebets._buybackWalletAddress (#737) is not in mixedCase
Variable Telebets._walletHoldingMaxLimit (#1129) is not in mixedCase
Variable Telebets._amountDueForSaleLimit (#1130) is not in mixedCase
Parameter TelebetsDividendTracker.getAccount(address)._account (#1255) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#28)" inContext (#22-31)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in Telebets._transfer(address,address,uint256) (#965-1028):
External calls:
- swapAndLiquify(swapTokens) (#990)
- _marketingWalletAddress.transfer(bnbForMarketing) (#1046)
- _buybackWalletAddress.transfer(bnbForBuyback) (#1047)
External calls sending eth:
- swapAndLiquify(swapTokens) (#990)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1091-1098)
- _marketingWalletAddress.transfer(bnbForMarketing) (#1046)
- _buybackWalletAddress.transfer(bnbForBuyback) (#1047)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#993)
- _allowances[owner][spender] = amount (#296)
- super._transfer(from,address(this),fees) (#1010)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#260)
- _balances[recipient] = _balances[recipient].add(amount) (#261)
- super._transfer(from,to,amount) (#1014)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#260)
- _balances[recipient] = _balances[recipient].add(amount) (#261)
- swapping = false (#994)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#297)
- swapAndSendDividends(sellTokens) (#993)
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1022)
- SendDividends(tokens,dividends) (#1109)
- swapAndSendDividends(sellTokens) (#993)
- Transfer(sender,recipient,amount) (#262)
- super._transfer(from,to,amount) (#1014)
- Transfer(sender,recipient,amount) (#262)
- super._transfer(from,address(this),fees) (#1010)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#506) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#507)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#365) is too similar to TelebetsDividendTracker.getAccount(address).withdrawableDividends (#1260)
Prevent variables from having similar names.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is low.


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


Token is deployed only at one blockchain


Unable to find Youtube account


Unable to find Discord account


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


Unable to find code repository for the project


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

News for TLB