Skip to content

Instantly share code, notes, and snippets.

@j-s
Created July 27, 2022 23:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j-s/73320e33be16fee6b982629094311783 to your computer and use it in GitHub Desktop.
Save j-s/73320e33be16fee6b982629094311783 to your computer and use it in GitHub Desktop.
ZORA API: Nouns Graphql Query
query CurrentNounAuction {
markets(filter: {marketFilters: [{marketType: NOUNS_AUCTION, statuses: [ACTIVE]}]}) {
nodes {
market {
collectionAddress
marketType
price {
chainTokenPrice {
decimal
}
}
tokenId
properties {
... on NounsAuction {
auctionCurrency
auctionId
duration
startTime
endTime
estimatedDurationTime
firstBidTime
highestBidder
highestBidPrice {
chainTokenPrice {
decimal
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment