Magix Token 🔥 Earn passive BUSD income buy just Holding 💸
✅BSC Verified Contract
✅Doxed Dev & Core team
✅Auto BUSD Rewards
✅Hyper-Deflationary
✅Anti-Whale
✅Anti-Bot/Sniper Bot
✅Weekly Lottery
✅Auto-Burn
✅Liquidity will be locked on Mudra for 180 Days and Mudra Certificate Link will be shared 🔥
♻️7% BUSD Rewards
🔒2% Liquidity
📈2% Buy-Back
🚀3% Marketing
🔥1% burn
🚀Fair Launching on January 13th 18:00 UTC
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Magix.swapBack() (#708-764) sends eth to arbitrary user
Dangerous calls:
- (marketSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#737)
- (buybackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBBuyback}() (#738)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Magix._transferFrom(address,address,uint256) (#620-649):
External calls:
- swapBack() (#628)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#719-763)
- distributor.deposit{value: amountBNBReflection}() (#736)
- (marketSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#737)
- (buybackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBBuyback}() (#738)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#744-755)
External calls sending eth:
- swapBack() (#628)
- distributor.deposit{value: amountBNBReflection}() (#736)
- (marketSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#737)
- (buybackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBBuyback}() (#738)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#744-755)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#637)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#640)
- amountReceived = takeFee(sender,amount) (#639)
- _balances[address(this)] = _balances[address(this)].add(finalFee) (#685)
- _balances[DEAD] = _balances[DEAD].add(burnAmount) (#686)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#453-464) ignores return value by BUSD.transfer(shareholder,amount) (#459)
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.
Magix._maxTxAmount (#510) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 10000
Magix._maxHold (#513) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 300
Magix.swapThreshold (#550) 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
Magix.takeFee(address,uint256) (#679-691) performs a multiplication on the result of a division:
-feeAmount = amount.mul(getTotalFee()).div(feeDenominator) (#680)
-burnAmount = feeAmount.mul(burnFee).div(totalFee) (#682)
Magix.setMaxHoldPercentage(uint256) (#857-859) performs a multiplication on the result of a division:
-_maxHold = (_totalSupply / 100) * percent (#858)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#453-464):
External calls:
- BUSD.transfer(shareholder,amount) (#459)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#461)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#462)
Reentrancy in DividendDistributor.process(uint256) (#422-446):
External calls:
- distributeDividend(shareholders[currentIndex]) (#438)
- BUSD.transfer(shareholder,amount) (#459)
State variables written after the call(s):
- currentIndex ++ (#443)
Reentrancy in DividendDistributor.setShare(address,uint256) (#386-400):
External calls:
- distributeDividend(shareholder) (#388)
- BUSD.transfer(shareholder,amount) (#459)
State variables written after the call(s):
- shares[shareholder].amount = amount (#398)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#399)
Apply the check-effects-interactions pattern.
Additional information: link
MBCAuth.constructor(address).i (#155) is a local variable never initialized
MBCAuth.unauthorizeForMultiplePermissions(address,string[]).i (#234) is a local variable never initialized
Magix.swapBack().e (#759) is a local variable never initialized
MBCAuth.transferOwnership(address).i (#268) is a local variable never initialized
MBCAuth.authorizeForMultiplePermissions(address,string[]).i (#210) 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
Magix.swapBack() (#708-764) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#744-755)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#381-384) should emit an event for:
- minPeriod = _minPeriod (#382)
- minDistribution = _minDistribution (#383)
Magix.setTxLimit(uint256,bool) (#779-787) should emit an event for:
- _maxTxAmount = amount (#782)
- _maxTxAmount = amount (#785)
Magix.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#811-819) should emit an event for:
- liquidityFee = _liquidityFee (#812)
- reflectionFee = _reflectionFee (#813)
- marketingFee = _marketingFee (#814)
- buybackFee = _buybackFee (#815)
- burnFee = _burnFee (#816)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_buybackFee).add(_burnFee) (#817)
- feeDenominator = _feeDenominator (#818)
Magix.setSwapBackSettings(bool,uint256) (#827-830) should emit an event for:
- swapThreshold = _amount (#829)
Magix.setLaunchedAt(uint256) (#877-879) should emit an event for:
- launchedAt = launched_ (#878)
Emit an event for critical parameter changes.
Additional information: link
MBCAuth.transferOwnership(address).adr (#265) lacks a zero-check on :
- owner = adr (#267)
Magix.constructor().owner_ (#570) lacks a zero-check on :
- autoLiquidityReceiver = owner_ (#582)
Magix.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#821) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#822)
Magix.setFeeReceivers(address,address,address)._marketingFeeReceiver (#821) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#823)
Magix.setFeeReceivers(address,address,address)._buybackFeeReciever (#821) lacks a zero-check on :
- buybackFeeReceiver = _buybackFeeReciever (#824)
Magix.clearStuckBNB(address).wallet (#853) lacks a zero-check on :
- address(wallet).transfer(address(this).balance) (#854)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#453-464) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#459)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'Magix.swapBack().e (#759)' in Magix.swapBack() (#708-764) potentially used before declaration: SwapBackFailed(string(abi.encodePacked(SwapBack failed with error ,e))) (#760)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.
Additional information: link
Reentrancy in Magix._transferFrom(address,address,uint256) (#620-649):
External calls:
- swapBack() (#628)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#719-763)
- distributor.deposit{value: amountBNBReflection}() (#736)
- (marketSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#737)
- (buybackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBBuyback}() (#738)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#744-755)
External calls sending eth:
- swapBack() (#628)
- distributor.deposit{value: amountBNBReflection}() (#736)
- (marketSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#737)
- (buybackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBBuyback}() (#738)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#744-755)
State variables written after the call(s):
- launch() (#630)
- launchedAt = block.number (#771)
Reentrancy in Magix.constructor() (#561-586):
External calls:
- pancakeV2BNBPair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#564)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = ~ uint256(0) (#565)
- _balances[owner_] = _totalSupply (#584)
- autoLiquidityReceiver = owner_ (#582)
- distributor = new DividendDistributor(address(router)) (#568)
- isDividendExempt[pancakeV2BNBPair] = true (#575)
- isDividendExempt[address(this)] = true (#577)
- isDividendExempt[DEAD] = true (#580)
- isFeeExempt[owner_] = true (#572)
- isFeeExempt[address(this)] = true (#578)
- isMaxHoldExempt[owner_] = true (#574)
- isMaxHoldExempt[pancakeV2BNBPair] = true (#576)
- isTxLimitExempt[owner_] = true (#573)
- isTxLimitExempt[address(this)] = true (#579)
- pairs.push(pancakeV2BNBPair) (#567)
Reentrancy in DividendDistributor.deposit() (#402-420):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#409-414)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#419)
- totalDividends = totalDividends.add(amount) (#418)
Reentrancy in DividendDistributor.distributeDividend(address) (#453-464):
External calls:
- BUSD.transfer(shareholder,amount) (#459)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#460)
Reentrancy in DividendDistributor.setShare(address,uint256) (#386-400):
External calls:
- distributeDividend(shareholder) (#388)
- BUSD.transfer(shareholder,amount) (#459)
State variables written after the call(s):
- addShareholder(shareholder) (#392)
- shareholderIndexes[shareholder] = shareholders.length (#486)
- removeShareholder(shareholder) (#394)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#492)
- addShareholder(shareholder) (#392)
- shareholders.push(shareholder) (#487)
- removeShareholder(shareholder) (#394)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#491)
- shareholders.pop() (#493)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#397)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Magix._transferFrom(address,address,uint256) (#620-649):
External calls:
- swapBack() (#628)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#719-763)
- distributor.deposit{value: amountBNBReflection}() (#736)
- (marketSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#737)
- (buybackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBBuyback}() (#738)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#744-755)
External calls sending eth:
- swapBack() (#628)
- distributor.deposit{value: amountBNBReflection}() (#736)
- (marketSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#737)
- (buybackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBBuyback}() (#738)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#744-755)
Event emitted after the call(s):
- Launched(block.number,block.timestamp) (#772)
- launch() (#630)
- Transfer(sender,DEAD,burnAmount) (#687)
- amountReceived = takeFee(sender,amount) (#639)
- Transfer(sender,address(this),finalFee) (#688)
- amountReceived = takeFee(sender,amount) (#639)
Reentrancy in Magix._transferFrom(address,address,uint256) (#620-649):
External calls:
- swapBack() (#628)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#719-763)
- distributor.deposit{value: amountBNBReflection}() (#736)
- (marketSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#737)
- (buybackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBBuyback}() (#738)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#744-755)
- distributor.setShare(sender,_balances[sender]) (#642)
- distributor.setShare(recipient,_balances[recipient]) (#643)
- distributor.process(distributorGas) (#645)
External calls sending eth:
- swapBack() (#628)
- distributor.deposit{value: amountBNBReflection}() (#736)
- (marketSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#737)
- (buybackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBBuyback}() (#738)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#744-755)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#647)
Reentrancy in Magix.constructor() (#561-586):
External calls:
- pancakeV2BNBPair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#564)
Event emitted after the call(s):
- Transfer(address(0),owner_,_totalSupply) (#585)
Reentrancy in Magix.swapBack() (#708-764):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#719-763)
- distributor.deposit{value: amountBNBReflection}() (#736)
- (marketSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#737)
- (buybackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBBuyback}() (#738)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#736)
- (marketSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#737)
- (buybackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBBuyback}() (#738)
Event emitted after the call(s):
- BuybackTransfer(buybackSuccess) (#741)
- MarketTransfer(marketSuccess) (#740)
Reentrancy in Magix.swapBack() (#708-764):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#719-763)
- distributor.deposit{value: amountBNBReflection}() (#736)
- (marketSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#737)
- (buybackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBBuyback}() (#738)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#744-755)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#736)
- (marketSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#737)
- (buybackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBBuyback}() (#738)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#744-755)
Event emitted after the call(s):
- AutoLiquify(amountToLiquify,amountBNBLiquidity) (#752)
- AutoLiquify(0,0) (#754)
- SwapBackSuccess(amountToSwap) (#758)
Reentrancy in Magix.swapBack() (#708-764):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#719-763)
Event emitted after the call(s):
- SwapBackFailed(string(abi.encodePacked(SwapBack failed with error ,e))) (#760)
- SwapBackFailed(SwapBack failed without an error message from pancakeSwap) (#762)
Apply the check-effects-interactions pattern.
Additional information: link
MBCAuth.unlockPermission(string) (#309-314) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > getPermissionUnlockTime(permissionName),Permission is locked until the expiry time.) (#310)
DividendDistributor.shouldDistribute(address) (#448-451) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#449-450)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#422-446) has costly operations inside a loop:
- currentIndex = 0 (#434)
DividendDistributor.distributeDividend(address) (#453-464) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#458)
DividendDistributor.process(uint256) (#422-446) has costly operations inside a loop:
- currentIndex ++ (#443)
Use a local variable to hold the loop computation result.
Additional information: link
Magix.isSell(address) (#693-699) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Magix.swapBack() (#708-764):
- (marketSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#737)
- (buybackSuccess) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBBuyback}() (#738)
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() (#76) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#381) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#381) is not in mixedCase
Variable DividendDistributor._token (#334) is not in mixedCase
Variable DividendDistributor.BUSD (#342) is not in mixedCase
Variable DividendDistributor.WBNB (#343) is not in mixedCase
Parameter Magix.freeze(bool)._freeze (#775) is not in mixedCase
Parameter Magix.setTxLimit(uint256,bool)._withCSupply (#779) is not in mixedCase
Parameter Magix.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#811) is not in mixedCase
Parameter Magix.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#811) is not in mixedCase
Parameter Magix.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#811) is not in mixedCase
Parameter Magix.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFee (#811) is not in mixedCase
Parameter Magix.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#811) is not in mixedCase
Parameter Magix.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#811) is not in mixedCase
Parameter Magix.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#821) is not in mixedCase
Parameter Magix.setFeeReceivers(address,address,address)._marketingFeeReceiver (#821) is not in mixedCase
Parameter Magix.setFeeReceivers(address,address,address)._buybackFeeReciever (#821) is not in mixedCase
Parameter Magix.setSwapBackSettings(bool,uint256)._enabled (#827) is not in mixedCase
Parameter Magix.setSwapBackSettings(bool,uint256)._amount (#827) is not in mixedCase
Parameter Magix.setLiquifyEnabled(bool)._enabled (#832) is not in mixedCase
Parameter Magix.setDistributionCriteria(uint256,uint256)._minPeriod (#836) is not in mixedCase
Parameter Magix.setDistributionCriteria(uint256,uint256)._minDistribution (#836) is not in mixedCase
Parameter Magix.setFeesOnNormalTransfers(bool)._enabled (#869) is not in mixedCase
Variable Magix.BUSD (#500) is not in mixedCase
Variable Magix.WBNB (#501) is not in mixedCase
Variable Magix.DEAD (#502) is not in mixedCase
Variable Magix.ZERO (#503) is not in mixedCase
Constant Magix._name (#505) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Magix._symbol (#506) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Magix._decimals (#507) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Magix._totalSupply (#509) is not in mixedCase
Variable Magix._maxTxAmount (#510) is not in mixedCase
Variable Magix._maxHold (#513) is not in mixedCase
Variable Magix._balances (#515) is not in mixedCase
Variable Magix._allowances (#516) is not in mixedCase
Variable Magix.freeze_contract (#544) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#81) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#82)
Prevent variables from having similar names.
Additional information: link
Magix.setDistributorSettings(uint256) (#840-843) uses literals with too many digits:
- require(bool)(gas <= 1000000) (#841)
Magix.slitherConstructorVariables() (#497-881) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#502)
Magix.slitherConstructorVariables() (#497-881) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#503)
Magix.slitherConstructorVariables() (#497-881) uses literals with too many digits:
- _totalSupply = 100000000000000000000000000000 (#509)
Magix.slitherConstructorVariables() (#497-881) uses literals with too many digits:
- distributorGas = 600000 (#547)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Magix.BUSD (#500) is never used in Magix (#497-881)
Remove unused state variables.
Additional information: link
DividendDistributor.WBNB (#343) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#356) should be constant
Magix.BUSD (#500) should be constant
Magix.DEAD (#502) should be constant
Magix.WBNB (#501) should be constant
Magix.ZERO (#503) should be constant
Magix._totalSupply (#509) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
authorizeFor(address,string) should be declared external:
- MBCAuth.authorizeFor(address,string) (#200-204)
authorizeForMultiplePermissions(address,string[]) should be declared external:
- MBCAuth.authorizeForMultiplePermissions(address,string[]) (#209-215)
unauthorizeFor(address,string) should be declared external:
- MBCAuth.unauthorizeFor(address,string) (#220-226)
unauthorizeForMultiplePermissions(address,string[]) should be declared external:
- MBCAuth.unauthorizeForMultiplePermissions(address,string[]) (#231-239)
isAuthorizedFor(address,string) should be declared external:
- MBCAuth.isAuthorizedFor(address,string) (#251-253)
transferOwnership(address) should be declared external:
- MBCAuth.transferOwnership(address) (#265-273)
getPermissionNameToIndex(string) should be declared external:
- MBCAuth.getPermissionNameToIndex(string) (#278-280)
isLocked(string) should be declared external:
- MBCAuth.isLocked(string) (#292-294)
lockPermission(string,uint64) should be declared external:
- MBCAuth.lockPermission(string,uint64) (#299-304)
unlockPermission(string) should be declared external:
- MBCAuth.unlockPermission(string) (#309-314)
Use the external attribute for functions never called from the contract.
Additional information: link
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
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.
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 verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
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
Telegram account has relatively few subscribers
Twitter account has relatively few followers
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts