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

推荐订阅源

博客园 - 叶小钗
爱范儿
爱范儿
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
博客园 - 聂微东
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
T
Tailwind CSS Blog
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The Cloudflare Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
宝玉的分享
宝玉的分享
罗磊的独立博客
Jina AI
Jina AI

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
TypeScript SDK Deep Dive: 40+ Methods for AI Agent Wallet...
Wallet Guy · 2026-04-30 · via DEV Community

Your Claude agent can browse the web, write code, and manage files. But can it swap tokens, check DeFi positions, or pay for its own API calls? WAIaaS TypeScript SDK gives AI agents everything they need for blockchain interactions through 40+ wallet control methods.

Why AI Agents Need Wallet SDKs

Most AI agents today can read from the blockchain but can't write to it. They can fetch token prices but can't execute trades. They can analyze DeFi protocols but can't manage positions. Without wallet functionality, agents remain observers rather than participants in the crypto economy.

The challenge isn't just technical — it's also about security. AI agents need the ability to transact, but with proper guardrails to prevent catastrophic mistakes. They need session-based authentication that can be revoked, spending limits that prevent ruination, and policy engines that encode human judgment.

WAIaaS TypeScript SDK: Full Wallet Control

The WAIaaS TypeScript SDK provides 40+ methods that transform AI agents from blockchain observers into active participants. Unlike simple RPC wrappers, it provides session authentication, built-in error handling, and integration with WAIaaS's policy engine.

Installation and Setup

npm install @waiaas/sdk

Enter fullscreen mode Exit fullscreen mode

import { WAIaaSClient } from '@waiaas/sdk';

const client = new WAIaaSClient({
  baseUrl: 'http://127.0.0.1:3100',
  sessionToken: process.env.WAIAAS_SESSION_TOKEN,
});

Enter fullscreen mode Exit fullscreen mode

The SDK requires a session token that you create once through the CLI or admin interface. Sessions can have TTLs, renewal limits, and absolute lifetimes — giving you precise control over how long agents can operate autonomously.

Core Wallet Methods

Every AI agent needs to know where it stands financially. The SDK provides comprehensive wallet introspection:

// Get native token balance
const balance = await client.getBalance();
console.log(`${balance.balance} ${balance.symbol}`);

// Get all token balances
const assets = await client.getAssets();
assets.forEach(asset => {
  console.log(`${asset.balance} ${asset.symbol} (${asset.usdValue} USD)`);
});

// Get wallet address
const address = await client.getAddress();
console.log(`Wallet: ${address}`);

Enter fullscreen mode Exit fullscreen mode

These methods work across all 18 networks supported by WAIaaS, from Ethereum mainnet to Solana devnet.

Transaction Methods

The SDK handles 7 transaction types through a unified interface:

// Simple transfer
const tx = await client.sendToken({
  to: 'recipient-address',
  amount: '0.1',
});

// Token transfer with specific mint
const tokenTx = await client.sendToken({
  type: 'TokenTransfer',
  to: 'recipient-address',
  amount: '100',
  token: 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v', // USDC
});

// Contract interaction
const contractTx = await client.executeTransaction({
  type: 'ContractCall',
  to: 'contract-address',
  data: '0x...',
  value: '0',
});

Enter fullscreen mode Exit fullscreen mode

The SDK automatically handles chain-specific details like gas estimation on EVM chains and priority fees on Solana.

DeFi Integration Methods

Rather than building separate integrations for each protocol, the SDK provides a unified DeFi interface across 15 protocol providers:

// Get all DeFi positions
const positions = await client.getDeFiPositions();
positions.forEach(position => {
  console.log(`${position.protocol}: ${position.type} - ${position.value} USD`);
});

// Execute DeFi action (Jupiter swap example)
const swapResult = await client.executeAction('jupiter-swap', 'swap', {
  inputMint: 'So11111111111111111111111111111111111111112', // SOL
  outputMint: 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v', // USDC
  amount: '1000000000', // 1 SOL
});

Enter fullscreen mode Exit fullscreen mode

This works across protocols like Jupiter, Uniswap, Aave, Lido, and 11 others. The agent doesn't need to understand protocol-specific APIs.

Advanced Methods

The SDK includes specialized methods for complex use cases:

// Dry-run transactions before execution
const simulation = await client.simulateTransaction({
  type: 'Transfer',
  to: 'recipient',
  amount: '1.0',
  dryRun: true,
});

// Sign arbitrary messages
const signature = await client.signMessage('Hello, blockchain!');

// x402 HTTP payments — agent pays for API calls automatically
const response = await client.x402Fetch('https://api.example.com/premium-endpoint');

Enter fullscreen mode Exit fullscreen mode

The x402 method is particularly powerful — it lets agents pay for premium APIs automatically when they encounter HTTP 402 (Payment Required) responses.

Error Handling

The SDK provides structured error handling with specific error codes:

