Crypto World
Aave Co-Founder Kulechov Dismisses AAVE Discount Sale Reports, Teases Aavenomics 3.0 Buyback Plan
TLDR:
- Kulechov firmly denied reports of selling AAVE at a 70% discount, calling the media framing inaccurate.
- All Aave Protocol, GHO, and product revenue flows entirely to the AAVE token under the Aave Will Win proposal.
- Aave Labs is designing Aavenomics 3.0, featuring a new automated and non-discretionary AAVE buyback mechanism.
- Aave targets the entire financial asset market, including real-world assets, beyond the crypto-native TAM.
Aave co-founder Stani Kulechov has moved to address circulating discussions about AAVE token sales and the protocol’s revenue model.
In a post on X, Kulechov pushed back on what he called inaccurate media framing surrounding Aave Labs and its token allocation.
He confirmed that all protocol and GHO revenue flows to the AAVE token while teasing a new automated buyback mechanism. The protocol currently generates $134 million in annualized revenue.
Kulechov Rejects Discount Sale Reports, Outlines Revenue Framework
Kulechov was direct in dismissing reports suggesting AAVE tokens could be sold at a steep discount. Addressing the claim head-on, he wrote, “There is NO WAY we’d sell AAVE at a 70% discount lol.”
He then moved to clarify the structure governing all revenue flows within the Aave ecosystem. The Aave Will Win (AWW) proposal, already passed by the DAO, forms the backbone of that structure.
Under AWW, 100% of Aave Protocol and GHO revenue is directed to the AAVE token. Kulechov confirmed the framework also covers all product revenue streams. “AWW also applies to all product revenue, including the Aave App, Aave Pro, and Swaps,” he stated. None of that revenue flows to Aave Labs, which operates solely as a service provider to the DAO.
He also addressed Aave Labs’ own AAVE token allocation separately. Kulechov noted that “multiple market participants have discussed purchasing, directly or indirectly, through deeper long-term partnerships.”
That allocation is distinct from the DAO’s revenue framework and does not alter how protocol earnings are distributed to token holders.
On intellectual property, Kulechov was equally clear. He confirmed that “all intellectual property, including the Aave brand and any software built for Aave, belongs to AAVE.” Token holders, not Aave Labs, hold rights over these core assets under the current governance structure.
Aavenomics 3.0 and Aave’s Broader Financial Ambition
Beyond correcting the revenue narrative, Kulechov pointed to a coming upgrade. He revealed that “the Aave team is designing Aavenomics 3.0, which includes a new automated and non-discretionary buyback mechanism.” He noted that further details would follow in a later announcement, keeping the specifics close for now.
The planned buyback builds on a strong revenue foundation. Aave is generating $134 million in annualized revenue, all of which flows to the Aave DAO.
That base positions the DAO to sustain meaningful token buybacks without relying on discretionary decisions from any single party.
Kulechov also broadened the scope of Aave’s stated ambitions. He said Aave is “building not only for the crypto TAM, but for the entire finance asset TAM, including RWAs.” That framing places Aave alongside traditional finance infrastructure rather than solely within the DeFi space.
He closed his remarks with a pointed statement on organizational alignment. “Everyone at Aave Labs and Aave DAO works for AAVE,” he wrote.
That statement was directed at reassuring token holders that commercial and governance structures remain oriented around their interests above all else.
Crypto World
What is a modular blockchain? Rollups, data availability, and the new stack
For years, a blockchain was one chain doing everything. The modular thesis breaks that apart into specialized layers for execution, settlement, consensus, and data availability. This guide explains the new stack, why rollups need a data layer, and what the design buys and costs.
Summary
- Modular blockchains split execution, settlement, consensus, and data availability across specialized layers to improve scalability.
- Rollups process transactions off the main chain while relying on shared settlement and data availability layers for security.
- The modular approach increases flexibility and throughput, but also introduces added complexity, fragmentation, and layered trust assumptions.
A modular blockchain is a blockchain that splits the core jobs a network must perform across separate, specialized layers, instead of having a single chain do all of them at once. To see why that is a meaningful idea, you have to know the four jobs every blockchain has to handle: execution, which means running transactions and smart contracts; settlement, which means finalizing results and resolving disputes; consensus, which means agreeing on the order of transactions; and data availability, which means making sure the transaction data is actually published so anyone can check it.
A traditional blockchain, now called monolithic, does all four itself, on one chain, which is simple and tightly integrated but runs into a hard ceiling on how much it can scale, because one chain doing everything can only go so fast before it becomes congested or expensive. The modular approach unbundles those jobs, letting different layers each specialize in one of them, and that unbundling has become the dominant way ambitious blockchains now scale. This guide explains the four functions, the difference between monolithic and modular designs, how rollups and data availability layers fit together, the leading examples, and the real trade-offs the modular path involves.
The reason this matters is that scaling has been blockchain’s defining challenge for a decade, captured in the so-called trilemma, the observation that a single chain struggles to be simultaneously scalable, secure, and decentralized, and usually has to sacrifice one. Monolithic chains tend to push hard on scale at some cost to decentralization, or preserve decentralization at the cost of speed.
The modular thesis offers a different escape from the trilemma: if no single chain has to do everything, then each layer can optimize for its own job, and the system as a whole can reach a scale no monolithic chain easily matches while preserving strong security and decentralization where it counts.
By 2026 this thesis moved from theory to the dominant architecture, with specialized data availability networks serving dozens of execution chains and a whole stack of modular components in production. Understanding the modular design is therefore close to understanding where blockchain infrastructure as a whole is heading.
The four jobs of a blockchain
Everything about modularity follows from understanding the four functions a blockchain performs, so it is worth taking each in turn. Execution is the actual computation: when you swap tokens or run a smart contract, execution is the process of taking your transaction, applying it, and updating the network’s state to reflect the new balances. It is the layer users interact with most directly, and it is computationally heavy, because every transaction has to be processed. Settlement is the layer that provides finality and a home for dispute resolution: it is where the results of execution are anchored and made authoritative, the bedrock that other layers can treat as the final word on what happened, and where, in some designs, proofs are verified or fraudulent claims are challenged.
Consensus is the mechanism by which the network’s participants agree on a single, ordered history of transactions, so that everyone shares the same view of what happened and in what sequence, which is what stops double spending and keeps the ledger consistent. Data availability is the one most people have never heard of and the one that turns out to be central to modular design. It is the guarantee that the data behind every transaction is actually published and obtainable, so that anyone can download it, check that the rules were followed, and reconstruct the state if needed. If transaction data is not available, no one can verify whether the network cheated, which means data availability is a quiet but essential foundation of trust. In a monolithic chain, all four of these jobs happen together in one tightly bound system. The modular insight is that they do not have to, and that pulling them apart lets each be done far better.
Monolithic versus modular
The cleanest way to grasp modularity is to contrast it directly with the monolithic model it departs from. A monolithic blockchain bundles all four functions into a single integrated chain. Every full node executes every transaction, participates in consensus, stores all the data, and treats the chain itself as the settlement layer. The great virtue of this design is simplicity and tight integration: everything lives in one place, applications can interact seamlessly, and there are no seams between layers to manage.
A well known high performance chain that prizes raw speed exemplifies the monolithic approach, pushing a single integrated chain to process enormous throughput by demanding powerful hardware from its nodes. The cost of the monolithic design is the ceiling it imposes: because every node must do everything, the chain can only scale so far before either fees rise, congestion sets in, or the hardware requirements grow so heavy that fewer participants can run a node, which erodes decentralization.
A modular blockchain breaks the bundle apart so that different layers handle different jobs. A typical modern arrangement separates execution from the rest: specialized execution layers run the transactions and smart contracts, while a different layer or layers handle settlement, consensus, and data availability. The flagship example is the rollup-centric design, where lightweight execution chains called rollups process transactions off to the side and then lean on a robust base layer for settlement and data availability.
The benefit is specialization: an execution layer can be tuned purely for fast, cheap transaction processing without also bearing the full weight of securing the entire system, because it borrows security from the base layer beneath it. The system as a whole can then scale by adding many execution layers on top of a shared foundation, multiplying capacity in a way a single monolithic chain cannot. Monolithic favors integration and simplicity; modular favors specialization and scale, and that is the core of the design choice.
Rollups: the execution layer of the modular world
The most important modular component to understand is the rollup, because rollups are how the modular vision actually gets used today. A rollup is a separate chain that handles execution, processing transactions quickly and cheaply off the main chain, and then posts a compressed record of what it did back down to a base layer for security. The name comes from the way it rolls up many transactions into a single batch and submits that batch to the base chain, so the base chain does not have to process each transaction individually but can still serve as the ultimate source of truth. This is the mechanism that lets a modular system scale: thousands of transactions happen cheaply on the rollup, and only a condensed summary touches the expensive, highly secure base layer.
There are two main families of rollup, distinguished by how they convince the base layer that their batched transactions are valid. Optimistic rollups assume the transactions are honest by default and allow a window during which anyone can challenge a fraudulent batch by submitting a fraud proof, with the base layer settling the dispute. Zero knowledge rollups instead generate a cryptographic validity proof for each batch, mathematically showing the transactions were processed correctly, which the base layer verifies without re running them.
Both achieve the same goal of inheriting the base layer’s security while doing execution elsewhere, and both depend critically on one thing: the data behind their transactions must be available, so that anyone can verify the rollup’s claims or reconstruct its state. A rollup that posted only a summary without making the underlying data available would be asking the world to trust it blindly, which defeats the purpose. This is exactly why data availability, the obscure fourth function, becomes the linchpin of the entire modular architecture.
Data availability: the linchpin
Data availability deserves its own section because it is the function that modular design elevated from an afterthought to a centerpiece. When a rollup posts its batch of transactions, the crucial requirement is that the full transaction data be published somewhere accessible, so that anyone can check the rollup did its job honestly, challenge it if not, and rebuild the state if the rollup operator disappears.
Where that data gets published, and how cheaply, turns out to be one of the biggest factors in how well a modular system performs, because publishing data is a major part of what a rollup pays for. If the base layer makes data publication expensive, rollups are expensive; if a layer makes it cheap, rollups become dramatically cheaper.
This created demand for a new kind of specialized chain whose entire job is data availability: a data availability layer. Rather than executing transactions or settling disputes, such a chain exists purely to order data and keep it available cheaply and reliably for the rollups that depend on it. The pioneering example is a network built specifically as a modular data availability layer, which uses an elegant technique called data availability sampling to scale. Instead of requiring every node to download an entire block to confirm the data is there, lightweight nodes each randomly sample a small number of pieces of the block.
With enough independent samples, the network can be confident, to very high probability, that all the data is genuinely available, without anyone having to download all of it. Combined with techniques that let each application fetch only its own slice of data, this lets a data availability layer serve many rollups at once, cheaply and at scale. By 2026, such a layer was providing data availability for dozens of rollups, a concrete sign that the modular separation of data availability into its own specialized network had become real, working infrastructure.
The leading modular stacks
It helps to see how these pieces assemble into real systems, because the modular world is not one design but a few competing and complementary stacks. The most influential is the rollup-centric roadmap of the leading smart contract platform, which deliberately reoriented itself around modularity. Rather than trying to scale by making its own base layer process everything faster, it chose to become primarily a settlement and data availability foundation, with the heavy execution pushed out to a thriving ecosystem of rollups built on top.
A pivotal upgrade introduced a dedicated, cheaper space for rollups to post their data, often called blob space, which slashed the cost of data availability and, with it, the fees rollups charge users, bringing many transactions down to a fraction of a cent. Further upgrades aim to expand that data capacity dramatically over time. The result is a layered system: a secure base layer for settlement and data, and many execution focused rollups handling the day-to-day activity cheaply above it.
Alongside this sits the specialized data availability layer approach, where rollups choose to post their data to a purpose built data availability network instead of, or in addition to, the base settlement layer, often to get even lower costs. There is also a connection to another modular idea covered elsewhere: shared security through restaking, where a pool of staked capital can be used to secure new services, including data availability layers, letting them inherit strong economic security on day one rather than bootstrapping their own.
Together, these pieces form a menu of modular components, settlement layers, data availability layers, execution rollups, and shared security providers that teams can mix and match to assemble a custom chain. A project can launch its own rollup tuned for gaming or social applications, point it at whichever data availability layer is cheapest, and settle to whichever base layer it trusts, without building a validator set or a full monolithic chain from scratch. That composability of infrastructure, the ability to assemble a chain from specialized parts, is the practical payoff of the modular thesis and a large part of why it spread so quickly.
An analogy: the restaurant and the food court
Because the modular stack has so many pieces, an analogy can anchor the whole idea before the trade offs pile up. Think of a monolithic blockchain as a single restaurant that does everything under one roof: it grows its own ingredients, cooks every dish, seats the diners, and washes the dishes, all with the same staff in the same building. The advantage is seamless coordination, since everything happens in one place and nothing has to be handed off. The limitation is capacity: that one kitchen can only cook so many meals at once, and if you want to serve far more people, you either build an enormous, expensive kitchen that few can staff, or you accept long waits and high prices when demand surges. A single integrated chain faces the same ceiling, because every node has to do every job.
Now picture a food court instead. The building provides the shared foundation, the tables, the security, the guarantee that the space stays open and orderly, while many specialized vendors handle the cooking, each focused on one cuisine and tuned to serve its customers quickly and cheaply. In this picture the shared building is the base layer providing settlement and data availability, and the individual vendors are the rollups handling execution.
No single vendor has to provide its own security or build its own premises; they all inherit that from the building, so they can concentrate purely on serving food fast. The food court can serve vastly more people than the single restaurant, because capacity grows by adding vendors instead of straining one kitchen, which is exactly how a modular system scales by adding execution layers on a shared foundation.
The analogy also captures the costs honestly. A food court is more complex than a single restaurant: there are more independent operators, more things that can go wrong with any one vendor, and more coordination required to keep the shared space working. If you want a dish that combines ingredients from three different vendors, you have to carry your tray between them, which is clumsier than ordering everything from one kitchen, just as moving assets or composing an application across separate rollups is more awkward than operating within one integrated chain. And every vendor depends on the building: if the shared foundation fails to keep the lights on or the doors open, every vendor suffers, just as a rollup inherits the weaknesses of the data availability and settlement layers beneath it.
The food court trades the seamless simplicity of the single restaurant for far greater capacity and specialization, accepting more complexity and more handoffs in return. That is precisely the bargain the modular blockchain makes, and seeing it as a food court instead of a single restaurant makes both the appeal and the cost intuitive.
What modularity buys you
Having laid out the architecture, it is worth being precise about the genuine advantages the modular approach delivers, because they explain why it became dominant. The headline benefit is scalability. By separating execution from the base layer and letting many rollups run in parallel on top of a shared foundation, a modular system can process vastly more total activity than a single monolithic chain, because capacity is added by stacking execution layers instead of straining one chain. The cheap data availability layers compound this by driving down the dominant cost of running a rollup, which is why transaction fees on modern rollups have fallen to fractions of a cent for simple transfers.
The second benefit is specialization and flexibility. Because each layer focuses on one job, each can be optimized far beyond what a generalist chain could achieve: a data availability layer can be ruthlessly efficient at keeping data available, an execution rollup can be tuned for a specific use case, and a settlement layer can prioritize security and finality. This also gives builders flexibility and sovereignty: a team can launch a chain tailored to its needs, choosing its own execution environment and rules, while still inheriting security and data availability from established layers instead of recreating them.
The third benefit is improved decentralization at the verification level. Techniques like data availability sampling let lightweight nodes verify that a network is behaving honestly without running expensive hardware, which means more ordinary participants can help keep the system honest, countering the tendency of high performance monolithic chains to concentrate power among those who can afford powerful machines. Scalability, specialization, and verifiable decentralization are the real prizes the modular design competes for, and it pursues them by refusing to make any single chain carry the whole load.
The trade-offs and criticisms
No architecture is free, and an honest account of modularity has to weigh its real costs against the monolithic simplicity it replaces. The first cost is complexity. A modular system has many moving parts, execution on one layer, data on another, settlement on a third, bridges and proofs connecting them, and that complexity creates more surface area for bugs, misconfigurations, and failures than a single integrated chain. More layers mean more things that can go wrong and more seams that must be secured. The second cost is fragmentation. When activity spreads across many separate rollups, liquidity and users fragment too, and moving assets or composing applications across different execution layers can become awkward, slow, or risky, sacrificing some of the seamless composability that a single monolithic chain offers, where every application can interact with every other instantly.
The third cost is a subtler security consideration. A rollup’s safety depends on the layers beneath it, so if the data availability layer it relies on fails to keep data available, or the settlement layer it trusts is compromised, the rollup inherits that weakness. Modular systems must therefore reason carefully about the trust assumptions of every layer they depend on, and a chain that uses a less secure data availability layer to save money is making a real trade off in safety, even if it is not always obvious to users.
Defenders of the monolithic approach argue that tight integration delivers a simpler, more composable, more uniformly secure system, and that the high performance monolithic chains have shown a single chain can scale further than the modular camp once assumed. The honest conclusion is that monolithic and modular are not strictly better or worse but represent different bets: monolithic wagers that integration and raw single chain performance win, while modular wagers that specialization and stacking win. By 2026 the modular bet had clearly become the dominant architecture for ambitious new infrastructure, but the trade offs it carries, complexity, fragmentation, and layered trust, are real, and the debate over which approach ultimately prevails is far from settled.
Frequently Asked Questions
What is a modular blockchain in simple terms?
A modular blockchain splits the core jobs a network must do across separate, specialized layers, instead of one chain doing everything. The four jobs are execution (running transactions and smart contracts), settlement (finalizing results and resolving disputes), consensus (agreeing on transaction order), and data availability (making sure transaction data is published so anyone can check it). A traditional, monolithic chain does all four itself, which limits how far it can scale. A modular design lets each layer specialize in one job, so the system as a whole can scale much further while preserving security.
What is the difference between monolithic and modular blockchains?
A monolithic blockchain handles execution, settlement, consensus, and data availability all on one integrated chain, where every node does everything. It is simple and tightly integrated but hits a ceiling on scale, because one chain doing everything can only go so fast before fees rise or hardware demands shrink the node set. A modular blockchain separates those jobs across layers, typically pushing execution onto rollups while a base layer handles settlement and data availability. This trades some simplicity and composability for much greater scalability and specialization.
What is a rollup and how does it fit in?
A rollup is a separate execution chain that processes transactions cheaply off the main chain, then posts a compressed batch back to a secure base layer for settlement and data availability. It rolls up many transactions into one batch so the base layer does not process each individually but still serves as the source of truth. Optimistic rollups assume validity and allow fraud challenges; zero knowledge rollups submit cryptographic validity proofs. Rollups are how the modular vision scales in practice, and they depend on their transaction data being made available so anyone can verify them.
Why is data availability so important?
Because verifying a rollup, or any chain, requires that the data behind its transactions actually be published and obtainable. If the data is not available, no one can check whether the rules were followed, challenge fraud, or reconstruct the state if an operator vanishes. Where and how cheaply that data is published is one of the biggest factors in a modular system’s cost, since publishing data is much of what a rollup pays for. This created specialized data availability layers whose entire job is to keep data available cheaply, using techniques like sampling so light nodes can confirm availability without downloading everything.
What is Celestia and what does a data availability layer do?
A data availability layer is a specialized chain whose only job is to order transaction data and keep it available cheaply and reliably for the rollups that rely on it, instead of executing transactions or settling disputes. The pioneering example was built specifically for this purpose and uses data availability sampling, where lightweight nodes each randomly check small pieces of a block so the network can be confident, to high probability, that all the data is present without anyone downloading the whole block. By 2026 such a layer was providing data availability for dozens of rollups.
What are the downsides of modular blockchains?
Three main ones. Complexity: many moving parts across layers, plus the bridges and proofs connecting them, create more surface area for bugs and failures than a single integrated chain. Fragmentation: spreading activity across many rollups splits liquidity and users and can make moving assets or composing applications across layers awkward, sacrificing some of a monolithic chain’s seamless composability. And layered trust: a rollup’s safety depends on the layers beneath it, so relying on a weaker data availability or settlement layer to save money introduces real security trade offs. Monolithic defenders argue tight integration is simpler and more uniformly secure.
This article is educational information, not investment advice. Blockchain architectures, projects, and technical details evolve quickly, and the descriptions here reflect the state of the field as of June 25, 2026. Verify current information from primary sources before relying on anything described here.
Crypto World
AAVE price tests 9-month trendline after 17% rebound as breakout hopes build
Aave has rebounded sharply from this week’s sell-off and is now testing a key long-term resistance level after renewed buying, short-covering activity, and fresh optimism around the DeFi lending protocol lifted market sentiment.
Summary
- AAVE has rebounded 17% from its recent low and is testing a nine-month descending trendline near key breakout resistance.
- Bulls must secure a daily close above the $85-$88 zone to target $102 next, while $72-$75 remains critical support.
- Rising stablecoin inflows, improving derivatives positioning, and stronger momentum indicators have fueled the latest recovery.
According to data from crypto.news, Aave (AAVE) climbed as much as 17% from its Wednesday low near $72 to trade around $82 on June 25, recovering nearly all of the previous session’s losses. The rally followed heavy buying around a long-standing support zone, where sellers lost control after failing to extend the breakdown.
The recovery also coincided with renewed interest across decentralized finance tokens as traders rotated back into higher-beta assets following a wave of liquidations that swept through the crypto market earlier this week.
Rebound has pushed AAVE into a decisive technical resistance zone
The daily chart shows AAVE rebounding directly from the $72-$75 demand area before reaching the upper boundary of a descending trendline that has capped every rally since late 2025. Price now sits just below trendline resistance near $85, a level that traders are closely watching for confirmation of a larger trend reversal.

Commenting on the setup, crypto analyst Master of Crypto wrote in a June 24 X post:
“$AAVE is testing the top of a 9-month descending channel. A daily close above $85-88 could confirm the breakout, with $102 as the first target and $132 next. If the breakout fails, $72-75 remains the key support zone.”
The four-hour chart reinforces that view. AAVE has broken above a multi-day consolidation range near $77.7 while reclaiming its 20, 50, 100, and 200 simple moving averages, which now cluster between roughly $71 and $76.

Holding above those averages would strengthen the bullish case, while rejection near the descending trendline could trigger another retest of the recent breakout area.
Momentum indicators have also improved. Daily RSI has climbed above 60 after rebounding from oversold territory earlier this month, while the MACD has completed a bullish crossover and continues to expand above the zero line.
On the four-hour timeframe, RSI has advanced toward the upper-60s, showing buyers remain in control without yet reaching extreme overbought conditions.
Derivatives positioning and DeFi flows have strengthened the recovery
The recovery follows an aggressive unwind of bearish positioning after AAVE found support at its long-term demand zone. As spot buyers stepped in, short sellers were forced to cover positions, accelerating the advance through successive resistance levels.
The move gained additional momentum once price reclaimed its short-term moving averages, encouraging systematic traders to add fresh long exposure.
On-chain activity has also improved. Fresh USDT deposits into Aave’s lending markets have increased available liquidity across the protocol, supporting borrowing activity and reinforcing investor confidence in one of DeFi’s largest lending platforms. Stronger stablecoin inflows often accompany periods of renewed capital deployment into decentralized finance, particularly after sharp market-wide corrections.
Derivatives positioning has added another layer of support. Rising open interest alongside positive funding rates suggests traders have continued building long exposure instead of simply closing shorts. That combination points to fresh capital entering the market rather than a temporary relief rally driven solely by liquidations.
Macro conditions remain mixed. The Federal Reserve’s higher-for-longer interest-rate stance continues to weigh on speculative assets, while a firm U.S. dollar has limited risk appetite across crypto markets.
Even so, established DeFi protocols such as Aave have continued attracting capital from investors seeking on-chain yield opportunities, allowing the token to outperform many large-cap altcoins during the latest rebound.
The next several sessions will likely determine whether buyers can convert the current recovery into a confirmed breakout. A daily close above the $85-$88 resistance zone would expose the next upside targets around $102 and $132, while failure to clear the descending trendline could send AAVE back toward support between $72 and $75.
Disclosure: This article does not represent investment advice. The content and materials featured on this page are for educational purposes only.
Crypto World
Asia’s Tech Stocks Take the Hit as Apple and Microsoft Push Chip Costs to Consumers
At the same time, SoftBank Group dropped more than 12%, fueling a broad Asian selloff after Apple and Microsoft raised product prices, confirming that soaring AI chip costs have begun forcing Big Tech’s hand.
South Korea’s KOSPI showed the damage of a Western market in flux. June 25th’s close was 8,930.31, but it quickly dropped in early trading on Friday to around 8,600.
AI Chip Crisis Reaches the Consumer
Apple raised prices on MacBooks and iPads by up to $300 on June 25, citing an “unprecedented” surge in memory and storage chip costs driven by AI data center demand. Its shares closed more than 6% lower.
Microsoft followed hours later, announcing Xbox console price increases of $100 to $150 per model, effective August 1. Microsoft stock fell 3.5%. The back-to-back announcements from two of the world’s most valuable technology companies confirmed what investors had feared: the AI chip shortage is no longer an industry-level problem. It now hits consumer prices directly.
Asia Bears the Brunt
That confirmation rattled Asian markets on Friday. South Korea’s SK Hynix and Samsung fell more than 4%. SK Square, a technology holding company with heavy semiconductor exposure, declined around 7%. Japan’s chip equipment maker Advantest dropped more than 6%, while Tokyo Electron fell over 2%.
SoftBank faces additional headwinds beyond the regional selloff. Its chip design subsidiary Arm Holdings fell 3.2% overnight, underperforming even as broader AI stocks recovered.
Analysts at Ortus Advisors noted investor enthusiasm for SoftBank may also be capped by reports that OpenAI could push back its IPO to 2027, as the company struggles to attract demand at a $1 trillion valuation. SoftBank ranks among OpenAI’s most prominent backers.
Matt Maley, strategist at Miller Tabak, put the broader concern plainly.
“A few cracks have developed in the tech sector recently. Therefore, we believe it will be extremely important to watch how these hyperscalers trade going forward because if they continue to decline, it’s going to make it very tough for the rest of the market to advance.”
— Matt Maley, Miller Tabak
Micron’s stronger-than-expected earnings and Qualcomm’s AI data center chip deal with Meta offered partial relief. But SoftBank’s aggressive AI infrastructure bets leave it particularly exposed to any sustained repricing of the trade.
The post Asia’s Tech Stocks Take the Hit as Apple and Microsoft Push Chip Costs to Consumers appeared first on BeInCrypto.
Crypto World
Aave Founder Stani Kulechov Denies Kraken Stake Sale Report, Confirms AAVE Buybacks
Aave founder Stani Kulechov denied claims that the protocol would sell AAVE tokens at a 70% discount, responding to a report that crypto exchange Kraken is in talks to buy a stake in the lender.
The report described a roughly 15% stake at a $385 million valuation, though neither company has confirmed those terms. AAVE traded near $82, up almost 5% over 24 hours, as the debate spread.
Why the Kraken Aave Stake Report Drew Pushback
The figures behind the report trace to anonymous sources, and Kulechov called the framing inaccurate. He confirmed only that outside parties had discussed buying an AAVE allocation held by Aave Labs.
Any deal would build on an existing tie. In 2025, the Aave DAO voted 99.8% to license its code to Kraken’s Ink network, which now runs a white-label lending market that shares revenue back to Aave.
The talks also surface as Aave rebuilds from April’s KelpDAO exploit, which left up to $230 million in bad debt after attackers borrowed against unbacked tokens.
Although Aave’s smart contracts were never breached, the fallout erased more than a third of its deposits, which sit near $12 billion today.
Kulechov Points to Revenue and Planned AAVE Buybacks
Kulechov rejected the idea that Aave would offload tokens cheaply.
“there is NO WAY we’d sell AAVE at a 70% discount lol,” he articulated.
Follow us on X to get the latest news as it happens
He said Aave Labs only serves the DAO as a service provider and takes none of the protocol’s revenue. That revenue instead routes to token holders under the Aave Will Win framework.
“100% of Aave Protocol and GHO revenue goes to the $AAVE token.”
He also teased Aavenomics 3.0, which would make AAVE buybacks automatic. That extends a discretionary program already cleared to buy up to $50 million of AAVE a year.
The token traded higher after the post.
What Comes Next for Aave and Kraken
A stake would fit Kraken’s acquisition run ahead of its planned public listing. The exchange agreed this year to buy derivatives venue Bitnomial for up to $550 million, securing rare US derivatives licenses.
Some analysts still see sharp upside for the token despite the April setback.
Aave plans a quarterly community call within weeks. Whether the Kraken talks firm up, and how automated buybacks reshape AAVE, should become clearer then.
The post Aave Founder Stani Kulechov Denies Kraken Stake Sale Report, Confirms AAVE Buybacks appeared first on BeInCrypto.
Crypto World
Micron Technology (MU) surged 16% after blowout earnings and strong guidance
Computer memory chipmaker Micron Technology (MU) delivered blowout Q3 earnings on Wednesday, lifting the entire AI memory sector, AI-related stocks and even giving crypto a slight boost.
Bitcoin climbed back above $60,000 after markets closed, but bullish AI sentiment will ultimately pull more liquidity away from crypto.
Micron shares surged 16% in premarket trading on Thursday after the memory chipmaker’s third quarter guidance exceeded Wall Street expectations. Third-quarter revenue came in at $41.5 billion versus estimates of $35.7 billion, while earnings per share (EPS) reached $25.11 compared with expectations of $20.49.
Memory chips have become the backbone of AI infrastructure, particularly high-bandwidth memory (HBM), which is essential for training and running large AI models. CEO Sanjay Mehrotra told analysts there was “no line of sight” to when supply would catch up with demand, with the shortage expected to persist well beyond 2027.
The company also issued strong fourth quarter guidance, forecasting revenue of approximately $50 billion, well ahead of Wall Street expectations of $43.2 billion.
The AI boom has weighed heavily on the crypto market this year, with bitcoin now more than 50% below its October all-time high, trading at the $60,000 level.
Crypto World
Broadcom Built OpenAI’s First Chip in Record Time, but the Money Went Elsewhere
Broadcom (AVGO) and OpenAI have unveiled Jalapeño, OpenAI’s first custom AI chip, and the launch gives the Broadcom-OpenAI partnership a central seat in the AI infrastructure race.
Yet positioning data tells a more cautious story, because money flow and relative strength show large investors quietly favoring rivals like Micron and AMD, even as the headlines belong to Broadcom.
Jalapeño Validates Broadcom’s Whole AI Strategy
OpenAI designed Jalapeño from scratch for large-language-model inference, and Broadcom built it. The chip went from design to manufacturing tape-out in just nine months, which the companies call the fastest such cycle ever in advanced semiconductors. OpenAI’s own models helped speed up the design.
That speed matters because it proves the bet Broadcom has made in its AI business. Broadcom does not sell ready-made AI chips like Nvidia (NVDA). Instead, it co-designs custom chips, known as ASICs, for a single customer and earns design and manufacturing fees.
Jalapeño shows that the model can deliver a frontier chip fast. Every major AI lab now has a reason to design its own chip with Broadcom rather than only buy Nvidia GPUs.
Broadcom CEO Hock Tan said that the launch “validates very well the business model” that every “model maker” and “frontier model developer” will eventually design and build their own silicon, simply because “they can do it much better.”
The numbers behind it are large. Early testing shows performance per watt “substantially better” than the current state of the art, and the platform is set for gigawatt-scale deployment with Microsoft and other partners starting late 2026.
So the catalyst is real, and the Broadcom stock narrative is strong. The flow data, however, does not fully agree.
Money Flow Favors Micron and AMD, Not Broadcom
Despite the headline, AVGO is lagging its own sector. Its relative strength, measured against the chip benchmark SOXX at 100, is 53.6, so the stock is underperforming the group even on its big news day.
The reason sits in the flow data. Chaikin Money Flow (CMF), a proxy for institutional buying and selling pressure, reads -0.006 for AVGO. A negative number signals distribution, meaning more money is leaving the stock than entering it.
The contrast with peers is the real tell. CMF reads +0.169 for AMD and +0.076 for Micron (MU), both firmly in accumulation. The Micron stock might be getting all the post-earnings beat attention.
Big money is rotating into the chipmakers tied to the memory and GPU build-out, not into Broadcom.
This happens because the Jalapeño win is a long-dated story. Deployment starts in late 2026, so traders chasing nearer-term momentum are parking cash elsewhere.
That said, not every corner of the market is selling Broadcom.
Perp Traders and Analysts Stay Bullish on Broadcom Stock
On Nansen, smart-money perpetual traders are net long AVGO by roughly $165,000, with longs outweighing shorts by more than 5-to-1.
The position is small, spread across just two wallets, so the conviction is thin. The same desks are heavily net short Nvidia (NVDA) by about $14 million, which suggests they may see Broadcom as the better near-term bet within the group.
Wall Street is firmer. Every recent analyst action on the stock is a Buy. JPMorgan’s Harlan Sur lifted his broadcom stock price target to $580 from $500, while Oppenheimer sits at $535 and UBS at $485. The stock trades near $390 and is up roughly 10% this year.
The split is clean. The Jalapeño chip and unanimous Buy ratings point up, while AVGO’s negative Chaikin Money Flow of -0.006 and its 53.6 relative strength against SOXX flash the warning. A flip in institutional money flow back above zero is what tips Broadcom back to bullish.
The post Broadcom Built OpenAI’s First Chip in Record Time, but the Money Went Elsewhere appeared first on BeInCrypto.
Crypto World
What is proof of personhood? Verifying real humans in the AI age
As AI floods the internet with convincing fake humans, proving that a user is a real, unique person is becoming one of crypto’s hardest and most valuable problems. This guide explains what proof of personhood is, how the leading approaches work, and why the cure raises concerns of its own.
Summary
- Proof of personhood aims to verify that each real person can obtain only one identity while protecting their privacy.
- The technology has gained urgency as AI makes it easier to create convincing fake identities that can exploit voting, airdrops, and online platforms.
- Biometric systems, social trust networks, and zero knowledge identity methods offer different ways to verify unique humans, each with its own tradeoffs between privacy, security, and scalability.
Proof of personhood is a cryptographic mechanism that lets someone prove they are a real, unique human being, one person counted exactly once, without revealing who they actually are. That combination is what makes it both powerful and difficult: it must guarantee uniqueness, so that a single person cannot register as a thousand, while preserving anonymity, so that proving you are human does not force you to expose your identity. The problem it solves is old, but it has become urgent for a new reason. For most of the internet’s history, telling humans from machines was a minor nuisance handled by simple puzzles.
Now, with artificial intelligence able to generate text, images, voices, and entire online personas indistinguishable from a real person’s, the open internet faces a verification crisis: bots can flood platforms, manipulate votes, drain airdrops, and impersonate humans at a scale and quality never seen before. This guide explains what proof of personhood is, the attack it defends against, the main approaches to building it, the leading real-world example and its controversies, and why a technology meant to protect humanity raises hard questions of its own.
The reason this topic has moved to the center of crypto and beyond is that “one real human, counted once,” turns out to be a foundational requirement for a surprising range of things. Fair token airdrops depend on it, or a handful of people with thousands of fake accounts will scoop up everything meant for a community. Democratic voting and decentralized governance depend on it, or whoever can spin up the most identities wins.
Any system that distributes scarce resources to people, from community rewards to the long-discussed idea of a universal basic income, depends on being able to tell one person from a thousand sock puppets. And increasingly, the world of artificial intelligence depends on it, both to keep bots out of human spaces and, in a twist, to let trustworthy AI agents act on behalf of verified humans.
Proof of personhood sits at the intersection of cryptography, identity, and the defining technological anxiety of the moment, which is why it has become one of the most watched and most contested ideas in the field.
The sybil attack: the problem at the root
To understand proof of personhood, you first have to understand the attack it exists to stop, which is called a sybil attack. The name comes from a famous case study of a person with many personalities, and in computing it describes a single actor creating many fake identities to gain influence they should not have. On a network where one identity equals one vote, one share, or one claim, a sybil attacker who controls a thousand identities controls a thousand times the influence of an honest participant who has just one. Almost every open online system that tries to be fair, every vote, every giveaway, every reputation score, every “one person, one share” distribution, is vulnerable to someone who can cheaply manufacture identities.
Historically, sybil attacks were limited by the friction of creating convincing fake accounts at scale, and by crude defenses like puzzles meant to slow bots down. Artificial intelligence demolishes both limits. Modern systems can generate unlimited unique-looking personas, complete with plausible writing, profile photos, and behavior, and can solve the puzzles that once filtered them out.
The very technology that makes AI useful, its ability to produce human-like content, is what makes it the ultimate sybil weapon, capable of populating the internet with armies of fake humans cheaply and convincingly. This is the deeper reason proof of personhood has surged in importance: the old, informal defenses against sybil attacks have broken down precisely when the cost of mounting one has collapsed. If you cannot tell a real, unique human from a generated one, then every system that assumed it could is suddenly exposed, and rebuilding a reliable way to prove humanness becomes foundational infrastructure rather than a nice-to-have.
What a good proof-of-personhood system must achieve
Before looking at how anyone builds proof of personhood, it helps to define what success even requires, because the requirements pull against each other, and that tension shapes every design. A strong system needs to satisfy several properties at once. It must guarantee uniqueness, ensuring each real person can obtain exactly one verified identity and cannot register many. It must preserve privacy, so that proving you are a unique human does not force you to reveal your name, your face, or a linkable record of everything you do. It must resist attack, holding up against sophisticated adversaries, increasingly AI-powered, trying to fake or duplicate humanness. And ideally it must scale to billions of people across every country, language, and level of access, without excluding those who lack documents or technology.
The difficulty is that these goals are in tension. The strongest way to guarantee uniqueness is usually to collect something deeply personal and hard to fake, like a biometric, but collecting biometrics is exactly what threatens privacy and raises ethical alarms. The most privacy-preserving approaches, which avoid collecting sensitive data, often struggle to guarantee uniqueness or to resist a determined attacker.
Scaling to everyone on earth conflicts with the careful, high-assurance verification that strong uniqueness demands. Every proof-of-personhood design is, in effect, a particular set of compromises among uniqueness, privacy, security, and inclusivity, and there is no design that maximizes all four at once. Understanding a given system, therefore, means asking which of these properties it prioritizes and which it sacrifices, because that choice, more than any technical detail, determines what the system is good for and what it puts at risk.
The main approaches to proving humanness
There are several broad families of proof-of-personhood design, each making a different bet about how to balance those competing goals. The first and most discussed is biometric verification, which uses a physical trait of the human body, an iris, a face, that is hard to fake and naturally unique, to guarantee one person equals one identity. The bet here is that specialized hardware reading a unique biological signal is the only approach robust enough to resist an adversarial, AI-saturated environment, because you cannot generate a real human iris with a language model. The strength is powerful uniqueness; the cost is the privacy and ethical weight of collecting biometric data and the need for physical hardware and in-person enrollment.
A second family is the social-graph approach, which builds humanness through webs of trust: real people vouch for other real people, and the network of mutual verification makes it hard for a lone attacker to fake many identities, because each fake one would need real humans willing to vouch for it. This avoids collecting biometrics and leans on human relationships instead, but it can struggle to scale and to resist a well-resourced attacker who infiltrates the graph. A third family relies on credentials and accumulated signals, combining evidence like existing verified accounts, on-chain history, or government documents into a score or a passport that suggests a unique human without a single biometric gatekeeper.
This is flexible and privacy-conscious but generally offers softer guarantees of uniqueness than a biometric. A fourth, emerging family uses zero-knowledge identity techniques, proving facts about yourself, that you are an adult, that you are a unique holder of some credential, without revealing the underlying data, and increasingly leans on device-based passkeys and similar tools. Each family is a different answer to the same question, and the field has not settled on a winner, because each answer sacrifices something the others preserve.
The leading example: World and the Orb
The most prominent attempt to build proof of personhood at global scale is the project now called World, formerly Worldcoin, created by a company co-founded by the chief executive of a leading artificial intelligence lab alongside other founders, and launched in 2023. World made the boldest possible bet on the biometric approach, and examining it concretely shows both the promise and the problems of the whole field. Its centerpiece is a custom hardware device called the Orb, a polished sphere that scans a person’s iris.
The reasoning is that the iris is highly unique and extremely hard to forge, so an in-person iris scan is a strong way to guarantee that each verified human is counted exactly once, even against AI adversaries that can fake almost anything made of pixels but cannot fake a living eye on demand.
The privacy design is central to World’s pitch, because iris scanning sounds alarming and the project knows it. According to the project, when the Orb scans your iris it generates a unique cryptographic code, deletes the actual image after processing, and distributes only anonymized fragments of the code across a network to confirm you have not enrolled before.
The result is meant to be a credential, called a World ID, that proves you are a unique human without revealing your identity or storing your biometric image, with zero-knowledge techniques letting you later prove “I am a verified unique human” to an app without exposing anything else. The project reports a scale no other proof-of-personhood effort has reached, on the order of millions of people verified through Orbs and a widely used identity app, which is a meaningful achievement for a category that has historically struggled to grow. World is, in short, the clearest real-world test of whether the biometric approach can become global infrastructure, and its trajectory, successes and backlash alike, is where the abstract debate over proof of personhood becomes concrete.
The AI age and the pivot to verifying agents
What has thrust proof of personhood from a niche idea into a mainstream conversation is the arrival of capable artificial intelligence, and the relationship between the two is closer than it first appears. The same advances that make AI able to flood the internet with fake humans also make a reliable proof of humanness more valuable, because humanness is becoming the scarce, trustworthy thing in a sea of synthetic content. This is why a figure deeply associated with frontier AI is also behind the leading proof-of-personhood project: one venture helps create the problem of indistinguishable machine-generated humans, and the other proposes the verification layer to manage it. As AI-generated text, images, video, and behavior become impossible to tell from the real thing, a system that can certify “a unique human is behind this” turns into foundational infrastructure for trust online.
There is a striking twist in how the field is now evolving. Proof of personhood started as a way to keep bots out of human spaces, but it is increasingly being repurposed to let AI agents operate responsibly within human systems. As autonomous AI agents begin acting on people’s behalf, making purchases, sending messages, executing tasks, a new question arises: which human is this agent acting for, and is that human real and accountable? Proof-of-personhood projects have begun building tools that tie an AI agent to a verified human principal, so that an agent can prove it represents a genuine, unique person rather than running wild as an anonymous bot.
The leading project has also pivoted toward enterprise use, selling proof-of-humanity verification to companies, video platforms, and identity providers that want high assurance a user is real, while keeping the service free for the individuals being verified. The through-line is that AI did not just create demand for proving humans are human; it is reshaping proof of personhood into a layer that governs both humans and the machines acting for them.
Where proof of personhood actually gets used
It is easy to treat proof of personhood as an abstraction, so it helps to ground it in the concrete situations where a reliable proof of unique humanness changes what is possible. The most immediate is fair distribution. Crypto projects frequently give away tokens to early users through airdrops, and the entire premise, rewarding a broad community, collapses if a handful of people can each register thousands of identities and vacuum up the supply meant for many.
A proof-of-personhood gate, requiring each claimant to prove they are a unique human, restores the fairness the airdrop was supposed to deliver, and the same logic extends to any system handing scarce resources to people: community rewards, grants, promotional credits, or the long-discussed vision of a basic income distributed to verified individuals rather than to whoever runs the most bots.
A second arena is governance and voting. Decentralized organizations and online communities increasingly make decisions by vote, and a vote is only meaningful if each person counts once. Without proof of personhood, governance defaults to systems where influence is bought, whoever holds the most tokens or controls the most accounts decides, which concentrates power and invites manipulation.
A reliable proof of unique humanness opens the door to genuine one-person-one-vote systems online, a building block for fairer collective decision-making that has been technically out of reach. A third arena is the everyday integrity of online spaces: social platforms drowning in AI-generated accounts, review systems gamed by fake humans, and communities overrun by bots all need a way to certify that a participant is a real, unique person, and proof of personhood offers exactly that certification without forcing users to surrender their identities.
The newest and fastest-growing arena is the one created by autonomous AI. As software agents begin acting on people’s behalf, the question of which human stands behind a given agent becomes urgent, both to assign accountability and to keep anonymous bots from masquerading as authorized representatives.
Proof-of-personhood tools that bind an agent to a verified human principal let an agent prove it acts for a genuine, unique, accountable person, which is becoming a prerequisite for trusting agents with real tasks and real money. Enterprises are also adopting proof-of-humanity checks to defend high-value interactions, from video calls to account access, against deepfakes and impersonation.
Across all these cases, the common thread is the same: wherever a system needs to know that a participant is a real, unique human, and increasingly wherever it needs to know which human is behind a machine, proof of personhood is the missing layer that makes the guarantee possible. That breadth of application, spanning fairness, governance, online integrity, and the entire emerging world of AI agents, is why the idea has drawn so much attention despite its unresolved controversies.
The serious objections
A guide that only described the promise of proof of personhood would be misleading, because the field, and especially its biometric flagship, has drawn intense and substantive criticism that any honest reader should weigh. The first objection is the biometric honeypot problem. Building a system that scans the irises or faces of millions of people creates, by its nature, one of the largest collections of biometric data in the world, and even with deletion and anonymization, critics argue that such a database is an irresistible target and that the consequences of biometric data being compromised are uniquely severe, because you cannot change your eyes the way you change a password. The risk of normalizing mass biometric collection, and of who ultimately controls it, sits at the heart of the unease.
The second objection is centralization. A system built on specialized hardware that the project manufactures and controls creates a chokepoint: a single company decides who can verify, where the devices go, and how the system runs, which sits awkwardly with crypto’s ideals of decentralization and raises the prospect of a private entity becoming a gatekeeper of human identity online. The third objection is regulatory and ethical: the leading project has faced pushback, suspensions, and investigations from data-protection authorities in numerous countries worried about consent, privacy, and whether scanning eyes in exchange for tokens, sometimes in lower-income regions, is exploitative.
A fourth, more technical critique questions whether a crypto token needs to be attached to identity verification at all, suggesting the financial layer may be unnecessary to the core function. And a fifth points out that large platforms or governments could build competing verification systems with less controversy, or that softer software-only methods might prove good enough, leaving the biometric approach burdened by risks its rivals avoid. None of these objections proves the technology is bad, but together they explain why proof of personhood, despite solving a real and growing problem, remains genuinely contested.
Why it matters and where it goes
Stepping back, proof of personhood is one of those rare ideas whose importance is rising in lockstep with the technology that makes it necessary, and that is the clearest way to understand its trajectory. The case for it is straightforward and getting stronger: as AI erases the line between human and machine online, almost every system that assumed it could tell the difference, fair distribution, honest voting, bot-free communities, accountable AI agents, needs a new foundation, and a reliable way to prove unique humanness is that foundation. The demand is real, it is growing, and it is not going away, which is why serious people and serious money keep flowing toward the problem even after years of difficulty and controversy.
The open question is not whether proof of personhood matters but which approach, if any, will earn enough trust to become a genuine standard. The biometric path offers the strongest uniqueness guarantees and the most scale so far, but carries the heaviest privacy, centralization, and regulatory baggage. The social-graph, credential, and zero-knowledge paths avoid some of that baggage but offer softer guarantees or struggle to scale. It is entirely possible that no single system wins, and that the future is a patchwork of methods suited to different contexts, a biometric proof for the highest-assurance needs, lighter software proofs for everyday ones.
It is also possible that the privacy concerns prove decisive and the world rejects mass biometric identity altogether, pushing the field toward less invasive designs. What seems certain is that the underlying need, proving a real, unique human in a world full of convincing fakes, is now permanent, and that how society chooses to meet it, and who it trusts to run the infrastructure, will be one of the defining questions where crypto, artificial intelligence, and identity collide. Proof of personhood is the attempt to answer it, and the answer is still being written.
Frequently Asked Questions
What is proof of personhood in simple terms?
Proof of personhood is a way to prove you are a real, unique human, counted exactly once, without revealing who you are. It has to do two things at the same time: guarantee uniqueness, so one person cannot create many identities, and preserve privacy, so proving you are human does not expose your name or identity. It matters because, as AI makes fake humans cheap and convincing, many online systems, fair giveaways, honest voting, bot-free communities, can only work if they can reliably tell one real person from a thousand fakes.
What is a sybil attack?
A sybil attack is when a single actor creates many fake identities to gain influence they should not have. On a system where one identity equals one vote or one share, someone controlling a thousand fake identities has a thousand times the honest influence. Almost every open online system that tries to be fair is vulnerable to it. Sybil attacks used to be limited by the friction of making convincing fake accounts, but AI removes that limit by generating unlimited realistic personas, which is why defending against sybil attacks now requires proving real, unique humanness.
How does the iris-scanning approach work?
The leading biometric project uses a device called the Orb to scan a person’s iris, because the iris is highly unique and very hard to fake, even by AI. According to the project, the Orb generates a unique cryptographic code from the scan, deletes the actual image after processing, and distributes only anonymized fragments to confirm the person has not enrolled before. The result is a credential proving you are a unique human without revealing your identity, and zero-knowledge techniques let you later prove “I am a verified unique human” to an app without exposing anything else about yourself.
What are the alternatives to biometric verification?
Several. Social-graph systems build humanness through webs of trust, where real people vouch for other real people, avoiding biometrics but struggling to scale. Credential-based systems combine signals like verified accounts, on-chain history, or documents into a score suggesting a unique human, offering flexibility but softer uniqueness guarantees. Zero-knowledge identity methods prove facts about you, such as being a unique credential holder, without revealing the data, and increasingly use device-based passkeys. Each approach makes a different trade-off among uniqueness, privacy, security, and scale, and the field has not settled on a single winner.
Why is proof of personhood controversial?
Mainly because the strongest approach, biometrics, raises serious concerns. Collecting iris or face data from millions creates a large biometric database that critics see as a honeypot, made worse because you cannot change your biometrics like a password. Building it on hardware one company controls creates centralization and gatekeeping worries that clash with crypto’s ideals. The leading project has faced regulatory pushback and suspensions in many countries over privacy and consent, and some argue that verifying people in lower-income regions for tokens is exploitative. Others question whether a token is needed at all, or whether less invasive methods would suffice.
How does proof of personhood relate to AI?
Closely, in two directions. First, AI created the urgency: as it makes fake humans cheap and convincing, proving real humanness becomes valuable precisely because humanity is becoming the scarce, trustworthy thing online. Second, the field is evolving from keeping bots out to governing the AI agents now acting on people’s behalf. New tools tie an AI agent to a verified human principal, so an agent can prove it represents a genuine, accountable person instead of running as an anonymous bot. So proof of personhood is becoming a layer that verifies both humans and the machines acting for them.
This article is educational information, not investment or identity-security advice. Proof-of-personhood projects, their scale, and their regulatory status change quickly, and details reflect reporting available as of June 25, 2026. Consider the privacy and security implications carefully, and verify current information from primary sources before enrolling in or relying on any identity system.
Crypto World
21Shares Cuts 2026 Crypto Forecasts as Institutional Demand Rises
Asset manager 21shares has revised down several of its bullish expectations for the crypto industry in 2026, arguing that while key market infrastructure is improving, weaker price action and slower retail and enterprise participation have dampened momentum.
In its midyear outlook, the firm said sectors ranging from exchange-traded products (ETPs) and stablecoin regulation to tokenization and prediction markets are continuing to mature. Still, it expects that major DeFi security incidents and enterprise adoption that is “slower-than-expected” will make a number of previously planned 2026 targets harder to reach.
Key takeaways
- 21shares says crypto infrastructure is advancing faster than market prices, leaving parts of the industry on track while broader growth is constrained.
- Despite more institutional involvement, 21shares maintains that Bitcoin’s four-year cycle remains intact.
- Prediction markets are highlighted as a standout growth area, with 21shares projecting annual trading volume could exceed $100 billion.
- Crypto ETPs are described as resilient in the long run, even as US spot Bitcoin ETFs have seen about $3 billion in net outflows this year.
- Regulatory clarity in the US is cited as helping convert ETF application backlogs into new launches beyond Bitcoin and Ether.
Bitcoin’s cycle still matters, even with institutions reshaping markets
One of 21shares’ clearest messages is that Bitcoin’s four-year market rhythm continues to play a central role. The firm pointed to Bitcoin’s post-halving behavior and argued that increased institutional involvement has changed how the asset trades during downturns without changing the cycle itself.
21shares said Bitcoin peaked at roughly $126,000 in October 2025 before pulling back sharply, and it has continued to trade in a manner consistent with past post-halving patterns. In its view, institutional ownership has helped limit how violently markets draw down, but the fundamental cyclical behavior has not been disrupted.
The firm’s stance also echoes commentary from former 21shares co-founder Ophelia Snyder, who left the company after its acquisition by FalconX in 2025. In a recent Substack post, Snyder argued that institutionalization makes crypto more entangled with broader financial and macroeconomic drivers. She wrote that the investor base is larger, more institutional, and more connected to the traditional financial system—meaning geopolitical developments and macro shifts can influence crypto pricing more than they once did.
Prediction markets and regulation-driven momentum
While 21shares trimmed some of its broader growth projections, it elevated specific segments where adoption dynamics appear stronger. The firm singled out prediction markets as one of the industry’s best-performing areas, forecasting that annual trading volume could surpass $100 billion this year.
The outlook also ties market development to regulation, particularly in the US. 21shares argued that improving regulatory clarity has helped transform a backlog of crypto ETF submissions into a more continuous stream of new product launches—expanding offerings beyond the initial wave of Bitcoin and Ether-focused vehicles.
In that context, 21shares referenced the Securities and Exchange Commission’s generic listing standards as a mechanism behind the pace of ETF conversions. It also highlighted a single case: Hyperliquid, which the firm described as standing out among newer US spot ETF tracking structures. According to 21shares, US spot ETFs tracking the asset pulled in over $150 million in net inflows in under a month, which it framed as evidence that traditional capital continues to find its way into digital-asset products.
ETPs show durability despite weaker spot inflows
21shares also addressed crypto ETP performance, arguing that short-term flows do not fully reflect investor behavior during weaker market conditions. The firm noted that while US spot Bitcoin ETFs have recorded roughly $3 billion in net outflows this year, the total holdings are still just above 1.25 million BTC—close to an all-time high for Bitcoin holdings inside the category.
That balance matters because it suggests many investors are not rushing to exit after periods of volatility. 21shares said holdings remain supported by investors who either hold through downturns or accumulate strategically even when Bitcoin trades well below earlier highs.
Beyond Bitcoin-only flows, the report’s theme is that the institutional pipeline has not shut off; it has simply become more selective and less reflexive during drawdowns. For market participants, this distinction can be important: outflows can pressure near-term sentiment, but the level of cumulative holdings can point to longer-term positioning rather than capitulation.
Consolidation accelerates across treasuries and scaling ecosystems
Another major thread in 21shares’ midyear outlook is consolidation. The firm said public companies holding crypto on their balance sheets are increasingly diverging, with some smaller treasury players trading below the value of their digital assets. In 21shares’ framing, this gap can intensify pressure on weaker players and make mergers or strategic combinations more likely.
A similar dynamic, the report suggests, is playing out in Ethereum’s layer-2 ecosystem. 21shares said a handful of dominant rollups continue to take market share while many smaller networks struggle to attract meaningful user activity and liquidity. For builders and users, the implication is that network effects and capital efficiency are becoming more decisive differentiators—particularly in a market where growth is harder to come by.
What to watch next
As 21shares moves several 2026 targets out of reach, investors should watch whether regulatory catalysts (especially ETF-related) and segment-specific strength (like prediction markets) can offset the drag from weaker price conditions, security setbacks in DeFi, and slower enterprise adoption.
Crypto World
Circle and Nomura join forces to target a $440 billion daily foreign exchange market in Japan
Boston-based stablecoin issuer Circle Internet Financial announced a partnership on Thursday with Japanese financial conglomerate Nomura Holdings to launch a digital asset settlement business. The firms plan to deploy a corporate payment service in Japan as early as 2027.
The agreement will let Japanese businesses exchange yen for USDC, Circle’s U.S. dollar-backed stablecoin, according to the announcement first reported by Nikkei. USDC is the world’s second-largest dollar-pegged stablecoin, boasting a market cap of $73.8 billion as of this writing.
The Circle stablecoin token can be used for cross-border supplier payments, transfers between overseas affiliates, and foreign exchange settlements.
The business aims at Japan’s import, export, and corporate currency markets. Bank for International Settlements data shows that Japan’s foreign exchange market handled $440 billion in daily transactions as of 2025. Standard bank wires take two to three business days to clear funds between yen and foreign currencies. This blockchain setup can drastically reduce that transfer time.
Crypto World
Bitcoin Sparks $600M Hourly Liquidations With $65,000 Set To Become Resistance
Bitcoin (BTC) hit new 21-month lows at Thursday’s Wall Street open as high US inflation unsettled stock markets.
Key points:
- Bitcoin returns to its lowest level since September 2024, dropping to $58,000.
- US PCE inflation rocks equities, with the Nasdaq 100 shedding 2% in just 30 minutes.
- BTC’s correction mirrors the price action seen throughout the 2022 bear market.
Crypto liquidations pass $600 million in an hour as BTC price drops
Data from TradingView showed BTC/USD dropping to $58,035 on Bitstamp — a level it last traded at in September 2024.

BTC/USD one-hour chart. Source: Cointelegraph/TradingView
The May print of the US Personal Consumption Expenditures (PCE) index came in at 4.1%, setting a new three-year record.
“From the preceding month, the PCE price index for May increased 0.4 percent. Excluding food and energy, the PCE price index increased 0.3 percent,” a data release from the Bureau of Economic Analysis (BEA) stated.
“From the same month one year ago, the PCE price index for May increased 4.1 percent. Excluding food and energy, the PCE price index increased 3.4 percent from one year ago.”

US PCE one-month % change (screenshot). Source: BEA
Stocks reacted with volatility, with the Nasdaq Composite Index down 0.5% at the time of writing, while the S&P 500 managed to eke out a gain.
The Nasdaq 100, meanwhile, saw a larger snap decline of 2% in just 30 minutes at the open.
“What a chart,” trading resource The Kobeissi Letter responded on X.
Bitcoin itself sparked considerable long position liquidations, with CoinGlass putting the cross-crypto liquidation total at $600 million over a single hour.

Crypto liquidation history (screenshot). Source: CoinGlass
Commenting, market participants suggested that price moves were being artificially managed to squeeze positions.
“$BTC is in the manipulation phase,” pseudonymous trader Killa told X followers.
“Every time $BTC trades sub-$60K, that is our manipulation beneath the significant $60K swing low on the weekly and quarterly. Precisely the reason why the orderbook is stacked below us.”

Source: Killa/X
Niels Klaver, cofounder of crypto platform STABL Agency, suggested that BTC/USD “seems to be going for its final leg down of this bear market.”
“$55K remains the target,” he added, referring to an increasingly popular short-term price goal.

BTC/USDT one-week chart. Source: Niels Klaver/X
Bitcoin analysis sees new resistance near $65,000
As BTC price action attempted a modest rebound, trader and analyst Rekt Capital had already described $60,000 support as “clearly weakening.”
Related: BTC price four-year trend calls for $76K as analysis says Bitcoin ‘not broken’
“Once June Monthly Closes, we’ll know from which price July will be able to potentially spring into a post-breakdown relief rally,” an X post read.

BTC/USD one-month chart. Source: Rekt Capital/X
Rekt Capital maintained that the market was acting similarly to 2022, with the 50-month exponential moving average (EMA) tipped to become new resistance next.

BTC/USD one-month chart. with 50EMA. Source: Cointelegraph/TradingView
-
Fashion6 days agoWeekend Open Thread: Miami – Corporette.com
-
Entertainment5 days agoRenter of Home in Anne Heche Crash Denies Settlement With Son
-
Sports2 days agoTwo goals and an assist by sheer aura: Cristiano Ronaldo just entered the World Cup chat
-
Tech4 days agoMicrosoft accidentally kills epic Outlook email threads
-
Business5 days agoSoccer-U.S. defends Iran World Cup travel restrictions, says discussions ongoing
-
Politics6 days agoAndy Burnham and the meaning of Makerfield
-
NewsBeat6 days agoKeir Starmer Allies Question His Chances For No 10
-
Tech8 hours agoA Look At A Gaggle Of Transputer Boards
-
Crypto World2 days ago
Bitcoin (BTC) Dips Below $62K, Ethereum (ETH) Plunges 6% Daily: Market Watch
-
Crypto World2 days agoSecuritize Wraps Roubini's SEC-Registered ETF as Dubai VARA Digital Security
-
Business2 days ago
Entergy settles forward sale agreements, raises $672 million in cash proceeds
-
Business6 days agoWall Street Week Ahead: Investors see Micron earnings as pulse check of AI rally momentum
-
Crypto World6 days ago
Can Charles Hoskinson Really Rescue Cardano?
-
Crypto World6 days agoHIVE shares jump as $220M AI deal speeds Bitcoin mining pivot
-
Entertainment6 days agoJose Alvarado Wants Taylor Swift at More Knicks Games
-
Crypto World6 days agoJake Chervinsky accuses CME of protecting derivatives monopoly
-
Tech5 days agoSignal’s Meredith Whittaker says AI chatbots ‘are not your friends’ and calls Copilot agents a backdoor
-
Sports14 hours agoIndia vs Bangladesh LIVE Score, Women’s T20 World Cup: Bangladesh Opt To Bat; India Enter ‘Do-Or-Die’ Stage As Semi-Final Race Heats Up
-
Tech3 days agoNearly 7,000 fake Amazon domains registered ahead of Prime Day 2026, researchers warn
-
Business5 days agoMHP SE 2026 Q1 – Results – Earnings Call Presentation (OTCMKTS:MHPSY) 2026-06-20


You must be logged in to post a comment Login