JackConsensus
BTC $76,280.5 +0.30%
ETH $2,426.26 +0.72%
SOL $99.32 +1.87%
BNB $724.3 +1.40%
XRP $1.3 +0.23%
DOGE $0.0809 +0.72%
ADA $0.1955 +0.21%
AVAX $7.51 +2.92%
DOT $1.02 +6.92%
LINK $11.12 +1.79%
⛽ ETH Gas 28 Gwei
Fear&Greed
50

The Codex Quota Anomaly: When Multimodal Inference Breaks the Pricing Contract

CryptoWolf Research

The Codex Quota Anomaly: When Multimodal Inference Breaks the Pricing Contract

Hook

The complaints began as a trickle across developer forums in early February 2026. By mid-month, they had become a coordinated outcry. OpenAI Codex users—ranging from Pro subscribers at $20 per month to enterprise teams with six-figure annual commitments—reported the same anomaly with forensic precision: quota balances evaporating at rates that defied their usage logs. One developer documented a single conversation containing six screenshots consuming what previously required forty code-generation requests. Another showed a Computer History session lasting eleven minutes draining an entire daily allocation. The company's response—a blanket quota reset and a terse acknowledgment of "optimization issues"—was textbook crisis containment. But the underlying signal was far more significant than a temporary billing glitch.

This was not a rounding error. This was the first public rupture in the pricing contract underpinning the AI coding tool economy. And for anyone who has spent years tracing the gap between what systems claim to cost and what they actually consume, the pattern was immediately recognizable.

Context: The Architecture of Consumption

Codex operates on a quota system that compounds request counts with context length. Every image pasted into a conversation—every screenshot of an error message, every architecture diagram, every UI mockup—gets converted into visual tokens through a CLIP ViT-L/14 encoder. Each image produces approximately 256 patch tokens. The arithmetic is unforgiving: ten images in a single conversation add 2,560 tokens before the model generates a single line of code. Multiply that by multiple compression cycles across a long session, and the token count compounds nonlinearly.

The quota system was architected for text. The reality of coding workflows is multimodal. This gap between design assumption and actual usage is where the anomaly lives.

OpenAI's acknowledgment confirmed three distinct technical issues: inefficient visual token compression during repeated image context cycles, uncontrolled context management in the Computer History feature that allows macOS users to import application and web browsing activity, and resource allocation imbalance in non-core features like automatic conversation title generation. Each issue is individually minor. Together, they represent a systemic failure to account for the nonlinear cost growth of multimodal inference.

The deeper context matters here. The AI coding tool market has been in a land-grab phase since late 2024, with OpenAI, GitHub, Anthropic, and Google all racing to capture developer mindshare. Pricing was set aggressively low to drive adoption. The implicit assumption was that inference costs would continue to fall at the historical rate, making aggressive pricing sustainable. What the Codex anomaly reveals is that multimodal inference costs are not falling at the same rate as text inference costs. The assumption was wrong, and the pricing model built on that assumption is now cracking.

Core: The Technical Forensics

Visual Token Compression: The Double Redundancy Problem

The first identified issue—inefficient image context compression—deserves the most scrutiny because it is the most fundamental. When a conversation contains multiple images and undergoes repeated compression cycles, the compression process itself generates additional resource waste. This points directly to a processing efficiency problem in visual tokens within compression algorithms.

Standard token-level compression strategies, such as importance-based token pruning, work reasonably well for text tokens. Text carries semantic density in individual tokens; dropping a low-importance token loses relatively little information. Visual tokens are different. Each image patch token contains both spatial redundancy—adjacent patches often encode overlapping visual information—and semantic redundancy—multiple patches may represent the same object or region. This dual redundancy makes compression fundamentally harder. The algorithm must decide which spatial information to preserve while maintaining semantic coherence, and doing so at scale without losing critical visual details is computationally expensive.

