SpaceDoge Coin Token Logo

SpaceDoge [SpaceDoge Coin] Token

About SpaceDoge

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 30 November 2021

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

Reentrancy in SpaceDogeCoin._transfer(address,address,uint256) (#1019-1063):
External calls:
- swapAndLiquify(contractTokenBalance) (#1050)
- usdt.approve(address(uniswapV2Router),usdtAmount) (#1129)
- uniswapV2Router.addLiquidity(address(this),address(usdt),tokenAmount,usdtAmount,0,0,blackHole,block.timestamp) (#1131-1140)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(wrap),block.timestamp) (#1097-1103)
- wrap.withdraw() (#1105)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1062)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#975)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1181)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1190)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#885)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1182)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1201)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1192)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1202)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#887)
- _tokenTransfer(from,to,amount,takeFee) (#1062)
- _rTotal = _rTotal.sub(rFee) (#930)
- _tokenTransfer(from,to,amount,takeFee) (#1062)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#977)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1200)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#884)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1191)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#886)
Apply the check-effects-interactions pattern.

Additional information: link

SpaceDogeCoin.addLiquidity(uint256,uint256) (#1143-1156) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1148-1155)
Ensure that all the return values of the function calls are used.

Additional information: link

SpaceDogeCoin._approve(address,address,uint256).owner (#1011) shadows:
- Ownable.owner() (#424-426) (function)
Rename the local variables that shadow another component.

Additional information: link

SpaceDogeCoin.setMaxTxPercent(uint256) (#909-913) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#910-912)
Emit an event for critical parameter changes.

Additional information: link

SpaceDogeCoin.setBlackHole(address)._blackHole (#920) lacks a zero-check on :
- blackHole = _blackHole (#922)
Check that the address is not zero.

Additional information: link

Reentrancy in SpaceDogeCoin.transferFrom(address,address,uint256) (#809-813):
External calls:
- _transfer(sender,recipient,amount) (#810)
- usdt.approve(address(uniswapV2Router),usdtAmount) (#1129)
- uniswapV2Router.addLiquidity(address(this),address(usdt),tokenAmount,usdtAmount,0,0,blackHole,block.timestamp) (#1131-1140)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(wrap),block.timestamp) (#1097-1103)
- wrap.withdraw() (#1105)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#811)
- _allowances[owner][spender] = amount (#1015)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SpaceDogeCoin.transferFrom(address,address,uint256) (#809-813):
External calls:
- _transfer(sender,recipient,amount) (#810)
- usdt.approve(address(uniswapV2Router),usdtAmount) (#1129)
- uniswapV2Router.addLiquidity(address(this),address(usdt),tokenAmount,usdtAmount,0,0,blackHole,block.timestamp) (#1131-1140)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(wrap),block.timestamp) (#1097-1103)
- wrap.withdraw() (#1105)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1016)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#811)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#369-390) uses assembly
- INLINE ASM (#382-385)
Do not use evm assembly.

Additional information: link

SpaceDogeCoin.swapTokensForEth(uint256) (#1108-1124) is never used and should be removed
Remove unused functions.

Additional information: link

SpaceDogeCoin._previousLiquidityFee (#723) 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

Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#369-390):
- (success,returndata) = target.call{value: weiValue}(data) (#373)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable SpaceDogeCoin._maxTxAmount (#731) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#249)" inContext (#243-252)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable SpaceDogeCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#883) is too similar to SpaceDogeCoin._transferStandard(address,address,uint256).tTransferAmount (#1180)
Prevent variables from having similar names.

Additional information: link

SpaceDogeCoin.slitherConstructorVariables() (#696-1209) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 200000 * 10 ** 6 * 10 ** 2 (#732)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

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

Additional information: link

isExcludedFromFee(address) should be declared external:
- SpaceDogeCoin.isExcludedFromFee(address) (#1007-1009)
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.


Number of Binance Smart Chain (BSC) token holders is low.


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.


Unable to find Telegram and Twitter accounts


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 SpaceDoge