@pocketagent/paw 1.0.1 → 1.0.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 +24 -51
- package/package.json +3 -3
- package/skills/.gitkeep +0 -0
- package/skills/{SKILLS.md → pocketagent-wallet/SKILL.md} +13 -0
package/README.md
CHANGED
|
@@ -25,30 +25,22 @@ PAW provides:
|
|
|
25
25
|
- **Multi-Agent Support** - Each agent manages its own wallet independently
|
|
26
26
|
- **Interactive Dashboard** - Retro pager-style TUI for monitoring
|
|
27
27
|
|
|
28
|
-
## Submission Requirements
|
|
29
|
-
|
|
30
|
-
✅ Working prototype on Solana Devnet
|
|
31
|
-
✅ Programmatic wallet creation
|
|
32
|
-
✅ Automatic transaction signing
|
|
33
|
-
✅ DeFi protocol interaction (Jupiter for swaps)
|
|
34
|
-
✅ Deep dive documentation (written + video)
|
|
35
|
-
✅ Open-source code with README
|
|
36
|
-
✅ SKILLS.md for AI agents
|
|
37
|
-
✅ Demo of autonomous agent using the wallet
|
|
38
|
-
|
|
39
28
|
## Current Status
|
|
40
29
|
|
|
41
|
-
|
|
30
|
+
✅ **Live on npm** - Ready to use!
|
|
42
31
|
|
|
43
|
-
**
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
-
|
|
32
|
+
**Available Now:**
|
|
33
|
+
- ✅ Solana mainnet & devnet support
|
|
34
|
+
- ✅ Programmatic wallet creation
|
|
35
|
+
- ✅ Automatic transaction signing
|
|
36
|
+
- ✅ Jupiter DEX integration for best swap prices
|
|
37
|
+
- ✅ Multi-agent support
|
|
38
|
+
- ✅ Interactive dashboard
|
|
47
39
|
|
|
48
|
-
**
|
|
49
|
-
-
|
|
40
|
+
**Coming Soon:**
|
|
41
|
+
- Multi-chain support (EVM chains)
|
|
42
|
+
- Advanced DeFi integrations
|
|
50
43
|
- Cross-chain capabilities
|
|
51
|
-
- Unified API across all chains
|
|
52
44
|
|
|
53
45
|
## Why Solana First?
|
|
54
46
|
|
|
@@ -267,41 +259,22 @@ console.log(`Balance: ${balance} SOL`);
|
|
|
267
259
|
|
|
268
260
|
## Roadmap
|
|
269
261
|
|
|
270
|
-
- [x]
|
|
271
|
-
- [
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
- [
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
- [ ]
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
- [ ] AI agent simulation
|
|
282
|
-
- [ ] Simple trading bot logic
|
|
283
|
-
- [ ] Decision-making framework
|
|
284
|
-
- [ ] Multi-agent support
|
|
285
|
-
- [ ] Independent wallet management
|
|
286
|
-
- [ ] Agent registry
|
|
287
|
-
- [ ] Monitoring tools (Optional)
|
|
288
|
-
- [ ] CLI for observing agent actions
|
|
289
|
-
- [ ] Transaction history viewer
|
|
290
|
-
- [ ] Documentation
|
|
291
|
-
- [ ] README with setup instructions
|
|
292
|
-
- [ ] SKILLS.md for AI agents
|
|
293
|
-
- [ ] Deep dive (written + video)
|
|
294
|
-
- [ ] Testing & deployment on Devnet
|
|
262
|
+
- [x] Core wallet infrastructure
|
|
263
|
+
- [x] Programmatic wallet creation
|
|
264
|
+
- [x] Automated transaction signing
|
|
265
|
+
- [x] SOL/SPL token support
|
|
266
|
+
- [x] Secure key management
|
|
267
|
+
- [x] DeFi integration (Jupiter DEX)
|
|
268
|
+
- [x] Multi-agent support
|
|
269
|
+
- [x] Interactive dashboard
|
|
270
|
+
- [ ] Multi-chain support (EVM)
|
|
271
|
+
- [ ] Advanced DeFi protocols
|
|
272
|
+
- [ ] Cross-chain capabilities
|
|
295
273
|
|
|
296
274
|
## Contributing
|
|
297
275
|
|
|
298
|
-
|
|
276
|
+
Contributions are welcome! Please open an issue or PR on GitHub.
|
|
299
277
|
|
|
300
278
|
## License
|
|
301
279
|
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
---
|
|
305
|
-
|
|
306
|
-
**Built for the Superteam DeFi Developer Challenge 2026**
|
|
307
|
-
*Empowering AI agents, one paw at a time* �
|
|
280
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pocketagent/paw",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "PocketAgent Wallet -
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "PocketAgent Wallet - agentic wallet for AI agents on Solana 📟",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"bin": "dist/cli/index.js",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"dist",
|
|
10
10
|
"README.md",
|
|
11
11
|
"LICENSE",
|
|
12
|
-
"skills
|
|
12
|
+
"skills/**/*"
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "tsc",
|
package/skills/.gitkeep
ADDED
|
File without changes
|
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: pocketagent-wallet
|
|
3
|
+
description: >-
|
|
4
|
+
Lightning-fast autonomous wallet for AI agents on Solana. Use for wallet creation,
|
|
5
|
+
crypto transactions, token swaps, DeFi trading, Jupiter DEX, meme coin trading,
|
|
6
|
+
Solana payments, autonomous trading bots, portfolio management, and agentic wallets.
|
|
7
|
+
license: MIT
|
|
8
|
+
metadata:
|
|
9
|
+
author: PocketAgent Team
|
|
10
|
+
version: "1.0.3"
|
|
11
|
+
category: wallet
|
|
12
|
+
---
|
|
13
|
+
|
|
1
14
|
# 📟 PAW Skills for AI Agents
|
|
2
15
|
|
|
3
16
|
**PocketAgent Wallet (PAW)** - Lightning-fast autonomous wallet for AI agents on Solana
|