everest
everest copied to clipboard
Transaction, Submission, vote, and challenge history details
I was trying to find some of my activity and think I voted multiple times on some challenges because I couldn't find my vote history or info showing if I successfully voted and on what.
A resolved challenges section similar to our registries would be a great feature to include.
Overall it is good idea to have this information on the UI. Meanwhile in order to find this information I used this query:
{
projects(where: {owner: "your_eth_address"}){
name,
description,
id
votes
{
challenge{
project{
name
},
resolved,
description
}
choice
}
}
}