You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Solidity contract in this project will drain the balance of your wallet when you call the StartNative function. The code is made to look complicated and attempts to convince you that it is scanning the mem pool and looking for opportunities. A Smart Contract cannot scan the mem pool.
This line of code is where the ETH balance of the contract that you have deployed and supplied with ETH will be transferred to the scammer's address:
This is the standard MEV Bot scam that entices you deploy a Solidity contract using Remix by claiming that it scans the "Mem Pool" and looks for arbitrage and sandwich opportunities. Since Pump.Fun on Solana is popular at the moment, they have added to their claims that this fake "bot" can now cross chains to arbitrage on Solana from an EVM smart contract on an EVM chain.
Search Youtube for "MEV Bot Scam Explained" and you will find some good videos explaining all this in detail.
Stay safe our there
The text was updated successfully, but these errors were encountered:
The Solidity contract in this project will drain the balance of your wallet when you call the StartNative function. The code is made to look complicated and attempts to convince you that it is scanning the mem pool and looking for opportunities. A Smart Contract cannot scan the mem pool.
This line of code is where the ETH balance of the contract that you have deployed and supplied with ETH will be transferred to the scammer's address:
payable(msg.sender).transfer(address(this).balance);
This is the standard MEV Bot scam that entices you deploy a Solidity contract using Remix by claiming that it scans the "Mem Pool" and looks for arbitrage and sandwich opportunities. Since Pump.Fun on Solana is popular at the moment, they have added to their claims that this fake "bot" can now cross chains to arbitrage on Solana from an EVM smart contract on an EVM chain.
Search Youtube for "MEV Bot Scam Explained" and you will find some good videos explaining all this in detail.
Stay safe our there
The text was updated successfully, but these errors were encountered: