DuckCoin Token Logo

DCOIN [DuckCoin] Token

About DCOIN

Listings

Token 4 years
white paper

What the Duck is going on? Welcome to Duck Coin. We are the flyest new Memecoin on BSC and we’re flapping our wings all the way to the moon! Join us as we waddle our way to a strong community and give all ducks on the blockchain a path to the DuckVerse on the moon!

🦆100,000,000,000 Total Supply

🦆8% Buy & Sell
🦆4% Marketing
🦆4% Auto LP

✅ 2% Max Wallet
✅ 1% Max Transaction

Social

Laser Scorebeta Last Audit: 19 April 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links

DuckCoin.swapBack() (#587-633) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


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

Reentrancy in DuckCoin._transferFrom(address,address,uint256) (#469-518):
External calls:
- swapBack() (#497)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#598-604)
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
External calls sending eth:
- swapBack() (#497)
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#500)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#503)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#502)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#543)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#544)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#287-298) ignores return value by RWRD.transfer(shareholder,amount) (#293)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.


Contract ownership is not renounced (belongs to a wallet)

DuckCoin.swapBack().tmpSuccess (#616) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
(tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
DuckCoin.swapBack().tmpSuccess (#616) is written in both
(tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
tmpSuccess = false (#620)
Fix or remove the writes.

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.

DuckCoin.takeFee(address,uint256,bool) (#535-552) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#538)
-burnTokens = feeAmount.mul(burnFee).div(totalFee) (#540)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#287-298):
External calls:
- RWRD.transfer(shareholder,amount) (#293)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#295)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#296)
Reentrancy in DividendDistributor.process(uint256) (#256-280):
External calls:
- distributeDividend(shareholders[currentIndex]) (#272)
- RWRD.transfer(shareholder,amount) (#293)
State variables written after the call(s):
- currentIndex ++ (#277)
Reentrancy in DividendDistributor.setShare(address,uint256) (#220-234):
External calls:
- distributeDividend(shareholder) (#222)
- RWRD.transfer(shareholder,amount) (#293)
State variables written after the call(s):
- shares[shareholder].amount = amount (#232)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#233)
Apply the check-effects-interactions pattern.

Additional information: link

DuckCoin.manage_blacklist(address[],bool).i (#651) 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

DuckCoin.swapBack() (#587-633) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#215-218) should emit an event for:
- minPeriod = _minPeriod (#216)
- minDistribution = _minDistribution (#217)
DuckCoin.setMaxTxPercent_base1000(uint256) (#460-462) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#461)
DuckCoin.setTxLimit(uint256) (#464-466) should emit an event for:
- _maxTxAmount = amount (#465)
DuckCoin.set_sell_multiplier(uint256) (#571-573) should emit an event for:
- sellMultiplier = Multiplier (#572)
DuckCoin.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#669-678) should emit an event for:
- liquidityFee = _liquidityFee (#670)
- reflectionFee = _reflectionFee (#671)
- marketingFee = _marketingFee (#672)
- ecosystemfee = _ecosystemfee (#673)
- burnFee = _burnFee (#674)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_ecosystemfee).add(_burnFee) (#675)
- feeDenominator = _feeDenominator (#676)
DuckCoin.setSwapBackSettings(bool,uint256) (#687-690) should emit an event for:
- swapThreshold = _amount (#689)
DuckCoin.setTargetLiquidity(uint256,uint256) (#692-695) should emit an event for:
- targetLiquidity = _target (#693)
- targetLiquidityDenominator = _denominator (#694)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#97) lacks a zero-check on :
- owner = adr (#98)
DuckCoin.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#680) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#681)
DuckCoin.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#680) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#682)
DuckCoin.setFeeReceivers(address,address,address,address)._ecosystemfeeReceiver (#680) lacks a zero-check on :
- ecosystemfeeReceiver = _ecosystemfeeReceiver (#683)
DuckCoin.setFeeReceivers(address,address,address,address)._burnFeeReceiver (#680) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#684)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#287-298) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#293)
DuckCoin.multiTransfer(address,address[],uint256[]) (#721-745) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#737)
DuckCoin.multiTransfer_fixed(address,address[],uint256) (#747-766) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#758)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DuckCoin.constructor() (#398-423):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#400)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#401)
- _balances[msg.sender] = _totalSupply (#421)
- autoLiquidityReceiver = msg.sender (#416)
- burnFeeReceiver = DEAD (#419)
- distributor = new DividendDistributor(address(router)) (#403)
- ecosystemfeeReceiver = 0xFcbA8fdA8cFB9752B764229aAE29601527d796Bf (#418)
- isDividendExempt[pair] = true (#412)
- isDividendExempt[address(this)] = true (#413)
- isDividendExempt[DEAD] = true (#414)
- isFeeExempt[msg.sender] = true (#405)
- isTimelockExempt[msg.sender] = true (#408)
- isTimelockExempt[DEAD] = true (#409)
- isTimelockExempt[address(this)] = true (#410)
- isTxLimitExempt[msg.sender] = true (#406)
- marketingFeeReceiver = 0xFcbA8fdA8cFB9752B764229aAE29601527d796Bf (#417)
Reentrancy in DividendDistributor.deposit() (#236-254):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#243-248)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#253)
- totalDividends = totalDividends.add(amount) (#252)
Reentrancy in DividendDistributor.distributeDividend(address) (#287-298):
External calls:
- RWRD.transfer(shareholder,amount) (#293)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#294)
Reentrancy in DividendDistributor.setShare(address,uint256) (#220-234):
External calls:
- distributeDividend(shareholder) (#222)
- RWRD.transfer(shareholder,amount) (#293)
State variables written after the call(s):
- addShareholder(shareholder) (#226)
- shareholderIndexes[shareholder] = shareholders.length (#320)
- removeShareholder(shareholder) (#228)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#326)
- addShareholder(shareholder) (#226)
- shareholders.push(shareholder) (#321)
- removeShareholder(shareholder) (#228)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#325)
- shareholders.pop() (#327)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#231)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DuckCoin._transferFrom(address,address,uint256) (#469-518):
External calls:
- swapBack() (#497)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#598-604)
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
- distributor.setShare(sender,_balances[sender]) (#507)
- distributor.setShare(recipient,_balances[recipient]) (#511)
- distributor.process(distributorGas) (#514)
External calls sending eth:
- swapBack() (#497)
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#516)
Reentrancy in DuckCoin._transferFrom(address,address,uint256) (#469-518):
External calls:
- swapBack() (#497)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#598-604)
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
External calls sending eth:
- swapBack() (#497)
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Event emitted after the call(s):
- Transfer(sender,address(this),contractTokens) (#545)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#502)
- Transfer(sender,burnFeeReceiver,burnTokens) (#548)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#502)
Reentrancy in DuckCoin.constructor() (#398-423):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#400)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#422)
Reentrancy in DuckCoin.swapBack() (#587-633):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#598-604)
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#631)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#282-285) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#283-284)
DuckCoin._transferFrom(address,address,uint256) (#469-518) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#490)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#256-280) has costly operations inside a loop:
- currentIndex = 0 (#268)
DividendDistributor.distributeDividend(address) (#287-298) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#292)
DividendDistributor.process(uint256) (#256-280) has costly operations inside a loop:
- currentIndex ++ (#277)
Use a local variable to hold the loop computation result.

Additional information: link

DuckCoin._maxTxAmount (#344) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(1).div(100)
DuckCoin._maxWalletToken (#345) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(2).div(100)
DuckCoin.totalFee (#364) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + ecosystemfee + burnFee
DuckCoin.swapThreshold (#394) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
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.7.4 (#7) allows old versions
solc-0.7.4 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 DuckCoin.swapBack() (#587-633):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#112) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#215) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#215) is not in mixedCase
Variable DividendDistributor._token (#168) is not in mixedCase
Variable DividendDistributor.RWRD (#176) is not in mixedCase
Variable DividendDistributor.WBNB (#177) is not in mixedCase
Function DuckCoin.setMaxWalletPercent_base1000(uint256) (#457-459) is not in mixedCase
Parameter DuckCoin.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#457) is not in mixedCase
Function DuckCoin.setMaxTxPercent_base1000(uint256) (#460-462) is not in mixedCase
Parameter DuckCoin.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#460) is not in mixedCase
Function DuckCoin.clearStuckBalance_sender(uint256) (#566-569) is not in mixedCase
Function DuckCoin.set_sell_multiplier(uint256) (#571-573) is not in mixedCase
Parameter DuckCoin.set_sell_multiplier(uint256).Multiplier (#571) is not in mixedCase
Parameter DuckCoin.cooldownEnabled(bool,uint8)._status (#582) is not in mixedCase
Parameter DuckCoin.cooldownEnabled(bool,uint8)._interval (#582) is not in mixedCase
Function DuckCoin.enable_blacklist(bool) (#646-648) is not in mixedCase
Parameter DuckCoin.enable_blacklist(bool)._status (#646) is not in mixedCase
Function DuckCoin.manage_blacklist(address[],bool) (#650-654) is not in mixedCase
Parameter DuckCoin.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#669) is not in mixedCase
Parameter DuckCoin.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#669) is not in mixedCase
Parameter DuckCoin.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#669) is not in mixedCase
Parameter DuckCoin.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._ecosystemfee (#669) is not in mixedCase
Parameter DuckCoin.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#669) is not in mixedCase
Parameter DuckCoin.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#669) is not in mixedCase
Parameter DuckCoin.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#680) is not in mixedCase
Parameter DuckCoin.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#680) is not in mixedCase
Parameter DuckCoin.setFeeReceivers(address,address,address,address)._ecosystemfeeReceiver (#680) is not in mixedCase
Parameter DuckCoin.setFeeReceivers(address,address,address,address)._burnFeeReceiver (#680) is not in mixedCase
Parameter DuckCoin.setSwapBackSettings(bool,uint256)._enabled (#687) is not in mixedCase
Parameter DuckCoin.setSwapBackSettings(bool,uint256)._amount (#687) is not in mixedCase
Parameter DuckCoin.setTargetLiquidity(uint256,uint256)._target (#692) is not in mixedCase
Parameter DuckCoin.setTargetLiquidity(uint256,uint256)._denominator (#692) is not in mixedCase
Parameter DuckCoin.setDistributionCriteria(uint256,uint256)._minPeriod (#697) is not in mixedCase
Parameter DuckCoin.setDistributionCriteria(uint256,uint256)._minDistribution (#697) is not in mixedCase
Function DuckCoin.multiTransfer_fixed(address,address[],uint256) (#747-766) is not in mixedCase
Variable DuckCoin.WBNB (#334) is not in mixedCase
Variable DuckCoin.DEAD (#335) is not in mixedCase
Variable DuckCoin.ZERO (#336) is not in mixedCase
Constant DuckCoin._name (#338) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DuckCoin._symbol (#339) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DuckCoin._decimals (#340) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DuckCoin._totalSupply (#342) is not in mixedCase
Variable DuckCoin._maxTxAmount (#344) is not in mixedCase
Variable DuckCoin._maxWalletToken (#345) is not in mixedCase
Variable DuckCoin._balances (#347) is not in mixedCase
Variable DuckCoin._allowances (#348) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

DuckCoin.slitherConstructorVariables() (#331-770) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#335)
DuckCoin.slitherConstructorVariables() (#331-770) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#336)
DuckCoin.slitherConstructorVariables() (#331-770) uses literals with too many digits:
- distributorGas = 500000 (#387)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DividendDistributor.WBNB (#177) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#190) should be constant
DuckCoin.DEAD (#335) should be constant
DuckCoin.WBNB (#334) should be constant
DuckCoin.ZERO (#336) should be constant
DuckCoin._totalSupply (#342) should be constant
DuckCoin.gweiLimit (#383) should be constant
DuckCoin.gweiLimitBlocksAffected (#384) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#81-83)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#85-87)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#97-101)
tradingAllowed() should be declared external:
- DuckCoin.tradingAllowed() (#576-579)
cooldownEnabled(bool,uint8) should be declared external:
- DuckCoin.cooldownEnabled(bool,uint8) (#582-585)
enable_blacklist(bool) should be declared external:
- DuckCoin.enable_blacklist(bool) (#646-648)
manage_blacklist(address[],bool) should be declared external:
- DuckCoin.manage_blacklist(address[],bool) (#650-654)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 10% buy tax and 10% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity is low.


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


Token is deployed only at one blockchain


Token has only one trading pair


Twitter account has relatively few followers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord 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 contract audit


Unable to find code repository for the project


Unable to find audit link on the website


Unable to find whitepaper link on the website


Young tokens have high risks of scam / 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


Token has no active CoinMarketCap listing / rank

Price for DCOIN

News for DCOIN