We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A concerte example:
The text was updated successfully, but these errors were encountered:
in handleCastVote, vote.nouns is set to voter.nounsRepresented https://github.com/nounsDAO/nouns-monorepo/blob/master/packages/nouns-subgraph/src/nouns-dao.ts#L168
handleCastVote
nounsRepresented is changed at the time of Noun transfer or delegation change https://github.com/nounsDAO/nouns-monorepo/blob/master/packages/nouns-subgraph/src/nouns-erc-721.ts
nounsRepresented
As voting power is frozen at the block a proposal was put up, but nounsRepresented is not, vote.nouns will be misleading.
Sorry, something went wrong.
For now, please use the following workaround, which requires two queries:
{ proposal(id: ${proposalId}) { createdBlock votes { voter { id } # whatever else you need... } } }
{ delegates(where: { id_in: ${JSON.stringify(voterIds)} }, block: { number: ${createdBlock} }) { id nounsRepresented { id } } }
No branches or pull requests
A concerte example:
The text was updated successfully, but these errors were encountered: