A first of its kind metaverse token focused on breaking through with utility in the metaverse and real world. As a component of our growing ecosystem ZeldaVerse will support the metaverse gaming side and supply strong buybacks to the rest of our ecosystem.
DividendDistributor.distributeDividend(address) (#285-296) ignores return value by RWRD.transfer(shareholder,amount) (#291)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
OneWorldMeta.swapBack() (#591-637) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#620)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#621)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in OneWorldMeta._transferFrom(address,address,uint256) (#471-523):
External calls:
- BP.protect(sender,recipient,amount) (#473)
- swapBack() (#502)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#602-608)
- distributor.deposit{value: amountBNBReflection}() (#619)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#620)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#621)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#627-634)
External calls sending eth:
- swapBack() (#502)
- distributor.deposit{value: amountBNBReflection}() (#619)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#620)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#621)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#627-634)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#505)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#508)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#507)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#548)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#549)
Apply the check-effects-interactions pattern.
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)
OneWorldMeta.swapBack().tmpSuccess (#620) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#620)
(tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#621)
OneWorldMeta.swapBack().tmpSuccess (#620) is written in both
(tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#621)
tmpSuccess = false (#624)
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.
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
OneWorldMeta.manage_blacklist(address[],bool).i (#655) 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
OneWorldMeta.takeFee(address,uint256,bool) (#540-557) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#543)
-burnTokens = feeAmount.mul(burnFee).div(totalFee) (#545)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#285-296):
External calls:
- RWRD.transfer(shareholder,amount) (#291)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#293)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#294)
Reentrancy in DividendDistributor.process(uint256) (#254-278):
External calls:
- distributeDividend(shareholders[currentIndex]) (#270)
- RWRD.transfer(shareholder,amount) (#291)
State variables written after the call(s):
- currentIndex ++ (#275)
Reentrancy in DividendDistributor.setShare(address,uint256) (#218-232):
External calls:
- distributeDividend(shareholder) (#220)
- RWRD.transfer(shareholder,amount) (#291)
State variables written after the call(s):
- shares[shareholder].amount = amount (#230)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#231)
Apply the check-effects-interactions pattern.
Additional information: link
OneWorldMeta.swapBack() (#591-637) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#627-634)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#213-216) should emit an event for:
- minPeriod = _minPeriod (#214)
- minDistribution = _minDistribution (#215)
OneWorldMeta.setMaxTxPercent_base3000(uint256) (#462-464) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base3000) / 3000 (#463)
OneWorldMeta.setTxLimit(uint256) (#466-468) should emit an event for:
- _maxTxAmount = amount (#467)
OneWorldMeta.set_sell_multiplier(uint256) (#576-578) should emit an event for:
- sellMultiplier = Multiplier (#577)
OneWorldMeta.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#673-682) should emit an event for:
- liquidityFee = _liquidityFee (#674)
- reflectionFee = _reflectionFee (#675)
- marketingFee = _marketingFee (#676)
- ecosystemfee = _ecosystemfee (#677)
- burnFee = _burnFee (#678)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_ecosystemfee).add(_burnFee) (#679)
- feeDenominator = _feeDenominator (#680)
OneWorldMeta.setSwapBackSettings(bool,uint256) (#691-694) should emit an event for:
- swapThreshold = _amount (#693)
OneWorldMeta.setTargetLiquidity(uint256,uint256) (#696-699) should emit an event for:
- targetLiquidity = _target (#697)
- targetLiquidityDenominator = _denominator (#698)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).adr (#95) lacks a zero-check on :
- owner = adr (#96)
OneWorldMeta.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#684) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#685)
OneWorldMeta.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#684) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#686)
OneWorldMeta.setFeeReceivers(address,address,address,address)._ecosystemfeeReceiver (#684) lacks a zero-check on :
- ecosystemfeeReceiver = _ecosystemfeeReceiver (#687)
OneWorldMeta.setFeeReceivers(address,address,address,address)._burnFeeReceiver (#684) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#688)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#285-296) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#291)
OneWorldMeta.multiTransfer(address,address[],uint256[]) (#725-749) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#741)
OneWorldMeta.multiTransfer_fixed(address,address[],uint256) (#751-770) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#762)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in OneWorldMeta._transferFrom(address,address,uint256) (#471-523):
External calls:
- BP.protect(sender,recipient,amount) (#473)
State variables written after the call(s):
- _basicTransfer(sender,recipient,amount) (#476)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#526)
- _balances[recipient] = _balances[recipient].add(amount) (#527)
- cooldownTimer[recipient] = block.timestamp + cooldownTimerInterval (#496)
Reentrancy in OneWorldMeta.constructor() (#400-425):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#402)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#403)
- _balances[msg.sender] = _totalSupply (#423)
- autoLiquidityReceiver = msg.sender (#418)
- burnFeeReceiver = DEAD (#421)
- distributor = new DividendDistributor(address(router)) (#405)
- ecosystemfeeReceiver = 0xBe1656240C98f76D0579da82049787d9476D7434 (#420)
- isDividendExempt[pair] = true (#414)
- isDividendExempt[address(this)] = true (#415)
- isDividendExempt[DEAD] = true (#416)
- isFeeExempt[msg.sender] = true (#407)
- isTimelockExempt[msg.sender] = true (#410)
- isTimelockExempt[DEAD] = true (#411)
- isTimelockExempt[address(this)] = true (#412)
- isTxLimitExempt[msg.sender] = true (#408)
- marketingFeeReceiver = 0x080FE3528Ed88Fc9752bC790AA5b272540796bC0 (#419)
Reentrancy in DividendDistributor.deposit() (#234-252):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#241-246)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#251)
- totalDividends = totalDividends.add(amount) (#250)
Reentrancy in DividendDistributor.distributeDividend(address) (#285-296):
External calls:
- RWRD.transfer(shareholder,amount) (#291)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#292)
Reentrancy in DividendDistributor.setShare(address,uint256) (#218-232):
External calls:
- distributeDividend(shareholder) (#220)
- RWRD.transfer(shareholder,amount) (#291)
State variables written after the call(s):
- addShareholder(shareholder) (#224)
- shareholderIndexes[shareholder] = shareholders.length (#318)
- removeShareholder(shareholder) (#226)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#324)
- addShareholder(shareholder) (#224)
- shareholders.push(shareholder) (#319)
- removeShareholder(shareholder) (#226)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#323)
- shareholders.pop() (#325)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#229)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in OneWorldMeta._transferFrom(address,address,uint256) (#471-523):
External calls:
- BP.protect(sender,recipient,amount) (#473)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#528)
- _basicTransfer(sender,recipient,amount) (#476)
Reentrancy in OneWorldMeta._transferFrom(address,address,uint256) (#471-523):
External calls:
- BP.protect(sender,recipient,amount) (#473)
- swapBack() (#502)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#602-608)
- distributor.deposit{value: amountBNBReflection}() (#619)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#620)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#621)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#627-634)
External calls sending eth:
- swapBack() (#502)
- distributor.deposit{value: amountBNBReflection}() (#619)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#620)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#621)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#627-634)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#635)
- swapBack() (#502)
- Transfer(sender,address(this),contractTokens) (#550)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#507)
- Transfer(sender,burnFeeReceiver,burnTokens) (#553)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#507)
Reentrancy in OneWorldMeta._transferFrom(address,address,uint256) (#471-523):
External calls:
- BP.protect(sender,recipient,amount) (#473)
- swapBack() (#502)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#602-608)
- distributor.deposit{value: amountBNBReflection}() (#619)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#620)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#621)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#627-634)
- distributor.setShare(sender,_balances[sender]) (#512)
- distributor.setShare(recipient,_balances[recipient]) (#516)
- distributor.process(distributorGas) (#519)
External calls sending eth:
- swapBack() (#502)
- distributor.deposit{value: amountBNBReflection}() (#619)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#620)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#621)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#627-634)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#521)
Reentrancy in OneWorldMeta.constructor() (#400-425):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#402)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#424)
Reentrancy in OneWorldMeta.swapBack() (#591-637):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#602-608)
- distributor.deposit{value: amountBNBReflection}() (#619)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#620)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#621)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#627-634)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#619)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#620)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#621)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#627-634)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#635)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#280-283) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#281-282)
OneWorldMeta._transferFrom(address,address,uint256) (#471-523) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#495)
Avoid relying on block.timestamp.
Additional information: link
OneWorldMeta.setBotProtectionDisableForever() (#782-785) compares to a boolean constant:
-require(bool)(BPDisabledForever == false) (#783)
Remove the equality to the boolean constant.
Additional information: link
DividendDistributor.process(uint256) (#254-278) has costly operations inside a loop:
- currentIndex = 0 (#266)
DividendDistributor.distributeDividend(address) (#285-296) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#290)
DividendDistributor.process(uint256) (#254-278) has costly operations inside a loop:
- currentIndex ++ (#275)
Use a local variable to hold the loop computation result.
Additional information: link
OneWorldMeta._maxTxAmount (#346) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(1).div(100)
OneWorldMeta._maxWalletToken (#347) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(1).div(100)
OneWorldMeta.totalFee (#365) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + ecosystemfee + burnFee
OneWorldMeta.swapThreshold (#391) 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 (#8) allows old versions
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 OneWorldMeta.swapBack() (#591-637):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#620)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#621)
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() (#110) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#213) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#213) is not in mixedCase
Variable DividendDistributor._token (#166) is not in mixedCase
Variable DividendDistributor.RWRD (#174) is not in mixedCase
Variable DividendDistributor.WBNB (#175) is not in mixedCase
Function OneWorldMeta.setMaxWalletPercent_base3000(uint256) (#459-461) is not in mixedCase
Parameter OneWorldMeta.setMaxWalletPercent_base3000(uint256).maxWallPercent_base3000 (#459) is not in mixedCase
Function OneWorldMeta.setMaxTxPercent_base3000(uint256) (#462-464) is not in mixedCase
Parameter OneWorldMeta.setMaxTxPercent_base3000(uint256).maxTXPercentage_base3000 (#462) is not in mixedCase
Function OneWorldMeta.clearStuckBalance_sender(uint256) (#571-574) is not in mixedCase
Function OneWorldMeta.set_sell_multiplier(uint256) (#576-578) is not in mixedCase
Parameter OneWorldMeta.set_sell_multiplier(uint256).Multiplier (#576) is not in mixedCase
Parameter OneWorldMeta.tradingStatus(bool)._status (#581) is not in mixedCase
Parameter OneWorldMeta.cooldownEnabled(bool,uint8)._status (#586) is not in mixedCase
Parameter OneWorldMeta.cooldownEnabled(bool,uint8)._interval (#586) is not in mixedCase
Function OneWorldMeta.enable_blacklist(bool) (#650-652) is not in mixedCase
Parameter OneWorldMeta.enable_blacklist(bool)._status (#650) is not in mixedCase
Function OneWorldMeta.manage_blacklist(address[],bool) (#654-658) is not in mixedCase
Parameter OneWorldMeta.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#673) is not in mixedCase
Parameter OneWorldMeta.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#673) is not in mixedCase
Parameter OneWorldMeta.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#673) is not in mixedCase
Parameter OneWorldMeta.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._ecosystemfee (#673) is not in mixedCase
Parameter OneWorldMeta.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#673) is not in mixedCase
Parameter OneWorldMeta.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#673) is not in mixedCase
Parameter OneWorldMeta.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#684) is not in mixedCase
Parameter OneWorldMeta.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#684) is not in mixedCase
Parameter OneWorldMeta.setFeeReceivers(address,address,address,address)._ecosystemfeeReceiver (#684) is not in mixedCase
Parameter OneWorldMeta.setFeeReceivers(address,address,address,address)._burnFeeReceiver (#684) is not in mixedCase
Parameter OneWorldMeta.setSwapBackSettings(bool,uint256)._enabled (#691) is not in mixedCase
Parameter OneWorldMeta.setSwapBackSettings(bool,uint256)._amount (#691) is not in mixedCase
Parameter OneWorldMeta.setTargetLiquidity(uint256,uint256)._target (#696) is not in mixedCase
Parameter OneWorldMeta.setTargetLiquidity(uint256,uint256)._denominator (#696) is not in mixedCase
Parameter OneWorldMeta.setDistributionCriteria(uint256,uint256)._minPeriod (#701) is not in mixedCase
Parameter OneWorldMeta.setDistributionCriteria(uint256,uint256)._minDistribution (#701) is not in mixedCase
Function OneWorldMeta.multiTransfer_fixed(address,address[],uint256) (#751-770) is not in mixedCase
Parameter OneWorldMeta.setBPAddress(address)._bp (#775) is not in mixedCase
Parameter OneWorldMeta.setBpEnabled(bool)._enabled (#779) is not in mixedCase
Variable OneWorldMeta.WBNB (#336) is not in mixedCase
Variable OneWorldMeta.DEAD (#337) is not in mixedCase
Variable OneWorldMeta.ZERO (#338) is not in mixedCase
Constant OneWorldMeta._name (#340) is not in UPPER_CASE_WITH_UNDERSCORES
Constant OneWorldMeta._symbol (#341) is not in UPPER_CASE_WITH_UNDERSCORES
Constant OneWorldMeta._decimals (#342) is not in UPPER_CASE_WITH_UNDERSCORES
Variable OneWorldMeta._totalSupply (#344) is not in mixedCase
Variable OneWorldMeta._maxTxAmount (#346) is not in mixedCase
Variable OneWorldMeta._maxWalletToken (#347) is not in mixedCase
Variable OneWorldMeta._balances (#349) is not in mixedCase
Variable OneWorldMeta._allowances (#350) is not in mixedCase
Variable OneWorldMeta.BP (#394) is not in mixedCase
Variable OneWorldMeta.BPDisabledForever (#396) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#115) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#116)
Prevent variables from having similar names.
Additional information: link
OneWorldMeta.slitherConstructorVariables() (#333-787) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#337)
OneWorldMeta.slitherConstructorVariables() (#333-787) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#338)
OneWorldMeta.slitherConstructorVariables() (#333-787) uses literals with too many digits:
- distributorGas = 500000 (#384)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DividendDistributor.WBNB (#175) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#188) should be constant
OneWorldMeta.DEAD (#337) should be constant
OneWorldMeta.WBNB (#336) should be constant
OneWorldMeta.ZERO (#338) should be constant
OneWorldMeta._totalSupply (#344) 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) (#79-81)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#83-85)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#95-99)
tradingStatus(bool) should be declared external:
- OneWorldMeta.tradingStatus(bool) (#581-583)
cooldownEnabled(bool,uint8) should be declared external:
- OneWorldMeta.cooldownEnabled(bool,uint8) (#586-589)
enable_blacklist(bool) should be declared external:
- OneWorldMeta.enable_blacklist(bool) (#650-652)
manage_blacklist(address[],bool) should be declared external:
- OneWorldMeta.manage_blacklist(address[],bool) (#654-658)
Use the external attribute for functions never called from the contract.
Additional information: link
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/project description on the website or on BscScan, CoinMarketCap
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 Telegram link on the website
Unable to find Twitter link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Token is not listed at Mobula.Finance
Additional information: link
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
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account