-
-
Notifications
You must be signed in to change notification settings - Fork 7
Address Usage Report (March 20, 2024 ‐ July 28, 2024)
danb edited this page Jul 30, 2024
·
1 revision
This report provides an overview of the address activity, including the total number of unique addresses, the most active addresses, and the unique prefixes identified in the data.
Click here for the raw data
CLI Command:
cut -d',' -f1 report.csv | sort | uniq | wc -l
Result:
146
The data set contains 146 unique addresses.
CLI Command:
cut -d',' -f1 report.csv | sort | uniq -c | awk '$1 > 1' | sort -nr | head -n 5
Result:
27 osmo1m7ktpvldzn6wne7s6pueu7600d3qjnj2nu60kd
17 osmo19lylazg430e04n9pgf7zkyasemyg42j6dl4yss
12 osmo1pnyrx2jjksuuuzu03rr2hwkz5r7ecuuagr3pvh
11 osmo19fnvu0g9jzj4fgpfj6559kvhx9gx06zff6slj4
6 osmo14styak6r28nlzx5lan68pt8l6yp5w603dmlh62
The top 5 most active addresses, appearing more than once, are as follows:
-
osmo1m7ktpvldzn6wne7s6pueu7600d3qjnj2nu60kd
- 27 occurrences -
osmo19lylazg430e04n9pgf7zkyasemyg42j6dl4yss
- 17 occurrences -
osmo1pnyrx2jjksuuuzu03rr2hwkz5r7ecuuagr3pvh
- 12 occurrences -
osmo19fnvu0g9jzj4fgpfj6559kvhx9gx06zff6slj4
- 11 occurrences -
osmo14styak6r28nlzx5lan68pt8l6yp5w603dmlh62
- 6 occurrences
CLI Command:
cut -d',' -f1 report.csv | cut -d'1' -f1 | sort | uniq -c | sort -nr
Result:
45 osmo
16 juno
13 regen
7 pasg
5 gravity
4 stars
3 bostrom
2 dym
1 akash
1 celestia
1 centauri
1 chihuahua
1 cosmos
1 cro
1 iaa
1 jkl
1 kava
1 kujira
1 like
1 lum
1 nolus
1 omniflix
1 persistence
1 quasar
1 quick
1 secret
1 sent
1 somm
1 stride
1 tori
The prefixes and their counts indicate the number of occurrences for each unique prefix within the data set, representing different blockchain networks. The prefix osmo
had the highest count, appearing 45 times.