@hasna/wallets 0.1.8 → 0.1.9
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 +2 -2
- package/dist/cli/index.js +4440 -3233
- package/dist/db/agents.d.ts.map +1 -1
- package/dist/db/cards.d.ts +1 -0
- package/dist/db/cards.d.ts.map +1 -1
- package/dist/db/pg-migrations.d.ts.map +1 -1
- package/dist/db/providers.d.ts.map +1 -1
- package/dist/db/transactions.d.ts.map +1 -1
- package/dist/index.d.ts +10 -10
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4899 -3788
- package/dist/lib/config.d.ts.map +1 -1
- package/dist/lib/logger.d.ts.map +1 -1
- package/dist/mcp/index.d.ts +1 -2
- package/dist/mcp/index.d.ts.map +1 -1
- package/dist/mcp/index.js +11014 -9175
- package/dist/providers/index.d.ts +1 -1
- package/dist/providers/index.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +5 -9
- package/dist/mcp/http.d.ts +0 -14
- package/dist/mcp/http.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -113,7 +113,7 @@ wallets provider add agentcard --jwt YOUR_JWT --default
|
|
|
113
113
|
|
|
114
114
|
## Configuration
|
|
115
115
|
|
|
116
|
-
Config stored at `~/.wallets/config.json`:
|
|
116
|
+
Config stored at `~/.hasna/wallets/config.json`:
|
|
117
117
|
|
|
118
118
|
```json
|
|
119
119
|
{
|
|
@@ -127,7 +127,7 @@ Config stored at `~/.wallets/config.json`:
|
|
|
127
127
|
}
|
|
128
128
|
```
|
|
129
129
|
|
|
130
|
-
Database stored at `~/.wallets/wallets.db` (SQLite, WAL mode). Override with `
|
|
130
|
+
Database stored at `~/.hasna/wallets/wallets.db` (SQLite, WAL mode). Override with `HASNA_WALLETS_DB_PATH` or `WALLETS_DB_PATH`.
|
|
131
131
|
|
|
132
132
|
## Library Usage
|
|
133
133
|
|