AceD Entertainment Token Logo

AceD [AceD Entertainment] Token

About AceD

Listings

Token 3 years
CoinGecko 2 years
CoinMarketCap 2 years
[CoinMarketCap] alert: AceD has been migrated to a new contract address. The old page can be visited here
[CoinGecko] alert: Old Aced page at: https://www.coingecko.com/en/coins/aced-old?locale=en

AceD coin is a privacy oriented platform. Community driven currency, anyone can create or vote AceD governance proposals. Features include private send and instant payments. Transactions are 100% private and confirm in less than 1 second.

Laser Scorebeta Last Audit: 9 June 2022

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

AceD.swapBack() (#598-640) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#624)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#625)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#630-637)
AceD.buyTokens(uint256,address) (#669-680) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#674-679)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in AceD._transferFrom(address,address,uint256) (#523-546):
External calls:
- swapBack() (#528)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#608-614)
- distributor.deposit{value: amountBNBReflection}() (#624)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#630-637)
- triggerAutoBuyback() (#529)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#674-679)
External calls sending eth:
- swapBack() (#528)
- distributor.deposit{value: amountBNBReflection}() (#624)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#625)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#630-637)
- triggerAutoBuyback() (#529)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#674-679)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#533)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#537)
- amountReceived = takeFee(sender,recipient,amount) (#535)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#585)
- triggerAutoBuyback() (#529)
- inSwap = true (#462)
- inSwap = false (#462)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#354-365) ignores return value by BUSD.transfer(shareholder,amount) (#360)
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.


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Contract ownership is not renounced (belongs to a wallet)

Reentrancy in AceD.constructor(address) (#464-488):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#468)
State variables written after the call(s):
- WBNB = router.WETH() (#470)
Reentrancy in DividendDistributor.distributeDividend(address) (#354-365):
External calls:
- BUSD.transfer(shareholder,amount) (#360)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#362)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#363)
Reentrancy in DividendDistributor.process(uint256) (#323-347):
External calls:
- distributeDividend(shareholders[currentIndex]) (#339)
- BUSD.transfer(shareholder,amount) (#360)
State variables written after the call(s):
- currentIndex ++ (#344)
Reentrancy in DividendDistributor.setShare(address,uint256) (#287-301):
External calls:
- distributeDividend(shareholder) (#289)
- BUSD.transfer(shareholder,amount) (#360)
State variables written after the call(s):
- shares[shareholder].amount = amount (#299)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#300)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#282-285) should emit an event for:
- minPeriod = _minPeriod (#283)
- minDistribution = _minDistribution (#284)
AceD.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#682-689) should emit an event for:
- autoBuybackCap = _cap (#684)
- autoBuybackAmount = _amount (#686)
AceD.setBuybackMultiplierSettings(uint256,uint256,uint256) (#691-696) should emit an event for:
- buybackMultiplierNumerator = numerator (#693)
- buybackMultiplierDenominator = denominator (#694)
- buybackMultiplierLength = length (#695)
AceD.setTxLimit(uint256) (#708-711) should emit an event for:
- _maxTxAmount = amount (#710)
AceD.setFees(uint256,uint256,uint256,uint256,uint256) (#731-739) should emit an event for:
- liquidityFee = _liquidityFee (#732)
- reflectionFee = _reflectionFee (#734)
- marketingFee = _marketingFee (#735)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#736)
- feeDenominator = _feeDenominator (#737)
AceD.setSwapBackSettings(bool,uint256) (#746-749) should emit an event for:
- swapThreshold = _amount (#748)
AceD.setTargetLiquidity(uint256,uint256) (#751-754) should emit an event for:
- targetLiquidity = _target (#752)
- targetLiquidityDenominator = _denominator (#753)
Emit an event for critical parameter changes.

Additional information: link

DividendDistributor.distributeDividend(address) (#354-365) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#360)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in AceD.constructor(address) (#464-488):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#468)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = _totalSupply (#469)
- approve(_dexRouter,_totalSupply) (#484)
- _allowances[msg.sender][spender] = amount (#502)
- approve(address(pair),_totalSupply) (#485)
- _allowances[msg.sender][spender] = amount (#502)
- _balances[msg.sender] = _totalSupply (#486)
- autoLiquidityReceiver = msg.sender (#481)
- buyBacker[msg.sender] = true (#479)
- distributor = new DividendDistributor(_dexRouter) (#471)
- distributorAddress = address(distributor) (#472)
- isDividendExempt[pair] = true (#476)
- isDividendExempt[address(this)] = true (#477)
- isDividendExempt[DEAD] = true (#478)
- isFeeExempt[msg.sender] = true (#474)
- isTxLimitExempt[msg.sender] = true (#475)
- marketingFeeReceiver = msg.sender (#482)
Reentrancy in DividendDistributor.deposit() (#303-321):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#310-315)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#320)
- totalDividends = totalDividends.add(amount) (#319)
Reentrancy in DividendDistributor.distributeDividend(address) (#354-365):
External calls:
- BUSD.transfer(shareholder,amount) (#360)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#361)
Reentrancy in DividendDistributor.setShare(address,uint256) (#287-301):
External calls:
- distributeDividend(shareholder) (#289)
- BUSD.transfer(shareholder,amount) (#360)
State variables written after the call(s):
- addShareholder(shareholder) (#293)
- shareholderIndexes[shareholder] = shareholders.length (#387)
- removeShareholder(shareholder) (#295)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#393)
- addShareholder(shareholder) (#293)
- shareholders.push(shareholder) (#388)
- removeShareholder(shareholder) (#295)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#392)
- shareholders.pop() (#394)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#298)
Reentrancy in AceD.triggerAutoBuyback() (#662-667):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#663)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#674-679)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#665)
- autoBuybackBlockLast = block.number (#664)
- autoBuybackEnabled = false (#666)
Reentrancy in AceD.triggerZeusBuyback(uint256,bool) (#650-656):
External calls:
- buyTokens(amount,DEAD) (#651)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#674-679)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#653)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AceD._transferFrom(address,address,uint256) (#523-546):
External calls:
- swapBack() (#528)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#608-614)
- distributor.deposit{value: amountBNBReflection}() (#624)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#630-637)
- triggerAutoBuyback() (#529)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#674-679)
- distributor.setShare(sender,_balances[sender]) (#539)
- distributor.setShare(recipient,_balances[recipient]) (#540)
- distributor.process(distributorGas) (#542)
External calls sending eth:
- swapBack() (#528)
- distributor.deposit{value: amountBNBReflection}() (#624)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#625)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#630-637)
- triggerAutoBuyback() (#529)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#674-679)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#544)
Reentrancy in AceD._transferFrom(address,address,uint256) (#523-546):
External calls:
- swapBack() (#528)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#608-614)
- distributor.deposit{value: amountBNBReflection}() (#624)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#630-637)
- triggerAutoBuyback() (#529)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#674-679)
External calls sending eth:
- swapBack() (#528)
- distributor.deposit{value: amountBNBReflection}() (#624)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#625)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#630-637)
- triggerAutoBuyback() (#529)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#674-679)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#586)
- amountReceived = takeFee(sender,recipient,amount) (#535)
Reentrancy in AceD.constructor(address) (#464-488):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#468)
Event emitted after the call(s):
- Approval(msg.sender,spender,amount) (#503)
- approve(address(pair),_totalSupply) (#485)
- Approval(msg.sender,spender,amount) (#503)
- approve(_dexRouter,_totalSupply) (#484)
- Transfer(address(0),msg.sender,_totalSupply) (#487)
Reentrancy in AceD.swapBack() (#598-640):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#608-614)
- distributor.deposit{value: amountBNBReflection}() (#624)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#630-637)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#624)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#625)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#630-637)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#638)
Reentrancy in AceD.triggerZeusBuyback(uint256,bool) (#650-656):
External calls:
- buyTokens(amount,DEAD) (#651)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#674-679)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#654)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#349-352) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#350-351)
AceD.getMultipliedFee() (#571-580) uses timestamp for comparisons
Dangerous comparisons:
- launchedAtTimestamp + 86400 > block.timestamp (#572)
- buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#574)
AceD.shouldSwapBack() (#591-596) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#592-595)
AceD.isOverLiquified(uint256,uint256) (#773-775) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#774)
Avoid relying on block.timestamp.

Additional information: link

AceD.onlyBuybacker() (#497) compares to a boolean constant:
-require(bool,string)(buyBacker[msg.sender] == true,) (#497)
Remove the equality to the boolean constant.

Additional information: link

DividendDistributor.process(uint256) (#323-347) has costly operations inside a loop:
- currentIndex = 0 (#335)
DividendDistributor.distributeDividend(address) (#354-365) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#359)
DividendDistributor.process(uint256) (#323-347) has costly operations inside a loop:
- currentIndex ++ (#344)
Use a local variable to hold the loop computation result.

Additional information: link

AceD.launched() (#698-700) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#80-85) is never used and should be removed
SafeMath.mod(uint256,uint256) (#69-71) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#87-92) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#12-18) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#39-44) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#46-51) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#27-37) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#20-25) is never used and should be removed
Remove unused functions.

Additional information: link

AceD._maxTxAmount (#413) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(400)
AceD.swapThreshold (#460) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 2000
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

Reentrancy in AceD._transferFrom(address,address,uint256) (#523-546):
External calls:
- swapBack() (#528)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#625)
External calls sending eth:
- swapBack() (#528)
- distributor.deposit{value: amountBNBReflection}() (#624)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#625)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#630-637)
- triggerAutoBuyback() (#529)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#674-679)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#533)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#537)
- amountReceived = takeFee(sender,recipient,amount) (#535)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#585)
- triggerAutoBuyback() (#529)
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#665)
- triggerAutoBuyback() (#529)
- autoBuybackBlockLast = block.number (#664)
- triggerAutoBuyback() (#529)
- autoBuybackEnabled = false (#666)
- triggerAutoBuyback() (#529)
- inSwap = true (#462)
- inSwap = false (#462)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#586)
- amountReceived = takeFee(sender,recipient,amount) (#535)
- Transfer(sender,recipient,amountReceived) (#544)
Reentrancy in AceD.swapBack() (#598-640):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#625)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#624)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#625)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#630-637)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#638)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

AceD.BUSD (#402) is never used in AceD (#398-780)
AceD.DEAD_NON_CHECKSUM (#406) is never used in AceD (#398-780)
Remove unused state variables.

Additional information: link

AceD.BUSD (#402) should be constant
AceD.DEAD (#404) should be constant
AceD.DEAD_NON_CHECKSUM (#406) should be constant
AceD.ZERO (#405) should be constant
AceD._totalSupply (#412) should be constant
DividendDistributor.WBNB (#244) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#257) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Pragma version^0.8.0 (#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

AceD.slitherConstructorVariables() (#398-780) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#404)
AceD.slitherConstructorVariables() (#398-780) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#405)
AceD.slitherConstructorVariables() (#398-780) uses literals with too many digits:
- DEAD_NON_CHECKSUM = 0x000000000000000000000000000000000000dEaD (#406)
AceD.slitherConstructorVariables() (#398-780) uses literals with too many digits:
- distributorGas = 500000 (#457)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Auth.transferOwnership(address).adr (#164) lacks a zero-check on :
- owner = adr (#165)
AceD.setFeeReceivers(address,address)._autoLiquidityReceiver (#741) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#742)
AceD.setFeeReceivers(address,address)._marketingFeeReceiver (#741) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#743)
Check that the address is not zero.

Additional information: link

Function IDEXRouter.WETH() (#179) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#282) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#282) is not in mixedCase
Variable DividendDistributor._token (#235) is not in mixedCase
Variable DividendDistributor.BUSD (#243) is not in mixedCase
Variable DividendDistributor.WBNB (#244) is not in mixedCase
Parameter AceD.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#682) is not in mixedCase
Parameter AceD.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#682) is not in mixedCase
Parameter AceD.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#682) is not in mixedCase
Parameter AceD.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#682) is not in mixedCase
Parameter AceD.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#731) is not in mixedCase
Parameter AceD.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#731) is not in mixedCase
Parameter AceD.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#731) is not in mixedCase
Parameter AceD.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#731) is not in mixedCase
Parameter AceD.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#731) is not in mixedCase
Parameter AceD.setFeeReceivers(address,address)._autoLiquidityReceiver (#741) is not in mixedCase
Parameter AceD.setFeeReceivers(address,address)._marketingFeeReceiver (#741) is not in mixedCase
Parameter AceD.setSwapBackSettings(bool,uint256)._enabled (#746) is not in mixedCase
Parameter AceD.setSwapBackSettings(bool,uint256)._amount (#746) is not in mixedCase
Parameter AceD.setTargetLiquidity(uint256,uint256)._target (#751) is not in mixedCase
Parameter AceD.setTargetLiquidity(uint256,uint256)._denominator (#751) is not in mixedCase
Parameter AceD.setDistributionCriteria(uint256,uint256)._minPeriod (#756) is not in mixedCase
Parameter AceD.setDistributionCriteria(uint256,uint256)._minDistribution (#756) is not in mixedCase
Variable AceD.BUSD (#402) is not in mixedCase
Variable AceD.WBNB (#403) is not in mixedCase
Variable AceD.DEAD (#404) is not in mixedCase
Variable AceD.ZERO (#405) is not in mixedCase
Variable AceD.DEAD_NON_CHECKSUM (#406) is not in mixedCase
Constant AceD._name (#408) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AceD._symbol (#409) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AceD._decimals (#410) is not in UPPER_CASE_WITH_UNDERSCORES
Variable AceD._totalSupply (#412) is not in mixedCase
Variable AceD._maxTxAmount (#413) is not in mixedCase
Variable AceD._balances (#415) is not in mixedCase
Variable AceD._allowances (#416) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#136-138)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#143-145)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#164-168)
launch() should be declared external:
- AceD.launch() (#702-706)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain

Contract has 4% buy tax and 3% 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.


Average 30d PancakeSwap volume is low.


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


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


Token has only one trading pair


Average 30d number of PancakeSwap swaps is low.


Last post in Twitter was more than 30 days ago


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

Additional information: link


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank


Token has relatively low CoinGecko rank

Price for AceD

News for AceD