1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
|
Arching Kaos Tools
==================
> Warning: The tools and the whole project is in an experimental state.
> Everything is subject to change.
> Hint: Find the "Script usage" section for sum up of the scripts
Introduction
------------
Tools that help you to create a blockchain called `zchain` by preparing small
JSON objects that are pointing one to another in the following way:
```
ZBLOCK = BLOCK + SIGNATURE
BLOCK = ACTION + DATA + DATA_SIGNATURE + TIMESTAMP + GPG + PREVIOUS_ZBLOCK
DATA = IPFS_CID + SIGNATURE ( + key-pair values that are based on ACTION )
```
Most of the times, IPFS_CID in DATA is expected to be a file. And the module
is responsible for handling it properly.
For the zchain to be valid, all the signatures must be verifiable against the
provided GPG key that is included in the BLOCK.
Previous developments
---------------------
1. A proof of work blockchain is introduced to synchronize the zchains among
them.
2. A miner prototype is introduced as well.
3. From a directory full of blocks, find the latest block of the longest chain
4. API for calling some of the bash scripts
Description
-----------
This is an installable repository which provides various tools for running
Arching Kaos and using it.
Generic tools:
`ak-enter` - Can be used to crawl zchains.
`ak-zchain-rebase` - Can be used to rebase your zchain to a previous zblock.
`ak-zchain-reset` - Can be used to reset your zchain to zgenesis.
ACTION tools (modules):
`ak-mixtapes` and `news` - Can be used to add content to your zchain.
`ak-profile` - Can be used to build up a profile of the contributor.
Based on your GPG, zchain and other values provided by `profile`, you can create
with `akconfig` a pointer to some basic information that you can share with
others in order for them to crawl your zchain or view your "profile".
There are more tools available under the `bin` folder. Make sure you deeply
understand what they are doing before using them.
Changes are mentioned in `git log` of the repo, as well as in CHANGELOG file.
Requirements
------------
Some Linux machine will propably work. It's tested under Fedora Linux. External
programs used are:
- bash (v5.1.8)
- gpg (v2.3.4)
- wget (v1.21.2)
- curl (v7.79.1)
- git (v2.34.1)
- which (v2.21)
- jq (v1.6)
- nodejs (v18.14)
- npm (v9.5.0)
- npx (v9.5.0)
How to install the repository
-----------------------------
Write on your terminal:
```
git clone https://github.com/arching-kaos/arching-kaos-tools
cd arching-kaos-tools
./install.sh
```
If you encounter any errors, please open an issue.
Update
------
Navigate to your cloned repository and execute the following commands:
```
git pull
./update.sh
```
Uninstall
---------
Navigate to your cloned repository and execute the following command:
```
./uninstall.sh
```
This will output an archive with your aknet-gpg-keyring to your $HOME folder.
It will NOT remove your IPFS repository, neither is going to clean it.
Examples
--------
### Add a news article ( `ak-news add` )
You could use ZCHAIN with NEWS model. Or MIXTAPE model, or make your own.
``` bash
$ ak-news create
```
This would pop up a vim editor for you to write a news article or whatever is
text or markdown format with a title.
Saving the file, will save it locally, add it to IPFS, sign it, pack detached
signature with metadata on a JSON object. Then a block will be created packing
your GPG public key, the news/add action with the JSON object and a detached
signature of this, timestamp and finally an entry for the previous *zblock*.
After that, we finally write this as a JSON object, add it to IPFS, sign it
and pack a *ZBLOCK*. The ZBLOCK is then published over our IPNS zchain key.
Other options... let's try help!
``` console
$ ak-news help
ak-news
-------
#TODO
All you need to know is that there are two options available:
help Prints this help message
index Prints an indexed table of your news files
import <file> #TODO
add <file> Creates a data file from the news file you point to
create Vim is going to pop up, you will write and save your
newsletter and it's going to be saved
```
Clearly there is a TODO item. Import is not working so avoid it, or fix it.
Add is nice, you can add an already existing file directly. `news` is the second
module after `mixtape`. Both modules need refactoring but they work at a level
that someone can be productive with these tools.
### Explore chains ( `ak-enter` )
You can view your zchain as a JSON object using `enter`. There are some flags
in order to either view other zchains or change the depth of view ( includes or
ignores data object and action ).
``` console
$ ak-enter -h
ak-enter - Crawl an arching kaos chain
-----------------------------------
Usage:
--help, -h Print this help and exit
--chain <ipns-link>, -n <ipns-link> Crawl specified chain
--show-zblocks-only, -z Show only zblocks
--no-verify, -nV Don't verify signatures
<ipfs-link> Specify IPFS CID for entrance
Note that combined flags don't work for now
Running with no flags crawls your chain
```
Podman (or Docker)
------------------
There is a ContainerFile that you can use to build an image which you can then
deploy in a container.
Use:
```
podman build -f ContainerFile -t arching-kaos-tools .
```
TODO
----
Next things to come are:
- [ ] - zblock manipulator to fix wrong previous block references and repack
zblocks.
- [X] - zchain rebase-like procedure to move the zblocks to another seed or set
another previous block (e.g. join chains)
- [ ] - Clean up installation and filesystem usage
- [ ] - Log rotate to gzip archives
- [ ] - Filters for log searching for IPFS hashes or names
- [ ] - Use of IPFS file system to store/pin sub chains, previous chains or
other chains
Concepts under thought
----------------------
- Base chain, derived from personal ones.
- Daemon to monitor chains' states, update and sign new zblocks.
- Find a minimum agreement of what is valid or not. (important)
- Spam defence (e.g. how to protect the network from abuse cases) (important)
- Reduce size of all parts of chain (stringify JSON) (improvement)
Script usage
------------
Utilities
---------
ak-calculate-size # Calculates the overall size of your ZCHAIN
ak-clean # Cleans up temporary folders created by these tools
ak-config # Publish your configuration to IPNS
ak-data-expand # Expands and verifies DATA blocks
ak-enter # Crawls ZCHAINS
ak-extract-cids # Prints the CIDs from your ZCHAIN for further usage
ak-get-akid # Returns IPFS CID of your AKID (ak-config)
ak-get-chain-minified # Obsolete, ak-enter default output
ak-get-gpg # Return your GPG key as IPFS CID
ak-get-latest # Returns zlatest ZBLOCK according to IPFS FS
ak-tempassin # Creates temporary directories
Logging
-------
ak-logfollow # Tails the log file
ak-logthis # Logs a message to the log file
Schain tools
------------
ak-mempool # TODO
ak-miner-script # Prototype miner
ak-network # in the works
ak-show_sblock # Returns a mined SBLOCK
ak-find-latest-mined-sblock # In a hay of SBLOCKS finds the latest
Network scouting
----------------
ak-stellar-get-participants # Returns a list of stellar address trusting ARCHINGKAOS
Modules
-------
ak-articles PROTO Adds an article to your ZCHAIN
ak-categories PROTO Adds or references categories to the ZCHAIN
ak-comments # References a comment to a ZBLOCK
ak-files # Adds a file to the ZCHAIN
ak-folders PROTO Adds a folder to the ZCHAIN
ak-mixtapes # Adds a mixtape to the ZCHAIN
ak-news # Adds a news article to the ZCHAIN
ak-profile # Adds key-value pairs to the ZCHAIN
ak-reference # Adds references to the ZCHAIN
ak-repositories # Adds repositories to the ZCHAIN
ak-roadmap PROTO Adds a roadmap to the ZCHAIN
ak-transactions # Prototype of transactions in the ZCHAIN
ak-sm-files # Adds a split file's map to the ZCHAIN
ak-todos PROTO Adds todo list to the ZCHAIN
Public following (uses ak-profile module)
-----------------------------------------
ak-follow # Follow something
ak-following # List your follows
ak-unfollow # Unfollow something
Zblock tools
------------
ak-zblock-cache # Caches a whole zblock as it would be done by ak-enter
ak-zblock-manipulator # TODO
ak-zblock-show # Shows a specified ZBLOCK
ak-pack_z_block # Creates and publishes a ZBLOCK (used by modules)
Zchain tools
------------
ak-zchain-chk # TODO
ak-zchain-rebase # Rebases ZCHAIN to specified ZBLOCK
ak-zchain-reset # Resets ZCHAIN to GENESIS
File splitters
--------------
ak-sm-filejoiner # Joins a file from a map
ak-sm-filesplitter # Splits a file to chunks and creates a map
ak-sm-merkle-tree # Splits a file to merkle tree and returns the root
ak-sm-merkle-tree-to-file # Joins a file from a merkle root
IPFS Wrappers
-------------
ak-ipfs-add
ak-ipfs-block-stat
ak-ipfs-cat
ak-ipfs-check
ak-ipfs-files-cp
ak-ipfs-files-ls
ak-ipfs-files-mkdir
ak-ipfs-files-mv
ak-ipfs-files-rm
ak-ipfs-files-stat
ak-ipfs-get
ak-ipfs-key-gen
ak-ipfs-key-list
ak-ipfs-key-list-full
ak-ipfs-name-publish
ak-ipfs-name-resolve
ak-ipfs-starter
ak-ipfs-swarm-peers
ak-ipns-resolve
Not completed or just odd
-------------------------
ak2html # TODO
ak-get-ipfs-hashes-from-my-zchain # Retuns CIDs of "ipfs" DATA
ak-get-only-ipfs-key-values-from-our-or-a-zchain # Retuns CIDs of "ipfs" DATA
ak-get-only-ipfs-key-values-from-our-zchain # Retuns CIDs of "ipfs" DATA
Deprecated
----------
ak-json2bash
|