Ly Gravity

The $38M Key Flaw: Coldcard, AI-Assisted Audits, and the End of the Hardware Wallet Security Theater

0xCred Companies

The $38M Key Flaw: Coldcard, AI-Assisted Audits, and the End of the Hardware Wallet Security Theater

Hook: The Configuration File That Tells the Truth

The interface is a lie; the backend is the truth. Somewhere in the git history of an open-source firmware repository, there is a commit that should not have been merged. Maybe it was an innocuous refactor of the key-derivation module. Maybe it was a subtle change to the random-number generator's seeding logic. It might have survived hundreds of code reviews, been signed by a maintainer, and shipped to thousands of devices. Then an adversary — or, according to Coinkite, an adversary's AI — found it. And $38 million in bitcoin moved.

That is the story fragment we have: Coinkite, the Canadian company behind the Coldcard hardware wallet, has acknowledged a key flaw that allowed attackers to drain approximately $38 million from user funds. The company's working hypothesis is that the attackers used AI to audit previous versions of the open-source firmware and identify the vulnerability. No technical specifics have been disclosed. No CVE has been assigned. No patch has been confirmed. Just the number $38 million, a suspicion about artificial intelligence, and an entire self-custody ecosystem holding its breath.

I have spent the last week tracing the logic gates back to the genesis block of this incident, which means reconstructing what likely happened from the only evidence that matters: the architecture of the Coldcard product, the history of its firmware lineage, and the economics of AI-assisted vulnerability discovery. The documentation is sparse. The assembly, if you can find it, is more honest.

Read the assembly, not just the documentation — because the documentation for Coldcard still says "cold storage," still promises "private keys never leave the device," and still sells users on the fiction that physical isolation is a sufficient security posture in 2025. The assembly tells a different story. Somewhere in that bytecode, a predicate failed. And when a predicate fails in a key-management system, the entire security model becomes a memory access violation waiting to be exploited.

Context: The Security Maximalist's Weapon of Choice

To understand why this event matters beyond the $38 million price tag, you have to understand what Coldcard is in the Bitcoin ecosystem. It is not a consumer gadget. It is not a competitor to Ledger, at least not in the way Ledger competes with Trezor. Coldcard is the hardware wallet chosen by the paranoid, the technically fluent, and the ideologically committed. Its marketing has never been about ease of use; it has been about adversarial resistance.

The product line is built around a set of design principles that, until now, were effectively unchallenged in the Bitcoin community. First, open-source firmware: every line of code that runs on the device is publicly auditable. Second, air-gapped operation: the device can sign transactions without ever connecting to a networked computer, using QR codes and microSD cards as the transmission medium. Third, depth of security features: passphrase-protected BIP39 seeds, multi-signature support, a secure boot chain, and a hardware wallet that behaves more like a military-grade cryptographic tool than a consumer appliance.

Coinkite has been building these devices since approximately 2014, and in that decade-plus, the Coldcard developed a reputation not just as a product but as a symbol. It was the wallet that the Bitcoin purists used. It was the wallet that held the reserves of small funds and large whales. It was the wallet that self-custody maximalists pointed to during every exchange collapse, every DeFi hack, every reminder that "not your keys, not your coins" required better tooling.

Now, the core promise has been broken in the most direct way possible. The key flaw did not steal user data. It did not leak metadata. It exposed private keys — the one thing a hardware wallet is contractually, architecturally, and culturally obligated to protect. The companies affected are not just Coldcard's balance sheet. The affected asset is the credibility of an entire security philosophy.

The information available is thin, and I want to be explicit about that. We do not know whether the flaw is in key generation, key storage, signing logic, seed derivation, or the firmware update mechanism. We do not know whether the attack required physical access to devices, whether it was performed remotely, or whether it exploited a chain of multiple vulnerabilities chained together. We do not know how many devices are affected, whether specific batches or firmware versions are implicated, or whether Coinkite has already shipped an emergency update. What we do know is that this happened, that it cost users $38 million, and that Coinkite's public posture is to attribute the discovery to AI-powered code auditing.

I have been asked, in the aftermath of this announcement, whether such a breakdown changes my own assessment of hardware wallets as a security layer. It does not change my assessment of the architecture, because my assessment was never about any single vendor's marketing claims. It was always about the adversarial model: what, exactly, are you defending against, and what are you defending with? The Coldcard incident answers that question with brutal clarity. The defense was a wall of code that the attackers could read. And they found a crack.

Core: Anatomy of the Breach

