Republic Of Dogs Token Logo

ROD [Republic Of Dogs] Token

About ROD

Listings

Token 2 years

Republic of Dogs (ROD) is a Proprietary, Hyper Deflationary token on the Binance smart chain network. We aim to make a positive impact by collaborating with community chosen charitable projects. Our holders are rewarded with ROD tokens without having to lift a paw! On top of the automated buybacks from the Saviour Wallet with every market sell, "calltheSAVIOUR" will be activated at certain milestones. Scroll down for more information.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links


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

Reentrancy in RepublicOfDogs._transfer(address,address,uint256) (#628-666):
External calls:
- swapTokens(contractTokenBalance) (#646)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#706-712)
- buyBackTokens(balance.div(100)) (#654)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#724-729)
External calls sending eth:
- swapTokens(contractTokenBalance) (#646)
- recipient.transfer(amount) (#950)
- buyBackTokens(balance.div(100)) (#654)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#724-729)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#665)
- _liquidityFee = _previousLiquidityFee (#882)
- _liquidityFee = 0 (#877)
- _tokenTransfer(from,to,amount,takeFee) (#665)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#853)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#769)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#778)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#789)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#799)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#770)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#780)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#790)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#801)
- _tokenTransfer(from,to,amount,takeFee) (#665)
- _rTotal = _rTotal.sub(rFee) (#808)
- _tokenTransfer(from,to,amount,takeFee) (#665)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#855)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#788)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#798)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#779)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#800)
- buyBackTokens(balance.div(100)) (#654)
- inSwapAndLiquify = true (#482)
- inSwapAndLiquify = false (#484)
Apply the check-effects-interactions pattern.

Additional information: link

RepublicOfDogs.swapTokens(uint256) (#679-688) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#686)
Consider ordering multiplication before division.

Additional information: link

RepublicOfDogs.addLiquidity(uint256,uint256) (#734-747) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#739-746)
Ensure that all the return values of the function calls are used.

Additional information: link

RepublicOfDogs._approve(address,address,uint256).owner (#620) shadows:
- Ownable.owner() (#163-165) (function)
Rename the local variables that shadow another component.

Additional information: link

RepublicOfDogs.setBuybackUpperLimit(uint256) (#917-919) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#918)
Emit an event for critical parameter changes.

Additional information: link

RepublicOfDogs.setMarketingAddress(address)._marketingAddress (#921) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#922)
Check that the address is not zero.

Additional information: link

Reentrancy in RepublicOfDogs.transferFrom(address,address,uint256) (#538-542):
External calls:
- _transfer(sender,recipient,amount) (#539)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#724-729)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#706-712)
External calls sending eth:
- _transfer(sender,recipient,amount) (#539)
- recipient.transfer(amount) (#950)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#724-729)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#540)
- _allowances[owner][spender] = amount (#624)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in RepublicOfDogs.transferFrom(address,address,uint256) (#538-542):
External calls:
- _transfer(sender,recipient,amount) (#539)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#724-729)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#706-712)
External calls sending eth:
- _transfer(sender,recipient,amount) (#539)
- recipient.transfer(amount) (#950)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#724-729)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#625)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#540)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#198-203) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#200)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#130-147) uses assembly
- INLINE ASM (#139-142)
Do not use evm assembly.

Additional information: link

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

Additional information: link

RepublicOfDogs._previousLiquidityFee (#446) 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._functionCallWithValue(address,bytes,uint256,string) (#130-147):
- (success,returndata) = target.call{value: weiValue}(data) (#133)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable RepublicOfDogs._maxTxAmount (#450) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#17)" inContext (#11-20)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in RepublicOfDogs.transferFrom(address,address,uint256) (#538-542):
External calls:
- _transfer(sender,recipient,amount) (#539)
- recipient.transfer(amount) (#950)
External calls sending eth:
- _transfer(sender,recipient,amount) (#539)
- recipient.transfer(amount) (#950)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#724-729)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#540)
- _allowances[owner][spender] = amount (#624)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#625)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#540)
Apply the check-effects-interactions pattern.

Additional information: link

Variable RepublicOfDogs._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#829) is too similar to RepublicOfDogs._transferFromExcluded(address,address,uint256).tTransferAmount (#787)
Prevent variables from having similar names.

Additional information: link

RepublicOfDogs.slitherConstructorVariables() (#417-956) uses literals with too many digits:
- minimumTokensBeforeSwap = 200000 * 10 ** 6 * 10 ** 9 (#451)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

RepublicOfDogs.deadAddress (#422) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

setBuyBackEnabled(bool) should be declared external:
- RepublicOfDogs.setBuyBackEnabled(bool) (#930-933)
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


Unable to crawl data from the website


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/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Unable to find code repository for the project


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


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for ROD