Royal BET Token Logo

RBET [Royal BET] Token

About RBET

Listings

Token 2 years

Description

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Reentrancy in RBET._transfer(address,address,uint256) (#642-693):
External calls:
- swapAndLiquify(contractTokenBalance) (#663)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#710-716)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#663)
- recipient.transfer(amount) (#959)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#838)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#755)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#744)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#745)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#768)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#780)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#757)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#769)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#782)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _rTotal = _rTotal.sub(rFee).sub(rBurn) (#789)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#840)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#767)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#779)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#756)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#781)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _tTotal = _tTotal.sub(tBurn) (#792)
Apply the check-effects-interactions pattern.

Additional information: link


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

RBET._approve(address,address,uint256).owner (#634) shadows:
- Ownable.owner() (#165-167) (function)
Rename the local variables that shadow another component.

Additional information: link

RBET.setNumTokensSellToAddToLiquidity(uint256) (#933-935) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#934)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in RBET.transferFrom(address,address,uint256) (#547-551):
External calls:
- _transfer(sender,recipient,amount) (#548)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#710-716)
External calls sending eth:
- _transfer(sender,recipient,amount) (#548)
- recipient.transfer(amount) (#959)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#549)
- _allowances[owner][spender] = amount (#638)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in RBET.transferFrom(address,address,uint256) (#547-551):
External calls:
- _transfer(sender,recipient,amount) (#548)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#710-716)
External calls sending eth:
- _transfer(sender,recipient,amount) (#548)
- recipient.transfer(amount) (#959)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#639)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#549)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#206-211) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked) (#208)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#132-149) uses assembly
- INLINE ASM (#141-144)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#87-90) is never used and should be removed
Remove unused functions.

Additional information: link

RBET._previousRbBoostAndMarketingFee (#460) is set pre-construction with a non-constant function or state variable:
- _rbBoostAndMarketingFee
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

Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#132-149):
- (success,returndata) = target.call{value: weiValue}(data) (#135)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable RBET._maxTxAmount (#470) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in RBET.transferFrom(address,address,uint256) (#547-551):
External calls:
- _transfer(sender,recipient,amount) (#548)
- recipient.transfer(amount) (#959)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#549)
- _allowances[owner][spender] = amount (#638)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#639)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#549)
Apply the check-effects-interactions pattern.

Additional information: link

Variable RBET._transferBothExcluded(address,address,uint256).rTransferAmount (#777) is too similar to RBET._transferFromExcluded(address,address,uint256).tTransferAmount (#765)
Prevent variables from having similar names.

Additional information: link

RBET._balances (#430) is never used in RBET (#426-988)
Remove unused state variables.

Additional information: link

RBET.routerAddressForPancake (#481) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

changeRouterVersion(address) should be declared external:
- RBET.changeRouterVersion(address) (#942-955)
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.


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


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 was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinHunt, CoinGecko, CoinMarketCap


Unable to find code repository for the project


Young tokens have high risks of price dump / death


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


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


Token has no active CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for RBET