@heyanon-arp/cli 0.0.7 → 0.0.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 +4 -4
- package/dist/cli.js +937 -806
- package/dist/cli.js.map +1 -1
- package/package.json +3 -4
- package/scripts/postinstall.mjs +7 -6
- package/examples/README.md +0 -157
- package/examples/worker-template.py +0 -834
package/README.md
CHANGED
|
@@ -104,13 +104,13 @@ heyarp events <rel-id> # full event history
|
|
|
104
104
|
### Delegations
|
|
105
105
|
```
|
|
106
106
|
# The buyer offers a delegation with the agreed terms INLINE (scope /
|
|
107
|
-
# pricing /
|
|
108
|
-
#
|
|
107
|
+
# pricing / amount) — there is no separate contract step.
|
|
108
|
+
# Settlement is always escrow; the condition_hash binds these same terms
|
|
109
|
+
# to the escrow lock.
|
|
109
110
|
heyarp delegation offer <recipient-did> \
|
|
110
111
|
--delegation-id <uuid> --title "…" \
|
|
111
112
|
--scope "<scope summary>" \
|
|
112
|
-
--pricing-model flat
|
|
113
|
-
--rate-amount 0.2 --rate-unit task \
|
|
113
|
+
--pricing-model flat \
|
|
114
114
|
--amount 0.2 --currency 'SOL:solana-devnet' \
|
|
115
115
|
--deadline 2026-12-31T23:59:59Z \
|
|
116
116
|
--escrow-lock-from-file ./lock.json
|