Doge Ship Token Token Logo

$DST [Doge Ship] Token

ALERT: rug pull scam

About $DST

Listings

Not Found
Token 2 years

Participate in ‘HODL V2’ & earn passive rewards in BNB every time Dogeship is traded. No complex staking or farming involved, simply ‘hodl’ and earn!

Join us on our community driven initiatives to make positive impacts in the real world, 3% at a time. Learn more about our Golden 3% promise by visiting our website.

Social

Laser Scorebeta Last Audit: 18 February 2022

report
Token seems to be a scam (type: rug pull scam).

Anti-Scam

Links


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

DogeshipToken.doSwap() (contracts/DogeshipToken.sol#282-356) sends eth to arbitrary user
Dangerous calls:
- address(charityWallet).transfer(amountETHCharity) (contracts/DogeshipToken.sol#345)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in DogeshipToken._transferFrom(address,address,uint256) (contracts/DogeshipToken.sol#177-224):
External calls:
- doSwap() (contracts/DogeshipToken.sol#188)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (contracts/DogeshipToken.sol#311-317)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,liquidityWallet,block.timestamp) (contracts/DogeshipToken.sol#329-336)
- dividendTracker.deposit{value: amountETHReflection}() (contracts/DogeshipToken.sol#341)
External calls sending eth:
- doSwap() (contracts/DogeshipToken.sol#188)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,liquidityWallet,block.timestamp) (contracts/DogeshipToken.sol#329-336)
- dividendTracker.deposit{value: amountETHReflection}() (contracts/DogeshipToken.sol#341)
- address(charityWallet).transfer(amountETHCharity) (contracts/DogeshipToken.sol#345)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (contracts/DogeshipToken.sol#195)
- _balances[DEAD] = _balances[DEAD].add(burnAmount) (contracts/DogeshipToken.sol#199)
- _balances[address(this)] = _balances[address(this)].add(feesCollected) (contracts/DogeshipToken.sol#205)
- _balances[recipient] = _balances[recipient].add(totalAmountAfterFees) (contracts/DogeshipToken.sol#210)
Apply the check-effects-interactions pattern.

Additional information: link

DogeshipToken.withdrawLockedTokens(address,uint256) (contracts/DogeshipToken.sol#393-395) ignores return value by IERC20(_token).transfer(msg.sender,_amount) (contracts/DogeshipToken.sol#394)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


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 ($DST) 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.

DogeshipToken.calculateFees(address,address,uint256) (contracts/DogeshipToken.sol#249-272) performs a multiplication on the result of a division:
-totalFeeAmount = amount.mul(fee.totalFee).div(feeDenominator) (contracts/DogeshipToken.sol#261)
-burnAmount = totalFeeAmount.mul(fee.burnFee).div(fee.totalFee) (contracts/DogeshipToken.sol#268)
Consider ordering multiplication before division.

Additional information: link

DogeshipToken.doSwap() (contracts/DogeshipToken.sol#282-356) ignores return value by router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,liquidityWallet,block.timestamp) (contracts/DogeshipToken.sol#329-336)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendTracker.setMinDistributionPeriod(uint256) (contracts/DividendTracker.sol#45) should emit an event for:
- minPeriod = _minPeriod (contracts/DividendTracker.sol#45)
DividendTracker.setMinDistributionAmount(uint256) (contracts/DividendTracker.sol#46) should emit an event for:
- minDistribution = _minDistribution (contracts/DividendTracker.sol#46)
DividendTracker.deposit() (contracts/DividendTracker.sol#66-72) should emit an event for:
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (contracts/DividendTracker.sol#71)
DogeshipToken.setSwapThreshold(uint256) (contracts/DogeshipToken.sol#398) should emit an event for:
- swapThreshold = _amount (contracts/DogeshipToken.sol#398)
DogeshipToken.setTransactionLimit(uint256) (contracts/DogeshipToken.sol#406-410) should emit an event for:
- _maxTransactionAmount = amount (contracts/DogeshipToken.sol#409)
DogeshipToken.setMaxWalletLimit(uint256) (contracts/DogeshipToken.sol#413-417) should emit an event for:
- _maxWallet = amount (contracts/DogeshipToken.sol#416)
Emit an event for critical parameter changes.

Additional information: link

DividendTracker.manualSendDividend(uint256,address).holder (contracts/DividendTracker.sol#137) lacks a zero-check on :
- address(holder).transfer(amount) (contracts/DividendTracker.sol#139)
- address(holder).transfer(contractETHBalance) (contracts/DividendTracker.sol#139)
DogeshipToken.constructor().ownerAddress (contracts/DogeshipToken.sol#95) lacks a zero-check on :
- liquidityWallet = ownerAddress (contracts/DogeshipToken.sol#107)
DogeshipToken.setCharityWallet(address)._charityWallet (contracts/DogeshipToken.sol#402) lacks a zero-check on :
- charityWallet = _charityWallet (contracts/DogeshipToken.sol#402)
DogeshipToken.setLiquidityWallet(address)._liquidityWallet (contracts/DogeshipToken.sol#403) lacks a zero-check on :
- liquidityWallet = _liquidityWallet (contracts/DogeshipToken.sol#403)
Check that the address is not zero.

Additional information: link

DogeshipToken.setExcludeDividendMultiple(address[],bool) (contracts/DogeshipToken.sol#359-371) has external calls inside a loop: dividendTracker.setShare(holder,0) (contracts/DogeshipToken.sol#366)
DogeshipToken.setExcludeDividendMultiple(address[],bool) (contracts/DogeshipToken.sol#359-371) has external calls inside a loop: dividendTracker.setShare(holder,_balances[holder]) (contracts/DogeshipToken.sol#368)
Favor pull over push strategy for external calls.

Additional information: link

Parameter DividendTracker.setMinDistributionPeriod(uint256)._minPeriod (contracts/DividendTracker.sol#45) is not in mixedCase
Parameter DividendTracker.setMinDistributionAmount(uint256)._minDistribution (contracts/DividendTracker.sol#46) is not in mixedCase
Variable DividendTracker._token (contracts/DividendTracker.sol#17) is not in mixedCase
Parameter DogeshipToken.setExcludeDividendMultiple(address[],bool)._users (contracts/DogeshipToken.sol#359) is not in mixedCase
Parameter DogeshipToken.setExcludeFeeMultiple(address[],bool)._users (contracts/DogeshipToken.sol#374) is not in mixedCase
Parameter DogeshipToken.setExcludeTxMultiple(address[],bool)._users (contracts/DogeshipToken.sol#381) is not in mixedCase
Parameter DogeshipToken.withdrawLockedETH(uint256)._amount (contracts/DogeshipToken.sol#388) is not in mixedCase
Parameter DogeshipToken.withdrawLockedTokens(address,uint256)._token (contracts/DogeshipToken.sol#393) is not in mixedCase
Parameter DogeshipToken.withdrawLockedTokens(address,uint256)._amount (contracts/DogeshipToken.sol#393) is not in mixedCase
Parameter DogeshipToken.setSwapThreshold(uint256)._amount (contracts/DogeshipToken.sol#398) is not in mixedCase
Parameter DogeshipToken.setSwapIgnoreLimit(bool)._ignoreLimit (contracts/DogeshipToken.sol#399) is not in mixedCase
Parameter DogeshipToken.setSwapEnabled(bool)._enabled (contracts/DogeshipToken.sol#400) is not in mixedCase
Parameter DogeshipToken.setSwapInterval(uint256)._interval (contracts/DogeshipToken.sol#401) is not in mixedCase
Parameter DogeshipToken.setCharityWallet(address)._charityWallet (contracts/DogeshipToken.sol#402) is not in mixedCase
Parameter DogeshipToken.setLiquidityWallet(address)._liquidityWallet (contracts/DogeshipToken.sol#403) is not in mixedCase
Parameter DogeshipToken.setBuyFees(uint256,uint256,uint256,uint256)._reflectionFee (contracts/DogeshipToken.sol#425) is not in mixedCase
Parameter DogeshipToken.setBuyFees(uint256,uint256,uint256,uint256)._charityFee (contracts/DogeshipToken.sol#425) is not in mixedCase
Parameter DogeshipToken.setBuyFees(uint256,uint256,uint256,uint256)._liquidityFee (contracts/DogeshipToken.sol#425) is not in mixedCase
Parameter DogeshipToken.setBuyFees(uint256,uint256,uint256,uint256)._burnFee (contracts/DogeshipToken.sol#425) is not in mixedCase
Parameter DogeshipToken.setSellFees(uint256,uint256,uint256,uint256)._reflectionFee (contracts/DogeshipToken.sol#436) is not in mixedCase
Parameter DogeshipToken.setSellFees(uint256,uint256,uint256,uint256)._charityFee (contracts/DogeshipToken.sol#436) is not in mixedCase
Parameter DogeshipToken.setSellFees(uint256,uint256,uint256,uint256)._liquidityFee (contracts/DogeshipToken.sol#436) is not in mixedCase
Parameter DogeshipToken.setSellFees(uint256,uint256,uint256,uint256)._burnFee (contracts/DogeshipToken.sol#436) is not in mixedCase
Variable DogeshipToken._balances (contracts/DogeshipToken.sol#44) is not in mixedCase
Variable DogeshipToken._allowances (contracts/DogeshipToken.sol#45) is not in mixedCase
Variable DogeshipToken._name (contracts/DogeshipToken.sol#51) is not in mixedCase
Variable DogeshipToken._symbol (contracts/DogeshipToken.sol#52) is not in mixedCase
Variable DogeshipToken._totalSupply (contracts/DogeshipToken.sol#54) is not in mixedCase
Variable DogeshipToken._maxWallet (contracts/DogeshipToken.sol#57) is not in mixedCase
Variable DogeshipToken._maxTransactionAmount (contracts/DogeshipToken.sol#58) is not in mixedCase
Function IPancakePair.DOMAIN_SEPARATOR() (contracts/IPancakePair.sol#19) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (contracts/IPancakePair.sol#20) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (contracts/IPancakePair.sol#37) is not in mixedCase
Function IPancakeRouter01.WETH() (contracts/IPancakeRouter01.sol#6) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in DogeshipToken.constructor() (contracts/DogeshipToken.sol#94-130):
External calls:
- pair = IPancakeFactory(router.factory()).createPair(wethAddress,address(this)) (contracts/DogeshipToken.sol#100)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = MAX_INT (contracts/DogeshipToken.sol#101)
- _balances[ownerAddress] = _totalSupply (contracts/DogeshipToken.sol#128)
- setBuyFees(30,30,30,30) (contracts/DogeshipToken.sol#125)
- buyFees = FeeSet(_reflectionFee,_charityFee,_liquidityFee,_burnFee,_reflectionFee + _charityFee + _liquidityFee + _burnFee) (contracts/DogeshipToken.sol#426-432)
- dividendTracker = new DividendTracker() (contracts/DogeshipToken.sol#104)
- excludeDividend[pair] = true (contracts/DogeshipToken.sol#120)
- excludeDividend[address(this)] = true (contracts/DogeshipToken.sol#121)
- excludeDividend[DEAD] = true (contracts/DogeshipToken.sol#122)
- excludeFee[liquidityWallet] = true (contracts/DogeshipToken.sol#110)
- excludeFee[ownerAddress] = true (contracts/DogeshipToken.sol#111)
- excludeFee[address(this)] = true (contracts/DogeshipToken.sol#112)
- excludeMaxTransaction[liquidityWallet] = true (contracts/DogeshipToken.sol#115)
- excludeMaxTransaction[ownerAddress] = true (contracts/DogeshipToken.sol#116)
- excludeMaxTransaction[address(this)] = true (contracts/DogeshipToken.sol#117)
- liquidityWallet = ownerAddress (contracts/DogeshipToken.sol#107)
- setSellFees(30,30,30,30) (contracts/DogeshipToken.sol#126)
- sellFees = FeeSet(_reflectionFee,_charityFee,_liquidityFee,_burnFee,_reflectionFee + _charityFee + _liquidityFee + _burnFee) (contracts/DogeshipToken.sol#437-443)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DogeshipToken._transferFrom(address,address,uint256) (contracts/DogeshipToken.sol#177-224):
External calls:
- doSwap() (contracts/DogeshipToken.sol#188)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (contracts/DogeshipToken.sol#311-317)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,liquidityWallet,block.timestamp) (contracts/DogeshipToken.sol#329-336)
- dividendTracker.deposit{value: amountETHReflection}() (contracts/DogeshipToken.sol#341)
External calls sending eth:
- doSwap() (contracts/DogeshipToken.sol#188)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,liquidityWallet,block.timestamp) (contracts/DogeshipToken.sol#329-336)
- dividendTracker.deposit{value: amountETHReflection}() (contracts/DogeshipToken.sol#341)
- address(charityWallet).transfer(amountETHCharity) (contracts/DogeshipToken.sol#345)
Event emitted after the call(s):
- Transfer(sender,DEAD,burnAmount) (contracts/DogeshipToken.sol#200)
- Transfer(sender,address(this),feesCollected) (contracts/DogeshipToken.sol#206)
- Transfer(sender,recipient,totalAmountAfterFees) (contracts/DogeshipToken.sol#211)
Reentrancy in DogeshipToken.constructor() (contracts/DogeshipToken.sol#94-130):
External calls:
- pair = IPancakeFactory(router.factory()).createPair(wethAddress,address(this)) (contracts/DogeshipToken.sol#100)
Event emitted after the call(s):
- Transfer(address(0),ownerAddress,_totalSupply) (contracts/DogeshipToken.sol#129)
Apply the check-effects-interactions pattern.

Additional information: link

DividendTracker.shouldDistribute(address) (contracts/DividendTracker.sol#75-79) uses timestamp for comparisons
Dangerous comparisons:
- shares[shareholder].amount > 0 && shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (contracts/DividendTracker.sol#76-78)
DividendTracker.getAccountStatus(address) (contracts/DividendTracker.sol#118-129) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (contracts/DividendTracker.sol#128)
DogeshipToken.canSwap() (contracts/DogeshipToken.sol#274-280) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold && (lastSwap + swapInterval <= block.timestamp) (contracts/DogeshipToken.sol#275-279)
Avoid relying on block.timestamp.

Additional information: link

Different versions of Solidity is used:
- Version used: ['^0.8.0', '^0.8.9']
- ^0.8.0 (contracts/Context.sol#3)
- ^0.8.9 (contracts/DividendTracker.sol#8)
- ^0.8.9 (contracts/DogeshipToken.sol#23)
- ^0.8.9 (contracts/IDividendTracker.sol#8)
- ^0.8.9 (contracts/IDogeshipToken.sol#2)
- ^0.8.0 (contracts/IERC20.sol#3)
- ^0.8.9 (contracts/IPancakeFactory.sol#2)
- ^0.8.9 (contracts/IPancakePair.sol#2)
- ^0.8.9 (contracts/IPancakeRouter01.sol#2)
- ^0.8.9 (contracts/IPancakeRouter02.sol#2)
- ^0.8.0 (contracts/Ownable.sol#3)
- ^0.8.0 (contracts/SafeMath.sol#3)
Use one Solidity version.

Additional information: link

Context._msgData() (contracts/Context.sol#20-22) is never used and should be removed
SafeMath.div(uint256,uint256,string) (contracts/SafeMath.sol#190-199) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/SafeMath.sol#150-152) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/SafeMath.sol#216-225) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (contracts/SafeMath.sol#21-27) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (contracts/SafeMath.sol#63-68) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (contracts/SafeMath.sol#75-80) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (contracts/SafeMath.sol#46-56) is never used and should be removed
SafeMath.trySub(uint256,uint256) (contracts/SafeMath.sol#34-39) is never used and should be removed
Remove unused functions.

Additional information: link

DogeshipToken.swapThreshold (contracts/DogeshipToken.sol#82) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 5000
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.8.0 (contracts/Context.sol#3) allows old versions
Pragma version^0.8.9 (contracts/DividendTracker.sol#8) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version^0.8.9 (contracts/DogeshipToken.sol#23) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version^0.8.9 (contracts/IDividendTracker.sol#8) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version^0.8.9 (contracts/IDogeshipToken.sol#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version^0.8.0 (contracts/IERC20.sol#3) allows old versions
Pragma version^0.8.9 (contracts/IPancakeFactory.sol#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version^0.8.9 (contracts/IPancakePair.sol#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version^0.8.9 (contracts/IPancakeRouter01.sol#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version^0.8.9 (contracts/IPancakeRouter02.sol#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version^0.8.0 (contracts/Ownable.sol#3) allows old versions
Pragma version^0.8.0 (contracts/SafeMath.sol#3) allows old versions
solc-0.8.10 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

Reentrancy in DogeshipToken._transferFrom(address,address,uint256) (contracts/DogeshipToken.sol#177-224):
External calls:
- doSwap() (contracts/DogeshipToken.sol#188)
- address(charityWallet).transfer(amountETHCharity) (contracts/DogeshipToken.sol#345)
External calls sending eth:
- doSwap() (contracts/DogeshipToken.sol#188)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,liquidityWallet,block.timestamp) (contracts/DogeshipToken.sol#329-336)
- dividendTracker.deposit{value: amountETHReflection}() (contracts/DogeshipToken.sol#341)
- address(charityWallet).transfer(amountETHCharity) (contracts/DogeshipToken.sol#345)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (contracts/DogeshipToken.sol#195)
- _balances[DEAD] = _balances[DEAD].add(burnAmount) (contracts/DogeshipToken.sol#199)
- _balances[address(this)] = _balances[address(this)].add(feesCollected) (contracts/DogeshipToken.sol#205)
- _balances[recipient] = _balances[recipient].add(totalAmountAfterFees) (contracts/DogeshipToken.sol#210)
Event emitted after the call(s):
- Transfer(sender,DEAD,burnAmount) (contracts/DogeshipToken.sol#200)
- Transfer(sender,address(this),feesCollected) (contracts/DogeshipToken.sol#206)
- Transfer(sender,recipient,totalAmountAfterFees) (contracts/DogeshipToken.sol#211)
Reentrancy in DividendTracker.setShare(address,uint256) (contracts/DividendTracker.sol#49-63):
External calls:
- distributeDividend(shareholder) (contracts/DividendTracker.sol#52)
- address(shareholder).transfer(amount) (contracts/DividendTracker.sol#93)
State variables written after the call(s):
- shares[shareholder].amount = amount (contracts/DividendTracker.sol#59)
- shares[shareholder].totalExcluded = calculateDividends(shares[shareholder].amount) (contracts/DividendTracker.sol#62)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (contracts/DividendTracker.sol#56)
Apply the check-effects-interactions pattern.

Additional information: link

Variable DogeshipToken.CHARITY_WALLET (contracts/DogeshipToken.sol#38) is too similar to DogeshipToken.setCharityWallet(address)._charityWallet (contracts/DogeshipToken.sol#402)
Variable DogeshipToken.CHARITY_WALLET (contracts/DogeshipToken.sol#38) is too similar to IDogeshipToken.setCharityWallet(address)._charityWallet (contracts/IDogeshipToken.sol#40)
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/IPancakeRouter01.sol#11) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/IPancakeRouter01.sol#12)
Prevent variables from having similar names.

Additional information: link

DividendTracker.slitherConstructorVariables() (contracts/DividendTracker.sol#13-142) uses literals with too many digits:
- minDistribution = 1000000000000000 (contracts/DividendTracker.sol#34)
DogeshipToken.slitherConstructorConstantVariables() (contracts/DogeshipToken.sol#33-475) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (contracts/DogeshipToken.sol#37)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DividendTracker.shareholders (contracts/DividendTracker.sol#20) is never used in DividendTracker (contracts/DividendTracker.sol#13-142)
DividendTracker.shareholderIndexes (contracts/DividendTracker.sol#21) is never used in DividendTracker (contracts/DividendTracker.sol#13-142)
DogeshipToken.factory (contracts/DogeshipToken.sol#70) is never used in DogeshipToken (contracts/DogeshipToken.sol#33-475)
Remove unused state variables.

Additional information: link

DividendTracker.dividendsPerShareAccuracyFactor (contracts/DividendTracker.sol#30) should be constant
DogeshipToken._totalSupply (contracts/DogeshipToken.sol#54) should be constant
DogeshipToken.feeDenominator (contracts/DogeshipToken.sol#62) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

getAccountStatus(address) should be declared external:
- DividendTracker.getAccountStatus(address) (contracts/DividendTracker.sol#118-129)
setName(string,string) should be declared external:
- DogeshipToken.setName(string,string) (contracts/DogeshipToken.sol#134-137)
approve(address,uint256) should be declared external:
- DogeshipToken.approve(address,uint256) (contracts/DogeshipToken.sol#170-174)
claim() should be declared external:
- DogeshipToken.claim() (contracts/DogeshipToken.sol#466-468)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/Ownable.sol#53-55)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/Ownable.sol#61-64)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.

Contract has 12% buy tax and 12% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


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


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account has relatively few subscribers


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 on CoinGecko

Additional information: link


Unable to find token on 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 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 token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for $DST

News for $DST