SUPERDOGE Token Logo

$SUPDOG [SUPERDOGE] Token

About $SUPDOG

Listings

Token 3 years

SuperDoge is an entertainment & media-based blockchain technology project utilizing NFTs to create positive change & community enrichment.

The Emmy nominated writing team behind SuperDoge The NFT Animated Series aims to provide the crypto community with a fresh source of laughs and entertainment while helping others along the way.

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 SUPDOG._transfer(address,address,uint256) (#632-665):
External calls:
- swapAndLiquify(contractTokenBalance) (#653)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#653)
- recipient.transfer(amount) (#946)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#818)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#724)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#735)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#748)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#760)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#725)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#737)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#749)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#762)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _rTotal = _rTotal.sub(rFee).sub(rBurn) (#769)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#820)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#747)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#759)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#736)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#761)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _tTotal = _tTotal.sub(tBurn) (#772)
Apply the check-effects-interactions pattern.

Additional information: link

Contract ticker ($SUPDOG) 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.

SUPDOG.getUnlockTimeDays() (#918-932) uses timestamp for comparisons
Dangerous comparisons:
- _lockTime > now (#920)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#138-155) uses assembly
- INLINE ASM (#147-150)
Do not use evm assembly.

Additional information: link

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

Additional information: link

SUPDOG._previousDonationFee (#458) is set pre-construction with a non-constant function or state variable:
- _donationFee
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

SUPDOG._approve(address,address,uint256).owner (#624) shadows:
- Ownable.owner() (#171-173) (function)
Rename the local variables that shadow another component.

Additional information: link

SUPDOG.setNumTokensSellToAddToLiquidity(uint256) (#935-937) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#936)
Emit an event for critical parameter changes.

Additional information: link

SUPDOG.setDonationAddress3(address).charity3 (#891) lacks a zero-check on :
- charityAddress3 = charity3 (#892)
Check that the address is not zero.

Additional information: link

Reentrancy in SUPDOG.transferFrom(address,address,uint256) (#538-542):
External calls:
- _transfer(sender,recipient,amount) (#539)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
External calls sending eth:
- _transfer(sender,recipient,amount) (#539)
- recipient.transfer(amount) (#946)
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 (#628)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SUPDOG.transferFrom(address,address,uint256) (#538-542):
External calls:
- _transfer(sender,recipient,amount) (#539)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
External calls sending eth:
- _transfer(sender,recipient,amount) (#539)
- recipient.transfer(amount) (#946)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#629)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#540)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Variable SUPDOG._maxTxAmount (#460) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in SUPDOG.transferFrom(address,address,uint256) (#538-542):
External calls:
- _transfer(sender,recipient,amount) (#539)
- recipient.transfer(amount) (#946)
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 (#628)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#629)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#540)
Apply the check-effects-interactions pattern.

Additional information: link

Variable SUPDOG._transferToExcluded(address,address,uint256).rTransferAmount (#733) is too similar to SUPDOG._getTValues(uint256).tTransferAmount (#785)
Prevent variables from having similar names.

Additional information: link

SUPDOG._symbol (#447) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

setSwapAndLiquifyEnabled(bool) should be declared external:
- SUPDOG.setSwapAndLiquifyEnabled(bool) (#939-942)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account link seems to be invalid


Unable to find Youtube account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


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 scam / price dump / death


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


Token has no active CoinGecko listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for $SUPDOG