Based on my audit experience tracing token flows through production systems during the 2017 ICO due diligence era—where I spent forty hours reverse-engineering Stratis's UTXO-based smart contract logic against the EVM standard—I learned that the gap between theoretical architecture and operational behavior is where systemic risks hide. The same principle applies here. The theoretical compression ratio for visual tokens looks acceptable on paper. The operational reality is that compression cycles on visual tokens cost more compute per token saved than equivalent text compression, and the gap widens with each successive compression cycle.

The problem compounds across multiple compression cycles. Each time the conversation history is re-compressed, the visual tokens undergo another round of processing. If the first compression left 40% of visual tokens intact, the second compression must process that 40% again, plus the new images added since. The cumulative compute cost grows geometrically, not linearly. This is the classic nonlinear cost growth pattern that the industry has been ignoring.

There is also a deeper architectural question. The CLIP ViT-L/14 encoder produces 256 patch tokens per image at a patch size of 14x14 pixels. This patch size was chosen for image classification tasks, not for coding workflows. A screenshot of an IDE contains dense textual information that is poorly served by a patch size designed for natural images. The encoder either fragments text characters across multiple patches—requiring the model to reassemble them—or loses fine-grained text details entirely. Both outcomes increase the effective token count needed to represent the image faithfully.

Computer History: When Context Becomes a Video Stream

The Computer History feature is the more intriguing technical problem. It allows macOS users to import application and web browsing activity into Codex, enabling the model to understand what the user was doing before they asked for help. The feature sounds innocuous. Technically, it is a paradigm shift.

Instead of processing individual static images, the model must now handle a continuous stream of screenshots. This changes the temporal dimension of context entirely. The model is no longer dealing with "static multi-image" inputs but "dynamic video-stream" inputs. The context window becomes a moving conveyor belt of visual data, with new screenshots arriving at whatever frequency the feature captures them.

Existing context compression mechanisms were not designed for this pattern. Standard approaches assume that context grows incrementally and can be compressed periodically. A screenshot stream breaks this assumption. Every new frame arrives with spatial and temporal redundancy relative to the previous frame—the user's screen barely changes between captures—but the compression system must still process each frame to identify what changed. This means the marginal cost of each compression cycle is significantly higher than design expectations.

The temporal coherence problem is even more significant. Screen recordings distribute information across frames, not within them. A user might type a password across ten frames, with each frame containing one character. Compressing individual frames independently destroys the cross-frame information. The compression system must maintain temporal context across frames, which requires either larger buffers (more memory) or more sophisticated compression algorithms (more compute). Neither is cheap.

This is the same class of problem that emerged in the 2020 DeFi liquidity trap analysis, when I modeled Yearn Finance's v1 vaults and discovered that the apparent APY stability masked a liquidity crunch that would emerge as gas fees spiked. The surface-level metrics looked healthy. The structural dynamics were deteriorating. The Computer History feature has the same signature: it appears to function correctly while silently consuming resources at rates the architecture was never designed to support.

The data collection parameters remain undisclosed. What is the capture frequency? Is it one screenshot per second, per five seconds, per user action? What resolution? These parameters determine the context consumption rate by orders of magnitude. A feature capturing 4K screenshots at one-second intervals generates 3,600 high-resolution images per hour of usage. At 256 patch tokens per image, that is 921,600 tokens per hour before any model processing. The quota math becomes absurd.

Title Generation: The Hidden Tax

The third issue—automatic conversation title generation—seems almost trivial by comparison. A model generates a short title for each conversation. How much could that cost?

The answer depends entirely on when the title generation triggers. If titles are generated once per conversation, the cost is negligible. If the system regenerates titles on every message interaction—perhaps to keep the title updated as the conversation evolves—the cost becomes a constant tax on every user action. A single title generation might consume only a few hundred tokens, but multiplied across millions of daily interactions, the aggregate compute cost is substantial.

More importantly, this issue reveals a product design philosophy that lacks resource cost auditing. The "default-on" feature was shipped without a clear accounting of its marginal inference cost. This is the kind of oversight that only becomes visible at scale, when millions of users trigger the feature simultaneously. It is also the kind of oversight that signals a systemic gap between product engineering and infrastructure cost management. OpenAI's product teams are shipping features at breakneck speed without a corresponding investment in cost observability.

Cache Hit Rate Deterioration: The Silent Multiplier

The most significant hidden signal in this event is the cache hit rate deterioration. Tibo, the OpenAI staff member who acknowledged the issue, confirmed that some users experienced degraded cache hit rates. This is not a minor technical detail—it is the multiplier that amplifies all other inefficiencies.

Prefix caching is a standard inference optimization. When a user sends a request with a context prefix that matches a previously processed sequence, the system can reuse the Key-Value (KV) cache from the earlier computation instead of recomputing it. This can reduce inference costs by 80-90% for repeated prefixes. The cache is the single most important cost optimization in modern LLM serving.

The problem arises when context compression alters the token sequence structure. If the compression algorithm produces a different token sequence than what is stored in the cache, the prefix no longer matches. The system must invalidate the cache and recompute the KV cache from scratch. Every compression cycle that changes the token sequence breaks the cache, forcing full recomputation.

This is the hidden multiplier. The visual token compression inefficiency and the Computer History context management problems both contribute to cache invalidation. Every compression cycle that produces a different token sequence than the cached version forces a full recomputation. The cost of that recomputation dwarfs the cost of the compression itself. The system is paying twice: once for the compression, and again for the lost cache efficiency.

What is "safe" to conclude from this pattern? The cache hit rate deterioration suggests that OpenAI's compression and caching systems are not coordinated. The compression system optimizes for token count reduction without considering whether the output sequence will match cached prefixes. This is an architectural coordination failure, not a simple bug.

The phrase "new optimization approach" in OpenAI's acknowledgment hints at a more fundamental architectural fix. But the company did not disclose technical details. This is characteristic of a company that wants to avoid scrutiny before a fix is validated. The opacity is understandable but corrosive to trust. Users are being asked to accept that the problem will be fixed without being given enough information to evaluate whether the fix addresses the root cause.

The Internal Monitoring Blind Spot

The fact that three distinct issues were identified simultaneously suggests a more troubling conclusion: OpenAI's internal monitoring systems have blind spots. These problems likely existed for weeks or months before user complaints forced their identification. The company's observability infrastructure was not designed to detect multimodal context compression inefficiencies or cache hit rate degradation at the granularity required.

This is consistent with what I observed during the 2022 TerraUSD collapse, when I analyzed the correlation breakdown between traditional safe havens and crypto assets. The algorithmic stablecoin's design assumed a predictable relationship between Luna and UST. When the relationship broke, the system's monitoring could not detect the deterioration early enough to prevent cascading failure. Systems that look healthy at the aggregate level often harbor structural inefficiencies that only surface under specific usage patterns. The question is not whether the inefficiencies exist—they always do—but whether the monitoring systems can detect them before users do. In this case, they could not.

The Commercialization Angle: The Pricing Contract Is Broken

The quota reset was the easy part. OpenAI reset full quotas for all affected paid users, absorbing the short-term revenue loss. For Pro users at $20 per month, the cost of a full quota reset is bounded. For enterprise customers with annual contracts, the cost is more significant but still manageable. The reset was the right call—it signals that the platform accepts responsibility and prevents immediate user churn.

But the reset papered over a structural problem. The Codex quota system is based on a compound calculation of request count and context length. Users cannot intuitively perceive how multimodal inputs consume quota. A user who pastes three screenshots into a conversation has no way to know that those three images consume more quota than fifty text-only requests. This cost invisibility is the root cause of user frustration. It is also a systemic risk for AI product commercialization.

