The following posts were a response to this "spreadsheet method":
forum.kinesis.money
Caution:
I have no real idea what I'm doing.
Completely new to this blockchain analysis.
Nevertheless the following dabblings in linux awk might help someone do actual intelligent work.
https://watcher.aboutkinesis.com/operations
kag
Manually:
set custom network (upper right) to
in Field3 of the dropdown menu
save
Manually: go to bottom, click export to CSV
WAIT
for menu SAVE AS to your hard-disk
If you miss the pop-up screen, you'll have to start over.
date output format:
linux> date +"%Y%m%e-%H%M"
20230223-1606
linux> cp stellar-export.csv stellar-export-20230223-1606.csv
linux> wc -l *
30149 stellar-export-20230223-1606.csv
30149 stellar-export.csv
number of lines in the file = row count
minus one to exclude the header
Rows with "payment" in Field4 have 11 columns
How you can validate Circulation from the Kinesis blockchains
You can download a CSV file of the KAU or KAG blockchains from the watcher node that Derek has set up. There are two separate blockchains, one for KAU and one for KAG. The explorer that Derek has attached is from a third party, so you will be using independent tools for your analysis. The CSV...
forum.kinesis.money
Caution:
I have no real idea what I'm doing.
Completely new to this blockchain analysis.
Nevertheless the following dabblings in linux awk might help someone do actual intelligent work.
https://watcher.aboutkinesis.com/operations
kag
Manually:
set custom network (upper right) to
in Field3 of the dropdown menu
save
Manually: go to bottom, click export to CSV
WAIT
for menu SAVE AS to your hard-disk
If you miss the pop-up screen, you'll have to start over.
date output format:
linux> date +"%Y%m%e-%H%M"
20230223-1606
linux> cp stellar-export.csv stellar-export-20230223-1606.csv
linux> wc -l *
30149 stellar-export-20230223-1606.csv
30149 stellar-export.csv
number of lines in the file = row count
minus one to exclude the header
Not all rows have data in every field.linux> head -1 stellar-export-20230223-1606.csv | sed 's/,/\n/g' | nl
1 "id"
2 "transactionSuccessful"
3 "sourceAccount"
4 "type"
5 "typeI"
6 "createdAt"
7 "transactionHash"
8 "assetType"
9 "from"
10 "to"
11 "amount"
12 "account"
13 "into"
14 "startingBalance"
15 "funder"
16 "signerKey"
17 "signerWeight"
18 "masterKeyWeight"
19 "lowThreshold"
20 "medThreshold"
21 "highThreshold"
Rows with "payment" in Field4 have 11 columns
Probably goobledygook but someone could adapt that to do something usefullinux> cat stellar-export-20230223-1606.csv | sed 's/"//g' | awk -F, '$4=="payment"{s1+=$11}END{printf "Total %-10.2f\n",s1}'
Total 12412576.75
Last edited by a moderator:



