@1claw/cli 0.37.2 → 0.37.4
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 +41 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @1claw/cli (v0.37.
|
|
1
|
+
# @1claw/cli (v0.37.3)
|
|
2
2
|
|
|
3
3
|
Command-line interface for [1Claw](https://1claw.xyz) — HSM-backed secret management for AI agents and humans.
|
|
4
4
|
|
|
@@ -270,6 +270,46 @@ Common options for `submit` and `sign`:
|
|
|
270
270
|
|
|
271
271
|
`list` and `get` accept `--include-signed-tx` to include the raw signed transaction in the response.
|
|
272
272
|
|
|
273
|
+
**Non-EVM chains** (Bitcoin, Solana, XRP, Cardano, Tron) use the same `submit` / `sign` commands with chain-specific flags instead of `--to` / `--value`:
|
|
274
|
+
|
|
275
|
+
```bash
|
|
276
|
+
# Solana devnet — native SOL transfer (sign-only)
|
|
277
|
+
1claw agent tx sign <agent-id> \
|
|
278
|
+
--chain solana-devnet \
|
|
279
|
+
--to <recipient-base58> \
|
|
280
|
+
--value 0.001
|
|
281
|
+
|
|
282
|
+
# Bitcoin testnet — fee rate optional (sat/vByte)
|
|
283
|
+
1claw agent tx submit <agent-id> \
|
|
284
|
+
--chain bitcoin-testnet \
|
|
285
|
+
--to <bech32-address> \
|
|
286
|
+
--value 0.00001 \
|
|
287
|
+
--fee-rate-sat-per-vbyte 5
|
|
288
|
+
|
|
289
|
+
# XRP — optional destination tag
|
|
290
|
+
1claw agent tx submit <agent-id> \
|
|
291
|
+
--chain xrp-testnet \
|
|
292
|
+
--to r... \
|
|
293
|
+
--value 1 \
|
|
294
|
+
--destination-tag 12345
|
|
295
|
+
|
|
296
|
+
# Tron — optional fee limit (sun)
|
|
297
|
+
1claw agent tx submit <agent-id> \
|
|
298
|
+
--chain tron-shasta \
|
|
299
|
+
--to T... \
|
|
300
|
+
--value 1 \
|
|
301
|
+
--fee-limit-sun 10000000
|
|
302
|
+
|
|
303
|
+
# Cardano preprod — optional TTL (slots)
|
|
304
|
+
1claw agent tx submit <agent-id> \
|
|
305
|
+
--chain cardano-preprod \
|
|
306
|
+
--to addr_test1... \
|
|
307
|
+
--value 1.5 \
|
|
308
|
+
--ttl 3600
|
|
309
|
+
```
|
|
310
|
+
|
|
311
|
+
Supported non-EVM chain names match the chain registry (`bitcoin`, `bitcoin-testnet`, `solana`, `solana-devnet`, `xrp`, `xrp-testnet`, `cardano`, `cardano-preprod`, `tron`, `tron-shasta`). SPL (Solana) and TRC-20 (Tron) token transfers accept `--token-mint` and `--token-decimals`.
|
|
312
|
+
|
|
273
313
|
### Signing Keys (Multi-Chain)
|
|
274
314
|
|
|
275
315
|
Manage per-agent multi-chain signing keys. Keys are generated server-side and stored in the vault — the private key never leaves the HSM.
|