The Private Key Lifecycle: Where "Key Flaw" Lives

Let us begin the technical reconstruction. A hardware wallet's security does not reside in a single function, a single chip, or a single layer. It resides in the integrity of the entire private-key lifecycle, from the moment entropy enters the system to the moment a signature is emitted. There are five critical stages in that lifecycle, and a "key flaw" can lurk in any one of them.

The first stage is entropy generation. A private key is, at its root, a random number. If the randomness source is weak, predictable, or improperly seeded, then the private key is not actually secret. This is the class of vulnerability that has haunted the industry since its inception. The Sony PlayStation 3 hack of 2010 was an ECDSA nonce reuse bug — the same key was used to sign multiple messages, and the mathematics of elliptic curve cryptography collapsed the key space entirely. The Android SecureRandom disaster of 2013 caused a wave of compromised bitcoin wallets because the Java random-number generator was inferring entropy from system state in ways that an attacker could reproduce. In 2020, the development community discovered that a batch of wallets with weak entropy had been systematically drained by an automated scanner that generated matching keys.

The second stage is seed derivation. Most hardware wallets, including Coldcard, implement BIP32 and BIP39. A seed phrase is generated from entropy, then a hierarchical deterministic (HD) tree of keys is derived from it. Bugs in this stage can produce catastrophic collisions. If a derivation function incorrectly handles a particular set of inputs, two different devices could generate the same seed, or a subset of the key space could become significantly more probable than the rest. These bugs do not announce themselves. They live in edge cases that standard test vectors often miss.

The third stage is key storage. A private key is typically stored in secure memory, often in a dedicated secure element or encrypted with a hardware-derived key. If the storage mechanism has a flaw — say, the key is written to a buffer that is later reused without being wiped, or the encryption scheme uses a static or predictable IV — then the key can be extracted by an attacker who has the right tooling. Side-channel attacks, including power analysis and electromagnetic emission monitoring, have historically targeted this stage. Coldcard's air-gapped design mitigates some of these risks, but the code that manages key storage is still software. And software has bugs.

The fourth stage is signing. When a user signs a transaction, the private key is used to produce an ECDSA or Schnorr signature. The signing function must ensure that the nonce is unique and unpredictable. If the nonce generation is biased or repeatable, an attacker can recover the private key from the signatures alone. This was the mechanism behind the infamous Hackers Holdings attack in 2021, where a Bitcoin wallet service used an insecure nonce implementation, leading to the loss of approximately $20 million in bitcoin — a loss that was later recoverable in part because the flaw was so clearly understood.

The fifth stage is the update path. Firmware updates are the blood flow of any hardware wallet. They patch bugs, they add features, and occasionally they introduce new vulnerabilities. The update mechanism itself is a prime target: if the signature verification on firmware updates is flawed, an attacker can install malicious firmware that leaks keys. If the update process allows downgrades, an attacker can roll a device back to an older, vulnerable firmware version.

Given the phrase "key flaw" in the available reporting, my confidence is highest that the vulnerability sits in one of the first four stages. A flaw in the update mechanism would more likely be described as a "remote code execution" or "firmware spoofing" issue. A flaw that produces weak or predictable keys would be described precisely as Coinkite described it: a key flaw. The fact that it led to direct asset theft rather than, say, transaction manipulation also tells us something. The adversary(s) were able to derive, extract, or reproduce private keys.

I have seen this pattern before. In 2017, when I spent 400 hours reverse-engineering early multisig contracts on the Ethereum network — work that had nothing to do with the ICO mania and everything to do with the gnawing conviction that the marketing did not match the bytecode — I found that the most expensive vulnerabilities were the quiet ones. Integer overflows that triggered only under specific input conditions. Reentrancy bugs that required a particular call sequence to unlock. The vulnerabilities that shipped in popular wallets were not the ones advertised in the whitepaper. They were the ones that lived in the assembly, invisible to anyone who read the documentation.

The same lesson applies here. The Coldcard key flaw does not care about the product's reputation. It does not care about air-gapped signing or the size of the user community. It exists because a piece of code did not enforce the invariants it was supposed to enforce.

The AI-Assisted Audit Hypothesis: What Does It Actually Mean?

Coinkite's speculation that the attackers used AI to review the open-source firmware is the most technically consequential claim in this story. It deserves a rigorous unpacking because the term "AI" is carrying a lot of narrative weight and very little precise meaning.

