Space dog
Decentralized highly deflationary currency
The entry or exit of each new member will provide a steady stream of power for the trigger of the destruction of the dividend mechanism.
By creating space dog, a real-time, efficient, unique and simple reward mechanism, we can help the bottom groups who do not have the ability or resources to obtain more wealth opportunities in the real society to realize their hopes and dreams.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in token._transfer(address,address,uint256) (#1131-1172):
External calls:
- swapAndLiquify(contractTokenBalance) (#1159)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#877-884)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1211-1217)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1230-1236)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1238)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1159)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#877-884)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1171)
- _devFee = _previousDevFee (#1116)
- _devFee = 0 (#1109)
- _tokenTransfer(from,to,amount,takeFee) (#1171)
- _liquidityFee = _previousLiquidityFee (#1114)
- _liquidityFee = 0 (#1107)
- _tokenTransfer(from,to,amount,takeFee) (#1171)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1070)
- _rOwned[burnAddress] = _rOwned[burnAddress].add(rBurn) (#956)
- _rOwned[devAddress] = _rOwned[devAddress].add(rDev) (#966)
- _rOwned[address(this)] = _rOwned[address(this)].add(rDev) (#968)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#900)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#901)
- _tokenTransfer(from,to,amount,takeFee) (#1171)
- _rTotal = _rTotal.sub(rFee) (#1015)
Apply the check-effects-interactions pattern.
Additional information: link
token.swapTokensForDividendToken(uint256) (#1220-1240) ignores return value by IERC20(husdtToken).transfer(address(devAddress),dividends) (#1238)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Contract ticker (Space dog) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
token.swapAndLiquify(uint256) (#1174-1199) performs a multiplication on the result of a division:
-addHl = uint256(100).mul(_liquidityFee).div(_liquidityFee.add(lsDevFee)) (#1179)
-addNumber = contractTokenBalance.mul(addHl).div(100) (#1180)
Consider ordering multiplication before division.
Additional information: link
PancakeLibrary.getAmountsOut(address,uint256,address[]).i (#738) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
token.addLiquidity(uint256,uint256) (#872-885) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#877-884)
Ensure that all the return values of the function calls are used.
Additional information: link
token._approve(address,address,uint256).owner (#1123) shadows:
- Ownable.owner() (#407-409) (function)
Rename the local variables that shadow another component.
Additional information: link
token.setMaxTxPercent(uint256) (#997-999) should emit an event for:
- _maxTxAmount = maxTxPercent (#998)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in token.transferFrom(address,address,uint256) (#915-919):
External calls:
- _transfer(sender,recipient,amount) (#916)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#877-884)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1211-1217)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1230-1236)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1238)
External calls sending eth:
- _transfer(sender,recipient,amount) (#916)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#877-884)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#917)
- _allowances[owner][spender] = amount (#1127)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in token.transferFrom(address,address,uint256) (#915-919):
External calls:
- _transfer(sender,recipient,amount) (#916)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#877-884)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1211-1217)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1230-1236)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1238)
External calls sending eth:
- _transfer(sender,recipient,amount) (#916)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#877-884)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1128)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#917)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#454-459) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#456)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#352-373) uses assembly
- INLINE ASM (#365-368)
Do not use evm assembly.
Additional information: link
Different versions of Solidity is used:
- Version used: ['>=0.5.0', '^0.6.12']
- ^0.6.12 (#14)
- >=0.5.0 (#655)
- >=0.5.0 (#674)
Use one Solidity version.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#153-156) is never used and should be removed
Remove unused functions.
Additional information: link
token._previousDevFee (#790) is set pre-construction with a non-constant function or state variable:
- _devFee
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.5.0 (#674) allows old versions
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) (#352-373):
- (success,returndata) = target.call{value: weiValue}(data) (#356)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable token._maxTxAmount (#806) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#232)" inContext (#226-235)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable token._transferStandard(address,address,uint256).rTransferAmount (#899) is too similar to token._getValues(uint256).tTransferAmount (#1028)
Prevent variables from having similar names.
Additional information: link
token.slitherConstructorVariables() (#761-1242) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 30000000 * 10 ** 18 (#807)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
token._tOwned (#766) is never used in token (#761-1242)
Remove unused state variables.
Additional information: link
token.ownerAddres (#793) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
isExcludedFromFee(address) should be declared external:
- token.isExcludedFromFee(address) (#1119-1121)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap volume is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
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 number of swaps.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
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
Young tokens have high risks of price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Young tokens have high risks of price dump / death
Token has relatively low CoinMarketCap rank
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