aboutsummaryrefslogtreecommitdiff
path: root/lib/_ak_zblock
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-04-05 14:28:24 +0300
committerkaotisk <kaotisk@arching-kaos.org>2024-04-05 14:28:24 +0300
commit29b0d694517e610f98880844aeebe8eb12b0033a (patch)
treefe1885ff5a8c424b72330124e4905f0ddf14cfa4 /lib/_ak_zblock
parent0fd522a6e324de08a99bdd42ead193acff6f3d15 (diff)
downloadarching-kaos-tools-29b0d694517e610f98880844aeebe8eb12b0033a.tar.gz
arching-kaos-tools-29b0d694517e610f98880844aeebe8eb12b0033a.tar.bz2
arching-kaos-tools-29b0d694517e610f98880844aeebe8eb12b0033a.zip
might fix ipfs installation
Diffstat (limited to 'lib/_ak_zblock')
-rwxr-xr-xlib/_ak_zblock38
1 files changed, 19 insertions, 19 deletions
diff --git a/lib/_ak_zblock b/lib/_ak_zblock
index 07f4981..cd4fa95 100755
--- a/lib/_ak_zblock
+++ b/lib/_ak_zblock
@@ -39,18 +39,18 @@ _ak_zblock_show(){
# #
# # We can extend this with calling the encoder and further send the transaction
# #
-#
+#
# #FINGERPRINT="CHANGE THIS TO YOUR DEFAULT FINGERPRINT"
# # We acquire the GPG fingerprint by email address
# # The following example finds kaos@kaos.kaos' GPG fingerprint like this
# # FINGERPRINT="$(gpg2 --homedir $AK_GPGHOME --list-keys | grep kaos@kaos.kaos -1 | head -n1 | awk '{print $1}')"
-#
+#
# # Below, the usage information
# PROGRAM="$(basename $0)"
# source $AK_LIBDIR/_ak_log
# source $AK_LIBDIR/_ak_ipfs
# source $AK_LIBDIR/_ak_gpg
-#
+#
# usage(){
# echo "Usage:"
# echo "$PROGRAM -b block_file | -h block_hash | dunno"
@@ -74,28 +74,28 @@ _ak_zblock_show(){
# echo " will be unverified."
# echo ""
# }
-#
+#
# main(){
-#
+#
# logit "INFO" "We are doing" $BLOCK_TO_ADD "with content" $PREVIOUS
# # We add it to IPFS
# MESSAGE_HASH=$(_ak_ipfs_add $MESSAGE)
-#
+#
# # We create a detached and armor signature of it
# MESSAGE_SIGN_FILE=$MESSAGE".asc"
# _ak_gpg_sign_detached $MESSAGE_SIGN_FILE $MESSAGE
-#
+#
# # We add the signature to IPFS
# MESSAGE_SIGNATURE=$(_ak_ipfs_add $MESSAGE_SIGN_FILE)
-#
+#
# # We will be using our public key also to put it in the block later
# KEY="gpg.pub"
# _ak_gpg_key_self_export $KEY
# GPG_PUB_KEY=$(_ak_ipfs_add $KEY)
-#
+#
# # Acquire last block of information, to chain this one with previous posted
# PREVIOUS=$(_ak_ipfs_files_stat /zlatest | head -n 1)
-#
+#
# # We create a block of json like this:
# cat > block <<EOF
# {
@@ -113,13 +113,13 @@ _ak_zblock_show(){
# BLOCK_SIG=$BLOCK".asc"
# # We have a block now, so we sign it
# _ak_gpg_sign_detached $BLOCK_SIG $BLOCK
-#
+#
# # We now add the signature to IPFS
# BLOCK_SIGNATURE=$(_ak_ipfs_add $BLOCK_SIG)
-#
+#
# # We also add the block!
# BLOCK=$(_ak_ipfs_add $BLOCK)
-#
+#
# # So we now do the think almost again
# cat > zblock << EOF
# {
@@ -132,31 +132,31 @@ _ak_zblock_show(){
# ZBLOCK=$(_ak_ipfs_add $ZBL)
# echo $ZBLOCK
# }
-#
+#
# if [ ! -z $2 ];
# then
# PWD="$(pwd)"
-#
+#
# # We ask which BLOCK is goind to be edited
# BLOCK_TO_ADD="$1"
# # We ask for a ZBLOCK or GENESIS to put in the BLOCK
# PREVIOUS="$2"
-#
+#
# _ak_ipfs_cat "$BLOCK_TO_ADD"
# if [ $? == 0 ];
# then
# echo "Nice! We found the block"
# _ak_ipfs_get "$BLOCK_TO_ADD"
-#
+#
# sed -i.bak -e 's/^.*previous.*$/\"previous\":\"'$PREVIOUS'\"/' $BLOCK_TO_ADD
# cat $BLOCK_TO_ADD | jq -M
-#
+#
# exit 2
# else
# echo "Too bad, it seems the block is not there"
# exit 1
# fi
-#
+#
# # cat $PWD/zblock | jq -M
# # Optional or extending with
# # python send_as_ak_tx $ZBLOCK