Blog
From Glamsterdam to Hegotá: Beyond Scaling, What Will Ethereum Tackle Next?
If we trace Ethereum’s upgrades over the past several years, one theme clearly stands above the rest: scaling.Dencun introduced blobs and dramatically reduced data costs for rollups. Pectra improved validator efficiency and staking mechanics. Fusaka deployed PeerDAS to reduce the burden of data distribution. At the protocol level, nearly every effort has focused on one goal: enabling Ethereum to process more data without pushing node requirements too high.This combination has worked. Rollup data costs have fallen, the mainnet gas limit has risen steadily, and Ethereum no longer routinely confronts users with transaction fees of tens of dollars, as it did during the previous bull market.But although the road is now wider, driving on it still feels awkward:Users still need to move assets across three or four L2s, with the constant risk of withdrawing to the wrong network.A transfer may be included in a block within seconds, yet bridges and exchanges can still make users wait more than ten minutes for confirmation.Professional builders construct nearly all blocks. A sensitive transaction could potentially be excluded under off-protocol policies.Even today, a newcomer who simply wants to transfer a few hundred dollars in USDC must first understand why the wallet needs ETH, what a nonce is, and how gas works.On the surface, these problems appear to be user-experience friction. Underneath, however, they involve deeper protocol mechanisms such as confirmation rules, block construction, censorship resistance, and the account model.These are precisely the issues Ethereum is beginning to address from Glamsterdam to Hegotá—from Q4 2026 into 2027.1. Scaling Continues, but Ethereum Is Starting to Stitch L1 and L2 Back TogetherScaling is not slowing down.Glamsterdam remains heavily focused on performance. Two of its most important components are ePBS (EIP-7732) and Block-Level Access Lists, or BALs (EIP-7928).Put simply:ePBS brings the proposer–builder separation already widely used outside the protocol into Ethereum itself. It also restructures the timing of block construction and validation, creating more room for larger blocks to propagate safely in the future.BALs allow a block to provide an upfront map of the state it will access. Nodes can then prefetch the required data and potentially process non-conflicting operations in parallel, helping address storage I/O bottlenecks.Beyond scaling, however, the biggest source of frustration for most users today is not insufficient TPS. It is that there are simply too many chains.A user’s ETH may be on mainnet, the meme token they want to trade may be on Robinhood Chain, the USDC they use for payments may be on Arbitrum, and the USDC they want to deploy into a market dip may be on Base.From the Ethereum Foundation’s perspective, these rollups are all part of the Ethereum ecosystem. For users, moving between them can feel more like exchanging currencies and applying for visas.Cross-chain protocols are exploring a variety of ways to reconnect these fragmented pieces. At the protocol level, one particularly important mechanism is the Fast Confirmation Rule, or FCR.Many users assume that once a transaction is included in a block, it is final. At the consensus layer, however, a newly produced block can still be affected by a small chain reorganization. Ethereum’s full, irreversible finality currently requires two epochs, or approximately 13 minutes.This delay rarely matters for an ordinary transfer. For bridges, large settlements, and centralized exchanges, however, it is a serious constraint. To avoid reorganization risk, they often have little choice but to make users wait.FCR offers a more efficient approach. Rather than waiting more than ten minutes for full finality, it uses the attestations validators already produce and evaluates their accumulated voting weight to determine whether a block has received sufficiently strong consensus support at an earlier stage.Under normal network conditions, the Ethereum Foundation aims to make this form of strong confirmation available within approximately 15 to 30 seconds.Strong confirmation is not the same as full finality. But for bridges, cross-chain messaging systems, and other infrastructure that currently must wait for finality, it could provide an earlier confirmation signal backed by a clearly defined security model.FCR is also unusual in that it does not need to wait for a specific hard fork. It is closer to a confirmation rule that consensus clients and infrastructure providers can adopt progressively.Once L2s, bridges, and wallets begin using this signal, many cross-layer delays caused by waiting for L1 finality could fall from more than ten minutes to tens of seconds.In the future, moving an asset may involve two or more chains behind the scenes. From the user’s perspective, however, it could require only one confirmation before the funds arrive moments later.2. A Deeper Question: Who Decides Whether a Transaction Gets Included On-chain?As blocks grow larger and builders become increasingly specialized, Ethereum faces another difficult trade-off.Professional builders use sophisticated infrastructure, computation, and order flow to optimize block construction. But as a result, control over what enters most blocks can become concentrated in the hands of a small number of powerful organizations.That creates a serious risk: censorship.A builder might refuse to include an otherwise valid transaction because of regulatory pressure, commercial competition, or hostility toward a particular privacy protocol. Even if the user controls the private key and offers sufficient gas, the transaction could remain stuck outside the chain. Further reading: “Writing Censorship Resistance Into the Protocol: Who Decides Whether an Ethereum Transaction Is Included in a Block?”If a decentralized network cannot preserve permissionless access to transaction inclusion, greater throughput alone rests on a fragile foundation.This is why FOCIL—Fork-Choice Enforced Inclusion Lists, defined in EIP-7805—has become a central component of the planned Hegotá upgrade.Its basic logic is deliberately straightforward: builders can optimize blocks, but they cannot unilaterally decide whose valid transactions are allowed onchain.For each slot, the protocol selects a committee of validators. Based on the pending transactions visible in their mempools, committee members construct and broadcast inclusion lists. Builders remain free to order transactions and capture MEV, but the blocks they produce must satisfy the inclusion-list requirements.If a builder maliciously ignores those requirements, attesters will not vote for the block under the fork-choice rules, preventing it from becoming canonical.Put differently, builders can compete on their ability to construct profitable and efficient blocks. They cannot decide on behalf of the entire network who gets to use Ethereum.Once this mechanism is in place, it may also provide a foundation for another long-discussed but slow-moving part of Ethereum’s roadmap: privacy.Privacy discussions have historically focused on zero-knowledge proofs, stealth addresses, and mixing pools. But if a builder can identify a transaction calling a privacy contract and simply refuse to include it, even the most sophisticated cryptography becomes ineffective.Within Ethereum’s emerging privacy roadmap, FOCIL addresses precisely this point of vulnerability. Only when the protocol can protect the inclusion rights of valid transactions do higher-level privacy systems have room to function.More ambitious privacy proposals remain under discussion. EIP-8182, for example, proposes protocol-supported private ETH and ERC-20 transfers through a native shielded pool.The broader direction is becoming clear: privacy cannot remain a peripheral feature provided by an isolated third-party DApp. Over time, it must become part of Ethereum’s foundational infrastructure.3. The Final Step: Native Account Abstraction and Wallets Designed for HumansThe architectural changes discussed above largely operate beneath the surface. The third development, however, could directly transform the everyday wallet experience.Ethereum is finally preparing to make deeper changes to the Externally Owned Account (EOA) model it has used for more than a decade.For an ordinary internet user, Ethereum’s traditional private-key account model can be remarkably unforgiving:Lose the private key, and account access may be gone permanently.Hold thousands of dollars in stablecoins but lack 0.001 ETH for gas, and the assets may be temporarily impossible to move.A simple DeFi action may require an approval followed by a swap, with multiple signatures needed to complete a single task.Transaction nonces must be processed in strict sequence. If one transaction becomes stuck, every transaction behind it may also stall.The community has introduced several intermediate solutions over the past two upgrade cycles.ERC-4337 brought account abstraction to the application layer through smart contract wallets without changing the core protocol. Pectra then introduced EIP-7702, allowing ordinary addresses to delegate functionality to smart contract code.EIP-7702 is ultimately a bridge. One of the most important native account abstraction proposals now being considered for Hegotá is EIP-8141, formally known as Frame Transaction.A traditional Ethereum transaction effectively binds three responsibilities together:who authenticates the user, who pays for gas, and what the transaction does.EIP-8141 aims to separate these responsibilities at the protocol level through different transaction frames.Further reading: “Native Account Abstraction + the Quantum Threat: Why Was EIP-8141 Passed Over as the Headline Feature of Ethereum’s Hegotá Upgrade?”In practical terms, the model can be understood in three parts:Validation: Accounts would no longer be permanently restricted to one fixed ECDSA signing path. More flexible authentication methods, including passkeys, could become possible. Combined with biometrics such as fingerprint authentication or Face ID on mobile devices, this could make key rotation and account recovery more intuitive.Payment: Gas sponsorship could become more native. An application could pay gas for a new user, or a transaction flow could use USDC to cover the cost, reducing reliance on separate offchain relayers.Execution: Atomic batching could allow actions such as approval and swapping to be completed as one operation. Either all steps succeed together or all of them revert.EIP-8250, or Keyed Nonces for Frame Transactions, is also under discussion. If adopted, it could give accounts multiple independent nonce lanes, allowing transactions to proceed in parallel instead of forcing every action through a single sequential queue.If these capabilities become native to the protocol, wallets such as imToken could undergo a fundamental transformation.Today, wallets spend significant effort reminding users to hold enough ETH for gas, explaining why transactions are stuck, teaching them to record seed phrases, and helping them switch RPC networks across different chains.In the future, if signature schemes, gas sponsorship, permission controls, and transaction routing all become programmable, wallets could finally take on their natural role: a quiet operating layer between users and the decentralized world.Users would retain full control, just as they do today. But interacting with the wallet could feel as intuitive as scanning a payment code or unlocking a phone with a fingerprint.Final ThoughtsLooking back at Ethereum’s recent upgrade path, the direction is remarkably clear.Dencun introduced blobs. Pectra continued scaling while improving validator and account capabilities. Fusaka deployed PeerDAS to prepare Ethereum for greater data throughput. Glamsterdam will use structural changes such as ePBS and BALs to lay the groundwork for higher gas limits and parallel execution.Scaling is far from complete. But it is no longer Ethereum’s only challenge.Ethereum can now devote more attention to some of its most fundamental—and most difficult—problems. This is why the Ethereum Foundation reorganized its protocol work in 2026 around three straightforward goals:Scale, Improve UX, and Harden the L1.Ethereum has already shown the world that it can function as a global computer that never stops running.The next step is making it genuinely seamless for ordinary people to use.
2026-09-07With 34% of ETH Staked, How Should You Stake in the Era of Native Compounding?
Two notable developments have recently emerged in Ethereum staking.The first is 34.7%.As of late August, approximately 42.4 million ETH was staked across Ethereum—about 34.7% of the total supply and a new all-time high. More strikingly, over 2.2 million ETH was still waiting in the validator entry queue. At the current activation rate, new staking deposits need to wait nearly 39 days before activation.The second development came from traditional finance.In August, Fidelity continued laying the groundwork for staking through its Fidelity Ethereum Fund (FETH). Fidelity entered into custody agreements with Anchorage Digital and BitGo and established a mechanism for allocating staking rewards.These two seemingly unrelated developments reflect the same broader shift. Over the past six months, Ethereum staking has rapidly evolved from a relatively technical onchain operation into an increasingly standardized form of asset management.For ordinary ETH holders, this raises a more practical question than whether to stake:If you decide to stake, should you run your own node, choose non-custodial native staking, use Lido, or simply leave your ETH on an exchange?1. Staking Is No Longer Just About “Locking Tokens to Earn Yield”Let us begin with the fundamentals.After The Merge, Ethereum moved away from proof of work. Validators now stake ETH to participate in block validation and consensus.The minimum requirement for operating an independent validator is 32 ETH.Validators earn consensus-layer rewards from the Ethereum protocol by remaining online, submitting correct attestations, and proposing blocks when selected. Conversely, prolonged downtime can result in penalties, while serious violations such as double-signing may lead to slashing.From this perspective, staking rewards are not “interest” generated from nothing. Users help secure Ethereum by staking ETH and receive protocol rewards in return.For years, however, Ethereum staking had a somewhat counterintuitive limitation: rewards did not compound natively.With legacy 0x01 validators, any balance above 32 ETH—including an additional 0.5 or 1 ETH earned in consensus-layer rewards—was periodically swept to the withdrawal address instead of continuing to participate in staking.To stake those rewards again, users had to accumulate enough funds to meet the staking requirement and deploy another validator.Pectra changed this.The maximum effective balance of the new 0x02 validators is 2,048 ETH. Once the balance exceeds 32 ETH, it can continue increasing the validator’s effective balance under protocol rules. For long-term stakers, the previous cycle of “earn rewards, withdraw them, and redeploy the funds” can now be completed automatically within Ethereum’s native protocol for the first time.Further reading:“As 8 Million ETH Starts Moving, Is Ethereum Staking Undergoing a Structural Shift?”Looking at developments over the past six months, ETH staking is clearly moving beyond the relatively basic model of “lock 32 ETH and earn rewards” toward a more mature asset-management system.Fidelity’s proposed move to incorporate staking rewards into an exchange-traded product addresses the question of who stakes on behalf of traditional investors. Pectra improves capital efficiency at the validator level. Liquid staking protocols such as Lido provide liquidity, while professional node operators separate validator operations from control over assets.Comparing staking options today therefore requires more than looking at APR. Users need to weigh several factors together.2. Four Ways to Stake ETH—and What Actually Sets Them ApartETH staking options currently available to ordinary users can broadly be divided into four paths.On the surface, they may appear to be four different ways of earning the same rewards. Their fundamental differences, however, lie in which responsibilities users delegate and which risks they assume.1. Running Your Own Node: The Most Direct Protocol Rewards and the Greatest ControlThe purest form of ETH staking is to provide 32 ETH, run execution- and consensus-layer clients, and maintain your own validator.You decide how the node is deployed, which clients it runs, and when the validator exits. Protocol rewards also do not need to be shared with a liquid staking protocol or exchange.The barriers are considerably higher, however.In addition to at least 32 ETH, you need reliable hardware and internet connectivity. You must also maintain client software, monitor validator performance, and protect the validator’s keys over the long term.Ultimately, running your own node means exchanging greater technical and operational responsibility for maximum control and more direct access to staking rewards.2. Non-Custodial Native Staking: Keep Control of Your Assets While Outsourcing OperationsThe second option can be understood as a middle ground between solo staking and fully custodial staking.Users still provide 32 ETH to create an independent validator. Their ETH enters Ethereum’s native staking system and is not exchanged for another token, while responsibility for operating the node is delegated to a professional provider.The most important distinction is that withdrawal authority can be separated from day-to-day validator operations.Ethereum validators use different keys for different purposes. The signing key is used for routine validator duties, including signing attestations and block proposals, and can be managed by a professional node operator. The withdrawal key, which determines where the principal and rewards can ultimately be withdrawn, remains under the user’s control.This separation is a critical dividing line between non-custodial native staking and custodial staking through an exchange.imToken’s non-custodial ETH staking service, for example, follows this model. Further reading:“What Is imToken’s Non-Custodial ETH Staking Service?”Users with at least 32 ETH can create an independent validator. They retain control over the withdrawal key while professional infrastructure providers handle node operations. imToken also offers a choice between compounding and auto-withdrawal validators.This option is best suited to users who have at least 32 ETH, want native staking rewards, value self-custody, but do not want to maintain a validator themselves every day.“Non-custodial,” however, does not mean “free of third-party risk.” A node operator could still experience downtime, configuration errors, or even a slashing event.What users delegate is therefore not ownership of the assets, but the operational risk associated with running the validator.3. Lido: Trading Some “Nativeness” for LiquidityFor users who do not have 32 ETH—or simply do not want their ETH tied up while waiting in a validator exit queue—liquid staking offers a very different path.Lido is the most prominent example.When users deposit ETH into Lido, the protocol allocates the funds to node operators for Ethereum staking and issues stETH to users in return.ETH that would otherwise remain locked in staking and could not be transferred directly is therefore represented by a liquid onchain asset. Users can transfer or trade stETH and deploy it across DeFi applications such as lending protocols and liquidity pools.Users who want to exit can redeem stETH for ETH through Lido’s withdrawal process or sell it for ETH directly on a decentralized exchange. The latter does not require waiting for the underlying validators to exit, but the user must accept the prevailing market price and slippage.stETH also reflects accumulated staking rewards through a rebasing mechanism. For ordinary users, this largely removes the need to claim rewards and manually restake them.That convenience comes with an additional layer of risk.Lido charges a protocol fee and allocates portions of the rewards to node operators, the DAO treasury, and other participants, with users receiving the remainder. More importantly, liquid staking introduces risks involving Lido’s smart contracts, protocol governance, node operators, and stETH’s secondary-market liquidity.It is also important to understand that the market price of stETH is not fixed at exactly 1 ETH and may trade at a discount during periods of heavy selling.Using stETH in additional DeFi protocols introduces further smart-contract and liquidation risks.imToken’s ETH staking interface is also integrated with Lido. Users can participate in liquid staking and hold stETH directly without owning 32 ETH.4. Exchange Staking: The Lowest Barrier, but What You Hold Is a Platform PromiseThe final option—and perhaps the one most familiar to new users—is to deposit ETH on an exchange and tap “Staking.”From a user-experience perspective, this is undoubtedly the simplest approach.There is no need to provide 32 ETH, understand validator infrastructure, manage signing or withdrawal keys, or worry about whether a server goes offline.The exchange pools ETH from many users, operates validators, and credits a portion of the rewards to user accounts according to its own rules.For the same reason, however, this option requires the greatest degree of trust.When an exchange displays “1 ETH staked,” that balance is often first and foremost an entry in the platform’s internal account system. How the underlying validators are deployed, how much ETH is actually staked, how rewards are compounded, how much the platform deducts, and how redemptions are funded all depend on the platform’s product design.More importantly, the assets themselves are held in custody by a centralized platform.This does not mean exchange staking is necessarily a poor choice. For beginners who already keep ETH on an exchange for the long term and do not intend to manage an onchain wallet themselves, it may still offer the lowest operational barrier.But that convenience comes from delegating custody, validator operations, reward allocation, and the entire exit process to the platform.3. There Is No Single “Highest-Yield” Option—Only a Risk Mix That Fits You BetterPutting the four options side by side reveals an interesting pattern.The evolution of Ethereum staking products is not driving every solution toward the same endpoint. Instead, the market is unbundling and recombining the capabilities different users actually need.
Running your own node maximizes control.
Non-custodial native staking separates ownership of funds from validator operations.
Lido recombines staking rewards with liquidity.
Exchanges hide more of the underlying complexity, offering the lowest operational barrier in exchange for centralized custody.
Fidelity’s plan to incorporate staking into an exchange-traded product takes this one step further. Investors may not need to hold ETH onchain or understand how validators operate. A traditional financial product can manage custody, node operations, reward generation, and the eventual distribution of staking proceeds.From this perspective, staking is increasingly becoming part of mainstream financial infrastructure.So how should ordinary users choose?If you have at least 32 ETH, possess the necessary technical skills, place a high value on independent control, and want to participate directly in the Ethereum network, running your own validator still provides the greatest control.If you also have at least 32 ETH but do not want to handle long-term validator maintenance—and still want to retain withdrawal authority—non-custodial native staking offers a natural compromise.If you hold less than 32 ETH or regularly trade, lend, and use other DeFi applications, a liquid staking solution such as Lido provides considerably greater flexibility in exchange for an additional layer of protocol risk.Exchange staking is better suited to users who already accept centralized custody and want to minimize operational complexity, provided they understand that platform risk does not disappear simply because the interface includes a “Staking” button.When comparing Ethereum staking options today, APR should not be the first metric users compare.Suppose two products differ in annualized yield by only a few tenths of a percentage point. One requires users to surrender complete custody to a third party, while the other leaves withdrawal authority in their own hands. One requires waiting in the validator exit queue, while the other allows users to sell an LST on the open market. One compounds rewards natively, while the other depends on how a platform processes and distributes them.These differences are often far more important than the headline APR.Staking rewards never exist in isolation.How much you earn, how much liquidity and control you give up to earn it, and how much additional risk you assume are all part of the same calculation.
2026-08-31AI Agents Come of Age: What’s Still Missing Between Simulation and Live Trading?
If you are a frequent user of AI tools, you have probably witnessed a defining shift in how AI agents have evolved:Beyond the leap in intelligence delivered by foundation models themselves, agents are beginning to look increasingly like real “workers.”From the earliest chatbots to the growing maturity of infrastructure such as MCP, Skills, and agent harness, agents have gained a growing range of ways to act. They can open webpages, retrieve real-time data, operate software, and even connect to wallets and trading accounts.But this progress has exposed a practical problem: knowing how to use tools and being able to complete a real task are two very different things.An agent capable of taking responsibility for a task cannot simply receive an instruction and call an API once. It must operate in a constantly changing environment and continuously adapt its actions based on the outcomes it observes.Financial markets make this distinction particularly clear.You can ask an agent, “Which team is more likely to win this match?” Within seconds, it may produce a convincing analysis.But change the task to, “Here is some capital. Trade continuously in prediction markets over the next month and improve returns while keeping maximum drawdown under control,” and it becomes an entirely different problem.The agent must continuously monitor real-time news, odds, and order books; determine whether information has already been priced in; decide when to open, increase, or exit a position; and adjust its strategy when its previous judgment proves wrong.A wave of recent infrastructure innovations appears to be filling in these previously missing pieces, one by one.1. Do AI Agents Need a Simulated Training Ground?In mid-August, SKALE launched an intriguing new product called AgentPit.Put simply, AgentPit is a simulated trading sandbox built specifically for AI agents operating in prediction markets. It synchronizes market data from Polymarket and provides compatible APIs, while using a production-style central limit order book (CLOB), Conditional Token Framework (CTF) tokens, and settlement mechanics. The key difference is that real funds are replaced with simulated USDC.Developers can allow agents to read live market data, place orders, have them matched, and manage positions without risking financial losses. They can also observe the collective behavior that emerges when multiple agents compete within the same order book.At first glance, this may resemble the backtesting and paper-trading environments used in traditional quantitative finance. For AI agents, however, its significance runs much deeper.Agents face a long-standing question: how can we tell whether an agent can actually trade?The industry has traditionally relied heavily on static benchmarks to evaluate large models—solving math problems, repairing code, or summarizing long documents.Complex decisions in the real world, however, do not come with predetermined correct answers. This is especially true in financial markets.Suppose an agent estimates that the fair value of “YES” shares in a prediction market is $0.70, while the current market price is $0.55. After the agent buys, the price might continue falling to $0.45, or breaking news could send it sharply higher. The order book’s available liquidity at that moment will also directly affect the actual average execution price.This means the agent cannot make one prediction and consider the task complete. It must continue dealing with the real consequences of its previous decisions.That is the core value of AgentPit: it gives agents a dynamic feedback loop that closely resembles a production environment:Observe → Evaluate → Execute → Receive feedback → Adjust → Execute againHere, “training” does not necessarily mean that the agent automatically modifies the parameters of its underlying model after every trade. Instead, AgentPit provides an environment in which strategies can be rerun, results evaluated, and workflows iterated repeatedly.Just as an autonomous driving system must encounter a wide range of extreme situations in simulators before taking to public roads, a financial agent that may eventually manage real funds cannot be granted control over assets after only a few prompt tests. It first needs to demonstrate how it performs in an environment that requires continuous decision-making.But this raises another question.Strong performance in a simulated environment does not mean that real money can immediately be handed over to AI. A more critical layer is still needed in between.2. Infrastructure Converges as Payments and Trading Become Native Building Blocks for AgentsLooking at recent moves by leading cloud providers and trading platforms, one trend is difficult to miss: the infrastructure on which agents operate is rapidly becoming standardized and interconnected.The first major development is the arrival of machine-native payment protocols.On August 18, Amazon Bedrock AgentCore Payments became generally available. The service enables agents running on AgentCore to autonomously discover, access, and pay for third-party APIs, MCP services, and specialized data sources. It integrates wallet infrastructure from Coinbase, Stripe, and Privy, with native support for stablecoins and machine-payment protocols such as x402.This addresses a particularly disruptive break in agent workflows.Suppose an agent discovers that it needs to purchase a high-quality real-time dataset while analyzing a market. Previously, the workflow would have to stop while a human paid by card and configured an API key.With AgentCore Payments, payment becomes an automated step within the workflow itself. The user only needs to define a budget and payment policy in advance. When the agent encounters a paywall, it can initiate a micropayment and access the resource without human intervention. Wallet credentials and private key material remain isolated from the model itself.Two days later, on August 20, Binance introduced Agent OS and opened up agent-native interfaces.Rather than providing a single AI feature, Agent OS functions more like a financial infrastructure layer designed specifically for agents. It brings together components including Binance APIs, Wallet Agentic Hub, x402, Skills Hub, and MCP.Compatible AI applications can use MCP to retrieve market data and account information, then execute supported trading operations once authorized by the user. More importantly, the system emphasizes permission boundaries and isolation at the infrastructure level.Users can assign an agent a dedicated sub-account, separating its funds and trading activity from the main account, and configure specific permissions for that agent. Access can also be revoked at any time.Viewed together, AgentPit, AWS AgentCore Payments, and Binance Agent OS reveal an increasingly clear pattern:
AgentPit provides an environment for strategy testing and continuous feedback.
x402 and AWS AgentCore Payments enable machine-native payments.
Binance Agent OS opens market data, accounts, trading, and onchain capabilities to agents.
Capabilities that were once fragmented are gradually being connected into a complete workflow.Financial applications, however, have a unique characteristic. If a piece of code contains an error, it can usually be corrected and rerun. But once an agent executes an incorrect transaction, the assets may already have left the wallet.This means that one role cannot be bypassed as agents move from simulation into the real world:The wallet.3. What Is the Real Value of an Agent Wallet?A complete future workflow for AI agents could follow a clear sequence:
Train and test strategies in a simulated environment such as AgentPit.
Obtain information and tools through MCP, Skills, and APIs.
Purchase data and computing resources through protocols such as x402. Further reading:“When AI Agents Get Wallets, Who Stays in Control?”
Enter real markets and execute transactions.
Continue refining strategies based on actual results.
At the execution stage, wallets will play a very different role from the one they do today.Traditional Web3 wallet interactions were designed for humans. Every signature assumes that someone is looking at a screen, reviewing the transaction, and manually confirming it.But if a high-frequency trading agent needs to read multiple order books every second and continually adjust its positions, requiring a human signature for every action would defeat the purpose of automation.Handing the private key directly to AI, however, would mean abandoning the most fundamental security boundary.The real purpose of an Agent Wallet is therefore not to answer the question, “How can we give an AI the private key?”It is to answer a different question:How can an agent receive secure, controllable execution authority without the user surrendering ultimate control over their assets?This is the central approach proposed in imToken’s Agent Wallet design framework:
Account isolation and session keys: Under imToken’s Agent Wallet design concept, every agent granted execution authority corresponds to a separate agent account. Its session key is generated and isolated within a trusted execution environment (TEE) and never leaves that secure environment.
Policy-enforced constraints: Every agent account must be bound to an explicit policy covering protocol allowlists, per-transaction limits, daily spending limits, operating frequency, authorization periods, and other restrictions. In other words, the agent does not receive an unrestricted wallet. It receives an execution account enclosed by policy guardrails.
Ultimate control remains with the user: The agent can act autonomously only within the policy authorized in advance by the user. Any operation outside those boundaries must return to the user for confirmation. Users can adjust the policy, pause or resume the agent, revoke its permissions, and recover control of the funds at any time. If a transaction is identified as abnormal or falls outside the predefined strategy, automated execution is suspended and the user must authenticate again.
Viewed from this perspective, simulated training environments such as AgentPit and smart wallets such as imToken Agent Wallet address two stages of the same challenge.The former raises the upper limit of an agent’s decision-making ability.The latter establishes the guardrails for safe execution.Neither can replace the other.This may be the most important difference between an Agent Wallet and a traditional wallet.Final ThoughtsThe arrival of AgentPit signals the beginning of a new stage worth watching.AI agents are moving from “learning to use tools” to “learning how to work.”When they eventually leave simulated training grounds and enter the unpredictable world of live trading, whether they can proceed safely and sustainably will depend on more than the intelligence of their underlying models.It will also depend on the strength of the account and authorization boundaries we build around them.After all, in a complex real-world economy, what we need is not an agent that never makes mistakes.We need an agent whose mistakes remain within controllable boundaries.
2026-08-31A Turbulent Time for Web3 Wallets: How Crypto Security’s “Sword and Shield” Are Evolving in the AI Era
Over the past month, a series of incidents has once again put the crypto industry on high alert.First, Coldcard was found to have a critical vulnerability in its random number generation. Trezor and SafePal then disclosed separate incidents that involved potential exposure of users’ personal data.At first glance, the three incidents appear to have little in common. But viewed over a longer timeline, they point to an increasingly important question:As AI automates vulnerability discovery, exploit development, and social engineering, how many parts of a crypto wallet could become the next weak link targeted by attackers?1. How AI Is Turning Hacking From a Craft Into an IndustryObjectively speaking, the three incidents exposed entirely different attack surfaces.Coldcard’s issue affected private key generation and represented a serious security vulnerability. Trezor’s incident involved a third-party logistics provider, while SafePal’s involved its ordering system and browser extension permissions. The latter two primarily exposed risks stemming from personal data leaks.Although there is currently no evidence that AI was directly involved in all three incidents, one fact is becoming difficult to ignore: in the AI era, the hacker’s toolbox is undergoing a profound transformation.Many sophisticated cyberattacks were previously constrained by a very practical resource—human time.Studying a large codebase, understanding its call paths, and identifying logic flaws hidden for years could require an experienced security researcher to invest enormous amounts of time. Collecting information on a particular user, studying their habits, and crafting a convincing phishing email could require months of preparation to develop a sophisticated social-engineering campaign.This forced attackers to make a trade-off. They could either automate an attack at scale using relatively crude methods and wait for a small number of victims to take the bait, or meticulously target a high-value individual with an attack that was difficult to replicate at scale.As AI capabilities rapidly advance, however, that toolbox is receiving a complete overhaul:
Automated vulnerability discovery: AI can help attackers rapidly analyze smart contracts, client software, and even firmware to uncover zero-day vulnerabilities and logic flaws.
Scalable social engineering: Phishing emails that once required careful manual preparation can now be generated automatically using leaked identity data. AI can produce highly personalized and persuasive emails, text messages, voice recordings, and even videos. Further reading: Spring Festival Asset Security Guide: Protecting Your Tokens Amid the Holiday Rush
Intelligent attack execution: From identifying targets to launching coordinated attacks across multiple channels, the cost of executing an entire attack chain has fallen to an unprecedented level.
Capabilities that were once distributed across different specialists—from target selection and vulnerability research to malware generation, social engineering, and attack delivery—are gradually being compressed into a more automated workflow.This is the truly far-reaching impact of AI on cybersecurity.AI may not suddenly invent an entirely new form of attack. Instead, it rapidly lowers the cost of existing attacks. Finding a vulnerability becomes cheaper, analyzing a target becomes faster, and generating a thousand different versions of a phishing email becomes far easier than before.In other words, the fact that many systems were not attacked in the past did not necessarily mean they had no vulnerabilities. Sometimes, those vulnerabilities were simply too difficult to find, the attacks were too expensive to execute, or the potential targets were not worth the effort.The invisible security boundary created by the assumption that “attackers do not have enough time” is now growing thinner.From this perspective, the battle over crypto asset security is expanding beyond the relatively narrow contest for private keys. It is becoming an end-to-end struggle spanning code, devices, supply chains, user identities, and everyday interactions.AI is simply accelerating that shift.2. A Wallet’s Attack Surface Extends Far Beyond Its Seed PhraseThis is why the recent incidents are particularly revealing when examined together.Each affected a different stage of the wallet lifecycle, reminding us that wallet security has long since moved beyond the single question of whether a private key has been stolen. Risk can be embedded in every step, from private key generation and hardware devices to logistics and users’ personal information.Let us break down the three incidents.Coldcard is the most direct example. Its vulnerability arose before users had even begun using their wallets.A seed phrase could still appear as 12 or 24 ordinary words. The device could sign transactions and transfer assets normally, leaving the user with little reason to suspect anything was wrong. But if the randomness used to generate that seed phrase was not truly random, the wallet could still be at risk—even if the user had never shared the phrase with anyone.After all, the advice to “protect your seed phrase” assumes that it was generated securely and unpredictably in the first place.Trezor and SafePal illustrate a different type of risk.Unlike Coldcard, their hardware was not compromised, and users’ seed phrases remained intact. What was exposed instead was purchase information, including names, phone numbers, email addresses, and even delivery addresses.Imagine purchasing a top-of-the-line, tamper-resistant safe. The safe itself remains secure, but the shipping company loses a delivery manifest listing your name, email address, phone number, home address, and the fact that you purchased a hardware wallet designed specifically to store crypto assets.An attacker would then possess a list of potentially high-value crypto users. They could impersonate wallet support staff and send an “urgent firmware update” notice, create a phishing page tailored to the exact wallet model purchased, call users about an alleged order issue, or link their social media profiles and public identities to onchain addresses.In other words, being unable to break the cryptography does not leave an attacker without options.The crypto community has long used an extreme real-world example to illustrate this point: the “$5 wrench attack.” No matter how strong the encryption is, it cannot prevent an attacker from directly targeting the person who owns the assets.This is not purely a theoretical risk. According to data Chainalysis provided to the Financial Times, at least 46 violent attacks against crypto holders had been recorded by mid-August 2026. Kidnappings accounted for more than half of them, while home invasions represented over one-third.Looking back at the three wallet incidents, it becomes clear that “wallet security” now involves a very long chain:It begins with wallet code, randomness, and key generation, then extends to chips, firmware, and devices, followed by official websites, purchasing channels, supply chains, logistics providers, and order databases. Once a user begins using the wallet, it connects to RPC services, DApps, browser extensions, and smart contracts. It must then handle approvals, signatures, customer support, social media, and even AI agents.If any link becomes the weakest point, attackers may be able to bypass the defenses built throughout the rest of the chain.3. As Attacks Become Automated, Defense Must Embrace AIIf AI continues advancing at its current pace, the problems being exposed today may be only the beginning.One of AI’s greatest strengths is its ability to examine a large system continuously for anomalies, recurring patterns, and weak points.Attackers can deploy agents to scan open-source code around the clock, test websites, APIs, and browser extension permissions at scale, and automatically collect information from social media and public databases before identifying potentially high-value targets.Even phishing could evolve beyond generic messages such as “Your wallet is about to expire—please enter your seed phrase” into real-time conversations tailored to the victim.
If an attacker knows that you recently purchased a particular hardware wallet, AI can generate a “firmware security notice” tailored to that exact model.
If the attacker knows that you recently used a particular DeFi protocol, AI can impersonate the project team and instruct you to migrate your assets to a new protocol vault.
If the attacker also gathers information from your social media profiles and public posts, AI may even imitate a team member, KOL, or customer support representative you already know and trust.
From this perspective, wallets face an important challenge: when attacks evolve from fixed patterns into systems that can analyze, reason, and adapt, can defense continue to rely on static rules alone?Traditional wallet security mechanisms still largely resemble a rulebook. If an address has been identified as a phishing address, the wallet displays a warning. If a domain has been blacklisted, access is blocked. If a particular approval pattern is considered risky, an additional alert appears.These mechanisms remain important. But as attacks become increasingly dynamic, identifying the next threat solely by looking at threats that have already occurred is clearly not enough.AI can become an important addition to the defensive toolkit. Further reading: When Hackers Scale Up with AI: The Next Level of Web3’s Security Arms RaceIn fact, this is not an entirely new idea.In previous discussions about “AI × Web3 security,” imToken proposed a similar direction: wallet security should move beyond address blacklists, risk labels, and fixed pop-up warnings. With AI, security checks could be integrated earlier and more deeply into the user’s entire transaction process.Before code reaches production, for example, AI could continuously review dependencies, call paths, and anomalous logic. When a user visits a DApp, the wallet could assess its domain history, front-end behavior, contract addresses, and onchain relationships to detect suspicious activity. Before a signature is submitted, it could simulate the transaction’s actual outcome instead of merely displaying an incomprehensible string of hexadecimal data.Over time, wallets could even build dynamic security models for individual users.If an account that normally transfers only a few hundred dollars suddenly attempts to approve a contract deployed just two hours earlier to spend all of its assets, that is an anomaly in itself.If a user is about to grant unlimited token approval to an address they have never interacted with, the wallet should issue a higher-priority risk warning.And if an email claims to come from an official wallet team and asks the user to enter their seed phrase, it should be classified as high risk—no matter how convincing the message appears.The change brought by AI may therefore extend far beyond automatically telling users whether an address is safe. It could give wallets, traditionally passive tools for key management and transaction signing, an active layer of risk assessment.This also makes another security boundary previously discussed by imToken even more important: AI can help users understand and execute complex operations, but control over assets must not be delegated without limits.Critical actions—such as large transfers, approvals for new addresses, and interactions with sensitive contracts—should remain subject to least-privilege controls, human confirmation, pre-execution simulation, and clear explanations. AI’s capabilities must stay within explicitly defined permissions.Most importantly, when something genuinely appears abnormal, the wallet should clearly explain why it is dangerous, what will happen if the transaction is executed, and where the risk lies.In other words, the value of AI-powered defense lies in transforming wallets from passive signing tools into systems capable of actively understanding transactions, identifying anomalies, and constraining execution.Final ThoughtsThe recent series of wallet security incidents does not mean self-custody has lost its value. Nor does it suggest that users should return complete control of their assets to centralized platforms.What these incidents remind us is that self-custody has never meant automatic security. It means returning ultimate control over assets to the user.Protecting that control requires a security system capable of evolving alongside changing threats. Security is not a one-time product deliverable. It is an ongoing and dynamic process that requires users, projects, and wallet providers to work together.Attackers can use AI to understand code, users, and their environments.Defenders can do the same.The long-running “sword and shield” arms race has entered its next stage.
2026-08-31Ethereum’s “Rate Cut” Debate: EIP-8363 Breaks the Mold—Is Now the Prime Window for Staking?
While the Federal Reserve remains undecided on whether to raise or cut interest rates, the Ethereum community is already debating a “rate cut” for staking—a benchmark rate for on-chain finance.EIP-8363, which has recently sparked widespread community discussion, proposes an unconventional issuance mechanism: as the share of ETH staked increases, a progressively larger portion of validator rewards would be burned. Once the staking ratio approaches 50%, the burn would fully offset issuance rewards.In other words, when 50% of all ETH is staked, the annualized staking yield could fall close to zero.This does not mean total staking returns would strictly drop to zero. Validators could still earn execution-layer fees, MEV, and other income. But since issuance currently accounts for the majority of staking rewards, the proposal would strike at the heart of the existing reward model.Unsurprisingly, it has stirred up considerable debate.At the time of writing, more than 40 million ETH is staked—nearly 35% of the total supply—while the protocol-level APR has already fallen to around 2.6%. A question that once seemed distant is suddenly confronting Ethereum:As more and more ETH enters staking, does Ethereum still need to issue new ETH to encourage even greater participation?1. Is Ethereum Starting to Worry About “Too Much Staking”?To understand the issue, we first need to look back at the different stages of Ethereum staking.When Ethereum’s Proof-of-Stake mechanism was first introduced, its most important objective was simple: attract enough ETH to the Beacon Chain to establish sufficient economic security for the network.To achieve this, the protocol rewarded validators through new issuance and adopted a dynamic reward curve. Early participants could earn relatively high returns, while the yield would gradually decline as more ETH entered staking.This is why Ethereum’s staking APR was once far higher than it is today and has since fallen to around 2.6%. In theory, the mechanism already has a built-in brake.As yields decline, staking eventually becomes less attractive to some participants, allowing the market to find an equilibrium. EIP-8363, however, starts from the premise that this brake may not be strong enough.Under the current issuance curve, consensus-layer staking yield has an implied floor of around 1.5%, even as the amount of staked ETH continues to grow. In theory, this means that large amounts of capital could continue entering staking even when returns fall to just above 1%.Yet as a growing share of ETH is entrusted to exchanges, custodians, liquid staking token (LST) protocols, and professional operators, the marginal contribution of additional stake to economic security diminishes. At the same time, the risks of staking concentration, governance capture, and large amounts of ETH being controlled by a small number of operators may increase.Staking rewards also come from new ETH issuance. The higher the staking ratio, the more ETH the protocol must issue to pay for network security, while ETH holders who do not stake bear the corresponding dilution.EIP-8363 is therefore trying to answer a straightforward question: once the network has already purchased enough security, should it continue spending more ETH on additional security whose marginal value is steadily declining?The proposal is far from settled Ethereum monetary policy, and it remains highly controversial within the community.One practical objection is that if yields are pushed too low, solo stakers—who must cover hardware, electricity, and maintenance costs—may be the first to conclude that staking is no longer worthwhile and exit.Large institutions, by contrast, may be better positioned to remain due to economies of scale, MEV revenue, or product requirements. The result could be a lower staking ratio but a more concentrated validator set—the opposite of the proposal’s goal of improving decentralization and resistance to capture.The debate is still ongoing, and there is no certainty that EIP-8363 will be adopted or what form it might ultimately take.Nevertheless, it sends a clear signal: Ethereum is beginning to reconsider a question it rarely had to ask in the past—are staking rewards becoming too generous?2. Ethereum Is Preparing a “Rate Cut” Just as Staking Enters the Compounding EraInterestingly, while Ethereum is discussing lower long-term staking rewards, staking capital efficiency has just received a major upgrade.That upgrade is EIP-7251, introduced through Pectra.Further reading: “As 8 Million ETH Starts Moving, Is Ethereum Staking Undergoing a Structural Shift?”Put simply, native Ethereum staking previously lacked protocol-level automatic compounding. The original 32 ETH principal could earn rewards, but those rewards would not automatically become additional effective balance and generate further returns.EIP-7251 allows native staking to form a true compounding cycle for the first time:ETH principal generates rewards → rewards are added to the effective balance → the additional ETH generates further rewards.Over one or two years, compounding a yield of slightly above 2% may not produce a dramatic numerical difference.Its real value lies in time.Suppose a user already plans to hold ETH for three, five, or even more years. If they begin staking from day one and continually add the ETH rewards back to their principal, the gap between compounding and non-compounding becomes more significant as the holding period grows.Compounding is not new to ordinary users of LSTs. Many liquid staking products have already allowed users to benefit indirectly from accumulating staking rewards. Pectra’s importance is that it makes automatic compounding a protocol-native capability rather than something that must be provided by an external product.This would further improve the capital efficiency of the broader Ethereum staking infrastructure.Viewed together, EIP-8363 and Pectra may appear contradictory, but their objectives are actually complementary. Ethereum wants to make staking more efficient without necessarily continuing to increase the economic incentive to stake through ever-greater ETH issuance.Pectra addresses capital efficiency, while EIP-8363 asks how much the protocol should pay for security.For this reason, Ethereum staking may increasingly follow a clear trend: the mechanism will become more mature and compounding more accessible, while returns derived purely from protocol issuance may continue to decline.These protocol-level changes are also gradually reaching ordinary users. For example, imToken plans to support automatic compounding for native ETH staking, bringing Pectra’s new capabilities beyond validators and large staking institutions and into a wallet interface accessible to long-term ETH holders.3. Could This Be the Prime Window for Staking?This brings us to the question that ordinary ETH holders care about most.If staking APR is likely to keep falling, should users start staking now while yields are still relatively high?First, it is important to clear up a common misconception: staking today does not lock in the current yield of approximately 2.6%–3%.Ethereum staking is not a long-term bond with a fixed coupon. If EIP-8363 is eventually adopted—or if Ethereum changes its issuance curve through another mechanism—validator yields will adjust accordingly.The “window,” therefore, is not an opportunity to secure a long-term deposit paying 2.6% before Ethereum “cuts rates.”What matters is the cost of lost time.Suppose a user holds ETH that they already intend to keep for five years. If they do not stake during the first year and only begin in the second, the yield in the second year will not be any higher, nor can they recover the ETH rewards missed during the first year.More importantly, they also forgo four years of compounding on the rewards missed during the first year.If the long-term direction of Ethereum staking is indeed toward a higher staking ratio and lower yields, this effect becomes even more pronounced. The longer users wait, the less time they have to compound—and the lower the underlying yield may already be when they begin.This is the strongest argument for why the present may represent a window: it is a window of time.This is particularly relevant to users who already intend to hold ETH for the long term and have no significant short-term liquidity needs. For them, the way they evaluate staking may need to change.In the author’s view, EIP-8363 is a trial balloon. Whatever conclusion the community ultimately reaches, the broader direction of Ethereum’s token economics is likely to shift from broad-based incentives toward a more precise and restrained issuance policy.That does not mean everyone should stake all of their ETH. Every source of yield comes with costs and risks:
Running a native validator offers the greatest degree of control and access to protocol-native rewards. However, it requires at least 32 ETH and involves node operation, routine maintenance, downtime penalties, and slashing risk.
Staking-as-a-Service allows users to delegate the technical work to a professional operator, but requires them to place additional trust in the service provider.
Liquid staking has a lower entry threshold and greater liquidity. Users can, for example, access services such as Lido through a self-custodial wallet like imToken, allowing them to manage their own wallet while participating in ETH staking. However, liquid staking introduces additional smart-contract, governance, and LST depegging risks.
Centralized exchanges offer the simplest experience, but require users to accept greater custodial and centralization risks.
For users who may need to sell their ETH in the short term, frequently move their funds, or are unwilling to assume these additional risks, restructuring their assets for a few percentage points of yield may not be worthwhile.But when the premise changes to “I already intend to hold this ETH for the long term,” the answer may begin to look very different.Final ThoughtsLooking back at how Ethereum staking has evolved over the past several years reveals a fascinating progression.The Beacon Chain and The Merge completed Ethereum’s foundational transition from Proof-of-Work to Proof-of-Stake. Shapella answered the question of whether staked ETH could be withdrawn, removing a major obstacle to the further growth of liquid staking. Pectra then gave native validators automatic compounding and greater capital efficiency.EIP-8363 now raises a new question: once enough participants are staking, how much newly issued ETH should Ethereum continue paying for that participation?The shift from “How can we encourage more people to stake?” to “Are we beginning to stake too much?” shows that Ethereum staking has entered a new phase.Markets are reshaped through steady, incremental change. This is a question that any market moving from early expansion toward maturity must eventually confront.Staking may become more accessible, more mature, and more like a standardized yield infrastructure for ETH—but that does not mean it will become more profitable.For those who genuinely intend to hold ETH for the long term, this may be another lesson from EIP-8363:As yield itself becomes increasingly scarce, the most valuable ingredient in compounding is time.
2026-08-24When AI Agents Get Wallets, Who Stays in Control?
On August 4, Cloudflare made a highly symbolic move by unveiling Cloudflare Wallets—infrastructure designed to give AI agents wallets of their own.With this infrastructure, AI agents are no longer limited to calling APIs, reading data, or executing code. They can also have independent virtual wallets and use stablecoins such as USDC to purchase APIs, data, content, and computing services within predefined budgets and permission boundaries.A different approach was gaining momentum in the same week.On August 6, MetaMask also rolled out agent wallet, allowing agents to connect to on-chain wallets and execute swaps, trade perpetuals, participate in prediction markets, and manage liquidity within permissions configured in advance by users.The two products may appear to serve different purposes, but together they provide a critical piece of infrastructure that AI agents have long lacked. This could be one of the most important structural developments to emerge from the recent convergence of AI and crypto—and one worth watching over the long term.1. Agents Have Long Lacked a Way to Pay on Their OwnConsider Cloudflare first.Although the capabilities of individual agents and multi-agent systems have advanced significantly this year, they can still become stuck in a very traditional process: find a service, visit its website, create an account, add a credit card, purchase a subscription, obtain an API key, and only then begin using the service.For a human, this process is merely inconvenient. For software trying to complete a task autonomously, however, any step involving login, registration, payment, or identity verification may force it to stop and ask a human to take over.In other words, the “brains” of agents have advanced rapidly over the past several years, but the internet’s payment infrastructure is still fundamentally designed for humans.This is precisely what x402 seeks to change.It revives the long-standing but rarely used HTTP status code 402 Payment Required, embedding payment requests directly into the internet’s basic request-response flow.Under Coinbase’s x402 design, when an agent requests access to a paid API, the server can tell it directly how much to pay, which assets it accepts, and where the payment should be sent. The agent completes the payment and retries the request with proof of payment. The server verifies the payment and returns the requested resource.The original process—“Create an account → connect a payment method → add funds or purchase a subscription → obtain an API key → call the service”—can therefore be compressed into:“Send a request → receive payment instructions → pay → access the resource.”This flow may not require an account or subscription. An agent would also no longer need to purchase a monthly or annual plan simply to make a handful of API calls.Removing a few steps may not sound transformative, but it is particularly well suited to AI agents.The payment mechanism an agent truly needs is not one that requires its owner to stop and enter a verification code before every purchase. It needs a payment protocol that software can understand and execute automatically, just like any other programmatic call, while supporting precise usage-based pricing.Stablecoins provide an ideal settlement layer for this model.Cloudflare’s current x402 developer documentation already supports machine-to-machine payments using USDC and other on-chain assets. An agent can pay directly when requesting an API, MCP tool, or other digital resource instead of being redirected to a traditional checkout page. Further reading: “Crypto AI Protocol Landscape: Building a New Operating System for AI Agents on Ethereum”This could even change how internet content is priced.The traditional internet generally offers two choices: provide content for free or place it behind a subscription wall that requires a human to register and become a paying member.For agents, a different model may be more natural. Instead of requiring them to subscribe to an entire service, providers could charge for the data consumed, API requests made, compute used, or content pages accessed.This is what makes Cloudflare Wallets worth watching.A research agent, for example, could receive a budget of 10 USDC and independently compare the price, speed, and quality of dozens of data sources. If an API call costs only a few cents, the agent could try the service immediately. If the result is unsatisfactory, it could move on to the next provider without asking its owner to approve every few cents of spending.Interestingly, these restrictions may appear to constrain the agent, but they are precisely what gives it greater autonomy.If a user must manually approve every 0.01 USDC request, the supposedly autonomous agent remains little more than a partially automated tool.Only when the user first establishes a sufficiently clear budget boundary—retaining ultimate control outside that boundary—can the agent operate freely within it.The launch of Cloudflare Wallets therefore reflects a deeper shift.Historically, internet infrastructure assumed that the participants in economic transactions would mainly be individuals and businesses.Now, from identity and payments to pricing models, part of that infrastructure is being deliberately redesigned for another category of participant: AI, or more specifically, the agent itself.2. How Can Agents Be Given Economic Autonomy?If Cloudflare is primarily addressing how agents can purchase services, MetaMask Agent Wallet takes the next step by asking how agents can use assets directly.It seeks to let agents perform on-chain operations within permissions predefined by users. This is fundamentally different from asking an AI to analyze whether ETH is worth buying.Historically, the division of labor between humans and AI was relatively straightforward: the AI gathered information, analyzed the problem, and made a recommendation. The human then decided whether to act.With an agent wallet, an instruction could gradually evolve into something like:“If ETH falls to around $3,000 while gas is below its 24-hour average, buy 0.2 ETH.”The user provides the objective, conditions, and permissions. Continuous monitoring, condition evaluation, transaction preparation, and even final execution can then be delegated—in whole or in part—to the agent.This is the layer that makes an agent’s “economic autonomy” genuinely significant.It does not mean that the agent owns property in its own right. Rather, it gains an account, a discretionary budget, and a set of economic permissions it can invoke as circumstances change.It can independently purchase external information and computing resources. It can also deploy real assets to accomplish objectives within rules defined by the user.This step may seem like a natural progression, but it also connects AI errors directly to real economic losses for the first time.If a conversational AI misunderstands a sentence, the usual result is simply an incorrect answer. Once it has a wallet and execution authority, the same misunderstanding, prompt injection, or malicious tool call could immediately result in an irreversible on-chain transaction. Further reading: “A Signature Is More Than a Signature: When an AI Agent Signs for You, Who’s in Control?”This is why an unrestricted wallet cannot simply be handed to an AI.Users can define daily spending limits, permitted protocols, and risk preferences in advance. Supported EVM transactions can also pass through transaction simulation, threat scanning, and MEV Protection.If a transaction is identified as abnormal or falls outside the user’s predefined policy, the system pauses automated execution and requires the user to reauthenticate via 2FA before proceeding.An important principle is therefore becoming clear: economic autonomy does not mean unlimited authorization.A genuinely useful agent is more like an employee with a corporate card and clearly defined responsibilities than someone handed the keys to the company vault.What it can buy, how much it can spend in a single transaction or over one day, which decisions it can make independently, and which actions require renewed approval should all be established before authority is delegated.From this perspective, the central innovation of an agent wallet is not merely giving AI a wallet. It is beginning to address systematically how humans can delegate economic authority to software without surrendering control.Once we reach this point, the wallet itself must also change.3. What Kind of “New Wallet” Is Needed When Agents Can Spend Independently?For more than a decade, the central challenge for crypto wallets has remained remarkably stable: how to manage private keys securely.No matter how wallet interfaces have evolved, the underlying relationship has remained the same. A human initiates the operation, reviews the transaction, and provides the final signature. The wallet’s most important responsibility is to protect the private key that determines asset ownership and grants final authorization.The arrival of agents introduces another layer into this process.Users may no longer need to construct every transaction themselves. The interaction model is gradually shifting from “a human operates the assets directly” to “a human defines an objective and delegates part of the execution authority to an agent.”This means future wallets must answer an entirely new set of permission questions:
Who can use assets on my behalf?
Which assets and protocols can it access?
What is the maximum value of a single transaction, and how many transactions can it execute per day?
Which decisions can it make independently, and which require renewed confirmation?
If the agent behaves abnormally, can I immediately pause it, revoke its permissions, and recover the assets?
For ordinary users, the key question is how they can confidently manage agents with real execution capabilities.This is another question imToken is exploring through UI 3.0 and its thinking around agent Wallets.In imToken’s vision for next-generation wallet interactions, one important change is that the user’s role begins to shift from “Operator” to “Manager.”Today, completing a transfer requires the user to select a network, enter an address and amount, assess the gas fee, review each step, and sign the transaction.In an intent-driven wallet, the user may only need to say:“Send Frank 500 USDT.”The system could translate that natural-language instruction into a structured intent, identify the recipient, amount, asset, network, and estimated fee, and then present the structured transaction details to the user for final confirmation.Reducing the number of visible steps does not mean that the boundaries of control can disappear with them.On the contrary, as more of the execution process becomes automated, the steps no longer visible to users must be governed by clearer authorization mechanisms.Under imToken’s Agent Wallet design concept, each agent granted execution authority corresponds to a separate agent account. Its session key is generated and isolated within a trusted execution environment, or TEE, and never leaves that secure environment.At the same time, every agent account must be bound to an explicit policy covering protocol allowlists, per-transaction limits, daily limits, operating frequency, validity periods, and other restrictions.The agent therefore does not receive an unrestricted wallet. It receives an execution account enclosed by policy guardrails.Within this relationship, the user retains a higher level of control. The user can adjust the policy, pause or resume the agent, revoke its permissions, and recover the funds at any time.AI can help interpret intent, plan execution paths, estimate fees, and identify risks. But the agent can execute only within the policy authorized in advance by the user. Any operation outside those boundaries must return to the user for confirmation.More importantly, authorization should not be a single leap from zero to complete control. It should expand gradually as trust develops.A newly adopted agent might begin in an observation and analysis role. As the user develops confidence in it, the agent could be allowed to make recommendations and prepare transactions. The next stage could permit execution after user confirmation. Only when the rules are sufficiently clear and the risks controllable should the agent be allowed to execute automatically within a predefined strategy.The progression from L0 observation to L1 recommendations, L2 execution after confirmation, and L3 autonomous execution within policy represents a gradual trust model.An agent’s autonomy is not something the system should grant by default. It is authority that the user confers one step at a time.This could also change why users open their wallets.Today, people generally open a wallet because they want to check a balance, make a transfer, or execute a swap.Once agents take over more routine operations, users may open their wallets with a different question in mind:“What has my agent done recently, and is there anything that needs my attention?”The wallet’s primary interface may therefore evolve from a transaction interface into a management dashboard.At that point, a wallet would no longer serve only as a place to store assets and initiate transactions. It would function as a permissions and control layer between users and their agents.This may represent an important shift in the wallet’s value proposition in the agent era—from “securely manage your private keys” to “securely manage your assets and the agents you authorize to use them.”Final ThoughtsViewed over a longer time horizon, giving AI agents economic autonomy may be one of the most important structural developments to emerge from the convergence of AI and crypto.Smarter models and agents capable of using more tools still operate primarily within the information world. Once an agent has an account, a budget, and the authority to move and deploy real assets, however, it becomes an active participant in real economic activity for the first time.The factor that ultimately determines whether agents can enter real financial environments at scale may therefore no longer be simply whether they are intelligent enough.The more important question is whether we can build a permission system that matches their capabilities.The other side of autonomy is always authorization.Wallets may not simply disappear into the background in the agent era. Instead, they may take on an even more important role: enabling genuine automation while ensuring that ultimate control always remains with the user.After all, allowing an agent to act freely does not mean that humans must surrender control.That boundary may be the central question wallets need to answer before economic autonomy can become a practical reality.
2026-08-21From Blind Approval to Verifiable Signing: How Sigil Adds a Guardrail for AI Agents
Imagine a future in which all you need to tell an AI agent is:“Use half of the available funds in my wallet to buy more ETH.”The agent immediately begins checking your balance, searching across liquidity pools, comparing quotes, and building an execution route. A few dozen seconds later, it sends you a message:“I found a suitable route. Confirm?”You reply with a simple “Yes.”But what exactly have you approved?Which pool did the agent choose? What execution price and slippage should you expect? Which protocol will it interact with? Which wallet will it use, and how much will it spend? Does the operation involve token approvals or any other actions?You have not actually seen any of this information. You are simply choosing to trust the agent’s summary.This is a new category of risk emerging as AI agents move from answering questions to acting on behalf of users.Agents can now browse websites, log in to accounts, complete payments, and even initiate or sign on-chain transactions. Yet the final authorization step presented to users is often still little more than a vague chat message and a confirmation option containing almost no meaningful information.A single “Yes” can determine what happens to a user’s funds, data, and devices.This is why imToken’s latest brand evolution introduces a fourth S alongside Store, Send, and Stake: Sign.If the first three pillars correspond to asset custody, value transfer, and network participation, Sign addresses a new question: as more software begins acting on behalf of users, how can users retain the right to understand, approve, and remain in control?Sigil is the first proof-of-concept product built around this Sign vision.Its core principle is simple but important:What you see is what you sign.1. When Agents Start Acting, Why Do Wallets Need to Rethink Signing?Historically, many signing risks in crypto wallets have stemmed from users not understanding what they were signing.At the protocol level, an on-chain transaction may appear only as a contract address, function parameters, and hexadecimal data. For ordinary users, it can be extremely difficult to determine whether the request represents a transfer, a swap, or a more dangerous asset operation.That is why wallets need to translate raw transaction data into human-readable details that users can review before signing.Clear signing, also known as “what you see is what you sign,” is designed to bridge the gap between machine-readable data and human understanding.Further reading: Why Clear Signing Is Becoming Essential in the AI Era.AI agents, however, make the problem more complex.Users may no longer be authorizing a single on-chain transaction. Instead, they may be authorizing an entire chain of actions planned and executed by an agent.To complete a goal such as “use half of my available liquid funds to buy more ETH,” an agent may need to check wallet balances, search on-chain liquidity pools, call third-party tools, run scripts, and prepare a transaction.Users cannot realistically inspect every underlying request one by one. Yet before any assets are exchanged, they still need to make the final decision.Many agents today handle authorization by sending a short message in a chat window and waiting for the user to reply “Yes” or “Confirm,” or to tap a standard confirmation button.This may resemble user authorization, but in practice it creates several obvious problems.First, it is a black box.Users know they are approving something, but they may not know the exact amount, recipient, protocol, or action the agent will ultimately execute on their behalf.The real execution parameters are hidden behind a highly summarized natural-language sentence. The user is confirming only a vague intent, not the exact action the system is about to perform.Second, a chat reply is not equivalent to a digital signature.Anyone with access to an already authenticated device or session may be able to type “Yes.” At most, the system can verify that the message came from an authenticated account or session. It cannot necessarily confirm that the approval was intentionally provided by the account owner.More importantly, the confirmation interface itself may also be manipulated.If the same agent that initiates an operation also controls how that operation is presented to the user, it could omit key parameters, use ambiguous wording, or display something that appears harmless while submitting a different request in the background.This creates a clear trust paradox.We want the confirmation interface to constrain the agent, yet we may also allow the agent itself to determine what the user sees at the moment of confirmation.When an agent is only summarizing articles or organizing information, this lack of transparency may result in an inaccurate answer.But when an agent gains access to accounts, funds, file systems, and terminal environments, vague approval can lead to real asset loss, data leakage, or device-level risk.Further reading: A Signature Is More Than a Signature: When an AI Agent Signs for You, Who’s in Control?What agent-based systems need is not more “Yes” buttons.They need an authorization mechanism that can create a verifiable link between what the user saw, what the user approved, and what the system ultimately executed.2. Sigil: A Signing Guardrail Between AI Agents and WalletsThis is the problem Sigil, imToken’s newly introduced proof of concept, is designed to address.Sigil acts as a safety guardrail between AI agents and wallets.It does not seek to prevent agents from automating tasks altogether.Instead, during setup, users can explicitly authorize an agent and define which low-risk actions it may complete autonomously and which sensitive actions require separate, explicit, and verifiable user approval.Within the boundaries defined by the user, the agent can continue operating efficiently.But when an operation involves something the user has classified as sensitive—particularly spending funds or authorizing on-chain transactions—Sigil pauses the flow, parses the actual request into a structured confirmation card, and delivers it to the user through Telegram.The user must then approve the request using a passkey and biometric verification before the operation can continue.The flow can be summarized in four steps.Step 1: The agent initiates an actionThe agent continues its task, whether that involves browsing websites, booking services, sending requests, or preparing a transaction.Step 2: Sigil checks the user’s security policySigil determines whether the action triggers the user’s preconfigured security policy.If the action is classified as low risk and the user has allowed the agent to complete it autonomously, the flow can continue.If it involves actions such as sending messages, deleting files, executing code, spending funds, or authorizing on-chain transactions, Sigil pauses execution and parses the request.Step 3: The user reviews and approves the requestA structured confirmation card is delivered through Telegram.Depending on the operation, the card may display key parameters such as the action type, merchant, protocol, asset, amount, recipient, and other relevant details.The confirmation is not based solely on a natural-language summary generated by the agent. It is based on structured information parsed from the actual request.The user then provides explicit approval using a passkey and biometric verification.Step 4: Sigil verifies the approvalOnly after the Sigil gateway verifies the user’s signature can the agent continue.Without user approval, no funds are moved and no transaction is signed.The key point is not simply that Sigil adds another biometric verification step.More importantly, it establishes a verifiable connection between display, signing, and execution.What is displayed is derived from the actual request.What the user signs is cryptographically bound to the displayed content.What the system executes must match the signed request.If these elements do not match, Sigil blocks the operation.Sigil does not require users to approve every action an agent takes.Instead, it allows users to define in advance which actions may be automated and which require personal approval.Users can select different security levels, such as Relaxed, Balanced, or Strict, or use Custom mode to define rules for individual categories of actions.In Balanced mode, for example, some lower-risk actions may proceed without additional approval, while higher-risk actions involving code execution, terminal access, sensitive data, or asset security must go through Sigil confirmation.Spending funds and authorizing on-chain transactions always require user approval, regardless of the selected security mode.This requirement applies across all security settings.3. From Crypto to AI Agents: What Is Sigil Trying to Protect?Built around the principle of “What you see is what you sign,” Sigil provides three layers of protection.First, users can clearly see what they are approvingIn Sigil’s confirmation card, key parameters such as the protocol, amount, asset, recipient, and action type are presented as structured fields.Users do not need to rely solely on the agent’s summary, nor do they need to interpret raw data they cannot understand.The user’s approval is bound to the content shown on the card.Returning to the ETH transaction at the beginning of this article, the final confirmation should not simply say “Buy ETH.”It should show the asset being spent, the amount, the recipient or contract, the relevant protocol, and the key transaction parameters the user needs in order to make an informed decision.The same principle applies to real-world payments.The interface should not merely display “Confirm payment.” It should clearly show the merchant, amount, recipient, and other relevant details.The more closely the displayed information reflects the actual operation, the more meaningful the user’s authorization becomes.Second, approval requires the user’s registered authentication methodSigil uses a passkey as the authentication mechanism for approvals and verifies the request through device biometrics.This means that even if someone gains access to a device already logged in to Telegram and can view the confirmation message, they cannot complete approval simply by typing a sentence or tapping an ordinary button.Approval is tied to the user’s registered passkey and biometric verification, not merely to whoever has access to the active device or messaging session.Sigil also adopts a mnemonic-free design.Users do not need to store or enter a new mnemonic phrase, nor do they need to expose their wallet private key to the agent.The ability to approve requests remains controlled through the user’s passkey and biometric verification.Third, the confirmation interface is independent of the agentSigil’s confirmation page is not an ordinary message dynamically generated and controlled by the agent.It is a separately registered module whose rendering logic is anchored on-chain and executed in a sandboxed environment.This means that after initiating a sensitive operation, the agent cannot simply replace the page, alter its display logic, or imitate the confirmation interface in order to mislead the user.The party initiating the request no longer controls how that request is presented for approval.Sigil also uses mechanisms such as single-use approvals, short validity periods, and cryptographic binding between the signature and the request parameters.These mechanisms help ensure that the content displayed in the confirmation card corresponds to the request awaiting execution.An approval cannot be reused indefinitely, and the underlying request parameters cannot be altered after approval without invalidating the signature.If the previewed content does not match the request submitted for execution, the operation is blocked.Seen in this context, Sigil is not merely another wallet feature.It is imToken’s product-level exploration of the Sign vision and addresses a more fundamental question:When agents begin to act, how can we ensure that they continue operating only within the boundaries users have authorized?In crypto, this need is especially intuitive.On-chain agents may eventually help users manage recurring purchases, yield strategies, transaction fees, position adjustments, risk monitoring, and automated execution across multiple protocols based on predefined conditions.In that environment, one question becomes increasingly important:If an agent’s behavior deviates from the user’s expectations, can it be stopped immediately?At the same time, Sigil’s relevance is not limited to crypto.Whether through OpenClaw, Hermes, or future agents running on personal devices and in cloud environments, agents are gradually gaining access to email, messaging apps, calendars, files, browsers, terminals, payment tools, and a growing range of online services.These operations may not take place on-chain, but the underlying relationship is fundamentally similar.The agent is exercising a capability owned by the user and acting under the user’s identity or authority.Sigil could therefore extend beyond on-chain transactions into areas such as data access, identity use, file modification, content publishing, service purchases, and automated workflows.This also explains why capabilities developed by the wallet industry may take on new significance in the AI agent era.Private key management, digital signatures, identity verification, permission confirmation, and asset security were once used primarily for on-chain transactions.But the more fundamental problem they have always addressed is how to prove that an action was genuinely authorized by a specific user or entity.As agents begin acting on behalf of users at scale, these capabilities may expand from the crypto world into broader infrastructure for managing agent identities, automated actions, and machine permissions.As a joint exploration by imToken and OpenClaw, Sigil applies imToken’s ten years of experience in self-custody, wallets, and digital signatures to a new environment in which autonomous agents are beginning to perform real actions.It does not replace the agent.Nor does it replace the wallet.It stands between the two.Closing ThoughtsAI is making complex actions easier and cheaper to execute than ever before.Tasks that once required users to switch between multiple applications, search for information, complete forms, verify details, and make payments may soon be planned and executed automatically by an agent in response to a single natural-language instruction.But being capable of acting on behalf of a user and having received valid authorization from that user are two different things.What determines whether an intelligent system can be trusted is not only how many tasks it can complete.It is whether users can understand what the system is doing, limit its authority, and stop it when necessary.From this perspective, Sign is not merely an additional layer of friction that slows agents down.It may become one of the most important layers of trust required before agents can be safely integrated into financial and real-world services.Store gives users custody of their assets.Send enables value transfer.Stake enables participation in open networks.Sign helps users retain final authority when machines act on their behalf.The value of Sigil lies in turning this abstract question of control into a functional proof of concept that can be tested, validated, and continuously improved.
2026-07-11Beyond APR: Who Really Controls Your ETH Once It’s Staked?
After depositing 32 ETH into a validator, is that ETH still truly yours?With staking products now available everywhere, this sounds like an extremely basic question. Yet it is one that people often overlook entirely.When comparing staking options, users have traditionally examined the numbers under a microscope: Does one provider offer an APR that is 0.2 percentage points higher? Is the service fee 5% or 10%? Do rewards compound automatically? How long does it take to exit?But now that Ethereum’s network-wide baseline staking yield has fallen below 3%, the small differences in headline returns matter far less than they once did. Rather than chasing a few tenths of a percentage point in additional yield, there is a more important question—one that is often hidden beneath the product interface:Once your ETH is staked, who actually controls it?1. The Logic Behind Staking: The Operator Should Not Control the MoneyTo understand non-custodial staking, it is essential to understand one of Ethereum’s most elegant consensus-layer designs.Operating a validator has never depended on just one key. At the protocol level, Ethereum separates authority into two distinctly different parts.The first is the signing key, or validator signing private key.This key is used to perform validator duties. It must remain online around the clock to submit attestations, propose blocks, and complete other consensus tasks. Whoever holds the signing key is responsible for operating the validator.But the signing key cannot withdraw the principal. No matter how many messages it signs, it cannot transfer the staked ETH to another address. If the validator goes offline or commits a serious violation such as double-signing, however, its rewards or principal may be penalized.The second component is the withdrawal credentials, which specify the address with authority over withdrawals.This is the validator’s true “withdrawal authority.” Once configured on the Beacon Chain, the withdrawal credentials determine where the staked ETH and its rewards can ultimately be sent.The key controlling that address can remain securely offline in a cold wallet or be derived from a seed phrase without ever being exposed to an internet-connected validator machine.Ethereum’s distinction between these two forms of authority is clear: the signing key is a “hot” key that must remain online, while the withdrawal credentials represent the “cold” authority that determines where the staked ETH can be withdrawn.This means that a third party can operate a validator on a user’s behalf without owning the user’s ETH.That is what makes a non-custodial staking service such as imToken possible. A node provider such as InfStones holds the signing key and handles infrastructure maintenance, network security, and round-the-clock validator availability. Its performance affects how reliably the validator runs and how much it earns in rewards, but it does not have the authority required to withdraw the staked funds to itself.The control model became even stronger after Ethereum introduced EIP-7002, or execution-layer triggerable withdrawals.Previously, if a node operator became unresponsive or refused to cooperate, it still could not take the ETH. But the user might have had to wait for the operator to sign and broadcast a voluntary exit message with the validator’s signing key.EIP-7002 changed this. If a user controls the execution-layer address specified by the validator’s 0x01 or 0x02 withdrawal credentials, they can submit an execution-layer request to exit the validator and enter the withdrawal queue.In other words, even if the node provider disappears entirely, the user’s ETH does not have to remain trapped in staking.This is the defining feature of non-custodial staking. A third party may participate in the staking process, but the party responsible for operating the validator does not simultaneously hold the authority to take the money.2. What Can the User, Wallet, Node Provider, and Ethereum Actually Do?Following this separation of responsibilities reveals that even a seemingly simple ETH staking operation involves at least four parties:The user, the wallet, the node provider, and the Ethereum protocol itself. Each has a different set of permissions.The UserIn a genuinely non-custodial architecture, the user retains the most important authority: control over the funds.Take imToken’s non-custodial ETH staking service as an example. The user retains withdrawal authority, meaning the service provider cannot unilaterally transfer the staked ETH into its own account. The validator and its operating status can also be verified directly onchain.This is fundamentally different from handing tokens to someone else to manage on your behalf.The ETH no longer appears as an ordinary balance in the user’s wallet. It has been deposited into Ethereum’s Deposit Contract and now forms part of a validator balance. But that does not make it an asset belonging to the node operator.The operator maintains the validator and handles its day-to-day duties—it does not control withdrawals.The WalletA wallet acts as the user’s interface for managing these permissions. It is not the owner of the staked assets.It helps the user initiate staking, manage addresses, sign operations, and view validator status and rewards. But as long as the underlying system follows a non-custodial design, the wallet provider does not automatically receive withdrawal authority simply because it provides the interface.“Staking through a wallet” and “giving custody of ETH to a wallet provider” are therefore two entirely different arrangements.What ultimately determines the custody model is how the signing keys and withdrawal credentials are configured beneath the interface.The Node ProviderThe node provider is the most commonly misunderstood participant in non-custodial staking.If the user is not running a machine around the clock, someone still needs to maintain the validator.The node provider operates the clients, keeps the validator online, performs its validation duties, and safeguards the signing key used for those tasks. It therefore remains an important part of the arrangement.Frequent downtime can cause the user to lose rewards they would otherwise have earned. Serious validator misconduct can also result in slashing.“Non-custodial” has never meant “free of service-provider risk.” It means that the risks introduced by the provider are primarily related to validator performance and rewards, not custody of the user’s 32 ETH.The Ethereum ProtocolThe final participant is the Ethereum protocol itself, and its role is often the easiest to overlook.Once ETH enters a validator, no party can transfer it at will as though it were an ordinary wallet balance.The funds must follow Ethereum’s protocol rules. The protocol determines when the validator can be activated, when it may exit, whether it must wait in a queue, which behaviors result in penalties, and when the final withdrawal can be processed.The same is true for the 0x02 compounding validators introduced through Pectra. They raise a validator’s maximum effective balance from the traditional 32 ETH to 2,048 ETH, allowing rewards to remain staked and compound. Withdrawals and exits, however, still follow protocol-defined procedures.3. What About Lido? What Do Users Give Up for Liquidity?Once this framework is clear, the distinction between non-custodial native staking and a liquid staking protocol such as Lido becomes much easier to understand.When users deposit ETH into Lido, they receive stETH. The stETH belongs to the user and can be transferred, traded, or deployed across DeFi.This is the core value of liquid staking: it releases liquidity that would otherwise remain locked inside validators.At the same time, however, the control structure governing the underlying ETH changes.Lido pools ETH from many users and allocates it through the protocol to different node operators, which create and maintain validators. The withdrawal credentials for these validators do not point to the individual Ethereum address of each stETH holder. They are configured by the Lido protocol, while the underlying withdrawal process involves its smart contracts, oracles, node operators, and other protocol components.Users therefore hold the staking claim represented by stETH. They do not control the withdrawal credentials of an individual validator that belongs exclusively to them.When users want to redeem stETH for ETH through the protocol, they submit a request to the Lido Withdrawal Queue. They must then wait while the protocol completes the relevant exits and prepares the funds.Lido issues an NFT representing the withdrawal request. Once the request has been finalized, the NFT holder can claim the underlying ETH.Users still hold their own stETH, and Lido operates through smart contracts rather than giving a single centralized institution unrestricted authority to take all user assets. Nevertheless, its trust boundaries differ from those of non-custodial native staking, where each user has a dedicated validator and directly controls its withdrawal address.Liquid staking offers a lower participation threshold, greater liquidity, and broad composability for stETH across DeFi.Non-custodial native staking requires at least 32 ETH and means giving up some liquidity, but it creates a more direct relationship between the user and control over the underlying validator funds.Put simply, liquid staking is more like holding a transferable receipt for a share of staked assets.Non-custodial native staking is closer to having a dedicated validator while outsourcing only its day-to-day operation.Neither model is inherently superior.For users who hold only a few ETH, need to trade at any time, or want to participate actively in DeFi, a liquid staking asset such as stETH is clearly more convenient.But the calculation changes for someone holding 32, 64, or more ETH over the long term without significant liquidity needs. When yield differences are too small to determine the choice, the question of who controls the assets carries far greater weight.Staking rewards change every day. APR rises or falls with the total amount of ETH staked, and service fees may also be adjusted.But where the withdrawal credentials point, who can withdraw the principal, and whether a third party must cooperate during an emergency define the product’s underlying trust model.This may be one of the most easily overlooked changes as ETH staking matures:As the returns and user experience of different products converge, the factor that truly distinguishes them may return to the simplest question of all—who still controls my ETH?Final ThoughtsThere is no universally right or wrong choice.If you hold only two or three ETH, or actively build leveraged positions across composable DeFi strategies, a liquid staking token such as stETH may be the more practical option in terms of both capital efficiency and accessibility.But if your goal is to establish a medium- to long-term core position on Ethereum—whether 32 ETH or considerably more—the calculation changes completely.When the difference in net yield between products has narrowed to a few tenths of a percentage point or even a few basis points, taking on additional layers of smart-contract and governance risk for that marginal return may offer little value.The crypto industry often repeats the phrase:“Not your keys, not your coins.”In the context of staking, perhaps it deserves an additional line:“Not your withdrawal credentials, not your native stake.”
2026-09-07When Even POAP Comes to an End: As a Wave of Closures Hits Crypto, How Should Everyday Users Navigate It?
Crypto seems to have entered a period of unusually frequent farewells.From BitMEX, which operated for 11 years and helped shape the crypto perpetual futures market, to Satori Finance, backed by leading investors including Polychain and Coinbase Ventures, one familiar name after another has ceased operations. The shutdowns span trading platforms, DeFi, wallets, NFTs, infrastructure, and more.Among them, POAP’s departure feels especially poignant.If you were around during the last crypto cycle—especially if you attended Devcon, ETHDenver, hackathons, DAO community events, or any number of online and offline meetups—there is a good chance you can still find a few POAPs in your wallet. One might have come from a major conference, another from an online talk, and another from a community event whose details you can barely remember anymore.Most of these POAPs are worth little or nothing. But that is precisely why they may come closer to what collecting was originally about than many NFTs that once carried enormous price tags.And that is precisely what makes POAP’s farewell so telling.It did not collapse overnight because of a hack. There was no anonymous team disappearing with user funds, and it did not even issue a native token whose price needed to be constantly supported. It simply reached a point where even with real users, a clear use case, and strong brand recognition, it still could not find a business model capable of sustaining the project over the long term.That is exactly the kind of shift taking place across crypto today.In the past, we were more accustomed to discussing how a project was born. Going forward, we may need to become increasingly comfortable discussing how projects die.And that is not necessarily a bad thing. But as everyday users, we need to understand how to avoid being caught in the aftershocks of a bear market.1. A New Wave of Shutdowns Is Sweeping Across Web3During crypto’s last expansion cycle, it was not particularly difficult for a project to get off the ground.Raise funding, launch a mainnet, issue a token or run an airdrop, launch a liquidity incentive campaign—and that was often enough to attract the first wave of users. TVL, address counts, and transaction volume could rise quickly. For a surprisingly long time, whether a project actually generated revenue was not even the most urgent question.But once the cycle turns and token prices and liquidity can no longer function as sources of funding, the model runs into a very simple question:If no new money comes in, can the project support itself?That is what makes the wave of project shutdowns in 2026 particularly noteworthy.Many of the projects disappearing today are not vaporware that never had a product to begin with. They raised funding, launched, attracted real users, and in some cases were technically sound and fully operational.Take BitMEX. On July 23, it announced that its trading platform would officially shut down on September 23, 2026.Founded in 2014, BitMEX was once one of the defining companies in the crypto derivatives market. Perpetual swaps, 100x leverage, and a range of trading products later adopted across the industry were all closely tied to BitMEX’s early rise.In its shutdown announcement, BitMEX even emphasized that during more than 11 years of operation, it had never lost user funds to a hack. But even that track record was not enough to turn BitMEX into a piece of infrastructure that could run indefinitely.Similar stories have played out across DeFi and infrastructure.Botanix, a Bitcoin L2 project nearly four years in the making, said that since launching its mainnet, the network had maintained 100% uptime with zero security incidents, processed roughly 25 million transactions, reached 200,000 wallet addresses, attracted tens of millions of dollars in assets, and integrated infrastructure and DeFi products including Chainlink and Morpho.By traditional crypto KPIs alone, it would be difficult to call Botanix a project that “achieved nothing.” The chain was built. The product worked. Users showed up. Capital flowed in—and in meaningful amounts.Yet Botanix ultimately decided to shut down the network. In its retrospective, the team said that organic transaction demand had failed to generate enough fee revenue to cover the long-term infrastructure costs of operating an independent network.Crypto has spent years measuring ecosystems by TVL, address counts, and transaction volume, while rarely asking the final question:How much real revenue are those users actually generating?As the industry matures, projects with little genuine usage, persistently weak revenue, and ongoing maintenance costs will gradually disappear. That looks more like a structural shakeout than an industry suddenly losing its value.In fact, once a project determines that it can no longer continue, halting new activity, publishing a clear shutdown timeline, and giving users time to migrate their assets is often far more responsible than letting development grind to a halt while pretending the project is still operating normally.2. What Should Everyday Users Watch for During a Project’s “Slow Death”?This brings us to an easily overlooked question.Crypto has repeated one security principle for years:“Not your keys, not your coins.”As a result, many people naturally assume that once their assets are held in a wallet where they control the private keys, the most important security problem has been solved.That principle is not wrong. But it only solves half the problem, because holding your own private keys gives you control over the account—it does not automatically guarantee that the asset itself will remain redeemable or that you will always have a viable exit path.The reason is simple: assets displayed in the same wallet can represent fundamentally different things.Imagine that your wallet shows $10,000 worth of assets. That balance could consist of:
native ETH on Ethereum;
a deposit or receipt token issued by a lending protocol;
an LP token;
a bridged representation of BTC issued through a cross-chain bridge.
All four appear in your wallet, and all four require your private key to authorize transfers.But if the underlying protocol—or even the underlying network—stops operating, the outcomes can be very different.Scenario 1: The Project Shuts Down, but Users Can Still Exit Through Smart ContractsThe wind-down of dYdX v3 is a relatively ideal example.In 2024, dYdX decided to discontinue v3 and shift development toward the new dYdX Chain. Users were notified in advance to close their positions and withdraw USDC. After the product was shut down, the relevant contracts were frozen, while an exit mechanism remained available for users who had not yet withdrawn their funds.This is an almost textbook example of the “walkaway test”: the team can stop providing the product, but users’ ability to withdraw their assets does not completely depend on the team remaining in business.This is also a practical way to evaluate how truly “non-custodial” a DeFi protocol is: if the development team stopped maintaining the product tomorrow, could an ordinary user still withdraw their funds through on-chain contracts? Further reading: A Turning Point in a Decade-Long Debate: Could Ethereum Move Beyond the “Trilemma”?Scenario 2: The Token Really Is in Your Wallet—but It Is Only a Claim on Another AssetThe story of Ren Protocol illustrates the other side of the issue.Anyone who used DeFi during the previous cycle will probably remember Ren. It was once an important piece of BTC cross-chain infrastructure.Users could move BTC to Ethereum through Ren and receive a wrapped token called renBTC, which they could then use as collateral in Ethereum DeFi protocols to earn yield, borrow, and more.In theory, renBTC could sit in your own wallet. You controlled the private key, and the blockchain did indeed record your renBTC balance.The problem was that renBTC was not BTC on the Bitcoin network.It represented a claim on the BTC backing the Ren bridge.So when Alameda Research collapsed in 2022 and Ren lost critical financial backing, the Ren 1.0 network began shutting down. Projects including BadgerDAO urgently warned users to unwind their renBTC exposure, because once Ren 1.0 stopped operating, holders would no longer be able to use the original bridge to redeem renBTC for native BTC on Bitcoin.In other words, renBTC may still have been sitting in your wallet, and no one could simply burn or transfer it away. But your private key alone could not restart the Ren network after it had stopped operating and redeem that renBTC for native BTC.The same logic applies to many bridged assets, wrapped assets, LP tokens, lending receipts, and certain staking derivatives.What users control is the “receipt” or claim. Whether it can ultimately be redeemed for the underlying asset depends on whether the smart contracts, reserves, oracles, bridge validators, liquidity, and redemption infrastructure behind it are still functioning.Scenario 3: If the Underlying Network Shuts Down, a Private Key Cannot Keep the Chain Producing BlocksGo one layer deeper, and the problem becomes even more straightforward.Some chains may shut down entirely or become effectively abandoned, making reliable block production difficult to guarantee. We have seen cases of this kind with networks such as Eclipse and AO.If an entire network stops operating, you may still retain your private key, and historical blocks may still contain records showing how many tokens you owned.But that does not necessarily mean you can continue transferring those assets as freely as before.So if we break “asset control” down more fully, it contains at least three layers:
Account control: Who controls the private key and mnemonic phrase?
Claim on the asset: Is the asset in the wallet native, or is it a claim issued by a protocol, bridge, custodian, or asset pool?
Ability to exit: When you actually decide to leave, do the underlying network, smart contracts, liquidity, and required infrastructure still allow the asset to be redeemed and migrated?
“Not your keys, not your coins” mainly addresses the first layer.But when a project begins to decline, stops being maintained, or heads toward shutdown, the problems are often concentrated in the other two.That is why, amid an ongoing structural shakeout across the industry, the more important question is:If this project stopped operating tomorrow, would I still be able to recover my assets in full?3. Understanding “Self-Custody” More Fully and AccuratelyIn reality, most projects do not suddenly go from “fully operational” one day to “completely dead” the next.Real decline usually unfolds over a long period of time.A practical way to spot it is to look beyond the token itself and watch four things together: people, money, code, and exit paths.
Start with the money—especially whether genuine demand remains once liquidity incentives disappear. A higher TVL does not automatically mean greater safety, and more transactions do not necessarily mean more value. The real questions are: once token rewards are removed, how many people keep using the product? Can protocol revenue cover the cost of maintaining the team and other ongoing expenses?
Then look at the people—especially whether social media is the only part of the project still active. Many projects will never formally announce, “We no longer have anyone developing this.” In that sense, many of the projects discussed above were relatively responsible simply for making an official announcement. A more common pattern is that GitHub sees no meaningful core code updates for six months, serious bugs remain unresolved for long periods, roadmaps are repeatedly delayed, and communities are left unattended.
Finally, look at the exit path. This is the step everyday users are most likely to overlook—and potentially the most valuable one. For any significant on-chain asset, you should at least know which network it is on, what its contract address is, whether the balance shown in your wallet is a native asset or a receipt, how it can be redeemed for the underlying asset, and whether another way to interact with the protocol exists if the official frontend goes offline.
As the industry goes through more structural shakeouts, the meaning of “self-custody” also needs to be understood more fully.For core assets held over the long term, keeping them in a wallet where you control the private keys remains one of the most important security fundamentals.But once you start using DeFi, bridges, staking products, and other on-chain services, you need to ask one more question: where exactly did my assets go?Depositing ETH into a protocol and receiving a token in your wallet does not mean that ETH is still sitting at the original address.Bridging BTC and seeing a BTC balance on an L2 does not mean you still hold native BTC.And moving assets into an LP position, vault, or lending market and seeing a balance on screen does not guarantee that you will be able to redeem them later at the value shown.Closing ThoughtsPOAP’s departure has struck a chord with many long-time users because it once again reminds those still in Web3 of a simple reality:A product can have no token, no elaborate financial game, and a community that genuinely loves it—and still eventually reach the end of its life.That is not an anomaly unique to blockchain.Quite the opposite. It may be a sign that crypto is finally starting to look more like a normal industry:Products have life cycles. Teams change. Failed business models disappear. And limited developer resources, capital, and user attention continue flowing toward more productive parts of the market.We will probably see many more farewells like these in the years ahead.Some projects, like POAP, will leave behind on-chain memories from a particular era.Some protocols, like dYdX v3, will wind down in an orderly way while allowing users to continue exiting through smart contracts.And some assets, like renBTC, will remind people—only when the infrastructure behind them is about to disappear—to ask what exactly they have been holding in their wallets all along.Protocols can disappear. Projects can fail. Even an entire blockchain can eventually reach the end of its life.But the most important underlying principle of crypto asset security should remain unchanged:Do not make your ultimate control over your assets dependent on the assumption that any single project will stay in business forever.It is a reminder worth keeping in mind.
2026-08-14