@hasna/domains 0.0.21 → 0.0.23
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 +53 -145
- package/dist/cli/commands/config.d.ts.map +1 -1
- package/dist/cli/commands/domain.d.ts.map +1 -1
- package/dist/cli/commands/provider.d.ts.map +1 -1
- package/dist/cli/commands/providers.d.ts.map +1 -1
- package/dist/cli/commands/wallet.d.ts +2 -2
- package/dist/cli/commands/wallet.d.ts.map +1 -1
- package/dist/cli/index.js +543 -6300
- package/dist/db/database.d.ts +1 -1
- package/dist/db/database.d.ts.map +1 -1
- package/dist/index.d.ts +1 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +94 -5659
- package/dist/lib/brandsight.d.ts +3 -2
- package/dist/lib/brandsight.d.ts.map +1 -1
- package/dist/lib/capability.d.ts.map +1 -1
- package/dist/lib/cloudflare-auth.d.ts +3 -2
- package/dist/lib/cloudflare-auth.d.ts.map +1 -1
- package/dist/lib/creds-check.d.ts +2 -1
- package/dist/lib/creds-check.d.ts.map +1 -1
- package/dist/lib/namecheap.d.ts +0 -13
- package/dist/lib/namecheap.d.ts.map +1 -1
- package/dist/lib/registrar.d.ts +2 -36
- package/dist/lib/registrar.d.ts.map +1 -1
- package/dist/lib/route53.d.ts.map +1 -1
- package/dist/lib/sedo.d.ts +0 -7
- package/dist/lib/sedo.d.ts.map +1 -1
- package/dist/mcp/index.d.ts.map +1 -1
- package/dist/mcp/index.js +14600 -18008
- package/package.json +6 -11
- package/dist/cli/commands/storage.d.ts +0 -3
- package/dist/cli/commands/storage.d.ts.map +0 -1
- package/dist/db/pg-migrations.d.ts +0 -5
- package/dist/db/pg-migrations.d.ts.map +0 -1
- package/dist/db/remote-storage.d.ts +0 -10
- package/dist/db/remote-storage.d.ts.map +0 -1
- package/dist/db/storage-sync.d.ts +0 -55
- package/dist/db/storage-sync.d.ts.map +0 -1
- package/dist/lib/env-aliases.d.ts +0 -43
- package/dist/lib/env-aliases.d.ts.map +0 -1
- package/dist/mcp/storage-tools.d.ts +0 -3
- package/dist/mcp/storage-tools.d.ts.map +0 -1
- package/dist/storage.d.ts +0 -5
- package/dist/storage.d.ts.map +0 -1
- package/dist/storage.js +0 -5703
package/README.md
CHANGED
|
@@ -1,17 +1,11 @@
|
|
|
1
1
|
# @hasna/domains
|
|
2
2
|
|
|
3
|
-
Domain portfolio
|
|
3
|
+
Domain portfolio and DNS management for AI agents — CLI + MCP server with SQLite.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
|
-
- **Domain portfolio management** — track registrar, expiry, SSL, nameservers,
|
|
8
|
-
- **Registrar sync and purchase flows** — direct Route 53 and Namecheap registration plus GoDaddy and Brandsight provider surfaces through a shared provider registry
|
|
9
|
-
- **Nameserver delegation** — Route 53 and Namecheap adapters can update registrar nameservers when the provider API supports it
|
|
10
|
-
- **Cloudflare-first DNS** — create or reuse Cloudflare zones and manage DNS records through the DNS provider layer
|
|
7
|
+
- **Domain portfolio management** — track registrar, expiry, SSL, nameservers, status
|
|
11
8
|
- **DNS record CRUD** — A, AAAA, CNAME, MX, TXT, NS, SRV records
|
|
12
|
-
- **Sedo marketplace tools** — search, portfolio/listing management, blacklist checks, and recorded Sedo purchases
|
|
13
|
-
- **AWS diagnostics** — sync Route 53 registered domains and report AWS/Beepmedia credential metadata without printing secret values
|
|
14
|
-
- **Credential diagnostics** — redacted checks for Route 53, Beepmedia AWS env aliases, Cloudflare, Namecheap, GoDaddy, Brandsight, and Sedo
|
|
15
9
|
- **Expiry alerts** — set alerts for domain expiry and SSL certificate expiry
|
|
16
10
|
- **WHOIS lookup** — query and store registrar/expiry info from WHOIS
|
|
17
11
|
- **SSL certificate check** — verify SSL issuer and expiry
|
|
@@ -20,9 +14,10 @@ Domain portfolio, registrar, marketplace, and DNS management for AI agents — C
|
|
|
20
14
|
- **Subdomain discovery** — via crt.sh certificate transparency logs
|
|
21
15
|
- **DNS validation** — detect CNAME conflicts, missing MX, and more
|
|
22
16
|
- **Portfolio export** — CSV or JSON with all domain data
|
|
17
|
+
- **Registrar sync** — Namecheap and GoDaddy integration
|
|
23
18
|
- **Brand monitoring** — typosquat/threat detection via Brandsight API
|
|
24
|
-
- **MCP server** — Model Context Protocol support for AI agents
|
|
25
|
-
- **Interactive TUI** — browse
|
|
19
|
+
- **MCP server** — full Model Context Protocol support for AI agents
|
|
20
|
+
- **Interactive TUI** — browse your portfolio in the terminal with `domains interactive`
|
|
26
21
|
|
|
27
22
|
## Installation
|
|
28
23
|
|
|
@@ -30,97 +25,36 @@ Domain portfolio, registrar, marketplace, and DNS management for AI agents — C
|
|
|
30
25
|
npm install -g @hasna/domains
|
|
31
26
|
```
|
|
32
27
|
|
|
33
|
-
Data is stored at `~/.hasna/domains/domains.db`. Override with `
|
|
34
|
-
|
|
35
|
-
## Quick Start
|
|
36
|
-
|
|
37
|
-
```bash
|
|
38
|
-
# Set defaults used by availability, buy, setup, DNS, and doctor commands
|
|
39
|
-
domains config set default-registrar route53
|
|
40
|
-
domains config set default-dns cloudflare
|
|
41
|
-
domains config set purchase-aws-profile hasna-xyz-infra
|
|
42
|
-
|
|
43
|
-
# Add registrant contact defaults used by registrar purchase APIs
|
|
44
|
-
domains config set contact.first_name Jane
|
|
45
|
-
domains config set contact.last_name Example
|
|
46
|
-
domains config set contact.email jane@example.com
|
|
47
|
-
domains config set contact.phone +1.5555555555
|
|
48
|
-
domains config set contact.address_line_1 "1 Main St"
|
|
49
|
-
domains config set contact.city "New York"
|
|
50
|
-
domains config set contact.state NY
|
|
51
|
-
domains config set contact.country_code US
|
|
52
|
-
domains config set contact.zip_code 10001
|
|
53
|
-
|
|
54
|
-
# Check local health without printing secrets
|
|
55
|
-
domains doctor
|
|
56
|
-
```
|
|
57
|
-
|
|
58
|
-
## Provider Matrix
|
|
59
|
-
|
|
60
|
-
| Provider | Type | Availability | Buy/Register | Renew | Nameservers/DNS | Notes |
|
|
61
|
-
|----------|------|--------------|--------------|-------|-----------------|-------|
|
|
62
|
-
| `route53` | registrar + DNS | yes | yes | no | nameservers + Route 53 hosted zones | Primary self-serve registration path. Use `AWS_PROFILE` or AWS keys. |
|
|
63
|
-
| `namecheap` | registrar + DNS | yes | yes | yes | nameservers + Namecheap DNS records | Requires Namecheap API access and whitelisted client IP. |
|
|
64
|
-
| `godaddy` | registrar + DNS | gated | no direct CLI purchase | gated | DNS records when API access qualifies | Retail Domains API access is account-gated; CLI surfaces credentials and capability checks. |
|
|
65
|
-
| `brandsight` | registrar | gated | no direct CLI purchase | yes when contract allows | contract-specific | GoDaddy Corporate Domains / Brandsight APIs are enterprise-contract-only. |
|
|
66
|
-
| `cloudflare` | DNS | no | no | no | DNS zones and records | Preferred DNS provider; not a registrar. |
|
|
67
|
-
| `sedo` | marketplace | marketplace search/status | recorded purchase only | no | no | Sedo is marketplace/listing/portfolio, not registrar DNS in this CLI. |
|
|
28
|
+
Data is stored at `~/.hasna/domains/domains.db`. Override with `HASNA_DOMAINS_DIR` or `DOMAINS_DIR` env var.
|
|
68
29
|
|
|
69
30
|
## CLI Usage
|
|
70
31
|
|
|
71
32
|
```bash
|
|
72
|
-
# Interactive portfolio browser
|
|
33
|
+
# Interactive portfolio browser (Ink TUI)
|
|
73
34
|
domains interactive
|
|
74
35
|
domains interactive --status active
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
domains
|
|
78
|
-
domains
|
|
79
|
-
domains
|
|
80
|
-
domains
|
|
81
|
-
domains
|
|
82
|
-
domains
|
|
83
|
-
domains
|
|
84
|
-
domains domain stats
|
|
36
|
+
```
|
|
37
|
+
domains add --name example.com --registrar Namecheap --expires-at 2025-01-01
|
|
38
|
+
domains list
|
|
39
|
+
domains list --status active --registrar Namecheap
|
|
40
|
+
domains get <id>
|
|
41
|
+
domains update <id> --notes "renewed"
|
|
42
|
+
domains delete <id>
|
|
43
|
+
domains search example
|
|
44
|
+
domains stats
|
|
85
45
|
|
|
86
46
|
# Expiry monitoring
|
|
87
|
-
domains
|
|
88
|
-
domains ssl
|
|
47
|
+
domains expiring --days 30
|
|
48
|
+
domains ssl --days 30
|
|
89
49
|
|
|
90
50
|
# WHOIS / SSL checks
|
|
91
|
-
domains
|
|
92
|
-
domains ssl
|
|
93
|
-
domains
|
|
51
|
+
domains whois example.com
|
|
52
|
+
domains ssl-check example.com
|
|
53
|
+
domains check-all
|
|
94
54
|
|
|
95
55
|
# Portfolio export
|
|
96
|
-
domains
|
|
97
|
-
domains
|
|
98
|
-
|
|
99
|
-
# Provider registry and diagnostics
|
|
100
|
-
domains providers
|
|
101
|
-
domains provider list
|
|
102
|
-
domains provider test route53
|
|
103
|
-
domains provider test cloudflare
|
|
104
|
-
domains doctor
|
|
105
|
-
|
|
106
|
-
# Registrar sync
|
|
107
|
-
domains sync --provider route53
|
|
108
|
-
domains sync --provider namecheap
|
|
109
|
-
domains sync --provider godaddy
|
|
110
|
-
domains sync --provider brandsight
|
|
111
|
-
domains sync --all
|
|
112
|
-
|
|
113
|
-
# Availability and renewals
|
|
114
|
-
domains check example.com
|
|
115
|
-
domains check --provider route53 example.com
|
|
116
|
-
domains check --provider namecheap example.com
|
|
117
|
-
domains renew example.com --provider namecheap --years 1
|
|
118
|
-
|
|
119
|
-
# Purchases and setup
|
|
120
|
-
domains domain buy example.com --provider route53 --wait
|
|
121
|
-
domains domain buy example.com --provider namecheap --wait
|
|
122
|
-
domains domain buy premium.example --registrar sedo --price 2500 --expires 2027-01-01
|
|
123
|
-
domains domain setup example.com --registrar route53 --dns cloudflare --wait
|
|
56
|
+
domains export --format csv --output portfolio.csv
|
|
57
|
+
domains export --format json
|
|
124
58
|
|
|
125
59
|
# DNS record management
|
|
126
60
|
domains dns list <domain-id>
|
|
@@ -132,17 +66,24 @@ domains dns export <domain-id>
|
|
|
132
66
|
domains dns import <domain-id> --file zone.txt
|
|
133
67
|
domains dns discover-subdomains example.com
|
|
134
68
|
domains dns validate <domain-id>
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
domains
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
domains
|
|
143
|
-
domains
|
|
144
|
-
domains
|
|
145
|
-
domains
|
|
69
|
+
|
|
70
|
+
# Alerts
|
|
71
|
+
domains alert set --domain <id> --type expiry --days-before 30
|
|
72
|
+
domains alert list <domain-id>
|
|
73
|
+
domains alert remove <alert-id>
|
|
74
|
+
|
|
75
|
+
# Registrar integration
|
|
76
|
+
domains providers
|
|
77
|
+
domains sync --provider namecheap
|
|
78
|
+
domains sync --provider godaddy
|
|
79
|
+
domains sync --all
|
|
80
|
+
domains renew example.com --provider namecheap
|
|
81
|
+
|
|
82
|
+
# Availability checks — pick the registrar with --provider
|
|
83
|
+
domains check example.com # default registrar (config default-registrar, else namecheap)
|
|
84
|
+
domains check --provider route53 example.com # AWS Route 53 availability
|
|
85
|
+
domains check --provider godaddy example.com
|
|
86
|
+
domains r53 check example.com # Route 53-specific subcommand (same backend)
|
|
146
87
|
|
|
147
88
|
# Brand monitoring
|
|
148
89
|
domains monitor mybrand
|
|
@@ -150,33 +91,12 @@ domains similar example.com
|
|
|
150
91
|
domains threats example.com
|
|
151
92
|
```
|
|
152
93
|
|
|
153
|
-
Prefer the `domains` CLI over raw
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
AWS_PROFILE=hasna domains sync --provider route53
|
|
160
|
-
AWS_PROFILE=hasna-xyz-infra domains sync --provider route53
|
|
161
|
-
|
|
162
|
-
# Check all configured providers and redacted credential status
|
|
163
|
-
domains providers --json
|
|
164
|
-
domains doctor --json
|
|
165
|
-
```
|
|
166
|
-
|
|
167
|
-
Route 53 sync imports registered domains when the selected AWS account permits `route53domains:ListDomains`. Beepmedia AWS metadata can be inspected through redacted diagnostics, but domain-looking SSM/Secrets names should only be imported after review because they do not prove registrar ownership.
|
|
168
|
-
|
|
169
|
-
## Storage Sync
|
|
170
|
-
|
|
171
|
-
Set one of these environment variables to sync with a remote PostgreSQL storage database:
|
|
172
|
-
|
|
173
|
-
```bash
|
|
174
|
-
export HASNA_DOMAINS_DATABASE_URL="postgres://..."
|
|
175
|
-
|
|
176
|
-
domains storage status
|
|
177
|
-
domains storage push
|
|
178
|
-
domains storage pull
|
|
179
|
-
```
|
|
94
|
+
> **Prefer the `domains` CLI over raw `aws` commands.** For Route 53 availability,
|
|
95
|
+
> registration status, and DNS, use `domains check --provider route53`,
|
|
96
|
+
> `domains r53 status`, and `domains dns …` instead of `aws route53domains …` /
|
|
97
|
+
> `aws route53 …`. The CLI applies the configured purchase profile, records the
|
|
98
|
+
> result in the local portfolio DB, and works the same across registrars — raw
|
|
99
|
+
> `aws` calls bypass all of that.
|
|
180
100
|
|
|
181
101
|
## MCP Server
|
|
182
102
|
|
|
@@ -206,8 +126,8 @@ domains-mcp --http --port 8814
|
|
|
206
126
|
MCP_HTTP=1 MCP_HTTP_PORT=8814 domains-mcp
|
|
207
127
|
```
|
|
208
128
|
|
|
209
|
-
- `GET /health`
|
|
210
|
-
- `POST /mcp`
|
|
129
|
+
- `GET /health` → `{"status":"ok","name":"domains"}`
|
|
130
|
+
- `POST /mcp` — Streamable HTTP MCP endpoint
|
|
211
131
|
|
|
212
132
|
Stdio remains the default transport for gradual rollout.
|
|
213
133
|
|
|
@@ -215,27 +135,15 @@ Stdio remains the default transport for gradual rollout.
|
|
|
215
135
|
|
|
216
136
|
| Variable | Description |
|
|
217
137
|
|----------|-------------|
|
|
218
|
-
| `HASNA_DOMAINS_DB_PATH` | Override database file path |
|
|
219
138
|
| `HASNA_DOMAINS_DIR` | Override database directory |
|
|
220
|
-
| `DOMAINS_DIR` | Override database directory fallback |
|
|
221
|
-
| `HASNA_DOMAINS_DATABASE_URL` | Remote storage PostgreSQL database URL |
|
|
222
|
-
| `DOMAINS_DATABASE_URL` | Remote storage PostgreSQL database URL fallback |
|
|
223
|
-
| `HASNA_DOMAINS_STORAGE_MODE` | Storage mode: `local`, `remote`, or `hybrid` |
|
|
224
|
-
| `DOMAINS_STORAGE_MODE` | Storage mode fallback |
|
|
225
|
-
| `AWS_PROFILE` | AWS profile for Route 53 Domains and hosted zones |
|
|
226
|
-
| `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, `AWS_SESSION_TOKEN` | AWS credential fallback |
|
|
227
|
-
| `DOMAINS_PURCHASE_AWS_PROFILE` | Purchase profile fallback when config has no `purchase_aws_profile` |
|
|
228
|
-
| `CLOUDFLARE_API_TOKEN` | Cloudflare API token |
|
|
229
|
-
| `CLOUDFLARE_API_KEY`, `CLOUDFLARE_EMAIL` | Cloudflare global key fallback |
|
|
230
|
-
| `CLOUDFLARE_ACCOUNT_ID` | Cloudflare account ID for zone creation |
|
|
139
|
+
| `DOMAINS_DIR` | Override database directory (fallback) |
|
|
231
140
|
| `NAMECHEAP_API_KEY` | Namecheap API key |
|
|
232
141
|
| `NAMECHEAP_USERNAME` | Namecheap account username |
|
|
233
142
|
| `NAMECHEAP_CLIENT_IP` | Namecheap whitelisted IP |
|
|
234
143
|
| `NAMECHEAP_SANDBOX` | Use Namecheap sandbox API |
|
|
235
|
-
| `GODADDY_API_KEY
|
|
236
|
-
| `
|
|
237
|
-
| `
|
|
238
|
-
| `HASNAXYZ_*` scoped aliases | Supported for Cloudflare, Brandsight, Sedo, and Beepmedia AWS diagnostics |
|
|
144
|
+
| `GODADDY_API_KEY` | GoDaddy API key |
|
|
145
|
+
| `GODADDY_API_SECRET` | GoDaddy API secret |
|
|
146
|
+
| `BRANDSIGHT_API_KEY` | Brandsight API key |
|
|
239
147
|
|
|
240
148
|
## License
|
|
241
149
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAkBzC,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAyD7D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"domain.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/domain.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAkDzC,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,
|
|
1
|
+
{"version":3,"file":"domain.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/domain.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAkDzC,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CA8vB5D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/provider.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAGzC,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,
|
|
1
|
+
{"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/provider.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAGzC,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAuJ9D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"providers.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/providers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"providers.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/providers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAuBzC,wBAAgB,wBAAwB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAuM/D"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Wallet payment integration for domain purchases
|
|
3
3
|
*
|
|
4
|
-
* Uses
|
|
5
|
-
* renewals, and marketplace purchases (Sedo, etc.)
|
|
4
|
+
* Uses @hasna/wallets virtual cards to pay for domain registrations,
|
|
5
|
+
* renewals, and marketplace purchases (Sedo, etc.)
|
|
6
6
|
*/
|
|
7
7
|
import type { Command } from "commander";
|
|
8
8
|
export interface WalletCard {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wallet.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/wallet.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAIzC,MAAM,WAAW,UAAU;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,iBAAiB;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;CAC5B;
|
|
1
|
+
{"version":3,"file":"wallet.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/wallet.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAIzC,MAAM,WAAW,UAAU;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,iBAAiB;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;CAC5B;AA2BD,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAyL5D"}
|