encointer / explorer

explore the encointer network, browse local communitities an monitor populations
GNU General Public License v3.0
1 stars 1 forks source link

reputables count is wrong #117

Closed brenzi closed 1 year ago

brenzi commented 1 year ago

The number of reputables is reported as 244 which seems terribly wrong when looking at the data.

currently we are in attesting phase of cindex 25

I dumped the encointerCeremonies.participantReputation registry for cindex 20-24 using js/apps. checked that 19 is empty indeed https://gist.github.com/brenzi/46aae68e611ea843b2b0dc776fb99b3f

I process this data as follows:

extract accountid's only:

> sed -n '/digest/{ n; n; n; n; p }' reputables-20-24.txt > reputables-multi.txt
> wc -l reputables-multi.txt
197 reputables-multi.txt

so, we have 197 reputations, counting each attendance of all attendees

but we want to know the number of UNIQUE accounts:

> sort reputables-multi.txt | uniq | wc -l
85

So, we actually only have 85 reputables currently. no idea where the 244 come from