Let us be precise about the capabilities. Large language models and code analysis systems have, over the past three years, become genuinely useful for static analysis. They can scan a repository, identify patterns that resemble known vulnerability classes, and flag suspicious code paths. They are not yet autonomous exploit generators like something out of a summer blockbuster, but they do not need to be. The threat model for an AI-assisted attack is not a machine thinking in solitude. It is a human attacker with a co-pilot that can process the entire Coldcard firmware repository in minutes and surface the five most suspicious functions.

This is a fundamental shift in the economics of vulnerability discovery. A professional human security auditor might bill $200 to $400 per hour and require two to four weeks to comprehensively review a firmware codebase of Coldcard's size. An AI-assisted attacker can do a first pass in hours, at a cost measured in API credits. The duplication effort is near zero: once an AI system has been fine-tuned on hardware-wallet firmware patterns, it can be pointed at Ledger's codebase, Trezor's codebase, Foundation Passport's codebase, and every open-source derivative in between, all at marginal cost.

This is the threat concentration that matters. Historically, attacks on hardware wallets were labor-intensive. They required physical access, sophisticated lab equipment, or social engineering. The barrier to entry was high enough that most attackers chose easier targets. AI-assisted code analysis does not eliminate the need for exploit development, but it dramatically lowers the search cost. Finding a needle in a haystack is now a vectorized query.

The specific clue in Coinkite's statement — that the attackers reviewed "previous versions" of the firmware — is telling. It suggests one of two scenarios. Scenario A: the vulnerability existed in older firmware versions, was subsequently fixed, but users who never upgraded remain exposed. This is the most common reality in the hardware wallet world. Devices are updated by users, not by the manufacturer, and a significant fraction of devices stay on old firmware for months or years. Scenario B: the vulnerability existed across versions, was only identified when the AI system compared the diffs between firmware releases, and the "previous versions" reference simply reflects that the code path was present in the git history before it was removed or modified.

Either scenario points to the same systemic weakness: the firmware update pipeline is the fault line of the entire self-custody ecosystem. Users do not update. The failure is not entirely their fault — updating a hardware wallet is friction, and friction is the enemy of security. Air-gapped devices, which Coldcard markets so aggressively, are by design harder to update because they are not connected to anything. The user must download the firmware on a separate machine, verify its signature, transfer it to the device via SD card, and manually initiate the update. For a user with $38 million worth of bitcoin, this process might seem like a reasonable inconvenience. But for the users who lost funds — presumably high-net-worth individuals and technical enthusiasts — the process was evidently either skipped, botched, or impossible in the moment.

There is a deeper implication of the AI-assisted audit hypothesis that deserves attention: the open-source firmware model has a fundamental, unexplored asymmetry. The same transparency that allows security researchers to audit the code also allows adversaries to audit the code. Over the past decade, the Bitcoin community has treated open source as an unalloyed good. The assumption is that more eyes lead to more secure code. But that assumption was calibrated for a world where the cost of reviewing code was high enough to limit the number of adversarial reviewers. AI changes that cost curve. The eyes are no longer limited; they are generated on demand.

Open-Source Firmware: The Double-Edged Sword, Finally Sharpened

Tracing the logic gates back to the genesis block of Coldcard's design philosophy, you find a commitment to transparency that was, and remains, entirely sincere. Coinkite publishes its firmware source code, maintains a detailed developer wiki, and encourages independent researchers to audit its work. This transparency has built a community of technically sophisticated users who trust the product precisely because they can verify it. That trust is not misplaced in principle. But it is incomplete in practice.

What the community has collectively failed to confront is that open-source firmware is a double-edged sword with an asymmetric adversary profile. Legitimate auditors must be thorough; attackers only need to be lucky once. And with AI, the luck requirement drops. An AI system can analyze every commit in the repository, trace the evolution of every function, and identify the exact commit where a security invariant was accidentally dropped.

Git history is a reconnaissance goldmine. Every bug fix that is committed publicly is also a public announcement of a vulnerability class that existed before the fix. Every refactor that changes the boundary between trusted and untrusted code is a map of trust assumptions. Every comment that says "we should really improve this later" is a lead for an attacker. This is not an argument for closed-source firmware — closed source has its own, arguably worse, problems, including the inability of users to verify anything at all. But it is an argument for a more mature understanding of what open source does and does not provide.

In my own audit experience — and the 2020 DeFi composability crisis, when I spent six weeks simulating flash loan attacks against Synthetix's oracle architecture, was formative here — the most valuable audit artifact was not the final report. It was the diff history. Understanding how a system evolved tells you where its designers were uncertain, where they compromised, and where they forgot. An AI system does not need to be a genius. It needs to know where the bodies are buried. And in an open-source repository, the bodies are never buried at all.

