Axienomics Token Logo

AXIN [Axienomics] Token

About AXIN

Listings

Token 2 years
white paper

Axienomics Team have created a revolutionary contract that has perfected rebase and have included reward features and buybacks all into the one token

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links


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

Axienomics.swapBack() (#737-785) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#768)
- (tmpSuccess,None) = address(BuyBackReceiver).call{gas: 30000,value: amountBNBDev}() (#769)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Axienomics._transferFrom(address,address,uint256) (#582-635):
External calls:
- swapBack() (#614)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#750-756)
- distributor.deposit{value: amountBNBReflection}() (#767)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#768)
- (tmpSuccess,None) = address(BuyBackReceiver).call{gas: 30000,value: amountBNBDev}() (#769)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#775-782)
External calls sending eth:
- swapBack() (#614)
- distributor.deposit{value: amountBNBReflection}() (#767)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#768)
- (tmpSuccess,None) = address(BuyBackReceiver).call{gas: 30000,value: amountBNBDev}() (#769)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#775-782)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#617)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#620)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#619)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#669)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#338-349) ignores return value by RWRD.transfer(shareholder,amount) (#344)
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.

Axienomics.swapBack().tmpSuccess (#768) is written in both
(tmpSuccess,None) = address(BuyBackReceiver).call{gas: 30000,value: amountBNBDev}() (#769)
tmpSuccess = false (#772)
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.

Axienomics.slitherConstructorVariables() (#382-982) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(100).mul(3) (#465)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#271-285):
External calls:
- distributeDividend(shareholder) (#273)
- RWRD.transfer(shareholder,amount) (#344)
State variables written after the call(s):
- shares[shareholder].amount = amount (#283)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#284)
Apply the check-effects-interactions pattern.

Additional information: link

Axienomics.manage_houseguests(address[],bool).i (#726) 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

Axienomics.swapBack() (#737-785) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#775-782)
Ensure that all the return values of the function calls are used.

Additional information: link

Axienomics.setMaster(address) (#852-854) should emit an event for:
- master = _master (#853)
Emit an event for critical parameter changes.

Additional information: link

Axienomics.setMaxTxPercent_base1000(uint256) (#914-916) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#915)
Emit an event for critical parameter changes.

Additional information: link

Axienomics.setMaster(address)._master (#852) lacks a zero-check on :
- master = _master (#853)
Check that the address is not zero.

Additional information: link

Axienomics.rebase_updatebalance(address[]) (#969-978) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#975)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#271-285):
External calls:
- distributeDividend(shareholder) (#273)
- RWRD.transfer(shareholder,amount) (#344)
State variables written after the call(s):
- addShareholder(shareholder) (#277)
- shareholderIndexes[shareholder] = shareholders.length (#371)
- removeShareholder(shareholder) (#279)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#377)
- addShareholder(shareholder) (#277)
- shareholders.push(shareholder) (#372)
- removeShareholder(shareholder) (#279)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#376)
- shareholders.pop() (#378)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#282)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Axienomics.swapBack() (#737-785):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#750-756)
- distributor.deposit{value: amountBNBReflection}() (#767)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#768)
- (tmpSuccess,None) = address(BuyBackReceiver).call{gas: 30000,value: amountBNBDev}() (#769)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#775-782)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#767)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#768)
- (tmpSuccess,None) = address(BuyBackReceiver).call{gas: 30000,value: amountBNBDev}() (#769)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#775-782)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#783)
Apply the check-effects-interactions pattern.

Additional information: link

Axienomics._transferFrom(address,address,uint256) (#582-635) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#598)
Avoid relying on block.timestamp.

Additional information: link

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

Additional information: link

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

Additional information: link

Axienomics.totalFee (#408) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + BuyBack
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

Low level call in Axienomics.swapBack() (#737-785):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#768)
- (tmpSuccess,None) = address(BuyBackReceiver).call{gas: 30000,value: amountBNBDev}() (#769)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Axienomics._maxWalletToken (#465) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Axienomics.slitherConstructorVariables() (#382-982) uses literals with too many digits:
- distributorGas = 500000 (#435)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#59) is never used in SafeMathInt (#57-91)
Remove unused state variables.

Additional information: link

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

Additional information: link

rescueToken(address,uint256) should be declared external:
- Axienomics.rescueToken(address,uint256) (#882-884)
Use the external attribute for functions never called from the contract.

Additional information: link

Pragma version^0.7.4 (#19) 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

Holders:


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


Token is deployed only at one blockchain


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.


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to crawl data from the website


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 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 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


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for AXIN