-
Notifications
You must be signed in to change notification settings - Fork 7
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
Show bid history on auction #6
Comments
Guess that wasn't included bc it would need a subgraph or some other chain indexing, right? 🤔 |
Reached Zora support It can be fetched from: E.g.: query MyQuery {
nouns {
nounsEvents(
filter: {nounsBuilderAuctionEventType: NOUNS_BUILDER_AUCTION_AUCTION_BID_EVENT, nounsEventTypes: NOUNS_BUILDER_AUCTION_EVENT}, where:{collectionAddresses: "0xdf9b7d26c8fc806b1ae6273684556761ff02d422"}
) {
nodes {
eventType
transactionInfo{
blockTimestamp
}
properties {
... on NounsBuilderAuctionEvent {
__typename
properties {
... on NounsBuilderAuctionAuctionBidEventProperties {
__typename
amount
bidder
}
}
}
}
}
}
}
} Leaving this here as reference. I'll implement it when I got some spare time :D |
Yea just didn't want to make the core functionality of the app reliant on an external api or subgraph so haven't included that yet. Think for something like this a zora api call if fine though. |
Like the one on nouns.build:
The text was updated successfully, but these errors were encountered: