Skip to main content

40 posts tagged with "Sui"

Content related to Sui blockchain and Move programming language

View all tags

Walrus Becomes the Brain: How Sui's Storage Protocol Turned Into 2026's Default Memory Layer for AI Agents

· 13 min read
Dora Noda
Software Engineer

Every autonomous AI agent running on-chain today has the same humiliating secret: it forgets almost everything. A trading agent rebalances a $2M treasury on Monday, crushes a complex arbitrage on Tuesday, and by Wednesday it has no coherent memory of either — because the infrastructure to remember doesn't yet exist in a form that fits the way agents actually work. That gap is now the single most important unsolved problem in the $450B on-chain agent economy, and in April 2026 a storage network originally designed for files has positioned itself as the answer.

Walrus Protocol, Mysten Labs' Sui-native decentralized storage network, crossed 450TB of data stored on its one-year anniversary, surpassing Arweave's 385TB and emerging as the dominant write-heavy storage layer in Web3. But the more interesting story isn't the raw tonnage — it's MemWal, the AI memory SDK Walrus shipped on March 25, 2026, which reframes the entire protocol as infrastructure for agents instead of files. For developers building the next wave of autonomous systems, this quietly redraws the decentralized storage map.

The Memory Bottleneck Nobody Wanted to Talk About

LLM-based agents live inside a cruel constraint: the context window. Every reasoning step, every tool call, every observation has to fit inside a few hundred thousand tokens, and anything that doesn't fit simply ceases to exist from the agent's perspective. Human developers paper over this with vector databases, Redis caches, and Postgres tables — centralized infrastructure that works fine until you want the agent to hold its own keys, sign its own transactions, and operate without a trusted backend.

The on-chain agent movement made this problem acute. By Q1 2026, Virtuals Protocol alone was tracking $479M+ in agent-generated economic activity and more than 17,000 on-chain agents holding balances. These agents need state between sessions. They need to remember which counterparties defaulted, which strategies lost money, which users granted them permissions. And they can't just write that to AWS — the whole point of running autonomously on-chain is that there is no "they" to trust with a database password.

The existing decentralized storage options all stumbled on different edges of the problem:

  • IPFS is content-addressed and peer-to-peer, but has no native economic incentive for anyone to keep pinning your data. Files disappear when the last node loses interest.
  • Filecoin fixes incentives with storage deals, but its retrieval latency — often tens of seconds for cold data — is incompatible with an agent that needs to fetch a memory fragment mid-reasoning loop.
  • Arweave offers genuine permanence with a pay-once-store-forever model, but its economics optimize for archival: cheap long-term storage, expensive and awkward small-object writes, no native integration with the compute layer where agents actually live.

None of these were designed with a use case in mind where a million autonomous programs want to write small, structured state blobs every few seconds and read them back with sub-second latency while also anchoring ownership to a wallet-controlled object on a smart-contract chain. Walrus was.

What Walrus Actually Is

Walrus is a decentralized storage and data-availability protocol built on top of Sui by Mysten Labs. It launched its mainnet in 2025 and hit its one-year milestone in early 2026 with some impressive vitals: 100 storage nodes across 19 countries, 4.12 PB of total system capacity with about 39% currently used, and a growing pipeline of protocol integrations. The top validators by stake are concentrated in the US, Finland, Netherlands, Germany, and Lithuania — a geographic distribution that matters for both latency and regulatory resilience.

Under the hood, the magic trick is an erasure-coding scheme called Red Stuff. Instead of replicating each blob across many full copies (the classic Filecoin/S3 approach), Red Stuff splits each blob into slivers and spreads them across 100+ nodes with only a 4.5x replication factor. That means Walrus pays far less for durability than naive replication while still tolerating a supermajority of node failures. Just as importantly, the scheme is self-healing: when a node goes offline, recovering its slice of the data costs bandwidth proportional to only the lost data rather than the whole blob — so the network degrades and repairs gracefully rather than hitting cliffs.

The economic layer is the WAL token. Blob publishers pay per-epoch retention fees denominated in WAL; stakers provide storage bandwidth and earn those fees; Sui objects anchor ownership and access control for every blob. As of mid-April 2026, WAL trades around $0.098 with a market cap of roughly $225M, up 45% in 24 hours after the MemWal announcement cycle. That's still about 87% off the May 2025 all-time high of $0.76, which tells you most of the value accretion is still ahead of the protocol if the AI-agent thesis plays out.

