-
Notifications
You must be signed in to change notification settings - Fork 16
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
Idea: Node well-connectedness index #27
Comments
@djmelik I would love to have your input on this. Especially on how we should include the channel capacity into the wci computation. |
Love this idea. Especially since the new "Capacity vs Activity" plot is also really awesome. "Node well-connectedness index" sounds cool. I think it comes pretty close to what they call "bos score" in lnd. Roasbeef mentioned that the autopilot will be completely revamped in v0.6. It'll have two flavors: Selection for routing nodes and for clients. Here some background: |
Thanks for the links @21isenough. So it seems it's best to use the upcoming |
Yes, it is different indeed. There will always be a trade-off between your nodes "well-connectedness" and the networks decentralization. I think, the WCI is a competitive metric while There certainly is a place for both. |
So the goal is to track graph centrality metrics to suggest nodes to connect to that will increase your betweenness? With the new scoring based autopilot system, it should be relatively easy to add these metrics, then let the user enable it on the command line, specifying a weight relative to the other metrics. |
There's also an exposed query API that can be hit to allow the UI to poll for the impact w.r.t connecting to candidate nodes. |
@Roasbeef Exactly! Wonder whether we should use channel capacities in |
Let's introduce the "Node well-connectedness index" - a scalar value that indicates how well-connected a node is.
WCI could be computed as this pseudocode:
We'd need to add channel capacities into the computation, because apparently if one channel is used as a network hop to reach lots of nodes, this is not optimal.
Once we establish the WCI, we can do to do the following:
The WCI index and top 10 nodes/channels from above should be a separate tab, as this computation might take some time (we are iterating all nodes in the network, not just the ones we have open channels to).
The text was updated successfully, but these errors were encountered: