-
Notifications
You must be signed in to change notification settings - Fork 8
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
Aragon DAO names #56
Comments
It seems that it "knows" that the controller is But if you enter after removing the cache, that knowledge disappears. You get that the controller is the domain So I still don't know how to get the dao name given the address |
poweredbyWe could also get some data for our json from their poweredby page |
I also found this file https://github.com/1Hive/apiary/blob/master/data/app_mining_cycle1/organisation_scores.csv with a lot of info about organizations. It's from an old 1hive project that listed all aragon DAOs... Here is the script they used to get this data (in nodejs) https://github.com/1Hive/apiary/blob/fd22f324428c00857c9a39afc62ad7dbacd7a29b/scripts/calcscore The problem? It uses the following line: } = await got.post('https://daolist.1hive.org', { But dailost.1hive.org is dead... I think this is the repo with that service, but It needs further investigation In the meantime, I think we should add the "poweredby aragon" DAOs to our list manually. dao-list middleware just processes the data from the repo 1hive/daolist In this repo, we can find a json with info about some daos on xdai. More specifically, the info of the daos on xdai's gardens interface (gardens.1hive.org). I think these are a kind of DAOs based on aragon, but with a new set of apps. By the way, 1hive's aragonOS deployments are located here, but we still don't have enough info about mainnet We can modify the subgraph so it includes names, using this source from the contract. Here is the JSON ABI: https://github.com/aragon/connect/blob/master/packages/connect-thegraph/subgraph/abis/ENS.json |
The previous contract sets up the registry, but not the DAOs But we found the contract that receives the name to be put for DAOs created using the company template
Nevertheless, every template at some point uses the |
HOW TO GET THE NAME OF A DAO GIVEN AN ADDRESS (manually)Let's say we have a random address like On etherscan, we can click on This could be automated with API calls to Etherscan, having the ABI of the contracts. Perhaps this could be put into the subgraph. |
Not with every DAO is possible to follow this process. For example, with this address... And for DAOs created with |
I've created an Issue about the subgraph in aragon/dao-templates#221, in case someone who knows how to make subgraphs wants to do it I'll snooze this issue until I want to learn how to make subgraphs |
The current approach is too manual and should be somehow automatized
The text was updated successfully, but these errors were encountered: