agentwallet-sdk 3.5.2 → 3.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -192,6 +192,26 @@ for (const entry of history) {
|
|
|
192
192
|
| **Polygon** | ✅ | Micropayments |
|
|
193
193
|
| **Etherlink** | ✅ | x402 multichain payments |
|
|
194
194
|
|
|
195
|
+
## x402 Multi-Chain Support
|
|
196
|
+
|
|
197
|
+
> **March 2026 update:** `agentwallet-sdk` is one of the first non-custodial SDKs to support x402 across multiple chains. Base, Etherlink, and any EVM chain you deploy on.
|
|
198
|
+
|
|
199
|
+
The [x402 protocol](https://x402.org) turns HTTP 402 responses into machine payments. An agent hits an API, the server says "pay first," the SDK handles the payment, and the request retries with proof. No API keys. No OAuth. No human in the loop.
|
|
200
|
+
|
|
201
|
+
### Supported Chains
|
|
202
|
+
|
|
203
|
+
| Chain | Status | Payment Token | Notes |
|
|
204
|
+
|-------|--------|--------------|-------|
|
|
205
|
+
| **Base** | Production | USDC | Stripe integrated Feb 2026. 115M+ micropayments processed. Primary x402 chain. |
|
|
206
|
+
| **Etherlink** | Production | USDC / ERC-20 | Tez402 integration (Tezos L2). Permit2 proxy for non-custodial ERC-20 signing. Near-zero fees. |
|
|
207
|
+
| **Any EVM chain** | Configurable | Any ERC-20 | Deploy the AgentAccount contract to any EVM-compatible network. x402 client adapts automatically. |
|
|
208
|
+
|
|
209
|
+
**Base (USDC via Stripe):** Stripe's x402 integration on Base is the entry point for most developers. USDC is native to Base, gas is cheap, and Stripe's infrastructure handles merchant-side settlement. Your agent pays, Stripe settles, nobody needs to run their own payment server.
|
|
210
|
+
|
|
211
|
+
**Etherlink (Tez402):** Etherlink is a Tezos L2 EVM chain. The Tez402 project brought x402 to Etherlink in March 2026 using a Permit2 proxy -- your agent signs ERC-20 approvals locally, the proxy executes, your key stays in your environment. Unlike custodial implementations (Coinbase CDP, OKX OnchainOS), nothing is held server-side.
|
|
212
|
+
|
|
213
|
+
**Any EVM chain:** `agentwallet-sdk` is not locked to specific chains. Deploy the `AgentAccountV2` contract to any EVM-compatible network (Arbitrum, Polygon, Optimism, etc.), configure the chain in the SDK, and x402 payments work the same way. The protocol is chain-agnostic at the HTTP layer.
|
|
214
|
+
|
|
195
215
|
## x402 Protocol Support
|
|
196
216
|
|
|
197
217
|
> **March 2026:** x402 just landed on Etherlink (Tezos L2). agent-wallet-sdk explicitly supports x402 on both **Base** (primary, USDC-native) and **Etherlink** — making it one of the first non-custodial SDKs to span both x402 chains. [Submit your agent to the x402 Bazaar](https://x402.org/bazaar) to get indexed.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentwallet-sdk",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.3",
|
|
4
4
|
"description": "Non-custodial AI agent wallet SDK. x402 payments, 17-chain CCTP bridging, ERC-6551 identity, SpendingPolicy guardrails. The agent holds the keys.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -43,4 +43,4 @@
|
|
|
43
43
|
"typescript": "5.3.3",
|
|
44
44
|
"vitest": "4.0.18"
|
|
45
45
|
}
|
|
46
|
-
}
|
|
46
|
+
}
|