@catena/cli 0.5.0 → 0.5.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 +16 -0
- package/dist/index.mjs +41 -25
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -195,6 +195,21 @@ Required flags: `--name`, `--address`.
|
|
|
195
195
|
Optional flags: `--network` (defaults to `base`; Base is the only supported
|
|
196
196
|
wallet network), `--email`.
|
|
197
197
|
|
|
198
|
+
### `counterparties request-details`
|
|
199
|
+
|
|
200
|
+
Ask an existing counterparty to provide bank details, wallet details, or both.
|
|
201
|
+
The request follows policy and may require human approval.
|
|
202
|
+
|
|
203
|
+
```bash
|
|
204
|
+
pnpm dlx @catena/cli counterparties request-details cp_... --bank
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
Pass at least one of `--bank` or `--wallet`. `--idempotency-key` is optional.
|
|
208
|
+
Without it, a request is not permanently deduplicated: another request is
|
|
209
|
+
rejected while the current invitation is outstanding, but creates a new intent
|
|
210
|
+
after that invitation expires. To recover an exact submission after a lost
|
|
211
|
+
response, retry with the same explicit `--idempotency-key`.
|
|
212
|
+
|
|
198
213
|
### `send`
|
|
199
214
|
|
|
200
215
|
Request a USD send to a counterparty rail.
|
|
@@ -331,4 +346,5 @@ pnpm dlx @catena/cli counterparties create --help
|
|
|
331
346
|
pnpm dlx @catena/cli counterparties create email --help
|
|
332
347
|
pnpm dlx @catena/cli counterparties create bank --help
|
|
333
348
|
pnpm dlx @catena/cli counterparties create wallet --help
|
|
349
|
+
pnpm dlx @catena/cli counterparties request-details --help
|
|
334
350
|
```
|