diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2025-07-22 02:01:18 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2025-07-22 02:01:18 +0300 |
commit | fd12421d9e9589cc8d68a8a64bc2630266e3288f (patch) | |
tree | 95334d6a2ac283fd2578acd39f96b6dc1c62d7b5 /bin | |
parent | c65db16ec0f40fa4c10ea4ee05326d50a221656f (diff) | |
download | arching-kaos-tools-fd12421d9e9589cc8d68a8a64bc2630266e3288f.tar.gz arching-kaos-tools-fd12421d9e9589cc8d68a8a64bc2630266e3288f.tar.bz2 arching-kaos-tools-fd12421d9e9589cc8d68a8a64bc2630266e3288f.zip |
[ns] Provides -rp where proof and resolved query is provided
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ak-ns | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -28,6 +28,8 @@ ## -ll, --list-long List names with keys ## -rn, --resolve-name <name> Resolves value from name ## -rk, --resolve-key <key> Resolves value from key +## -rp, --resolve-key-proof <key> Resolves value from key and provides +## an akfs_map_v3 to clear signed proof ## -p, --publish <key> <value> Publishes value to key ## -pn, --publish2name <name> <value> Publishes value to name ## -pz, --publish-zchain Publishes zchain @@ -53,6 +55,7 @@ then -ll | --list-long) shift; _ak_ns_list_long; exit;; -rn | --resolve-name) shift; _ak_ns_resolve_from_name $1; exit;; -rk | --resolve-key) shift; _ak_ns_resolve_from_key $1; exit;; + -rp | --resolve-key-proof) shift; _ak_ns_resolve_from_key_with_proof $1; exit;; -ek | --encode-key) shift; _ak_ns_encode_key $1; exit;; -dk | --decode-key) shift; _ak_ns_decode_key $1; exit;; -p | --publish) shift; _ak_ns_publish $1 $2; exit;; |