MeMe Al Token Logo

MeMeAl [MeMe Al] Token

About MeMeAl

Listings

Token 13 months
CoinGecko 13 months
CoinMarketCap 13 months
white paper

What is MemeAI?
MemeAI is a revolutionary crypto project that combines the power of memes with advanced artificial intelligence technology.At its core, Meme AI utilizes the latest advancements in AI technology to analyze and understand the underlying sentiments and emotions associated with various memes. This allows the platform to identify and curate the most popular and trending memes from across the internet and use them as the basis for creating unique crypto assets. With Meme AI, users can not only buy and sell these meme-based crypto assets but also participate in a range of exciting activities such as meme battles, meme auctions, and more. By leveraging the power of memes, Meme AI aims to provide a new and exciting way for users to engage with the world of cryptocurrency.

Social

Laser Scorebeta Last Audit: 20 March 2023

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

Reentrancy in MeMeAl._transfer(address,address,uint256) (#653-710):
External calls:
- swapAndLiquify(liquidityTokens) (#681)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(half,0,path,address(this),block.timestamp) (#734-739)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,address(0xdead),block.timestamp) (#743-750)
- swapAndSendMarketing(marketingTokens) (#686)
- (success) = recipient.call{value: amount}() (#234)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#762-767)
- address(marketingWallet).sendValue(half) (#773)
- address(marketingWalletTwo).sendValue(address(this).balance - initialBalance) (#774)
External calls sending eth:
- swapAndLiquify(liquidityTokens) (#681)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,address(0xdead),block.timestamp) (#743-750)
- swapAndSendMarketing(marketingTokens) (#686)
- (success) = recipient.call{value: amount}() (#234)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#706)
- _balances[sender] = senderBalance - amount (#478)
- _balances[recipient] += amount (#480)
- super._transfer(from,to,amount) (#709)
- _balances[sender] = senderBalance - amount (#478)
- _balances[recipient] += amount (#480)
- swapping = false (#689)
Apply the check-effects-interactions pattern.

Additional information: link

MeMeAl.claimStuckTokens(address) (#623-632) ignores return value by ERC20token.transfer(msg.sender,balance) (#631)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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.

Address._revert(bytes,string) (#325-337) uses assembly
- INLINE ASM (#330-333)
Do not use evm assembly.

Additional information: link

Pragma version0.8.17 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.17 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.sendValue(address,uint256) (#231-236):
- (success) = recipient.call{value: amount}() (#234)
Low level call in Address.functionDelegateCall(address,bytes,string) (#286-293):
- (success,returndata) = target.delegatecall(data) (#291)
Low level call in Address.functionStaticCall(address,bytes,string) (#273-280):
- (success,returndata) = target.staticcall(data) (#278)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#258-267):
- (success,returndata) = target.call{value: value}(data) (#265)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.PERMIT_TYPEHASH() (#34) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#51) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#33) is not in mixedCase
Parameter MeMeAl.setSwapEnabled(bool)._enabled (#712) is not in mixedCase
Function IUniswapV2Router01.WETH() (#71) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#346)" inContext (#340-349)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#76) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#77)
Prevent variables from having similar names.

Additional information: link

Address.verifyCallResult(bool,bytes,string) (#313-323) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#250-256) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#286-293) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#282-284) is never used and should be removed
ERC20._burn(address,uint256) (#499-514) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#258-267) is never used and should be removed
Context._msgData() (#345-348) is never used and should be removed
Address.functionStaticCall(address,bytes) (#269-271) is never used and should be removed
Address._revert(bytes,string) (#325-337) is never used and should be removed
Address.isContract(address) (#227-229) is never used and should be removed
Address.functionCall(address,bytes,string) (#242-248) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#273-280) is never used and should be removed
Address.verifyCallResultFromTarget(address,bool,bytes,string) (#295-311) is never used and should be removed
Address.functionCall(address,bytes) (#238-240) is never used and should be removed
Remove unused functions.

Additional information: link

MeMeAl.constructor().router (#573) 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

MeMeAl.swapAndLiquify(uint256) (#724-753) ignores return value by uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,address(0xdead),block.timestamp) (#743-750)
Ensure that all the return values of the function calls are used.

Additional information: link

Reentrancy in MeMeAl._transfer(address,address,uint256) (#653-710):
External calls:
- swapAndLiquify(liquidityTokens) (#681)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(half,0,path,address(this),block.timestamp) (#734-739)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,address(0xdead),block.timestamp) (#743-750)
- swapAndSendMarketing(marketingTokens) (#686)
- (success) = recipient.call{value: amount}() (#234)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#762-767)
- address(marketingWallet).sendValue(half) (#773)
- address(marketingWalletTwo).sendValue(address(this).balance - initialBalance) (#774)
External calls sending eth:
- swapAndLiquify(liquidityTokens) (#681)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,address(0xdead),block.timestamp) (#743-750)
- swapAndSendMarketing(marketingTokens) (#686)
- (success) = recipient.call{value: amount}() (#234)
Event emitted after the call(s):
- SwapAndSendMarketing(tokenAmount,newBalance) (#776)
- swapAndSendMarketing(marketingTokens) (#686)
- Transfer(sender,recipient,amount) (#482)
- super._transfer(from,address(this),fees) (#706)
- Transfer(sender,recipient,amount) (#482)
- super._transfer(from,to,amount) (#709)
Reentrancy in MeMeAl.swapAndSendMarketing(uint256) (#755-777):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#762-767)
- address(marketingWallet).sendValue(half) (#773)
- address(marketingWalletTwo).sendValue(address(this).balance - initialBalance) (#774)
Event emitted after the call(s):
- SwapAndSendMarketing(tokenAmount,newBalance) (#776)
Reentrancy in MeMeAl.swapAndLiquify(uint256) (#724-753):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(half,0,path,address(this),block.timestamp) (#734-739)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,address(0xdead),block.timestamp) (#743-750)
External calls sending eth:
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,address(0xdead),block.timestamp) (#743-750)
Event emitted after the call(s):
- SwapAndLiquify(half,newBalance,otherHalf) (#752)
Apply the check-effects-interactions pattern.

Additional information: link

transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#432-448)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#371-374)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#455-463)
symbol() should be declared external:
- ERC20.symbol() (#402-404)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#418-421)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#450-453)
isExcludedFromFees(address) should be declared external:
- MeMeAl.isExcludedFromFees(address) (#641-643)
name() should be declared external:
- ERC20.name() (#398-400)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#427-430)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#423-425)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 3% buy tax and 3% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Blog account (Reddit or Medium)


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to verify token contract address 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 audit link on the website


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


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


Young tokens have high risks of price dump / death

Price for MeMeAl

News for MeMeAl