import { WAIaaSClient, WAIaaSError } from '@waiaas/sdk';

try {
  const tx = await client.sendToken({ to: '...', amount: '1000.0' });
} catch (error) {
  if (error instanceof WAIaaSError) {
    switch (error.code) {
      case 'INSUFFICIENT_BALANCE':
        console.log('Not enough funds');
        break;
      case 'POLICY_DENIED':
        console.log('Blocked by spending limit');
        break;
      case 'TOKEN_EXPIRED':
        console.log('Session expired, need to refresh');
        break;
    }
  }
}

Enter fullscreen mode Exit fullscreen mode

This allows agents to make intelligent decisions when transactions fail — like trying smaller amounts when hitting spending limits.

Transaction Lifecycle Management

Unlike simple send-and-forget APIs, the SDK helps agents manage the complete transaction lifecycle:

// Submit transaction
const result = await client.sendToken({
  to: 'recipient-address',
  amount: '0.1',
});

// Poll for confirmation
const POLL_TIMEOUT_MS = 60_000;
const startTime = Date.now();

while (Date.now() - startTime < POLL_TIMEOUT_MS) {
  const tx = await client.getTransaction(result.id);

  if (tx.status === 'COMPLETED') {
    console.log(`Confirmed! Hash: ${tx.txHash}`);
    break;
  }

  if (tx.status === 'FAILED') {
    console.error(`Failed: ${tx.error}`);
    break;
  }

  // Still pending, wait and retry
  await new Promise(resolve => setTimeout(resolve, 2000));
}

Enter fullscreen mode Exit fullscreen mode

This pattern is essential for agents that need to know when transactions actually settle before proceeding.

Integration with Policy Engine

The SDK automatically enforces the 21 policy types configured in WAIaaS. When an agent attempts a transaction that violates policy, the SDK returns structured information about why it was blocked:

try {
  await client.sendToken({ to: 'unknown-address', amount: '100' });
} catch (error) {
  if (error.code === 'POLICY_DENIED') {
    // Could be SPENDING_LIMIT, WHITELIST, ALLOWED_TOKENS, etc.
    console.log(`Blocked by policy: ${error.message}`);
  }
}

Enter fullscreen mode Exit fullscreen mode

This allows agents to adapt their behavior based on policy constraints rather than blindly retrying failed transactions.

Real Agent Example

Here's how an AI trading agent might use multiple SDK methods together:

async function tradingAgent() {
  // 1. Check current positions
  const balance = await client.getBalance();
  const positions = await client.getDeFiPositions();

  console.log(`Current balance: ${balance.balance} ${balance.symbol}`);
  console.log(`Active DeFi positions: ${positions.length}`);

  // 2. Decide if we should trade (agent logic here)
  if (shouldSwapToUSDC(balance, positions)) {
    try {
      // 3. Execute swap with dry-run first
      const simulation = await client.executeAction('jupiter-swap', 'swap', {
        inputMint: 'So11111111111111111111111111111111111111112',
        outputMint: 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v',
        amount: (parseFloat(balance.balance) * 0.1).toString(),
        dryRun: true,
      });

      if (simulation.success) {
        // 4. Execute for real
        const swap = await client.executeAction('jupiter-swap', 'swap', {
          inputMint: 'So11111111111111111111111111111111111111112',
          outputMint: 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v',
          amount: (parseFloat(balance.balance) * 0.1).toString(),
        });

        console.log(`Swap initiated: ${swap.id}`);
      }
    } catch (error) {
      console.error(`Trading failed: ${error.message}`);
    }
  }
}

Enter fullscreen mode Exit fullscreen mode

Quick Start: Add Wallet to Your Agent

Step 1: Install and start WAIaaS

npm install -g @waiaas/cli
waiaas init && waiaas start
waiaas quickset --mode mainnet

Enter fullscreen mode Exit fullscreen mode

Step 2: Install SDK in your agent project

npm install @waiaas/sdk

Enter fullscreen mode Exit fullscreen mode

Step 3: Add wallet functionality

import { WAIaaSClient } from '@waiaas/sdk';

const wallet = new WAIaaSClient({
  baseUrl: 'http://127.0.0.1:3100',
  sessionToken: process.env.WAIAAS_SESSION_TOKEN,
});

// Your agent can now check balances, send tokens, interact with DeFi

Enter fullscreen mode Exit fullscreen mode

Step 4: Set spending policies

waiaas policy add --type SPENDING_LIMIT --instant 10 --notify 100 --delay 1000

Enter fullscreen mode Exit fullscreen mode

Step 5: Test with a simple balance check

const balance = await wallet.getBalance();
console.log(`Agent wallet: ${balance.balance} ${balance.symbol}`);

Enter fullscreen mode Exit fullscreen mode

Ready to give your AI agents the financial tools they need? Check out the GitHub repository for the complete codebase or visit waiaas.ai to get started. Your agents are about to become a lot more capable.