DiviCube

The Immutability Paradox: BNB Chain Smart Contracts as a Malware Delivery Rail

Guide | 0xPomp |

Over the past seven days, no protocol lost TVL. No bridge was drained. No governance exploit minted a single BNB. Yet on BNB Chain, someone deployed a smart contract that has one job: to pretend to be a CAPTCHA and convince a human being to download malware.

That is the entire confirmed dataset. No contract address. No attacker address. No victim count. No code sample. No timeline. As a security researcher, I am looking at a headline with a threat attached to it, not a forensic report. But a headline is enough to start the decompiler.

Let me be precise about what this is not. This is not a breach of BNB Chain's consensus. The PoSA validator set โ€” roughly forty-two validators โ€” was not compromised. The EVM executed opcodes exactly as designed. State transitions were valid. The invariant of the chain held. What broke is not a protocol invariant; it is the human trust model that sits on top of the protocol. The attacker is using the blockchain as an immutable, censorship-resistant hosting layer. The smart contract is the lure. The CAPTCHA is the mask. The malware is the payload.

I have spent years auditing smart contracts. The first thing I ask in any audit is: who can call this function? For this attack, the question is different. It is: who can call this contract and still walk away? The answer, apparently, is everyone โ€” because the contract itself is not malicious to the EVM. It is malicious to the human who reads its output.


What the Report Actually Says

The source material is thin. That is not a criticism; it is a limitation statement. Two facts are explicit. First, hackers used smart contracts on BNB Chain to distribute malware through a fake CAPTCHA page. Second, the author notes that this behaviour highlights the double-use nature of blockchain immutability: the same property that makes on-chain records trustworthy also makes malicious content difficult to remove.

Everything else in the public write-up is inference, extrapolation, or background context. I will treat it that way. The industry has a bad habit of turning three-line alerts into forty-page post-mortems. I am not going to do that. Instead, I am going to model the attack family, estimate the attack economics, and explain why this should concern every wallet designer and every L1 architect.


Technical Anatomy: A Smart Contract as a Digital Bait Station

Let me reconstruct a plausible execution path. I cannot confirm that this is the exact path, because no contract address or bytecode has been published. But the pattern is well known, and I have seen variants of it in the wild since at least 2021.

Step one: the attacker creates a burner wallet and funds it with a small amount of BNB. On BNB Chain, the gas cost for a contract deployment is often in the $0.05โ€“$0.30 range. That is not an expense; it is a rounding error.

Step two: the attacker deploys a factory contract. The factory is designed to generate child contracts using CREATE2. With CREATE2, an attacker can precompute the address of a new contract without deploying it. The required input is the deployer address, a salt, and the bytecode. Changing the salt by one bit produces a completely different address. This is the classic kit for creating a fresh contract in seconds.

Step three: the attacker creates a fake decentralised application site โ€” say, a phishing clone of a well-known BNB Chain DEX or wallet service. The site presents a prompt: "Click here to verify you are human." That prompt is the fake CAPTCHA.

Step four: the site reads from the smart contract. A contract can store an IPFS hash, an HTTPS URL, or an event log that points to a malware payload. The site uses the contract as a verifiable backend. Because the contract is on-chain, the site can claim, absurdly, that the "verification" is being processed by the blockchain.

Step five: the user clicks. The browser downloads an executable, a script, or a browser extension. The file is the real malware. It might be an information stealer. It might be a keylogger. It might be a clipboard hijacker that replaces the user's cryptocurrency address when they paste it into a payment form. It might steal browser cookies, saved passwords, or the mnemonic phrase from a poorly secured hot wallet.

Step six: the attacker collects the harvested data. The on-chain contract is now just an abandoned address. But it is still there. It will be there forever. No one can delete it unless the contract contains a selfdestruct function and the attacker chooses to call it. Law enforcement cannot submit a takedown request to an Ethereum Virtual Machine.

That is the attack pattern. It is not highly technical in the cryptographic sense. It is highly technical in the operational sense: it requires understanding how normal users interact with Web3, where their trust threshold sits, and what visual cues they expect from a legitimate verification process.


Why BNB Chain? Mathematics, Not Mystery

The choice of BNB Chain is not arbitrary. It is economic selection pressure.