The Coldcard flaw, whatever its precise technical nature, is a reminder that "security through transparency" is only as strong as the verification culture that surrounds it. A public codebase that is not continuously audited, formally verified, and adversarially tested is not security through transparency. It is security through hope.

The "Security Theater" of the Air Gap

One of the most damaging collateral effects of this incident will be the erosion of what I will call the "air-gap mystique." The idea that a device which never touches a network is inherently safe has been a central pillar of hardware wallet marketing for years. Coldcard's air-gapped signing workflow is genuinely elegant: the device never connects to a computer, never transmits over Bluetooth or USB, and never exposes its private keys to any networked interface. Instead, unsigned transactions are brought to the device via microSD or QR code, and signed transactions are carried out the same way.

But the air gap protects against a specific threat model: remote network exfiltration. It does not protect against software flaws. If the firmware has a key-generation bug, the air gap is irrelevant. The keys are weak from the moment the device is set up, on a device that has never touched the internet. If the firmware has a signing-logic flaw that leaks private key material into the signature output, the air gap is irrelevant — the exfiltration happens through the signed transaction itself.

The user experience of air-gapped devices compounds the problem. Because the devices are not network-connected, they do not automatically receive security updates. The firmware update process requires deliberate user action, and the users who most value the air gap — the paranoid, the technically fluent, the ideologically committed — are often the ones who are most resistant to making changes to their security setup. The result is a system that is operationally secure but developmentally static. In a world where attackers are using AI to mine the git history, a static device is a target with a slowly closing window of safety.

The $38 Million Question: Who Is to Blame?

The instinct in decentralized communities is to blame the users. They should have updated. They should have verified the firmware. They should have used multi-sig. And up to a point, that instinct is correct — the responsible use of any security technology requires vigilance. But the instinct is also a convenient deflection. When a security product's central promise is "your keys are safe with this device," the manufacturer bears the burden of ensuring that the entire lifecycle of the device, including its legacy versions, does not betray that promise.

The $38 million question is not just about the direct victims. It is about the cold start problem of trust recovery. A hardware wallet is a security product, and for security products, trust is the product. Coinkite can publish a post-mortem. It can release a patched firmware. It can even compensate victims, though the probability of full compensation is low and the precedent would be dangerous. What it cannot easily rebuild is the confidence that its devices are fundamentally sound. That confidence is built over a decade of careful engineering and can be destroyed by a single predicate failure.

The collateral damage extends beyond Coinkite. Every hardware wallet manufacturer in the ecosystem is now staring at the same uncomfortable reality: their firmware is written by humans, and humans write buggy code. Ledger's secure element approach offers some mitigation because the most sensitive operations happen in a proprietary chip with a smaller attack surface. Trezor's open-source approach has been repeatedly probed, and while its physical security has occasionally been compromised in laboratory settings, it has not suffered a remotely exploitable key generation flaw of this magnitude to public knowledge. But the event will inevitably push the entire industry to reconsider the relationship between transparency, verification, and liability.

Let me be direct, because being direct is the only honest way to do this analysis: the Coldcard incident is not a failure of one company's engineering culture. It is a symptom of the broader industry's underinvestment in formal verification. Most hardware wallet firmware is written in C, a language with no memory safety guarantees, compiled with toolchains that do not provide formal proofs of correctness, and tested with methodologies that are not significantly more advanced than what I did in my own audit work in 2017. We have been building financial custody devices with software engineering practices that are two decades old.

The zero-knowledge retreat I took during the 2022 bear market — eighteen months studying the mathematical foundations of Groth16 and implementing a proof-of-concept in Rust — left me with an uncomfortable conclusion that I have carried into my consulting work ever since. The cryptography we use is often decades ahead of the software engineering we use to implement it. The math is beautiful; the code is the mess. A zk-SNARK can prove the correctness of a computation, but it cannot prove that the computation you specified was the one you intended to implement. And in the hardware wallet world, the computation is often specified in the private-key lifecycle, while the implementation is a C file that only the assembly truly understands.

The 2025 work I did with a Dutch pension fund on MPC-based cold storage crystallized this lesson. The fund asked me to audit a custom HSM integration, and I found a side-channel leakage risk in the key generation process that would not appear in any standard security certification. The board members were not impressed by my explanation of the failure. They were impressed by the fact that it cost them nothing to fix, because they had not yet deployed the system. The lesson for any institutional entity holding digital assets in the post-Coldcard era is blunt: your custody solution is only as strong as the least-tested code path in its entire supply chain.

