LOTUS Token Logo

LOTUS Token

About LOTUS

Listings

Token 2 years

Lotus is a next-generation project that incorporates a token, NFTs and a revolutionary game on the Binance Smart Chain. Our game "Force Of Nature" is under development.

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

LOTUS.swapAndLiquify(uint256) (#971-1005) sends eth to arbitrary user
Dangerous calls:
- _devWalletAddress.transfer(bnbToBeAddedToDev) (#992)
- _developmentWalletAddress.transfer(bnbToBeAddedToDevelopment) (#997)
- _marketingWalletAddress.transfer(bnbToBeAddedToMarketing) (#1002)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in LOTUS._transfer(address,address,uint256) (#911-969):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#920)
- swapAndLiquify(contractTokenBalance) (#956)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1030-1037)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1016-1022)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#956)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1030-1037)
- _devWalletAddress.transfer(bnbToBeAddedToDev) (#992)
- _developmentWalletAddress.transfer(bnbToBeAddedToDevelopment) (#997)
- _marketingWalletAddress.transfer(bnbToBeAddedToMarketing) (#1002)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#968)
- _rOwned[address(this)] += rLiquidity (#1122)
- _rOwned[sender] -= rAmount (#1055)
- _rOwned[recipient] += rTransferAmount (#1060)
- _tokenTransfer(from,to,amount,takeFee) (#968)
- _rTotal -= rReflection (#1115)
- _tokenTransfer(from,to,amount,takeFee) (#968)
- _tOwned[address(this)] += tLiquidity (#1124)
- _tOwned[sender] -= tAmount (#1057)
- _tOwned[recipient] += tTransferAmount (#1059)
- _tokenTransfer(from,to,amount,takeFee) (#968)
- _totalBNBFees = _previousTotalFee (#895)
- _totalBNBFees = 0 (#890)
Apply the check-effects-interactions pattern.

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.

LOTUS.addLiquidity(uint256,uint256) (#1025-1038) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1030-1037)
Ensure that all the return values of the function calls are used.

Additional information: link

LOTUS._approve(address,address,uint256).owner (#903) shadows:
- Ownable.owner() (#350-352) (function)
Rename the local variables that shadow another component.

Additional information: link

LOTUS.setWalletBalance(uint256) (#877-879) should emit an event for:
- maxWalletBalance = _maxWalletBalance (#878)
Emit an event for critical parameter changes.

Additional information: link

LOTUS.updateDevWalletAddress(address).devWalletAddress (#873) lacks a zero-check on :
- _devWalletAddress = devWalletAddress (#874)
Check that the address is not zero.

Additional information: link

Reentrancy in LOTUS.transferFrom(address,address,uint256) (#741-745):
External calls:
- _transfer(sender,recipient,amount) (#742)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1030-1037)
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#920)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1016-1022)
External calls sending eth:
- _transfer(sender,recipient,amount) (#742)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1030-1037)
- _devWalletAddress.transfer(bnbToBeAddedToDev) (#992)
- _developmentWalletAddress.transfer(bnbToBeAddedToDevelopment) (#997)
- _marketingWalletAddress.transfer(bnbToBeAddedToMarketing) (#1002)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#743)
- _allowances[owner][spender] = amount (#907)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in LOTUS.transferFrom(address,address,uint256) (#741-745):
External calls:
- _transfer(sender,recipient,amount) (#742)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1030-1037)
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#920)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1016-1022)
External calls sending eth:
- _transfer(sender,recipient,amount) (#742)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1030-1037)
- _devWalletAddress.transfer(bnbToBeAddedToDev) (#992)
- _developmentWalletAddress.transfer(bnbToBeAddedToDevelopment) (#997)
- _marketingWalletAddress.transfer(bnbToBeAddedToMarketing) (#1002)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#908)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#743)
Apply the check-effects-interactions pattern.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#301-318) uses assembly
- INLINE ASM (#310-313)
Do not use evm assembly.

Additional information: link

Context._msgData() (#54-57) is never used and should be removed
Remove unused functions.

Additional information: link

LOTUS.maxWalletBalance (#635) is set pre-construction with a non-constant function or state variable:
- (totalSupply() * 1) / 100
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

solc-0.8.3 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 Address.functionDelegateCall(address,bytes,string) (#293-299):
- (success,returndata) = target.delegatecall(data) (#297)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable LOTUS._maxTxAmount (#646) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#55)" inContext (#49-58)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in LOTUS.transferFrom(address,address,uint256) (#741-745):
External calls:
- _transfer(sender,recipient,amount) (#742)
- _devWalletAddress.transfer(bnbToBeAddedToDev) (#992)
- _developmentWalletAddress.transfer(bnbToBeAddedToDevelopment) (#997)
- _marketingWalletAddress.transfer(bnbToBeAddedToMarketing) (#1002)
External calls sending eth:
- _transfer(sender,recipient,amount) (#742)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1030-1037)
- _devWalletAddress.transfer(bnbToBeAddedToDev) (#992)
- _developmentWalletAddress.transfer(bnbToBeAddedToDevelopment) (#997)
- _marketingWalletAddress.transfer(bnbToBeAddedToMarketing) (#1002)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#743)
- _allowances[owner][spender] = amount (#907)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#908)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#743)
Apply the check-effects-interactions pattern.

Additional information: link

Variable LOTUS._getValues(uint256).rTransferAmount (#1070) is too similar to LOTUS._transferStandard(address,address,uint256).tTransferAmount (#1053)
Prevent variables from having similar names.

Additional information: link

LOTUS.slitherConstructorConstantVariables() (#599-1127) uses literals with too many digits:
- _burnAddress = 0x000000000000000000000000000000000000dEaD (#615)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

LOTUS._tTotal (#618) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- LOTUS.isExcludedFromFee(address) (#899-901)
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.


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.


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


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


Token was delisted (assigned to inactive / untracked listing) from 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 find audit link on the website


Unable to find whitepaper link on the website


Unable to find Twitter link on the website


Young tokens have high risks of price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for LOTUS