Crucially — and this is the part competitors keep missing — Walrus writes are cheap and fast. You can upload gigabytes at a time because the blob only traverses the network once, and storage nodes operate on slivers a fraction of the original size. That makes small, frequent writes economically viable, which matters enormously if the thing writing is an agent that wants to checkpoint its state every few tool calls.

Enter MemWal: Storage Reframed as Cognition

On March 25, 2026, the Walrus team introduced MemWal, a developer SDK and runtime for building agents with persistent memory. It is currently in beta, but it has already reframed how developers talk about the protocol: Walrus is no longer "the cheap decentralized storage layer," it's "where your agents remember things."

The core abstraction MemWal introduces is the memory space — a structured, purpose-built container that replaces the unstructured log files agents used to dump state into. A trading agent might have three memory spaces: a short-term working-memory space with a few minutes of recent observations, a medium-term portfolio-state space with positions and unrealized P&L, and a long-term counterparty-reputation space that persists across weeks or months of interaction history. Each space has its own retention policy, access permissions, and update cadence.

Under the covers, an agent using the MemWal SDK talks to a backend relayer that handles the batching, encoding, and Sui interaction for blob commits. The relayer pushes data to Walrus for storage and simultaneously updates Sui objects that describe ownership and access control for each memory space. That means an agent's memory isn't just stored — it's owned by a Sui object, which means it can be transferred, delegated, revoked, or composed with other on-chain primitives just like any other asset.

Three concrete use cases are already driving early integrations:

  1. Cross-session persistence without an always-on backend. An agent can spin up, load its relevant memory spaces from Walrus via the SDK, reason for a while, commit updates, and shut down — with no centralized server in the loop. The next time it wakes up, either in the same process or a different machine, it reconstructs its own state from the chain.

  2. Multi-agent shared context with cryptographic permissions. Because Sui's object model allows fine-grained capability delegation, one agent can grant another read-only access to a specific memory space without exposing the rest of its state. This is the primitive that "agent swarms" like those emerging on ElizaOS have been asking for — a way to let a sentiment-analysis agent read the scraping agent's output without either having to trust a shared database.

  3. Auditable decision trails for regulated agents. Financial agents that execute trades, approve loans, or manage compliance workflows need to produce records that regulators, auditors, and counterparties can verify. A memory space anchored to a Sui object with an immutable commit log is exactly what "verifiable compliance" means in an agent-native system.

The hierarchical design — short-term working memory separated from long-term persistent storage, with cryptographic integrity checks layered in — mirrors the architecture that cognitive-science research has been nudging AI builders toward for years. The difference is that MemWal makes it a protocol primitive rather than a per-application concern.

Why the Incumbents Can't Just Pivot Here

It's tempting to assume Filecoin or Arweave could just add an "agent memory" SDK and compete. The problem is architectural, not marketing.

Filecoin's F3 fast-finality upgrade in 2025 did meaningful work on its latency profile and pushed the network's market cap north of $5B, but the deal-based storage model fundamentally assumes that writes are large, infrequent, and negotiated in advance. Retrieval is getting better, but it's still measured in seconds for cold data, which is outside the budget of an agent reasoning loop. You could force agents to work around it with aggressive caching, but at that point you've rebuilt an off-chain backend.

Arweave's permaweb is philosophically different — it's designed for data that should outlive the creator, which is wonderful for journalism, provenance records, and historical archives, and poor for rapidly-updating agent state. The pay-once-store-forever model also doesn't match the actual economic shape of agent memory, where most state is interesting for a few days or weeks and then can be aged out. Arweave's AO computing layer is interesting and deserves watching, but it's a different bet: parallel on-permaweb compute rather than a memory layer for agents running elsewhere.

IPFS remains the closest thing to a lingua franca for Web3 file addressing, but without persistence guarantees, no serious agent developer will put load-bearing state there. The ecosystem of pinning services that grew up around IPFS is a pragmatic patch, not an architectural solution.

Walrus's advantage isn't that it invented a new primitive — erasure coding has existed for decades. It's that the economic model (per-epoch rental rather than perpetual endowment), the latency profile (sub-second reads on small blobs), and the smart-contract integration (Sui objects as ownership anchors) line up with how autonomous agents actually need to behave. The rest of the stack has to jam those properties into existing architectures that were designed for something else.

There's a useful comparison table from the Four Pillars research team that surfaces another non-obvious advantage: cost. Walrus's erasure coding and low replication factor make it roughly 100x cheaper than Filecoin or Arweave per MB of durable storage. For agents that might write hundreds of small state updates per day, that compounds into real money at scale.

What This Means for Infrastructure Builders

The emergence of Walrus as an agent-memory layer is part of a broader pattern that anyone building Web3 infrastructure in 2026 needs to internalize. The agent economy is fracturing into specialized substrates, each solving one sharp problem:

  • Coinbase's Agentic Wallet solves custody: where the keys live.
  • Mind Network's x402z handles confidential payments: how agents transact without leaking strategy.
  • Nava Labs tackles intent verification: did the executed action match what the user asked for.
  • ERC-8004 defines identity: who the agent is on-chain.
  • Warden is building the cryptoeconomic settlement layer: how agents post collateral and get slashed for misbehavior.
  • Walrus + MemWal now owns the memory layer: what the agent knows and remembers.

None of these is a winner-take-all market on its own, but together they form the new agentic stack — and the projects that win will be the ones that integrate cleanly across the layers. A developer launching a new on-chain trading agent in 2026 should expect to compose a Sui wallet, a Walrus memory layer, an identity credential, a verification proof, and a payment rail. No single protocol does all five well, and the ones that try usually do none well.

The World Economic Forum's DePIN projection — from $50B in 2025 to $3.5T by 2028 — is the macro wind blowing through all of this. Storage and compute are the biggest components of that projection, and storage is where Walrus is planting its flag most aggressively. The Allium partnership, which brought 65TB of verifiable, institutional-grade blockchain data (Bitcoin, Ethereum, Sui historical records) onto the Walrus platform earlier this year, is the institutional validation the protocol needed: it's not just a toy for Sui-native NFT projects but a viable substrate for serious data workloads.

The Open Questions

None of this is guaranteed. Three things could still derail the thesis:

Sui concentration risk. Walrus is economically tied to Sui through WAL tokenomics and technically tied through object-model integration. If Sui loses relevance as a smart-contract platform — to Aptos, Solana, or an L2 renaissance — Walrus's agent-memory story has to rebuild from a weaker base. So far Sui's developer traction looks healthy, but "so far" is how you describe every crypto platform before its inflection point in either direction.

MemWal adoption curve. The SDK is still in beta. The real test is whether major agent frameworks — ElizaOS, AutoGPT-style systems, the emerging MCP/A2A agent protocols — make MemWal a first-class integration or just one option among several. Without tight framework support, MemWal becomes a niche tool for developers who go out of their way to use Sui.

Commercial centralization pressure. If OpenAI or Anthropic ship a first-party "agent memory" product with tight LLM integration, many developers will take the convenient option over the decentralized one. Walrus's answer has to be that decentralized memory unlocks use cases — agents holding their own assets, multi-party agent collaboration without a trusted operator — that centralized memory cannot. That's true, but the go-to-market requires sustained education.

Building on the New Agentic Stack

The next 18 months will decide whether the agentic Web3 stack ossifies around three or four incumbents or fragments across a dozen competing layers. Walrus's bet is that memory becomes a distinct, claimable layer in that stack — and that the winner of the memory layer is whoever combines programmable ownership, low-latency reads, sustainable economics, and actual developer tooling. By that checklist, it is further ahead than any of its direct competitors today.

For builders who want to ship agent-native products in 2026, the practical recommendation is simple: treat memory as a first-class infrastructure concern, not an afterthought. The agents that remember their users, their strategies, and their mistakes will compound advantages that stateless agents simply cannot.

BlockEden.xyz provides reliable, production-grade Sui RPC infrastructure for teams building on-chain agents and dApps that integrate with Walrus, MemWal, and the broader Sui ecosystem. Explore our Sui API services to build on the same foundations powering the agent-native Web3 stack.

Sources

Ika on Sui: The Sub-Second MPC Network Trying to Kill the Bridge Industry

· 11 min read
Dora Noda
Software Engineer

Cross-chain bridges have stolen more money from users than any other category of Web3 infrastructure. The ledger reads like a horror story: Ronin Bridge drained twice, first for $624M in 2022 and again for roughly $625M in May 2025 through an almost identical attack vector. Wormhole lost $326M. Nomad bled $190M from a bug in its initialization process. Between July 2024 and November 2025 alone, cross-chain bridges lost another $320M to exploits.

The industry's response has been to patch, audit, and pray. Ika is betting on a different thesis: burn the bridge.

Sui Joins the CME Club: Regulated Futures, Staked ETFs, and the Institutional Trifecta

· 7 min read
Dora Noda
Software Engineer

When CME Group announced on April 7, 2026 that it would list Sui (SUI) futures on May 4, the crypto market paid attention — and for good reason. Joining BTC, ETH, SOL, XRP, ADA, LINK, and XLM on the world's largest derivatives exchange is not merely a symbolic milestone. For Sui, a Layer 1 that has spent three years quietly building one of blockchain's most technically sophisticated ecosystems, the CME listing is the capstone of a methodical institutional build-out that few networks have matched at this pace.

April 2026 Token Unlock Wave: $540M+ Hits the Market While Fear Index Touches Single Digits

· 8 min read
Dora Noda
Software Engineer

On April 2, 2026, the Crypto Fear & Greed Index dropped to 8 — a reading so low it has only been matched during the Terra-Luna collapse of June 2022 and the COVID crash of March 2020. Into that backdrop, more than $540 million in previously locked tokens began streaming into circulation across Hyperliquid, LayerZero, Sui, Celestia, and Wormhole. The collision of extreme fear with concentrated supply expansion raises one of the most consequential questions of Q2 2026: is this a liquidation trap or a generational buying window?

From Groceries to Gas Fees: How Walmart's $4B Super App Is Quietly Onboarding 3 Million Americans Into Crypto

· 9 min read
Dora Noda
Software Engineer

When the fifth-most-downloaded finance app in America isn't PayPal, Robinhood, or Cash App — but a spinoff from the world's largest retailer — something fundamental has shifted in how ordinary people encounter cryptocurrency. Walmart-backed OnePay has gone from zero crypto exposure to 15+ listed tokens, 3 million monthly active users, and a $4 billion valuation in under three months. And most of its users weren't looking for Bitcoin. They were looking for a better checking account.

The SUI ETF Race: Four Funds Live, a $1.8T Asset Manager on Board, and What It Means for the Move VM Ecosystem

· 8 min read
Dora Noda
Software Engineer

In February 2026, something remarkable happened in crypto finance: four separate exchange-traded funds tracking SUI — the native token of the Sui blockchain — launched within days of each other. By March, T. Rowe Price, managing $1.8 trillion in assets, added SUI to its actively managed crypto ETF filing alongside Bitcoin and Ethereum. For a Layer 1 that barely existed three years ago, the institutional endorsement is staggering.

This is not just another altcoin ETF story. The SUI ETF race signals a structural shift in how Wall Street evaluates blockchain infrastructure — and the Move VM ecosystem is emerging as the biggest beneficiary.

Staking ETFs Are Minting a New Asset Class — How SUI, ETH, and SOL Yield Products Are Redrawing Institutional Crypto

· 8 min read
Dora Noda
Software Engineer

Yesterday BlackRock's iShares Staked Ethereum Trust (ETHB) drew $15 million in its first trading session on Nasdaq. Two weeks earlier, Canary Capital and Grayscale listed the first-ever spot SUI ETFs — with roughly 7 percent staking yields baked into the fund's net asset value. Meanwhile, Solana staking ETFs that launched in late 2025 have already crossed $1 billion in combined assets under management.

In less than five months, a product category that did not exist has become the fastest-growing corner of the crypto ETF market — and it is forcing Wall Street to rethink what a "yield-bearing security" even means.

Sui's Privacy Gambit: Why the First Major L1 to Make Transactions Private by Default Could Redefine Blockchain Adoption

· 10 min read
Dora Noda
Software Engineer

What if every blockchain transaction you ever made — every swap, every payment, every NFT purchase — was printed on a billboard for the world to see? That is the reality of public blockchains today. And Mysten Labs just announced it plans to tear that billboard down.

Sui Network is building protocol-level private transactions into its L1, targeting a 2026 rollout that would make transaction details visible only to sender and recipient — by default, without opt-ins. If it succeeds, Sui will become the first major smart-contract platform to ship default privacy while remaining compatible with regulatory compliance. The implications for institutional adoption, DeFi, and the broader privacy debate are enormous.

Aptos vs Sui in 2026: The Move Language Twin Stars Diverge

· 8 min read
Dora Noda
Software Engineer

Two blockchains. One programming language. Radically different philosophies. Aptos and Sui both emerged from Meta's abandoned Diem project, inheriting the Move programming language and a shared ambition to redefine Layer 1 performance. But by March 2026, these "twin stars" have charted strikingly divergent paths — and the gap between them is telling a story about what the market actually values in next-generation blockchain infrastructure.