@1claw/cli 0.37.4 → 0.37.5
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 +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @1claw/cli (v0.37.
|
|
1
|
+
# @1claw/cli (v0.37.4)
|
|
2
2
|
|
|
3
3
|
Command-line interface for [1Claw](https://1claw.xyz) — HSM-backed secret management for AI agents and humans.
|
|
4
4
|
|
|
@@ -286,13 +286,19 @@ Common options for `submit` and `sign`:
|
|
|
286
286
|
--value 0.00001 \
|
|
287
287
|
--fee-rate-sat-per-vbyte 5
|
|
288
288
|
|
|
289
|
-
# XRP — optional destination tag
|
|
289
|
+
# XRP — simple Payment with optional destination tag
|
|
290
290
|
1claw agent tx submit <agent-id> \
|
|
291
291
|
--chain xrp-testnet \
|
|
292
292
|
--to r... \
|
|
293
293
|
--value 1 \
|
|
294
294
|
--destination-tag 12345
|
|
295
295
|
|
|
296
|
+
# XRP — arbitrary XRPL transaction type via --xrpl-tx-json
|
|
297
|
+
# Supports 30+ types: TrustSet, OfferCreate, NFTokenMint, AMMCreate, EscrowCreate, etc.
|
|
298
|
+
1claw agent tx submit <agent-id> \
|
|
299
|
+
--chain xrp \
|
|
300
|
+
--xrpl-tx-json '{"TransactionType":"TrustSet","LimitAmount":{"currency":"USD","issuer":"rIssuer...","value":"100"}}'
|
|
301
|
+
|
|
296
302
|
# Tron — optional fee limit (sun)
|
|
297
303
|
1claw agent tx submit <agent-id> \
|
|
298
304
|
--chain tron-shasta \
|