everest icon indicating copy to clipboard operation
everest copied to clipboard

Transaction, Submission, vote, and challenge history details

Open Bradymck opened this issue 4 years ago • 1 comments

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.

Bradymck avatar Oct 31 '20 02:10 Bradymck

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
    }
  }
}

tehn-r avatar Nov 01 '20 21:11 tehn-r