ROBODOGE is the very first ""fluid"" tokenomic model designed to prevent panic selling through smart AI software. This project has been in the making for almost a year now. The founder is a 17 year trading veteran. ROBODOGE has successfully produced a brand new model that has never been seen before. The model is aimed to prevent panic selling, bot pump and dumps, and tackling the root of the issue, ""the fear"" driving the panic. ROBODOGE uses a smart AI system, and a very unique EOP ""ease out protocol"" to deliver the very first responsible trading system. ROBODOGE has brought a little Wall Street sophistication into the crypto space.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
RoboDogeCoin._writeCheckpoint(address,uint32,uint256,uint256) (#1247-1258) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (#1250)
RoboDogeCoin.isUnlocked(address) (#621-624) uses a dangerous strict equality:
- require(bool,string)(lockedTill[_address] == 0,Address is already locked) (#622)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
RoboDogeCoin.includeAccount(address) (#720-731) has costly operations inside a loop:
- _excluded.pop() (#727)
Use a local variable to hold the loop computation result.
Additional information: link
RoboDogeCoin.collectFee(address,uint256,uint256) (#944-999) performs a multiplication on the result of a division:
-extraTax = amount.mul(_earlySellFee).div(DENOMINATOR) (#956)
-_reflectionBalance[reservePoolAddress] = _reflectionBalance[reservePoolAddress].add(extraTax.mul(rate)) (#958)
RoboDogeCoin.collectFee(address,uint256,uint256) (#944-999) performs a multiplication on the result of a division:
-charityFee = amount.mul(_charityFee).div(DENOMINATOR) (#948)
-_reflectionBalance[charityAddress] = _reflectionBalance[charityAddress].add(charityFee.mul(rate)) (#971)
RoboDogeCoin.collectFee(address,uint256,uint256) (#944-999) performs a multiplication on the result of a division:
-taxFee = amount.mul(_taxFee).div(DENOMINATOR) (#950)
-_reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate)) (#964)
RoboDogeCoin.collectFee(address,uint256,uint256) (#944-999) performs a multiplication on the result of a division:
-burnFee = amount.mul(_burnFee).div(DENOMINATOR) (#951)
-_reflectionTotal = _reflectionTotal.sub(burnFee.mul(rate)) (#978)
RoboDogeCoin.collectFee(address,uint256,uint256) (#944-999) performs a multiplication on the result of a division:
-liquidityFee = amount.mul(_liquidityFee).div(DENOMINATOR) (#949)
-_reflectionBalance[liquidityManager] = _reflectionBalance[liquidityManager].add(liquidityFee.mul(rate)) (#986)
RoboDogeCoin.collectFee(address,uint256,uint256) (#944-999) performs a multiplication on the result of a division:
-marketingFee = amount.mul(_marketingFee).div(DENOMINATOR) (#952)
-_reflectionBalance[marketingFeeAddress] = _reflectionBalance[marketingFeeAddress].add(marketingFee.mul(rate)) (#993)
Consider ordering multiplication before division.
Additional information: link
RoboDogeCoin.allowance(address,address)._owner (#662) shadows:
- Ownable._owner (#486) (state variable)
RoboDogeCoin._approve(address,address,uint256).owner (#733) shadows:
- Ownable.owner() (#505-507) (function)
Rename the local variables that shadow another component.
Additional information: link
RoboDogeCoin.setThreshold(uint256) (#800-802) should emit an event for:
- threshold = _threshold (#801)
RoboDogeCoin.setRule(uint256) (#804-806) should emit an event for:
- rule = _rule (#805)
RoboDogeCoin.setRestrictionDuration(uint256) (#808-810) should emit an event for:
- restrictionDuration = _minutes * 60 (#809)
RoboDogeCoin.setReflectionFee(uint256) (#1027-1029) should emit an event for:
- _taxFee = fee (#1028)
RoboDogeCoin.setLiquidityFee(uint256) (#1031-1033) should emit an event for:
- _liquidityFee = fee (#1032)
RoboDogeCoin.setCharityFee(uint256) (#1035-1037) should emit an event for:
- _charityFee = fee (#1036)
RoboDogeCoin.setBurnPercent(uint256) (#1039-1041) should emit an event for:
- _burnFee = fee (#1040)
RoboDogeCoin.setMarketingFee(uint256) (#1043-1045) should emit an event for:
- _marketingFee = fee (#1044)
RoboDogeCoin.setEarlySellFee(uint256) (#1047-1049) should emit an event for:
- _earlySellFee = fee (#1048)
Emit an event for critical parameter changes.
Additional information: link
RoboDogeCoin.enforceAntiDumping(address,uint256) (#812-858) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp > userInfo.firstSellTime + restrictionDuration (#822)
- block.timestamp <= userInfo.firstSellTime + restrictionDuration (#845)
RoboDogeCoin.unlock(address) (#873-878) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > lockedTill[_address] || msg.sender == owner(),Cannot unlock before locked time) (#874)
- require(bool,string)(lockedTill[_address] > 0,Address is already unlocked) (#875)
RoboDogeCoin.isWithinLimit(address,uint256) (#880-913) uses timestamp for comparisons
Dangerous comparisons:
- limitInfos[_address].account != _address (#883)
- block.timestamp <= limit.end (#889)
RoboDogeCoin.collectFee(address,uint256,uint256) (#944-999) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp <= firstBuy[account] + 604800 (#955)
RoboDogeCoin.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (#1154-1166) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= expiry,ROBODOGE::delegateBySig: signature expired) (#1164)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#313-327) uses assembly
- INLINE ASM (#323-325)
Address._functionCallWithValue(address,bytes,uint256,string) (#442-470) uses assembly
- INLINE ASM (#462-465)
RoboDogeCoin.getChainId() (#1265-1271) uses assembly
- INLINE ASM (#1267-1269)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#442-470) is never used and should be removed
Address.functionCall(address,bytes) (#377-382) is never used and should be removed
Address.functionCall(address,bytes,string) (#390-396) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#409-421) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#429-440) is never used and should be removed
Address.isContract(address) (#313-327) is never used and should be removed
Address.sendValue(address,uint256) (#345-357) is never used and should be removed
Context._msgData() (#31-34) is never used and should be removed
SafeMath.mod(uint256,uint256) (#266-268) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#282-289) is never used and should be removed
Remove unused functions.
Additional information: link
RoboDogeCoin._reflectionTotal (#559) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tokenTotal))
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 version0.8.3 (#12) allows old versions
solc-0.8.3 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.sendValue(address,uint256) (#345-357):
- (success) = recipient.call{value: amount}() (#352)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#442-470):
- (success,returndata) = target.call{value: weiValue}(data) (#451-453)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Parameter RoboDogeCoin.allowance(address,address)._owner (#662) is not in mixedCase
Parameter RoboDogeCoin.setReservePool(address)._address (#789) is not in mixedCase
Parameter RoboDogeCoin.setLiquidityPoolAddress(address,bool)._address (#795) is not in mixedCase
Parameter RoboDogeCoin.setLiquidityPoolAddress(address,bool)._add (#795) is not in mixedCase
Parameter RoboDogeCoin.setThreshold(uint256)._threshold (#800) is not in mixedCase
Parameter RoboDogeCoin.setRule(uint256)._rule (#804) is not in mixedCase
Parameter RoboDogeCoin.setRestrictionDuration(uint256)._minutes (#808) is not in mixedCase
Parameter RoboDogeCoin.lock(address,uint256)._address (#868) is not in mixedCase
Parameter RoboDogeCoin.lock(address,uint256)._days (#868) is not in mixedCase
Parameter RoboDogeCoin.unlock(address)._address (#873) is not in mixedCase
Parameter RoboDogeCoin.isWithinLimit(address,uint256)._address (#880) is not in mixedCase
Parameter RoboDogeCoin.isWithinLimit(address,uint256)._amount (#880) is not in mixedCase
Parameter RoboDogeCoin.setLimit(address,uint256,uint256)._address (#915) is not in mixedCase
Parameter RoboDogeCoin.setLimit(address,uint256,uint256)._period (#915) is not in mixedCase
Parameter RoboDogeCoin.setLimit(address,uint256,uint256)._rule (#915) is not in mixedCase
Parameter RoboDogeCoin.removeLimit(address)._address (#919) is not in mixedCase
Parameter RoboDogeCoin.setCharityAddress(address)._Address (#1051) is not in mixedCase
Parameter RoboDogeCoin.setRouterAddress(address)._Address (#1057) is not in mixedCase
Parameter RoboDogeCoin.setLiquidityManager(address)._address (#1063) is not in mixedCase
Parameter RoboDogeCoin.setMarketingAddress(address)._Address (#1069) is not in mixedCase
Function RoboDogeCoin.PrepareForPreSale() (#1075-1082) is not in mixedCase
Variable RoboDogeCoin._reflectionBalance (#553) is not in mixedCase
Variable RoboDogeCoin._tokenBalance (#554) is not in mixedCase
Variable RoboDogeCoin._allowances (#555) is not in mixedCase
Variable RoboDogeCoin._tokenTotal (#558) is not in mixedCase
Variable RoboDogeCoin._reflectionTotal (#559) is not in mixedCase
Variable RoboDogeCoin._isExcluded (#562) is not in mixedCase
Variable RoboDogeCoin._excluded (#563) is not in mixedCase
Variable RoboDogeCoin._taxFee (#565) is not in mixedCase
Variable RoboDogeCoin._charityFee (#566) is not in mixedCase
Variable RoboDogeCoin._burnFee (#567) is not in mixedCase
Variable RoboDogeCoin._liquidityFee (#568) is not in mixedCase
Variable RoboDogeCoin._marketingFee (#569) is not in mixedCase
Variable RoboDogeCoin._earlySellFee (#570) is not in mixedCase
Variable RoboDogeCoin._charityFeeTotal (#572) is not in mixedCase
Variable RoboDogeCoin._burnFeeTotal (#573) is not in mixedCase
Variable RoboDogeCoin._taxFeeTotal (#574) is not in mixedCase
Variable RoboDogeCoin._liquidityFeeTotal (#575) is not in mixedCase
Variable RoboDogeCoin._marketingFeeTotal (#576) is not in mixedCase
Variable RoboDogeCoin._earlySellFeeTotal (#577) is not in mixedCase
Variable RoboDogeCoin._delegates (#1100) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#32)" inContext (#26-35)
Remove redundant statements if they congest code but offer no value.
Additional information: link
RoboDogeCoin._decimals (#549) should be constant
RoboDogeCoin._name (#547) should be constant
RoboDogeCoin._symbol (#548) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#524-527)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#533-540)
symbol() should be declared external:
- RoboDogeCoin.symbol() (#640-642)
decimals() should be declared external:
- RoboDogeCoin.decimals() (#644-646)
totalSupply() should be declared external:
- RoboDogeCoin.totalSupply() (#648-650)
transfer(address,uint256) should be declared external:
- RoboDogeCoin.transfer(address,uint256) (#657-660)
allowance(address,address) should be declared external:
- RoboDogeCoin.allowance(address,address) (#662-664)
approve(address,uint256) should be declared external:
- RoboDogeCoin.approve(address,uint256) (#666-669)
transferFrom(address,address,uint256) should be declared external:
- RoboDogeCoin.transferFrom(address,address,uint256) (#671-676)
increaseAllowance(address,uint256) should be declared external:
- RoboDogeCoin.increaseAllowance(address,uint256) (#678-681)
decreaseAllowance(address,uint256) should be declared external:
- RoboDogeCoin.decreaseAllowance(address,uint256) (#683-686)
isExcluded(address) should be declared external:
- RoboDogeCoin.isExcluded(address) (#688-690)
reflectionFromToken(uint256,bool) should be declared external:
- RoboDogeCoin.reflectionFromToken(uint256,bool) (#692-699)
Use the external attribute for functions never called from the contract.
Additional information: link
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
Additional information: link
Average 30d number of PancakeSwap swaps is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Alexa traffic rank is very low
Additional information: link
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Unable to find Youtube account
Unable to find Discord account