-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add a list of the richest addresses #19
Comments
There are 3 main decisions about the behavior of the richest addresses page we have to consider:
In my opinion:
|
I agree about numbers 1, 2 and 3. No real time updates, only a limited number of addresses (I would go with 20) and only HTR for now. Each token owner can create their richest addresses of their tokens if they want. |
In fact, I prefer to keep the list updated on the fly because it is quick and would not consume much memory. Also, running an algorithm that loops through all transactions to update the richest list is O(number of transactions) and gets slower over time. What do you think? |
@msbrogli I'm still not sure about your idea for the first item. I was asking more regarding the behavior for the end user, not the implementation itself. As for implementation (on the fullnode), I prefer to keep the list updated as new txs arrive. When the user makes the request, it'll be ready. That's also what you said, right? |
@obiyankenobi Oh! I think I got it now. You're talking whether we should update the statistics on real time on the client, right? I agree that it is not important. Exactly. Keep a list updated as new txs arrive. |
No description provided.
The text was updated successfully, but these errors were encountered: