Skip to content

Commit

Permalink
add allowlist fields
Browse files Browse the repository at this point in the history
  • Loading branch information
wenfix committed Feb 5, 2025
1 parent 522d9a3 commit 25b2c7d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
5 changes: 5 additions & 0 deletions packages/subgraph-client/queries/get-auctions.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,11 @@ query getBatchAuctionLotsByBaseTokenAddress($baseTokenAddress: String!) {
batchAuctionLots(where: { baseToken: $baseTokenAddress }) {
...BatchCommonFields
...BatchAuctionFields
info {
allowlist {
values
}
}
}
}

Expand Down
10 changes: 8 additions & 2 deletions packages/subgraph-client/src/generated/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7534,15 +7534,16 @@ export type GetBatchAuctionLotsByBaseTokenAddressQuery = {
lastUpdatedDate: string;
lastUpdatedTransactionHash: string;
maxBidId: string;
aborted?: { date: string } | null;
cancelled?: { date: string } | null;
info?: {
key?: string | null;
name?: string | null;
description?: string | null;
tagline?: string | null;
allowlist: Array<{ values: Array<string> }>;
links: Array<{ linkId: string; url: string }>;
} | null;
aborted?: { date: string } | null;
cancelled?: { date: string } | null;
linearVesting?: {
id: string;
startDate: string;
Expand Down Expand Up @@ -7855,6 +7856,11 @@ export const GetBatchAuctionLotsByBaseTokenAddressDocument = `
batchAuctionLots(where: {baseToken: $baseTokenAddress}) {
...BatchCommonFields
...BatchAuctionFields
info {
allowlist {
values
}
}
}
}
${BatchCommonFieldsFragmentDoc}
Expand Down

0 comments on commit 25b2c7d

Please sign in to comment.