The pricing model for AI products is still fundamentally a usage-based model inherited from cloud computing. But cloud computing has transparent metering—you can see exactly how many CPU hours or gigabytes you consumed. AI product metering is opaque. The user sees a quota number decreasing but cannot decompose it into its constituent parts. This information asymmetry between provider and user is unsustainable.

There is a secondary signal worth noting. Before the problem was fully identified, official OpenAI personnel were reportedly directing users to sub2api (a third-party API proxy service) and subscription-sharing schemes. This is a remarkable admission. It effectively acknowledges that the official quota system is unsuitable for certain usage patterns and that OpenAI tolerates a gray-market ecosystem for its own product. This is pragmatic, but it also exposes the inflexibility of the official product.

The arbitrage opportunity is obvious. If API pricing is lower than subscription quota costs for certain usage patterns, users will route through intermediaries. If subscription quotas are cheaper than API pricing for other patterns, users will share subscriptions. OpenAI is leaving money on the table while simultaneously ceding control of its pricing ecosystem to third parties. This is the same pattern I identified in the 2024 Bitcoin ETF inflow correlation study, where institutional inflows did not immediately correlate with spot price rallies due to custody lag. The market structure creates gaps between intent and execution, and those gaps become arbitrage opportunities.

The financial impact of the quota reset is likely understated in public discussions. If a significant number of users were at high usage levels just before the reset, those users effectively received free quota. Some users may have deliberately exhausted their quotas in anticipation of the reset. This is a moral hazard problem. The reset creates an incentive for users to game the system in future incidents, knowing that OpenAI has established a precedent of compensation.

The Competitive Landscape: Trust Is the Moat

The competitive implications of this event are more nuanced than the immediate fallout suggests. Codex's primary competitors—GitHub Copilot, Cursor, Claude Code, and Gemini Code Assist—each have distinct positions. GitHub Copilot leverages the GitHub ecosystem with deep code completion capabilities but weaker agent functionality. Cursor excels at IDE integration with strong developer community goodwill but relies on third-party models. Claude Code offers strong long-context and code understanding capabilities. Gemini Code Assist integrates with Google's ecosystem but has limited developer penetration.

Codex's competitive advantage has always been the combination of ChatGPT ecosystem integration and OpenAI's strongest code-generation models. This event does not fundamentally threaten that advantage. Model capability is a moving target, and OpenAI's models remain at the frontier. But the event does expose a weakness in product engineering maturity—the kind of weakness that competitors can attack.

The more dangerous competitive threat is psychological. Developers who feel their tool is "quietly consuming resources" will develop suspicion. Once that suspicion forms, even a perfect fix may not restore trust. Developers will migrate to tools that feel more transparent, even if the underlying cost structure is identical. Cursor and Claude Code, both of which have emphasized cost predictability in their marketing, stand to benefit from this shift.

The "safe" harbor for OpenAI is its data flywheel. Codex users generate massive amounts of code-related training data that feeds back into model improvements. Competitors cannot easily replicate this advantage. But data flywheels only matter if users stay. If trust erosion drives sustained user migration, the flywheel slows, and the competitive position weakens over time.

The competitive response is already visible. Cursor has been emphasizing its transparent pricing model. Claude Code has been highlighting predictable quota consumption. These are direct responses to the Codex anomaly. The marketing messages are landing because they address a genuine user concern that OpenAI has now validated: the cost of AI coding tools is not transparent, and opacity breeds distrust.

What is "safe" to predict about the competitive response? OpenAI will likely introduce more granular quota management tools—real-time usage dashboards, consumption alerts, and breakdowns of how each request consumed quota. These features will become table stakes for the industry. The company that builds the best cost transparency infrastructure will win the trust of developers who have been burned by opaque pricing.

The Privacy Dimension: Computer History as a Liability

The Computer History feature raises privacy concerns that go beyond the quota issue. Allowing users to import application and web browsing activity means that screenshot-level sensitive data—potentially including passwords, personal information, business secrets, and medical records—is transmitted to OpenAI servers. Users enable this feature voluntarily, but the transparency around data collection scope, storage duration, and usage purposes is inadequate.

Under GDPR, screenshots containing biometric data or special category data require higher compliance standards. The feature's data collection practices have not been subject to an independent privacy impact assessment. This is a regulatory time bomb.

The data collection frequency and resolution parameters remain undisclosed. The storage duration is unclear. Whether the data is used for model training is not stated. Whether it is shared with Microsoft, OpenAI's primary compute partner, is unknown. These are not minor omissions. They are material gaps in the information users need to make informed decisions about enabling the feature.

There is also a security dimension. Malicious web pages could potentially inject instructions through screen content that the model processes. If a user has Computer History enabled and visits a malicious page, the page's content—including any embedded instructions—becomes part of the model's context. This creates a new attack surface for prompt injection. The model could be induced to execute dangerous operations based on content the user did not intentionally provide.

This is not speculative. Prompt injection attacks are already a documented threat in AI systems. The Computer History feature expands the attack surface by an order of magnitude. Every screen capture is a potential injection vector. A malicious webpage could display text that the model interprets as instructions to execute code, exfiltrate data, or perform other harmful actions. The user would never see the injection because it is embedded in the visual content that the model processes.

There is also the data goldmine angle. Screen recordings of user workflows are exactly the kind of high-quality training data needed to build "computer use agents"—systems that can operate software on behalf of users. Anthropic's Computer Use and similar initiatives require precisely this type of data. OpenAI's Computer History feature may be as much a data collection strategy as a product feature. The user authorization is implicit in the feature's enablement, but the data's value extends far beyond the immediate functionality.

The Investment Angle: Cost Structure Uncertainty

The impact on OpenAI's valuation is minimal. At a $300 billion valuation (2025), a few million dollars in quota reset and fix costs is noise. The event does not touch core model capability, data security, or regulatory compliance—the factors that drive valuation. Investors care about GPT-5, AGI timelines, and API revenue growth, not a temporary quota bug.

But the event does have implications for the broader AI application investment landscape. It provides another data point for the thesis that AI product operational costs are higher than expected, particularly in multimodal scenarios. This may dampen investor enthusiasm for general-purpose AI coding tools and increase preference for vertically optimized tools with predictable cost structures.

The unit economics question is the key issue. If a coding tool's cost per successful user request is structurally higher than the pricing model assumes, the tool's gross margin will be compressed. This is exactly the kind of problem that emerged in the TerraUSD collapse, where the gap between design assumptions and actual market behavior proved fatal. The analogy is imperfect—OpenAI is not facing a death spiral—but the principle holds: when the underlying cost structure diverges from the pricing model, something must give.

For the AI application layer more broadly, this event reinforces the importance of cost structure disclosure. Investors are increasingly asking companies to break down their inference costs by feature, by modality, and by user segment. The companies that can provide this transparency will command higher valuation multiples. The companies that cannot will face skepticism.

The event may also accelerate pricing model innovation. OpenAI could introduce explicit visual token pricing, a multimodal input surcharge, or a shift to purely token-based billing. Any of these changes would set a new benchmark for the industry. The direction of the change is predictable: pricing will move closer to actual cost structure, and the subsidy embedded in current pricing will be reduced or eliminated.

Infrastructure Implications: The Real Cost of Multimodality

The most consequential dimension of this event may be what it reveals about inference infrastructure. Codex's inference costs are dominated by two phases: prefill (processing input tokens) and decode (generating output tokens). Multimodal inputs significantly increase prefill computation. Each image requires an additional visual encoder forward pass—the CLIP ViT-L/14 encoder is computationally expensive. Context compression inefficiency means the compressed token count is higher than the theoretical optimum, directly increasing prefill costs.

The cache hit rate deterioration is the most expensive single factor. When prefix caching fails, the system must recompute the KV cache from scratch. For long conversations with extensive multimodal context, this recomputation is extremely expensive. A single cache miss on a long conversation can cost more than fifty cache hits on short conversations.

The scale of the problem is worth estimating. If Codex represents 5-15% of OpenAI's total inference load, and multimodal inference costs 3-10x more than text-only inference, then Codex's compute consumption likely exceeds its revenue contribution. This is a structural margin problem, not a temporary bug. OpenAI is effectively subsidizing Codex usage to build market share.

This is reminiscent of the DeFi liquidity mining problem I analyzed in 2020. Projects subsidized TVL numbers through yield incentives, and when the incentives stopped, the users vanished. OpenAI is subsidizing Codex adoption through underpriced multimodal inference. The question is whether the subsidy creates durable user lock-in or merely temporary adoption that evaporates when pricing adjusts.

The technical optimization directions are clear. Visual token compression can be improved through larger patch sizes (32x32 instead of 14x14), semantic token merging, or more sophisticated visual encoders. Cache strategy can be improved by making the compression algorithm aware of cache prefix structure. Speculative decoding can reduce decode-phase latency and compute. Model quantization of the visual encoder can reduce prefill-phase compute.

But these optimizations have limits. The fundamental issue is that multimodal inference is intrinsically more expensive than text inference, and the gap is not closing as fast as the pricing model assumes. This has implications for infrastructure investment. OpenAI is reportedly working with Broadcom on custom AI chips. This event provides additional motivation for that investment. Custom silicon optimized for multimodal inference could reduce costs by 30-50% compared to general-purpose GPUs.

The longer-term question is whether inference workloads will shift to edge devices. If cloud-based multimodal processing remains expensive, more inference tasks will move to on-device processing using NPUs in Apple Silicon and similar hardware. This would reduce cloud service provider revenue and change the economics of the AI industry. The Codex anomaly is a small signal in this direction, but the direction is clear.

Contrarian: The Decoupling Thesis

The conventional interpretation of this event is that OpenAI has an engineering problem. The contrarian interpretation is that OpenAI has a pricing problem, and the engineering issues are merely the visible symptoms.

Consider the sequence: three distinct technical issues identified simultaneously, cache hit rate deterioration acknowledged, quota reset deployed. The speed of acknowledgment and the breadth of the fix suggest that OpenAI's engineering team understood the problem quickly. But the fact that these issues shipped in the first place—and persisted until user complaints forced action—indicates a systemic failure in cost modeling for multimodal features.

The deeper issue is that AI products are being priced as if they were traditional software—fixed subscription fees for variable compute costs. The gap between these two models is growing as multimodal capabilities expand. Every new feature that accepts images, screenshots, or video widens the gap.

What is "safe" to predict? OpenAI will eventually adjust its pricing model to reflect multimodal costs. This could take the form of explicit visual token pricing, a multimodal input surcharge, or a shift to purely token-based billing. When this happens, the industry will follow. The current pricing model is a subsidy, and subsidies always end.

The decoupling thesis is this: the AI coding tool market is not actually competing on model capability—the models are all at or near the frontier. The real competition is on cost transparency and pricing predictability. The winner will be the tool that makes its cost structure visible and predictable, not the tool with the most capable model.

This is a decoupling from the traditional competitive dynamic. In the early phase of any technology market, competition centers on capability. The product with the best performance wins. But as the technology matures and capabilities converge, competition shifts to operational dimensions: reliability, transparency, cost predictability. The Codex anomaly marks the beginning of this shift in the AI coding tool market.

The blind spot in this analysis is the possibility that OpenAI is deliberately underpricing Codex as a strategic move. If the company is willing to absorb the cost of multimodal inference to build market share and establish the data flywheel, then the quota anomaly is not a bug but a feature of the strategy. The quota reset is not compensation for a mistake but the cost of a deliberate market penetration strategy. This interpretation is consistent with OpenAI's history of aggressive pricing to establish dominance.

Takeaway: Cycle Positioning

