agentwallet-sdk 4.0.4 → 4.0.5

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.
Files changed (2) hide show
  1. package/README.md +18 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # agentwallet-sdk
2
2
 
3
+ **The only non-custodial agent wallet SDK. Unlike Coinbase Agentic Wallets — your keys, your agent.**
4
+
3
5
  Non-custodial agent wallet SDK. Your agent holds its own keys — no custodian, no KYC, no freeze risk.
4
6
 
5
7
  [![npm](https://img.shields.io/npm/v/agentwallet-sdk?style=flat-square)](https://www.npmjs.com/package/agentwallet-sdk)
@@ -196,6 +198,22 @@ await agentExecute(wallet, { to: '0xSOME_SERVICE', value: 10_000000000000000n })
196
198
  | Staking | `agentwallet-sdk/staking` | Agent-only AAVE USDC yield pool |
197
199
  | Verify | `agentwallet-sdk/verify` | Trust bundle — DID + staking + reputation |
198
200
 
201
+ ## vs. MoonPay Agents
202
+
203
+ MoonPay entered the agent wallet space with a managed offering. Here's why builders choose `agentwallet-sdk` instead:
204
+
205
+ | | agentwallet-sdk | MoonPay Agents |
206
+ |---|---|---|
207
+ | **Open source** | ✅ MIT licensed | ❌ Closed enterprise product |
208
+ | **x402-native** | ✅ Built-in (v2.0.1+) | ❌ No x402 support |
209
+ | **Key custody** | Agent holds own keys | MoonPay managed |
210
+ | **KYC required** | ❌ None | ✅ KYC-gated |
211
+ | **Vendor lock-in** | ❌ On-chain, permissionless | ✅ Platform-dependent |
212
+ | **Cross-chain** | 17 chains via CCTP V2 | Limited |
213
+ | **DID / identity** | ✅ W3C did:key standard | ❌ No |
214
+
215
+ The difference isn't just technical. MoonPay Agents is a closed enterprise product — your agent's payment capability depends on MoonPay's platform staying available, compliant, and willing to serve you. `agentwallet-sdk` is open-source, x402-native, and permissionless. Your agent pays because it has keys, not because a vendor approved the transaction.
216
+
199
217
  ## Resources
200
218
 
201
219
  - [npm package](https://www.npmjs.com/package/agentwallet-sdk)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentwallet-sdk",
3
- "version": "4.0.4",
3
+ "version": "4.0.5",
4
4
  "description": "Non-custodial AI agent wallet SDK. x402 payments, 17-chain CCTP bridging, ERC-6551 identity, SpendingPolicy guardrails, agent DID, staking, trust verification. The agent holds the keys.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",