From ba1173c9ec87b14a6ba6772d5ebfaafb81c7f888 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Sun, 9 Jun 2024 06:52:03 +0300 Subject: Refactoring --- lib/_ak_node | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 lib/_ak_node (limited to 'lib/_ak_node') diff --git a/lib/_ak_node b/lib/_ak_node new file mode 100755 index 0000000..c1436d9 --- /dev/null +++ b/lib/_ak_node @@ -0,0 +1,14 @@ +#!/bin/bash +source $AK_LIBDIR/_ak_ipfs + +# Resolves the IPNS key "ak-config" to its current IPFS value +# Return IPFS CIDv0 without /ipfs/ prefix +_ak_node_info_ipfs_hash(){ + _ak_ipfs_name_resolve /ipns/$(_ak_node_info_ipns_key) | sed -e 's/\/ipfs\///' +} + +# Finds ak-config ipns key +# Returns IPNS key +_ak_node_info_ipns_key(){ + _ak_ipfs_key_list_full | grep ak-config | awk '{print $1}' +} -- cgit v1.2.3