World Bet Token Token Logo

WBT [World Bet] Token

About WBT

Listings

Token 3 years
CoinGecko 3 years
CoinMarketCap 3 years
[CoinMarketCap] alert: The contract owner may contain the authority to modify the transaction tax. Please exercise caution before taking any action and DYOR
white paper

💹 NEW TRENDING BET TO EARN 💹 🌍 ALL IN ONE FOOTBALL UNIVERSE 🌍 ⚽️World Bet Club is the world's first BSC-based NFT football betting game. Players can participate in betting through Defi in real time and sharing the reward after each match. ✅KYCed with SafuBlock & Audited 🎉Big Partners : NULS (Listed on Binance) , HC Gem Alert ,GTA Ventures, TK Ventures, Chainlink Labs & Huge Marketing 🤖Antibot Trading ⛓Support multiple Chain(BSC Chain, NULS Network) 💰Staking Mechanism 🧩NFT Football Fansclub

Social

Laser Scorebeta Last Audit: 1 September 2022

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


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

WorldBetToken.swapBack() (#734-775) sends eth to arbitrary user
Dangerous calls:
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndReward.mul(treasuryFee).div(_currentFee)}() (#762-765)
- (success,None) = address(rewardReceiver).call{gas: 30000,value: amountETHToTreasuryAndReward.mul(rewardFee).div(_currentFee)}() (#767-772)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in WorldBetToken._transferFrom(address,address,uint256) (#672-704):
External calls:
- addLiquidity() (#682)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#797-803)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,treasuryReceiver,block.timestamp) (#808-815)
- swapBack() (#686)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#748-754)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndReward.mul(treasuryFee).div(_currentFee)}() (#762-765)
- (success,None) = address(rewardReceiver).call{gas: 30000,value: amountETHToTreasuryAndReward.mul(rewardFee).div(_currentFee)}() (#767-772)
External calls sending eth:
- addLiquidity() (#682)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,treasuryReceiver,block.timestamp) (#808-815)
- swapBack() (#686)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndReward.mul(treasuryFee).div(_currentFee)}() (#762-765)
- (success,None) = address(rewardReceiver).call{gas: 30000,value: amountETHToTreasuryAndReward.mul(rewardFee).div(_currentFee)}() (#767-772)
State variables written after the call(s):
- _gonBalances[sender] = _gonBalances[sender].sub(gonAmount) (#690)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonAmountReceived) (#694-696)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#691-693)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(feeAmount) (#724)
- _gonBalances[DEAD] = _gonBalances[DEAD].add(gonAmount.mul(burnFee).div(feeDenominator)) (#726)
- _gonBalances[treasuryReceiver] = _gonBalances[treasuryReceiver].add(gonAmount.mul(liquidityFee).div(feeDenominator)) (#728)
- swapBack() (#686)
- inSwap = true (#592)
- inSwap = false (#594)
Apply the check-effects-interactions pattern.

Additional information: link

WorldBetToken._name (#546) shadows:
- ERC20Detailed._name (#472)
WorldBetToken._symbol (#547) shadows:
- ERC20Detailed._symbol (#473)
WorldBetToken._decimals (#548) shadows:
- ERC20Detailed._decimals (#474)
Remove the state variable shadowing.

Additional information: link


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


Contract ownership is not renounced (belongs to a wallet)


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.

WorldBetToken.swapBack().success (#762) is written in both
(success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndReward.mul(treasuryFee).div(_currentFee)}() (#762-765)
(success,None) = address(rewardReceiver).call{gas: 30000,value: amountETHToTreasuryAndReward.mul(rewardFee).div(_currentFee)}() (#767-772)
Fix or remove the writes.

Additional information: link

WorldBetToken.addLiquidity() (#777-818) ignores return value by router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,treasuryReceiver,block.timestamp) (#808-815)
Ensure that all the return values of the function calls are used.

Additional information: link

WorldBetToken.totalFee (#572) is set pre-construction with a non-constant function or state variable:
- treasuryFee.add(rewardFee).add(liquidityFee).add(burnFee)
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

WorldBetToken.getLiquidityBacking(uint256) (#969-977) performs a multiplication on the result of a division:
-liquidityBalance = _gonBalances[pair].div(_gonsPerFragment) (#974)
-accuracy.mul(liquidityBalance.mul(2)).div(getCirculatingSupply()) (#975-976)
Consider ordering multiplication before division.

Additional information: link

WorldBetToken.setFeeReceivers(address,address)._treasuryReceiver (#937) lacks a zero-check on :
- treasuryReceiver = _treasuryReceiver (#940)
WorldBetToken.setFeeReceivers(address,address)._rewardReceiver (#938) lacks a zero-check on :
- rewardReceiver = _rewardReceiver (#941)
WorldBetToken.setPairAddress(address)._pairAddress (#983) lacks a zero-check on :
- pairAddress = _pairAddress (#984)
Check that the address is not zero.

Additional information: link

Pragma version^0.7.4 (#6) 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

WorldBetToken.slitherConstructorConstantVariables() (#542-1001) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#580)
WorldBetToken.slitherConstructorConstantVariables() (#542-1001) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#581)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#353) is never used in SafeMathInt (#351-385)
Remove unused state variables.

Additional information: link

WorldBetToken.setTaxFee(uint256,uint256,uint256,uint256,uint256) (#944-952) should emit an event for:
- treasuryFee = _treasuryFee (#946)
- rewardFee = _rewardFee (#947)
- burnFee = _burnFee (#948)
- liquidityFee = _liquidityFee (#949)
- sellFee = _sellFee (#950)
- totalFee = treasuryFee.add(rewardFee).add(liquidityFee).add(burnFee) (#951)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in WorldBetToken.addLiquidity() (#777-818):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#797-803)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,treasuryReceiver,block.timestamp) (#808-815)
External calls sending eth:
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,treasuryReceiver,block.timestamp) (#808-815)
State variables written after the call(s):
- _lastAddLiquidityTime = block.timestamp (#817)
Reentrancy in WorldBetToken.constructor() (#608-635):
External calls:
- pair = IPancakeSwapFactory(router.factory()).createPair(router.WETH(),address(this)) (#611-614)
State variables written after the call(s):
- _allowedFragments[address(this)][address(router)] = uint256(- 1) (#619)
- _autoAddLiquidity = true (#628)
- _gonBalances[msg.sender] = TOTAL_GONS (#625)
- _gonsPerFragment = TOTAL_GONS.div(_totalSupply) (#626)
- _isFeeExempt[treasuryReceiver] = true (#629)
- _isFeeExempt[rewardReceiver] = true (#630)
- _isFeeExempt[msg.sender] = true (#631)
- _isFeeExempt[address(this)] = true (#632)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#624)
- pairAddress = pair (#621)
- pairContract = IPancakeSwapPair(pair) (#622)
- rewardReceiver = 0x8A812Ff72E256B32f2CAa3Bb2847C65354f822c7 (#617)
- treasuryReceiver = 0x298565b5027546db94D9e3bf3695cD9cde9F29C1 (#616)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in WorldBetToken._transferFrom(address,address,uint256) (#672-704):
External calls:
- addLiquidity() (#682)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#797-803)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,treasuryReceiver,block.timestamp) (#808-815)
- swapBack() (#686)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#748-754)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndReward.mul(treasuryFee).div(_currentFee)}() (#762-765)
- (success,None) = address(rewardReceiver).call{gas: 30000,value: amountETHToTreasuryAndReward.mul(rewardFee).div(_currentFee)}() (#767-772)
External calls sending eth:
- addLiquidity() (#682)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,treasuryReceiver,block.timestamp) (#808-815)
- swapBack() (#686)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndReward.mul(treasuryFee).div(_currentFee)}() (#762-765)
- (success,None) = address(rewardReceiver).call{gas: 30000,value: amountETHToTreasuryAndReward.mul(rewardFee).div(_currentFee)}() (#767-772)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(_gonsPerFragment)) (#730)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#691-693)
- Transfer(sender,recipient,gonAmountReceived.div(_gonsPerFragment)) (#698-702)
Reentrancy in WorldBetToken.constructor() (#608-635):
External calls:
- pair = IPancakeSwapFactory(router.factory()).createPair(router.WETH(),address(this)) (#611-614)
Event emitted after the call(s):
- Transfer(address(0x0),msg.sender,_totalSupply) (#634)
Apply the check-effects-interactions pattern.

Additional information: link

WorldBetToken.takeFee(address,address,uint256) (#706-732) uses timestamp for comparisons
Dangerous comparisons:
- antiBotEnable && block.timestamp < activeTime (#718)
WorldBetToken.shouldAddLiquidity() (#855-861) uses timestamp for comparisons
Dangerous comparisons:
- _autoAddLiquidity && ! inSwap && msg.sender != pair && block.timestamp >= (_lastAddLiquidityTime + 43200) (#856-860)
WorldBetToken.setEnableAntiBot() (#954-958) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(lastAntiTime == 0,Cannot enable the flag antibot anymore) (#955)
Avoid relying on block.timestamp.

Additional information: link

SafeMath.mod(uint256,uint256) (#436-439) is never used and should be removed
SafeMathInt.abs(int256) (#381-384) is never used and should be removed
SafeMathInt.add(int256,int256) (#375-379) is never used and should be removed
SafeMathInt.div(int256,int256) (#363-367) is never used and should be removed
SafeMathInt.mul(int256,int256) (#355-361) is never used and should be removed
SafeMathInt.sub(int256,int256) (#369-373) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in WorldBetToken.swapBack() (#734-775):
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndReward.mul(treasuryFee).div(_currentFee)}() (#762-765)
- (success,None) = address(rewardReceiver).call{gas: 30000,value: amountETHToTreasuryAndReward.mul(rewardFee).div(_currentFee)}() (#767-772)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakeSwapRouter.WETH() (#41) is not in mixedCase
Function IPancakeSwapPair.DOMAIN_SEPARATOR() (#275) is not in mixedCase
Function IPancakeSwapPair.PERMIT_TYPEHASH() (#277) is not in mixedCase
Function IPancakeSwapPair.MINIMUM_LIQUIDITY() (#308) is not in mixedCase
Parameter WorldBetToken.checkFeeExempt(address)._addr (#917) is not in mixedCase
Parameter WorldBetToken.setFeeReceivers(address,address)._treasuryReceiver (#937) is not in mixedCase
Parameter WorldBetToken.setFeeReceivers(address,address)._rewardReceiver (#938) is not in mixedCase
Parameter WorldBetToken.setTaxFee(uint256,uint256,uint256,uint256,uint256)._treasuryFee (#944) is not in mixedCase
Parameter WorldBetToken.setTaxFee(uint256,uint256,uint256,uint256,uint256)._rewardFee (#944) is not in mixedCase
Parameter WorldBetToken.setTaxFee(uint256,uint256,uint256,uint256,uint256)._burnFee (#944) is not in mixedCase
Parameter WorldBetToken.setTaxFee(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#944) is not in mixedCase
Parameter WorldBetToken.setTaxFee(uint256,uint256,uint256,uint256,uint256)._sellFee (#944) is not in mixedCase
Parameter WorldBetToken.setAutoAddLiquidity(bool)._flag (#960) is not in mixedCase
Parameter WorldBetToken.setWhitelist(address)._addr (#979) is not in mixedCase
Parameter WorldBetToken.setPairAddress(address)._pairAddress (#983) is not in mixedCase
Parameter WorldBetToken.setLP(address)._address (#987) is not in mixedCase
Constant WorldBetToken._name (#546) is not in UPPER_CASE_WITH_UNDERSCORES
Constant WorldBetToken._symbol (#547) is not in UPPER_CASE_WITH_UNDERSCORES
Constant WorldBetToken._decimals (#548) is not in UPPER_CASE_WITH_UNDERSCORES
Variable WorldBetToken._isFeeExempt (#551) is not in mixedCase
Constant WorldBetToken.feeDenominator (#574) is not in UPPER_CASE_WITH_UNDERSCORES
Constant WorldBetToken.antiTime (#577) is not in UPPER_CASE_WITH_UNDERSCORES
Variable WorldBetToken._autoAddLiquidity (#600) is not in mixedCase
Variable WorldBetToken._lastAddLiquidityTime (#601) is not in mixedCase
Variable WorldBetToken._totalSupply (#602) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeSwapRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#46) is too similar to IPancakeSwapRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#47)
Prevent variables from having similar names.

Additional information: link

name() should be declared external:
- ERC20Detailed.name() (#486-488)
symbol() should be declared external:
- ERC20Detailed.symbol() (#490-492)
decimals() should be declared external:
- ERC20Detailed.decimals() (#494-496)
owner() should be declared external:
- Ownable.owner() (#513-515)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#526-529)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#531-533)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 7% buy tax and 7% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity is low.


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


Unable to find Youtube account


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


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


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for WBT

News for WBT