The Royal Bina team intends to introduce its power generating device to the world by introducing its name, this device can easily charge any type of electric vehicle and the owners of electric vehicles can easily travel long distances.
Reentrancy in RoyalBinaCoin._transfer(address,address,uint256) (#977-999):
External calls:
- swapAndLiquify(contractTokenBalance) (#995)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#995)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#998)
- _liquidityFee = _previousLiquidityFee (#960)
- _liquidityFee = 0 (#953)
- _tokenTransfer(from,to,amount) (#998)
- _marketingFee = _previousmarketingFee (#962)
- _marketingFee = 0 (#954)
- _tokenTransfer(from,to,amount) (#998)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#927)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1153)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurn) (#1146)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#1133)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#870)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1164)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1155)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1165)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1118)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1119)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#872)
- _tokenTransfer(from,to,amount) (#998)
- _rTotal = _rTotal.sub(rFee) (#882)
- _tokenTransfer(from,to,amount) (#998)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#929)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#869)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1163)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1154)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#871)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256) (#1125-1136) performs a multiplication on the result of a division:
-tMarketing = tAmount.div(100).mul(_marketingFee) (#1129)
RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256) (#1138-1149) performs a multiplication on the result of a division:
-tBurn = tAmount.div(100).mul(_burnFee) (#1142)
Consider ordering multiplication before division.
Additional information: link
RoyalBinaCoin.addLiquidity(uint256,uint256) (#1068-1081) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
Ensure that all the return values of the function calls are used.
Additional information: link
RoyalBinaCoin.allowance(address,address).owner (#786) shadows:
- Ownable.owner() (#414-416) (function)
RoyalBinaCoin._approve(address,address,uint256).owner (#969) shadows:
- Ownable.owner() (#414-416) (function)
Rename the local variables that shadow another component.
Additional information: link
RoyalBinaCoin.setFees(uint256,uint256,uint256,uint256) (#1184-1189) should emit an event for:
- _taxFee = taxFee (#1185)
- _liquidityFee = liquidityFee (#1186)
- _marketingFee = marketingFee (#1187)
- _burnFee = burnFee (#1188)
RoyalBinaCoin.setNumTokensSellToAddToLiquidity(uint256) (#1191-1193) should emit an event for:
- numTokensSellToAddToLiquidity = newAmt * (10 ** 18) (#1192)
RoyalBinaCoin.setMaxTxAmount(uint256) (#1195-1198) should emit an event for:
- _maxTxAmount = maxTxAmount * (10 ** 18) (#1197)
Emit an event for critical parameter changes.
Additional information: link
RoyalBinaCoin.setMarketingWallet(address).newWallet (#1180) lacks a zero-check on :
- marketingWallet = newWallet (#1181)
Check that the address is not zero.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#433-436)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#442-446)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#448-450)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#453-458)
unlock() should be declared external:
- Ownable.unlock() (#461-466)
name() should be declared external:
- RoyalBinaCoin.name() (#760-762)
symbol() should be declared external:
- RoyalBinaCoin.symbol() (#764-766)
decimals() should be declared external:
- RoyalBinaCoin.decimals() (#768-770)
totalSupply() should be declared external:
- RoyalBinaCoin.totalSupply() (#772-774)
transfer(address,uint256) should be declared external:
- RoyalBinaCoin.transfer(address,uint256) (#781-784)
allowance(address,address) should be declared external:
- RoyalBinaCoin.allowance(address,address) (#786-788)
approve(address,uint256) should be declared external:
- RoyalBinaCoin.approve(address,uint256) (#790-793)
transferFrom(address,address,uint256) should be declared external:
- RoyalBinaCoin.transferFrom(address,address,uint256) (#795-799)
increaseAllowance(address,uint256) should be declared external:
- RoyalBinaCoin.increaseAllowance(address,uint256) (#801-804)
decreaseAllowance(address,uint256) should be declared external:
- RoyalBinaCoin.decreaseAllowance(address,uint256) (#806-809)
isExcludedFromReward(address) should be declared external:
- RoyalBinaCoin.isExcludedFromReward(address) (#811-813)
totalFees() should be declared external:
- RoyalBinaCoin.totalFees() (#815-817)
deliver(uint256) should be declared external:
- RoyalBinaCoin.deliver(uint256) (#819-826)
reflectionFromToken(uint256,bool) should be declared external:
- RoyalBinaCoin.reflectionFromToken(uint256,bool) (#828-837)
excludeFromReward(address) should be declared external:
- RoyalBinaCoin.excludeFromReward(address) (#845-852)
isExcludedFromFee(address) should be declared external:
- RoyalBinaCoin.isExcludedFromFee(address) (#965-967)
excludeFromFee(address) should be declared external:
- RoyalBinaCoin.excludeFromFee(address) (#1172-1174)
includeInFee(address) should be declared external:
- RoyalBinaCoin.includeInFee(address) (#1176-1178)
setSwapAndLiquifyEnabled(bool) should be declared external:
- RoyalBinaCoin.setSwapAndLiquifyEnabled(bool) (#1200-1203)
Use the external attribute for functions never called from the contract.
Additional information: link
Reentrancy in RoyalBinaCoin._transfer(address,address,uint256) (#977-999):
External calls:
- swapAndLiquify(contractTokenBalance) (#995)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#995)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#998)
- _burnFee = _previousBurnFee (#961)
- _burnFee = 0 (#955)
- _tokenTransfer(from,to,amount) (#998)
- _previousBurnFee = _burnFee (#949)
- _tokenTransfer(from,to,amount) (#998)
- _previousLiquidityFee = _liquidityFee (#948)
- _tokenTransfer(from,to,amount) (#998)
- _previousTaxFee = _taxFee (#947)
- _tokenTransfer(from,to,amount) (#998)
- _previousmarketingFee = _marketingFee (#950)
- _tokenTransfer(from,to,amount) (#998)
- _tFeeTotal = _tFeeTotal.add(tFee) (#883)
- _tokenTransfer(from,to,amount) (#998)
- _taxFee = _previousTaxFee (#959)
- _taxFee = 0 (#952)
Reentrancy in RoyalBinaCoin.constructor() (#741-758):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#747-748)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#754)
- _isExcludedFromFee[address(this)] = true (#755)
- uniswapV2Router = _uniswapV2Router (#751)
Reentrancy in RoyalBinaCoin.swapAndLiquify(uint256) (#1001-1029):
External calls:
- swapTokensForBUSD(tokensForMarketing) (#1007)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
- swapTokensForEth(half) (#1020)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
State variables written after the call(s):
- swapTokensForEth(half) (#1020)
- _allowances[owner][spender] = amount (#973)
Reentrancy in RoyalBinaCoin.swapAndLiquify(uint256) (#1001-1029):
External calls:
- swapTokensForBUSD(tokensForMarketing) (#1007)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
- swapTokensForEth(half) (#1020)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- addLiquidity(otherHalf,newBalance) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1026)
- _allowances[owner][spender] = amount (#973)
Reentrancy in RoyalBinaCoin.transferFrom(address,address,uint256) (#795-799):
External calls:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
External calls sending eth:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#797)
- _allowances[owner][spender] = amount (#973)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in RoyalBinaCoin._transfer(address,address,uint256) (#977-999):
External calls:
- swapAndLiquify(contractTokenBalance) (#995)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#995)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
Event emitted after the call(s):
- Transfer(sender,deadAddress,tBurn) (#1147)
- _tokenTransfer(from,to,amount) (#998)
- Transfer(sender,address(this),tMarketing) (#1134)
- _tokenTransfer(from,to,amount) (#998)
- Transfer(sender,recipient,tTransferAmount) (#1168)
- _tokenTransfer(from,to,amount) (#998)
- Transfer(sender,recipient,tTransferAmount) (#1158)
- _tokenTransfer(from,to,amount) (#998)
- Transfer(sender,recipient,tTransferAmount) (#1122)
- _tokenTransfer(from,to,amount) (#998)
- Transfer(sender,recipient,tTransferAmount) (#875)
- _tokenTransfer(from,to,amount) (#998)
Reentrancy in RoyalBinaCoin.constructor() (#741-758):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#747-748)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#757)
Reentrancy in RoyalBinaCoin.swapAndLiquify(uint256) (#1001-1029):
External calls:
- swapTokensForBUSD(tokensForMarketing) (#1007)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
- swapTokensForEth(half) (#1020)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#974)
- swapTokensForEth(half) (#1020)
Reentrancy in RoyalBinaCoin.swapAndLiquify(uint256) (#1001-1029):
External calls:
- swapTokensForBUSD(tokensForMarketing) (#1007)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
- swapTokensForEth(half) (#1020)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- addLiquidity(otherHalf,newBalance) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1026)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#974)
- addLiquidity(otherHalf,newBalance) (#1026)
- SwapAndLiquify(half,newBalance,otherHalf) (#1028)
Reentrancy in RoyalBinaCoin.transferFrom(address,address,uint256) (#795-799):
External calls:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1059-1065)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#1041-1047)
External calls sending eth:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1073-1080)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#974)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#797)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#461-466) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#463)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#266-275) uses assembly
- INLINE ASM (#273)
Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) uses assembly
- INLINE ASM (#372-375)
Do not use evm assembly.
Additional information: link
RoyalBinaCoin.includeInReward(address) (#854-865) has costly operations inside a loop:
- _excluded.pop() (#861)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) is never used and should be removed
Address.functionCall(address,bytes) (#319-321) is never used and should be removed
Address.functionCall(address,bytes,string) (#329-331) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#344-346) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#354-357) is never used and should be removed
Address.isContract(address) (#266-275) is never used and should be removed
Address.sendValue(address,uint256) (#293-299) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#222-224) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#238-241) is never used and should be removed
Remove unused functions.
Additional information: link
RoyalBinaCoin._rTotal (#696) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
RoyalBinaCoin._previousTaxFee (#704) is set pre-construction with a non-constant function or state variable:
- _taxFee
RoyalBinaCoin._previousLiquidityFee (#707) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
RoyalBinaCoin._previousBurnFee (#710) is set pre-construction with a non-constant function or state variable:
- _burnFee
RoyalBinaCoin._previousmarketingFee (#714) is set pre-construction with a non-constant function or state variable:
- _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
Low level call in Address.sendValue(address,uint256) (#293-299):
- (success) = recipient.call{value: amount}() (#297)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#359-380):
- (success,returndata) = target.call{value: weiValue}(data) (#363)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#505) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#506) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#522) is not in mixedCase
Function IUniswapV2Router01.WETH() (#543) is not in mixedCase
Parameter RoyalBinaCoin.calculateLiquidityFee(uint256)._amount (#932) is not in mixedCase
Parameter RoyalBinaCoin.calculateTaxFee(uint256)._amount (#938) is not in mixedCase
Parameter RoyalBinaCoin.setSwapAndLiquifyEnabled(bool)._enabled (#1200) is not in mixedCase
Variable RoyalBinaCoin._taxFee (#703) is not in mixedCase
Variable RoyalBinaCoin._liquidityFee (#706) is not in mixedCase
Variable RoyalBinaCoin._burnFee (#709) is not in mixedCase
Variable RoyalBinaCoin._marketingFee (#713) is not in mixedCase
Variable RoyalBinaCoin._maxTxAmount (#725) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#548) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#549)
Variable RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to RoyalBinaCoin._getTValues(uint256).tTransferAmount (#895)
Variable RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to RoyalBinaCoin._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable RoyalBinaCoin._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to RoyalBinaCoin._getTValues(uint256).tTransferAmount (#895)
Variable RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to RoyalBinaCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable RoyalBinaCoin._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to RoyalBinaCoin._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable RoyalBinaCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to RoyalBinaCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable RoyalBinaCoin._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to RoyalBinaCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable RoyalBinaCoin._getValues(uint256).rTransferAmount (#888) is too similar to RoyalBinaCoin._getTValues(uint256).tTransferAmount (#895)
Variable RoyalBinaCoin.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to RoyalBinaCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable RoyalBinaCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to RoyalBinaCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable RoyalBinaCoin._getValues(uint256).rTransferAmount (#888) is too similar to RoyalBinaCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to RoyalBinaCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to RoyalBinaCoin._getTValues(uint256).tTransferAmount (#895)
Variable RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to RoyalBinaCoin._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable RoyalBinaCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to RoyalBinaCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable RoyalBinaCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to RoyalBinaCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable RoyalBinaCoin._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to RoyalBinaCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable RoyalBinaCoin.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to RoyalBinaCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to RoyalBinaCoin._getValues(uint256).tTransferAmount (#887)
Variable RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to RoyalBinaCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable RoyalBinaCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to RoyalBinaCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1162)
Variable RoyalBinaCoin._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to RoyalBinaCoin._getValues(uint256).tTransferAmount (#887)
Variable RoyalBinaCoin._getValues(uint256).rTransferAmount (#888) is too similar to RoyalBinaCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable RoyalBinaCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to RoyalBinaCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable RoyalBinaCoin._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to RoyalBinaCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable RoyalBinaCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to RoyalBinaCoin._getTValues(uint256).tTransferAmount (#895)
Variable RoyalBinaCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to RoyalBinaCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable RoyalBinaCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to RoyalBinaCoin._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable RoyalBinaCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to RoyalBinaCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable RoyalBinaCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to RoyalBinaCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable RoyalBinaCoin.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to RoyalBinaCoin._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable RoyalBinaCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to RoyalBinaCoin._getValues(uint256).tTransferAmount (#887)
Variable RoyalBinaCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to RoyalBinaCoin._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to RoyalBinaCoin._getValues(uint256).tTransferAmount (#887)
Variable RoyalBinaCoin.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable RoyalBinaCoin._getValues(uint256).rTransferAmount (#888) is too similar to RoyalBinaCoin._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable RoyalBinaCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable RoyalBinaCoin._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable RoyalBinaCoin._getValues(uint256).rTransferAmount (#888) is too similar to RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable RoyalBinaCoin.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to RoyalBinaCoin._getValues(uint256).tTransferAmount (#887)
Variable RoyalBinaCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to RoyalBinaCoin._getValues(uint256).tTransferAmount (#887)
Variable RoyalBinaCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to RoyalBinaCoin._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable RoyalBinaCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable RoyalBinaCoin._getValues(uint256).rTransferAmount (#888) is too similar to RoyalBinaCoin._getValues(uint256).tTransferAmount (#887)
Variable RoyalBinaCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable RoyalBinaCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to RoyalBinaCoin._getTValues(uint256).tTransferAmount (#895)
Variable RoyalBinaCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to RoyalBinaCoin._getValues(uint256).tTransferAmount (#887)
Variable RoyalBinaCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#903) is too similar to RoyalBinaCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable RoyalBinaCoin.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1138) is too similar to RoyalBinaCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable RoyalBinaCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable RoyalBinaCoin.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to RoyalBinaCoin._getTValues(uint256).tTransferAmount (#895)
Variable RoyalBinaCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to RoyalBinaCoin._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable RoyalBinaCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to RoyalBinaCoin._getTValues(uint256).tTransferAmount (#895)
Variable RoyalBinaCoin._getValues(uint256).rTransferAmount (#888) is too similar to RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable RoyalBinaCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Variable RoyalBinaCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable RoyalBinaCoin.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to RoyalBinaCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable RoyalBinaCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to RoyalBinaCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable RoyalBinaCoin._getValues(uint256).rTransferAmount (#888) is too similar to RoyalBinaCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable RoyalBinaCoin._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to RoyalBinaCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable RoyalBinaCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to RoyalBinaCoin._getValues(uint256).tTransferAmount (#887)
Variable RoyalBinaCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to RoyalBinaCoin._getTValues(uint256).tTransferAmount (#895)
Variable RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1125) is too similar to RoyalBinaCoin.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1125)
Variable RoyalBinaCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to RoyalBinaCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable RoyalBinaCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1162) is too similar to RoyalBinaCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1152)
Variable RoyalBinaCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1152) is too similar to RoyalBinaCoin.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1138)
Prevent variables from having similar names.
Additional information: link
RoyalBinaCoin.slitherConstructorVariables() (#681-1206) uses literals with too many digits:
- _tTotal = 2000000000000 * 10 ** 18 (#695)
RoyalBinaCoin.slitherConstructorVariables() (#681-1206) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#711)
RoyalBinaCoin.slitherConstructorVariables() (#681-1206) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 2000000000000 * 10 ** 18 (#724)
RoyalBinaCoin.slitherConstructorVariables() (#681-1206) uses literals with too many digits:
- _maxTxAmount = 2000000000000 * 10 ** 18 (#725)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
RoyalBinaCoin._decimals (#701) should be constant
RoyalBinaCoin._name (#699) should be constant
RoyalBinaCoin._symbol (#700) should be constant
RoyalBinaCoin._tTotal (#695) should be constant
RoyalBinaCoin.deadAddress (#711) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Unable to find token contract audit
Unable to find KYC or doxxing proof
Unable to find audit link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
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
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
Twitter account has less than 100 followers
Telegram account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account