Reta Dog Token Logo

RTG [Reta Dog] Token

About RTG

Listings

Not Found
Token 2 years

It is an opportunity to own a token in the early stage.It is a decentralized currency on the Binace Smart Chain network.Available through Pancakeswap.Prices can double.We closed 80% of the token and 20% will be burned when we do the second stage reach the project More project details on the website

https://retadog.com/

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Reentrancy in RetaDog._transfer(address,address,uint256) (#638-668):
External calls:
- swapAndLiquify(contractTokenBalance) (#661)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#693-700)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#683-689)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#661)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#693-700)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _rOwned[_developmentWalletAddress] = _rOwned[_developmentWalletAddress].add(rDevelopment) (#596)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#589)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#721)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#730)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#741)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#514)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#722)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#742)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#732)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#516)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _rTotal = _rTotal.sub(rFee) (#548)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#591)
- _tOwned[_developmentWalletAddress] = _tOwned[_developmentWalletAddress].add(tDevelopment) (#598)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#740)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#513)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#731)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#515)
Apply the check-effects-interactions pattern.

Additional information: link

RetaDog.addLiquidity(uint256,uint256) (#691-701) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#693-700)
Ensure that all the return values of the function calls are used.

Additional information: link

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

Additional information: link

RetaDog.setMaxTxPercent(uint256) (#537-541) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 3) (#538-540)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in RetaDog.transferFrom(address,address,uint256) (#449-453):
External calls:
- _transfer(sender,recipient,amount) (#450)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#693-700)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#683-689)
External calls sending eth:
- _transfer(sender,recipient,amount) (#450)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#693-700)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#451)
- _allowances[owner][spender] = amount (#635)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in RetaDog.transferFrom(address,address,uint256) (#449-453):
External calls:
- _transfer(sender,recipient,amount) (#450)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#693-700)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#683-689)
External calls sending eth:
- _transfer(sender,recipient,amount) (#450)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#693-700)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#636)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#451)
Apply the check-effects-interactions pattern.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#142-155) uses assembly
- INLINE ASM (#147-150)
Do not use evm assembly.

Additional information: link

SafeMath.trySub(uint256,uint256) (#29-34) is never used and should be removed
Remove unused functions.

Additional information: link

RetaDog._previousLiquidityFee (#392) 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

solc-0.8.4 is not recommended for deployment
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.functionDelegateCall(address,bytes,string) (#137-141):
- (success,returndata) = target.delegatecall(data) (#139)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable RetaDog._maxTxAmount (#398) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#95)" inContext (#90-98)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable RetaDog._getValues(uint256).rTransferAmount (#553) is too similar to RetaDog._getTValues(uint256).tTransferAmount (#560)
Prevent variables from having similar names.

Additional information: link

RetaDog.slitherConstructorVariables() (#370-749) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 1000000000 * 10 ** 18 (#399)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

RetaDog.numTokensSellToAddToLiquidity (#399) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- RetaDog.isExcludedFromFee(address) (#629-631)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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.


Telegram account link seems to be invalid


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


Unable to find website, listings and other project-related information


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for RTG