Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Windows Tipps & SecurityNighthawk M7 Pro im Test: Flexibler, aber teurer 5G-Router(21.09.2026 um 10:30 Uhr)
Sichere ProgrammierungNeue Gmail-Funktion: So sparst du jetzt Zeit bei Einmalcodes(21.09.2026 um 10:00 Uhr)
Sichere ProgrammierungYour GIF exporter is fine — the container is the problem(21.09.2026 um 10:01 Uhr)
Sichere ProgrammierungCSS, Motion, or GSAP? I Choose by Who Owns the Animation(21.09.2026 um 10:12 Uhr)
Windows Tipps & SecurityNighthawk M7 Pro im Test: Flexibler, aber teurer 5G-Router(21.09.2026 um 10:30 Uhr)
Sichere ProgrammierungNeue Gmail-Funktion: So sparst du jetzt Zeit bei Einmalcodes(21.09.2026 um 10:00 Uhr)
Sichere ProgrammierungYour GIF exporter is fine — the container is the problem(21.09.2026 um 10:01 Uhr)
Sichere ProgrammierungCSS, Motion, or GSAP? I Choose by Who Owns the Animation(21.09.2026 um 10:12 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Gasless AI Agents with ERC-4337 Account Abstraction

Your AI agent can analyze markets, write smart contracts, and even debug blockchain transactions. But when it comes to actually sending that trade or paying for an API call? It hits a wall. The agent can think about money, but it can't…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

Your AI agent can analyze markets, write smart contracts, and even debug blockchain transactions. But when it comes to actually sending that trade or paying for an API call? It hits a wall. The agent can think about money, but it can't touch it.



This isn't just a missing feature—it's the barrier keeping AI agents stuck in read-only mode while the most valuable blockchain interactions require signatures, gas payments, and wallet management.






Why Gasless Transactions Matter for AI Agents



Traditional blockchain transactions require ETH (or the native token) for gas fees. This creates a chicken-and-egg problem for AI agents: they need tokens to do useful things, but they need to do useful things to earn tokens. Even worse, managing gas prices, estimating fees, and handling failed transactions adds complexity that breaks the smooth AI agent experience.



ERC-4337 Account Abstraction solves this by separating transaction execution from gas payment. Your AI agent can create and sign transactions, while a separate "paymaster" covers the gas costs. The agent focuses on logic; the infrastructure handles payments.



But ERC-4337 is just a standard—you still need the actual implementation, wallet management, and integration with AI frameworks. That's where WAIaaS comes in.






Meet ERC-4337 in WAIaaS



WAIaaS includes built-in ERC-4337 Account Abstraction with smart accounts, gasless transactions, and a complete UserOp build/sign API. Your AI agents can create transactions without worrying about gas, while you maintain control through approval workflows and spending policies.



Here's how it works in practice. First, let's get WAIaaS running:




npm install -g @waiaas/cli
waiaas init # Create data directory + config.toml
waiaas start # Start daemon (sets master password on first run)
waiaas quickset --mode mainnet # Create wallets + MCP sessions in one step






Now your AI agent (through Claude MCP, for example) can build gasless transactions:




# quickset already printed the MCP config JSON -- paste it into
# ~/Library/Application Support/Claude/claude_desktop_config.json
# Or auto-register with all wallets:
waiaas mcp setup --all






The magic happens through WAIaaS's 45 MCP tools that connect directly to Claude. Your agent can now call build-userop to create ERC-4337 UserOperations, sign-userop to authorize them, and execute complex DeFi strategies without your agent ever holding ETH for gas.






Beyond Basic Gasless: Smart Account Features



WAIaaS's ERC-4337 implementation goes deeper than just eliminating gas payments. Smart accounts enable features impossible with traditional EOAs (Externally Owned Accounts):



Batch Operations: Your AI agent can bundle multiple transactions—like approving a token and swapping it—into a single UserOperation. Instead of three separate transactions (approve, swap, claim), the agent executes everything atomically.



Custom Validation Logic: Smart accounts can implement spending rules, time delays, or multi-signature requirements directly in the account contract. Your AI agent operates within guardrails you define, not just session-based permissions.



Social Recovery: If private keys are compromised, smart accounts can implement recovery mechanisms through trusted guardians or time-locked procedures.



The 7-stage transaction pipeline handles this complexity automatically: validation → authentication → policy checking → conditional waits → execution → confirmation → monitoring.






Real-World Use Cases



DeFi Portfolio Management: Your AI agent monitors 14 DeFi protocols integrated into WAIaaS (Aave, Jupiter, Hyperliquid, Lido, and others). When opportunities arise—like arbitrage between DEXes or liquidation protection—the agent executes multi-step strategies through gasless UserOps.



Cross-Chain Operations: The agent can bridge assets using LI.FI or Across protocols, stake on multiple chains via Lido (EVM) and Jito (Solana), and manage positions across ecosystems—all without holding native tokens on each chain for gas.



Automated Payments: Through x402 HTTP payment protocol support, your agent pays for API calls automatically. The agent accesses premium data feeds, AI services, or computational resources by spending from its smart account balance.



NFT Operations: With NFT support for EVM (ERC-721/ERC-1155) and Solana (Metaplex), agents can participate in NFT markets, manage collections, or execute metadata-based strategies—again, without gas management headaches.






Integration with AI Frameworks



WAIaaS connects to existing AI agent frameworks through multiple interfaces:



Model Context Protocol (MCP): Direct integration with Claude through 45 specialized tools. Your Claude conversations can trigger blockchain transactions, check balances, and manage DeFi positions naturally.



OpenClaw Plugin: For external AI agent frameworks, the OpenClaw plugin provides 17 sessionAuth tools that work with LangChain, CrewAI, AutoGPT, and custom implementations.



SDKs: TypeScript SDK (@waiaas/sdk) and Python SDK for programmatic access from any AI agent architecture.



The key insight: WAIaaS doesn't replace your AI framework—it augments it with blockchain capabilities while maintaining the security and control you need.






Security Without Friction



Account Abstraction in WAIaaS maintains security through a 3-layer approach: session authentication → time delays + approvals → monitoring + kill switches. Your AI agent operates with limited, revocable permissions while you retain ultimate control.



The system uses 3 auth methods: masterAuth (Argon2id) for admin access, ownerAuth (Sign-In With Ethereum/Solana) for user approval, and sessionAuth (JWT HS256) for AI agent operations. Each session has configurable TTL, maximum renewals, and absolute lifetime limits.



Policy engine operates on default-deny: transactions are blocked unless explicitly allowed through ALLOWED_TOKENS and CONTRACT_WHITELIST configurations. Your agent can't accidentally interact with malicious contracts or drain funds beyond predetermined limits.



WalletConnect integration enables owner approval for sensitive transactions. When your agent attempts high-value operations, you receive push notifications and can approve/deny through your mobile wallet.






Getting Started with Gasless AI Agents



Ready to give your AI agents blockchain superpowers? Here's the fastest path:





  1. Install and Initialize: Run the installation commands above to get WAIaaS running locally


  2. Configure MCP: Add the MCP configuration to Claude Desktop to enable blockchain tools


  3. Add Skills: Install pre-built agent behaviors with the skills command


  4. Test Gasless Operations: Start with simple token transfers or balance checks through Claude


  5. Scale Up: Move to complex DeFi strategies, cross-chain operations, or automated payments



For production deployment, WAIaaS offers Docker images (waiaas/daemon and waiaas/push-relay), comprehensive testing with 611+ test files, and enterprise-ready monitoring through the Admin Web UI.



The 14-package monorepo architecture means you can customize everything—from the 7-stage transaction pipeline to the specific DeFi protocols your agents can access.






What's Next



Start with the basic MCP integration to see your AI agents managing blockchain transactions through natural conversation. Then explore the full 39 REST API endpoints for custom integrations, or dive into specific protocols like Hyperliquid perpetual futures or Polymarket prediction markets.



Check out the complete implementation on GitHub or visit waiaas.ai for detailed documentation and deployment guides.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Gasless AI Agents with ERC-4337 Account Abstraction

Thematisch verwandte Begriffe: Gasless, Agents, with, ERC4337 · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-94030 | A security vulnerability has been detected in SerenityOS up to 3d83e4509…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick