@hasna/wallets 0.1.7 → 0.1.8
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 +19 -0
- package/dist/cli/index.js +15353 -8679
- package/dist/db/agents.d.ts +2 -2
- package/dist/db/agents.d.ts.map +1 -1
- package/dist/db/audit.d.ts +31 -0
- package/dist/db/audit.d.ts.map +1 -0
- package/dist/db/cards.d.ts +4 -2
- package/dist/db/cards.d.ts.map +1 -1
- package/dist/db/database.d.ts +2 -1
- package/dist/db/database.d.ts.map +1 -1
- package/dist/db/providers.d.ts +3 -3
- package/dist/db/providers.d.ts.map +1 -1
- package/dist/db/transactions.d.ts +2 -2
- package/dist/db/transactions.d.ts.map +1 -1
- package/dist/index.d.ts +12 -12
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4934 -216
- package/dist/lib/cache.d.ts +3 -0
- package/dist/lib/cache.d.ts.map +1 -0
- package/dist/lib/config.d.ts +12 -5
- package/dist/lib/config.d.ts.map +1 -1
- package/dist/lib/doctor.d.ts +2 -2
- package/dist/lib/doctor.d.ts.map +1 -1
- package/dist/lib/format.d.ts +11 -2
- package/dist/lib/format.d.ts.map +1 -1
- package/dist/lib/logger.d.ts +25 -0
- package/dist/lib/logger.d.ts.map +1 -0
- package/dist/mcp/http.d.ts +14 -0
- package/dist/mcp/http.d.ts.map +1 -0
- package/dist/mcp/index.d.ts +2 -1
- package/dist/mcp/index.d.ts.map +1 -1
- package/dist/mcp/index.js +1753 -695
- package/dist/providers/agentcard.d.ts +8 -1
- package/dist/providers/agentcard.d.ts.map +1 -1
- package/dist/providers/index.d.ts +6 -5
- package/dist/providers/index.d.ts.map +1 -1
- package/dist/providers/registry.d.ts +1 -1
- package/dist/providers/registry.d.ts.map +1 -1
- package/dist/types/index.d.ts +16 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +83 -73
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# open-wallets
|
|
2
2
|
|
|
3
|
+
[](https://github.com/hasna/open-wallets/actions)
|
|
4
|
+
[](https://npm.im/@hasna/wallets)
|
|
5
|
+
[](LICENSE)
|
|
6
|
+
|
|
3
7
|
Universal wallet management for AI agents. Create and manage virtual cards across multiple providers via CLI or MCP server.
|
|
4
8
|
|
|
5
9
|
## Features
|
|
@@ -17,6 +21,21 @@ Universal wallet management for AI agents. Create and manage virtual cards acros
|
|
|
17
21
|
bun install -g @hasna/wallets
|
|
18
22
|
```
|
|
19
23
|
|
|
24
|
+
## Shell Completions
|
|
25
|
+
|
|
26
|
+
Add tab completion for `wallets` CLI:
|
|
27
|
+
|
|
28
|
+
**Bash** — add to `~/.bashrc`:
|
|
29
|
+
```bash
|
|
30
|
+
source /path/to/open-wallets/completions/wallets.bash
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
**Zsh** — add to `~/.zshrc`:
|
|
34
|
+
```bash
|
|
35
|
+
fpath=(/path/to/open-wallets/completions $fpath)
|
|
36
|
+
autoload -U compinit && compinit
|
|
37
|
+
```
|
|
38
|
+
|
|
20
39
|
## Quick Start
|
|
21
40
|
|
|
22
41
|
```bash
|