TruBadger Token Logo

TRUBGR [TruBadger] Token

About TRUBGR

Listings

Token 3 years
CoinGecko 3 years
CoinMarketCap 3 years
white paper

We believe that community is the commerce of the future. Imagine a tokenmunity coming together with the singular common focus of increasing the wealth of everyone involved! The blockchain is the perfect mechanism to allow this to happen. The TruBadger tokenomics allows the resources to assemble the best team that can then leverage the collective intelligence, finance, energy, network, and talent of the community and industry experts. We can develop innovations in the crypto and blockchain space and build out improved tools to make integration of the blockchain easier, more efficient, and accessible for all, allowing further expansion of the growth of the cryptoverse.

Laser Scorebeta Last Audit: 30 May 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

Reentrancy in TRBGR._transfer(address,address,uint256) (contracts/TRBGR.sol#437-489):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/TRBGR.sol#468)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TRBGR.sol#537-544)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/TRBGR.sol#523-529)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/TRBGR.sol#468)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TRBGR.sol#537-544)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/TRBGR.sol#484)
- _rOwned[_marketingAddress] = _rOwned[_marketingAddress].add(rMarketingFee) (contracts/TRBGR.sol#363)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/TRBGR.sol#570)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/TRBGR.sol#579)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/TRBGR.sol#590)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/TRBGR.sol#226)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/TRBGR.sol#571)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/TRBGR.sol#581)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/TRBGR.sol#591)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/TRBGR.sol#228)
- _rOwned[_devFeeAddress] = _rOwned[_devFeeAddress].add(rdevFee) (contracts/TRBGR.sol#375)
- _rOwned[_manualBurnAddress] = _rOwned[_manualBurnAddress].add(rmanualBurnFee) (contracts/TRBGR.sol#389)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity.sub(rdevFee).sub(rMarketingFee).sub(rmanualBurnFee)) (contracts/TRBGR.sol#393)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TRBGR.sol#484)
- _rTotal = _rTotal.sub(rFee) (contracts/TRBGR.sol#305)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TRBGR.sol#484)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/TRBGR.sol#225)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/TRBGR.sol#589)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/TRBGR.sol#580)
- _tOwned[_marketingAddress] = _tOwned[_marketingAddress].add(tMarketingFee) (contracts/TRBGR.sol#365)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/TRBGR.sol#227)
- _tOwned[_devFeeAddress] = _tOwned[_devFeeAddress].add(tdevFee) (contracts/TRBGR.sol#377)
- _tOwned[_manualBurnAddress] = _tOwned[_manualBurnAddress].add(tmanualBurnFee) (contracts/TRBGR.sol#391)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity.sub(tdevFee).sub(tMarketingFee).sub(tmanualBurnFee)) (contracts/TRBGR.sol#395)
Apply the check-effects-interactions pattern.

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)

TRBGR._decimals (contracts/TRBGR.sol#31) should be constant
TRBGR._name (contracts/TRBGR.sol#29) should be constant
TRBGR._tTotal (contracts/TRBGR.sol#25) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

TRBGR.includeInReward(address) (contracts/TRBGR.sol#210-221) has costly operations inside a loop:
- _excluded.pop() (contracts/TRBGR.sol#217)
Use a local variable to hold the loop computation result.

Additional information: link

TRBGR.addLiquidity(uint256,uint256) (contracts/TRBGR.sol#532-545) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TRBGR.sol#537-544)
Ensure that all the return values of the function calls are used.

Additional information: link

TRBGR.setTaxFeePercent(uint256) (contracts/TRBGR.sol#242-244) should emit an event for:
- _taxFee = taxFee (contracts/TRBGR.sol#243)
TRBGR.setLiquidityFeePercent(uint256) (contracts/TRBGR.sol#246-248) should emit an event for:
- _liquidityFee = liquidityFee (contracts/TRBGR.sol#247)
TRBGR.setMaxTxPercent(uint256) (contracts/TRBGR.sol#250-254) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (contracts/TRBGR.sol#251-253)
TRBGR.setMaxTxAmount(uint256) (contracts/TRBGR.sol#261-263) should emit an event for:
- _maxTxAmount = amount (contracts/TRBGR.sol#262)
TRBGR.setNumTokensSellToAddToLiquidity(uint256) (contracts/TRBGR.sol#265-267) should emit an event for:
- numTokensSellToAddToLiquidity = amount (contracts/TRBGR.sol#266)
TRBGR.setFeePercents(uint256,uint256,uint256) (contracts/TRBGR.sol#279-287) should emit an event for:
- _manualBurnFee = _newManualBurnFee (contracts/TRBGR.sol#284)
- _devFee = _newDevFee (contracts/TRBGR.sol#285)
- _marketingFee = _newMarketingFee (contracts/TRBGR.sol#286)
Emit an event for critical parameter changes.

Additional information: link

TRBGR.setFeeAddresses(address,address,address)._newManualBurnAddress (contracts/TRBGR.sol#271) lacks a zero-check on :
- _manualBurnAddress = _newManualBurnAddress (contracts/TRBGR.sol#274)
TRBGR.setFeeAddresses(address,address,address)._newDevFeeAddress (contracts/TRBGR.sol#272) lacks a zero-check on :
- _devFeeAddress = _newDevFeeAddress (contracts/TRBGR.sol#275)
TRBGR.setFeeAddresses(address,address,address)._newMarketingAddress (contracts/TRBGR.sol#270) lacks a zero-check on :
- _marketingAddress = _newMarketingAddress (contracts/TRBGR.sol#276)
TRBGR.setOwner(address).newOwner (contracts/TRBGR.sol#290) lacks a zero-check on :
- _owner = newOwner (contracts/TRBGR.sol#292)
Check that the address is not zero.

Additional information: link

Reentrancy in TRBGR._transfer(address,address,uint256) (contracts/TRBGR.sol#437-489):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/TRBGR.sol#468)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TRBGR.sol#537-544)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/TRBGR.sol#523-529)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/TRBGR.sol#468)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TRBGR.sol#537-544)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/TRBGR.sol#484)
- _liquidityFee = _previousLiquidityFee (contracts/TRBGR.sol#422)
- _liquidityFee = 0 (contracts/TRBGR.sol#417)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TRBGR.sol#484)
- _previousLiquidityFee = _liquidityFee (contracts/TRBGR.sol#414)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TRBGR.sol#484)
- _previousTaxFee = _taxFee (contracts/TRBGR.sol#413)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TRBGR.sol#484)
- _tFeeTotal = _tFeeTotal.add(tFee) (contracts/TRBGR.sol#306)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TRBGR.sol#484)
- _taxFee = _previousTaxFee (contracts/TRBGR.sol#421)
- _taxFee = 0 (contracts/TRBGR.sol#416)
- holders += 1 (contracts/TRBGR.sol#480)
- holders -= 1 (contracts/TRBGR.sol#487)
Reentrancy in TRBGR.constructor() (contracts/TRBGR.sol#88-110):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/TRBGR.sol#93-94)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (contracts/TRBGR.sol#100)
- _isExcludedFromFee[_msgSender()] = true (contracts/TRBGR.sol#101)
- _isExcludedFromFee[address(this)] = true (contracts/TRBGR.sol#102)
- uniswapV2Router = _uniswapV2Router (contracts/TRBGR.sol#97)
Reentrancy in TRBGR.swapAndLiquify(uint256) (contracts/TRBGR.sol#491-512):
External calls:
- swapTokensForEth(half) (contracts/TRBGR.sol#503)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/TRBGR.sol#523-529)
- addLiquidity(otherHalf,newBalance) (contracts/TRBGR.sol#509)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TRBGR.sol#537-544)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/TRBGR.sol#509)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TRBGR.sol#537-544)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (contracts/TRBGR.sol#509)
- _allowances[source][spender] = amount (contracts/TRBGR.sol#433)
Reentrancy in TRBGR.transferFrom(address,address,uint256) (contracts/TRBGR.sol#151-155):
External calls:
- _transfer(sender,recipient,amount) (contracts/TRBGR.sol#152)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TRBGR.sol#537-544)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/TRBGR.sol#523-529)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/TRBGR.sol#152)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TRBGR.sol#537-544)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/TRBGR.sol#153)
- _allowances[source][spender] = amount (contracts/TRBGR.sol#433)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in TRBGR._transfer(address,address,uint256) (contracts/TRBGR.sol#437-489):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/TRBGR.sol#468)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TRBGR.sol#537-544)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/TRBGR.sol#523-529)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/TRBGR.sol#468)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TRBGR.sol#537-544)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (contracts/TRBGR.sol#574)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TRBGR.sol#484)
- Transfer(sender,recipient,tTransferAmount) (contracts/TRBGR.sol#594)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TRBGR.sol#484)
- Transfer(sender,recipient,tTransferAmount) (contracts/TRBGR.sol#584)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TRBGR.sol#484)
- Transfer(sender,recipient,tTransferAmount) (contracts/TRBGR.sol#231)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TRBGR.sol#484)
Reentrancy in TRBGR.constructor() (contracts/TRBGR.sol#88-110):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/TRBGR.sol#93-94)
Event emitted after the call(s):
- RoleGranted(role,account,_msgSender()) (contracts/AccessControl.sol#500)
- _setupRole(DEFAULT_ADMIN_ROLE,_msgSender()) (contracts/TRBGR.sol#105)
- RoleGranted(role,account,_msgSender()) (contracts/AccessControl.sol#500)
- _setupRole(OPERATOR_ROLE,_msgSender()) (contracts/TRBGR.sol#107)
- RoleGranted(role,account,_msgSender()) (contracts/AccessControl.sol#500)
- _setupRole(ADMIN_ROLE,_msgSender()) (contracts/TRBGR.sol#106)
- Transfer(address(0),_msgSender(),_tTotal) (contracts/TRBGR.sol#109)
Reentrancy in TRBGR.swapAndLiquify(uint256) (contracts/TRBGR.sol#491-512):
External calls:
- swapTokensForEth(half) (contracts/TRBGR.sol#503)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/TRBGR.sol#523-529)
- addLiquidity(otherHalf,newBalance) (contracts/TRBGR.sol#509)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TRBGR.sol#537-544)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/TRBGR.sol#509)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TRBGR.sol#537-544)
Event emitted after the call(s):
- Approval(source,spender,amount) (contracts/TRBGR.sol#434)
- addLiquidity(otherHalf,newBalance) (contracts/TRBGR.sol#509)
- SwapAndLiquify(half,newBalance,otherHalf) (contracts/TRBGR.sol#511)
Reentrancy in TRBGR.transferFrom(address,address,uint256) (contracts/TRBGR.sol#151-155):
External calls:
- _transfer(sender,recipient,amount) (contracts/TRBGR.sol#152)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TRBGR.sol#537-544)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/TRBGR.sol#523-529)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/TRBGR.sol#152)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TRBGR.sol#537-544)
Event emitted after the call(s):
- Approval(source,spender,amount) (contracts/TRBGR.sol#434)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/TRBGR.sol#153)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (contracts/Libs.sol#459-464) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (contracts/Libs.sol#461)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (contracts/Libs.sol#264-273) uses assembly
- INLINE ASM (contracts/Libs.sol#271)
Address._functionCallWithValue(address,bytes,uint256,string) (contracts/Libs.sol#357-378) uses assembly
- INLINE ASM (contracts/Libs.sol#370-373)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.6.0<0.8.0', '^0.6.12']
- >=0.6.0<0.8.0 (contracts/AccessControl.sol#3)
- ^0.6.12 (contracts/Libs.sol#1)
- ^0.6.12 (contracts/TRBGR.sol#3)
Use one Solidity version.

Additional information: link

AccessControl._setRoleAdmin(bytes32,bytes32) (contracts/AccessControl.sol#493-496) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (contracts/Libs.sol#357-378) is never used and should be removed
Address.functionCall(address,bytes) (contracts/Libs.sol#317-319) is never used and should be removed
Address.functionCall(address,bytes,string) (contracts/Libs.sol#327-329) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (contracts/Libs.sol#342-344) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (contracts/Libs.sol#352-355) is never used and should be removed
Address.isContract(address) (contracts/Libs.sol#264-273) is never used and should be removed
Address.sendValue(address,uint256) (contracts/Libs.sol#291-297) is never used and should be removed
Context._msgData() (contracts/Libs.sol#236-239) is never used and should be removed
EnumerableSet.add(EnumerableSet.Bytes32Set,bytes32) (contracts/AccessControl.sol#149-151) is never used and should be removed
EnumerableSet.add(EnumerableSet.UintSet,uint256) (contracts/AccessControl.sol#258-260) is never used and should be removed
EnumerableSet.at(EnumerableSet.Bytes32Set,uint256) (contracts/AccessControl.sol#187-189) is never used and should be removed
EnumerableSet.at(EnumerableSet.UintSet,uint256) (contracts/AccessControl.sol#296-298) is never used and should be removed
EnumerableSet.contains(EnumerableSet.Bytes32Set,bytes32) (contracts/AccessControl.sol#166-168) is never used and should be removed
EnumerableSet.contains(EnumerableSet.UintSet,uint256) (contracts/AccessControl.sol#275-277) is never used and should be removed
EnumerableSet.length(EnumerableSet.Bytes32Set) (contracts/AccessControl.sol#173-175) is never used and should be removed
EnumerableSet.length(EnumerableSet.UintSet) (contracts/AccessControl.sol#282-284) is never used and should be removed
EnumerableSet.remove(EnumerableSet.Bytes32Set,bytes32) (contracts/AccessControl.sol#159-161) is never used and should be removed
EnumerableSet.remove(EnumerableSet.UintSet,uint256) (contracts/AccessControl.sol#268-270) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/Libs.sol#209-211) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/Libs.sol#225-228) is never used and should be removed
Remove unused functions.

Additional information: link

TRBGR._rTotal (contracts/TRBGR.sol#26) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
TRBGR._previousTaxFee (contracts/TRBGR.sol#34) is set pre-construction with a non-constant function or state variable:
- _taxFee
TRBGR._previousLiquidityFee (contracts/TRBGR.sol#49) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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.0<0.8.0 (contracts/AccessControl.sol#3) is too complex
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

Low level call in Address.sendValue(address,uint256) (contracts/Libs.sol#291-297):
- (success) = recipient.call{value: amount}() (contracts/Libs.sol#295)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (contracts/Libs.sol#357-378):
- (success,returndata) = target.call{value: weiValue}(data) (contracts/Libs.sol#361)
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() (contracts/Libs.sol#503) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (contracts/Libs.sol#504) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (contracts/Libs.sol#521) is not in mixedCase
Function IUniswapV2Router01.WETH() (contracts/Libs.sol#543) is not in mixedCase
Parameter TRBGR.setSwapAndLiquifyEnabled(bool)._enabled (contracts/TRBGR.sol#256) is not in mixedCase
Parameter TRBGR.setFeeAddresses(address,address,address)._newMarketingAddress (contracts/TRBGR.sol#270) is not in mixedCase
Parameter TRBGR.setFeeAddresses(address,address,address)._newManualBurnAddress (contracts/TRBGR.sol#271) is not in mixedCase
Parameter TRBGR.setFeeAddresses(address,address,address)._newDevFeeAddress (contracts/TRBGR.sol#272) is not in mixedCase
Parameter TRBGR.setFeePercents(uint256,uint256,uint256)._newMarketingFee (contracts/TRBGR.sol#280) is not in mixedCase
Parameter TRBGR.setFeePercents(uint256,uint256,uint256)._newManualBurnFee (contracts/TRBGR.sol#281) is not in mixedCase
Parameter TRBGR.setFeePercents(uint256,uint256,uint256)._newDevFee (contracts/TRBGR.sol#282) is not in mixedCase
Parameter TRBGR.calculateTaxFee(uint256)._amount (contracts/TRBGR.sol#398) is not in mixedCase
Parameter TRBGR.calculateLiquidityFee(uint256)._amount (contracts/TRBGR.sol#404) is not in mixedCase
Parameter TRBGR.setSymbol(string)._s (contracts/TRBGR.sol#597) is not in mixedCase
Variable TRBGR._taxFee (contracts/TRBGR.sol#33) is not in mixedCase
Variable TRBGR._manualBurnFee (contracts/TRBGR.sol#36) is not in mixedCase
Variable TRBGR._marketingFee (contracts/TRBGR.sol#37) is not in mixedCase
Variable TRBGR._devFee (contracts/TRBGR.sol#38) is not in mixedCase
Variable TRBGR._manualBurnAddress (contracts/TRBGR.sol#40) is not in mixedCase
Variable TRBGR._marketingAddress (contracts/TRBGR.sol#41) is not in mixedCase
Variable TRBGR._devFeeAddress (contracts/TRBGR.sol#42) is not in mixedCase
Variable TRBGR._owner (contracts/TRBGR.sol#45) is not in mixedCase
Variable TRBGR._liquidityFee (contracts/TRBGR.sol#48) is not in mixedCase
Variable TRBGR._maxTxAmount (contracts/TRBGR.sol#57) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (contracts/Libs.sol#237)" inContext (contracts/Libs.sol#231-240)
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 (contracts/Libs.sol#548) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/Libs.sol#549)
Variable TRBGR._manualBurnFee (contracts/TRBGR.sol#36) is too similar to TRBGR._takeLiquidity(uint256).rmanualBurnFee (contracts/TRBGR.sol#385-387)
Variable TRBGR._manualBurnFee (contracts/TRBGR.sol#36) is too similar to TRBGR._takeLiquidity(uint256).tmanualBurnFee (contracts/TRBGR.sol#382-384)
Variable TRBGR._marketingFee (contracts/TRBGR.sol#37) is too similar to TRBGR._takeLiquidity(uint256).rMarketingFee (contracts/TRBGR.sol#359-361)
Variable TRBGR._transferStandard(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#569) is too similar to TRBGR._transferStandard(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#569)
Variable TRBGR._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#224) is too similar to TRBGR._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#224)
Variable TRBGR._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#578) is too similar to TRBGR._getValues(uint256).tTransferAmount (contracts/TRBGR.sol#310)
Variable TRBGR.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TRBGR.sol#190) is too similar to TRBGR._transferStandard(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#569)
Variable TRBGR._getValues(uint256).rTransferAmount (contracts/TRBGR.sol#311) is too similar to TRBGR._getTValues(uint256).tTransferAmount (contracts/TRBGR.sol#318)
Variable TRBGR._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/TRBGR.sol#326) is too similar to TRBGR._getTValues(uint256).tTransferAmount (contracts/TRBGR.sol#318)
Variable TRBGR.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TRBGR.sol#190) is too similar to TRBGR._getValues(uint256).tTransferAmount (contracts/TRBGR.sol#310)
Variable TRBGR._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#578) is too similar to TRBGR._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#588)
Variable TRBGR._getValues(uint256).rTransferAmount (contracts/TRBGR.sol#311) is too similar to TRBGR._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#224)
Variable TRBGR._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#578) is too similar to TRBGR._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#578)
Variable TRBGR._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/TRBGR.sol#326) is too similar to TRBGR._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#224)
Variable TRBGR.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TRBGR.sol#190) is too similar to TRBGR._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#588)
Variable TRBGR._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/TRBGR.sol#326) is too similar to TRBGR._transferStandard(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#569)
Variable TRBGR._getValues(uint256).rTransferAmount (contracts/TRBGR.sol#311) is too similar to TRBGR._transferStandard(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#569)
Variable TRBGR._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#578) is too similar to TRBGR._getTValues(uint256).tTransferAmount (contracts/TRBGR.sol#318)
Variable TRBGR._transferStandard(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#569) is too similar to TRBGR._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#224)
Variable TRBGR._transferStandard(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#569) is too similar to TRBGR._getTValues(uint256).tTransferAmount (contracts/TRBGR.sol#318)
Variable TRBGR._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/TRBGR.sol#326) is too similar to TRBGR._getValues(uint256).tTransferAmount (contracts/TRBGR.sol#310)
Variable TRBGR.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TRBGR.sol#190) is too similar to TRBGR._getTValues(uint256).tTransferAmount (contracts/TRBGR.sol#318)
Variable TRBGR._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#578) is too similar to TRBGR._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#224)
Variable TRBGR._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/TRBGR.sol#326) is too similar to TRBGR._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#588)
Variable TRBGR._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#578) is too similar to TRBGR._transferStandard(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#569)
Variable TRBGR.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TRBGR.sol#190) is too similar to TRBGR._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#224)
Variable TRBGR._marketingFee (contracts/TRBGR.sol#37) is too similar to TRBGR._takeLiquidity(uint256).tMarketingFee (contracts/TRBGR.sol#356-358)
Variable TRBGR._takeLiquidity(uint256).rMarketingFee (contracts/TRBGR.sol#359-361) is too similar to TRBGR._takeLiquidity(uint256).tMarketingFee (contracts/TRBGR.sol#356-358)
Variable TRBGR._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#588) is too similar to TRBGR._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#224)
Variable TRBGR._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#224) is too similar to TRBGR._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#578)
Variable TRBGR._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#224) is too similar to TRBGR._transferStandard(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#569)
Variable TRBGR.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TRBGR.sol#190) is too similar to TRBGR._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#578)
Variable TRBGR._transferStandard(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#569) is too similar to TRBGR._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#578)
Variable TRBGR._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/TRBGR.sol#326) is too similar to TRBGR._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#578)
Variable TRBGR._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#588) is too similar to TRBGR._getValues(uint256).tTransferAmount (contracts/TRBGR.sol#310)
Variable TRBGR._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#588) is too similar to TRBGR._getTValues(uint256).tTransferAmount (contracts/TRBGR.sol#318)
Variable TRBGR._getValues(uint256).rTransferAmount (contracts/TRBGR.sol#311) is too similar to TRBGR._getValues(uint256).tTransferAmount (contracts/TRBGR.sol#310)
Variable TRBGR._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#588) is too similar to TRBGR._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#588)
Variable TRBGR._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#224) is too similar to TRBGR._getValues(uint256).tTransferAmount (contracts/TRBGR.sol#310)
Variable TRBGR._getValues(uint256).rTransferAmount (contracts/TRBGR.sol#311) is too similar to TRBGR._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#588)
Variable TRBGR._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#224) is too similar to TRBGR._getTValues(uint256).tTransferAmount (contracts/TRBGR.sol#318)
Variable TRBGR._transferStandard(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#569) is too similar to TRBGR._getValues(uint256).tTransferAmount (contracts/TRBGR.sol#310)
Variable TRBGR._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#588) is too similar to TRBGR._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#578)
Variable TRBGR._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#224) is too similar to TRBGR._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#588)
Variable TRBGR._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#588) is too similar to TRBGR._transferStandard(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#569)
Variable TRBGR._getValues(uint256).rTransferAmount (contracts/TRBGR.sol#311) is too similar to TRBGR._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#578)
Variable TRBGR._transferStandard(address,address,uint256).rTransferAmount (contracts/TRBGR.sol#569) is too similar to TRBGR._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TRBGR.sol#588)
Variable TRBGR._takeLiquidity(uint256).rmanualBurnFee (contracts/TRBGR.sol#385-387) is too similar to TRBGR._takeLiquidity(uint256).tmanualBurnFee (contracts/TRBGR.sol#382-384)
Prevent variables from having similar names.

Additional information: link

TRBGR.slitherConstructorVariables() (contracts/TRBGR.sol#8-600) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 1000000000000000000 (contracts/TRBGR.sol#25)
TRBGR.slitherConstructorVariables() (contracts/TRBGR.sol#8-600) uses literals with too many digits:
- _maxTxAmount = 2000000 * 10 ** 6 * 1000000000000000000 (contracts/TRBGR.sol#57)
TRBGR.slitherConstructorVariables() (contracts/TRBGR.sol#8-600) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 1000000000000000000 (contracts/TRBGR.sol#58)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

getRoleMemberCount(bytes32) should be declared external:
- AccessControl.getRoleMemberCount(bytes32) (contracts/AccessControl.sol#387-389)
getRoleMember(bytes32,uint256) should be declared external:
- AccessControl.getRoleMember(bytes32,uint256) (contracts/AccessControl.sol#403-405)
getRoleAdmin(bytes32) should be declared external:
- AccessControl.getRoleAdmin(bytes32) (contracts/AccessControl.sol#413-415)
grantRole(bytes32,address) should be declared external:
- AccessControl.grantRole(bytes32,address) (contracts/AccessControl.sol#427-431)
revokeRole(bytes32,address) should be declared external:
- AccessControl.revokeRole(bytes32,address) (contracts/AccessControl.sol#442-446)
renounceRole(bytes32,address) should be declared external:
- AccessControl.renounceRole(bytes32,address) (contracts/AccessControl.sol#462-466)
owner() should be declared external:
- Ownable.owner() (contracts/Libs.sol#412-414)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/Libs.sol#431-434)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/Libs.sol#440-444)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (contracts/Libs.sol#446-448)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (contracts/Libs.sol#451-456)
unlock() should be declared external:
- Ownable.unlock() (contracts/Libs.sol#459-464)
name() should be declared external:
- TRBGR.name() (contracts/TRBGR.sol#112-114)
symbol() should be declared external:
- TRBGR.symbol() (contracts/TRBGR.sol#116-118)
decimals() should be declared external:
- TRBGR.decimals() (contracts/TRBGR.sol#120-122)
totalSupply() should be declared external:
- TRBGR.totalSupply() (contracts/TRBGR.sol#128-130)
transfer(address,uint256) should be declared external:
- TRBGR.transfer(address,uint256) (contracts/TRBGR.sol#137-140)
allowance(address,address) should be declared external:
- TRBGR.allowance(address,address) (contracts/TRBGR.sol#142-144)
approve(address,uint256) should be declared external:
- TRBGR.approve(address,uint256) (contracts/TRBGR.sol#146-149)
transferFrom(address,address,uint256) should be declared external:
- TRBGR.transferFrom(address,address,uint256) (contracts/TRBGR.sol#151-155)
increaseAllowance(address,uint256) should be declared external:
- TRBGR.increaseAllowance(address,uint256) (contracts/TRBGR.sol#157-160)
decreaseAllowance(address,uint256) should be declared external:
- TRBGR.decreaseAllowance(address,uint256) (contracts/TRBGR.sol#162-165)
isExcludedFromReward(address) should be declared external:
- TRBGR.isExcludedFromReward(address) (contracts/TRBGR.sol#167-169)
totalFees() should be declared external:
- TRBGR.totalFees() (contracts/TRBGR.sol#171-173)
deliver(uint256) should be declared external:
- TRBGR.deliver(uint256) (contracts/TRBGR.sol#175-182)
reflectionFromToken(uint256,bool) should be declared external:
- TRBGR.reflectionFromToken(uint256,bool) (contracts/TRBGR.sol#184-193)
excludeFromReward(address) should be declared external:
- TRBGR.excludeFromReward(address) (contracts/TRBGR.sol#201-208)
excludeFromFee(address) should be declared external:
- TRBGR.excludeFromFee(address) (contracts/TRBGR.sol#234-236)
includeInFee(address) should be declared external:
- TRBGR.includeInFee(address) (contracts/TRBGR.sol#238-240)
setSwapAndLiquifyEnabled(bool) should be declared external:
- TRBGR.setSwapAndLiquifyEnabled(bool) (contracts/TRBGR.sol#256-259)
setMaxTxAmount(uint256) should be declared external:
- TRBGR.setMaxTxAmount(uint256) (contracts/TRBGR.sol#261-263)
setNumTokensSellToAddToLiquidity(uint256) should be declared external:
- TRBGR.setNumTokensSellToAddToLiquidity(uint256) (contracts/TRBGR.sol#265-267)
setFeeAddresses(address,address,address) should be declared external:
- TRBGR.setFeeAddresses(address,address,address) (contracts/TRBGR.sol#269-277)
setFeePercents(uint256,uint256,uint256) should be declared external:
- TRBGR.setFeePercents(uint256,uint256,uint256) (contracts/TRBGR.sol#279-287)
setOwner(address) should be declared external:
- TRBGR.setOwner(address) (contracts/TRBGR.sol#289-293)
withdrawLiquidity(uint256) should be declared external:
- TRBGR.withdrawLiquidity(uint256) (contracts/TRBGR.sol#297-299)
isExcludedFromFee(address) should be declared external:
- TRBGR.isExcludedFromFee(address) (contracts/TRBGR.sol#425-427)
setSymbol(string) should be declared external:
- TRBGR.setSymbol(string) (contracts/TRBGR.sol#597-599)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain

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

No disclosed threats


Token is not listed at Mobula.Finance

Additional information: link


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for TRUBGR

News for TRUBGR