An attacker who wants to run this campaign has several options. Ethereum L1 has high security and high gas fees. Deploying a factory and ten child contracts on Ethereum can cost more in a single hour of testing than it would cost to run the entire BNB Chain campaign for a week. Solana has low fees, but the tooling and user base are not as familiar to the average phishing victim. Polygon is cheaper than Ethereum, but its user habits and DApp surface are slightly different. BNB Chain sits at the intersection of low fees, high throughput, broad adoption, and an enormous population of ordinary users who interact with DApps through mobile wallets and web browsers.

The security assumptions of the chain do not need to be broken. The attacker does not need to control a validator. The attacker does not need to compromise a state root. The attacker only needs to satisfy the base condition of the EVM: pay for gas and include valid bytecode. PoSA is irrelevant to the attack. The attack sits above consensus, in the layer where humans are asked to make decisions.

There is a mathematical invariant that governs this attack, and it can be stated simply. The cost of deploying a malicious contract is C_gas. The expected value of likely victims is E[V]. As long as C_gas is negligible compared to E[V], the attack will continue. BNB Chain is a marketplace where C_gas is near zero, E[V] is large, and the delivery infrastructure is as permanent as any cryptographic commitment. The curve bends, but the invariant holds: cheap deployment plus permanent storage equals a sustainable malware business.


Immutability Is Free Hosting

Blockchain immutability is a security feature. It is also a hosting feature. Once a contract is deployed, the code is public, the storage is public, and the execution history is public. No one can alter it. No one can unpublish it. No central authority can remove the smart contract from the chain without a governance decision that likely cannot even be implemented.

The Immutability Paradox: BNB Chain Smart Contracts as a Malware Delivery Rail

In practice, this means the attacker has acquired a permanent, censorship-resistant content channel. The malware payload itself is not stored in the contract; that would be too expensive. It is stored on a central server or on IPFS. The contract acts as the anchor, the proof of authenticity, the infrastructure that makes the phishing page look more credible. The user might check an explorer. The user might see that a contract is verified. The user might think: this is on-chain, so it is legitimate.

That assumption is being weaponised. The user sees a blockchain address and confuses existence with approval. The same mental model that makes a decentralized application trustworthy โ€” code is visible, records are permanent, transactions are auditable โ€” becomes the mechanism that lowers the user's guard.

This is the double-use problem. I do not call it a bug. A bug is just an unspoken assumption made visible. The assumption here is that on-chain persistence is always a net positive. It is not. Persistence is a feature in a secure environment and a liability in an adversarial one. The same property that protects a financial contract from tampering protects a malicious CAPTCHA from takedown.


The CAPTCHA Is the Key

Let me focus on the CAPTCHA itself, because the psychological exploit is more important than the technical one. A CAPTCHA is a test designed to define the boundary between human and machine. It is a gatekeeper. Users are trained to comply with it. They are trained to click, to wait, to solve a puzzle, to prove that they are not a robot.

When a malicious actor wraps a smart contract in a CAPTCHA, they are hijacking a protocol of trust. The user believes the CAPTCHA is a security checkpoint. In reality, the CAPTCHA is the ambush. The browser download is the attack. The smart contract is the alibi.

This matters because the Web3 security industry has spent years teaching users to verify the contract address, to read the code, to check the approval limits. A fake CAPTCHA bypasses all of that. The user is not asked to approve a transaction. The user is asked to download a file. The traditional Web3 mental model โ€” inspect the transaction before signing โ€” does not apply, because the dangerous action is happening in the operating system, outside the wallet.

This is not a chain-level exploit. It is a terminal-level compromise. And it exposes a gap in the security architecture of Web3. We have built extraordinary surveillance around transactions, but very little around the browser context that surrounds those transactions. The wallet sees the contract call only after the human has already been compromised.


Attack Vector Analysis: Adversarial Execution Paths

Every serious review needs an attack vector section. Let me lay out the paths that this family of malware can take. These are not confirmed for the specific event, but they are the standard branches of the attack tree.

Path A is the download path. The user solves the fake CAPTCHA, clicks a download button, and opens a file. The file executes. It may be a JavaScript dropper, a PowerShell script, a fake browser update, or a signed Windows binary. Once it runs, it can exfiltrate browser storage, wallet extension data, and clipboard content. For a Web3 user, the most damaging outcome is a compromised mnemonic phrase. With the mnemonic, the attacker can reconstruct the wallet on their own device and drain it without any further interaction with the victim.

Path B is the signature path. The fake CAPTCHA requests a wallet connection. The user sees a standard wallet popup. The user may sign a message that appears harmless. The message could be crafted to delegate token approvals, or it could be a phishing signature that allows a smart contract to act on the user's behalf later. The CAPTCHA is the distraction. The signature is the real action. Too many users do not understand that signing a message is not always just a proof of identity; it can be a transfer of authority.

Path C is the session-hijacking path. The malware installed in Path A does not need the user's private keys. It can steal active browser sessions, including sessions with centralised exchanges. If the user logged into an exchange via the same browser, the malware can use the stolen cookies to issue withdrawal requests. The user might not notice until it is too late.

All three paths share a common property: they depend on the success of social engineering. There is no zero-day in the EVM. There is no reentrancy bug in the malicious contract. There is a bug in the user's trust model. And the attacker knows it.


The Missing Data Is a Security Bug

As a researcher, the most frustrating part of this report is what is missing. There is no malicious contract address. There is no attacker address. There are no IOCs โ€” indicators of compromise. There is no mention of whether security firms have detected any active payloads. Without these data, the practical response is limited to generic caution: do not click unknown links, do not download files from CAPTCHA pages, use hardware wallets.

That is not good enough. The inability to publish a blacklist means the infection window remains open. The attacker can keep deploying new contracts with new salts, each with a different address, while the security community is still waiting for someone to release a sample.

The missing data is not just a journalistic deficiency. It is a delay in the detection loop. Every day that passes without a contract address is a day in which another user can be served the same malware. The blacklist ecosystem โ€” the wallets, the security extensions, the threat-intel feeds โ€” cannot block what it cannot identify.

This is a known problem in blockchain security. Attackers move faster than attribution teams because they can automate deployment. A factory contract can generate thousands of addresses. Security teams, meanwhile, are still manually triaging public reports. The asymmetry is unsustainable. I have written in earlier audits that the industry needs machine-readable threat intelligence. This event is another proof point.


Market Impact: The Noise Level Is Low, but the Signal Is Long-Lasting

Let me address the market question directly, because it will come up. Does this event mean BNB is a sell? No.

The attack is not a protocol exploit. It does not drain a liquidity pool. It does not touch the BNB token contract. It does not change the supply schedule. It does not alter the revenue of a DApp. The direct pricing logic is absent. The expected price impact is low. A fake CAPTCHA campaign can create mild reputational damage, but it is not a three-sigma liquidation event.

That does not mean the market impact is zero. It means the impact is indirect. Mainstream media will cover this as another story about crypto being used for crime. Regulators will cite it as evidence that decentralized systems can be abused. Some users will become more cautious about interacting with BNB Chain-based DApps. The effect is probabilistic, not deterministic.

If this story is an isolated incident, it will fade within a week. If it becomes a pattern โ€” repeated malicious contract deployments on BNB Chain with credible security research behind them โ€” the cumulative effect on user confidence could be measurable. BNB Chain's position as a low-cost L1 with a deep DApp ecosystem does not change because of one malware campaign. But the cost-benefit equation for attackers changes. And when attackers find a profitable highway, they keep driving.

The broader market signal is for security infrastructure. Wallets with built-in risk detection, block explorers with malicious contract alerts, and security firms that monitor on-chain threat intelligence will see renewed demand. That is the real market signal. It is not a BNB trade; it is a theme trade in the security sector of Web3.


Ecosystem Ripple Effects

The upstream of this attack is the BNB Chain protocol itself. The midstream is the wallet, the browser, and the security tools that are supposed to protect the user. The downstream is the user's terminal and the user's funds.

Downstream, the user is the ultimate victim. A stolen wallet can be drained in the time it takes to complete a CAPTCHA on a phishing page. The funds leave the wallet through a normal-looking transaction. The user may not realise they were infected until long after the transaction has been mined. The downstream damage is real.

Midstream, the response is mixed. Some wallets already have risk-detection engines that flag known malicious addresses. Others rely on community blacklists. The fact that the attacker is using a fresh contract address means blacklists are only useful until the next deployment. Wallets need to be more proactive: they should flag contracts with no verified source code, contracts that were deployed recently, and contracts that interact with web pages via suspicious metadata.

Upstream, BNB Chain itself needs to think about a governance response. Because BSC is supported by a centralised entity, Binance, there is a legitimate path to intervene. Validators could theoretically refuse to include transactions from known malicious deployers. But that would be a drastic step. It would raise questions about censorship and decentralisation. I am not recommending it. I am noting that the option exists, and that regulators are already thinking about it.

Security is not a feature. It is the architecture. Any architecture that allows permanent, low-cost deployment of malicious contracts is going to become a target. The answer is not to ban contract deployment. The answer is to build verification layers that force the malicious contract to be identified before it can harvest its first victim.


Regulatory Blind Spots

The legal dimension of this attack is messy. The attacker is anonymous. The victims may be spread across several countries. The malware may be delivered from a server in one jurisdiction, while the smart contract is immortal on BNB Chain in another. There is no central party that can be served with a takedown order for the smart contract.

This is exactly the complexity that the original source material refers to. Blockchain technology complicates cybersecurity work because it decentralises responsibility without decentralising harm. Law enforcement agencies are used to chasing servers and domain registrars. They are not used to chasing EVM bytecode.

If the malware is linked to ransomware or a state-sponsored threat actor, the regulatory stakes rise. The US Treasury has reporting obligations for ransomware payments. Exchanges may be required to trace funds connected to ransomware actors. But there is no evidence yet that this particular campaign has those links. I am flagging it as a monitoring priority, not as a conclusion.

There is also a BSC-specific regulatory angle. Because BNB Chain has a well-known corporate backer, the pressure on Binance to intervene in on-chain abuse is higher than the pressure on Ethereum Foundation. If malicious contract deployments become a frequent problem on BSC, regulators will ask Binance what it plans to do. The answer, technically, is: not much, without making the chain more centralised. That is a governance tension that will not disappear.


The Contrarian Angle: More Tools Are Not the Real Solution

The common response to this type of attack is to call for better security tools. I am going to push back on that. Tools are a patch, not a fix.

The real problem is that the user is being asked to make a security decision in a context that is designed to hide the risk. A user who sees a CAPTCHA does not think about bytecode. They think: I have to prove I am not a robot. The security tool in front of them is the CAPTCHA itself, and it has been weaponised.

The deeper issue is semantic. The industry has spent years optimising for gas efficiency, for financial invariants, for protocol correctness. We have spent very little time optimising for clarity. We assume users know what a smart contract is. We assume they can distinguish a verified contract from an unverified one. We assume they read the warnings. Those assumptions are false for the majority of users.

The contrarian conclusion is this: the attack is not evidence that BNB Chain needs more validators or more audits. It is evidence that the abstraction layer of Web3 is too sharp. The user should never be able to reach a download button from a CAPTCHA that is rendered by a smart contract. That should be impossible at the platform level, not just a matter of user vigilance.

Clarity is the highest form of optimization. A wallet that shows a warning โ€” 'This contract was deployed three minutes ago and has no verified source' โ€” is more valuable than a wallet with a complex gas optimisation dashboard. Security is not a feature; it is the architecture. If the architecture does not make the risk visible, no amount of user education will save the next victim.


What Should Change in the Security Stack

Let me translate the analysis into a practical checklist. This is based on my audit experience and my understanding of the current threat landscape.

First, wallets should not allow a webpage to initiate arbitrary downloads. A browser-based DApp should have no capability to force a wallet browser to download an executable. If a DApp needs to download a file, it should require a user gesture outside the wallet's trusted UI and a separate confirmation with a clear warning. This is a technical design decision, and it can be implemented today.

Second, contract explorers and wallet UIs need to expose deployment age and verification status more aggressively. A user who is about to interact with a contract should see a high-contrast warning if the contract is unverified, younger than a few days, or has no significant transaction history. The warning should interrupt the flow, not sit quietly in a dropdown menu.

Third, security vendors should publish machine-readable IOCs as soon as a malicious contract is discovered. The report from the original source is a warning, but it is not a signal. A signal includes an address, a hash, a list of associated domains, and a timeline. Without that, the security community is blind.

Fourth, CAPTCHA services in decentralised applications should be standardised. A legitimate CAPTCHA in a Web3 application should not require a download. It should not require a wallet signature. It should not use a smart contract as its backend. If the industry creates a clear, machine-readable CAPTCHA standard, then any deviation from that standard becomes an obvious red flag. This is the semantic consistency point I have raised in my work on autonomous agents. If we want AI agents to interact with Web3 safely, they need to be able to parse the difference between a legitimate verification and a malicious download prompt. Right now, that distinction is not encoded anywhere.

Fifth, the legal side should build a faster takedown process for off-chain components. The smart contract cannot be removed, but the domain name can be suspended, the server can be seized, and the IPFS gateway can be blocked. Cooperation between blockchain security firms and hosting providers could shorten the window of infection. The permanent on-chain component will remain, but the campaign can be disrupted.


Where the Next Attack Will Hit

If I had to forecast the evolution of this threat, I would look at three vectors.

The first vector is cross-chain replication. The same attack pattern can be deployed on any low-cost EVM-compatible chain. The source report mentions BNB Chain, but the template is universal. Attackers will deploy identical factories on Polygon, Avalanche, Base, Arbitrum, and any other chain where the gas cost is low and the user base is concentrated. The only reason BNB Chain becomes the favoured venue is economics. If another chain undercuts its fees, the malware will follow the arithmetic.

The second vector is AI-automated phishing. As AI agents begin to execute transactions on behalf of users, the CAPTCHA will be replaced by an even more dangerous abstraction: an AI agent that can be persuaded to interact with a malicious contract because the contract's metadata is designed to satisfy the agent's pattern-matching system. We are already seeing research on prompt injection attacks against blockchain agents. A fake CAPTCHA is a crude version of the same idea. The next version will target the agent's decision engine, not the human's reflexes.

The third vector is the developer supply chain. The malicious contract could be hidden inside a template repository, an open-source SDK, or a test suite that developers copy into their projects. Instead of targeting the end user directly, the attacker targets the developer who deploys the DApp. If the developer unknowingly includes a malicious contract in their front end, the entire user base of the DApp becomes exposed. That would be a much more severe variant, and it would be harder to detect because the initial victim is a developer who trusts their own audit trail.

Each vector is more dangerous than the current event. The current event is a plain social engineering attack. The next events will be infrastructure-level attacks that exploit the same immutability properties but with a broader reach. The stack will overflow before the chain does.


The Information-Value Assessment

Let me close the loop on what this report is worth.

Technically, it is a signal with no payload. It tells us that a malicious campaign is active, but it gives us no artefact to analyse. The technical value is low, not because the attack is irrelevant, but because the public data is too thin to support replication, detection, or mitigation.

Investor-wise, it is not a trade. There is no token that should be shorted because of this report. There is no project that should be re-rated. The only indirect investment signal is the potential growth of security vendors and risk-detection wallets, but that signal is too weak to act on without more evidence.

As an event for ordinary users, it is a reminder. The reminder is simple: a CAPTCHA is not a security certificate. A blockchain address is not a proof of legitimacy. A download prompt inside a Web3 session is a potential kill switch. The report has value because it reinforces that lesson, but it has no forensic depth.

As an event for the broader narrative, it is a data point in the long-running discussion about the double use of decentralised infrastructure. That discussion is not going away. Every year, another actor finds a way to take an axiom of blockchain design and turn it against the user. The narrative will continue to grow as the cost of running such campaigns falls.


The Invariant That Must Be Preserved

The final question is not whether BNB Chain is safe. The final question is: what invariant do we want to preserve? As a cryptographer, I believe in invariants. The constant product formula of an AMM must hold. The gas accounting of the EVM must hold. The commitment scheme of a rollup must hold. But those invariants are about math, not about human cognition.

The invariant that truly matters for the next decade of Web3 is simple: a user should never be tricked into executing a hostile payload by a mechanism that is supposed to prove trust. CAPTCHA means 'Completely Automated Public Turing test to tell Computers and Humans Apart.' It was never designed to be a distribution channel for malware. When it becomes one, the trust contract between protocol and user has been broken.

Code is law, but logic is the judge. The logic here says that immutability without context and without verification tools turns into a weapon. The answer is not to abandon immutability. The answer is to build the context layer, the machine-readable labels, the wallet warnings, and the standardised verification flows that make the hostile contract visible before it can execute its payload.

Compiling truth from the noise of the blockchain means knowing which contracts are safe, which are suspicious, and which are traps. The current report is noise. It is an alert, but it is not a detection. The industry needs to turn these alerts into structured, machine-readable signals that can be consumed by every wallet, every security extension, and every AI agent running on behalf of a user.

The stack overflows, but the theory holds. The theory is this: security is not a feature; it is the architecture. And the architecture is only as safe as its weakest abstraction. The CAPTCHA has just been proven to be one of those weak abstractions. The next step is to patch it at the protocol level, not by blaming the user.

Optimizing for clarity, not just gas efficiency, is the only way forward. A contract that is clearly labelled, clearly verified, and clearly tied to a legitimate application is the safest contract. A contract that lives in the margins of explorer data and waits in a fake CAPTCHA is a threat. We have the cryptographic tools to make the difference visible. Now we need the will to deploy them.

The next time you see a CAPTCHA in a Web3 interface, stop. Do not click download. Do not sign a message. Do not let the browser touch your wallet extension. The immutable ledger will not protect you. The only protection is the invariant you choose to enforce: never let a proof of humanity become a proof of compromise.

The curve bends, but the invariant holds. The invariant is that the user's terminal is the final boundary. No validator set, no smart contract auditor, and no security vendor can protect a user who has already downloaded the attacker's payload. The boundary has to be defended before the download starts. That defence must be embedded in the architecture, in the wallet, in the CAPTCHA standard, and in the machine-readable threat intelligence that connects them.

This is not a call to panic. It is a call to design better. The report on BNB Chain is one small stone in a large avalanche. Every low-cost chain, every decentralized application, every browser-based Web3 interface is a potential delivery rail. The attackers are already using the same codebase to run their campaigns. We can either build a better abstraction now, or we can wait for the next victim to show us where the boundary is again.

That boundary should have been obvious from the first time a user was asked to prove they are human by downloading a file from an immutable smart contract. It is obvious now. The archive is permanent. The lesson should be too.

Market Prices

Coin Price 24h
BTC Bitcoin
$65,023.2 +0.22%
ETH Ethereum
$1,921.21 +0.36%
SOL Solana
$74.95 +1.82%
BNB BNB Chain
$595.5 +0.81%
XRP XRP Ledger
$1.04 +0.16%
DOGE Dogecoin
$0.0703 +1.15%
ADA Cardano
$0.1998 -1.04%
AVAX Avalanche
$6.52 +1.12%
DOT Polkadot
$0.8191 +0.73%
LINK Chainlink
$8.33 +1.24%

Fear & Greed

30

Fear

Market Sentiment

Event Calendar

{{ๅนดไปฝ}}
22
03
unlock Optimism Unlock

Circulating supply increases by about 2%

30
04
upgrade Celestia Mainnet Upgrade

Improves data availability sampling efficiency

08
04
upgrade Solana Firedancer

Independent validator client goes live on mainnet

28
03
unlock Arbitrum Token Unlock

92 million ARB released

10
05
upgrade Ethereum Pectra Upgrade

Raises validator limit and account abstraction

15
04
halving Bitcoin Halving

Block reward reduced to 3.125 BTC

18
03
unlock Sui Token Unlock

Team and early investor shares released

12
05
halving BCH Halving

Block reward halving event

Tools

All โ†’

Altseason Index

43

Bitcoin Season

BTC Dominance Altseason

Gas Tracker

Ethereum 28 Gwei
BNB Chain 3 Gwei
Polygon 42 Gwei
Arbitrum 0.5 Gwei
Optimism 0.3 Gwei

Market Cap

All โ†’
# Coin Price
1
Bitcoin BTC
$65,023.2
1
Ethereum ETH
$1,921.21
1
Solana SOL
$74.95
1
BNB Chain BNB
$595.5
1
XRP Ledger XRP
$1.04
1
Dogecoin DOGE
$0.0703
1
Cardano ADA
$0.1998
1
Avalanche AVAX
$6.52
1
Polkadot DOT
$0.8191
1
Chainlink LINK
$8.33

๐Ÿ‹ Whale Tracker

๐Ÿ”ด
0x4509...897c
6h ago
Out
3,969 ETH
๐Ÿ”ต
0x1110...e4d6
1d ago
Stake
33,772 SOL
๐Ÿ”ต
0x4cea...20cb
6h ago
Stake
3,998,312 USDT

๐Ÿ’ก Smart Money

0x855b...e706
Market Maker
+$4.3M
73%
0x234c...4dfc
Arbitrage Bot
+$3.4M
65%
0xca82...dd14
Top DeFi Miner
+$4.9M
69%