Contrarian: The AI Story Is a Convenient Distraction

The speculative claim at the center of this story — that the attackers used AI to find the vulnerability in old firmware — is doing more narrative work than the facts can support. I want to argue against the dominant framing, because I believe the framing is dangerous.

Coinkite has reason to present the attack as the work of an advanced, unprecedented adversary. The AI narrative transforms an uncomfortable product failure into an existential arms-race headline. It allows the company to say, in effect, "we did not lose to a human attacker; we lost to the future." That framing is exculpatory. It shifts the focus from internal quality assurance to external technological forces.

Here is what the AI narrative obscures. The vulnerability existed in the firmware. It existed because the codebase was not formally verified, not sufficiently fuzzed, and not adversarially tested at the depth required for a product holding $38 million in user funds. AI did not create the vulnerability. AI did not ship it. AI merely read the code that was already there. If Coinkite's security engineering had been capable of finding a bug of this severity in their own code, the AI discovery would be nothing more than a footnote. The fact that the bug survived to production — and survived long enough to be discovered by an adversary's automated analysis — is the story.

There is also a second, even more cynical reading of the AI narrative. If Coinkite cannot definitively prove that AI was used, the claim is unverifiable speculation. It is entirely possible that the attackers found the vulnerability using the most conventional tools in the trade: a human auditor, a disassembler, and patience. The actual disclosure — "we suspect AI" — reads less like a forensic finding and more like a press release engineered for maximum media resonance. The words "AI" and "money stolen" in the same headline are a guaranteed story, and they are a story that generates far more clicks than "we shipped a bug."

Either way, the framing matters because it distracts from the systemic lessons. If we pour our collective attention into "AI attacks are coming," we will build AI-powered attack detection systems, AI-assisted auditing tools, and a security industry that competes on the sophistication of its machine-learning claims. Meanwhile, the unglamorous fundamentals — memory-safe languages, formal verification, reproducible builds, continuous adversarial testing — will continue to receive a fraction of the investment they deserve.

This is the pattern I have watched the industry repeat since DeFi Summer. We build complicated narratives around exotic threats while the basics go unaddressed. We declared "liquidity fragmentation" a crisis while ignoring the fact that the underlying protocols were not secure. We monetized narrative innovation instead of engineering rigor. And now we are being handed the most dramatic narrative of all — the AI that found the bug — when the real lesson is as old as software itself: every codebase has bugs, and the cost of finding those bugs is dropping faster than the value you are storing in them.

I do not believe that claiming the AI narrative is entirely wrong. I believe it is strategically incomplete. The correct response to the Coldcard incident is not to panic about AGI-powered attacks. It is to ask why the hardware wallet industry does not subject its firmware to the same formal verification standards as spacecraft software, aviation firmware, or medical devices. The code controls assets. The code should be proven. The fact that it is not is not an AI failure. It is an engineering failure.

There is one more contrarian angle that deserves attention: the possibility that the focus on AI is hiding a far simpler and more damning explanation. Weak key generation, if that is indeed the flaw, is a vulnerability class that has been known, documented, and exploited since 2013. The bitcoin ecosystem has lost hundreds of millions of dollars to weak randomness. If Coldcard's flaw is in this category, then the sophistication of the attacker is irrelevant. Somewhere in the world, a script is reading blockchain data and checking whether any visible keys correspond to known weak-generation patterns. That is not AI. That is arithmetic. And if that is what happened, the story is worse than "sophisticated AI attacked us." It is "we shipped a product with a known, preventable failure mode and did not catch it."

I suspect — and I must label this as suspicion, because the evidence is incomplete — that the full disclosure will not be an exotic AI tale. It will be a mundane story about a missing check, a weak assumption, or a subtle bug in a function that looked fine at a glance. The AI was probably involved; discovering a needle in a haystack is what language models are good at. But the needle was planted by human error, and the haystack was built by engineering debt.

Takeaway: The Vulnerability Forecast

What comes next? The forward-looking picture is not optimistic for the hardware wallet industry, and it is not optimistic for the narrative of self-custody as a simple product purchase.

The first forecast is that this will not be an isolated event. The exposure of Coldcard's firmware to AI-assisted analysis sets a precedent. Other open-source hardware wallet manufacturers should assume that their codebases are currently being analyzed by automated systems. If any of them contain vulnerabilities of a comparable class, the probability of discovery — and exploitation — is higher than at any point in their history. The question is not whether more hardware wallet vulnerabilities exist. It is whether the industry will find them before the attackers do.

The second forecast is a shift in custody architecture. The Coldcard incident strengthens the case for multi-party computation (MPC), threshold signatures, and multi-signature wallets as the default for significant holdings. The failure of a single device is the failure of a single point of failure. MPC breaks that point into shards, spread across independent systems, so that no single firmware flaw can expose a complete private key. The cost is complexity, and the benefit is redundancy. In a world where attackers are mining code for flaws, redundancy is the only reliable defense.

The third forecast is regulatory. The $38 million loss will attract attention from consumer protection agencies, product liability attorneys, and possibly regulators who have been waiting for a case that makes hardware wallets look like risky consumer products. We may see mandatory disclosure requirements, security certification standards, or minimum verification obligations imposed on hardware wallet vendors. I have been skeptical of rushed regulation in this industry; the Tornado Cash precedent taught us that regulators can catastrophically misidentify the threat model. But product liability for a device that stores billions in value is a different category.

The fourth forecast is cultural. The Coldcard community is among the most technically literate in the entire cryptocurrency ecosystem. These are the users who questioned my Synthetix oracle work in 2020 and demanded rigorous proofs. They are the users who will now demand not just a patch but a transparent post-mortem, a formal specification of the fixed code, and a commitment to verification that matches the scale of the trust they were asked to invest. If Coinkite meets that demand, it can salvage its reputation. If it hides behind the AI narrative, it will lose its community for good.

And finally, the reflection that matters most: the hardware wallet's promise was never that it was unhackable. The promise was that it was more secure than the alternative. The Coldcard incident does not prove that hardware wallets are worthless. It proves that they are not sufficient. Self-custody is not a product you buy. It is a discipline you practice. It requires verification, updates, redundancy, and the uncomfortable acceptance that the code you trust was written by humans who make mistakes.

The numbers are brutal: $38 million, stolen. The precedent is worse: a security product's key promise broken. The warning is clear: an AI system read the assembly that we were all too busy to read ourselves. The next vulnerability is already in some repository, waiting for someone to ask the right question. The only defense is to audit everything, distrust every assumption, and remember that the documentation is never the truth. The truth is in the bits. And the bits are watching back.

Market Prices

BTC Bitcoin
$76,638.8 -1.93%
ETH Ethereum
$2,379.53 -3.34%
SOL Solana
$97.95 -4.37%
BNB BNB Chain
$683.9 -0.55%
XRP XRP Ledger
$1.32 -4.58%
DOGE Dogecoin
$0.0810 -2.48%
ADA Cardano
$0.1942 -2.75%
AVAX Avalanche
$7.12 -2.25%
DOT Polkadot
$0.8444 -2.93%
LINK Chainlink
$11.02 -4.05%

Fear & Greed

63

Greed

Market Sentiment

Event Calendar

{{年份}}
10
05
upgrade Ethereum Pectra Upgrade

Raises validator limit and account abstraction

08
04
upgrade Solana Firedancer

Independent validator client goes live on mainnet

12
05
halving BCH Halving

Block reward halving event

22
03
unlock Optimism Unlock

Circulating supply increases by about 2%

15
04
halving Bitcoin Halving

Block reward reduced to 3.125 BTC

30
04
upgrade Celestia Mainnet Upgrade

Improves data availability sampling efficiency

28
03
unlock Arbitrum Token Unlock

92 million ARB released

18
03
unlock Sui Token Unlock

Team and early investor shares released

Altseason Index

41

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
$76,638.8
1
Ethereum ETH
$2,379.53
1
Solana SOL
$97.95
1
BNB Chain BNB
$683.9
1
XRP Ledger XRP
$1.32
1
Dogecoin DOGE
$0.0810
1
Cardano ADA
$0.1942
1
Avalanche AVAX
$7.12
1
Polkadot DOT
$0.8444
1
Chainlink LINK
$11.02

🐋 Whale Tracker

🔴
0x86fd...54e8
1d ago
Out
1,429.22 BTC
🔴
0x7bee...4920
12m ago
Out
13,512 SOL
🔴
0x51e9...aaac
2m ago
Out
29,921 SOL

💡 Smart Money

0x7680...fd3a
Top DeFi Miner
+$4.6M
82%
0x73e3...56f4
Experienced On-chain Trader
-$3.7M
88%
0x3244...d03a
Top DeFi Miner
+$4.9M
62%

Tools

All →