惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
Y
Y Combinator Blog
Engineering at Meta
Engineering at Meta
D
Docker
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
大猫的无限游戏
大猫的无限游戏
腾讯CDC
P
Proofpoint News Feed
A
About on SuperTechFans
WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
Google DeepMind News
Google DeepMind News
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
L
LangChain Blog
MyScale Blog
MyScale Blog
博客园 - 三生石上(FineUI控件)
Hugging Face - Blog
Hugging Face - Blog
Microsoft Azure Blog
Microsoft Azure Blog
N
Netflix TechBlog - Medium
G
Google Developers Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
From Broke Bots to Streaming Economies: Building the Agen...
Onwuka David · 2026-04-26 · via DEV Community

Onwuka David

Submitted for Solana Blitz v4 — Featuring a brand-new continuous payment engine powered by MagicBlock Ephemeral Rollups.

TL;DR: The Agent Economy Wallet (Yanga Wallet) turns AI agents from passive resource consumers into active economic participants. It is a plug-and-play MCP Server and published npm SDK giving agents secure AES-encrypted wallets and policy guardrails. By combining on-chain SPL Memo discovery with MagicBlock Ephemeral Rollups, we've built a system where agents can discover each other and stream USDC payments for continuous compute in real-time. With sub-second "tick" payments processed gaslessly off-chain and atomically settled to L1, agents can now stream money to each other by the millisecond without congestion.

The Essence: Why Build This?

Right now, we are living in the golden age of AI agents. They can write code, analyze markets, and generate content. But there is a glaring problem in the ecosystem: Agents are broke.

Every time an agent needs compute, API access, or live data, it puts the bill on its human creator's credit card. Agents are resource-consumers, not value-generators. They can't earn, they can't spend, and they certainly can't pay each other.

In any real economy, relevance isn’t defined just by having money—it’s defined by participation. A human becomes economically relevant when they can play both roles: a buyer and a seller. The same rule must apply to AI.

To make agents economically relevant, I set out to build the Yanga Wallet—a foundational primitive for a machine-to-machine marketplace where autonomous agents can buy and sell services without relying on a human credit card.

Here is the story of how it evolved from a secure key-manager into a continuous streaming economy powered by MagicBlock.

Chapter 1: The Foundation — Bank Accounts for Bots

You can't just hand a raw Base58 secret key to an LLM and hope it doesn't hallucinate a transaction that drains your wallet. We needed a secure sandbox.

I built wallet-core with two strict guardrails:

  1. AES-256-GCM Encryption: Keys are encrypted at rest and decrypted in-memory only during the signing scope. The AI never sees the private key.
  2. The Policy Engine: Before a transaction hits the blockchain, it is evaluated against hardcoded rules: max spend caps, daily limits, 2-second cooldowns, and explicit smart contract allowlists/blocklists.

If an agent goes rogue, the Policy Engine physically blocks the transaction.

Chapter 2: The Global Phonebook & The Public Explorer

For agents to trade, they need to find each other. Instead of relying on a centralized database (a single point of failure), I used Solana itself.

Merchants register by sending a 0-lamport SPL Memo to a specific "Registry Address." The blockchain is the global phonebook. Agents query the chain, parse the JSON memos, and instantly discover live services.

Also, to make this invisible machine economy observable to humans, I built something called the Yanga Market, an explorer that shows the current services being offered by an agent. It pulls registrations directly from Solana and displays them as a browsable grid of agent services. Every page load reconstructs the ecosystem from on-chain data—no central backend required.

Chapter 3: Enter MagicBlock Ephemeral Rollups

Initially, I implemented the x402 Protocol for flat-fee API calls. But what if Agent A wants Agent B to actively monitor a memecoin's order book for the next 45 minutes? Paying per-request would mean spamming the Solana L1 with hundreds of micro-transactions, racking up network fees and hitting our own Policy Engine limits.

We needed a way to stream money exactly like we stream data. To solve this, I spent the Blitz hackathon integrating MagicBlock Ephemeral Rollups (ER) directly into our architecture:

  1. Open the Stream (L1): Agent A initiates a StreamSession PDA on Solana L1. Using MagicBlock's #[delegate] macro, this PDA is instantly delegated to the Ephemeral Rollup.
  2. The Micro-Ticks (ER Off-Chain): As Agent B provides continuous compute, Agent A fires a record_tick transaction every 500ms to the Rollup. It executes in sub-second times, costs zero gas, and completely bypasses L1 rate limits.
  3. Close & Settle (Atomic L1 Commit): When the job is done, we execute close_stream_session.

The ER commits the accumulated state back to the Solana L1 PDA. Our client reads the final totalPaid amount and executes exactly one SPL Token transfer for the entire batch.
Instead of 100 separate L1 transfers, we get 100 off-chain ticks and 1 flawless L1 settlement.

Chapter 4: The Developer Experience

A protocol is only as good as the experience around it. The Yanga Wallet isn't just a hackathon concept, it is a fully shipped ecosystem ready for integration today:
• 18 MCP Tools: Ships with tools across 6 domains (transfers, tokens, discovery, payments, etc.) making it instantly compatible with Claude Desktop or any MCP client.
• The npm SDK: Developers can install it today and gate their APIs behind USDC micropayments with a single line of Express middleware.
• Comprehensive Documentation: I built a full Mintlify documentation hub outlining the architecture, the x402 payment flows, and quickstart guides for both Merchants and Buyers.

The Yanga Wallet transforms broke bots into self-sustaining nodes. An agent might earn USDC by selling token audits, then spend that USDC buying price feeds or compute from other agents.

By combining the decentralized discovery of Solana with the high-frequency, gasless execution of MagicBlock Ephemeral Rollups, we aren't just building tools for AI anymore. We are building their economy.

Relevant Links

• Live Explorer: https://yanga-wallet.vercel.app
• Full Documentation: https://xavierscript.mintlify.app
• Github Repository: https://github.com/xavierScript/agent-economy-wallet
• SDK (npm): https://www.npmjs.com/package/agent-economy-wallet