This event is a canary in the coal mine for AI application economics. The specific technical issues will be fixed within weeks. The quota reset will appease most users. But the structural problems—multimodal cost opacity, pricing model mismatch, and the trust erosion that follows unexpected resource consumption—will persist.

For users of AI coding tools, the practical advice is straightforward: audit your usage patterns. Understand how many images you paste into conversations. Measure how quickly your quota depletes with multimodal inputs. Compare your actual per-request cost across tools. The tools that are cheapest today may not be the cheapest once pricing models adjust to reflect true multimodal costs.

For the industry, the signal is clear. The AI application layer is transitioning from a land-grab phase to an operational efficiency phase. The winners will be the companies that can make their cost structures transparent, predictable, and aligned with user expectations. The losers will be the companies that continue to subsidize usage through opaque pricing and hope the problem disappears.

The question is not whether OpenAI will fix the Codex quota anomaly. It will. The question is whether the company—and the industry—will learn the deeper lesson: in AI products, the pricing contract is the product. Break it, and users will find alternatives. The "safe" harbor is not model capability. It is user trust.

Track these signals over the coming quarters: whether OpenAI introduces real-time quota dashboards and consumption alerts; whether the company publishes a transparency report on multimodal inference costs; whether Computer History faces regulatory scrutiny under GDPR; whether Codex user growth and retention recover to pre-incident levels; and whether competitors gain measurable market share through cost transparency messaging. Each signal will tell you whether the industry has learned the lesson or is preparing to repeat it.

Market Prices

BTC Bitcoin
$76,280.5 +0.30%
ETH Ethereum
$2,426.26 +0.72%
SOL Solana
$99.32 +1.87%
BNB BNB Chain
$724.3 +1.40%
XRP XRP Ledger
$1.3 +0.23%
DOGE Dogecoin
$0.0809 +0.72%
ADA Cardano
$0.1955 +0.21%
AVAX Avalanche
$7.51 +2.92%
DOT Polkadot
$1.02 +6.92%
LINK Chainlink
$11.12 +1.79%

Fear & Greed

50

Neutral

Market Sentiment

Event Calendar

{{年份}}
28
03
unlock Arbitrum Token Unlock

92 million ARB released

15
04
halving Bitcoin Halving

Block reward reduced to 3.125 BTC

10
05
upgrade Ethereum Pectra Upgrade

Raises validator limit and account abstraction

22
03
unlock Optimism Unlock

Circulating supply increases by about 2%

18
03
unlock Sui Token Unlock

Team and early investor shares released

08
04
upgrade Solana Firedancer

Independent validator client goes live on mainnet

12
05
halving BCH Halving

Block reward halving event

30
04
upgrade Celestia Mainnet Upgrade

Improves data availability sampling efficiency

7x24h Flash News

More >
{{快讯列表(10)}} {{loop}}
{{快讯时间}}

{{快讯内容}}

{{快讯标签}}
{{/loop}} {{/快讯列表}}

Tools

All →

Altseason Index

42

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 →
1
Bitcoin
BTC
$76,280.5
1
Ethereum
ETH
$2,426.26
1
Solana
SOL
$99.32
1
BNB Chain
BNB
$724.3
1
XRP Ledger
XRP
$1.3
1
Dogecoin
DOGE
$0.0809
1
Cardano
ADA
$0.1955
1
Avalanche
AVAX
$7.51
1
Polkadot
DOT
$1.02
1
Chainlink
LINK
$11.12

🐋 Whale Tracker

🟢
0x6aaf...4f74
2m ago
In
6,062,046 DOGE
🔵
0x185d...22a7
5m ago
Stake
4,169,528 DOGE
🔴
0x3665...7f7a
6h ago
Out
29,870 BNB

💡 Smart Money

0xe624...beb3
Institutional Custody
+$3.6M
61%
0x346b...0936
Experienced On-chain Trader
+$1.9M
70%
0x4235...63bd
Early Investor
+$2.4M
60%