Dogestribute Token Logo

DGSTB [Dogestribute] Token

About DGSTB

Listings

Token 2 years

Dogestribute, community driven project is a rewards coin designed to increase Doge awareness! Dogestribute features a one of a kind never before seen rewards system promoting sustainability. Introducing Doge Stream.On days where the chart is down and volume is low, holders won’t be receiving as many rewards as they previously were.Doge-stream takes a small portion of the reward pool and separates it from the claimable rewards.Allowing the reward pool to replenish healthily with time and the main goal, ensuring long term holders reap the maximum rewards possible!There is also a play to earn game where top high scorers can earn DogeCoin daily directly to their wallet!

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Dogestribute.buyTokens(uint256,address) (#756-767) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#761-766)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Dogestribute.swapBack(uint256) (#652-701):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#664-670)
- dogestributor.deposit{value: dogeStream}() (#682)
- dogestributor.deposit{value: amountBNBDistribution}() (#684)
External calls sending eth:
- dogestributor.deposit{value: dogeStream}() (#682)
- dogestributor.deposit{value: amountBNBDistribution}() (#684)
State variables written after the call(s):
- lastStream = block.timestamp (#685)
Apply the check-effects-interactions pattern.

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.

Reentrancy in Dogestribute.updateDistributor(address) (#710-714):
External calls:
- dogestributor.migrate(distributor) (#712)
State variables written after the call(s):
- dogestributor = IDogestributor(distributor) (#713)
Apply the check-effects-interactions pattern.

Additional information: link

Dogestribute.swapBack(uint256) (#652-701) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#691-698)
Ensure that all the return values of the function calls are used.

Additional information: link

Dogestribute.openTrading(uint256) (#541-546) should emit an event for:
- deadBlocks = _deadBlocks (#543)
Emit an event for critical parameter changes.

Additional information: link

Dogestribute.setFeeReceivers(address,address)._marketingFeeReceiver (#824) lacks a zero-check on :
- marketingFeeReceiver = address(_marketingFeeReceiver) (#827)
Check that the address is not zero.

Additional information: link

Reentrancy in Dogestribute.switchRouter(address) (#723-731):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#726)
State variables written after the call(s):
- isDividendExempt[pair] = true (#728)
- isTxLimitExempt[newRouter] = true (#729)
- liquidityPools[pair] = true (#727)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Dogestribute.switchRouter(address) (#723-731):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#726)
Event emitted after the call(s):
- UpdatedSettings(Exchange Router Updated,(Log(concatenate(New Router: ,toString(abi.encodePacked(newRouter))),1),Log(concatenate(New Liquidity Pair: ,toString(abi.encodePacked(pair))),1),Log(,0))) (#730)
Apply the check-effects-interactions pattern.

Additional information: link

Dogestribute.swapBack(uint256) (#652-701) uses timestamp for comparisons
Dangerous comparisons:
- autoDogeStream && balanceBefore > 0 && lastStream + streamPeriod < block.timestamp (#680)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#176-197) uses assembly
- INLINE ASM (#189-192)
Do not use evm assembly.

Additional information: link

Dogestribute.buyTokens(uint256,address) (#756-767) is never used and should be removed
Remove unused functions.

Additional information: link

Dogestribute.swapThreshold (#473) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 1000
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

solc-0.8.7 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._functionCallWithValue(address,bytes,uint256,string) (#176-197):
- (success,returndata) = target.call{value: weiValue}(data) (#180)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Dogestribute._allowances (#427) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#206)" inContext (#200-209)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in Dogestribute.swapBack(uint256) (#652-701):
External calls:
- marketingFeeReceiver.transfer(amountBNBMarketing) (#687)
- developer.transfer(amountBNBDeveloper) (#688)
External calls sending eth:
- dogestributor.deposit{value: dogeStream}() (#682)
- dogestributor.deposit{value: amountBNBDistribution}() (#684)
- marketingFeeReceiver.transfer(amountBNBMarketing) (#687)
- developer.transfer(amountBNBDeveloper) (#688)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#691-698)
Event emitted after the call(s):
- FundsDistributed(amountBNBLiquidity,amountToLiquify,amountBNBDistribution,amountBNBMarketing,amountBNBDeveloper) (#700)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#290) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#291)
Prevent variables from having similar names.

Additional information: link

Dogestribute.slitherConstructorVariables() (#410-915) uses literals with too many digits:
- _totalSupply = 1000000 * (10 ** _decimals) (#421)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Dogestribute.routerAddress (#453) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#403-407)
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.


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.


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

Additional information: link


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


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


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


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


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for DGSTB