Elevation Token Token Logo

ELEVATION Token

About ELEVATION

Listings

Token 2 years
white paper

ELEVATION TOKEN ⬆️

This years all about Elevation!

New community based project launching on the BSC network, trying to bring some gains to your life.

Let’s all work together to bring some generational wealth to all crypto lovers!

Taxes: 3% in and out

Social

Laser Scorebeta Last Audit: 15 September 2022

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

Anti-Scam

Links

ElevationToken.contractSwap(uint256) (#508-559) sends eth to arbitrary user
Dangerous calls:
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#537-544)
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: marketingBalance}() (#554)
- (success,None) = _taxWallets.buyback.call{gas: 35000,value: buybackBalance}() (#557)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


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

Reentrancy in ElevationToken._transfer(address,address,uint256) (#464-506):
External calls:
- contractSwap(contractTokenBalance) (#500)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmt,0,path,address(this),block.timestamp) (#525-531)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#537-544)
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: marketingBalance}() (#554)
- (success,None) = _taxWallets.buyback.call{gas: 35000,value: buybackBalance}() (#557)
- _finalizeTransfer(from,to,amount,buy,sell,other) (#505)
- antiSnipe.checkUser(from,to,amount) (#611-615)
External calls sending eth:
- contractSwap(contractTokenBalance) (#500)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#537-544)
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: marketingBalance}() (#554)
- (success,None) = _taxWallets.buyback.call{gas: 35000,value: buybackBalance}() (#557)
State variables written after the call(s):
- _finalizeTransfer(from,to,amount,buy,sell,other) (#505)
- _liquidityHolders[from] = true (#564)
- _finalizeTransfer(from,to,amount,buy,sell,other) (#505)
- _tOwned[address(this)] += feeAmount (#647)
- _tOwned[from] -= amount (#627)
- _tOwned[to] += amountReceived (#629)
- _finalizeTransfer(from,to,amount,buy,sell,other) (#505)
- contractSwapEnabled = true (#570)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


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.

Variable 'ElevationToken._finalizeTransfer(address,address,uint256,bool,bool,bool).check (#611)' in ElevationToken._finalizeTransfer(address,address,uint256,bool,bool,bool) (#601-633) potentially used before declaration: checked = check (#612)
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

ElevationToken.contractSwap(uint256) (#508-559) performs a multiplication on the result of a division:
-toLiquify = ((contractTokenBalance * ratios.liquidity) / ratios.totalSwap) / 2 (#518)
-liquidityBalance = (amtBalance * toLiquify) / swapAmt (#534)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in ElevationToken.enableTrading() (#575-586):
External calls:
- antiSnipe.setLaunch(lpPair,uint32(block.number),uint64(block.timestamp),_decimals) (#581)
State variables written after the call(s):
- tradingEnabled = true (#582)
Reentrancy in ElevationToken.transferOwner(address) (#243-257):
External calls:
- _finalizeTransfer(_owner,newOwner,balanceOf(_owner),false,false,true) (#250)
- antiSnipe.checkUser(from,to,amount) (#611-615)
State variables written after the call(s):
- _owner = newOwner (#254)
Apply the check-effects-interactions pattern.

Additional information: link

ElevationToken._finalizeTransfer(address,address,uint256,bool,bool,bool).checked (#610) is a local variable never initialized
ElevationToken._finalizeTransfer(address,address,uint256,bool,bool,bool).check (#611) 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

ElevationToken.contractSwap(uint256) (#508-559) ignores return value by dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#537-544)
ElevationToken._finalizeTransfer(address,address,uint256,bool,bool,bool) (#601-633) ignores return value by antiSnipe.checkUser(from,to,amount) (#611-615)
Ensure that all the return values of the function calls are used.

Additional information: link

ElevationToken.setMaxWalletSize(uint256,uint256) (#410-413) should emit an event for:
- _maxWalletSize = (_tTotal * percent) / divisor (#412)
ElevationToken.setSwapSettings(uint256,uint256,uint256,uint256) (#419-423) should emit an event for:
- swapThreshold = (_tTotal * thresholdPercent) / thresholdDivisor (#420)
- swapAmount = (_tTotal * amountPercent) / amountDivisor (#421)
ElevationToken.setPriceImpactSwapAmount(uint256) (#425-428) should emit an event for:
- piSwapPercent = priceImpactSwapPercent (#427)
Emit an event for critical parameter changes.

Additional information: link

ElevationToken._finalizeTransfer(address,address,uint256,bool,bool,bool) (#601-633) has external calls inside a loop: antiSnipe.checkUser(from,to,amount) (#611-615)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in ElevationToken._finalizeTransfer(address,address,uint256,bool,bool,bool) (#601-633):
External calls:
- antiSnipe.checkUser(from,to,amount) (#611-615)
State variables written after the call(s):
- _tOwned[from] -= amount (#627)
- _tOwned[to] += amountReceived (#629)
- amountReceived = takeTaxes(from,buy,sell,amount) (#628)
- _tOwned[address(this)] += feeAmount (#647)
Reentrancy in ElevationToken.constructor() (#202-234):
External calls:
- lpPair = IFactoryV2(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#224)
State variables written after the call(s):
- _approve(_owner,address(dexRouter),type()(uint256).max) (#227)
- _allowances[sender][spender] = amount (#294)
- _approve(address(this),address(dexRouter),type()(uint256).max) (#228)
- _allowances[sender][spender] = amount (#294)
- _isExcludedFromFees[_owner] = true (#230)
- _isExcludedFromFees[address(this)] = true (#231)
- _isExcludedFromFees[DEAD] = true (#232)
- _liquidityHolders[_owner] = true (#233)
- lpPairs[lpPair] = true (#225)
Reentrancy in ElevationToken.enableTrading() (#575-586):
External calls:
- antiSnipe.setLaunch(lpPair,uint32(block.number),uint64(block.timestamp),_decimals) (#581)
State variables written after the call(s):
- allowedPresaleExclusion = false (#583)
- swapAmount = (balanceOf(lpPair) * 30) / 10000 (#585)
- swapThreshold = (balanceOf(lpPair) * 10) / 10000 (#584)
Reentrancy in ElevationToken.setNewRouter(address) (#311-322):
External calls:
- lpPair = IFactoryV2(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#315)
State variables written after the call(s):
- _approve(address(this),address(dexRouter),type()(uint256).max) (#321)
- _allowances[sender][spender] = amount (#294)
- dexRouter = _newRouter (#320)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ElevationToken._finalizeTransfer(address,address,uint256,bool,bool,bool) (#601-633):
External calls:
- antiSnipe.checkUser(from,to,amount) (#611-615)
Event emitted after the call(s):
- Transfer(from,address(this),feeAmount) (#648)
- amountReceived = takeTaxes(from,buy,sell,amount) (#628)
- Transfer(from,to,amountReceived) (#631)
Reentrancy in ElevationToken._transfer(address,address,uint256) (#464-506):
External calls:
- contractSwap(contractTokenBalance) (#500)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmt,0,path,address(this),block.timestamp) (#525-531)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#537-544)
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: marketingBalance}() (#554)
- (success,None) = _taxWallets.buyback.call{gas: 35000,value: buybackBalance}() (#557)
- _finalizeTransfer(from,to,amount,buy,sell,other) (#505)
- antiSnipe.checkUser(from,to,amount) (#611-615)
External calls sending eth:
- contractSwap(contractTokenBalance) (#500)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#537-544)
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: marketingBalance}() (#554)
- (success,None) = _taxWallets.buyback.call{gas: 35000,value: buybackBalance}() (#557)
Event emitted after the call(s):
- ContractSwapEnabledUpdated(true) (#571)
- _finalizeTransfer(from,to,amount,buy,sell,other) (#505)
- Transfer(from,address(this),feeAmount) (#648)
- _finalizeTransfer(from,to,amount,buy,sell,other) (#505)
- Transfer(from,to,amountReceived) (#631)
- _finalizeTransfer(from,to,amount,buy,sell,other) (#505)
Reentrancy in ElevationToken.constructor() (#202-234):
External calls:
- lpPair = IFactoryV2(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#224)
Event emitted after the call(s):
- Approval(sender,spender,amount) (#295)
- _approve(address(this),address(dexRouter),type()(uint256).max) (#228)
- Approval(sender,spender,amount) (#295)
- _approve(_owner,address(dexRouter),type()(uint256).max) (#227)
Reentrancy in ElevationToken.contractSwap(uint256) (#508-559):
External calls:
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmt,0,path,address(this),block.timestamp) (#525-531)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#537-544)
External calls sending eth:
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#537-544)
Event emitted after the call(s):
- AutoLiquify(liquidityBalance,toLiquify) (#545)
Reentrancy in ElevationToken.setNewRouter(address) (#311-322):
External calls:
- lpPair = IFactoryV2(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#315)
Event emitted after the call(s):
- Approval(sender,spender,amount) (#295)
- _approve(address(this),address(dexRouter),type()(uint256).max) (#321)
Reentrancy in ElevationToken.transferOwner(address) (#243-257):
External calls:
- _finalizeTransfer(_owner,newOwner,balanceOf(_owner),false,false,true) (#250)
- antiSnipe.checkUser(from,to,amount) (#611-615)
Event emitted after the call(s):
- OwnershipTransferred(oldOwner,newOwner) (#255)
Apply the check-effects-interactions pattern.

Additional information: link

ElevationToken.setLpPair(address,bool) (#324-336) uses timestamp for comparisons
Dangerous comparisons:
- timeSinceLastPair != 0 (#329)
- require(bool,string)(block.timestamp - timeSinceLastPair > 259200,3 Day cooldown.!) (#330)
Avoid relying on block.timestamp.

Additional information: link

ElevationToken.setLpPair(address,bool) (#324-336) compares to a boolean constant:
-enabled == false (#325)
Remove the equality to the boolean constant.

Additional information: link

ElevationToken._checkLiquidityAdd(address,address) (#561-573) has costly operations inside a loop:
- _hasLiqBeenAdded = true (#566)
ElevationToken._checkLiquidityAdd(address,address) (#561-573) has costly operations inside a loop:
- antiSnipe = AntiSnipe(address(this)) (#568)
ElevationToken._checkLiquidityAdd(address,address) (#561-573) has costly operations inside a loop:
- contractSwapEnabled = true (#570)
Use a local variable to hold the loop computation result.

Additional information: link

Pragma version>=0.6.0<0.9.0 (#2) is too complex
solc-0.8.14 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

Low level call in ElevationToken.contractSwap(uint256) (#508-559):
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: marketingBalance}() (#554)
- (success,None) = _taxWallets.buyback.call{gas: 35000,value: buybackBalance}() (#557)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IRouter01.WETH() (#33) is not in mixedCase
Parameter ElevationToken.setProtectionSettings(bool,bool)._antiSnipe (#381) is not in mixedCase
Parameter ElevationToken.setProtectionSettings(bool,bool)._antiBlock (#381) is not in mixedCase
Constant ElevationToken.startingSupply (#121) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ElevationToken._name (#122) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ElevationToken._symbol (#123) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ElevationToken._decimals (#124) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ElevationToken._tTotal (#126) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ElevationToken._taxRates (#141-145) is not in mixedCase
Variable ElevationToken._ratios (#147-152) is not in mixedCase
Constant ElevationToken.maxBuyTaxes (#154) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ElevationToken.maxSellTaxes (#155) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ElevationToken.maxTransferTaxes (#156) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ElevationToken.maxRoundtripTax (#157) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ElevationToken.masterTaxDivisor (#158) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ElevationToken._taxWallets (#169-172) is not in mixedCase
Variable ElevationToken._hasLiqBeenAdded (#184) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#45) is too similar to IRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#46)
Prevent variables from having similar names.

Additional information: link

ElevationToken.slitherConstructorConstantVariables() (#103-653) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#162)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ElevationToken._rOwned (#107) is never used in ElevationToken (#103-653)
Remove unused state variables.

Additional information: link

transfer(address,uint256) should be declared external:
- ElevationToken.transfer(address,uint256) (#280-283)
approve(address,uint256) should be declared external:
- ElevationToken.approve(address,uint256) (#285-288)
approveContractContingency() should be declared external:
- ElevationToken.approveContractContingency() (#298-301)
setNewRouter(address) should be declared external:
- ElevationToken.setNewRouter(address) (#311-322)
isBlacklisted(address) should be declared external:
- ElevationToken.isBlacklisted(address) (#373-375)
getMaxWallet() should be declared external:
- ElevationToken.getMaxWallet() (#415-417)
enableTrading() should be declared external:
- ElevationToken.enableTrading() (#575-586)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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.

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


Token is deployed only at one blockchain


Token has only one trading pair


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


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


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to find KYC or doxxing proof


Unable to verify token contract address on the website


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


Young tokens have high risks of price dump / death

Price for ELEVATION

News for ELEVATION