Apenomics Token Logo

APEN [Apenomics] Token

About APEN

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 30 November 2021

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

Reentrancy in DividendDistributor.setShare(address,uint256) (#248-262):
External calls:
- distributeDividend(shareholder) (#250)
- (sent) = shareholder.call{value: amount}() (#306)
State variables written after the call(s):
- shares[shareholder].amount = amount (#260)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#261)
Apply the check-effects-interactions pattern.

Additional information: link

ApeNomics.swapBack().tmpSuccess (#652) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#653)
tmpSuccess = false (#656)
Fix or remove the writes.

Additional information: link

ApeNomics.setSwapBackSettings(bool,uint256) (#697-700) performs a multiplication on the result of a division:
-swapThreshold = rSupply.div(1000).mul(_percentage_base1000) (#699)
Consider ordering multiplication before division.

Additional information: link

ApeNomics.swapBack() (#621-669) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,address(this),block.timestamp) (#659-666)
Ensure that all the return values of the function calls are used.

Additional information: link

ApeNomics.setTargetLiquidity(uint256,uint256) (#703-706) should emit an event for:
- targetLiquidity = _target (#704)
- targetLiquidityDenominator = _denominator (#705)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#123) lacks a zero-check on :
- owner = adr (#124)
Check that the address is not zero.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#248-262):
External calls:
- distributeDividend(shareholder) (#250)
- (sent) = shareholder.call{value: amount}() (#306)
State variables written after the call(s):
- addShareholder(shareholder) (#254)
- shareholderIndexes[shareholder] = shareholders.length (#334)
- removeShareholder(shareholder) (#256)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#340)
- addShareholder(shareholder) (#254)
- shareholders.push(shareholder) (#335)
- removeShareholder(shareholder) (#256)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#339)
- shareholders.pop() (#341)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#259)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ApeNomics.swapBack() (#621-669):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#634-640)
- distributor.deposit{value: amountBNBReflection}() (#651)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#652)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#653)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,address(this),block.timestamp) (#659-666)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#651)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#652)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#653)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,address(this),block.timestamp) (#659-666)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#667)
Apply the check-effects-interactions pattern.

Additional information: link

ApeNomics.isOverLiquified(uint256,uint256) (#756-758) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#757)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#269-293) has costly operations inside a loop:
- currentIndex ++ (#290)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMathInt.sub(int256,int256) (#58-62) is never used and should be removed
Remove unused functions.

Additional information: link

ApeNomics.totalFee (#366) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + devFee
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 (#2) 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 ApeNomics.swapBack() (#621-669):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#652)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#653)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable ApeNomics.LaunchTimestamp (#615) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

ApeNomics.slitherConstructorVariables() (#345-765) uses literals with too many digits:
- distributorGas = 500000 (#383)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#42) is never used in SafeMathInt (#40-74)
Remove unused state variables.

Additional information: link

DividendDistributor.dividendsPerShareAccuracyFactor (#218) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

rescueToken(address,uint256) should be declared external:
- ApeNomics.rescueToken(address,uint256) (#740-742)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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


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.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for APEN