@agent-shield/plugin-solana-agent-kit 0.4.0 → 0.4.2
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 +8 -2
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -64,7 +64,7 @@ const protectedWallet = createShieldedWallet({
|
|
|
64
64
|
|
|
65
65
|
## Tools
|
|
66
66
|
|
|
67
|
-
The plugin registers
|
|
67
|
+
The plugin registers 5 monitoring/management tools on the agent:
|
|
68
68
|
|
|
69
69
|
| Tool | Description | Parameters |
|
|
70
70
|
|------|-------------|------------|
|
|
@@ -203,7 +203,7 @@ Agent calls swap() → SAK builds transaction → shield() intercepts signTransa
|
|
|
203
203
|
|
|
204
204
|
```bash
|
|
205
205
|
npm test
|
|
206
|
-
# Runs
|
|
206
|
+
# Runs 25 tests covering all tools, factory, config resolution, and event wiring
|
|
207
207
|
```
|
|
208
208
|
|
|
209
209
|
## Related Packages
|
|
@@ -215,6 +215,12 @@ npm test
|
|
|
215
215
|
| [`@agent-shield/plugin-elizaos`](https://www.npmjs.com/package/@agent-shield/plugin-elizaos) | ElizaOS integration |
|
|
216
216
|
| [`@agent-shield/sdk`](https://www.npmjs.com/package/@agent-shield/sdk) | On-chain vault SDK |
|
|
217
217
|
|
|
218
|
+
## Support
|
|
219
|
+
|
|
220
|
+
- X/Twitter: [@MightieMags](https://x.com/MightieMags)
|
|
221
|
+
- Telegram: [MightyMags](https://t.me/MightyMags)
|
|
222
|
+
- Issues: [GitHub Issues](https://github.com/Kaleb-Rupe/agentshield/issues)
|
|
223
|
+
|
|
218
224
|
## License
|
|
219
225
|
|
|
220
226
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-shield/plugin-solana-agent-kit",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
|
+
"author": "Kaleb Rupe (https://x.com/MightieMags)",
|
|
5
|
+
"homepage": "https://github.com/Kaleb-Rupe/agentshield#readme",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/Kaleb-Rupe/agentshield/issues",
|
|
8
|
+
"email": "https://t.me/MightyMags"
|
|
9
|
+
},
|
|
4
10
|
"description": "AgentShield plugin for Solana Agent Kit — shield() wrapper monitoring and management tools",
|
|
5
11
|
"main": "dist/index.js",
|
|
6
12
|
"types": "dist/index.d.ts",
|
|
@@ -25,7 +31,7 @@
|
|
|
25
31
|
"chai": "^4.4.1",
|
|
26
32
|
"mocha": "^10.3.0",
|
|
27
33
|
"ts-node": "^10.9.2",
|
|
28
|
-
"@agent-shield/solana": "0.3.
|
|
34
|
+
"@agent-shield/solana": "0.3.2"
|
|
29
35
|
},
|
|
30
36
|
"dependencies": {
|
|
31
37
|
"zod": "^3.22.0"
|