We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dea7418 commit 69ebaa9Copy full SHA for 69ebaa9
3 files changed
src/sdk/Query.ts
@@ -98,6 +98,8 @@ import {
98
PredictionTokenHoldersQueryVariables,
99
PredictionTraderBarsDocument,
100
PredictionTraderBarsQueryVariables,
101
+ PredictionTraderHoldingsDocument,
102
+ PredictionTraderHoldingsQueryVariables,
103
PredictionTraderMarketsStatsDocument,
104
PredictionTraderMarketsStatsQueryVariables,
105
PredictionTradersDocument,
@@ -232,6 +234,9 @@ export class Query {
232
234
this.sdk.query(PredictionTokenHoldersDocument, vars);
233
235
predictionTraderBars = async (vars: PredictionTraderBarsQueryVariables) =>
236
this.sdk.query(PredictionTraderBarsDocument, vars);
237
+ predictionTraderHoldings = async (
238
+ vars: PredictionTraderHoldingsQueryVariables,
239
+ ) => this.sdk.query(PredictionTraderHoldingsDocument, vars);
240
predictionTraderMarketsStats = async (
241
vars: PredictionTraderMarketsStatsQueryVariables,
242
) => this.sdk.query(PredictionTraderMarketsStatsDocument, vars);
0 commit comments