Check out this visual of how the QF matching amount is calculated from Vitaliks blog.
Can anyone build a similar tool to help me visualize the matching distribution calculations of the new Gitcoin Grants? Eg for any round created with round manager I want to be able to visualize the way the matching amount was calculated in the above visualization format ^^
@owocki So a set of figures like this, but with better styling and interactivity as part of dashboard/similarity finding tool? I was just working on finding similarities between donors in Beta round data so I could likely get prototype up and running without excessive effort if python+streamlit is acceptable stack here.
Bonus is that I could extract and re-package figure drawing module for other analysts to re-use (once I get labels to display nicely).
Here is how I would imagine end result, one streamlit dashboard page per round:
Searchbar to select grants/donors
Pyvis network graph, where each dot radius is sum of donations to a grant
Grid of figures, like one attached that display matching power each contributor added to grant.
Interactions:
typing in searchbar would let you search with autocompletion for grant/donor address(+maybe ENS search for all grants/interesting donors).
Clicking enter would add item to highlighted. Highlighted items would display with color on the graph and on the matching power figures.
At the very bottom there could be a table displaying aggregated contributions for a subset of highlighted donors/grants.
Should be doable, as long as you donāt YOLO it trying to open all figures for OSS round at once.
yeah, itll be interesting to see how performance is managed here. maybe we start by making charts for a grant => n grants => all grants in a round (eg start small and scale up). open to recommendations of performance management schemes.
Gotcha, if you are interested I can hack on weekend to make a demo dashboard that shows grants and small groups grants side by side, will illuminate performance bottlnecks. But so far only problematic thing is building mega-large graph.
Just one random observation, after drawing a few of those āsquareā graphs, I reach conclusion I could save a lot of space and make it more presentable by stuffing squares together - which would result in something like a treemap as shown. This holds exactly the same information as Vitalik style diagonal graph, or at least I think it does, only packed more nicely.
For a single grant, treemap can show how much voting power each voter contributed to final outcome, and for all grants it could show matching outcomes in hierarchical manner comparing not only grants, but also sizes of dispersed matching pools for different rounds.
i probably prefer the vitalik style diagonal graph for now. just so that i can go back to him and present the info to him in the way he perceives it already
Taking a form where folks could find those diagrams interesting, plan is to chuck them onto dashboard tomorrow. On left figure edge of square represents contributions to grant (actual money donated), on the right figure edge is isqrt(contributions) like Gitcoin algorithm.
For most grants, this shows what some folks love to say re:QF in that voting power distribution becomes a bit more ādemocraticā by dampening power of whales. This is my main motivation to build here, trying to figure out and verify how much influence on end result a typical QF donor actually has. I cannot say this confidently yet, but I feel like whales still stand out a lot, thus dominating how matching money is assigned.
Performance is very reasonable so far, pairs of pyplot figures for all pre-existing grants can be built without a problem. Worst case grant takes ~7s, typical about ~1s, most grants are way closer to 1-2s. Worst offenders can be pre-built and pulled into streamlit cache so dashboard doesnāt need to built figures, only load, but this is worry for later.
is there any way for me to hover/click on a square and see whom the contribution is from/to, how much it is, and how much proportionally of the matching pool it allocated?
This is really cool! I feel like I didnāt know I wanted this visualization until I saw it and now Iām so glad to have it for all future rounds. Thanks for building
I really want to be able to view grants by title and round instead of id. I also wonder if I could have a leaderboard list of who the donors are next to the graph.
I also really like the lines you have present in the first version of the graph which clearly shows the matching areas and find myself missing them in the future versions. If this is a personal preference so be it lol
Also, for the future, itās really interesting to think about how this image extends for other QF implementations. When we implement pairwise QF (or collusion-resistant) or bring back some sort of ātrust scoreā multiplier then the matching amount/ weight could somehow be additionally represented by making this a 3d graph and having the z-axis represent the passport/trust score times some collusion factor. This is a bit of spitballing and Iām not sure if my understandings of the right way to visually represent QF are entirely correct here.
Anyway, I really hope work on this project continues. Great work! Would love to chat about doing more data stuff for gitcoin with you @DistributedDoge
Thanks for thoughtful feedback, it is really helpful and motivating to push project forward. I must have missed earlier messages from Kevin, but anyways if anyone really wants me to see something, it feels safer to mention or reply to one of my posts than just write in thread.
I really like the leaderboard idea, can sit down and try to incorporate this and your other feedback by end of week, time permitting.
Speaking of styling of a figure, I can add option to do so, but it would be easier for me to just share figure drawing code so that you can get it drawn exactly according to your wishes and try different algos than sqrt. Also end of week.
One word of warning (should add to dashboard), those figures are computed from all votes while actual matching in round is only calculated using votes that are eligible. So yeah at the moment you can look who voted and how but keep in mind that not all of those votes you see are valid for matching.
I hope that once results of the round are ratified Gitcoin would release a dataset or a listing of all votes that counted towards matching. While getting āall votesā is easy, āeligibleā votes are impossible to reproduce without Gitcoin help because I have no way of knowing which votes were squelched as part of Sybil-defence or maybe some eligiblity check could be missaplied.