export type Maybe = T | null; export type InputMaybe = Maybe; export type Exact = { [K in keyof T]: T[K]; }; export type MakeOptional = Omit & { [SubKey in K]?: Maybe; }; export type MakeMaybe = Omit & { [SubKey in K]: Maybe; }; export type MakeEmpty = { [_ in K]?: never; }; export type Incremental = T | { [P in keyof T]?: P extends " $fragmentName" | "__typename" ? T[P] : never; }; /** All built-in and custom scalars, mapped to their actual values */ export interface Scalars { ID: { input: string; output: string; }; String: { input: string; output: string; }; Boolean: { input: boolean; output: boolean; }; Int: { input: number; output: number; }; Float: { input: number; output: number; }; BigInt: { input: number; output: string; }; } export interface AccountPnlHistoryPointObject { __typename?: "AccountPnlHistoryPointObject"; account: Scalars["String"]["output"]; cumulativePnl: Scalars["BigInt"]["output"]; /** Field for debug */ cumulativeRealizedFees: Scalars["BigInt"]["output"]; /** Field for debug */ cumulativeRealizedPnl: Scalars["BigInt"]["output"]; /** Field for debug */ cumulativeRealizedPriceImpact: Scalars["BigInt"]["output"]; /** Field for debug */ cumulativeRealizedSwapImpact: Scalars["BigInt"]["output"]; pnl: Scalars["BigInt"]["output"]; /** Field for debug */ realizedFees: Scalars["BigInt"]["output"]; /** Field for debug */ realizedPnl: Scalars["BigInt"]["output"]; /** Field for debug */ realizedPriceImpact: Scalars["BigInt"]["output"]; /** Field for debug */ realizedSwapImpact: Scalars["BigInt"]["output"]; /** Field for debug */ startUnrealizedFees: Scalars["BigInt"]["output"]; /** Field for debug */ startUnrealizedPnl: Scalars["BigInt"]["output"]; timestamp: Scalars["Int"]["output"]; /** Field for debug */ unrealizedFees: Scalars["BigInt"]["output"]; /** Field for debug */ unrealizedPnl: Scalars["BigInt"]["output"]; } export interface AccountPnlSummaryBucketObject { __typename?: "AccountPnlSummaryBucketObject"; bucketLabel: Scalars["String"]["output"]; losses: Scalars["Int"]["output"]; pnlBps: Scalars["BigInt"]["output"]; pnlUsd: Scalars["BigInt"]["output"]; /** Field for debug */ realizedBasePnlUsd: Scalars["BigInt"]["output"]; /** Field for debug */ realizedFeesUsd: Scalars["BigInt"]["output"]; realizedPnlUsd: Scalars["BigInt"]["output"]; /** Field for debug */ realizedPriceImpactUsd: Scalars["BigInt"]["output"]; /** Field for debug */ realizedSwapImpactUsd: Scalars["BigInt"]["output"]; /** Field for debug */ startUnrealizedBasePnlUsd: Scalars["BigInt"]["output"]; /** Field for debug */ startUnrealizedFeesUsd: Scalars["BigInt"]["output"]; startUnrealizedPnlUsd: Scalars["BigInt"]["output"]; /** Field for debug */ unrealizedBasePnlUsd: Scalars["BigInt"]["output"]; /** Field for debug */ unrealizedFeesUsd: Scalars["BigInt"]["output"]; unrealizedPnlUsd: Scalars["BigInt"]["output"]; usedCapitalUsd: Scalars["BigInt"]["output"]; volume: Scalars["BigInt"]["output"]; wins: Scalars["Int"]["output"]; /** Null when no losses and no wins */ winsLossesRatioBps?: Maybe; } export interface AccountStat { __typename?: "AccountStat"; account: Scalars["String"]["output"]; closedCount: Scalars["Int"]["output"]; cumsumCollateral: Scalars["BigInt"]["output"]; cumsumSize: Scalars["BigInt"]["output"]; dayTimestamp?: Maybe; deposits: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; losses: Scalars["Int"]["output"]; maxCapital: Scalars["BigInt"]["output"]; maxNetCapitalRunningDelta?: Maybe; netCapital: Scalars["BigInt"]["output"]; netCapitalDelta?: Maybe; period: Scalars["String"]["output"]; positions: Array; realizedFees: Scalars["BigInt"]["output"]; realizedPnl: Scalars["BigInt"]["output"]; realizedPriceImpact: Scalars["BigInt"]["output"]; realizedSwapImpact: Scalars["BigInt"]["output"]; sumMaxSize: Scalars["BigInt"]["output"]; volume: Scalars["BigInt"]["output"]; wins: Scalars["Int"]["output"]; } export interface AccountStatpositionsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface AccountStatEdge { __typename?: "AccountStatEdge"; cursor: Scalars["String"]["output"]; node: AccountStat; } export declare enum AccountStatOrderByInput { account_ASC = "account_ASC", account_ASC_NULLS_FIRST = "account_ASC_NULLS_FIRST", account_ASC_NULLS_LAST = "account_ASC_NULLS_LAST", account_DESC = "account_DESC", account_DESC_NULLS_FIRST = "account_DESC_NULLS_FIRST", account_DESC_NULLS_LAST = "account_DESC_NULLS_LAST", closedCount_ASC = "closedCount_ASC", closedCount_ASC_NULLS_FIRST = "closedCount_ASC_NULLS_FIRST", closedCount_ASC_NULLS_LAST = "closedCount_ASC_NULLS_LAST", closedCount_DESC = "closedCount_DESC", closedCount_DESC_NULLS_FIRST = "closedCount_DESC_NULLS_FIRST", closedCount_DESC_NULLS_LAST = "closedCount_DESC_NULLS_LAST", cumsumCollateral_ASC = "cumsumCollateral_ASC", cumsumCollateral_ASC_NULLS_FIRST = "cumsumCollateral_ASC_NULLS_FIRST", cumsumCollateral_ASC_NULLS_LAST = "cumsumCollateral_ASC_NULLS_LAST", cumsumCollateral_DESC = "cumsumCollateral_DESC", cumsumCollateral_DESC_NULLS_FIRST = "cumsumCollateral_DESC_NULLS_FIRST", cumsumCollateral_DESC_NULLS_LAST = "cumsumCollateral_DESC_NULLS_LAST", cumsumSize_ASC = "cumsumSize_ASC", cumsumSize_ASC_NULLS_FIRST = "cumsumSize_ASC_NULLS_FIRST", cumsumSize_ASC_NULLS_LAST = "cumsumSize_ASC_NULLS_LAST", cumsumSize_DESC = "cumsumSize_DESC", cumsumSize_DESC_NULLS_FIRST = "cumsumSize_DESC_NULLS_FIRST", cumsumSize_DESC_NULLS_LAST = "cumsumSize_DESC_NULLS_LAST", dayTimestamp_ASC = "dayTimestamp_ASC", dayTimestamp_ASC_NULLS_FIRST = "dayTimestamp_ASC_NULLS_FIRST", dayTimestamp_ASC_NULLS_LAST = "dayTimestamp_ASC_NULLS_LAST", dayTimestamp_DESC = "dayTimestamp_DESC", dayTimestamp_DESC_NULLS_FIRST = "dayTimestamp_DESC_NULLS_FIRST", dayTimestamp_DESC_NULLS_LAST = "dayTimestamp_DESC_NULLS_LAST", deposits_ASC = "deposits_ASC", deposits_ASC_NULLS_FIRST = "deposits_ASC_NULLS_FIRST", deposits_ASC_NULLS_LAST = "deposits_ASC_NULLS_LAST", deposits_DESC = "deposits_DESC", deposits_DESC_NULLS_FIRST = "deposits_DESC_NULLS_FIRST", deposits_DESC_NULLS_LAST = "deposits_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", losses_ASC = "losses_ASC", losses_ASC_NULLS_FIRST = "losses_ASC_NULLS_FIRST", losses_ASC_NULLS_LAST = "losses_ASC_NULLS_LAST", losses_DESC = "losses_DESC", losses_DESC_NULLS_FIRST = "losses_DESC_NULLS_FIRST", losses_DESC_NULLS_LAST = "losses_DESC_NULLS_LAST", maxCapital_ASC = "maxCapital_ASC", maxCapital_ASC_NULLS_FIRST = "maxCapital_ASC_NULLS_FIRST", maxCapital_ASC_NULLS_LAST = "maxCapital_ASC_NULLS_LAST", maxCapital_DESC = "maxCapital_DESC", maxCapital_DESC_NULLS_FIRST = "maxCapital_DESC_NULLS_FIRST", maxCapital_DESC_NULLS_LAST = "maxCapital_DESC_NULLS_LAST", maxNetCapitalRunningDelta_ASC = "maxNetCapitalRunningDelta_ASC", maxNetCapitalRunningDelta_ASC_NULLS_FIRST = "maxNetCapitalRunningDelta_ASC_NULLS_FIRST", maxNetCapitalRunningDelta_ASC_NULLS_LAST = "maxNetCapitalRunningDelta_ASC_NULLS_LAST", maxNetCapitalRunningDelta_DESC = "maxNetCapitalRunningDelta_DESC", maxNetCapitalRunningDelta_DESC_NULLS_FIRST = "maxNetCapitalRunningDelta_DESC_NULLS_FIRST", maxNetCapitalRunningDelta_DESC_NULLS_LAST = "maxNetCapitalRunningDelta_DESC_NULLS_LAST", netCapitalDelta_ASC = "netCapitalDelta_ASC", netCapitalDelta_ASC_NULLS_FIRST = "netCapitalDelta_ASC_NULLS_FIRST", netCapitalDelta_ASC_NULLS_LAST = "netCapitalDelta_ASC_NULLS_LAST", netCapitalDelta_DESC = "netCapitalDelta_DESC", netCapitalDelta_DESC_NULLS_FIRST = "netCapitalDelta_DESC_NULLS_FIRST", netCapitalDelta_DESC_NULLS_LAST = "netCapitalDelta_DESC_NULLS_LAST", netCapital_ASC = "netCapital_ASC", netCapital_ASC_NULLS_FIRST = "netCapital_ASC_NULLS_FIRST", netCapital_ASC_NULLS_LAST = "netCapital_ASC_NULLS_LAST", netCapital_DESC = "netCapital_DESC", netCapital_DESC_NULLS_FIRST = "netCapital_DESC_NULLS_FIRST", netCapital_DESC_NULLS_LAST = "netCapital_DESC_NULLS_LAST", period_ASC = "period_ASC", period_ASC_NULLS_FIRST = "period_ASC_NULLS_FIRST", period_ASC_NULLS_LAST = "period_ASC_NULLS_LAST", period_DESC = "period_DESC", period_DESC_NULLS_FIRST = "period_DESC_NULLS_FIRST", period_DESC_NULLS_LAST = "period_DESC_NULLS_LAST", realizedFees_ASC = "realizedFees_ASC", realizedFees_ASC_NULLS_FIRST = "realizedFees_ASC_NULLS_FIRST", realizedFees_ASC_NULLS_LAST = "realizedFees_ASC_NULLS_LAST", realizedFees_DESC = "realizedFees_DESC", realizedFees_DESC_NULLS_FIRST = "realizedFees_DESC_NULLS_FIRST", realizedFees_DESC_NULLS_LAST = "realizedFees_DESC_NULLS_LAST", realizedPnl_ASC = "realizedPnl_ASC", realizedPnl_ASC_NULLS_FIRST = "realizedPnl_ASC_NULLS_FIRST", realizedPnl_ASC_NULLS_LAST = "realizedPnl_ASC_NULLS_LAST", realizedPnl_DESC = "realizedPnl_DESC", realizedPnl_DESC_NULLS_FIRST = "realizedPnl_DESC_NULLS_FIRST", realizedPnl_DESC_NULLS_LAST = "realizedPnl_DESC_NULLS_LAST", realizedPriceImpact_ASC = "realizedPriceImpact_ASC", realizedPriceImpact_ASC_NULLS_FIRST = "realizedPriceImpact_ASC_NULLS_FIRST", realizedPriceImpact_ASC_NULLS_LAST = "realizedPriceImpact_ASC_NULLS_LAST", realizedPriceImpact_DESC = "realizedPriceImpact_DESC", realizedPriceImpact_DESC_NULLS_FIRST = "realizedPriceImpact_DESC_NULLS_FIRST", realizedPriceImpact_DESC_NULLS_LAST = "realizedPriceImpact_DESC_NULLS_LAST", realizedSwapImpact_ASC = "realizedSwapImpact_ASC", realizedSwapImpact_ASC_NULLS_FIRST = "realizedSwapImpact_ASC_NULLS_FIRST", realizedSwapImpact_ASC_NULLS_LAST = "realizedSwapImpact_ASC_NULLS_LAST", realizedSwapImpact_DESC = "realizedSwapImpact_DESC", realizedSwapImpact_DESC_NULLS_FIRST = "realizedSwapImpact_DESC_NULLS_FIRST", realizedSwapImpact_DESC_NULLS_LAST = "realizedSwapImpact_DESC_NULLS_LAST", sumMaxSize_ASC = "sumMaxSize_ASC", sumMaxSize_ASC_NULLS_FIRST = "sumMaxSize_ASC_NULLS_FIRST", sumMaxSize_ASC_NULLS_LAST = "sumMaxSize_ASC_NULLS_LAST", sumMaxSize_DESC = "sumMaxSize_DESC", sumMaxSize_DESC_NULLS_FIRST = "sumMaxSize_DESC_NULLS_FIRST", sumMaxSize_DESC_NULLS_LAST = "sumMaxSize_DESC_NULLS_LAST", volume_ASC = "volume_ASC", volume_ASC_NULLS_FIRST = "volume_ASC_NULLS_FIRST", volume_ASC_NULLS_LAST = "volume_ASC_NULLS_LAST", volume_DESC = "volume_DESC", volume_DESC_NULLS_FIRST = "volume_DESC_NULLS_FIRST", volume_DESC_NULLS_LAST = "volume_DESC_NULLS_LAST", wins_ASC = "wins_ASC", wins_ASC_NULLS_FIRST = "wins_ASC_NULLS_FIRST", wins_ASC_NULLS_LAST = "wins_ASC_NULLS_LAST", wins_DESC = "wins_DESC", wins_DESC_NULLS_FIRST = "wins_DESC_NULLS_FIRST", wins_DESC_NULLS_LAST = "wins_DESC_NULLS_LAST" } export interface AccountStatWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; account_contains?: InputMaybe; account_containsInsensitive?: InputMaybe; account_endsWith?: InputMaybe; account_eq?: InputMaybe; account_gt?: InputMaybe; account_gte?: InputMaybe; account_in?: InputMaybe>; account_isNull?: InputMaybe; account_lt?: InputMaybe; account_lte?: InputMaybe; account_not_contains?: InputMaybe; account_not_containsInsensitive?: InputMaybe; account_not_endsWith?: InputMaybe; account_not_eq?: InputMaybe; account_not_in?: InputMaybe>; account_not_startsWith?: InputMaybe; account_startsWith?: InputMaybe; closedCount_eq?: InputMaybe; closedCount_gt?: InputMaybe; closedCount_gte?: InputMaybe; closedCount_in?: InputMaybe>; closedCount_isNull?: InputMaybe; closedCount_lt?: InputMaybe; closedCount_lte?: InputMaybe; closedCount_not_eq?: InputMaybe; closedCount_not_in?: InputMaybe>; cumsumCollateral_eq?: InputMaybe; cumsumCollateral_gt?: InputMaybe; cumsumCollateral_gte?: InputMaybe; cumsumCollateral_in?: InputMaybe>; cumsumCollateral_isNull?: InputMaybe; cumsumCollateral_lt?: InputMaybe; cumsumCollateral_lte?: InputMaybe; cumsumCollateral_not_eq?: InputMaybe; cumsumCollateral_not_in?: InputMaybe>; cumsumSize_eq?: InputMaybe; cumsumSize_gt?: InputMaybe; cumsumSize_gte?: InputMaybe; cumsumSize_in?: InputMaybe>; cumsumSize_isNull?: InputMaybe; cumsumSize_lt?: InputMaybe; cumsumSize_lte?: InputMaybe; cumsumSize_not_eq?: InputMaybe; cumsumSize_not_in?: InputMaybe>; dayTimestamp_eq?: InputMaybe; dayTimestamp_gt?: InputMaybe; dayTimestamp_gte?: InputMaybe; dayTimestamp_in?: InputMaybe>; dayTimestamp_isNull?: InputMaybe; dayTimestamp_lt?: InputMaybe; dayTimestamp_lte?: InputMaybe; dayTimestamp_not_eq?: InputMaybe; dayTimestamp_not_in?: InputMaybe>; deposits_eq?: InputMaybe; deposits_gt?: InputMaybe; deposits_gte?: InputMaybe; deposits_in?: InputMaybe>; deposits_isNull?: InputMaybe; deposits_lt?: InputMaybe; deposits_lte?: InputMaybe; deposits_not_eq?: InputMaybe; deposits_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; losses_eq?: InputMaybe; losses_gt?: InputMaybe; losses_gte?: InputMaybe; losses_in?: InputMaybe>; losses_isNull?: InputMaybe; losses_lt?: InputMaybe; losses_lte?: InputMaybe; losses_not_eq?: InputMaybe; losses_not_in?: InputMaybe>; maxCapital_eq?: InputMaybe; maxCapital_gt?: InputMaybe; maxCapital_gte?: InputMaybe; maxCapital_in?: InputMaybe>; maxCapital_isNull?: InputMaybe; maxCapital_lt?: InputMaybe; maxCapital_lte?: InputMaybe; maxCapital_not_eq?: InputMaybe; maxCapital_not_in?: InputMaybe>; maxNetCapitalRunningDelta_eq?: InputMaybe; maxNetCapitalRunningDelta_gt?: InputMaybe; maxNetCapitalRunningDelta_gte?: InputMaybe; maxNetCapitalRunningDelta_in?: InputMaybe>; maxNetCapitalRunningDelta_isNull?: InputMaybe; maxNetCapitalRunningDelta_lt?: InputMaybe; maxNetCapitalRunningDelta_lte?: InputMaybe; maxNetCapitalRunningDelta_not_eq?: InputMaybe; maxNetCapitalRunningDelta_not_in?: InputMaybe>; netCapitalDelta_eq?: InputMaybe; netCapitalDelta_gt?: InputMaybe; netCapitalDelta_gte?: InputMaybe; netCapitalDelta_in?: InputMaybe>; netCapitalDelta_isNull?: InputMaybe; netCapitalDelta_lt?: InputMaybe; netCapitalDelta_lte?: InputMaybe; netCapitalDelta_not_eq?: InputMaybe; netCapitalDelta_not_in?: InputMaybe>; netCapital_eq?: InputMaybe; netCapital_gt?: InputMaybe; netCapital_gte?: InputMaybe; netCapital_in?: InputMaybe>; netCapital_isNull?: InputMaybe; netCapital_lt?: InputMaybe; netCapital_lte?: InputMaybe; netCapital_not_eq?: InputMaybe; netCapital_not_in?: InputMaybe>; period_contains?: InputMaybe; period_containsInsensitive?: InputMaybe; period_endsWith?: InputMaybe; period_eq?: InputMaybe; period_gt?: InputMaybe; period_gte?: InputMaybe; period_in?: InputMaybe>; period_isNull?: InputMaybe; period_lt?: InputMaybe; period_lte?: InputMaybe; period_not_contains?: InputMaybe; period_not_containsInsensitive?: InputMaybe; period_not_endsWith?: InputMaybe; period_not_eq?: InputMaybe; period_not_in?: InputMaybe>; period_not_startsWith?: InputMaybe; period_startsWith?: InputMaybe; positions_every?: InputMaybe; positions_none?: InputMaybe; positions_some?: InputMaybe; realizedFees_eq?: InputMaybe; realizedFees_gt?: InputMaybe; realizedFees_gte?: InputMaybe; realizedFees_in?: InputMaybe>; realizedFees_isNull?: InputMaybe; realizedFees_lt?: InputMaybe; realizedFees_lte?: InputMaybe; realizedFees_not_eq?: InputMaybe; realizedFees_not_in?: InputMaybe>; realizedPnl_eq?: InputMaybe; realizedPnl_gt?: InputMaybe; realizedPnl_gte?: InputMaybe; realizedPnl_in?: InputMaybe>; realizedPnl_isNull?: InputMaybe; realizedPnl_lt?: InputMaybe; realizedPnl_lte?: InputMaybe; realizedPnl_not_eq?: InputMaybe; realizedPnl_not_in?: InputMaybe>; realizedPriceImpact_eq?: InputMaybe; realizedPriceImpact_gt?: InputMaybe; realizedPriceImpact_gte?: InputMaybe; realizedPriceImpact_in?: InputMaybe>; realizedPriceImpact_isNull?: InputMaybe; realizedPriceImpact_lt?: InputMaybe; realizedPriceImpact_lte?: InputMaybe; realizedPriceImpact_not_eq?: InputMaybe; realizedPriceImpact_not_in?: InputMaybe>; realizedSwapImpact_eq?: InputMaybe; realizedSwapImpact_gt?: InputMaybe; realizedSwapImpact_gte?: InputMaybe; realizedSwapImpact_in?: InputMaybe>; realizedSwapImpact_isNull?: InputMaybe; realizedSwapImpact_lt?: InputMaybe; realizedSwapImpact_lte?: InputMaybe; realizedSwapImpact_not_eq?: InputMaybe; realizedSwapImpact_not_in?: InputMaybe>; sumMaxSize_eq?: InputMaybe; sumMaxSize_gt?: InputMaybe; sumMaxSize_gte?: InputMaybe; sumMaxSize_in?: InputMaybe>; sumMaxSize_isNull?: InputMaybe; sumMaxSize_lt?: InputMaybe; sumMaxSize_lte?: InputMaybe; sumMaxSize_not_eq?: InputMaybe; sumMaxSize_not_in?: InputMaybe>; volume_eq?: InputMaybe; volume_gt?: InputMaybe; volume_gte?: InputMaybe; volume_in?: InputMaybe>; volume_isNull?: InputMaybe; volume_lt?: InputMaybe; volume_lte?: InputMaybe; volume_not_eq?: InputMaybe; volume_not_in?: InputMaybe>; wins_eq?: InputMaybe; wins_gt?: InputMaybe; wins_gte?: InputMaybe; wins_in?: InputMaybe>; wins_isNull?: InputMaybe; wins_lt?: InputMaybe; wins_lte?: InputMaybe; wins_not_eq?: InputMaybe; wins_not_in?: InputMaybe>; } export interface AccountStatsConnection { __typename?: "AccountStatsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface AccountVolumeStatObject { __typename?: "AccountVolumeStatObject"; last7DaysVolume: Scalars["BigInt"]["output"]; last14DaysVolume: Scalars["BigInt"]["output"]; last30DaysVolume: Scalars["BigInt"]["output"]; maxDailyVolume: Scalars["BigInt"]["output"]; } export interface AccountVolumeWhereInput { account: Scalars["String"]["input"]; } export interface AffiliateReferralTradeStatsByHour { __typename?: "AffiliateReferralTradeStatsByHour"; affiliate: Scalars["String"]["output"]; id: Scalars["String"]["output"]; rebatesUsd: Scalars["BigInt"]["output"]; timestamp: Scalars["Int"]["output"]; tradesCount: Scalars["Int"]["output"]; volumeUsd: Scalars["BigInt"]["output"]; } export interface AffiliateReferralTradeStatsByHourEdge { __typename?: "AffiliateReferralTradeStatsByHourEdge"; cursor: Scalars["String"]["output"]; node: AffiliateReferralTradeStatsByHour; } export declare enum AffiliateReferralTradeStatsByHourOrderByInput { affiliate_ASC = "affiliate_ASC", affiliate_ASC_NULLS_FIRST = "affiliate_ASC_NULLS_FIRST", affiliate_ASC_NULLS_LAST = "affiliate_ASC_NULLS_LAST", affiliate_DESC = "affiliate_DESC", affiliate_DESC_NULLS_FIRST = "affiliate_DESC_NULLS_FIRST", affiliate_DESC_NULLS_LAST = "affiliate_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", rebatesUsd_ASC = "rebatesUsd_ASC", rebatesUsd_ASC_NULLS_FIRST = "rebatesUsd_ASC_NULLS_FIRST", rebatesUsd_ASC_NULLS_LAST = "rebatesUsd_ASC_NULLS_LAST", rebatesUsd_DESC = "rebatesUsd_DESC", rebatesUsd_DESC_NULLS_FIRST = "rebatesUsd_DESC_NULLS_FIRST", rebatesUsd_DESC_NULLS_LAST = "rebatesUsd_DESC_NULLS_LAST", timestamp_ASC = "timestamp_ASC", timestamp_ASC_NULLS_FIRST = "timestamp_ASC_NULLS_FIRST", timestamp_ASC_NULLS_LAST = "timestamp_ASC_NULLS_LAST", timestamp_DESC = "timestamp_DESC", timestamp_DESC_NULLS_FIRST = "timestamp_DESC_NULLS_FIRST", timestamp_DESC_NULLS_LAST = "timestamp_DESC_NULLS_LAST", tradesCount_ASC = "tradesCount_ASC", tradesCount_ASC_NULLS_FIRST = "tradesCount_ASC_NULLS_FIRST", tradesCount_ASC_NULLS_LAST = "tradesCount_ASC_NULLS_LAST", tradesCount_DESC = "tradesCount_DESC", tradesCount_DESC_NULLS_FIRST = "tradesCount_DESC_NULLS_FIRST", tradesCount_DESC_NULLS_LAST = "tradesCount_DESC_NULLS_LAST", volumeUsd_ASC = "volumeUsd_ASC", volumeUsd_ASC_NULLS_FIRST = "volumeUsd_ASC_NULLS_FIRST", volumeUsd_ASC_NULLS_LAST = "volumeUsd_ASC_NULLS_LAST", volumeUsd_DESC = "volumeUsd_DESC", volumeUsd_DESC_NULLS_FIRST = "volumeUsd_DESC_NULLS_FIRST", volumeUsd_DESC_NULLS_LAST = "volumeUsd_DESC_NULLS_LAST" } export interface AffiliateReferralTradeStatsByHourWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; affiliate_contains?: InputMaybe; affiliate_containsInsensitive?: InputMaybe; affiliate_endsWith?: InputMaybe; affiliate_eq?: InputMaybe; affiliate_gt?: InputMaybe; affiliate_gte?: InputMaybe; affiliate_in?: InputMaybe>; affiliate_isNull?: InputMaybe; affiliate_lt?: InputMaybe; affiliate_lte?: InputMaybe; affiliate_not_contains?: InputMaybe; affiliate_not_containsInsensitive?: InputMaybe; affiliate_not_endsWith?: InputMaybe; affiliate_not_eq?: InputMaybe; affiliate_not_in?: InputMaybe>; affiliate_not_startsWith?: InputMaybe; affiliate_startsWith?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; rebatesUsd_eq?: InputMaybe; rebatesUsd_gt?: InputMaybe; rebatesUsd_gte?: InputMaybe; rebatesUsd_in?: InputMaybe>; rebatesUsd_isNull?: InputMaybe; rebatesUsd_lt?: InputMaybe; rebatesUsd_lte?: InputMaybe; rebatesUsd_not_eq?: InputMaybe; rebatesUsd_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_isNull?: InputMaybe; timestamp_lt?: InputMaybe; timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; tradesCount_eq?: InputMaybe; tradesCount_gt?: InputMaybe; tradesCount_gte?: InputMaybe; tradesCount_in?: InputMaybe>; tradesCount_isNull?: InputMaybe; tradesCount_lt?: InputMaybe; tradesCount_lte?: InputMaybe; tradesCount_not_eq?: InputMaybe; tradesCount_not_in?: InputMaybe>; volumeUsd_eq?: InputMaybe; volumeUsd_gt?: InputMaybe; volumeUsd_gte?: InputMaybe; volumeUsd_in?: InputMaybe>; volumeUsd_isNull?: InputMaybe; volumeUsd_lt?: InputMaybe; volumeUsd_lte?: InputMaybe; volumeUsd_not_eq?: InputMaybe; volumeUsd_not_in?: InputMaybe>; } export interface AffiliateReferralTradeStatsByHoursConnection { __typename?: "AffiliateReferralTradeStatsByHoursConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface AffiliateStatsPoint { __typename?: "AffiliateStatsPoint"; rebatesUsd: Scalars["BigInt"]["output"]; timestamp: Scalars["Float"]["output"]; tradersGained: Scalars["Float"]["output"]; tradersLost: Scalars["Float"]["output"]; tradersNet: Scalars["Float"]["output"]; tradesCount: Scalars["Float"]["output"]; volumeUsd: Scalars["BigInt"]["output"]; } export interface AffiliateStatsResponse { __typename?: "AffiliateStatsResponse"; affiliate: Scalars["String"]["output"]; bucketSizeSeconds: Scalars["Float"]["output"]; compareFrom?: Maybe; compareTo?: Maybe; from: Scalars["Float"]["output"]; hasComparison: Scalars["Boolean"]["output"]; points: Array; summary: AffiliateStatsSummary; to: Scalars["Float"]["output"]; } export interface AffiliateStatsSummary { __typename?: "AffiliateStatsSummary"; rebatesUsd: Scalars["BigInt"]["output"]; rebatesUsdDelta?: Maybe; tradersGained?: Maybe; tradersGainedDelta?: Maybe; tradersLost?: Maybe; tradersLostDelta?: Maybe; tradersNet?: Maybe; tradersNetDelta?: Maybe; tradesCount: Scalars["Float"]["output"]; tradesCountDelta?: Maybe; volumeUsd: Scalars["BigInt"]["output"]; volumeUsdDelta?: Maybe; } export interface AffiliateStatsWhereInput { affiliate: Scalars["String"]["input"]; from?: InputMaybe; to?: InputMaybe; } export interface AffiliateTraderStatsByHour { __typename?: "AffiliateTraderStatsByHour"; affiliate: Scalars["String"]["output"]; id: Scalars["String"]["output"]; timestamp: Scalars["Int"]["output"]; tradersGained: Scalars["Int"]["output"]; tradersLost: Scalars["Int"]["output"]; tradersNet: Scalars["Int"]["output"]; } export interface AffiliateTraderStatsByHourEdge { __typename?: "AffiliateTraderStatsByHourEdge"; cursor: Scalars["String"]["output"]; node: AffiliateTraderStatsByHour; } export declare enum AffiliateTraderStatsByHourOrderByInput { affiliate_ASC = "affiliate_ASC", affiliate_ASC_NULLS_FIRST = "affiliate_ASC_NULLS_FIRST", affiliate_ASC_NULLS_LAST = "affiliate_ASC_NULLS_LAST", affiliate_DESC = "affiliate_DESC", affiliate_DESC_NULLS_FIRST = "affiliate_DESC_NULLS_FIRST", affiliate_DESC_NULLS_LAST = "affiliate_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", timestamp_ASC = "timestamp_ASC", timestamp_ASC_NULLS_FIRST = "timestamp_ASC_NULLS_FIRST", timestamp_ASC_NULLS_LAST = "timestamp_ASC_NULLS_LAST", timestamp_DESC = "timestamp_DESC", timestamp_DESC_NULLS_FIRST = "timestamp_DESC_NULLS_FIRST", timestamp_DESC_NULLS_LAST = "timestamp_DESC_NULLS_LAST", tradersGained_ASC = "tradersGained_ASC", tradersGained_ASC_NULLS_FIRST = "tradersGained_ASC_NULLS_FIRST", tradersGained_ASC_NULLS_LAST = "tradersGained_ASC_NULLS_LAST", tradersGained_DESC = "tradersGained_DESC", tradersGained_DESC_NULLS_FIRST = "tradersGained_DESC_NULLS_FIRST", tradersGained_DESC_NULLS_LAST = "tradersGained_DESC_NULLS_LAST", tradersLost_ASC = "tradersLost_ASC", tradersLost_ASC_NULLS_FIRST = "tradersLost_ASC_NULLS_FIRST", tradersLost_ASC_NULLS_LAST = "tradersLost_ASC_NULLS_LAST", tradersLost_DESC = "tradersLost_DESC", tradersLost_DESC_NULLS_FIRST = "tradersLost_DESC_NULLS_FIRST", tradersLost_DESC_NULLS_LAST = "tradersLost_DESC_NULLS_LAST", tradersNet_ASC = "tradersNet_ASC", tradersNet_ASC_NULLS_FIRST = "tradersNet_ASC_NULLS_FIRST", tradersNet_ASC_NULLS_LAST = "tradersNet_ASC_NULLS_LAST", tradersNet_DESC = "tradersNet_DESC", tradersNet_DESC_NULLS_FIRST = "tradersNet_DESC_NULLS_FIRST", tradersNet_DESC_NULLS_LAST = "tradersNet_DESC_NULLS_LAST" } export interface AffiliateTraderStatsByHourWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; affiliate_contains?: InputMaybe; affiliate_containsInsensitive?: InputMaybe; affiliate_endsWith?: InputMaybe; affiliate_eq?: InputMaybe; affiliate_gt?: InputMaybe; affiliate_gte?: InputMaybe; affiliate_in?: InputMaybe>; affiliate_isNull?: InputMaybe; affiliate_lt?: InputMaybe; affiliate_lte?: InputMaybe; affiliate_not_contains?: InputMaybe; affiliate_not_containsInsensitive?: InputMaybe; affiliate_not_endsWith?: InputMaybe; affiliate_not_eq?: InputMaybe; affiliate_not_in?: InputMaybe>; affiliate_not_startsWith?: InputMaybe; affiliate_startsWith?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_isNull?: InputMaybe; timestamp_lt?: InputMaybe; timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; tradersGained_eq?: InputMaybe; tradersGained_gt?: InputMaybe; tradersGained_gte?: InputMaybe; tradersGained_in?: InputMaybe>; tradersGained_isNull?: InputMaybe; tradersGained_lt?: InputMaybe; tradersGained_lte?: InputMaybe; tradersGained_not_eq?: InputMaybe; tradersGained_not_in?: InputMaybe>; tradersLost_eq?: InputMaybe; tradersLost_gt?: InputMaybe; tradersLost_gte?: InputMaybe; tradersLost_in?: InputMaybe>; tradersLost_isNull?: InputMaybe; tradersLost_lt?: InputMaybe; tradersLost_lte?: InputMaybe; tradersLost_not_eq?: InputMaybe; tradersLost_not_in?: InputMaybe>; tradersNet_eq?: InputMaybe; tradersNet_gt?: InputMaybe; tradersNet_gte?: InputMaybe; tradersNet_in?: InputMaybe>; tradersNet_isNull?: InputMaybe; tradersNet_lt?: InputMaybe; tradersNet_lte?: InputMaybe; tradersNet_not_eq?: InputMaybe; tradersNet_not_in?: InputMaybe>; } export interface AffiliateTraderStatsByHoursConnection { __typename?: "AffiliateTraderStatsByHoursConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface AnnualizedPerformanceObject { __typename?: "AnnualizedPerformanceObject"; address: Scalars["String"]["output"]; entity: Scalars["String"]["output"]; longTokenPerformance: Scalars["BigInt"]["output"]; shortTokenPerformance: Scalars["BigInt"]["output"]; uniswapV2Performance: Scalars["BigInt"]["output"]; } export interface AprSnapshot { __typename?: "AprSnapshot"; address: Scalars["String"]["output"]; aprByBorrowingFee: Scalars["BigInt"]["output"]; aprByFee: Scalars["BigInt"]["output"]; entityType: EntityType; id: Scalars["String"]["output"]; snapshotTimestamp: Scalars["Int"]["output"]; } export interface AprSnapshotEdge { __typename?: "AprSnapshotEdge"; cursor: Scalars["String"]["output"]; node: AprSnapshot; } export declare enum AprSnapshotOrderByInput { address_ASC = "address_ASC", address_ASC_NULLS_FIRST = "address_ASC_NULLS_FIRST", address_ASC_NULLS_LAST = "address_ASC_NULLS_LAST", address_DESC = "address_DESC", address_DESC_NULLS_FIRST = "address_DESC_NULLS_FIRST", address_DESC_NULLS_LAST = "address_DESC_NULLS_LAST", aprByBorrowingFee_ASC = "aprByBorrowingFee_ASC", aprByBorrowingFee_ASC_NULLS_FIRST = "aprByBorrowingFee_ASC_NULLS_FIRST", aprByBorrowingFee_ASC_NULLS_LAST = "aprByBorrowingFee_ASC_NULLS_LAST", aprByBorrowingFee_DESC = "aprByBorrowingFee_DESC", aprByBorrowingFee_DESC_NULLS_FIRST = "aprByBorrowingFee_DESC_NULLS_FIRST", aprByBorrowingFee_DESC_NULLS_LAST = "aprByBorrowingFee_DESC_NULLS_LAST", aprByFee_ASC = "aprByFee_ASC", aprByFee_ASC_NULLS_FIRST = "aprByFee_ASC_NULLS_FIRST", aprByFee_ASC_NULLS_LAST = "aprByFee_ASC_NULLS_LAST", aprByFee_DESC = "aprByFee_DESC", aprByFee_DESC_NULLS_FIRST = "aprByFee_DESC_NULLS_FIRST", aprByFee_DESC_NULLS_LAST = "aprByFee_DESC_NULLS_LAST", entityType_ASC = "entityType_ASC", entityType_ASC_NULLS_FIRST = "entityType_ASC_NULLS_FIRST", entityType_ASC_NULLS_LAST = "entityType_ASC_NULLS_LAST", entityType_DESC = "entityType_DESC", entityType_DESC_NULLS_FIRST = "entityType_DESC_NULLS_FIRST", entityType_DESC_NULLS_LAST = "entityType_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", snapshotTimestamp_ASC = "snapshotTimestamp_ASC", snapshotTimestamp_ASC_NULLS_FIRST = "snapshotTimestamp_ASC_NULLS_FIRST", snapshotTimestamp_ASC_NULLS_LAST = "snapshotTimestamp_ASC_NULLS_LAST", snapshotTimestamp_DESC = "snapshotTimestamp_DESC", snapshotTimestamp_DESC_NULLS_FIRST = "snapshotTimestamp_DESC_NULLS_FIRST", snapshotTimestamp_DESC_NULLS_LAST = "snapshotTimestamp_DESC_NULLS_LAST" } export interface AprSnapshotWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; address_contains?: InputMaybe; address_containsInsensitive?: InputMaybe; address_endsWith?: InputMaybe; address_eq?: InputMaybe; address_gt?: InputMaybe; address_gte?: InputMaybe; address_in?: InputMaybe>; address_isNull?: InputMaybe; address_lt?: InputMaybe; address_lte?: InputMaybe; address_not_contains?: InputMaybe; address_not_containsInsensitive?: InputMaybe; address_not_endsWith?: InputMaybe; address_not_eq?: InputMaybe; address_not_in?: InputMaybe>; address_not_startsWith?: InputMaybe; address_startsWith?: InputMaybe; aprByBorrowingFee_eq?: InputMaybe; aprByBorrowingFee_gt?: InputMaybe; aprByBorrowingFee_gte?: InputMaybe; aprByBorrowingFee_in?: InputMaybe>; aprByBorrowingFee_isNull?: InputMaybe; aprByBorrowingFee_lt?: InputMaybe; aprByBorrowingFee_lte?: InputMaybe; aprByBorrowingFee_not_eq?: InputMaybe; aprByBorrowingFee_not_in?: InputMaybe>; aprByFee_eq?: InputMaybe; aprByFee_gt?: InputMaybe; aprByFee_gte?: InputMaybe; aprByFee_in?: InputMaybe>; aprByFee_isNull?: InputMaybe; aprByFee_lt?: InputMaybe; aprByFee_lte?: InputMaybe; aprByFee_not_eq?: InputMaybe; aprByFee_not_in?: InputMaybe>; entityType_eq?: InputMaybe; entityType_in?: InputMaybe>; entityType_isNull?: InputMaybe; entityType_not_eq?: InputMaybe; entityType_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; snapshotTimestamp_eq?: InputMaybe; snapshotTimestamp_gt?: InputMaybe; snapshotTimestamp_gte?: InputMaybe; snapshotTimestamp_in?: InputMaybe>; snapshotTimestamp_isNull?: InputMaybe; snapshotTimestamp_lt?: InputMaybe; snapshotTimestamp_lte?: InputMaybe; snapshotTimestamp_not_eq?: InputMaybe; snapshotTimestamp_not_in?: InputMaybe>; } export interface AprSnapshotsConnection { __typename?: "AprSnapshotsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface BorrowingRateSnapshot { __typename?: "BorrowingRateSnapshot"; address: Scalars["String"]["output"]; borrowingFactorPerSecondLong: Scalars["BigInt"]["output"]; borrowingFactorPerSecondShort: Scalars["BigInt"]["output"]; borrowingRateForPool: Scalars["BigInt"]["output"]; entityType: EntityType; id: Scalars["String"]["output"]; snapshotTimestamp: Scalars["Int"]["output"]; } export interface BorrowingRateSnapshotEdge { __typename?: "BorrowingRateSnapshotEdge"; cursor: Scalars["String"]["output"]; node: BorrowingRateSnapshot; } export declare enum BorrowingRateSnapshotOrderByInput { address_ASC = "address_ASC", address_ASC_NULLS_FIRST = "address_ASC_NULLS_FIRST", address_ASC_NULLS_LAST = "address_ASC_NULLS_LAST", address_DESC = "address_DESC", address_DESC_NULLS_FIRST = "address_DESC_NULLS_FIRST", address_DESC_NULLS_LAST = "address_DESC_NULLS_LAST", borrowingFactorPerSecondLong_ASC = "borrowingFactorPerSecondLong_ASC", borrowingFactorPerSecondLong_ASC_NULLS_FIRST = "borrowingFactorPerSecondLong_ASC_NULLS_FIRST", borrowingFactorPerSecondLong_ASC_NULLS_LAST = "borrowingFactorPerSecondLong_ASC_NULLS_LAST", borrowingFactorPerSecondLong_DESC = "borrowingFactorPerSecondLong_DESC", borrowingFactorPerSecondLong_DESC_NULLS_FIRST = "borrowingFactorPerSecondLong_DESC_NULLS_FIRST", borrowingFactorPerSecondLong_DESC_NULLS_LAST = "borrowingFactorPerSecondLong_DESC_NULLS_LAST", borrowingFactorPerSecondShort_ASC = "borrowingFactorPerSecondShort_ASC", borrowingFactorPerSecondShort_ASC_NULLS_FIRST = "borrowingFactorPerSecondShort_ASC_NULLS_FIRST", borrowingFactorPerSecondShort_ASC_NULLS_LAST = "borrowingFactorPerSecondShort_ASC_NULLS_LAST", borrowingFactorPerSecondShort_DESC = "borrowingFactorPerSecondShort_DESC", borrowingFactorPerSecondShort_DESC_NULLS_FIRST = "borrowingFactorPerSecondShort_DESC_NULLS_FIRST", borrowingFactorPerSecondShort_DESC_NULLS_LAST = "borrowingFactorPerSecondShort_DESC_NULLS_LAST", borrowingRateForPool_ASC = "borrowingRateForPool_ASC", borrowingRateForPool_ASC_NULLS_FIRST = "borrowingRateForPool_ASC_NULLS_FIRST", borrowingRateForPool_ASC_NULLS_LAST = "borrowingRateForPool_ASC_NULLS_LAST", borrowingRateForPool_DESC = "borrowingRateForPool_DESC", borrowingRateForPool_DESC_NULLS_FIRST = "borrowingRateForPool_DESC_NULLS_FIRST", borrowingRateForPool_DESC_NULLS_LAST = "borrowingRateForPool_DESC_NULLS_LAST", entityType_ASC = "entityType_ASC", entityType_ASC_NULLS_FIRST = "entityType_ASC_NULLS_FIRST", entityType_ASC_NULLS_LAST = "entityType_ASC_NULLS_LAST", entityType_DESC = "entityType_DESC", entityType_DESC_NULLS_FIRST = "entityType_DESC_NULLS_FIRST", entityType_DESC_NULLS_LAST = "entityType_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", snapshotTimestamp_ASC = "snapshotTimestamp_ASC", snapshotTimestamp_ASC_NULLS_FIRST = "snapshotTimestamp_ASC_NULLS_FIRST", snapshotTimestamp_ASC_NULLS_LAST = "snapshotTimestamp_ASC_NULLS_LAST", snapshotTimestamp_DESC = "snapshotTimestamp_DESC", snapshotTimestamp_DESC_NULLS_FIRST = "snapshotTimestamp_DESC_NULLS_FIRST", snapshotTimestamp_DESC_NULLS_LAST = "snapshotTimestamp_DESC_NULLS_LAST" } export interface BorrowingRateSnapshotWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; address_contains?: InputMaybe; address_containsInsensitive?: InputMaybe; address_endsWith?: InputMaybe; address_eq?: InputMaybe; address_gt?: InputMaybe; address_gte?: InputMaybe; address_in?: InputMaybe>; address_isNull?: InputMaybe; address_lt?: InputMaybe; address_lte?: InputMaybe; address_not_contains?: InputMaybe; address_not_containsInsensitive?: InputMaybe; address_not_endsWith?: InputMaybe; address_not_eq?: InputMaybe; address_not_in?: InputMaybe>; address_not_startsWith?: InputMaybe; address_startsWith?: InputMaybe; borrowingFactorPerSecondLong_eq?: InputMaybe; borrowingFactorPerSecondLong_gt?: InputMaybe; borrowingFactorPerSecondLong_gte?: InputMaybe; borrowingFactorPerSecondLong_in?: InputMaybe>; borrowingFactorPerSecondLong_isNull?: InputMaybe; borrowingFactorPerSecondLong_lt?: InputMaybe; borrowingFactorPerSecondLong_lte?: InputMaybe; borrowingFactorPerSecondLong_not_eq?: InputMaybe; borrowingFactorPerSecondLong_not_in?: InputMaybe>; borrowingFactorPerSecondShort_eq?: InputMaybe; borrowingFactorPerSecondShort_gt?: InputMaybe; borrowingFactorPerSecondShort_gte?: InputMaybe; borrowingFactorPerSecondShort_in?: InputMaybe>; borrowingFactorPerSecondShort_isNull?: InputMaybe; borrowingFactorPerSecondShort_lt?: InputMaybe; borrowingFactorPerSecondShort_lte?: InputMaybe; borrowingFactorPerSecondShort_not_eq?: InputMaybe; borrowingFactorPerSecondShort_not_in?: InputMaybe>; borrowingRateForPool_eq?: InputMaybe; borrowingRateForPool_gt?: InputMaybe; borrowingRateForPool_gte?: InputMaybe; borrowingRateForPool_in?: InputMaybe>; borrowingRateForPool_isNull?: InputMaybe; borrowingRateForPool_lt?: InputMaybe; borrowingRateForPool_lte?: InputMaybe; borrowingRateForPool_not_eq?: InputMaybe; borrowingRateForPool_not_in?: InputMaybe>; entityType_eq?: InputMaybe; entityType_in?: InputMaybe>; entityType_isNull?: InputMaybe; entityType_not_eq?: InputMaybe; entityType_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; snapshotTimestamp_eq?: InputMaybe; snapshotTimestamp_gt?: InputMaybe; snapshotTimestamp_gte?: InputMaybe; snapshotTimestamp_in?: InputMaybe>; snapshotTimestamp_isNull?: InputMaybe; snapshotTimestamp_lt?: InputMaybe; snapshotTimestamp_lte?: InputMaybe; snapshotTimestamp_not_eq?: InputMaybe; snapshotTimestamp_not_in?: InputMaybe>; } export interface BorrowingRateSnapshotsConnection { __typename?: "BorrowingRateSnapshotsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface ClaimAction { __typename?: "ClaimAction"; account: Scalars["String"]["output"]; amounts: Array; eventName: ClaimActionType; id: Scalars["String"]["output"]; isLongOrders: Array; marketAddresses: Array; timestamp: Scalars["Int"]["output"]; tokenAddresses: Array; tokenPrices: Array; transactionHash: Scalars["String"]["output"]; } export interface ClaimActionEdge { __typename?: "ClaimActionEdge"; cursor: Scalars["String"]["output"]; node: ClaimAction; } export declare enum ClaimActionOrderByInput { account_ASC = "account_ASC", account_ASC_NULLS_FIRST = "account_ASC_NULLS_FIRST", account_ASC_NULLS_LAST = "account_ASC_NULLS_LAST", account_DESC = "account_DESC", account_DESC_NULLS_FIRST = "account_DESC_NULLS_FIRST", account_DESC_NULLS_LAST = "account_DESC_NULLS_LAST", eventName_ASC = "eventName_ASC", eventName_ASC_NULLS_FIRST = "eventName_ASC_NULLS_FIRST", eventName_ASC_NULLS_LAST = "eventName_ASC_NULLS_LAST", eventName_DESC = "eventName_DESC", eventName_DESC_NULLS_FIRST = "eventName_DESC_NULLS_FIRST", eventName_DESC_NULLS_LAST = "eventName_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", timestamp_ASC = "timestamp_ASC", timestamp_ASC_NULLS_FIRST = "timestamp_ASC_NULLS_FIRST", timestamp_ASC_NULLS_LAST = "timestamp_ASC_NULLS_LAST", timestamp_DESC = "timestamp_DESC", timestamp_DESC_NULLS_FIRST = "timestamp_DESC_NULLS_FIRST", timestamp_DESC_NULLS_LAST = "timestamp_DESC_NULLS_LAST", transactionHash_ASC = "transactionHash_ASC", transactionHash_ASC_NULLS_FIRST = "transactionHash_ASC_NULLS_FIRST", transactionHash_ASC_NULLS_LAST = "transactionHash_ASC_NULLS_LAST", transactionHash_DESC = "transactionHash_DESC", transactionHash_DESC_NULLS_FIRST = "transactionHash_DESC_NULLS_FIRST", transactionHash_DESC_NULLS_LAST = "transactionHash_DESC_NULLS_LAST" } export declare enum ClaimActionType { ClaimFunding = "ClaimFunding", ClaimPriceImpact = "ClaimPriceImpact", SettleFundingFeeCancelled = "SettleFundingFeeCancelled", SettleFundingFeeCreated = "SettleFundingFeeCreated", SettleFundingFeeExecuted = "SettleFundingFeeExecuted" } export interface ClaimActionWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; account_contains?: InputMaybe; account_containsInsensitive?: InputMaybe; account_endsWith?: InputMaybe; account_eq?: InputMaybe; account_gt?: InputMaybe; account_gte?: InputMaybe; account_in?: InputMaybe>; account_isNull?: InputMaybe; account_lt?: InputMaybe; account_lte?: InputMaybe; account_not_contains?: InputMaybe; account_not_containsInsensitive?: InputMaybe; account_not_endsWith?: InputMaybe; account_not_eq?: InputMaybe; account_not_in?: InputMaybe>; account_not_startsWith?: InputMaybe; account_startsWith?: InputMaybe; amounts_containsAll?: InputMaybe>; amounts_containsAny?: InputMaybe>; amounts_containsNone?: InputMaybe>; amounts_isNull?: InputMaybe; eventName_eq?: InputMaybe; eventName_in?: InputMaybe>; eventName_isNull?: InputMaybe; eventName_not_eq?: InputMaybe; eventName_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; isLongOrders_containsAll?: InputMaybe>; isLongOrders_containsAny?: InputMaybe>; isLongOrders_containsNone?: InputMaybe>; isLongOrders_isNull?: InputMaybe; marketAddresses_containsAll?: InputMaybe>; marketAddresses_containsAny?: InputMaybe>; marketAddresses_containsNone?: InputMaybe>; marketAddresses_isNull?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_isNull?: InputMaybe; timestamp_lt?: InputMaybe; timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; tokenAddresses_containsAll?: InputMaybe>; tokenAddresses_containsAny?: InputMaybe>; tokenAddresses_containsNone?: InputMaybe>; tokenAddresses_isNull?: InputMaybe; tokenPrices_containsAll?: InputMaybe>; tokenPrices_containsAny?: InputMaybe>; tokenPrices_containsNone?: InputMaybe>; tokenPrices_isNull?: InputMaybe; transactionHash_contains?: InputMaybe; transactionHash_containsInsensitive?: InputMaybe; transactionHash_endsWith?: InputMaybe; transactionHash_eq?: InputMaybe; transactionHash_gt?: InputMaybe; transactionHash_gte?: InputMaybe; transactionHash_in?: InputMaybe>; transactionHash_isNull?: InputMaybe; transactionHash_lt?: InputMaybe; transactionHash_lte?: InputMaybe; transactionHash_not_contains?: InputMaybe; transactionHash_not_containsInsensitive?: InputMaybe; transactionHash_not_endsWith?: InputMaybe; transactionHash_not_eq?: InputMaybe; transactionHash_not_in?: InputMaybe>; transactionHash_not_startsWith?: InputMaybe; transactionHash_startsWith?: InputMaybe; } export interface ClaimActionsConnection { __typename?: "ClaimActionsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface ClaimRef { __typename?: "ClaimRef"; id: Scalars["String"]["output"]; } export interface ClaimRefEdge { __typename?: "ClaimRefEdge"; cursor: Scalars["String"]["output"]; node: ClaimRef; } export declare enum ClaimRefOrderByInput { id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST" } export interface ClaimRefWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; } export interface ClaimRefsConnection { __typename?: "ClaimRefsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface ClaimableAmount { __typename?: "ClaimableAmount"; account: Scalars["String"]["output"]; amount: Scalars["BigInt"]["output"]; amountInUsd?: Maybe; distributionId: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; token: Scalars["String"]["output"]; } export interface ClaimableAmountEdge { __typename?: "ClaimableAmountEdge"; cursor: Scalars["String"]["output"]; node: ClaimableAmount; } export declare enum ClaimableAmountOrderByInput { account_ASC = "account_ASC", account_ASC_NULLS_FIRST = "account_ASC_NULLS_FIRST", account_ASC_NULLS_LAST = "account_ASC_NULLS_LAST", account_DESC = "account_DESC", account_DESC_NULLS_FIRST = "account_DESC_NULLS_FIRST", account_DESC_NULLS_LAST = "account_DESC_NULLS_LAST", amountInUsd_ASC = "amountInUsd_ASC", amountInUsd_ASC_NULLS_FIRST = "amountInUsd_ASC_NULLS_FIRST", amountInUsd_ASC_NULLS_LAST = "amountInUsd_ASC_NULLS_LAST", amountInUsd_DESC = "amountInUsd_DESC", amountInUsd_DESC_NULLS_FIRST = "amountInUsd_DESC_NULLS_FIRST", amountInUsd_DESC_NULLS_LAST = "amountInUsd_DESC_NULLS_LAST", amount_ASC = "amount_ASC", amount_ASC_NULLS_FIRST = "amount_ASC_NULLS_FIRST", amount_ASC_NULLS_LAST = "amount_ASC_NULLS_LAST", amount_DESC = "amount_DESC", amount_DESC_NULLS_FIRST = "amount_DESC_NULLS_FIRST", amount_DESC_NULLS_LAST = "amount_DESC_NULLS_LAST", distributionId_ASC = "distributionId_ASC", distributionId_ASC_NULLS_FIRST = "distributionId_ASC_NULLS_FIRST", distributionId_ASC_NULLS_LAST = "distributionId_ASC_NULLS_LAST", distributionId_DESC = "distributionId_DESC", distributionId_DESC_NULLS_FIRST = "distributionId_DESC_NULLS_FIRST", distributionId_DESC_NULLS_LAST = "distributionId_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", token_ASC = "token_ASC", token_ASC_NULLS_FIRST = "token_ASC_NULLS_FIRST", token_ASC_NULLS_LAST = "token_ASC_NULLS_LAST", token_DESC = "token_DESC", token_DESC_NULLS_FIRST = "token_DESC_NULLS_FIRST", token_DESC_NULLS_LAST = "token_DESC_NULLS_LAST" } export interface ClaimableAmountWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; account_contains?: InputMaybe; account_containsInsensitive?: InputMaybe; account_endsWith?: InputMaybe; account_eq?: InputMaybe; account_gt?: InputMaybe; account_gte?: InputMaybe; account_in?: InputMaybe>; account_isNull?: InputMaybe; account_lt?: InputMaybe; account_lte?: InputMaybe; account_not_contains?: InputMaybe; account_not_containsInsensitive?: InputMaybe; account_not_endsWith?: InputMaybe; account_not_eq?: InputMaybe; account_not_in?: InputMaybe>; account_not_startsWith?: InputMaybe; account_startsWith?: InputMaybe; amountInUsd_eq?: InputMaybe; amountInUsd_gt?: InputMaybe; amountInUsd_gte?: InputMaybe; amountInUsd_in?: InputMaybe>; amountInUsd_isNull?: InputMaybe; amountInUsd_lt?: InputMaybe; amountInUsd_lte?: InputMaybe; amountInUsd_not_eq?: InputMaybe; amountInUsd_not_in?: InputMaybe>; amount_eq?: InputMaybe; amount_gt?: InputMaybe; amount_gte?: InputMaybe; amount_in?: InputMaybe>; amount_isNull?: InputMaybe; amount_lt?: InputMaybe; amount_lte?: InputMaybe; amount_not_eq?: InputMaybe; amount_not_in?: InputMaybe>; distributionId_eq?: InputMaybe; distributionId_gt?: InputMaybe; distributionId_gte?: InputMaybe; distributionId_in?: InputMaybe>; distributionId_isNull?: InputMaybe; distributionId_lt?: InputMaybe; distributionId_lte?: InputMaybe; distributionId_not_eq?: InputMaybe; distributionId_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; token_contains?: InputMaybe; token_containsInsensitive?: InputMaybe; token_endsWith?: InputMaybe; token_eq?: InputMaybe; token_gt?: InputMaybe; token_gte?: InputMaybe; token_in?: InputMaybe>; token_isNull?: InputMaybe; token_lt?: InputMaybe; token_lte?: InputMaybe; token_not_contains?: InputMaybe; token_not_containsInsensitive?: InputMaybe; token_not_endsWith?: InputMaybe; token_not_eq?: InputMaybe; token_not_in?: InputMaybe>; token_not_startsWith?: InputMaybe; token_startsWith?: InputMaybe; } export interface ClaimableAmountsConnection { __typename?: "ClaimableAmountsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface ClaimableCollateral { __typename?: "ClaimableCollateral"; account: Scalars["String"]["output"]; claimed: Scalars["Boolean"]["output"]; factor: Scalars["BigInt"]["output"]; factorByTime: Scalars["BigInt"]["output"]; group: ClaimableCollateralGroup; id: Scalars["String"]["output"]; marketAddress: Scalars["String"]["output"]; reductionFactor: Scalars["BigInt"]["output"]; timeKey: Scalars["Int"]["output"]; tokenAddress: Scalars["String"]["output"]; value: Scalars["BigInt"]["output"]; } export interface ClaimableCollateralEdge { __typename?: "ClaimableCollateralEdge"; cursor: Scalars["String"]["output"]; node: ClaimableCollateral; } export interface ClaimableCollateralGroup { __typename?: "ClaimableCollateralGroup"; claimables: Array; factor: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; marketAddress: Scalars["String"]["output"]; timeKey: Scalars["Int"]["output"]; tokenAddress: Scalars["String"]["output"]; } export interface ClaimableCollateralGroupclaimablesArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface ClaimableCollateralGroupEdge { __typename?: "ClaimableCollateralGroupEdge"; cursor: Scalars["String"]["output"]; node: ClaimableCollateralGroup; } export declare enum ClaimableCollateralGroupOrderByInput { factor_ASC = "factor_ASC", factor_ASC_NULLS_FIRST = "factor_ASC_NULLS_FIRST", factor_ASC_NULLS_LAST = "factor_ASC_NULLS_LAST", factor_DESC = "factor_DESC", factor_DESC_NULLS_FIRST = "factor_DESC_NULLS_FIRST", factor_DESC_NULLS_LAST = "factor_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", marketAddress_ASC = "marketAddress_ASC", marketAddress_ASC_NULLS_FIRST = "marketAddress_ASC_NULLS_FIRST", marketAddress_ASC_NULLS_LAST = "marketAddress_ASC_NULLS_LAST", marketAddress_DESC = "marketAddress_DESC", marketAddress_DESC_NULLS_FIRST = "marketAddress_DESC_NULLS_FIRST", marketAddress_DESC_NULLS_LAST = "marketAddress_DESC_NULLS_LAST", timeKey_ASC = "timeKey_ASC", timeKey_ASC_NULLS_FIRST = "timeKey_ASC_NULLS_FIRST", timeKey_ASC_NULLS_LAST = "timeKey_ASC_NULLS_LAST", timeKey_DESC = "timeKey_DESC", timeKey_DESC_NULLS_FIRST = "timeKey_DESC_NULLS_FIRST", timeKey_DESC_NULLS_LAST = "timeKey_DESC_NULLS_LAST", tokenAddress_ASC = "tokenAddress_ASC", tokenAddress_ASC_NULLS_FIRST = "tokenAddress_ASC_NULLS_FIRST", tokenAddress_ASC_NULLS_LAST = "tokenAddress_ASC_NULLS_LAST", tokenAddress_DESC = "tokenAddress_DESC", tokenAddress_DESC_NULLS_FIRST = "tokenAddress_DESC_NULLS_FIRST", tokenAddress_DESC_NULLS_LAST = "tokenAddress_DESC_NULLS_LAST" } export interface ClaimableCollateralGroupWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; claimables_every?: InputMaybe; claimables_none?: InputMaybe; claimables_some?: InputMaybe; factor_eq?: InputMaybe; factor_gt?: InputMaybe; factor_gte?: InputMaybe; factor_in?: InputMaybe>; factor_isNull?: InputMaybe; factor_lt?: InputMaybe; factor_lte?: InputMaybe; factor_not_eq?: InputMaybe; factor_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; marketAddress_contains?: InputMaybe; marketAddress_containsInsensitive?: InputMaybe; marketAddress_endsWith?: InputMaybe; marketAddress_eq?: InputMaybe; marketAddress_gt?: InputMaybe; marketAddress_gte?: InputMaybe; marketAddress_in?: InputMaybe>; marketAddress_isNull?: InputMaybe; marketAddress_lt?: InputMaybe; marketAddress_lte?: InputMaybe; marketAddress_not_contains?: InputMaybe; marketAddress_not_containsInsensitive?: InputMaybe; marketAddress_not_endsWith?: InputMaybe; marketAddress_not_eq?: InputMaybe; marketAddress_not_in?: InputMaybe>; marketAddress_not_startsWith?: InputMaybe; marketAddress_startsWith?: InputMaybe; timeKey_eq?: InputMaybe; timeKey_gt?: InputMaybe; timeKey_gte?: InputMaybe; timeKey_in?: InputMaybe>; timeKey_isNull?: InputMaybe; timeKey_lt?: InputMaybe; timeKey_lte?: InputMaybe; timeKey_not_eq?: InputMaybe; timeKey_not_in?: InputMaybe>; tokenAddress_contains?: InputMaybe; tokenAddress_containsInsensitive?: InputMaybe; tokenAddress_endsWith?: InputMaybe; tokenAddress_eq?: InputMaybe; tokenAddress_gt?: InputMaybe; tokenAddress_gte?: InputMaybe; tokenAddress_in?: InputMaybe>; tokenAddress_isNull?: InputMaybe; tokenAddress_lt?: InputMaybe; tokenAddress_lte?: InputMaybe; tokenAddress_not_contains?: InputMaybe; tokenAddress_not_containsInsensitive?: InputMaybe; tokenAddress_not_endsWith?: InputMaybe; tokenAddress_not_eq?: InputMaybe; tokenAddress_not_in?: InputMaybe>; tokenAddress_not_startsWith?: InputMaybe; tokenAddress_startsWith?: InputMaybe; } export interface ClaimableCollateralGroupsConnection { __typename?: "ClaimableCollateralGroupsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export declare enum ClaimableCollateralOrderByInput { account_ASC = "account_ASC", account_ASC_NULLS_FIRST = "account_ASC_NULLS_FIRST", account_ASC_NULLS_LAST = "account_ASC_NULLS_LAST", account_DESC = "account_DESC", account_DESC_NULLS_FIRST = "account_DESC_NULLS_FIRST", account_DESC_NULLS_LAST = "account_DESC_NULLS_LAST", claimed_ASC = "claimed_ASC", claimed_ASC_NULLS_FIRST = "claimed_ASC_NULLS_FIRST", claimed_ASC_NULLS_LAST = "claimed_ASC_NULLS_LAST", claimed_DESC = "claimed_DESC", claimed_DESC_NULLS_FIRST = "claimed_DESC_NULLS_FIRST", claimed_DESC_NULLS_LAST = "claimed_DESC_NULLS_LAST", factorByTime_ASC = "factorByTime_ASC", factorByTime_ASC_NULLS_FIRST = "factorByTime_ASC_NULLS_FIRST", factorByTime_ASC_NULLS_LAST = "factorByTime_ASC_NULLS_LAST", factorByTime_DESC = "factorByTime_DESC", factorByTime_DESC_NULLS_FIRST = "factorByTime_DESC_NULLS_FIRST", factorByTime_DESC_NULLS_LAST = "factorByTime_DESC_NULLS_LAST", factor_ASC = "factor_ASC", factor_ASC_NULLS_FIRST = "factor_ASC_NULLS_FIRST", factor_ASC_NULLS_LAST = "factor_ASC_NULLS_LAST", factor_DESC = "factor_DESC", factor_DESC_NULLS_FIRST = "factor_DESC_NULLS_FIRST", factor_DESC_NULLS_LAST = "factor_DESC_NULLS_LAST", group_factor_ASC = "group_factor_ASC", group_factor_ASC_NULLS_FIRST = "group_factor_ASC_NULLS_FIRST", group_factor_ASC_NULLS_LAST = "group_factor_ASC_NULLS_LAST", group_factor_DESC = "group_factor_DESC", group_factor_DESC_NULLS_FIRST = "group_factor_DESC_NULLS_FIRST", group_factor_DESC_NULLS_LAST = "group_factor_DESC_NULLS_LAST", group_id_ASC = "group_id_ASC", group_id_ASC_NULLS_FIRST = "group_id_ASC_NULLS_FIRST", group_id_ASC_NULLS_LAST = "group_id_ASC_NULLS_LAST", group_id_DESC = "group_id_DESC", group_id_DESC_NULLS_FIRST = "group_id_DESC_NULLS_FIRST", group_id_DESC_NULLS_LAST = "group_id_DESC_NULLS_LAST", group_marketAddress_ASC = "group_marketAddress_ASC", group_marketAddress_ASC_NULLS_FIRST = "group_marketAddress_ASC_NULLS_FIRST", group_marketAddress_ASC_NULLS_LAST = "group_marketAddress_ASC_NULLS_LAST", group_marketAddress_DESC = "group_marketAddress_DESC", group_marketAddress_DESC_NULLS_FIRST = "group_marketAddress_DESC_NULLS_FIRST", group_marketAddress_DESC_NULLS_LAST = "group_marketAddress_DESC_NULLS_LAST", group_timeKey_ASC = "group_timeKey_ASC", group_timeKey_ASC_NULLS_FIRST = "group_timeKey_ASC_NULLS_FIRST", group_timeKey_ASC_NULLS_LAST = "group_timeKey_ASC_NULLS_LAST", group_timeKey_DESC = "group_timeKey_DESC", group_timeKey_DESC_NULLS_FIRST = "group_timeKey_DESC_NULLS_FIRST", group_timeKey_DESC_NULLS_LAST = "group_timeKey_DESC_NULLS_LAST", group_tokenAddress_ASC = "group_tokenAddress_ASC", group_tokenAddress_ASC_NULLS_FIRST = "group_tokenAddress_ASC_NULLS_FIRST", group_tokenAddress_ASC_NULLS_LAST = "group_tokenAddress_ASC_NULLS_LAST", group_tokenAddress_DESC = "group_tokenAddress_DESC", group_tokenAddress_DESC_NULLS_FIRST = "group_tokenAddress_DESC_NULLS_FIRST", group_tokenAddress_DESC_NULLS_LAST = "group_tokenAddress_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", marketAddress_ASC = "marketAddress_ASC", marketAddress_ASC_NULLS_FIRST = "marketAddress_ASC_NULLS_FIRST", marketAddress_ASC_NULLS_LAST = "marketAddress_ASC_NULLS_LAST", marketAddress_DESC = "marketAddress_DESC", marketAddress_DESC_NULLS_FIRST = "marketAddress_DESC_NULLS_FIRST", marketAddress_DESC_NULLS_LAST = "marketAddress_DESC_NULLS_LAST", reductionFactor_ASC = "reductionFactor_ASC", reductionFactor_ASC_NULLS_FIRST = "reductionFactor_ASC_NULLS_FIRST", reductionFactor_ASC_NULLS_LAST = "reductionFactor_ASC_NULLS_LAST", reductionFactor_DESC = "reductionFactor_DESC", reductionFactor_DESC_NULLS_FIRST = "reductionFactor_DESC_NULLS_FIRST", reductionFactor_DESC_NULLS_LAST = "reductionFactor_DESC_NULLS_LAST", timeKey_ASC = "timeKey_ASC", timeKey_ASC_NULLS_FIRST = "timeKey_ASC_NULLS_FIRST", timeKey_ASC_NULLS_LAST = "timeKey_ASC_NULLS_LAST", timeKey_DESC = "timeKey_DESC", timeKey_DESC_NULLS_FIRST = "timeKey_DESC_NULLS_FIRST", timeKey_DESC_NULLS_LAST = "timeKey_DESC_NULLS_LAST", tokenAddress_ASC = "tokenAddress_ASC", tokenAddress_ASC_NULLS_FIRST = "tokenAddress_ASC_NULLS_FIRST", tokenAddress_ASC_NULLS_LAST = "tokenAddress_ASC_NULLS_LAST", tokenAddress_DESC = "tokenAddress_DESC", tokenAddress_DESC_NULLS_FIRST = "tokenAddress_DESC_NULLS_FIRST", tokenAddress_DESC_NULLS_LAST = "tokenAddress_DESC_NULLS_LAST", value_ASC = "value_ASC", value_ASC_NULLS_FIRST = "value_ASC_NULLS_FIRST", value_ASC_NULLS_LAST = "value_ASC_NULLS_LAST", value_DESC = "value_DESC", value_DESC_NULLS_FIRST = "value_DESC_NULLS_FIRST", value_DESC_NULLS_LAST = "value_DESC_NULLS_LAST" } export interface ClaimableCollateralWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; account_contains?: InputMaybe; account_containsInsensitive?: InputMaybe; account_endsWith?: InputMaybe; account_eq?: InputMaybe; account_gt?: InputMaybe; account_gte?: InputMaybe; account_in?: InputMaybe>; account_isNull?: InputMaybe; account_lt?: InputMaybe; account_lte?: InputMaybe; account_not_contains?: InputMaybe; account_not_containsInsensitive?: InputMaybe; account_not_endsWith?: InputMaybe; account_not_eq?: InputMaybe; account_not_in?: InputMaybe>; account_not_startsWith?: InputMaybe; account_startsWith?: InputMaybe; claimed_eq?: InputMaybe; claimed_isNull?: InputMaybe; claimed_not_eq?: InputMaybe; factorByTime_eq?: InputMaybe; factorByTime_gt?: InputMaybe; factorByTime_gte?: InputMaybe; factorByTime_in?: InputMaybe>; factorByTime_isNull?: InputMaybe; factorByTime_lt?: InputMaybe; factorByTime_lte?: InputMaybe; factorByTime_not_eq?: InputMaybe; factorByTime_not_in?: InputMaybe>; factor_eq?: InputMaybe; factor_gt?: InputMaybe; factor_gte?: InputMaybe; factor_in?: InputMaybe>; factor_isNull?: InputMaybe; factor_lt?: InputMaybe; factor_lte?: InputMaybe; factor_not_eq?: InputMaybe; factor_not_in?: InputMaybe>; group?: InputMaybe; group_isNull?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; marketAddress_contains?: InputMaybe; marketAddress_containsInsensitive?: InputMaybe; marketAddress_endsWith?: InputMaybe; marketAddress_eq?: InputMaybe; marketAddress_gt?: InputMaybe; marketAddress_gte?: InputMaybe; marketAddress_in?: InputMaybe>; marketAddress_isNull?: InputMaybe; marketAddress_lt?: InputMaybe; marketAddress_lte?: InputMaybe; marketAddress_not_contains?: InputMaybe; marketAddress_not_containsInsensitive?: InputMaybe; marketAddress_not_endsWith?: InputMaybe; marketAddress_not_eq?: InputMaybe; marketAddress_not_in?: InputMaybe>; marketAddress_not_startsWith?: InputMaybe; marketAddress_startsWith?: InputMaybe; reductionFactor_eq?: InputMaybe; reductionFactor_gt?: InputMaybe; reductionFactor_gte?: InputMaybe; reductionFactor_in?: InputMaybe>; reductionFactor_isNull?: InputMaybe; reductionFactor_lt?: InputMaybe; reductionFactor_lte?: InputMaybe; reductionFactor_not_eq?: InputMaybe; reductionFactor_not_in?: InputMaybe>; timeKey_eq?: InputMaybe; timeKey_gt?: InputMaybe; timeKey_gte?: InputMaybe; timeKey_in?: InputMaybe>; timeKey_isNull?: InputMaybe; timeKey_lt?: InputMaybe; timeKey_lte?: InputMaybe; timeKey_not_eq?: InputMaybe; timeKey_not_in?: InputMaybe>; tokenAddress_contains?: InputMaybe; tokenAddress_containsInsensitive?: InputMaybe; tokenAddress_endsWith?: InputMaybe; tokenAddress_eq?: InputMaybe; tokenAddress_gt?: InputMaybe; tokenAddress_gte?: InputMaybe; tokenAddress_in?: InputMaybe>; tokenAddress_isNull?: InputMaybe; tokenAddress_lt?: InputMaybe; tokenAddress_lte?: InputMaybe; tokenAddress_not_contains?: InputMaybe; tokenAddress_not_containsInsensitive?: InputMaybe; tokenAddress_not_endsWith?: InputMaybe; tokenAddress_not_eq?: InputMaybe; tokenAddress_not_in?: InputMaybe>; tokenAddress_not_startsWith?: InputMaybe; tokenAddress_startsWith?: InputMaybe; value_eq?: InputMaybe; value_gt?: InputMaybe; value_gte?: InputMaybe; value_in?: InputMaybe>; value_isNull?: InputMaybe; value_lt?: InputMaybe; value_lte?: InputMaybe; value_not_eq?: InputMaybe; value_not_in?: InputMaybe>; } export interface ClaimableCollateralsConnection { __typename?: "ClaimableCollateralsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface ClaimableFundingFeeInfo { __typename?: "ClaimableFundingFeeInfo"; amounts: Array; id: Scalars["String"]["output"]; marketAddresses: Array; tokenAddresses: Array; } export interface ClaimableFundingFeeInfoEdge { __typename?: "ClaimableFundingFeeInfoEdge"; cursor: Scalars["String"]["output"]; node: ClaimableFundingFeeInfo; } export declare enum ClaimableFundingFeeInfoOrderByInput { id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST" } export interface ClaimableFundingFeeInfoWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; amounts_containsAll?: InputMaybe>; amounts_containsAny?: InputMaybe>; amounts_containsNone?: InputMaybe>; amounts_isNull?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; marketAddresses_containsAll?: InputMaybe>; marketAddresses_containsAny?: InputMaybe>; marketAddresses_containsNone?: InputMaybe>; marketAddresses_isNull?: InputMaybe; tokenAddresses_containsAll?: InputMaybe>; tokenAddresses_containsAny?: InputMaybe>; tokenAddresses_containsNone?: InputMaybe>; tokenAddresses_isNull?: InputMaybe; } export interface ClaimableFundingFeeInfosConnection { __typename?: "ClaimableFundingFeeInfosConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface CollectedFeesInfo { __typename?: "CollectedFeesInfo"; address: Scalars["String"]["output"]; borrowingFeeUsdForPool: Scalars["BigInt"]["output"]; borrowingFeeUsdPerPoolValue: Scalars["BigInt"]["output"]; cumulativeBorrowingFeeUsdForPool: Scalars["BigInt"]["output"]; cumulativeBorrowingFeeUsdPerPoolValue: Scalars["BigInt"]["output"]; cumulativeFeeUsdForPool: Scalars["BigInt"]["output"]; cumulativeFeeUsdPerPoolValue: Scalars["BigInt"]["output"]; entityType: EntityType; feeUsdForPool: Scalars["BigInt"]["output"]; feeUsdPerPoolValue: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; period: Scalars["String"]["output"]; timestampGroup: Scalars["Int"]["output"]; } export interface CollectedFeesInfoEdge { __typename?: "CollectedFeesInfoEdge"; cursor: Scalars["String"]["output"]; node: CollectedFeesInfo; } export declare enum CollectedFeesInfoOrderByInput { address_ASC = "address_ASC", address_ASC_NULLS_FIRST = "address_ASC_NULLS_FIRST", address_ASC_NULLS_LAST = "address_ASC_NULLS_LAST", address_DESC = "address_DESC", address_DESC_NULLS_FIRST = "address_DESC_NULLS_FIRST", address_DESC_NULLS_LAST = "address_DESC_NULLS_LAST", borrowingFeeUsdForPool_ASC = "borrowingFeeUsdForPool_ASC", borrowingFeeUsdForPool_ASC_NULLS_FIRST = "borrowingFeeUsdForPool_ASC_NULLS_FIRST", borrowingFeeUsdForPool_ASC_NULLS_LAST = "borrowingFeeUsdForPool_ASC_NULLS_LAST", borrowingFeeUsdForPool_DESC = "borrowingFeeUsdForPool_DESC", borrowingFeeUsdForPool_DESC_NULLS_FIRST = "borrowingFeeUsdForPool_DESC_NULLS_FIRST", borrowingFeeUsdForPool_DESC_NULLS_LAST = "borrowingFeeUsdForPool_DESC_NULLS_LAST", borrowingFeeUsdPerPoolValue_ASC = "borrowingFeeUsdPerPoolValue_ASC", borrowingFeeUsdPerPoolValue_ASC_NULLS_FIRST = "borrowingFeeUsdPerPoolValue_ASC_NULLS_FIRST", borrowingFeeUsdPerPoolValue_ASC_NULLS_LAST = "borrowingFeeUsdPerPoolValue_ASC_NULLS_LAST", borrowingFeeUsdPerPoolValue_DESC = "borrowingFeeUsdPerPoolValue_DESC", borrowingFeeUsdPerPoolValue_DESC_NULLS_FIRST = "borrowingFeeUsdPerPoolValue_DESC_NULLS_FIRST", borrowingFeeUsdPerPoolValue_DESC_NULLS_LAST = "borrowingFeeUsdPerPoolValue_DESC_NULLS_LAST", cumulativeBorrowingFeeUsdForPool_ASC = "cumulativeBorrowingFeeUsdForPool_ASC", cumulativeBorrowingFeeUsdForPool_ASC_NULLS_FIRST = "cumulativeBorrowingFeeUsdForPool_ASC_NULLS_FIRST", cumulativeBorrowingFeeUsdForPool_ASC_NULLS_LAST = "cumulativeBorrowingFeeUsdForPool_ASC_NULLS_LAST", cumulativeBorrowingFeeUsdForPool_DESC = "cumulativeBorrowingFeeUsdForPool_DESC", cumulativeBorrowingFeeUsdForPool_DESC_NULLS_FIRST = "cumulativeBorrowingFeeUsdForPool_DESC_NULLS_FIRST", cumulativeBorrowingFeeUsdForPool_DESC_NULLS_LAST = "cumulativeBorrowingFeeUsdForPool_DESC_NULLS_LAST", cumulativeBorrowingFeeUsdPerPoolValue_ASC = "cumulativeBorrowingFeeUsdPerPoolValue_ASC", cumulativeBorrowingFeeUsdPerPoolValue_ASC_NULLS_FIRST = "cumulativeBorrowingFeeUsdPerPoolValue_ASC_NULLS_FIRST", cumulativeBorrowingFeeUsdPerPoolValue_ASC_NULLS_LAST = "cumulativeBorrowingFeeUsdPerPoolValue_ASC_NULLS_LAST", cumulativeBorrowingFeeUsdPerPoolValue_DESC = "cumulativeBorrowingFeeUsdPerPoolValue_DESC", cumulativeBorrowingFeeUsdPerPoolValue_DESC_NULLS_FIRST = "cumulativeBorrowingFeeUsdPerPoolValue_DESC_NULLS_FIRST", cumulativeBorrowingFeeUsdPerPoolValue_DESC_NULLS_LAST = "cumulativeBorrowingFeeUsdPerPoolValue_DESC_NULLS_LAST", cumulativeFeeUsdForPool_ASC = "cumulativeFeeUsdForPool_ASC", cumulativeFeeUsdForPool_ASC_NULLS_FIRST = "cumulativeFeeUsdForPool_ASC_NULLS_FIRST", cumulativeFeeUsdForPool_ASC_NULLS_LAST = "cumulativeFeeUsdForPool_ASC_NULLS_LAST", cumulativeFeeUsdForPool_DESC = "cumulativeFeeUsdForPool_DESC", cumulativeFeeUsdForPool_DESC_NULLS_FIRST = "cumulativeFeeUsdForPool_DESC_NULLS_FIRST", cumulativeFeeUsdForPool_DESC_NULLS_LAST = "cumulativeFeeUsdForPool_DESC_NULLS_LAST", cumulativeFeeUsdPerPoolValue_ASC = "cumulativeFeeUsdPerPoolValue_ASC", cumulativeFeeUsdPerPoolValue_ASC_NULLS_FIRST = "cumulativeFeeUsdPerPoolValue_ASC_NULLS_FIRST", cumulativeFeeUsdPerPoolValue_ASC_NULLS_LAST = "cumulativeFeeUsdPerPoolValue_ASC_NULLS_LAST", cumulativeFeeUsdPerPoolValue_DESC = "cumulativeFeeUsdPerPoolValue_DESC", cumulativeFeeUsdPerPoolValue_DESC_NULLS_FIRST = "cumulativeFeeUsdPerPoolValue_DESC_NULLS_FIRST", cumulativeFeeUsdPerPoolValue_DESC_NULLS_LAST = "cumulativeFeeUsdPerPoolValue_DESC_NULLS_LAST", entityType_ASC = "entityType_ASC", entityType_ASC_NULLS_FIRST = "entityType_ASC_NULLS_FIRST", entityType_ASC_NULLS_LAST = "entityType_ASC_NULLS_LAST", entityType_DESC = "entityType_DESC", entityType_DESC_NULLS_FIRST = "entityType_DESC_NULLS_FIRST", entityType_DESC_NULLS_LAST = "entityType_DESC_NULLS_LAST", feeUsdForPool_ASC = "feeUsdForPool_ASC", feeUsdForPool_ASC_NULLS_FIRST = "feeUsdForPool_ASC_NULLS_FIRST", feeUsdForPool_ASC_NULLS_LAST = "feeUsdForPool_ASC_NULLS_LAST", feeUsdForPool_DESC = "feeUsdForPool_DESC", feeUsdForPool_DESC_NULLS_FIRST = "feeUsdForPool_DESC_NULLS_FIRST", feeUsdForPool_DESC_NULLS_LAST = "feeUsdForPool_DESC_NULLS_LAST", feeUsdPerPoolValue_ASC = "feeUsdPerPoolValue_ASC", feeUsdPerPoolValue_ASC_NULLS_FIRST = "feeUsdPerPoolValue_ASC_NULLS_FIRST", feeUsdPerPoolValue_ASC_NULLS_LAST = "feeUsdPerPoolValue_ASC_NULLS_LAST", feeUsdPerPoolValue_DESC = "feeUsdPerPoolValue_DESC", feeUsdPerPoolValue_DESC_NULLS_FIRST = "feeUsdPerPoolValue_DESC_NULLS_FIRST", feeUsdPerPoolValue_DESC_NULLS_LAST = "feeUsdPerPoolValue_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", period_ASC = "period_ASC", period_ASC_NULLS_FIRST = "period_ASC_NULLS_FIRST", period_ASC_NULLS_LAST = "period_ASC_NULLS_LAST", period_DESC = "period_DESC", period_DESC_NULLS_FIRST = "period_DESC_NULLS_FIRST", period_DESC_NULLS_LAST = "period_DESC_NULLS_LAST", timestampGroup_ASC = "timestampGroup_ASC", timestampGroup_ASC_NULLS_FIRST = "timestampGroup_ASC_NULLS_FIRST", timestampGroup_ASC_NULLS_LAST = "timestampGroup_ASC_NULLS_LAST", timestampGroup_DESC = "timestampGroup_DESC", timestampGroup_DESC_NULLS_FIRST = "timestampGroup_DESC_NULLS_FIRST", timestampGroup_DESC_NULLS_LAST = "timestampGroup_DESC_NULLS_LAST" } export interface CollectedFeesInfoWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; address_contains?: InputMaybe; address_containsInsensitive?: InputMaybe; address_endsWith?: InputMaybe; address_eq?: InputMaybe; address_gt?: InputMaybe; address_gte?: InputMaybe; address_in?: InputMaybe>; address_isNull?: InputMaybe; address_lt?: InputMaybe; address_lte?: InputMaybe; address_not_contains?: InputMaybe; address_not_containsInsensitive?: InputMaybe; address_not_endsWith?: InputMaybe; address_not_eq?: InputMaybe; address_not_in?: InputMaybe>; address_not_startsWith?: InputMaybe; address_startsWith?: InputMaybe; borrowingFeeUsdForPool_eq?: InputMaybe; borrowingFeeUsdForPool_gt?: InputMaybe; borrowingFeeUsdForPool_gte?: InputMaybe; borrowingFeeUsdForPool_in?: InputMaybe>; borrowingFeeUsdForPool_isNull?: InputMaybe; borrowingFeeUsdForPool_lt?: InputMaybe; borrowingFeeUsdForPool_lte?: InputMaybe; borrowingFeeUsdForPool_not_eq?: InputMaybe; borrowingFeeUsdForPool_not_in?: InputMaybe>; borrowingFeeUsdPerPoolValue_eq?: InputMaybe; borrowingFeeUsdPerPoolValue_gt?: InputMaybe; borrowingFeeUsdPerPoolValue_gte?: InputMaybe; borrowingFeeUsdPerPoolValue_in?: InputMaybe>; borrowingFeeUsdPerPoolValue_isNull?: InputMaybe; borrowingFeeUsdPerPoolValue_lt?: InputMaybe; borrowingFeeUsdPerPoolValue_lte?: InputMaybe; borrowingFeeUsdPerPoolValue_not_eq?: InputMaybe; borrowingFeeUsdPerPoolValue_not_in?: InputMaybe>; cumulativeBorrowingFeeUsdForPool_eq?: InputMaybe; cumulativeBorrowingFeeUsdForPool_gt?: InputMaybe; cumulativeBorrowingFeeUsdForPool_gte?: InputMaybe; cumulativeBorrowingFeeUsdForPool_in?: InputMaybe>; cumulativeBorrowingFeeUsdForPool_isNull?: InputMaybe; cumulativeBorrowingFeeUsdForPool_lt?: InputMaybe; cumulativeBorrowingFeeUsdForPool_lte?: InputMaybe; cumulativeBorrowingFeeUsdForPool_not_eq?: InputMaybe; cumulativeBorrowingFeeUsdForPool_not_in?: InputMaybe>; cumulativeBorrowingFeeUsdPerPoolValue_eq?: InputMaybe; cumulativeBorrowingFeeUsdPerPoolValue_gt?: InputMaybe; cumulativeBorrowingFeeUsdPerPoolValue_gte?: InputMaybe; cumulativeBorrowingFeeUsdPerPoolValue_in?: InputMaybe>; cumulativeBorrowingFeeUsdPerPoolValue_isNull?: InputMaybe; cumulativeBorrowingFeeUsdPerPoolValue_lt?: InputMaybe; cumulativeBorrowingFeeUsdPerPoolValue_lte?: InputMaybe; cumulativeBorrowingFeeUsdPerPoolValue_not_eq?: InputMaybe; cumulativeBorrowingFeeUsdPerPoolValue_not_in?: InputMaybe>; cumulativeFeeUsdForPool_eq?: InputMaybe; cumulativeFeeUsdForPool_gt?: InputMaybe; cumulativeFeeUsdForPool_gte?: InputMaybe; cumulativeFeeUsdForPool_in?: InputMaybe>; cumulativeFeeUsdForPool_isNull?: InputMaybe; cumulativeFeeUsdForPool_lt?: InputMaybe; cumulativeFeeUsdForPool_lte?: InputMaybe; cumulativeFeeUsdForPool_not_eq?: InputMaybe; cumulativeFeeUsdForPool_not_in?: InputMaybe>; cumulativeFeeUsdPerPoolValue_eq?: InputMaybe; cumulativeFeeUsdPerPoolValue_gt?: InputMaybe; cumulativeFeeUsdPerPoolValue_gte?: InputMaybe; cumulativeFeeUsdPerPoolValue_in?: InputMaybe>; cumulativeFeeUsdPerPoolValue_isNull?: InputMaybe; cumulativeFeeUsdPerPoolValue_lt?: InputMaybe; cumulativeFeeUsdPerPoolValue_lte?: InputMaybe; cumulativeFeeUsdPerPoolValue_not_eq?: InputMaybe; cumulativeFeeUsdPerPoolValue_not_in?: InputMaybe>; entityType_eq?: InputMaybe; entityType_in?: InputMaybe>; entityType_isNull?: InputMaybe; entityType_not_eq?: InputMaybe; entityType_not_in?: InputMaybe>; feeUsdForPool_eq?: InputMaybe; feeUsdForPool_gt?: InputMaybe; feeUsdForPool_gte?: InputMaybe; feeUsdForPool_in?: InputMaybe>; feeUsdForPool_isNull?: InputMaybe; feeUsdForPool_lt?: InputMaybe; feeUsdForPool_lte?: InputMaybe; feeUsdForPool_not_eq?: InputMaybe; feeUsdForPool_not_in?: InputMaybe>; feeUsdPerPoolValue_eq?: InputMaybe; feeUsdPerPoolValue_gt?: InputMaybe; feeUsdPerPoolValue_gte?: InputMaybe; feeUsdPerPoolValue_in?: InputMaybe>; feeUsdPerPoolValue_isNull?: InputMaybe; feeUsdPerPoolValue_lt?: InputMaybe; feeUsdPerPoolValue_lte?: InputMaybe; feeUsdPerPoolValue_not_eq?: InputMaybe; feeUsdPerPoolValue_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; period_contains?: InputMaybe; period_containsInsensitive?: InputMaybe; period_endsWith?: InputMaybe; period_eq?: InputMaybe; period_gt?: InputMaybe; period_gte?: InputMaybe; period_in?: InputMaybe>; period_isNull?: InputMaybe; period_lt?: InputMaybe; period_lte?: InputMaybe; period_not_contains?: InputMaybe; period_not_containsInsensitive?: InputMaybe; period_not_endsWith?: InputMaybe; period_not_eq?: InputMaybe; period_not_in?: InputMaybe>; period_not_startsWith?: InputMaybe; period_startsWith?: InputMaybe; timestampGroup_eq?: InputMaybe; timestampGroup_gt?: InputMaybe; timestampGroup_gte?: InputMaybe; timestampGroup_in?: InputMaybe>; timestampGroup_isNull?: InputMaybe; timestampGroup_lt?: InputMaybe; timestampGroup_lte?: InputMaybe; timestampGroup_not_eq?: InputMaybe; timestampGroup_not_in?: InputMaybe>; } export interface CollectedFeesInfosConnection { __typename?: "CollectedFeesInfosConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface CumulativePnl { __typename?: "CumulativePnl"; address: Scalars["String"]["output"]; cumulativeRealizedPnlLong: Scalars["BigInt"]["output"]; cumulativeRealizedPnlShort: Scalars["BigInt"]["output"]; cumulativeUnrealizedPnlLong: Scalars["BigInt"]["output"]; cumulativeUnrealizedPnlShort: Scalars["BigInt"]["output"]; entityType: EntityType; id: Scalars["String"]["output"]; isSnapshot: Scalars["Boolean"]["output"]; lastUnrealizedPnlLong?: Maybe; lastUnrealizedPnlShort?: Maybe; snapshotTimestamp?: Maybe; } export interface CumulativePnlEdge { __typename?: "CumulativePnlEdge"; cursor: Scalars["String"]["output"]; node: CumulativePnl; } export declare enum CumulativePnlOrderByInput { address_ASC = "address_ASC", address_ASC_NULLS_FIRST = "address_ASC_NULLS_FIRST", address_ASC_NULLS_LAST = "address_ASC_NULLS_LAST", address_DESC = "address_DESC", address_DESC_NULLS_FIRST = "address_DESC_NULLS_FIRST", address_DESC_NULLS_LAST = "address_DESC_NULLS_LAST", cumulativeRealizedPnlLong_ASC = "cumulativeRealizedPnlLong_ASC", cumulativeRealizedPnlLong_ASC_NULLS_FIRST = "cumulativeRealizedPnlLong_ASC_NULLS_FIRST", cumulativeRealizedPnlLong_ASC_NULLS_LAST = "cumulativeRealizedPnlLong_ASC_NULLS_LAST", cumulativeRealizedPnlLong_DESC = "cumulativeRealizedPnlLong_DESC", cumulativeRealizedPnlLong_DESC_NULLS_FIRST = "cumulativeRealizedPnlLong_DESC_NULLS_FIRST", cumulativeRealizedPnlLong_DESC_NULLS_LAST = "cumulativeRealizedPnlLong_DESC_NULLS_LAST", cumulativeRealizedPnlShort_ASC = "cumulativeRealizedPnlShort_ASC", cumulativeRealizedPnlShort_ASC_NULLS_FIRST = "cumulativeRealizedPnlShort_ASC_NULLS_FIRST", cumulativeRealizedPnlShort_ASC_NULLS_LAST = "cumulativeRealizedPnlShort_ASC_NULLS_LAST", cumulativeRealizedPnlShort_DESC = "cumulativeRealizedPnlShort_DESC", cumulativeRealizedPnlShort_DESC_NULLS_FIRST = "cumulativeRealizedPnlShort_DESC_NULLS_FIRST", cumulativeRealizedPnlShort_DESC_NULLS_LAST = "cumulativeRealizedPnlShort_DESC_NULLS_LAST", cumulativeUnrealizedPnlLong_ASC = "cumulativeUnrealizedPnlLong_ASC", cumulativeUnrealizedPnlLong_ASC_NULLS_FIRST = "cumulativeUnrealizedPnlLong_ASC_NULLS_FIRST", cumulativeUnrealizedPnlLong_ASC_NULLS_LAST = "cumulativeUnrealizedPnlLong_ASC_NULLS_LAST", cumulativeUnrealizedPnlLong_DESC = "cumulativeUnrealizedPnlLong_DESC", cumulativeUnrealizedPnlLong_DESC_NULLS_FIRST = "cumulativeUnrealizedPnlLong_DESC_NULLS_FIRST", cumulativeUnrealizedPnlLong_DESC_NULLS_LAST = "cumulativeUnrealizedPnlLong_DESC_NULLS_LAST", cumulativeUnrealizedPnlShort_ASC = "cumulativeUnrealizedPnlShort_ASC", cumulativeUnrealizedPnlShort_ASC_NULLS_FIRST = "cumulativeUnrealizedPnlShort_ASC_NULLS_FIRST", cumulativeUnrealizedPnlShort_ASC_NULLS_LAST = "cumulativeUnrealizedPnlShort_ASC_NULLS_LAST", cumulativeUnrealizedPnlShort_DESC = "cumulativeUnrealizedPnlShort_DESC", cumulativeUnrealizedPnlShort_DESC_NULLS_FIRST = "cumulativeUnrealizedPnlShort_DESC_NULLS_FIRST", cumulativeUnrealizedPnlShort_DESC_NULLS_LAST = "cumulativeUnrealizedPnlShort_DESC_NULLS_LAST", entityType_ASC = "entityType_ASC", entityType_ASC_NULLS_FIRST = "entityType_ASC_NULLS_FIRST", entityType_ASC_NULLS_LAST = "entityType_ASC_NULLS_LAST", entityType_DESC = "entityType_DESC", entityType_DESC_NULLS_FIRST = "entityType_DESC_NULLS_FIRST", entityType_DESC_NULLS_LAST = "entityType_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", isSnapshot_ASC = "isSnapshot_ASC", isSnapshot_ASC_NULLS_FIRST = "isSnapshot_ASC_NULLS_FIRST", isSnapshot_ASC_NULLS_LAST = "isSnapshot_ASC_NULLS_LAST", isSnapshot_DESC = "isSnapshot_DESC", isSnapshot_DESC_NULLS_FIRST = "isSnapshot_DESC_NULLS_FIRST", isSnapshot_DESC_NULLS_LAST = "isSnapshot_DESC_NULLS_LAST", lastUnrealizedPnlLong_ASC = "lastUnrealizedPnlLong_ASC", lastUnrealizedPnlLong_ASC_NULLS_FIRST = "lastUnrealizedPnlLong_ASC_NULLS_FIRST", lastUnrealizedPnlLong_ASC_NULLS_LAST = "lastUnrealizedPnlLong_ASC_NULLS_LAST", lastUnrealizedPnlLong_DESC = "lastUnrealizedPnlLong_DESC", lastUnrealizedPnlLong_DESC_NULLS_FIRST = "lastUnrealizedPnlLong_DESC_NULLS_FIRST", lastUnrealizedPnlLong_DESC_NULLS_LAST = "lastUnrealizedPnlLong_DESC_NULLS_LAST", lastUnrealizedPnlShort_ASC = "lastUnrealizedPnlShort_ASC", lastUnrealizedPnlShort_ASC_NULLS_FIRST = "lastUnrealizedPnlShort_ASC_NULLS_FIRST", lastUnrealizedPnlShort_ASC_NULLS_LAST = "lastUnrealizedPnlShort_ASC_NULLS_LAST", lastUnrealizedPnlShort_DESC = "lastUnrealizedPnlShort_DESC", lastUnrealizedPnlShort_DESC_NULLS_FIRST = "lastUnrealizedPnlShort_DESC_NULLS_FIRST", lastUnrealizedPnlShort_DESC_NULLS_LAST = "lastUnrealizedPnlShort_DESC_NULLS_LAST", snapshotTimestamp_ASC = "snapshotTimestamp_ASC", snapshotTimestamp_ASC_NULLS_FIRST = "snapshotTimestamp_ASC_NULLS_FIRST", snapshotTimestamp_ASC_NULLS_LAST = "snapshotTimestamp_ASC_NULLS_LAST", snapshotTimestamp_DESC = "snapshotTimestamp_DESC", snapshotTimestamp_DESC_NULLS_FIRST = "snapshotTimestamp_DESC_NULLS_FIRST", snapshotTimestamp_DESC_NULLS_LAST = "snapshotTimestamp_DESC_NULLS_LAST" } export interface CumulativePnlWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; address_contains?: InputMaybe; address_containsInsensitive?: InputMaybe; address_endsWith?: InputMaybe; address_eq?: InputMaybe; address_gt?: InputMaybe; address_gte?: InputMaybe; address_in?: InputMaybe>; address_isNull?: InputMaybe; address_lt?: InputMaybe; address_lte?: InputMaybe; address_not_contains?: InputMaybe; address_not_containsInsensitive?: InputMaybe; address_not_endsWith?: InputMaybe; address_not_eq?: InputMaybe; address_not_in?: InputMaybe>; address_not_startsWith?: InputMaybe; address_startsWith?: InputMaybe; cumulativeRealizedPnlLong_eq?: InputMaybe; cumulativeRealizedPnlLong_gt?: InputMaybe; cumulativeRealizedPnlLong_gte?: InputMaybe; cumulativeRealizedPnlLong_in?: InputMaybe>; cumulativeRealizedPnlLong_isNull?: InputMaybe; cumulativeRealizedPnlLong_lt?: InputMaybe; cumulativeRealizedPnlLong_lte?: InputMaybe; cumulativeRealizedPnlLong_not_eq?: InputMaybe; cumulativeRealizedPnlLong_not_in?: InputMaybe>; cumulativeRealizedPnlShort_eq?: InputMaybe; cumulativeRealizedPnlShort_gt?: InputMaybe; cumulativeRealizedPnlShort_gte?: InputMaybe; cumulativeRealizedPnlShort_in?: InputMaybe>; cumulativeRealizedPnlShort_isNull?: InputMaybe; cumulativeRealizedPnlShort_lt?: InputMaybe; cumulativeRealizedPnlShort_lte?: InputMaybe; cumulativeRealizedPnlShort_not_eq?: InputMaybe; cumulativeRealizedPnlShort_not_in?: InputMaybe>; cumulativeUnrealizedPnlLong_eq?: InputMaybe; cumulativeUnrealizedPnlLong_gt?: InputMaybe; cumulativeUnrealizedPnlLong_gte?: InputMaybe; cumulativeUnrealizedPnlLong_in?: InputMaybe>; cumulativeUnrealizedPnlLong_isNull?: InputMaybe; cumulativeUnrealizedPnlLong_lt?: InputMaybe; cumulativeUnrealizedPnlLong_lte?: InputMaybe; cumulativeUnrealizedPnlLong_not_eq?: InputMaybe; cumulativeUnrealizedPnlLong_not_in?: InputMaybe>; cumulativeUnrealizedPnlShort_eq?: InputMaybe; cumulativeUnrealizedPnlShort_gt?: InputMaybe; cumulativeUnrealizedPnlShort_gte?: InputMaybe; cumulativeUnrealizedPnlShort_in?: InputMaybe>; cumulativeUnrealizedPnlShort_isNull?: InputMaybe; cumulativeUnrealizedPnlShort_lt?: InputMaybe; cumulativeUnrealizedPnlShort_lte?: InputMaybe; cumulativeUnrealizedPnlShort_not_eq?: InputMaybe; cumulativeUnrealizedPnlShort_not_in?: InputMaybe>; entityType_eq?: InputMaybe; entityType_in?: InputMaybe>; entityType_isNull?: InputMaybe; entityType_not_eq?: InputMaybe; entityType_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; isSnapshot_eq?: InputMaybe; isSnapshot_isNull?: InputMaybe; isSnapshot_not_eq?: InputMaybe; lastUnrealizedPnlLong_eq?: InputMaybe; lastUnrealizedPnlLong_gt?: InputMaybe; lastUnrealizedPnlLong_gte?: InputMaybe; lastUnrealizedPnlLong_in?: InputMaybe>; lastUnrealizedPnlLong_isNull?: InputMaybe; lastUnrealizedPnlLong_lt?: InputMaybe; lastUnrealizedPnlLong_lte?: InputMaybe; lastUnrealizedPnlLong_not_eq?: InputMaybe; lastUnrealizedPnlLong_not_in?: InputMaybe>; lastUnrealizedPnlShort_eq?: InputMaybe; lastUnrealizedPnlShort_gt?: InputMaybe; lastUnrealizedPnlShort_gte?: InputMaybe; lastUnrealizedPnlShort_in?: InputMaybe>; lastUnrealizedPnlShort_isNull?: InputMaybe; lastUnrealizedPnlShort_lt?: InputMaybe; lastUnrealizedPnlShort_lte?: InputMaybe; lastUnrealizedPnlShort_not_eq?: InputMaybe; lastUnrealizedPnlShort_not_in?: InputMaybe>; snapshotTimestamp_eq?: InputMaybe; snapshotTimestamp_gt?: InputMaybe; snapshotTimestamp_gte?: InputMaybe; snapshotTimestamp_in?: InputMaybe>; snapshotTimestamp_isNull?: InputMaybe; snapshotTimestamp_lt?: InputMaybe; snapshotTimestamp_lte?: InputMaybe; snapshotTimestamp_not_eq?: InputMaybe; snapshotTimestamp_not_in?: InputMaybe>; } export interface CumulativePnlsConnection { __typename?: "CumulativePnlsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface CumulativePoolValue { __typename?: "CumulativePoolValue"; address: Scalars["String"]["output"]; cumulativePoolValueByTime: Scalars["BigInt"]["output"]; cumulativeTime: Scalars["BigInt"]["output"]; entityType: EntityType; id: Scalars["String"]["output"]; isSnapshot: Scalars["Boolean"]["output"]; lastPoolValue: Scalars["BigInt"]["output"]; lastUpdateTimestamp: Scalars["Int"]["output"]; snapshotTimestamp?: Maybe; } export interface CumulativePoolValueEdge { __typename?: "CumulativePoolValueEdge"; cursor: Scalars["String"]["output"]; node: CumulativePoolValue; } export declare enum CumulativePoolValueOrderByInput { address_ASC = "address_ASC", address_ASC_NULLS_FIRST = "address_ASC_NULLS_FIRST", address_ASC_NULLS_LAST = "address_ASC_NULLS_LAST", address_DESC = "address_DESC", address_DESC_NULLS_FIRST = "address_DESC_NULLS_FIRST", address_DESC_NULLS_LAST = "address_DESC_NULLS_LAST", cumulativePoolValueByTime_ASC = "cumulativePoolValueByTime_ASC", cumulativePoolValueByTime_ASC_NULLS_FIRST = "cumulativePoolValueByTime_ASC_NULLS_FIRST", cumulativePoolValueByTime_ASC_NULLS_LAST = "cumulativePoolValueByTime_ASC_NULLS_LAST", cumulativePoolValueByTime_DESC = "cumulativePoolValueByTime_DESC", cumulativePoolValueByTime_DESC_NULLS_FIRST = "cumulativePoolValueByTime_DESC_NULLS_FIRST", cumulativePoolValueByTime_DESC_NULLS_LAST = "cumulativePoolValueByTime_DESC_NULLS_LAST", cumulativeTime_ASC = "cumulativeTime_ASC", cumulativeTime_ASC_NULLS_FIRST = "cumulativeTime_ASC_NULLS_FIRST", cumulativeTime_ASC_NULLS_LAST = "cumulativeTime_ASC_NULLS_LAST", cumulativeTime_DESC = "cumulativeTime_DESC", cumulativeTime_DESC_NULLS_FIRST = "cumulativeTime_DESC_NULLS_FIRST", cumulativeTime_DESC_NULLS_LAST = "cumulativeTime_DESC_NULLS_LAST", entityType_ASC = "entityType_ASC", entityType_ASC_NULLS_FIRST = "entityType_ASC_NULLS_FIRST", entityType_ASC_NULLS_LAST = "entityType_ASC_NULLS_LAST", entityType_DESC = "entityType_DESC", entityType_DESC_NULLS_FIRST = "entityType_DESC_NULLS_FIRST", entityType_DESC_NULLS_LAST = "entityType_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", isSnapshot_ASC = "isSnapshot_ASC", isSnapshot_ASC_NULLS_FIRST = "isSnapshot_ASC_NULLS_FIRST", isSnapshot_ASC_NULLS_LAST = "isSnapshot_ASC_NULLS_LAST", isSnapshot_DESC = "isSnapshot_DESC", isSnapshot_DESC_NULLS_FIRST = "isSnapshot_DESC_NULLS_FIRST", isSnapshot_DESC_NULLS_LAST = "isSnapshot_DESC_NULLS_LAST", lastPoolValue_ASC = "lastPoolValue_ASC", lastPoolValue_ASC_NULLS_FIRST = "lastPoolValue_ASC_NULLS_FIRST", lastPoolValue_ASC_NULLS_LAST = "lastPoolValue_ASC_NULLS_LAST", lastPoolValue_DESC = "lastPoolValue_DESC", lastPoolValue_DESC_NULLS_FIRST = "lastPoolValue_DESC_NULLS_FIRST", lastPoolValue_DESC_NULLS_LAST = "lastPoolValue_DESC_NULLS_LAST", lastUpdateTimestamp_ASC = "lastUpdateTimestamp_ASC", lastUpdateTimestamp_ASC_NULLS_FIRST = "lastUpdateTimestamp_ASC_NULLS_FIRST", lastUpdateTimestamp_ASC_NULLS_LAST = "lastUpdateTimestamp_ASC_NULLS_LAST", lastUpdateTimestamp_DESC = "lastUpdateTimestamp_DESC", lastUpdateTimestamp_DESC_NULLS_FIRST = "lastUpdateTimestamp_DESC_NULLS_FIRST", lastUpdateTimestamp_DESC_NULLS_LAST = "lastUpdateTimestamp_DESC_NULLS_LAST", snapshotTimestamp_ASC = "snapshotTimestamp_ASC", snapshotTimestamp_ASC_NULLS_FIRST = "snapshotTimestamp_ASC_NULLS_FIRST", snapshotTimestamp_ASC_NULLS_LAST = "snapshotTimestamp_ASC_NULLS_LAST", snapshotTimestamp_DESC = "snapshotTimestamp_DESC", snapshotTimestamp_DESC_NULLS_FIRST = "snapshotTimestamp_DESC_NULLS_FIRST", snapshotTimestamp_DESC_NULLS_LAST = "snapshotTimestamp_DESC_NULLS_LAST" } export interface CumulativePoolValueWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; address_contains?: InputMaybe; address_containsInsensitive?: InputMaybe; address_endsWith?: InputMaybe; address_eq?: InputMaybe; address_gt?: InputMaybe; address_gte?: InputMaybe; address_in?: InputMaybe>; address_isNull?: InputMaybe; address_lt?: InputMaybe; address_lte?: InputMaybe; address_not_contains?: InputMaybe; address_not_containsInsensitive?: InputMaybe; address_not_endsWith?: InputMaybe; address_not_eq?: InputMaybe; address_not_in?: InputMaybe>; address_not_startsWith?: InputMaybe; address_startsWith?: InputMaybe; cumulativePoolValueByTime_eq?: InputMaybe; cumulativePoolValueByTime_gt?: InputMaybe; cumulativePoolValueByTime_gte?: InputMaybe; cumulativePoolValueByTime_in?: InputMaybe>; cumulativePoolValueByTime_isNull?: InputMaybe; cumulativePoolValueByTime_lt?: InputMaybe; cumulativePoolValueByTime_lte?: InputMaybe; cumulativePoolValueByTime_not_eq?: InputMaybe; cumulativePoolValueByTime_not_in?: InputMaybe>; cumulativeTime_eq?: InputMaybe; cumulativeTime_gt?: InputMaybe; cumulativeTime_gte?: InputMaybe; cumulativeTime_in?: InputMaybe>; cumulativeTime_isNull?: InputMaybe; cumulativeTime_lt?: InputMaybe; cumulativeTime_lte?: InputMaybe; cumulativeTime_not_eq?: InputMaybe; cumulativeTime_not_in?: InputMaybe>; entityType_eq?: InputMaybe; entityType_in?: InputMaybe>; entityType_isNull?: InputMaybe; entityType_not_eq?: InputMaybe; entityType_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; isSnapshot_eq?: InputMaybe; isSnapshot_isNull?: InputMaybe; isSnapshot_not_eq?: InputMaybe; lastPoolValue_eq?: InputMaybe; lastPoolValue_gt?: InputMaybe; lastPoolValue_gte?: InputMaybe; lastPoolValue_in?: InputMaybe>; lastPoolValue_isNull?: InputMaybe; lastPoolValue_lt?: InputMaybe; lastPoolValue_lte?: InputMaybe; lastPoolValue_not_eq?: InputMaybe; lastPoolValue_not_in?: InputMaybe>; lastUpdateTimestamp_eq?: InputMaybe; lastUpdateTimestamp_gt?: InputMaybe; lastUpdateTimestamp_gte?: InputMaybe; lastUpdateTimestamp_in?: InputMaybe>; lastUpdateTimestamp_isNull?: InputMaybe; lastUpdateTimestamp_lt?: InputMaybe; lastUpdateTimestamp_lte?: InputMaybe; lastUpdateTimestamp_not_eq?: InputMaybe; lastUpdateTimestamp_not_in?: InputMaybe>; snapshotTimestamp_eq?: InputMaybe; snapshotTimestamp_gt?: InputMaybe; snapshotTimestamp_gte?: InputMaybe; snapshotTimestamp_in?: InputMaybe>; snapshotTimestamp_isNull?: InputMaybe; snapshotTimestamp_lt?: InputMaybe; snapshotTimestamp_lte?: InputMaybe; snapshotTimestamp_not_eq?: InputMaybe; snapshotTimestamp_not_in?: InputMaybe>; } export interface CumulativePoolValuesConnection { __typename?: "CumulativePoolValuesConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface Distribution { __typename?: "Distribution"; amounts: Array; amountsInUsd: Array; id: Scalars["String"]["output"]; receiver: Scalars["String"]["output"]; timestamp: Scalars["Int"]["output"]; tokens: Array; transactionHash: Scalars["String"]["output"]; typeId: Scalars["BigInt"]["output"]; } export interface DistributionEdge { __typename?: "DistributionEdge"; cursor: Scalars["String"]["output"]; node: Distribution; } export declare enum DistributionOrderByInput { id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", receiver_ASC = "receiver_ASC", receiver_ASC_NULLS_FIRST = "receiver_ASC_NULLS_FIRST", receiver_ASC_NULLS_LAST = "receiver_ASC_NULLS_LAST", receiver_DESC = "receiver_DESC", receiver_DESC_NULLS_FIRST = "receiver_DESC_NULLS_FIRST", receiver_DESC_NULLS_LAST = "receiver_DESC_NULLS_LAST", timestamp_ASC = "timestamp_ASC", timestamp_ASC_NULLS_FIRST = "timestamp_ASC_NULLS_FIRST", timestamp_ASC_NULLS_LAST = "timestamp_ASC_NULLS_LAST", timestamp_DESC = "timestamp_DESC", timestamp_DESC_NULLS_FIRST = "timestamp_DESC_NULLS_FIRST", timestamp_DESC_NULLS_LAST = "timestamp_DESC_NULLS_LAST", transactionHash_ASC = "transactionHash_ASC", transactionHash_ASC_NULLS_FIRST = "transactionHash_ASC_NULLS_FIRST", transactionHash_ASC_NULLS_LAST = "transactionHash_ASC_NULLS_LAST", transactionHash_DESC = "transactionHash_DESC", transactionHash_DESC_NULLS_FIRST = "transactionHash_DESC_NULLS_FIRST", transactionHash_DESC_NULLS_LAST = "transactionHash_DESC_NULLS_LAST", typeId_ASC = "typeId_ASC", typeId_ASC_NULLS_FIRST = "typeId_ASC_NULLS_FIRST", typeId_ASC_NULLS_LAST = "typeId_ASC_NULLS_LAST", typeId_DESC = "typeId_DESC", typeId_DESC_NULLS_FIRST = "typeId_DESC_NULLS_FIRST", typeId_DESC_NULLS_LAST = "typeId_DESC_NULLS_LAST" } export interface DistributionWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; amountsInUsd_containsAll?: InputMaybe>; amountsInUsd_containsAny?: InputMaybe>; amountsInUsd_containsNone?: InputMaybe>; amountsInUsd_isNull?: InputMaybe; amounts_containsAll?: InputMaybe>; amounts_containsAny?: InputMaybe>; amounts_containsNone?: InputMaybe>; amounts_isNull?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; receiver_contains?: InputMaybe; receiver_containsInsensitive?: InputMaybe; receiver_endsWith?: InputMaybe; receiver_eq?: InputMaybe; receiver_gt?: InputMaybe; receiver_gte?: InputMaybe; receiver_in?: InputMaybe>; receiver_isNull?: InputMaybe; receiver_lt?: InputMaybe; receiver_lte?: InputMaybe; receiver_not_contains?: InputMaybe; receiver_not_containsInsensitive?: InputMaybe; receiver_not_endsWith?: InputMaybe; receiver_not_eq?: InputMaybe; receiver_not_in?: InputMaybe>; receiver_not_startsWith?: InputMaybe; receiver_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_isNull?: InputMaybe; timestamp_lt?: InputMaybe; timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; tokens_containsAll?: InputMaybe>; tokens_containsAny?: InputMaybe>; tokens_containsNone?: InputMaybe>; tokens_isNull?: InputMaybe; transactionHash_contains?: InputMaybe; transactionHash_containsInsensitive?: InputMaybe; transactionHash_endsWith?: InputMaybe; transactionHash_eq?: InputMaybe; transactionHash_gt?: InputMaybe; transactionHash_gte?: InputMaybe; transactionHash_in?: InputMaybe>; transactionHash_isNull?: InputMaybe; transactionHash_lt?: InputMaybe; transactionHash_lte?: InputMaybe; transactionHash_not_contains?: InputMaybe; transactionHash_not_containsInsensitive?: InputMaybe; transactionHash_not_endsWith?: InputMaybe; transactionHash_not_eq?: InputMaybe; transactionHash_not_in?: InputMaybe>; transactionHash_not_startsWith?: InputMaybe; transactionHash_startsWith?: InputMaybe; typeId_eq?: InputMaybe; typeId_gt?: InputMaybe; typeId_gte?: InputMaybe; typeId_in?: InputMaybe>; typeId_isNull?: InputMaybe; typeId_lt?: InputMaybe; typeId_lte?: InputMaybe; typeId_not_eq?: InputMaybe; typeId_not_in?: InputMaybe>; } export interface DistributionsConnection { __typename?: "DistributionsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export declare enum EntityType { Glv = "Glv", Market = "Market" } export interface FundingRateSnapshot { __typename?: "FundingRateSnapshot"; fundingFactorPerSecondLong: Scalars["BigInt"]["output"]; fundingFactorPerSecondShort: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; marketAddress: Scalars["String"]["output"]; snapshotTimestamp: Scalars["Int"]["output"]; } export interface FundingRateSnapshotEdge { __typename?: "FundingRateSnapshotEdge"; cursor: Scalars["String"]["output"]; node: FundingRateSnapshot; } export declare enum FundingRateSnapshotOrderByInput { fundingFactorPerSecondLong_ASC = "fundingFactorPerSecondLong_ASC", fundingFactorPerSecondLong_ASC_NULLS_FIRST = "fundingFactorPerSecondLong_ASC_NULLS_FIRST", fundingFactorPerSecondLong_ASC_NULLS_LAST = "fundingFactorPerSecondLong_ASC_NULLS_LAST", fundingFactorPerSecondLong_DESC = "fundingFactorPerSecondLong_DESC", fundingFactorPerSecondLong_DESC_NULLS_FIRST = "fundingFactorPerSecondLong_DESC_NULLS_FIRST", fundingFactorPerSecondLong_DESC_NULLS_LAST = "fundingFactorPerSecondLong_DESC_NULLS_LAST", fundingFactorPerSecondShort_ASC = "fundingFactorPerSecondShort_ASC", fundingFactorPerSecondShort_ASC_NULLS_FIRST = "fundingFactorPerSecondShort_ASC_NULLS_FIRST", fundingFactorPerSecondShort_ASC_NULLS_LAST = "fundingFactorPerSecondShort_ASC_NULLS_LAST", fundingFactorPerSecondShort_DESC = "fundingFactorPerSecondShort_DESC", fundingFactorPerSecondShort_DESC_NULLS_FIRST = "fundingFactorPerSecondShort_DESC_NULLS_FIRST", fundingFactorPerSecondShort_DESC_NULLS_LAST = "fundingFactorPerSecondShort_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", marketAddress_ASC = "marketAddress_ASC", marketAddress_ASC_NULLS_FIRST = "marketAddress_ASC_NULLS_FIRST", marketAddress_ASC_NULLS_LAST = "marketAddress_ASC_NULLS_LAST", marketAddress_DESC = "marketAddress_DESC", marketAddress_DESC_NULLS_FIRST = "marketAddress_DESC_NULLS_FIRST", marketAddress_DESC_NULLS_LAST = "marketAddress_DESC_NULLS_LAST", snapshotTimestamp_ASC = "snapshotTimestamp_ASC", snapshotTimestamp_ASC_NULLS_FIRST = "snapshotTimestamp_ASC_NULLS_FIRST", snapshotTimestamp_ASC_NULLS_LAST = "snapshotTimestamp_ASC_NULLS_LAST", snapshotTimestamp_DESC = "snapshotTimestamp_DESC", snapshotTimestamp_DESC_NULLS_FIRST = "snapshotTimestamp_DESC_NULLS_FIRST", snapshotTimestamp_DESC_NULLS_LAST = "snapshotTimestamp_DESC_NULLS_LAST" } export interface FundingRateSnapshotWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; fundingFactorPerSecondLong_eq?: InputMaybe; fundingFactorPerSecondLong_gt?: InputMaybe; fundingFactorPerSecondLong_gte?: InputMaybe; fundingFactorPerSecondLong_in?: InputMaybe>; fundingFactorPerSecondLong_isNull?: InputMaybe; fundingFactorPerSecondLong_lt?: InputMaybe; fundingFactorPerSecondLong_lte?: InputMaybe; fundingFactorPerSecondLong_not_eq?: InputMaybe; fundingFactorPerSecondLong_not_in?: InputMaybe>; fundingFactorPerSecondShort_eq?: InputMaybe; fundingFactorPerSecondShort_gt?: InputMaybe; fundingFactorPerSecondShort_gte?: InputMaybe; fundingFactorPerSecondShort_in?: InputMaybe>; fundingFactorPerSecondShort_isNull?: InputMaybe; fundingFactorPerSecondShort_lt?: InputMaybe; fundingFactorPerSecondShort_lte?: InputMaybe; fundingFactorPerSecondShort_not_eq?: InputMaybe; fundingFactorPerSecondShort_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; marketAddress_contains?: InputMaybe; marketAddress_containsInsensitive?: InputMaybe; marketAddress_endsWith?: InputMaybe; marketAddress_eq?: InputMaybe; marketAddress_gt?: InputMaybe; marketAddress_gte?: InputMaybe; marketAddress_in?: InputMaybe>; marketAddress_isNull?: InputMaybe; marketAddress_lt?: InputMaybe; marketAddress_lte?: InputMaybe; marketAddress_not_contains?: InputMaybe; marketAddress_not_containsInsensitive?: InputMaybe; marketAddress_not_endsWith?: InputMaybe; marketAddress_not_eq?: InputMaybe; marketAddress_not_in?: InputMaybe>; marketAddress_not_startsWith?: InputMaybe; marketAddress_startsWith?: InputMaybe; snapshotTimestamp_eq?: InputMaybe; snapshotTimestamp_gt?: InputMaybe; snapshotTimestamp_gte?: InputMaybe; snapshotTimestamp_in?: InputMaybe>; snapshotTimestamp_isNull?: InputMaybe; snapshotTimestamp_lt?: InputMaybe; snapshotTimestamp_lte?: InputMaybe; snapshotTimestamp_not_eq?: InputMaybe; snapshotTimestamp_not_in?: InputMaybe>; } export interface FundingRateSnapshotsConnection { __typename?: "FundingRateSnapshotsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface Glv { __typename?: "Glv"; glvTokenAddress: Scalars["String"]["output"]; gmComposition: Array; id: Scalars["String"]["output"]; longTokenAddress: Scalars["String"]["output"]; markets: Array; poolValue: Scalars["BigInt"]["output"]; shortTokenAddress: Scalars["String"]["output"]; } export interface GlvApr { __typename?: "GlvApr"; aprByBorrowingFee: Scalars["BigInt"]["output"]; aprByFee: Scalars["BigInt"]["output"]; glvAddress: Scalars["String"]["output"]; } export interface GlvAprsWhereInputWhereInput { glvAddresses?: InputMaybe>; periodEnd: Scalars["Float"]["input"]; periodStart: Scalars["Float"]["input"]; } export interface GlvEdge { __typename?: "GlvEdge"; cursor: Scalars["String"]["output"]; node: Glv; } export declare enum GlvOrderByInput { glvTokenAddress_ASC = "glvTokenAddress_ASC", glvTokenAddress_ASC_NULLS_FIRST = "glvTokenAddress_ASC_NULLS_FIRST", glvTokenAddress_ASC_NULLS_LAST = "glvTokenAddress_ASC_NULLS_LAST", glvTokenAddress_DESC = "glvTokenAddress_DESC", glvTokenAddress_DESC_NULLS_FIRST = "glvTokenAddress_DESC_NULLS_FIRST", glvTokenAddress_DESC_NULLS_LAST = "glvTokenAddress_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", longTokenAddress_ASC = "longTokenAddress_ASC", longTokenAddress_ASC_NULLS_FIRST = "longTokenAddress_ASC_NULLS_FIRST", longTokenAddress_ASC_NULLS_LAST = "longTokenAddress_ASC_NULLS_LAST", longTokenAddress_DESC = "longTokenAddress_DESC", longTokenAddress_DESC_NULLS_FIRST = "longTokenAddress_DESC_NULLS_FIRST", longTokenAddress_DESC_NULLS_LAST = "longTokenAddress_DESC_NULLS_LAST", poolValue_ASC = "poolValue_ASC", poolValue_ASC_NULLS_FIRST = "poolValue_ASC_NULLS_FIRST", poolValue_ASC_NULLS_LAST = "poolValue_ASC_NULLS_LAST", poolValue_DESC = "poolValue_DESC", poolValue_DESC_NULLS_FIRST = "poolValue_DESC_NULLS_FIRST", poolValue_DESC_NULLS_LAST = "poolValue_DESC_NULLS_LAST", shortTokenAddress_ASC = "shortTokenAddress_ASC", shortTokenAddress_ASC_NULLS_FIRST = "shortTokenAddress_ASC_NULLS_FIRST", shortTokenAddress_ASC_NULLS_LAST = "shortTokenAddress_ASC_NULLS_LAST", shortTokenAddress_DESC = "shortTokenAddress_DESC", shortTokenAddress_DESC_NULLS_FIRST = "shortTokenAddress_DESC_NULLS_FIRST", shortTokenAddress_DESC_NULLS_LAST = "shortTokenAddress_DESC_NULLS_LAST" } export interface GlvPnlApr { __typename?: "GlvPnlApr"; apr: Scalars["BigInt"]["output"]; glvAddress: Scalars["String"]["output"]; periodRealizedPnlLong: Scalars["BigInt"]["output"]; periodRealizedPnlShort: Scalars["BigInt"]["output"]; periodUnrealizedPnlLong: Scalars["BigInt"]["output"]; periodUnrealizedPnlShort: Scalars["BigInt"]["output"]; timeWeightedPoolValue: Scalars["BigInt"]["output"]; } export interface GlvPnlAprsWhereInputWhereInput { glvAddresses?: InputMaybe>; periodEnd: Scalars["Float"]["input"]; periodStart: Scalars["Float"]["input"]; } export interface GlvWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; glvTokenAddress_contains?: InputMaybe; glvTokenAddress_containsInsensitive?: InputMaybe; glvTokenAddress_endsWith?: InputMaybe; glvTokenAddress_eq?: InputMaybe; glvTokenAddress_gt?: InputMaybe; glvTokenAddress_gte?: InputMaybe; glvTokenAddress_in?: InputMaybe>; glvTokenAddress_isNull?: InputMaybe; glvTokenAddress_lt?: InputMaybe; glvTokenAddress_lte?: InputMaybe; glvTokenAddress_not_contains?: InputMaybe; glvTokenAddress_not_containsInsensitive?: InputMaybe; glvTokenAddress_not_endsWith?: InputMaybe; glvTokenAddress_not_eq?: InputMaybe; glvTokenAddress_not_in?: InputMaybe>; glvTokenAddress_not_startsWith?: InputMaybe; glvTokenAddress_startsWith?: InputMaybe; gmComposition_containsAll?: InputMaybe>; gmComposition_containsAny?: InputMaybe>; gmComposition_containsNone?: InputMaybe>; gmComposition_isNull?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; longTokenAddress_contains?: InputMaybe; longTokenAddress_containsInsensitive?: InputMaybe; longTokenAddress_endsWith?: InputMaybe; longTokenAddress_eq?: InputMaybe; longTokenAddress_gt?: InputMaybe; longTokenAddress_gte?: InputMaybe; longTokenAddress_in?: InputMaybe>; longTokenAddress_isNull?: InputMaybe; longTokenAddress_lt?: InputMaybe; longTokenAddress_lte?: InputMaybe; longTokenAddress_not_contains?: InputMaybe; longTokenAddress_not_containsInsensitive?: InputMaybe; longTokenAddress_not_endsWith?: InputMaybe; longTokenAddress_not_eq?: InputMaybe; longTokenAddress_not_in?: InputMaybe>; longTokenAddress_not_startsWith?: InputMaybe; longTokenAddress_startsWith?: InputMaybe; markets_containsAll?: InputMaybe>; markets_containsAny?: InputMaybe>; markets_containsNone?: InputMaybe>; markets_isNull?: InputMaybe; poolValue_eq?: InputMaybe; poolValue_gt?: InputMaybe; poolValue_gte?: InputMaybe; poolValue_in?: InputMaybe>; poolValue_isNull?: InputMaybe; poolValue_lt?: InputMaybe; poolValue_lte?: InputMaybe; poolValue_not_eq?: InputMaybe; poolValue_not_in?: InputMaybe>; shortTokenAddress_contains?: InputMaybe; shortTokenAddress_containsInsensitive?: InputMaybe; shortTokenAddress_endsWith?: InputMaybe; shortTokenAddress_eq?: InputMaybe; shortTokenAddress_gt?: InputMaybe; shortTokenAddress_gte?: InputMaybe; shortTokenAddress_in?: InputMaybe>; shortTokenAddress_isNull?: InputMaybe; shortTokenAddress_lt?: InputMaybe; shortTokenAddress_lte?: InputMaybe; shortTokenAddress_not_contains?: InputMaybe; shortTokenAddress_not_containsInsensitive?: InputMaybe; shortTokenAddress_not_endsWith?: InputMaybe; shortTokenAddress_not_eq?: InputMaybe; shortTokenAddress_not_in?: InputMaybe>; shortTokenAddress_not_startsWith?: InputMaybe; shortTokenAddress_startsWith?: InputMaybe; } export interface GlvsConnection { __typename?: "GlvsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface Market { __typename?: "Market"; id: Scalars["String"]["output"]; indexToken: Scalars["String"]["output"]; longToken: Scalars["String"]["output"]; shortToken: Scalars["String"]["output"]; } export interface MarketApr { __typename?: "MarketApr"; aprByBorrowingFee: Scalars["BigInt"]["output"]; aprByFee: Scalars["BigInt"]["output"]; marketAddress: Scalars["String"]["output"]; } export interface MarketAprsWhereInput { marketAddresses?: InputMaybe>; periodEnd: Scalars["Float"]["input"]; periodStart: Scalars["Float"]["input"]; } export interface MarketEdge { __typename?: "MarketEdge"; cursor: Scalars["String"]["output"]; node: Market; } export interface MarketInfo { __typename?: "MarketInfo"; aboveOptimalUsageBorrowingFactorLong: Scalars["BigInt"]["output"]; aboveOptimalUsageBorrowingFactorShort: Scalars["BigInt"]["output"]; atomicSwapFeeFactor: Scalars["BigInt"]["output"]; baseBorrowingFactorLong: Scalars["BigInt"]["output"]; baseBorrowingFactorShort: Scalars["BigInt"]["output"]; borrowingExponentFactorLong: Scalars["BigInt"]["output"]; borrowingExponentFactorShort: Scalars["BigInt"]["output"]; borrowingFactorLong: Scalars["BigInt"]["output"]; borrowingFactorPerSecondForLongs: Scalars["BigInt"]["output"]; borrowingFactorPerSecondForShorts: Scalars["BigInt"]["output"]; borrowingFactorShort: Scalars["BigInt"]["output"]; fundingDecreaseFactorPerSecond: Scalars["BigInt"]["output"]; fundingExponentFactor: Scalars["BigInt"]["output"]; fundingFactor: Scalars["BigInt"]["output"]; fundingFactorPerSecond: Scalars["BigInt"]["output"]; fundingIncreaseFactorPerSecond: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; indexTokenAddress: Scalars["String"]["output"]; isDisabled: Scalars["Boolean"]["output"]; lentPositionImpactPoolAmount: Scalars["BigInt"]["output"]; longOpenInterestInTokens: Scalars["BigInt"]["output"]; longOpenInterestInTokensUsingLongToken: Scalars["BigInt"]["output"]; longOpenInterestInTokensUsingShortToken: Scalars["BigInt"]["output"]; longOpenInterestUsd: Scalars["BigInt"]["output"]; longOpenInterestUsingLongToken: Scalars["BigInt"]["output"]; longOpenInterestUsingShortToken: Scalars["BigInt"]["output"]; longPoolAmount: Scalars["BigInt"]["output"]; longTokenAddress: Scalars["String"]["output"]; longsPayShorts: Scalars["Boolean"]["output"]; marketTokenAddress: Scalars["String"]["output"]; marketTokenSupply: Scalars["BigInt"]["output"]; maxFundingFactorPerSecond: Scalars["BigInt"]["output"]; maxLendableImpactFactor: Scalars["BigInt"]["output"]; maxLendableImpactFactorForWithdrawals: Scalars["BigInt"]["output"]; maxLendableImpactUsd: Scalars["BigInt"]["output"]; maxLongPoolAmount: Scalars["BigInt"]["output"]; maxLongPoolUsdForDeposit: Scalars["BigInt"]["output"]; maxOpenInterestLong: Scalars["BigInt"]["output"]; maxOpenInterestShort: Scalars["BigInt"]["output"]; maxPnlFactorForTradersLong: Scalars["BigInt"]["output"]; maxPnlFactorForTradersShort: Scalars["BigInt"]["output"]; maxPositionImpactFactorForLiquidations: Scalars["BigInt"]["output"]; maxPositionImpactFactorNegative: Scalars["BigInt"]["output"]; maxPositionImpactFactorPositive: Scalars["BigInt"]["output"]; maxShortPoolAmount: Scalars["BigInt"]["output"]; maxShortPoolUsdForDeposit: Scalars["BigInt"]["output"]; minCollateralFactor: Scalars["BigInt"]["output"]; minCollateralFactorForOpenInterestLong: Scalars["BigInt"]["output"]; minCollateralFactorForOpenInterestShort: Scalars["BigInt"]["output"]; minFundingFactorPerSecond: Scalars["BigInt"]["output"]; minPositionImpactPoolAmount: Scalars["BigInt"]["output"]; openInterestReserveFactorLong: Scalars["BigInt"]["output"]; openInterestReserveFactorShort: Scalars["BigInt"]["output"]; optimalUsageFactorLong: Scalars["BigInt"]["output"]; optimalUsageFactorShort: Scalars["BigInt"]["output"]; poolValue: Scalars["BigInt"]["output"]; poolValueMax: Scalars["BigInt"]["output"]; poolValueMin: Scalars["BigInt"]["output"]; positionFeeFactorForNegativeImpact: Scalars["BigInt"]["output"]; positionFeeFactorForPositiveImpact: Scalars["BigInt"]["output"]; positionImpactExponentFactorNegative: Scalars["BigInt"]["output"]; positionImpactExponentFactorPositive: Scalars["BigInt"]["output"]; positionImpactFactorNegative: Scalars["BigInt"]["output"]; positionImpactFactorPositive: Scalars["BigInt"]["output"]; positionImpactPoolAmount: Scalars["BigInt"]["output"]; positionImpactPoolDistributionRate: Scalars["BigInt"]["output"]; reserveFactorLong: Scalars["BigInt"]["output"]; reserveFactorShort: Scalars["BigInt"]["output"]; shortOpenInterestInTokens: Scalars["BigInt"]["output"]; shortOpenInterestInTokensUsingLongToken: Scalars["BigInt"]["output"]; shortOpenInterestInTokensUsingShortToken: Scalars["BigInt"]["output"]; shortOpenInterestUsd: Scalars["BigInt"]["output"]; shortOpenInterestUsingLongToken: Scalars["BigInt"]["output"]; shortOpenInterestUsingShortToken: Scalars["BigInt"]["output"]; shortPoolAmount: Scalars["BigInt"]["output"]; shortTokenAddress: Scalars["String"]["output"]; swapFeeFactorForNegativeImpact: Scalars["BigInt"]["output"]; swapFeeFactorForPositiveImpact: Scalars["BigInt"]["output"]; swapImpactExponentFactor: Scalars["BigInt"]["output"]; swapImpactFactorNegative: Scalars["BigInt"]["output"]; swapImpactFactorPositive: Scalars["BigInt"]["output"]; swapImpactPoolAmountLong: Scalars["BigInt"]["output"]; swapImpactPoolAmountShort: Scalars["BigInt"]["output"]; thresholdForDecreaseFunding: Scalars["BigInt"]["output"]; thresholdForStableFunding: Scalars["BigInt"]["output"]; totalBorrowingFees: Scalars["BigInt"]["output"]; useOpenInterestInTokensForBalance: Scalars["Boolean"]["output"]; virtualIndexTokenId: Scalars["String"]["output"]; virtualInventoryForPositions: Scalars["BigInt"]["output"]; virtualLongTokenId: Scalars["String"]["output"]; virtualMarketId: Scalars["String"]["output"]; virtualPoolAmountForLongToken: Scalars["BigInt"]["output"]; virtualPoolAmountForShortToken: Scalars["BigInt"]["output"]; virtualShortTokenId: Scalars["String"]["output"]; } export interface MarketInfoEdge { __typename?: "MarketInfoEdge"; cursor: Scalars["String"]["output"]; node: MarketInfo; } export declare enum MarketInfoOrderByInput { aboveOptimalUsageBorrowingFactorLong_ASC = "aboveOptimalUsageBorrowingFactorLong_ASC", aboveOptimalUsageBorrowingFactorLong_ASC_NULLS_FIRST = "aboveOptimalUsageBorrowingFactorLong_ASC_NULLS_FIRST", aboveOptimalUsageBorrowingFactorLong_ASC_NULLS_LAST = "aboveOptimalUsageBorrowingFactorLong_ASC_NULLS_LAST", aboveOptimalUsageBorrowingFactorLong_DESC = "aboveOptimalUsageBorrowingFactorLong_DESC", aboveOptimalUsageBorrowingFactorLong_DESC_NULLS_FIRST = "aboveOptimalUsageBorrowingFactorLong_DESC_NULLS_FIRST", aboveOptimalUsageBorrowingFactorLong_DESC_NULLS_LAST = "aboveOptimalUsageBorrowingFactorLong_DESC_NULLS_LAST", aboveOptimalUsageBorrowingFactorShort_ASC = "aboveOptimalUsageBorrowingFactorShort_ASC", aboveOptimalUsageBorrowingFactorShort_ASC_NULLS_FIRST = "aboveOptimalUsageBorrowingFactorShort_ASC_NULLS_FIRST", aboveOptimalUsageBorrowingFactorShort_ASC_NULLS_LAST = "aboveOptimalUsageBorrowingFactorShort_ASC_NULLS_LAST", aboveOptimalUsageBorrowingFactorShort_DESC = "aboveOptimalUsageBorrowingFactorShort_DESC", aboveOptimalUsageBorrowingFactorShort_DESC_NULLS_FIRST = "aboveOptimalUsageBorrowingFactorShort_DESC_NULLS_FIRST", aboveOptimalUsageBorrowingFactorShort_DESC_NULLS_LAST = "aboveOptimalUsageBorrowingFactorShort_DESC_NULLS_LAST", atomicSwapFeeFactor_ASC = "atomicSwapFeeFactor_ASC", atomicSwapFeeFactor_ASC_NULLS_FIRST = "atomicSwapFeeFactor_ASC_NULLS_FIRST", atomicSwapFeeFactor_ASC_NULLS_LAST = "atomicSwapFeeFactor_ASC_NULLS_LAST", atomicSwapFeeFactor_DESC = "atomicSwapFeeFactor_DESC", atomicSwapFeeFactor_DESC_NULLS_FIRST = "atomicSwapFeeFactor_DESC_NULLS_FIRST", atomicSwapFeeFactor_DESC_NULLS_LAST = "atomicSwapFeeFactor_DESC_NULLS_LAST", baseBorrowingFactorLong_ASC = "baseBorrowingFactorLong_ASC", baseBorrowingFactorLong_ASC_NULLS_FIRST = "baseBorrowingFactorLong_ASC_NULLS_FIRST", baseBorrowingFactorLong_ASC_NULLS_LAST = "baseBorrowingFactorLong_ASC_NULLS_LAST", baseBorrowingFactorLong_DESC = "baseBorrowingFactorLong_DESC", baseBorrowingFactorLong_DESC_NULLS_FIRST = "baseBorrowingFactorLong_DESC_NULLS_FIRST", baseBorrowingFactorLong_DESC_NULLS_LAST = "baseBorrowingFactorLong_DESC_NULLS_LAST", baseBorrowingFactorShort_ASC = "baseBorrowingFactorShort_ASC", baseBorrowingFactorShort_ASC_NULLS_FIRST = "baseBorrowingFactorShort_ASC_NULLS_FIRST", baseBorrowingFactorShort_ASC_NULLS_LAST = "baseBorrowingFactorShort_ASC_NULLS_LAST", baseBorrowingFactorShort_DESC = "baseBorrowingFactorShort_DESC", baseBorrowingFactorShort_DESC_NULLS_FIRST = "baseBorrowingFactorShort_DESC_NULLS_FIRST", baseBorrowingFactorShort_DESC_NULLS_LAST = "baseBorrowingFactorShort_DESC_NULLS_LAST", borrowingExponentFactorLong_ASC = "borrowingExponentFactorLong_ASC", borrowingExponentFactorLong_ASC_NULLS_FIRST = "borrowingExponentFactorLong_ASC_NULLS_FIRST", borrowingExponentFactorLong_ASC_NULLS_LAST = "borrowingExponentFactorLong_ASC_NULLS_LAST", borrowingExponentFactorLong_DESC = "borrowingExponentFactorLong_DESC", borrowingExponentFactorLong_DESC_NULLS_FIRST = "borrowingExponentFactorLong_DESC_NULLS_FIRST", borrowingExponentFactorLong_DESC_NULLS_LAST = "borrowingExponentFactorLong_DESC_NULLS_LAST", borrowingExponentFactorShort_ASC = "borrowingExponentFactorShort_ASC", borrowingExponentFactorShort_ASC_NULLS_FIRST = "borrowingExponentFactorShort_ASC_NULLS_FIRST", borrowingExponentFactorShort_ASC_NULLS_LAST = "borrowingExponentFactorShort_ASC_NULLS_LAST", borrowingExponentFactorShort_DESC = "borrowingExponentFactorShort_DESC", borrowingExponentFactorShort_DESC_NULLS_FIRST = "borrowingExponentFactorShort_DESC_NULLS_FIRST", borrowingExponentFactorShort_DESC_NULLS_LAST = "borrowingExponentFactorShort_DESC_NULLS_LAST", borrowingFactorLong_ASC = "borrowingFactorLong_ASC", borrowingFactorLong_ASC_NULLS_FIRST = "borrowingFactorLong_ASC_NULLS_FIRST", borrowingFactorLong_ASC_NULLS_LAST = "borrowingFactorLong_ASC_NULLS_LAST", borrowingFactorLong_DESC = "borrowingFactorLong_DESC", borrowingFactorLong_DESC_NULLS_FIRST = "borrowingFactorLong_DESC_NULLS_FIRST", borrowingFactorLong_DESC_NULLS_LAST = "borrowingFactorLong_DESC_NULLS_LAST", borrowingFactorPerSecondForLongs_ASC = "borrowingFactorPerSecondForLongs_ASC", borrowingFactorPerSecondForLongs_ASC_NULLS_FIRST = "borrowingFactorPerSecondForLongs_ASC_NULLS_FIRST", borrowingFactorPerSecondForLongs_ASC_NULLS_LAST = "borrowingFactorPerSecondForLongs_ASC_NULLS_LAST", borrowingFactorPerSecondForLongs_DESC = "borrowingFactorPerSecondForLongs_DESC", borrowingFactorPerSecondForLongs_DESC_NULLS_FIRST = "borrowingFactorPerSecondForLongs_DESC_NULLS_FIRST", borrowingFactorPerSecondForLongs_DESC_NULLS_LAST = "borrowingFactorPerSecondForLongs_DESC_NULLS_LAST", borrowingFactorPerSecondForShorts_ASC = "borrowingFactorPerSecondForShorts_ASC", borrowingFactorPerSecondForShorts_ASC_NULLS_FIRST = "borrowingFactorPerSecondForShorts_ASC_NULLS_FIRST", borrowingFactorPerSecondForShorts_ASC_NULLS_LAST = "borrowingFactorPerSecondForShorts_ASC_NULLS_LAST", borrowingFactorPerSecondForShorts_DESC = "borrowingFactorPerSecondForShorts_DESC", borrowingFactorPerSecondForShorts_DESC_NULLS_FIRST = "borrowingFactorPerSecondForShorts_DESC_NULLS_FIRST", borrowingFactorPerSecondForShorts_DESC_NULLS_LAST = "borrowingFactorPerSecondForShorts_DESC_NULLS_LAST", borrowingFactorShort_ASC = "borrowingFactorShort_ASC", borrowingFactorShort_ASC_NULLS_FIRST = "borrowingFactorShort_ASC_NULLS_FIRST", borrowingFactorShort_ASC_NULLS_LAST = "borrowingFactorShort_ASC_NULLS_LAST", borrowingFactorShort_DESC = "borrowingFactorShort_DESC", borrowingFactorShort_DESC_NULLS_FIRST = "borrowingFactorShort_DESC_NULLS_FIRST", borrowingFactorShort_DESC_NULLS_LAST = "borrowingFactorShort_DESC_NULLS_LAST", fundingDecreaseFactorPerSecond_ASC = "fundingDecreaseFactorPerSecond_ASC", fundingDecreaseFactorPerSecond_ASC_NULLS_FIRST = "fundingDecreaseFactorPerSecond_ASC_NULLS_FIRST", fundingDecreaseFactorPerSecond_ASC_NULLS_LAST = "fundingDecreaseFactorPerSecond_ASC_NULLS_LAST", fundingDecreaseFactorPerSecond_DESC = "fundingDecreaseFactorPerSecond_DESC", fundingDecreaseFactorPerSecond_DESC_NULLS_FIRST = "fundingDecreaseFactorPerSecond_DESC_NULLS_FIRST", fundingDecreaseFactorPerSecond_DESC_NULLS_LAST = "fundingDecreaseFactorPerSecond_DESC_NULLS_LAST", fundingExponentFactor_ASC = "fundingExponentFactor_ASC", fundingExponentFactor_ASC_NULLS_FIRST = "fundingExponentFactor_ASC_NULLS_FIRST", fundingExponentFactor_ASC_NULLS_LAST = "fundingExponentFactor_ASC_NULLS_LAST", fundingExponentFactor_DESC = "fundingExponentFactor_DESC", fundingExponentFactor_DESC_NULLS_FIRST = "fundingExponentFactor_DESC_NULLS_FIRST", fundingExponentFactor_DESC_NULLS_LAST = "fundingExponentFactor_DESC_NULLS_LAST", fundingFactorPerSecond_ASC = "fundingFactorPerSecond_ASC", fundingFactorPerSecond_ASC_NULLS_FIRST = "fundingFactorPerSecond_ASC_NULLS_FIRST", fundingFactorPerSecond_ASC_NULLS_LAST = "fundingFactorPerSecond_ASC_NULLS_LAST", fundingFactorPerSecond_DESC = "fundingFactorPerSecond_DESC", fundingFactorPerSecond_DESC_NULLS_FIRST = "fundingFactorPerSecond_DESC_NULLS_FIRST", fundingFactorPerSecond_DESC_NULLS_LAST = "fundingFactorPerSecond_DESC_NULLS_LAST", fundingFactor_ASC = "fundingFactor_ASC", fundingFactor_ASC_NULLS_FIRST = "fundingFactor_ASC_NULLS_FIRST", fundingFactor_ASC_NULLS_LAST = "fundingFactor_ASC_NULLS_LAST", fundingFactor_DESC = "fundingFactor_DESC", fundingFactor_DESC_NULLS_FIRST = "fundingFactor_DESC_NULLS_FIRST", fundingFactor_DESC_NULLS_LAST = "fundingFactor_DESC_NULLS_LAST", fundingIncreaseFactorPerSecond_ASC = "fundingIncreaseFactorPerSecond_ASC", fundingIncreaseFactorPerSecond_ASC_NULLS_FIRST = "fundingIncreaseFactorPerSecond_ASC_NULLS_FIRST", fundingIncreaseFactorPerSecond_ASC_NULLS_LAST = "fundingIncreaseFactorPerSecond_ASC_NULLS_LAST", fundingIncreaseFactorPerSecond_DESC = "fundingIncreaseFactorPerSecond_DESC", fundingIncreaseFactorPerSecond_DESC_NULLS_FIRST = "fundingIncreaseFactorPerSecond_DESC_NULLS_FIRST", fundingIncreaseFactorPerSecond_DESC_NULLS_LAST = "fundingIncreaseFactorPerSecond_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", indexTokenAddress_ASC = "indexTokenAddress_ASC", indexTokenAddress_ASC_NULLS_FIRST = "indexTokenAddress_ASC_NULLS_FIRST", indexTokenAddress_ASC_NULLS_LAST = "indexTokenAddress_ASC_NULLS_LAST", indexTokenAddress_DESC = "indexTokenAddress_DESC", indexTokenAddress_DESC_NULLS_FIRST = "indexTokenAddress_DESC_NULLS_FIRST", indexTokenAddress_DESC_NULLS_LAST = "indexTokenAddress_DESC_NULLS_LAST", isDisabled_ASC = "isDisabled_ASC", isDisabled_ASC_NULLS_FIRST = "isDisabled_ASC_NULLS_FIRST", isDisabled_ASC_NULLS_LAST = "isDisabled_ASC_NULLS_LAST", isDisabled_DESC = "isDisabled_DESC", isDisabled_DESC_NULLS_FIRST = "isDisabled_DESC_NULLS_FIRST", isDisabled_DESC_NULLS_LAST = "isDisabled_DESC_NULLS_LAST", lentPositionImpactPoolAmount_ASC = "lentPositionImpactPoolAmount_ASC", lentPositionImpactPoolAmount_ASC_NULLS_FIRST = "lentPositionImpactPoolAmount_ASC_NULLS_FIRST", lentPositionImpactPoolAmount_ASC_NULLS_LAST = "lentPositionImpactPoolAmount_ASC_NULLS_LAST", lentPositionImpactPoolAmount_DESC = "lentPositionImpactPoolAmount_DESC", lentPositionImpactPoolAmount_DESC_NULLS_FIRST = "lentPositionImpactPoolAmount_DESC_NULLS_FIRST", lentPositionImpactPoolAmount_DESC_NULLS_LAST = "lentPositionImpactPoolAmount_DESC_NULLS_LAST", longOpenInterestInTokensUsingLongToken_ASC = "longOpenInterestInTokensUsingLongToken_ASC", longOpenInterestInTokensUsingLongToken_ASC_NULLS_FIRST = "longOpenInterestInTokensUsingLongToken_ASC_NULLS_FIRST", longOpenInterestInTokensUsingLongToken_ASC_NULLS_LAST = "longOpenInterestInTokensUsingLongToken_ASC_NULLS_LAST", longOpenInterestInTokensUsingLongToken_DESC = "longOpenInterestInTokensUsingLongToken_DESC", longOpenInterestInTokensUsingLongToken_DESC_NULLS_FIRST = "longOpenInterestInTokensUsingLongToken_DESC_NULLS_FIRST", longOpenInterestInTokensUsingLongToken_DESC_NULLS_LAST = "longOpenInterestInTokensUsingLongToken_DESC_NULLS_LAST", longOpenInterestInTokensUsingShortToken_ASC = "longOpenInterestInTokensUsingShortToken_ASC", longOpenInterestInTokensUsingShortToken_ASC_NULLS_FIRST = "longOpenInterestInTokensUsingShortToken_ASC_NULLS_FIRST", longOpenInterestInTokensUsingShortToken_ASC_NULLS_LAST = "longOpenInterestInTokensUsingShortToken_ASC_NULLS_LAST", longOpenInterestInTokensUsingShortToken_DESC = "longOpenInterestInTokensUsingShortToken_DESC", longOpenInterestInTokensUsingShortToken_DESC_NULLS_FIRST = "longOpenInterestInTokensUsingShortToken_DESC_NULLS_FIRST", longOpenInterestInTokensUsingShortToken_DESC_NULLS_LAST = "longOpenInterestInTokensUsingShortToken_DESC_NULLS_LAST", longOpenInterestInTokens_ASC = "longOpenInterestInTokens_ASC", longOpenInterestInTokens_ASC_NULLS_FIRST = "longOpenInterestInTokens_ASC_NULLS_FIRST", longOpenInterestInTokens_ASC_NULLS_LAST = "longOpenInterestInTokens_ASC_NULLS_LAST", longOpenInterestInTokens_DESC = "longOpenInterestInTokens_DESC", longOpenInterestInTokens_DESC_NULLS_FIRST = "longOpenInterestInTokens_DESC_NULLS_FIRST", longOpenInterestInTokens_DESC_NULLS_LAST = "longOpenInterestInTokens_DESC_NULLS_LAST", longOpenInterestUsd_ASC = "longOpenInterestUsd_ASC", longOpenInterestUsd_ASC_NULLS_FIRST = "longOpenInterestUsd_ASC_NULLS_FIRST", longOpenInterestUsd_ASC_NULLS_LAST = "longOpenInterestUsd_ASC_NULLS_LAST", longOpenInterestUsd_DESC = "longOpenInterestUsd_DESC", longOpenInterestUsd_DESC_NULLS_FIRST = "longOpenInterestUsd_DESC_NULLS_FIRST", longOpenInterestUsd_DESC_NULLS_LAST = "longOpenInterestUsd_DESC_NULLS_LAST", longOpenInterestUsingLongToken_ASC = "longOpenInterestUsingLongToken_ASC", longOpenInterestUsingLongToken_ASC_NULLS_FIRST = "longOpenInterestUsingLongToken_ASC_NULLS_FIRST", longOpenInterestUsingLongToken_ASC_NULLS_LAST = "longOpenInterestUsingLongToken_ASC_NULLS_LAST", longOpenInterestUsingLongToken_DESC = "longOpenInterestUsingLongToken_DESC", longOpenInterestUsingLongToken_DESC_NULLS_FIRST = "longOpenInterestUsingLongToken_DESC_NULLS_FIRST", longOpenInterestUsingLongToken_DESC_NULLS_LAST = "longOpenInterestUsingLongToken_DESC_NULLS_LAST", longOpenInterestUsingShortToken_ASC = "longOpenInterestUsingShortToken_ASC", longOpenInterestUsingShortToken_ASC_NULLS_FIRST = "longOpenInterestUsingShortToken_ASC_NULLS_FIRST", longOpenInterestUsingShortToken_ASC_NULLS_LAST = "longOpenInterestUsingShortToken_ASC_NULLS_LAST", longOpenInterestUsingShortToken_DESC = "longOpenInterestUsingShortToken_DESC", longOpenInterestUsingShortToken_DESC_NULLS_FIRST = "longOpenInterestUsingShortToken_DESC_NULLS_FIRST", longOpenInterestUsingShortToken_DESC_NULLS_LAST = "longOpenInterestUsingShortToken_DESC_NULLS_LAST", longPoolAmount_ASC = "longPoolAmount_ASC", longPoolAmount_ASC_NULLS_FIRST = "longPoolAmount_ASC_NULLS_FIRST", longPoolAmount_ASC_NULLS_LAST = "longPoolAmount_ASC_NULLS_LAST", longPoolAmount_DESC = "longPoolAmount_DESC", longPoolAmount_DESC_NULLS_FIRST = "longPoolAmount_DESC_NULLS_FIRST", longPoolAmount_DESC_NULLS_LAST = "longPoolAmount_DESC_NULLS_LAST", longTokenAddress_ASC = "longTokenAddress_ASC", longTokenAddress_ASC_NULLS_FIRST = "longTokenAddress_ASC_NULLS_FIRST", longTokenAddress_ASC_NULLS_LAST = "longTokenAddress_ASC_NULLS_LAST", longTokenAddress_DESC = "longTokenAddress_DESC", longTokenAddress_DESC_NULLS_FIRST = "longTokenAddress_DESC_NULLS_FIRST", longTokenAddress_DESC_NULLS_LAST = "longTokenAddress_DESC_NULLS_LAST", longsPayShorts_ASC = "longsPayShorts_ASC", longsPayShorts_ASC_NULLS_FIRST = "longsPayShorts_ASC_NULLS_FIRST", longsPayShorts_ASC_NULLS_LAST = "longsPayShorts_ASC_NULLS_LAST", longsPayShorts_DESC = "longsPayShorts_DESC", longsPayShorts_DESC_NULLS_FIRST = "longsPayShorts_DESC_NULLS_FIRST", longsPayShorts_DESC_NULLS_LAST = "longsPayShorts_DESC_NULLS_LAST", marketTokenAddress_ASC = "marketTokenAddress_ASC", marketTokenAddress_ASC_NULLS_FIRST = "marketTokenAddress_ASC_NULLS_FIRST", marketTokenAddress_ASC_NULLS_LAST = "marketTokenAddress_ASC_NULLS_LAST", marketTokenAddress_DESC = "marketTokenAddress_DESC", marketTokenAddress_DESC_NULLS_FIRST = "marketTokenAddress_DESC_NULLS_FIRST", marketTokenAddress_DESC_NULLS_LAST = "marketTokenAddress_DESC_NULLS_LAST", marketTokenSupply_ASC = "marketTokenSupply_ASC", marketTokenSupply_ASC_NULLS_FIRST = "marketTokenSupply_ASC_NULLS_FIRST", marketTokenSupply_ASC_NULLS_LAST = "marketTokenSupply_ASC_NULLS_LAST", marketTokenSupply_DESC = "marketTokenSupply_DESC", marketTokenSupply_DESC_NULLS_FIRST = "marketTokenSupply_DESC_NULLS_FIRST", marketTokenSupply_DESC_NULLS_LAST = "marketTokenSupply_DESC_NULLS_LAST", maxFundingFactorPerSecond_ASC = "maxFundingFactorPerSecond_ASC", maxFundingFactorPerSecond_ASC_NULLS_FIRST = "maxFundingFactorPerSecond_ASC_NULLS_FIRST", maxFundingFactorPerSecond_ASC_NULLS_LAST = "maxFundingFactorPerSecond_ASC_NULLS_LAST", maxFundingFactorPerSecond_DESC = "maxFundingFactorPerSecond_DESC", maxFundingFactorPerSecond_DESC_NULLS_FIRST = "maxFundingFactorPerSecond_DESC_NULLS_FIRST", maxFundingFactorPerSecond_DESC_NULLS_LAST = "maxFundingFactorPerSecond_DESC_NULLS_LAST", maxLendableImpactFactorForWithdrawals_ASC = "maxLendableImpactFactorForWithdrawals_ASC", maxLendableImpactFactorForWithdrawals_ASC_NULLS_FIRST = "maxLendableImpactFactorForWithdrawals_ASC_NULLS_FIRST", maxLendableImpactFactorForWithdrawals_ASC_NULLS_LAST = "maxLendableImpactFactorForWithdrawals_ASC_NULLS_LAST", maxLendableImpactFactorForWithdrawals_DESC = "maxLendableImpactFactorForWithdrawals_DESC", maxLendableImpactFactorForWithdrawals_DESC_NULLS_FIRST = "maxLendableImpactFactorForWithdrawals_DESC_NULLS_FIRST", maxLendableImpactFactorForWithdrawals_DESC_NULLS_LAST = "maxLendableImpactFactorForWithdrawals_DESC_NULLS_LAST", maxLendableImpactFactor_ASC = "maxLendableImpactFactor_ASC", maxLendableImpactFactor_ASC_NULLS_FIRST = "maxLendableImpactFactor_ASC_NULLS_FIRST", maxLendableImpactFactor_ASC_NULLS_LAST = "maxLendableImpactFactor_ASC_NULLS_LAST", maxLendableImpactFactor_DESC = "maxLendableImpactFactor_DESC", maxLendableImpactFactor_DESC_NULLS_FIRST = "maxLendableImpactFactor_DESC_NULLS_FIRST", maxLendableImpactFactor_DESC_NULLS_LAST = "maxLendableImpactFactor_DESC_NULLS_LAST", maxLendableImpactUsd_ASC = "maxLendableImpactUsd_ASC", maxLendableImpactUsd_ASC_NULLS_FIRST = "maxLendableImpactUsd_ASC_NULLS_FIRST", maxLendableImpactUsd_ASC_NULLS_LAST = "maxLendableImpactUsd_ASC_NULLS_LAST", maxLendableImpactUsd_DESC = "maxLendableImpactUsd_DESC", maxLendableImpactUsd_DESC_NULLS_FIRST = "maxLendableImpactUsd_DESC_NULLS_FIRST", maxLendableImpactUsd_DESC_NULLS_LAST = "maxLendableImpactUsd_DESC_NULLS_LAST", maxLongPoolAmount_ASC = "maxLongPoolAmount_ASC", maxLongPoolAmount_ASC_NULLS_FIRST = "maxLongPoolAmount_ASC_NULLS_FIRST", maxLongPoolAmount_ASC_NULLS_LAST = "maxLongPoolAmount_ASC_NULLS_LAST", maxLongPoolAmount_DESC = "maxLongPoolAmount_DESC", maxLongPoolAmount_DESC_NULLS_FIRST = "maxLongPoolAmount_DESC_NULLS_FIRST", maxLongPoolAmount_DESC_NULLS_LAST = "maxLongPoolAmount_DESC_NULLS_LAST", maxLongPoolUsdForDeposit_ASC = "maxLongPoolUsdForDeposit_ASC", maxLongPoolUsdForDeposit_ASC_NULLS_FIRST = "maxLongPoolUsdForDeposit_ASC_NULLS_FIRST", maxLongPoolUsdForDeposit_ASC_NULLS_LAST = "maxLongPoolUsdForDeposit_ASC_NULLS_LAST", maxLongPoolUsdForDeposit_DESC = "maxLongPoolUsdForDeposit_DESC", maxLongPoolUsdForDeposit_DESC_NULLS_FIRST = "maxLongPoolUsdForDeposit_DESC_NULLS_FIRST", maxLongPoolUsdForDeposit_DESC_NULLS_LAST = "maxLongPoolUsdForDeposit_DESC_NULLS_LAST", maxOpenInterestLong_ASC = "maxOpenInterestLong_ASC", maxOpenInterestLong_ASC_NULLS_FIRST = "maxOpenInterestLong_ASC_NULLS_FIRST", maxOpenInterestLong_ASC_NULLS_LAST = "maxOpenInterestLong_ASC_NULLS_LAST", maxOpenInterestLong_DESC = "maxOpenInterestLong_DESC", maxOpenInterestLong_DESC_NULLS_FIRST = "maxOpenInterestLong_DESC_NULLS_FIRST", maxOpenInterestLong_DESC_NULLS_LAST = "maxOpenInterestLong_DESC_NULLS_LAST", maxOpenInterestShort_ASC = "maxOpenInterestShort_ASC", maxOpenInterestShort_ASC_NULLS_FIRST = "maxOpenInterestShort_ASC_NULLS_FIRST", maxOpenInterestShort_ASC_NULLS_LAST = "maxOpenInterestShort_ASC_NULLS_LAST", maxOpenInterestShort_DESC = "maxOpenInterestShort_DESC", maxOpenInterestShort_DESC_NULLS_FIRST = "maxOpenInterestShort_DESC_NULLS_FIRST", maxOpenInterestShort_DESC_NULLS_LAST = "maxOpenInterestShort_DESC_NULLS_LAST", maxPnlFactorForTradersLong_ASC = "maxPnlFactorForTradersLong_ASC", maxPnlFactorForTradersLong_ASC_NULLS_FIRST = "maxPnlFactorForTradersLong_ASC_NULLS_FIRST", maxPnlFactorForTradersLong_ASC_NULLS_LAST = "maxPnlFactorForTradersLong_ASC_NULLS_LAST", maxPnlFactorForTradersLong_DESC = "maxPnlFactorForTradersLong_DESC", maxPnlFactorForTradersLong_DESC_NULLS_FIRST = "maxPnlFactorForTradersLong_DESC_NULLS_FIRST", maxPnlFactorForTradersLong_DESC_NULLS_LAST = "maxPnlFactorForTradersLong_DESC_NULLS_LAST", maxPnlFactorForTradersShort_ASC = "maxPnlFactorForTradersShort_ASC", maxPnlFactorForTradersShort_ASC_NULLS_FIRST = "maxPnlFactorForTradersShort_ASC_NULLS_FIRST", maxPnlFactorForTradersShort_ASC_NULLS_LAST = "maxPnlFactorForTradersShort_ASC_NULLS_LAST", maxPnlFactorForTradersShort_DESC = "maxPnlFactorForTradersShort_DESC", maxPnlFactorForTradersShort_DESC_NULLS_FIRST = "maxPnlFactorForTradersShort_DESC_NULLS_FIRST", maxPnlFactorForTradersShort_DESC_NULLS_LAST = "maxPnlFactorForTradersShort_DESC_NULLS_LAST", maxPositionImpactFactorForLiquidations_ASC = "maxPositionImpactFactorForLiquidations_ASC", maxPositionImpactFactorForLiquidations_ASC_NULLS_FIRST = "maxPositionImpactFactorForLiquidations_ASC_NULLS_FIRST", maxPositionImpactFactorForLiquidations_ASC_NULLS_LAST = "maxPositionImpactFactorForLiquidations_ASC_NULLS_LAST", maxPositionImpactFactorForLiquidations_DESC = "maxPositionImpactFactorForLiquidations_DESC", maxPositionImpactFactorForLiquidations_DESC_NULLS_FIRST = "maxPositionImpactFactorForLiquidations_DESC_NULLS_FIRST", maxPositionImpactFactorForLiquidations_DESC_NULLS_LAST = "maxPositionImpactFactorForLiquidations_DESC_NULLS_LAST", maxPositionImpactFactorNegative_ASC = "maxPositionImpactFactorNegative_ASC", maxPositionImpactFactorNegative_ASC_NULLS_FIRST = "maxPositionImpactFactorNegative_ASC_NULLS_FIRST", maxPositionImpactFactorNegative_ASC_NULLS_LAST = "maxPositionImpactFactorNegative_ASC_NULLS_LAST", maxPositionImpactFactorNegative_DESC = "maxPositionImpactFactorNegative_DESC", maxPositionImpactFactorNegative_DESC_NULLS_FIRST = "maxPositionImpactFactorNegative_DESC_NULLS_FIRST", maxPositionImpactFactorNegative_DESC_NULLS_LAST = "maxPositionImpactFactorNegative_DESC_NULLS_LAST", maxPositionImpactFactorPositive_ASC = "maxPositionImpactFactorPositive_ASC", maxPositionImpactFactorPositive_ASC_NULLS_FIRST = "maxPositionImpactFactorPositive_ASC_NULLS_FIRST", maxPositionImpactFactorPositive_ASC_NULLS_LAST = "maxPositionImpactFactorPositive_ASC_NULLS_LAST", maxPositionImpactFactorPositive_DESC = "maxPositionImpactFactorPositive_DESC", maxPositionImpactFactorPositive_DESC_NULLS_FIRST = "maxPositionImpactFactorPositive_DESC_NULLS_FIRST", maxPositionImpactFactorPositive_DESC_NULLS_LAST = "maxPositionImpactFactorPositive_DESC_NULLS_LAST", maxShortPoolAmount_ASC = "maxShortPoolAmount_ASC", maxShortPoolAmount_ASC_NULLS_FIRST = "maxShortPoolAmount_ASC_NULLS_FIRST", maxShortPoolAmount_ASC_NULLS_LAST = "maxShortPoolAmount_ASC_NULLS_LAST", maxShortPoolAmount_DESC = "maxShortPoolAmount_DESC", maxShortPoolAmount_DESC_NULLS_FIRST = "maxShortPoolAmount_DESC_NULLS_FIRST", maxShortPoolAmount_DESC_NULLS_LAST = "maxShortPoolAmount_DESC_NULLS_LAST", maxShortPoolUsdForDeposit_ASC = "maxShortPoolUsdForDeposit_ASC", maxShortPoolUsdForDeposit_ASC_NULLS_FIRST = "maxShortPoolUsdForDeposit_ASC_NULLS_FIRST", maxShortPoolUsdForDeposit_ASC_NULLS_LAST = "maxShortPoolUsdForDeposit_ASC_NULLS_LAST", maxShortPoolUsdForDeposit_DESC = "maxShortPoolUsdForDeposit_DESC", maxShortPoolUsdForDeposit_DESC_NULLS_FIRST = "maxShortPoolUsdForDeposit_DESC_NULLS_FIRST", maxShortPoolUsdForDeposit_DESC_NULLS_LAST = "maxShortPoolUsdForDeposit_DESC_NULLS_LAST", minCollateralFactorForOpenInterestLong_ASC = "minCollateralFactorForOpenInterestLong_ASC", minCollateralFactorForOpenInterestLong_ASC_NULLS_FIRST = "minCollateralFactorForOpenInterestLong_ASC_NULLS_FIRST", minCollateralFactorForOpenInterestLong_ASC_NULLS_LAST = "minCollateralFactorForOpenInterestLong_ASC_NULLS_LAST", minCollateralFactorForOpenInterestLong_DESC = "minCollateralFactorForOpenInterestLong_DESC", minCollateralFactorForOpenInterestLong_DESC_NULLS_FIRST = "minCollateralFactorForOpenInterestLong_DESC_NULLS_FIRST", minCollateralFactorForOpenInterestLong_DESC_NULLS_LAST = "minCollateralFactorForOpenInterestLong_DESC_NULLS_LAST", minCollateralFactorForOpenInterestShort_ASC = "minCollateralFactorForOpenInterestShort_ASC", minCollateralFactorForOpenInterestShort_ASC_NULLS_FIRST = "minCollateralFactorForOpenInterestShort_ASC_NULLS_FIRST", minCollateralFactorForOpenInterestShort_ASC_NULLS_LAST = "minCollateralFactorForOpenInterestShort_ASC_NULLS_LAST", minCollateralFactorForOpenInterestShort_DESC = "minCollateralFactorForOpenInterestShort_DESC", minCollateralFactorForOpenInterestShort_DESC_NULLS_FIRST = "minCollateralFactorForOpenInterestShort_DESC_NULLS_FIRST", minCollateralFactorForOpenInterestShort_DESC_NULLS_LAST = "minCollateralFactorForOpenInterestShort_DESC_NULLS_LAST", minCollateralFactor_ASC = "minCollateralFactor_ASC", minCollateralFactor_ASC_NULLS_FIRST = "minCollateralFactor_ASC_NULLS_FIRST", minCollateralFactor_ASC_NULLS_LAST = "minCollateralFactor_ASC_NULLS_LAST", minCollateralFactor_DESC = "minCollateralFactor_DESC", minCollateralFactor_DESC_NULLS_FIRST = "minCollateralFactor_DESC_NULLS_FIRST", minCollateralFactor_DESC_NULLS_LAST = "minCollateralFactor_DESC_NULLS_LAST", minFundingFactorPerSecond_ASC = "minFundingFactorPerSecond_ASC", minFundingFactorPerSecond_ASC_NULLS_FIRST = "minFundingFactorPerSecond_ASC_NULLS_FIRST", minFundingFactorPerSecond_ASC_NULLS_LAST = "minFundingFactorPerSecond_ASC_NULLS_LAST", minFundingFactorPerSecond_DESC = "minFundingFactorPerSecond_DESC", minFundingFactorPerSecond_DESC_NULLS_FIRST = "minFundingFactorPerSecond_DESC_NULLS_FIRST", minFundingFactorPerSecond_DESC_NULLS_LAST = "minFundingFactorPerSecond_DESC_NULLS_LAST", minPositionImpactPoolAmount_ASC = "minPositionImpactPoolAmount_ASC", minPositionImpactPoolAmount_ASC_NULLS_FIRST = "minPositionImpactPoolAmount_ASC_NULLS_FIRST", minPositionImpactPoolAmount_ASC_NULLS_LAST = "minPositionImpactPoolAmount_ASC_NULLS_LAST", minPositionImpactPoolAmount_DESC = "minPositionImpactPoolAmount_DESC", minPositionImpactPoolAmount_DESC_NULLS_FIRST = "minPositionImpactPoolAmount_DESC_NULLS_FIRST", minPositionImpactPoolAmount_DESC_NULLS_LAST = "minPositionImpactPoolAmount_DESC_NULLS_LAST", openInterestReserveFactorLong_ASC = "openInterestReserveFactorLong_ASC", openInterestReserveFactorLong_ASC_NULLS_FIRST = "openInterestReserveFactorLong_ASC_NULLS_FIRST", openInterestReserveFactorLong_ASC_NULLS_LAST = "openInterestReserveFactorLong_ASC_NULLS_LAST", openInterestReserveFactorLong_DESC = "openInterestReserveFactorLong_DESC", openInterestReserveFactorLong_DESC_NULLS_FIRST = "openInterestReserveFactorLong_DESC_NULLS_FIRST", openInterestReserveFactorLong_DESC_NULLS_LAST = "openInterestReserveFactorLong_DESC_NULLS_LAST", openInterestReserveFactorShort_ASC = "openInterestReserveFactorShort_ASC", openInterestReserveFactorShort_ASC_NULLS_FIRST = "openInterestReserveFactorShort_ASC_NULLS_FIRST", openInterestReserveFactorShort_ASC_NULLS_LAST = "openInterestReserveFactorShort_ASC_NULLS_LAST", openInterestReserveFactorShort_DESC = "openInterestReserveFactorShort_DESC", openInterestReserveFactorShort_DESC_NULLS_FIRST = "openInterestReserveFactorShort_DESC_NULLS_FIRST", openInterestReserveFactorShort_DESC_NULLS_LAST = "openInterestReserveFactorShort_DESC_NULLS_LAST", optimalUsageFactorLong_ASC = "optimalUsageFactorLong_ASC", optimalUsageFactorLong_ASC_NULLS_FIRST = "optimalUsageFactorLong_ASC_NULLS_FIRST", optimalUsageFactorLong_ASC_NULLS_LAST = "optimalUsageFactorLong_ASC_NULLS_LAST", optimalUsageFactorLong_DESC = "optimalUsageFactorLong_DESC", optimalUsageFactorLong_DESC_NULLS_FIRST = "optimalUsageFactorLong_DESC_NULLS_FIRST", optimalUsageFactorLong_DESC_NULLS_LAST = "optimalUsageFactorLong_DESC_NULLS_LAST", optimalUsageFactorShort_ASC = "optimalUsageFactorShort_ASC", optimalUsageFactorShort_ASC_NULLS_FIRST = "optimalUsageFactorShort_ASC_NULLS_FIRST", optimalUsageFactorShort_ASC_NULLS_LAST = "optimalUsageFactorShort_ASC_NULLS_LAST", optimalUsageFactorShort_DESC = "optimalUsageFactorShort_DESC", optimalUsageFactorShort_DESC_NULLS_FIRST = "optimalUsageFactorShort_DESC_NULLS_FIRST", optimalUsageFactorShort_DESC_NULLS_LAST = "optimalUsageFactorShort_DESC_NULLS_LAST", poolValueMax_ASC = "poolValueMax_ASC", poolValueMax_ASC_NULLS_FIRST = "poolValueMax_ASC_NULLS_FIRST", poolValueMax_ASC_NULLS_LAST = "poolValueMax_ASC_NULLS_LAST", poolValueMax_DESC = "poolValueMax_DESC", poolValueMax_DESC_NULLS_FIRST = "poolValueMax_DESC_NULLS_FIRST", poolValueMax_DESC_NULLS_LAST = "poolValueMax_DESC_NULLS_LAST", poolValueMin_ASC = "poolValueMin_ASC", poolValueMin_ASC_NULLS_FIRST = "poolValueMin_ASC_NULLS_FIRST", poolValueMin_ASC_NULLS_LAST = "poolValueMin_ASC_NULLS_LAST", poolValueMin_DESC = "poolValueMin_DESC", poolValueMin_DESC_NULLS_FIRST = "poolValueMin_DESC_NULLS_FIRST", poolValueMin_DESC_NULLS_LAST = "poolValueMin_DESC_NULLS_LAST", poolValue_ASC = "poolValue_ASC", poolValue_ASC_NULLS_FIRST = "poolValue_ASC_NULLS_FIRST", poolValue_ASC_NULLS_LAST = "poolValue_ASC_NULLS_LAST", poolValue_DESC = "poolValue_DESC", poolValue_DESC_NULLS_FIRST = "poolValue_DESC_NULLS_FIRST", poolValue_DESC_NULLS_LAST = "poolValue_DESC_NULLS_LAST", positionFeeFactorForNegativeImpact_ASC = "positionFeeFactorForNegativeImpact_ASC", positionFeeFactorForNegativeImpact_ASC_NULLS_FIRST = "positionFeeFactorForNegativeImpact_ASC_NULLS_FIRST", positionFeeFactorForNegativeImpact_ASC_NULLS_LAST = "positionFeeFactorForNegativeImpact_ASC_NULLS_LAST", positionFeeFactorForNegativeImpact_DESC = "positionFeeFactorForNegativeImpact_DESC", positionFeeFactorForNegativeImpact_DESC_NULLS_FIRST = "positionFeeFactorForNegativeImpact_DESC_NULLS_FIRST", positionFeeFactorForNegativeImpact_DESC_NULLS_LAST = "positionFeeFactorForNegativeImpact_DESC_NULLS_LAST", positionFeeFactorForPositiveImpact_ASC = "positionFeeFactorForPositiveImpact_ASC", positionFeeFactorForPositiveImpact_ASC_NULLS_FIRST = "positionFeeFactorForPositiveImpact_ASC_NULLS_FIRST", positionFeeFactorForPositiveImpact_ASC_NULLS_LAST = "positionFeeFactorForPositiveImpact_ASC_NULLS_LAST", positionFeeFactorForPositiveImpact_DESC = "positionFeeFactorForPositiveImpact_DESC", positionFeeFactorForPositiveImpact_DESC_NULLS_FIRST = "positionFeeFactorForPositiveImpact_DESC_NULLS_FIRST", positionFeeFactorForPositiveImpact_DESC_NULLS_LAST = "positionFeeFactorForPositiveImpact_DESC_NULLS_LAST", positionImpactExponentFactorNegative_ASC = "positionImpactExponentFactorNegative_ASC", positionImpactExponentFactorNegative_ASC_NULLS_FIRST = "positionImpactExponentFactorNegative_ASC_NULLS_FIRST", positionImpactExponentFactorNegative_ASC_NULLS_LAST = "positionImpactExponentFactorNegative_ASC_NULLS_LAST", positionImpactExponentFactorNegative_DESC = "positionImpactExponentFactorNegative_DESC", positionImpactExponentFactorNegative_DESC_NULLS_FIRST = "positionImpactExponentFactorNegative_DESC_NULLS_FIRST", positionImpactExponentFactorNegative_DESC_NULLS_LAST = "positionImpactExponentFactorNegative_DESC_NULLS_LAST", positionImpactExponentFactorPositive_ASC = "positionImpactExponentFactorPositive_ASC", positionImpactExponentFactorPositive_ASC_NULLS_FIRST = "positionImpactExponentFactorPositive_ASC_NULLS_FIRST", positionImpactExponentFactorPositive_ASC_NULLS_LAST = "positionImpactExponentFactorPositive_ASC_NULLS_LAST", positionImpactExponentFactorPositive_DESC = "positionImpactExponentFactorPositive_DESC", positionImpactExponentFactorPositive_DESC_NULLS_FIRST = "positionImpactExponentFactorPositive_DESC_NULLS_FIRST", positionImpactExponentFactorPositive_DESC_NULLS_LAST = "positionImpactExponentFactorPositive_DESC_NULLS_LAST", positionImpactFactorNegative_ASC = "positionImpactFactorNegative_ASC", positionImpactFactorNegative_ASC_NULLS_FIRST = "positionImpactFactorNegative_ASC_NULLS_FIRST", positionImpactFactorNegative_ASC_NULLS_LAST = "positionImpactFactorNegative_ASC_NULLS_LAST", positionImpactFactorNegative_DESC = "positionImpactFactorNegative_DESC", positionImpactFactorNegative_DESC_NULLS_FIRST = "positionImpactFactorNegative_DESC_NULLS_FIRST", positionImpactFactorNegative_DESC_NULLS_LAST = "positionImpactFactorNegative_DESC_NULLS_LAST", positionImpactFactorPositive_ASC = "positionImpactFactorPositive_ASC", positionImpactFactorPositive_ASC_NULLS_FIRST = "positionImpactFactorPositive_ASC_NULLS_FIRST", positionImpactFactorPositive_ASC_NULLS_LAST = "positionImpactFactorPositive_ASC_NULLS_LAST", positionImpactFactorPositive_DESC = "positionImpactFactorPositive_DESC", positionImpactFactorPositive_DESC_NULLS_FIRST = "positionImpactFactorPositive_DESC_NULLS_FIRST", positionImpactFactorPositive_DESC_NULLS_LAST = "positionImpactFactorPositive_DESC_NULLS_LAST", positionImpactPoolAmount_ASC = "positionImpactPoolAmount_ASC", positionImpactPoolAmount_ASC_NULLS_FIRST = "positionImpactPoolAmount_ASC_NULLS_FIRST", positionImpactPoolAmount_ASC_NULLS_LAST = "positionImpactPoolAmount_ASC_NULLS_LAST", positionImpactPoolAmount_DESC = "positionImpactPoolAmount_DESC", positionImpactPoolAmount_DESC_NULLS_FIRST = "positionImpactPoolAmount_DESC_NULLS_FIRST", positionImpactPoolAmount_DESC_NULLS_LAST = "positionImpactPoolAmount_DESC_NULLS_LAST", positionImpactPoolDistributionRate_ASC = "positionImpactPoolDistributionRate_ASC", positionImpactPoolDistributionRate_ASC_NULLS_FIRST = "positionImpactPoolDistributionRate_ASC_NULLS_FIRST", positionImpactPoolDistributionRate_ASC_NULLS_LAST = "positionImpactPoolDistributionRate_ASC_NULLS_LAST", positionImpactPoolDistributionRate_DESC = "positionImpactPoolDistributionRate_DESC", positionImpactPoolDistributionRate_DESC_NULLS_FIRST = "positionImpactPoolDistributionRate_DESC_NULLS_FIRST", positionImpactPoolDistributionRate_DESC_NULLS_LAST = "positionImpactPoolDistributionRate_DESC_NULLS_LAST", reserveFactorLong_ASC = "reserveFactorLong_ASC", reserveFactorLong_ASC_NULLS_FIRST = "reserveFactorLong_ASC_NULLS_FIRST", reserveFactorLong_ASC_NULLS_LAST = "reserveFactorLong_ASC_NULLS_LAST", reserveFactorLong_DESC = "reserveFactorLong_DESC", reserveFactorLong_DESC_NULLS_FIRST = "reserveFactorLong_DESC_NULLS_FIRST", reserveFactorLong_DESC_NULLS_LAST = "reserveFactorLong_DESC_NULLS_LAST", reserveFactorShort_ASC = "reserveFactorShort_ASC", reserveFactorShort_ASC_NULLS_FIRST = "reserveFactorShort_ASC_NULLS_FIRST", reserveFactorShort_ASC_NULLS_LAST = "reserveFactorShort_ASC_NULLS_LAST", reserveFactorShort_DESC = "reserveFactorShort_DESC", reserveFactorShort_DESC_NULLS_FIRST = "reserveFactorShort_DESC_NULLS_FIRST", reserveFactorShort_DESC_NULLS_LAST = "reserveFactorShort_DESC_NULLS_LAST", shortOpenInterestInTokensUsingLongToken_ASC = "shortOpenInterestInTokensUsingLongToken_ASC", shortOpenInterestInTokensUsingLongToken_ASC_NULLS_FIRST = "shortOpenInterestInTokensUsingLongToken_ASC_NULLS_FIRST", shortOpenInterestInTokensUsingLongToken_ASC_NULLS_LAST = "shortOpenInterestInTokensUsingLongToken_ASC_NULLS_LAST", shortOpenInterestInTokensUsingLongToken_DESC = "shortOpenInterestInTokensUsingLongToken_DESC", shortOpenInterestInTokensUsingLongToken_DESC_NULLS_FIRST = "shortOpenInterestInTokensUsingLongToken_DESC_NULLS_FIRST", shortOpenInterestInTokensUsingLongToken_DESC_NULLS_LAST = "shortOpenInterestInTokensUsingLongToken_DESC_NULLS_LAST", shortOpenInterestInTokensUsingShortToken_ASC = "shortOpenInterestInTokensUsingShortToken_ASC", shortOpenInterestInTokensUsingShortToken_ASC_NULLS_FIRST = "shortOpenInterestInTokensUsingShortToken_ASC_NULLS_FIRST", shortOpenInterestInTokensUsingShortToken_ASC_NULLS_LAST = "shortOpenInterestInTokensUsingShortToken_ASC_NULLS_LAST", shortOpenInterestInTokensUsingShortToken_DESC = "shortOpenInterestInTokensUsingShortToken_DESC", shortOpenInterestInTokensUsingShortToken_DESC_NULLS_FIRST = "shortOpenInterestInTokensUsingShortToken_DESC_NULLS_FIRST", shortOpenInterestInTokensUsingShortToken_DESC_NULLS_LAST = "shortOpenInterestInTokensUsingShortToken_DESC_NULLS_LAST", shortOpenInterestInTokens_ASC = "shortOpenInterestInTokens_ASC", shortOpenInterestInTokens_ASC_NULLS_FIRST = "shortOpenInterestInTokens_ASC_NULLS_FIRST", shortOpenInterestInTokens_ASC_NULLS_LAST = "shortOpenInterestInTokens_ASC_NULLS_LAST", shortOpenInterestInTokens_DESC = "shortOpenInterestInTokens_DESC", shortOpenInterestInTokens_DESC_NULLS_FIRST = "shortOpenInterestInTokens_DESC_NULLS_FIRST", shortOpenInterestInTokens_DESC_NULLS_LAST = "shortOpenInterestInTokens_DESC_NULLS_LAST", shortOpenInterestUsd_ASC = "shortOpenInterestUsd_ASC", shortOpenInterestUsd_ASC_NULLS_FIRST = "shortOpenInterestUsd_ASC_NULLS_FIRST", shortOpenInterestUsd_ASC_NULLS_LAST = "shortOpenInterestUsd_ASC_NULLS_LAST", shortOpenInterestUsd_DESC = "shortOpenInterestUsd_DESC", shortOpenInterestUsd_DESC_NULLS_FIRST = "shortOpenInterestUsd_DESC_NULLS_FIRST", shortOpenInterestUsd_DESC_NULLS_LAST = "shortOpenInterestUsd_DESC_NULLS_LAST", shortOpenInterestUsingLongToken_ASC = "shortOpenInterestUsingLongToken_ASC", shortOpenInterestUsingLongToken_ASC_NULLS_FIRST = "shortOpenInterestUsingLongToken_ASC_NULLS_FIRST", shortOpenInterestUsingLongToken_ASC_NULLS_LAST = "shortOpenInterestUsingLongToken_ASC_NULLS_LAST", shortOpenInterestUsingLongToken_DESC = "shortOpenInterestUsingLongToken_DESC", shortOpenInterestUsingLongToken_DESC_NULLS_FIRST = "shortOpenInterestUsingLongToken_DESC_NULLS_FIRST", shortOpenInterestUsingLongToken_DESC_NULLS_LAST = "shortOpenInterestUsingLongToken_DESC_NULLS_LAST", shortOpenInterestUsingShortToken_ASC = "shortOpenInterestUsingShortToken_ASC", shortOpenInterestUsingShortToken_ASC_NULLS_FIRST = "shortOpenInterestUsingShortToken_ASC_NULLS_FIRST", shortOpenInterestUsingShortToken_ASC_NULLS_LAST = "shortOpenInterestUsingShortToken_ASC_NULLS_LAST", shortOpenInterestUsingShortToken_DESC = "shortOpenInterestUsingShortToken_DESC", shortOpenInterestUsingShortToken_DESC_NULLS_FIRST = "shortOpenInterestUsingShortToken_DESC_NULLS_FIRST", shortOpenInterestUsingShortToken_DESC_NULLS_LAST = "shortOpenInterestUsingShortToken_DESC_NULLS_LAST", shortPoolAmount_ASC = "shortPoolAmount_ASC", shortPoolAmount_ASC_NULLS_FIRST = "shortPoolAmount_ASC_NULLS_FIRST", shortPoolAmount_ASC_NULLS_LAST = "shortPoolAmount_ASC_NULLS_LAST", shortPoolAmount_DESC = "shortPoolAmount_DESC", shortPoolAmount_DESC_NULLS_FIRST = "shortPoolAmount_DESC_NULLS_FIRST", shortPoolAmount_DESC_NULLS_LAST = "shortPoolAmount_DESC_NULLS_LAST", shortTokenAddress_ASC = "shortTokenAddress_ASC", shortTokenAddress_ASC_NULLS_FIRST = "shortTokenAddress_ASC_NULLS_FIRST", shortTokenAddress_ASC_NULLS_LAST = "shortTokenAddress_ASC_NULLS_LAST", shortTokenAddress_DESC = "shortTokenAddress_DESC", shortTokenAddress_DESC_NULLS_FIRST = "shortTokenAddress_DESC_NULLS_FIRST", shortTokenAddress_DESC_NULLS_LAST = "shortTokenAddress_DESC_NULLS_LAST", swapFeeFactorForNegativeImpact_ASC = "swapFeeFactorForNegativeImpact_ASC", swapFeeFactorForNegativeImpact_ASC_NULLS_FIRST = "swapFeeFactorForNegativeImpact_ASC_NULLS_FIRST", swapFeeFactorForNegativeImpact_ASC_NULLS_LAST = "swapFeeFactorForNegativeImpact_ASC_NULLS_LAST", swapFeeFactorForNegativeImpact_DESC = "swapFeeFactorForNegativeImpact_DESC", swapFeeFactorForNegativeImpact_DESC_NULLS_FIRST = "swapFeeFactorForNegativeImpact_DESC_NULLS_FIRST", swapFeeFactorForNegativeImpact_DESC_NULLS_LAST = "swapFeeFactorForNegativeImpact_DESC_NULLS_LAST", swapFeeFactorForPositiveImpact_ASC = "swapFeeFactorForPositiveImpact_ASC", swapFeeFactorForPositiveImpact_ASC_NULLS_FIRST = "swapFeeFactorForPositiveImpact_ASC_NULLS_FIRST", swapFeeFactorForPositiveImpact_ASC_NULLS_LAST = "swapFeeFactorForPositiveImpact_ASC_NULLS_LAST", swapFeeFactorForPositiveImpact_DESC = "swapFeeFactorForPositiveImpact_DESC", swapFeeFactorForPositiveImpact_DESC_NULLS_FIRST = "swapFeeFactorForPositiveImpact_DESC_NULLS_FIRST", swapFeeFactorForPositiveImpact_DESC_NULLS_LAST = "swapFeeFactorForPositiveImpact_DESC_NULLS_LAST", swapImpactExponentFactor_ASC = "swapImpactExponentFactor_ASC", swapImpactExponentFactor_ASC_NULLS_FIRST = "swapImpactExponentFactor_ASC_NULLS_FIRST", swapImpactExponentFactor_ASC_NULLS_LAST = "swapImpactExponentFactor_ASC_NULLS_LAST", swapImpactExponentFactor_DESC = "swapImpactExponentFactor_DESC", swapImpactExponentFactor_DESC_NULLS_FIRST = "swapImpactExponentFactor_DESC_NULLS_FIRST", swapImpactExponentFactor_DESC_NULLS_LAST = "swapImpactExponentFactor_DESC_NULLS_LAST", swapImpactFactorNegative_ASC = "swapImpactFactorNegative_ASC", swapImpactFactorNegative_ASC_NULLS_FIRST = "swapImpactFactorNegative_ASC_NULLS_FIRST", swapImpactFactorNegative_ASC_NULLS_LAST = "swapImpactFactorNegative_ASC_NULLS_LAST", swapImpactFactorNegative_DESC = "swapImpactFactorNegative_DESC", swapImpactFactorNegative_DESC_NULLS_FIRST = "swapImpactFactorNegative_DESC_NULLS_FIRST", swapImpactFactorNegative_DESC_NULLS_LAST = "swapImpactFactorNegative_DESC_NULLS_LAST", swapImpactFactorPositive_ASC = "swapImpactFactorPositive_ASC", swapImpactFactorPositive_ASC_NULLS_FIRST = "swapImpactFactorPositive_ASC_NULLS_FIRST", swapImpactFactorPositive_ASC_NULLS_LAST = "swapImpactFactorPositive_ASC_NULLS_LAST", swapImpactFactorPositive_DESC = "swapImpactFactorPositive_DESC", swapImpactFactorPositive_DESC_NULLS_FIRST = "swapImpactFactorPositive_DESC_NULLS_FIRST", swapImpactFactorPositive_DESC_NULLS_LAST = "swapImpactFactorPositive_DESC_NULLS_LAST", swapImpactPoolAmountLong_ASC = "swapImpactPoolAmountLong_ASC", swapImpactPoolAmountLong_ASC_NULLS_FIRST = "swapImpactPoolAmountLong_ASC_NULLS_FIRST", swapImpactPoolAmountLong_ASC_NULLS_LAST = "swapImpactPoolAmountLong_ASC_NULLS_LAST", swapImpactPoolAmountLong_DESC = "swapImpactPoolAmountLong_DESC", swapImpactPoolAmountLong_DESC_NULLS_FIRST = "swapImpactPoolAmountLong_DESC_NULLS_FIRST", swapImpactPoolAmountLong_DESC_NULLS_LAST = "swapImpactPoolAmountLong_DESC_NULLS_LAST", swapImpactPoolAmountShort_ASC = "swapImpactPoolAmountShort_ASC", swapImpactPoolAmountShort_ASC_NULLS_FIRST = "swapImpactPoolAmountShort_ASC_NULLS_FIRST", swapImpactPoolAmountShort_ASC_NULLS_LAST = "swapImpactPoolAmountShort_ASC_NULLS_LAST", swapImpactPoolAmountShort_DESC = "swapImpactPoolAmountShort_DESC", swapImpactPoolAmountShort_DESC_NULLS_FIRST = "swapImpactPoolAmountShort_DESC_NULLS_FIRST", swapImpactPoolAmountShort_DESC_NULLS_LAST = "swapImpactPoolAmountShort_DESC_NULLS_LAST", thresholdForDecreaseFunding_ASC = "thresholdForDecreaseFunding_ASC", thresholdForDecreaseFunding_ASC_NULLS_FIRST = "thresholdForDecreaseFunding_ASC_NULLS_FIRST", thresholdForDecreaseFunding_ASC_NULLS_LAST = "thresholdForDecreaseFunding_ASC_NULLS_LAST", thresholdForDecreaseFunding_DESC = "thresholdForDecreaseFunding_DESC", thresholdForDecreaseFunding_DESC_NULLS_FIRST = "thresholdForDecreaseFunding_DESC_NULLS_FIRST", thresholdForDecreaseFunding_DESC_NULLS_LAST = "thresholdForDecreaseFunding_DESC_NULLS_LAST", thresholdForStableFunding_ASC = "thresholdForStableFunding_ASC", thresholdForStableFunding_ASC_NULLS_FIRST = "thresholdForStableFunding_ASC_NULLS_FIRST", thresholdForStableFunding_ASC_NULLS_LAST = "thresholdForStableFunding_ASC_NULLS_LAST", thresholdForStableFunding_DESC = "thresholdForStableFunding_DESC", thresholdForStableFunding_DESC_NULLS_FIRST = "thresholdForStableFunding_DESC_NULLS_FIRST", thresholdForStableFunding_DESC_NULLS_LAST = "thresholdForStableFunding_DESC_NULLS_LAST", totalBorrowingFees_ASC = "totalBorrowingFees_ASC", totalBorrowingFees_ASC_NULLS_FIRST = "totalBorrowingFees_ASC_NULLS_FIRST", totalBorrowingFees_ASC_NULLS_LAST = "totalBorrowingFees_ASC_NULLS_LAST", totalBorrowingFees_DESC = "totalBorrowingFees_DESC", totalBorrowingFees_DESC_NULLS_FIRST = "totalBorrowingFees_DESC_NULLS_FIRST", totalBorrowingFees_DESC_NULLS_LAST = "totalBorrowingFees_DESC_NULLS_LAST", useOpenInterestInTokensForBalance_ASC = "useOpenInterestInTokensForBalance_ASC", useOpenInterestInTokensForBalance_ASC_NULLS_FIRST = "useOpenInterestInTokensForBalance_ASC_NULLS_FIRST", useOpenInterestInTokensForBalance_ASC_NULLS_LAST = "useOpenInterestInTokensForBalance_ASC_NULLS_LAST", useOpenInterestInTokensForBalance_DESC = "useOpenInterestInTokensForBalance_DESC", useOpenInterestInTokensForBalance_DESC_NULLS_FIRST = "useOpenInterestInTokensForBalance_DESC_NULLS_FIRST", useOpenInterestInTokensForBalance_DESC_NULLS_LAST = "useOpenInterestInTokensForBalance_DESC_NULLS_LAST", virtualIndexTokenId_ASC = "virtualIndexTokenId_ASC", virtualIndexTokenId_ASC_NULLS_FIRST = "virtualIndexTokenId_ASC_NULLS_FIRST", virtualIndexTokenId_ASC_NULLS_LAST = "virtualIndexTokenId_ASC_NULLS_LAST", virtualIndexTokenId_DESC = "virtualIndexTokenId_DESC", virtualIndexTokenId_DESC_NULLS_FIRST = "virtualIndexTokenId_DESC_NULLS_FIRST", virtualIndexTokenId_DESC_NULLS_LAST = "virtualIndexTokenId_DESC_NULLS_LAST", virtualInventoryForPositions_ASC = "virtualInventoryForPositions_ASC", virtualInventoryForPositions_ASC_NULLS_FIRST = "virtualInventoryForPositions_ASC_NULLS_FIRST", virtualInventoryForPositions_ASC_NULLS_LAST = "virtualInventoryForPositions_ASC_NULLS_LAST", virtualInventoryForPositions_DESC = "virtualInventoryForPositions_DESC", virtualInventoryForPositions_DESC_NULLS_FIRST = "virtualInventoryForPositions_DESC_NULLS_FIRST", virtualInventoryForPositions_DESC_NULLS_LAST = "virtualInventoryForPositions_DESC_NULLS_LAST", virtualLongTokenId_ASC = "virtualLongTokenId_ASC", virtualLongTokenId_ASC_NULLS_FIRST = "virtualLongTokenId_ASC_NULLS_FIRST", virtualLongTokenId_ASC_NULLS_LAST = "virtualLongTokenId_ASC_NULLS_LAST", virtualLongTokenId_DESC = "virtualLongTokenId_DESC", virtualLongTokenId_DESC_NULLS_FIRST = "virtualLongTokenId_DESC_NULLS_FIRST", virtualLongTokenId_DESC_NULLS_LAST = "virtualLongTokenId_DESC_NULLS_LAST", virtualMarketId_ASC = "virtualMarketId_ASC", virtualMarketId_ASC_NULLS_FIRST = "virtualMarketId_ASC_NULLS_FIRST", virtualMarketId_ASC_NULLS_LAST = "virtualMarketId_ASC_NULLS_LAST", virtualMarketId_DESC = "virtualMarketId_DESC", virtualMarketId_DESC_NULLS_FIRST = "virtualMarketId_DESC_NULLS_FIRST", virtualMarketId_DESC_NULLS_LAST = "virtualMarketId_DESC_NULLS_LAST", virtualPoolAmountForLongToken_ASC = "virtualPoolAmountForLongToken_ASC", virtualPoolAmountForLongToken_ASC_NULLS_FIRST = "virtualPoolAmountForLongToken_ASC_NULLS_FIRST", virtualPoolAmountForLongToken_ASC_NULLS_LAST = "virtualPoolAmountForLongToken_ASC_NULLS_LAST", virtualPoolAmountForLongToken_DESC = "virtualPoolAmountForLongToken_DESC", virtualPoolAmountForLongToken_DESC_NULLS_FIRST = "virtualPoolAmountForLongToken_DESC_NULLS_FIRST", virtualPoolAmountForLongToken_DESC_NULLS_LAST = "virtualPoolAmountForLongToken_DESC_NULLS_LAST", virtualPoolAmountForShortToken_ASC = "virtualPoolAmountForShortToken_ASC", virtualPoolAmountForShortToken_ASC_NULLS_FIRST = "virtualPoolAmountForShortToken_ASC_NULLS_FIRST", virtualPoolAmountForShortToken_ASC_NULLS_LAST = "virtualPoolAmountForShortToken_ASC_NULLS_LAST", virtualPoolAmountForShortToken_DESC = "virtualPoolAmountForShortToken_DESC", virtualPoolAmountForShortToken_DESC_NULLS_FIRST = "virtualPoolAmountForShortToken_DESC_NULLS_FIRST", virtualPoolAmountForShortToken_DESC_NULLS_LAST = "virtualPoolAmountForShortToken_DESC_NULLS_LAST", virtualShortTokenId_ASC = "virtualShortTokenId_ASC", virtualShortTokenId_ASC_NULLS_FIRST = "virtualShortTokenId_ASC_NULLS_FIRST", virtualShortTokenId_ASC_NULLS_LAST = "virtualShortTokenId_ASC_NULLS_LAST", virtualShortTokenId_DESC = "virtualShortTokenId_DESC", virtualShortTokenId_DESC_NULLS_FIRST = "virtualShortTokenId_DESC_NULLS_FIRST", virtualShortTokenId_DESC_NULLS_LAST = "virtualShortTokenId_DESC_NULLS_LAST" } export interface MarketInfoWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; aboveOptimalUsageBorrowingFactorLong_eq?: InputMaybe; aboveOptimalUsageBorrowingFactorLong_gt?: InputMaybe; aboveOptimalUsageBorrowingFactorLong_gte?: InputMaybe; aboveOptimalUsageBorrowingFactorLong_in?: InputMaybe>; aboveOptimalUsageBorrowingFactorLong_isNull?: InputMaybe; aboveOptimalUsageBorrowingFactorLong_lt?: InputMaybe; aboveOptimalUsageBorrowingFactorLong_lte?: InputMaybe; aboveOptimalUsageBorrowingFactorLong_not_eq?: InputMaybe; aboveOptimalUsageBorrowingFactorLong_not_in?: InputMaybe>; aboveOptimalUsageBorrowingFactorShort_eq?: InputMaybe; aboveOptimalUsageBorrowingFactorShort_gt?: InputMaybe; aboveOptimalUsageBorrowingFactorShort_gte?: InputMaybe; aboveOptimalUsageBorrowingFactorShort_in?: InputMaybe>; aboveOptimalUsageBorrowingFactorShort_isNull?: InputMaybe; aboveOptimalUsageBorrowingFactorShort_lt?: InputMaybe; aboveOptimalUsageBorrowingFactorShort_lte?: InputMaybe; aboveOptimalUsageBorrowingFactorShort_not_eq?: InputMaybe; aboveOptimalUsageBorrowingFactorShort_not_in?: InputMaybe>; atomicSwapFeeFactor_eq?: InputMaybe; atomicSwapFeeFactor_gt?: InputMaybe; atomicSwapFeeFactor_gte?: InputMaybe; atomicSwapFeeFactor_in?: InputMaybe>; atomicSwapFeeFactor_isNull?: InputMaybe; atomicSwapFeeFactor_lt?: InputMaybe; atomicSwapFeeFactor_lte?: InputMaybe; atomicSwapFeeFactor_not_eq?: InputMaybe; atomicSwapFeeFactor_not_in?: InputMaybe>; baseBorrowingFactorLong_eq?: InputMaybe; baseBorrowingFactorLong_gt?: InputMaybe; baseBorrowingFactorLong_gte?: InputMaybe; baseBorrowingFactorLong_in?: InputMaybe>; baseBorrowingFactorLong_isNull?: InputMaybe; baseBorrowingFactorLong_lt?: InputMaybe; baseBorrowingFactorLong_lte?: InputMaybe; baseBorrowingFactorLong_not_eq?: InputMaybe; baseBorrowingFactorLong_not_in?: InputMaybe>; baseBorrowingFactorShort_eq?: InputMaybe; baseBorrowingFactorShort_gt?: InputMaybe; baseBorrowingFactorShort_gte?: InputMaybe; baseBorrowingFactorShort_in?: InputMaybe>; baseBorrowingFactorShort_isNull?: InputMaybe; baseBorrowingFactorShort_lt?: InputMaybe; baseBorrowingFactorShort_lte?: InputMaybe; baseBorrowingFactorShort_not_eq?: InputMaybe; baseBorrowingFactorShort_not_in?: InputMaybe>; borrowingExponentFactorLong_eq?: InputMaybe; borrowingExponentFactorLong_gt?: InputMaybe; borrowingExponentFactorLong_gte?: InputMaybe; borrowingExponentFactorLong_in?: InputMaybe>; borrowingExponentFactorLong_isNull?: InputMaybe; borrowingExponentFactorLong_lt?: InputMaybe; borrowingExponentFactorLong_lte?: InputMaybe; borrowingExponentFactorLong_not_eq?: InputMaybe; borrowingExponentFactorLong_not_in?: InputMaybe>; borrowingExponentFactorShort_eq?: InputMaybe; borrowingExponentFactorShort_gt?: InputMaybe; borrowingExponentFactorShort_gte?: InputMaybe; borrowingExponentFactorShort_in?: InputMaybe>; borrowingExponentFactorShort_isNull?: InputMaybe; borrowingExponentFactorShort_lt?: InputMaybe; borrowingExponentFactorShort_lte?: InputMaybe; borrowingExponentFactorShort_not_eq?: InputMaybe; borrowingExponentFactorShort_not_in?: InputMaybe>; borrowingFactorLong_eq?: InputMaybe; borrowingFactorLong_gt?: InputMaybe; borrowingFactorLong_gte?: InputMaybe; borrowingFactorLong_in?: InputMaybe>; borrowingFactorLong_isNull?: InputMaybe; borrowingFactorLong_lt?: InputMaybe; borrowingFactorLong_lte?: InputMaybe; borrowingFactorLong_not_eq?: InputMaybe; borrowingFactorLong_not_in?: InputMaybe>; borrowingFactorPerSecondForLongs_eq?: InputMaybe; borrowingFactorPerSecondForLongs_gt?: InputMaybe; borrowingFactorPerSecondForLongs_gte?: InputMaybe; borrowingFactorPerSecondForLongs_in?: InputMaybe>; borrowingFactorPerSecondForLongs_isNull?: InputMaybe; borrowingFactorPerSecondForLongs_lt?: InputMaybe; borrowingFactorPerSecondForLongs_lte?: InputMaybe; borrowingFactorPerSecondForLongs_not_eq?: InputMaybe; borrowingFactorPerSecondForLongs_not_in?: InputMaybe>; borrowingFactorPerSecondForShorts_eq?: InputMaybe; borrowingFactorPerSecondForShorts_gt?: InputMaybe; borrowingFactorPerSecondForShorts_gte?: InputMaybe; borrowingFactorPerSecondForShorts_in?: InputMaybe>; borrowingFactorPerSecondForShorts_isNull?: InputMaybe; borrowingFactorPerSecondForShorts_lt?: InputMaybe; borrowingFactorPerSecondForShorts_lte?: InputMaybe; borrowingFactorPerSecondForShorts_not_eq?: InputMaybe; borrowingFactorPerSecondForShorts_not_in?: InputMaybe>; borrowingFactorShort_eq?: InputMaybe; borrowingFactorShort_gt?: InputMaybe; borrowingFactorShort_gte?: InputMaybe; borrowingFactorShort_in?: InputMaybe>; borrowingFactorShort_isNull?: InputMaybe; borrowingFactorShort_lt?: InputMaybe; borrowingFactorShort_lte?: InputMaybe; borrowingFactorShort_not_eq?: InputMaybe; borrowingFactorShort_not_in?: InputMaybe>; fundingDecreaseFactorPerSecond_eq?: InputMaybe; fundingDecreaseFactorPerSecond_gt?: InputMaybe; fundingDecreaseFactorPerSecond_gte?: InputMaybe; fundingDecreaseFactorPerSecond_in?: InputMaybe>; fundingDecreaseFactorPerSecond_isNull?: InputMaybe; fundingDecreaseFactorPerSecond_lt?: InputMaybe; fundingDecreaseFactorPerSecond_lte?: InputMaybe; fundingDecreaseFactorPerSecond_not_eq?: InputMaybe; fundingDecreaseFactorPerSecond_not_in?: InputMaybe>; fundingExponentFactor_eq?: InputMaybe; fundingExponentFactor_gt?: InputMaybe; fundingExponentFactor_gte?: InputMaybe; fundingExponentFactor_in?: InputMaybe>; fundingExponentFactor_isNull?: InputMaybe; fundingExponentFactor_lt?: InputMaybe; fundingExponentFactor_lte?: InputMaybe; fundingExponentFactor_not_eq?: InputMaybe; fundingExponentFactor_not_in?: InputMaybe>; fundingFactorPerSecond_eq?: InputMaybe; fundingFactorPerSecond_gt?: InputMaybe; fundingFactorPerSecond_gte?: InputMaybe; fundingFactorPerSecond_in?: InputMaybe>; fundingFactorPerSecond_isNull?: InputMaybe; fundingFactorPerSecond_lt?: InputMaybe; fundingFactorPerSecond_lte?: InputMaybe; fundingFactorPerSecond_not_eq?: InputMaybe; fundingFactorPerSecond_not_in?: InputMaybe>; fundingFactor_eq?: InputMaybe; fundingFactor_gt?: InputMaybe; fundingFactor_gte?: InputMaybe; fundingFactor_in?: InputMaybe>; fundingFactor_isNull?: InputMaybe; fundingFactor_lt?: InputMaybe; fundingFactor_lte?: InputMaybe; fundingFactor_not_eq?: InputMaybe; fundingFactor_not_in?: InputMaybe>; fundingIncreaseFactorPerSecond_eq?: InputMaybe; fundingIncreaseFactorPerSecond_gt?: InputMaybe; fundingIncreaseFactorPerSecond_gte?: InputMaybe; fundingIncreaseFactorPerSecond_in?: InputMaybe>; fundingIncreaseFactorPerSecond_isNull?: InputMaybe; fundingIncreaseFactorPerSecond_lt?: InputMaybe; fundingIncreaseFactorPerSecond_lte?: InputMaybe; fundingIncreaseFactorPerSecond_not_eq?: InputMaybe; fundingIncreaseFactorPerSecond_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; indexTokenAddress_contains?: InputMaybe; indexTokenAddress_containsInsensitive?: InputMaybe; indexTokenAddress_endsWith?: InputMaybe; indexTokenAddress_eq?: InputMaybe; indexTokenAddress_gt?: InputMaybe; indexTokenAddress_gte?: InputMaybe; indexTokenAddress_in?: InputMaybe>; indexTokenAddress_isNull?: InputMaybe; indexTokenAddress_lt?: InputMaybe; indexTokenAddress_lte?: InputMaybe; indexTokenAddress_not_contains?: InputMaybe; indexTokenAddress_not_containsInsensitive?: InputMaybe; indexTokenAddress_not_endsWith?: InputMaybe; indexTokenAddress_not_eq?: InputMaybe; indexTokenAddress_not_in?: InputMaybe>; indexTokenAddress_not_startsWith?: InputMaybe; indexTokenAddress_startsWith?: InputMaybe; isDisabled_eq?: InputMaybe; isDisabled_isNull?: InputMaybe; isDisabled_not_eq?: InputMaybe; lentPositionImpactPoolAmount_eq?: InputMaybe; lentPositionImpactPoolAmount_gt?: InputMaybe; lentPositionImpactPoolAmount_gte?: InputMaybe; lentPositionImpactPoolAmount_in?: InputMaybe>; lentPositionImpactPoolAmount_isNull?: InputMaybe; lentPositionImpactPoolAmount_lt?: InputMaybe; lentPositionImpactPoolAmount_lte?: InputMaybe; lentPositionImpactPoolAmount_not_eq?: InputMaybe; lentPositionImpactPoolAmount_not_in?: InputMaybe>; longOpenInterestInTokensUsingLongToken_eq?: InputMaybe; longOpenInterestInTokensUsingLongToken_gt?: InputMaybe; longOpenInterestInTokensUsingLongToken_gte?: InputMaybe; longOpenInterestInTokensUsingLongToken_in?: InputMaybe>; longOpenInterestInTokensUsingLongToken_isNull?: InputMaybe; longOpenInterestInTokensUsingLongToken_lt?: InputMaybe; longOpenInterestInTokensUsingLongToken_lte?: InputMaybe; longOpenInterestInTokensUsingLongToken_not_eq?: InputMaybe; longOpenInterestInTokensUsingLongToken_not_in?: InputMaybe>; longOpenInterestInTokensUsingShortToken_eq?: InputMaybe; longOpenInterestInTokensUsingShortToken_gt?: InputMaybe; longOpenInterestInTokensUsingShortToken_gte?: InputMaybe; longOpenInterestInTokensUsingShortToken_in?: InputMaybe>; longOpenInterestInTokensUsingShortToken_isNull?: InputMaybe; longOpenInterestInTokensUsingShortToken_lt?: InputMaybe; longOpenInterestInTokensUsingShortToken_lte?: InputMaybe; longOpenInterestInTokensUsingShortToken_not_eq?: InputMaybe; longOpenInterestInTokensUsingShortToken_not_in?: InputMaybe>; longOpenInterestInTokens_eq?: InputMaybe; longOpenInterestInTokens_gt?: InputMaybe; longOpenInterestInTokens_gte?: InputMaybe; longOpenInterestInTokens_in?: InputMaybe>; longOpenInterestInTokens_isNull?: InputMaybe; longOpenInterestInTokens_lt?: InputMaybe; longOpenInterestInTokens_lte?: InputMaybe; longOpenInterestInTokens_not_eq?: InputMaybe; longOpenInterestInTokens_not_in?: InputMaybe>; longOpenInterestUsd_eq?: InputMaybe; longOpenInterestUsd_gt?: InputMaybe; longOpenInterestUsd_gte?: InputMaybe; longOpenInterestUsd_in?: InputMaybe>; longOpenInterestUsd_isNull?: InputMaybe; longOpenInterestUsd_lt?: InputMaybe; longOpenInterestUsd_lte?: InputMaybe; longOpenInterestUsd_not_eq?: InputMaybe; longOpenInterestUsd_not_in?: InputMaybe>; longOpenInterestUsingLongToken_eq?: InputMaybe; longOpenInterestUsingLongToken_gt?: InputMaybe; longOpenInterestUsingLongToken_gte?: InputMaybe; longOpenInterestUsingLongToken_in?: InputMaybe>; longOpenInterestUsingLongToken_isNull?: InputMaybe; longOpenInterestUsingLongToken_lt?: InputMaybe; longOpenInterestUsingLongToken_lte?: InputMaybe; longOpenInterestUsingLongToken_not_eq?: InputMaybe; longOpenInterestUsingLongToken_not_in?: InputMaybe>; longOpenInterestUsingShortToken_eq?: InputMaybe; longOpenInterestUsingShortToken_gt?: InputMaybe; longOpenInterestUsingShortToken_gte?: InputMaybe; longOpenInterestUsingShortToken_in?: InputMaybe>; longOpenInterestUsingShortToken_isNull?: InputMaybe; longOpenInterestUsingShortToken_lt?: InputMaybe; longOpenInterestUsingShortToken_lte?: InputMaybe; longOpenInterestUsingShortToken_not_eq?: InputMaybe; longOpenInterestUsingShortToken_not_in?: InputMaybe>; longPoolAmount_eq?: InputMaybe; longPoolAmount_gt?: InputMaybe; longPoolAmount_gte?: InputMaybe; longPoolAmount_in?: InputMaybe>; longPoolAmount_isNull?: InputMaybe; longPoolAmount_lt?: InputMaybe; longPoolAmount_lte?: InputMaybe; longPoolAmount_not_eq?: InputMaybe; longPoolAmount_not_in?: InputMaybe>; longTokenAddress_contains?: InputMaybe; longTokenAddress_containsInsensitive?: InputMaybe; longTokenAddress_endsWith?: InputMaybe; longTokenAddress_eq?: InputMaybe; longTokenAddress_gt?: InputMaybe; longTokenAddress_gte?: InputMaybe; longTokenAddress_in?: InputMaybe>; longTokenAddress_isNull?: InputMaybe; longTokenAddress_lt?: InputMaybe; longTokenAddress_lte?: InputMaybe; longTokenAddress_not_contains?: InputMaybe; longTokenAddress_not_containsInsensitive?: InputMaybe; longTokenAddress_not_endsWith?: InputMaybe; longTokenAddress_not_eq?: InputMaybe; longTokenAddress_not_in?: InputMaybe>; longTokenAddress_not_startsWith?: InputMaybe; longTokenAddress_startsWith?: InputMaybe; longsPayShorts_eq?: InputMaybe; longsPayShorts_isNull?: InputMaybe; longsPayShorts_not_eq?: InputMaybe; marketTokenAddress_contains?: InputMaybe; marketTokenAddress_containsInsensitive?: InputMaybe; marketTokenAddress_endsWith?: InputMaybe; marketTokenAddress_eq?: InputMaybe; marketTokenAddress_gt?: InputMaybe; marketTokenAddress_gte?: InputMaybe; marketTokenAddress_in?: InputMaybe>; marketTokenAddress_isNull?: InputMaybe; marketTokenAddress_lt?: InputMaybe; marketTokenAddress_lte?: InputMaybe; marketTokenAddress_not_contains?: InputMaybe; marketTokenAddress_not_containsInsensitive?: InputMaybe; marketTokenAddress_not_endsWith?: InputMaybe; marketTokenAddress_not_eq?: InputMaybe; marketTokenAddress_not_in?: InputMaybe>; marketTokenAddress_not_startsWith?: InputMaybe; marketTokenAddress_startsWith?: InputMaybe; marketTokenSupply_eq?: InputMaybe; marketTokenSupply_gt?: InputMaybe; marketTokenSupply_gte?: InputMaybe; marketTokenSupply_in?: InputMaybe>; marketTokenSupply_isNull?: InputMaybe; marketTokenSupply_lt?: InputMaybe; marketTokenSupply_lte?: InputMaybe; marketTokenSupply_not_eq?: InputMaybe; marketTokenSupply_not_in?: InputMaybe>; maxFundingFactorPerSecond_eq?: InputMaybe; maxFundingFactorPerSecond_gt?: InputMaybe; maxFundingFactorPerSecond_gte?: InputMaybe; maxFundingFactorPerSecond_in?: InputMaybe>; maxFundingFactorPerSecond_isNull?: InputMaybe; maxFundingFactorPerSecond_lt?: InputMaybe; maxFundingFactorPerSecond_lte?: InputMaybe; maxFundingFactorPerSecond_not_eq?: InputMaybe; maxFundingFactorPerSecond_not_in?: InputMaybe>; maxLendableImpactFactorForWithdrawals_eq?: InputMaybe; maxLendableImpactFactorForWithdrawals_gt?: InputMaybe; maxLendableImpactFactorForWithdrawals_gte?: InputMaybe; maxLendableImpactFactorForWithdrawals_in?: InputMaybe>; maxLendableImpactFactorForWithdrawals_isNull?: InputMaybe; maxLendableImpactFactorForWithdrawals_lt?: InputMaybe; maxLendableImpactFactorForWithdrawals_lte?: InputMaybe; maxLendableImpactFactorForWithdrawals_not_eq?: InputMaybe; maxLendableImpactFactorForWithdrawals_not_in?: InputMaybe>; maxLendableImpactFactor_eq?: InputMaybe; maxLendableImpactFactor_gt?: InputMaybe; maxLendableImpactFactor_gte?: InputMaybe; maxLendableImpactFactor_in?: InputMaybe>; maxLendableImpactFactor_isNull?: InputMaybe; maxLendableImpactFactor_lt?: InputMaybe; maxLendableImpactFactor_lte?: InputMaybe; maxLendableImpactFactor_not_eq?: InputMaybe; maxLendableImpactFactor_not_in?: InputMaybe>; maxLendableImpactUsd_eq?: InputMaybe; maxLendableImpactUsd_gt?: InputMaybe; maxLendableImpactUsd_gte?: InputMaybe; maxLendableImpactUsd_in?: InputMaybe>; maxLendableImpactUsd_isNull?: InputMaybe; maxLendableImpactUsd_lt?: InputMaybe; maxLendableImpactUsd_lte?: InputMaybe; maxLendableImpactUsd_not_eq?: InputMaybe; maxLendableImpactUsd_not_in?: InputMaybe>; maxLongPoolAmount_eq?: InputMaybe; maxLongPoolAmount_gt?: InputMaybe; maxLongPoolAmount_gte?: InputMaybe; maxLongPoolAmount_in?: InputMaybe>; maxLongPoolAmount_isNull?: InputMaybe; maxLongPoolAmount_lt?: InputMaybe; maxLongPoolAmount_lte?: InputMaybe; maxLongPoolAmount_not_eq?: InputMaybe; maxLongPoolAmount_not_in?: InputMaybe>; maxLongPoolUsdForDeposit_eq?: InputMaybe; maxLongPoolUsdForDeposit_gt?: InputMaybe; maxLongPoolUsdForDeposit_gte?: InputMaybe; maxLongPoolUsdForDeposit_in?: InputMaybe>; maxLongPoolUsdForDeposit_isNull?: InputMaybe; maxLongPoolUsdForDeposit_lt?: InputMaybe; maxLongPoolUsdForDeposit_lte?: InputMaybe; maxLongPoolUsdForDeposit_not_eq?: InputMaybe; maxLongPoolUsdForDeposit_not_in?: InputMaybe>; maxOpenInterestLong_eq?: InputMaybe; maxOpenInterestLong_gt?: InputMaybe; maxOpenInterestLong_gte?: InputMaybe; maxOpenInterestLong_in?: InputMaybe>; maxOpenInterestLong_isNull?: InputMaybe; maxOpenInterestLong_lt?: InputMaybe; maxOpenInterestLong_lte?: InputMaybe; maxOpenInterestLong_not_eq?: InputMaybe; maxOpenInterestLong_not_in?: InputMaybe>; maxOpenInterestShort_eq?: InputMaybe; maxOpenInterestShort_gt?: InputMaybe; maxOpenInterestShort_gte?: InputMaybe; maxOpenInterestShort_in?: InputMaybe>; maxOpenInterestShort_isNull?: InputMaybe; maxOpenInterestShort_lt?: InputMaybe; maxOpenInterestShort_lte?: InputMaybe; maxOpenInterestShort_not_eq?: InputMaybe; maxOpenInterestShort_not_in?: InputMaybe>; maxPnlFactorForTradersLong_eq?: InputMaybe; maxPnlFactorForTradersLong_gt?: InputMaybe; maxPnlFactorForTradersLong_gte?: InputMaybe; maxPnlFactorForTradersLong_in?: InputMaybe>; maxPnlFactorForTradersLong_isNull?: InputMaybe; maxPnlFactorForTradersLong_lt?: InputMaybe; maxPnlFactorForTradersLong_lte?: InputMaybe; maxPnlFactorForTradersLong_not_eq?: InputMaybe; maxPnlFactorForTradersLong_not_in?: InputMaybe>; maxPnlFactorForTradersShort_eq?: InputMaybe; maxPnlFactorForTradersShort_gt?: InputMaybe; maxPnlFactorForTradersShort_gte?: InputMaybe; maxPnlFactorForTradersShort_in?: InputMaybe>; maxPnlFactorForTradersShort_isNull?: InputMaybe; maxPnlFactorForTradersShort_lt?: InputMaybe; maxPnlFactorForTradersShort_lte?: InputMaybe; maxPnlFactorForTradersShort_not_eq?: InputMaybe; maxPnlFactorForTradersShort_not_in?: InputMaybe>; maxPositionImpactFactorForLiquidations_eq?: InputMaybe; maxPositionImpactFactorForLiquidations_gt?: InputMaybe; maxPositionImpactFactorForLiquidations_gte?: InputMaybe; maxPositionImpactFactorForLiquidations_in?: InputMaybe>; maxPositionImpactFactorForLiquidations_isNull?: InputMaybe; maxPositionImpactFactorForLiquidations_lt?: InputMaybe; maxPositionImpactFactorForLiquidations_lte?: InputMaybe; maxPositionImpactFactorForLiquidations_not_eq?: InputMaybe; maxPositionImpactFactorForLiquidations_not_in?: InputMaybe>; maxPositionImpactFactorNegative_eq?: InputMaybe; maxPositionImpactFactorNegative_gt?: InputMaybe; maxPositionImpactFactorNegative_gte?: InputMaybe; maxPositionImpactFactorNegative_in?: InputMaybe>; maxPositionImpactFactorNegative_isNull?: InputMaybe; maxPositionImpactFactorNegative_lt?: InputMaybe; maxPositionImpactFactorNegative_lte?: InputMaybe; maxPositionImpactFactorNegative_not_eq?: InputMaybe; maxPositionImpactFactorNegative_not_in?: InputMaybe>; maxPositionImpactFactorPositive_eq?: InputMaybe; maxPositionImpactFactorPositive_gt?: InputMaybe; maxPositionImpactFactorPositive_gte?: InputMaybe; maxPositionImpactFactorPositive_in?: InputMaybe>; maxPositionImpactFactorPositive_isNull?: InputMaybe; maxPositionImpactFactorPositive_lt?: InputMaybe; maxPositionImpactFactorPositive_lte?: InputMaybe; maxPositionImpactFactorPositive_not_eq?: InputMaybe; maxPositionImpactFactorPositive_not_in?: InputMaybe>; maxShortPoolAmount_eq?: InputMaybe; maxShortPoolAmount_gt?: InputMaybe; maxShortPoolAmount_gte?: InputMaybe; maxShortPoolAmount_in?: InputMaybe>; maxShortPoolAmount_isNull?: InputMaybe; maxShortPoolAmount_lt?: InputMaybe; maxShortPoolAmount_lte?: InputMaybe; maxShortPoolAmount_not_eq?: InputMaybe; maxShortPoolAmount_not_in?: InputMaybe>; maxShortPoolUsdForDeposit_eq?: InputMaybe; maxShortPoolUsdForDeposit_gt?: InputMaybe; maxShortPoolUsdForDeposit_gte?: InputMaybe; maxShortPoolUsdForDeposit_in?: InputMaybe>; maxShortPoolUsdForDeposit_isNull?: InputMaybe; maxShortPoolUsdForDeposit_lt?: InputMaybe; maxShortPoolUsdForDeposit_lte?: InputMaybe; maxShortPoolUsdForDeposit_not_eq?: InputMaybe; maxShortPoolUsdForDeposit_not_in?: InputMaybe>; minCollateralFactorForOpenInterestLong_eq?: InputMaybe; minCollateralFactorForOpenInterestLong_gt?: InputMaybe; minCollateralFactorForOpenInterestLong_gte?: InputMaybe; minCollateralFactorForOpenInterestLong_in?: InputMaybe>; minCollateralFactorForOpenInterestLong_isNull?: InputMaybe; minCollateralFactorForOpenInterestLong_lt?: InputMaybe; minCollateralFactorForOpenInterestLong_lte?: InputMaybe; minCollateralFactorForOpenInterestLong_not_eq?: InputMaybe; minCollateralFactorForOpenInterestLong_not_in?: InputMaybe>; minCollateralFactorForOpenInterestShort_eq?: InputMaybe; minCollateralFactorForOpenInterestShort_gt?: InputMaybe; minCollateralFactorForOpenInterestShort_gte?: InputMaybe; minCollateralFactorForOpenInterestShort_in?: InputMaybe>; minCollateralFactorForOpenInterestShort_isNull?: InputMaybe; minCollateralFactorForOpenInterestShort_lt?: InputMaybe; minCollateralFactorForOpenInterestShort_lte?: InputMaybe; minCollateralFactorForOpenInterestShort_not_eq?: InputMaybe; minCollateralFactorForOpenInterestShort_not_in?: InputMaybe>; minCollateralFactor_eq?: InputMaybe; minCollateralFactor_gt?: InputMaybe; minCollateralFactor_gte?: InputMaybe; minCollateralFactor_in?: InputMaybe>; minCollateralFactor_isNull?: InputMaybe; minCollateralFactor_lt?: InputMaybe; minCollateralFactor_lte?: InputMaybe; minCollateralFactor_not_eq?: InputMaybe; minCollateralFactor_not_in?: InputMaybe>; minFundingFactorPerSecond_eq?: InputMaybe; minFundingFactorPerSecond_gt?: InputMaybe; minFundingFactorPerSecond_gte?: InputMaybe; minFundingFactorPerSecond_in?: InputMaybe>; minFundingFactorPerSecond_isNull?: InputMaybe; minFundingFactorPerSecond_lt?: InputMaybe; minFundingFactorPerSecond_lte?: InputMaybe; minFundingFactorPerSecond_not_eq?: InputMaybe; minFundingFactorPerSecond_not_in?: InputMaybe>; minPositionImpactPoolAmount_eq?: InputMaybe; minPositionImpactPoolAmount_gt?: InputMaybe; minPositionImpactPoolAmount_gte?: InputMaybe; minPositionImpactPoolAmount_in?: InputMaybe>; minPositionImpactPoolAmount_isNull?: InputMaybe; minPositionImpactPoolAmount_lt?: InputMaybe; minPositionImpactPoolAmount_lte?: InputMaybe; minPositionImpactPoolAmount_not_eq?: InputMaybe; minPositionImpactPoolAmount_not_in?: InputMaybe>; openInterestReserveFactorLong_eq?: InputMaybe; openInterestReserveFactorLong_gt?: InputMaybe; openInterestReserveFactorLong_gte?: InputMaybe; openInterestReserveFactorLong_in?: InputMaybe>; openInterestReserveFactorLong_isNull?: InputMaybe; openInterestReserveFactorLong_lt?: InputMaybe; openInterestReserveFactorLong_lte?: InputMaybe; openInterestReserveFactorLong_not_eq?: InputMaybe; openInterestReserveFactorLong_not_in?: InputMaybe>; openInterestReserveFactorShort_eq?: InputMaybe; openInterestReserveFactorShort_gt?: InputMaybe; openInterestReserveFactorShort_gte?: InputMaybe; openInterestReserveFactorShort_in?: InputMaybe>; openInterestReserveFactorShort_isNull?: InputMaybe; openInterestReserveFactorShort_lt?: InputMaybe; openInterestReserveFactorShort_lte?: InputMaybe; openInterestReserveFactorShort_not_eq?: InputMaybe; openInterestReserveFactorShort_not_in?: InputMaybe>; optimalUsageFactorLong_eq?: InputMaybe; optimalUsageFactorLong_gt?: InputMaybe; optimalUsageFactorLong_gte?: InputMaybe; optimalUsageFactorLong_in?: InputMaybe>; optimalUsageFactorLong_isNull?: InputMaybe; optimalUsageFactorLong_lt?: InputMaybe; optimalUsageFactorLong_lte?: InputMaybe; optimalUsageFactorLong_not_eq?: InputMaybe; optimalUsageFactorLong_not_in?: InputMaybe>; optimalUsageFactorShort_eq?: InputMaybe; optimalUsageFactorShort_gt?: InputMaybe; optimalUsageFactorShort_gte?: InputMaybe; optimalUsageFactorShort_in?: InputMaybe>; optimalUsageFactorShort_isNull?: InputMaybe; optimalUsageFactorShort_lt?: InputMaybe; optimalUsageFactorShort_lte?: InputMaybe; optimalUsageFactorShort_not_eq?: InputMaybe; optimalUsageFactorShort_not_in?: InputMaybe>; poolValueMax_eq?: InputMaybe; poolValueMax_gt?: InputMaybe; poolValueMax_gte?: InputMaybe; poolValueMax_in?: InputMaybe>; poolValueMax_isNull?: InputMaybe; poolValueMax_lt?: InputMaybe; poolValueMax_lte?: InputMaybe; poolValueMax_not_eq?: InputMaybe; poolValueMax_not_in?: InputMaybe>; poolValueMin_eq?: InputMaybe; poolValueMin_gt?: InputMaybe; poolValueMin_gte?: InputMaybe; poolValueMin_in?: InputMaybe>; poolValueMin_isNull?: InputMaybe; poolValueMin_lt?: InputMaybe; poolValueMin_lte?: InputMaybe; poolValueMin_not_eq?: InputMaybe; poolValueMin_not_in?: InputMaybe>; poolValue_eq?: InputMaybe; poolValue_gt?: InputMaybe; poolValue_gte?: InputMaybe; poolValue_in?: InputMaybe>; poolValue_isNull?: InputMaybe; poolValue_lt?: InputMaybe; poolValue_lte?: InputMaybe; poolValue_not_eq?: InputMaybe; poolValue_not_in?: InputMaybe>; positionFeeFactorForNegativeImpact_eq?: InputMaybe; positionFeeFactorForNegativeImpact_gt?: InputMaybe; positionFeeFactorForNegativeImpact_gte?: InputMaybe; positionFeeFactorForNegativeImpact_in?: InputMaybe>; positionFeeFactorForNegativeImpact_isNull?: InputMaybe; positionFeeFactorForNegativeImpact_lt?: InputMaybe; positionFeeFactorForNegativeImpact_lte?: InputMaybe; positionFeeFactorForNegativeImpact_not_eq?: InputMaybe; positionFeeFactorForNegativeImpact_not_in?: InputMaybe>; positionFeeFactorForPositiveImpact_eq?: InputMaybe; positionFeeFactorForPositiveImpact_gt?: InputMaybe; positionFeeFactorForPositiveImpact_gte?: InputMaybe; positionFeeFactorForPositiveImpact_in?: InputMaybe>; positionFeeFactorForPositiveImpact_isNull?: InputMaybe; positionFeeFactorForPositiveImpact_lt?: InputMaybe; positionFeeFactorForPositiveImpact_lte?: InputMaybe; positionFeeFactorForPositiveImpact_not_eq?: InputMaybe; positionFeeFactorForPositiveImpact_not_in?: InputMaybe>; positionImpactExponentFactorNegative_eq?: InputMaybe; positionImpactExponentFactorNegative_gt?: InputMaybe; positionImpactExponentFactorNegative_gte?: InputMaybe; positionImpactExponentFactorNegative_in?: InputMaybe>; positionImpactExponentFactorNegative_isNull?: InputMaybe; positionImpactExponentFactorNegative_lt?: InputMaybe; positionImpactExponentFactorNegative_lte?: InputMaybe; positionImpactExponentFactorNegative_not_eq?: InputMaybe; positionImpactExponentFactorNegative_not_in?: InputMaybe>; positionImpactExponentFactorPositive_eq?: InputMaybe; positionImpactExponentFactorPositive_gt?: InputMaybe; positionImpactExponentFactorPositive_gte?: InputMaybe; positionImpactExponentFactorPositive_in?: InputMaybe>; positionImpactExponentFactorPositive_isNull?: InputMaybe; positionImpactExponentFactorPositive_lt?: InputMaybe; positionImpactExponentFactorPositive_lte?: InputMaybe; positionImpactExponentFactorPositive_not_eq?: InputMaybe; positionImpactExponentFactorPositive_not_in?: InputMaybe>; positionImpactFactorNegative_eq?: InputMaybe; positionImpactFactorNegative_gt?: InputMaybe; positionImpactFactorNegative_gte?: InputMaybe; positionImpactFactorNegative_in?: InputMaybe>; positionImpactFactorNegative_isNull?: InputMaybe; positionImpactFactorNegative_lt?: InputMaybe; positionImpactFactorNegative_lte?: InputMaybe; positionImpactFactorNegative_not_eq?: InputMaybe; positionImpactFactorNegative_not_in?: InputMaybe>; positionImpactFactorPositive_eq?: InputMaybe; positionImpactFactorPositive_gt?: InputMaybe; positionImpactFactorPositive_gte?: InputMaybe; positionImpactFactorPositive_in?: InputMaybe>; positionImpactFactorPositive_isNull?: InputMaybe; positionImpactFactorPositive_lt?: InputMaybe; positionImpactFactorPositive_lte?: InputMaybe; positionImpactFactorPositive_not_eq?: InputMaybe; positionImpactFactorPositive_not_in?: InputMaybe>; positionImpactPoolAmount_eq?: InputMaybe; positionImpactPoolAmount_gt?: InputMaybe; positionImpactPoolAmount_gte?: InputMaybe; positionImpactPoolAmount_in?: InputMaybe>; positionImpactPoolAmount_isNull?: InputMaybe; positionImpactPoolAmount_lt?: InputMaybe; positionImpactPoolAmount_lte?: InputMaybe; positionImpactPoolAmount_not_eq?: InputMaybe; positionImpactPoolAmount_not_in?: InputMaybe>; positionImpactPoolDistributionRate_eq?: InputMaybe; positionImpactPoolDistributionRate_gt?: InputMaybe; positionImpactPoolDistributionRate_gte?: InputMaybe; positionImpactPoolDistributionRate_in?: InputMaybe>; positionImpactPoolDistributionRate_isNull?: InputMaybe; positionImpactPoolDistributionRate_lt?: InputMaybe; positionImpactPoolDistributionRate_lte?: InputMaybe; positionImpactPoolDistributionRate_not_eq?: InputMaybe; positionImpactPoolDistributionRate_not_in?: InputMaybe>; reserveFactorLong_eq?: InputMaybe; reserveFactorLong_gt?: InputMaybe; reserveFactorLong_gte?: InputMaybe; reserveFactorLong_in?: InputMaybe>; reserveFactorLong_isNull?: InputMaybe; reserveFactorLong_lt?: InputMaybe; reserveFactorLong_lte?: InputMaybe; reserveFactorLong_not_eq?: InputMaybe; reserveFactorLong_not_in?: InputMaybe>; reserveFactorShort_eq?: InputMaybe; reserveFactorShort_gt?: InputMaybe; reserveFactorShort_gte?: InputMaybe; reserveFactorShort_in?: InputMaybe>; reserveFactorShort_isNull?: InputMaybe; reserveFactorShort_lt?: InputMaybe; reserveFactorShort_lte?: InputMaybe; reserveFactorShort_not_eq?: InputMaybe; reserveFactorShort_not_in?: InputMaybe>; shortOpenInterestInTokensUsingLongToken_eq?: InputMaybe; shortOpenInterestInTokensUsingLongToken_gt?: InputMaybe; shortOpenInterestInTokensUsingLongToken_gte?: InputMaybe; shortOpenInterestInTokensUsingLongToken_in?: InputMaybe>; shortOpenInterestInTokensUsingLongToken_isNull?: InputMaybe; shortOpenInterestInTokensUsingLongToken_lt?: InputMaybe; shortOpenInterestInTokensUsingLongToken_lte?: InputMaybe; shortOpenInterestInTokensUsingLongToken_not_eq?: InputMaybe; shortOpenInterestInTokensUsingLongToken_not_in?: InputMaybe>; shortOpenInterestInTokensUsingShortToken_eq?: InputMaybe; shortOpenInterestInTokensUsingShortToken_gt?: InputMaybe; shortOpenInterestInTokensUsingShortToken_gte?: InputMaybe; shortOpenInterestInTokensUsingShortToken_in?: InputMaybe>; shortOpenInterestInTokensUsingShortToken_isNull?: InputMaybe; shortOpenInterestInTokensUsingShortToken_lt?: InputMaybe; shortOpenInterestInTokensUsingShortToken_lte?: InputMaybe; shortOpenInterestInTokensUsingShortToken_not_eq?: InputMaybe; shortOpenInterestInTokensUsingShortToken_not_in?: InputMaybe>; shortOpenInterestInTokens_eq?: InputMaybe; shortOpenInterestInTokens_gt?: InputMaybe; shortOpenInterestInTokens_gte?: InputMaybe; shortOpenInterestInTokens_in?: InputMaybe>; shortOpenInterestInTokens_isNull?: InputMaybe; shortOpenInterestInTokens_lt?: InputMaybe; shortOpenInterestInTokens_lte?: InputMaybe; shortOpenInterestInTokens_not_eq?: InputMaybe; shortOpenInterestInTokens_not_in?: InputMaybe>; shortOpenInterestUsd_eq?: InputMaybe; shortOpenInterestUsd_gt?: InputMaybe; shortOpenInterestUsd_gte?: InputMaybe; shortOpenInterestUsd_in?: InputMaybe>; shortOpenInterestUsd_isNull?: InputMaybe; shortOpenInterestUsd_lt?: InputMaybe; shortOpenInterestUsd_lte?: InputMaybe; shortOpenInterestUsd_not_eq?: InputMaybe; shortOpenInterestUsd_not_in?: InputMaybe>; shortOpenInterestUsingLongToken_eq?: InputMaybe; shortOpenInterestUsingLongToken_gt?: InputMaybe; shortOpenInterestUsingLongToken_gte?: InputMaybe; shortOpenInterestUsingLongToken_in?: InputMaybe>; shortOpenInterestUsingLongToken_isNull?: InputMaybe; shortOpenInterestUsingLongToken_lt?: InputMaybe; shortOpenInterestUsingLongToken_lte?: InputMaybe; shortOpenInterestUsingLongToken_not_eq?: InputMaybe; shortOpenInterestUsingLongToken_not_in?: InputMaybe>; shortOpenInterestUsingShortToken_eq?: InputMaybe; shortOpenInterestUsingShortToken_gt?: InputMaybe; shortOpenInterestUsingShortToken_gte?: InputMaybe; shortOpenInterestUsingShortToken_in?: InputMaybe>; shortOpenInterestUsingShortToken_isNull?: InputMaybe; shortOpenInterestUsingShortToken_lt?: InputMaybe; shortOpenInterestUsingShortToken_lte?: InputMaybe; shortOpenInterestUsingShortToken_not_eq?: InputMaybe; shortOpenInterestUsingShortToken_not_in?: InputMaybe>; shortPoolAmount_eq?: InputMaybe; shortPoolAmount_gt?: InputMaybe; shortPoolAmount_gte?: InputMaybe; shortPoolAmount_in?: InputMaybe>; shortPoolAmount_isNull?: InputMaybe; shortPoolAmount_lt?: InputMaybe; shortPoolAmount_lte?: InputMaybe; shortPoolAmount_not_eq?: InputMaybe; shortPoolAmount_not_in?: InputMaybe>; shortTokenAddress_contains?: InputMaybe; shortTokenAddress_containsInsensitive?: InputMaybe; shortTokenAddress_endsWith?: InputMaybe; shortTokenAddress_eq?: InputMaybe; shortTokenAddress_gt?: InputMaybe; shortTokenAddress_gte?: InputMaybe; shortTokenAddress_in?: InputMaybe>; shortTokenAddress_isNull?: InputMaybe; shortTokenAddress_lt?: InputMaybe; shortTokenAddress_lte?: InputMaybe; shortTokenAddress_not_contains?: InputMaybe; shortTokenAddress_not_containsInsensitive?: InputMaybe; shortTokenAddress_not_endsWith?: InputMaybe; shortTokenAddress_not_eq?: InputMaybe; shortTokenAddress_not_in?: InputMaybe>; shortTokenAddress_not_startsWith?: InputMaybe; shortTokenAddress_startsWith?: InputMaybe; swapFeeFactorForNegativeImpact_eq?: InputMaybe; swapFeeFactorForNegativeImpact_gt?: InputMaybe; swapFeeFactorForNegativeImpact_gte?: InputMaybe; swapFeeFactorForNegativeImpact_in?: InputMaybe>; swapFeeFactorForNegativeImpact_isNull?: InputMaybe; swapFeeFactorForNegativeImpact_lt?: InputMaybe; swapFeeFactorForNegativeImpact_lte?: InputMaybe; swapFeeFactorForNegativeImpact_not_eq?: InputMaybe; swapFeeFactorForNegativeImpact_not_in?: InputMaybe>; swapFeeFactorForPositiveImpact_eq?: InputMaybe; swapFeeFactorForPositiveImpact_gt?: InputMaybe; swapFeeFactorForPositiveImpact_gte?: InputMaybe; swapFeeFactorForPositiveImpact_in?: InputMaybe>; swapFeeFactorForPositiveImpact_isNull?: InputMaybe; swapFeeFactorForPositiveImpact_lt?: InputMaybe; swapFeeFactorForPositiveImpact_lte?: InputMaybe; swapFeeFactorForPositiveImpact_not_eq?: InputMaybe; swapFeeFactorForPositiveImpact_not_in?: InputMaybe>; swapImpactExponentFactor_eq?: InputMaybe; swapImpactExponentFactor_gt?: InputMaybe; swapImpactExponentFactor_gte?: InputMaybe; swapImpactExponentFactor_in?: InputMaybe>; swapImpactExponentFactor_isNull?: InputMaybe; swapImpactExponentFactor_lt?: InputMaybe; swapImpactExponentFactor_lte?: InputMaybe; swapImpactExponentFactor_not_eq?: InputMaybe; swapImpactExponentFactor_not_in?: InputMaybe>; swapImpactFactorNegative_eq?: InputMaybe; swapImpactFactorNegative_gt?: InputMaybe; swapImpactFactorNegative_gte?: InputMaybe; swapImpactFactorNegative_in?: InputMaybe>; swapImpactFactorNegative_isNull?: InputMaybe; swapImpactFactorNegative_lt?: InputMaybe; swapImpactFactorNegative_lte?: InputMaybe; swapImpactFactorNegative_not_eq?: InputMaybe; swapImpactFactorNegative_not_in?: InputMaybe>; swapImpactFactorPositive_eq?: InputMaybe; swapImpactFactorPositive_gt?: InputMaybe; swapImpactFactorPositive_gte?: InputMaybe; swapImpactFactorPositive_in?: InputMaybe>; swapImpactFactorPositive_isNull?: InputMaybe; swapImpactFactorPositive_lt?: InputMaybe; swapImpactFactorPositive_lte?: InputMaybe; swapImpactFactorPositive_not_eq?: InputMaybe; swapImpactFactorPositive_not_in?: InputMaybe>; swapImpactPoolAmountLong_eq?: InputMaybe; swapImpactPoolAmountLong_gt?: InputMaybe; swapImpactPoolAmountLong_gte?: InputMaybe; swapImpactPoolAmountLong_in?: InputMaybe>; swapImpactPoolAmountLong_isNull?: InputMaybe; swapImpactPoolAmountLong_lt?: InputMaybe; swapImpactPoolAmountLong_lte?: InputMaybe; swapImpactPoolAmountLong_not_eq?: InputMaybe; swapImpactPoolAmountLong_not_in?: InputMaybe>; swapImpactPoolAmountShort_eq?: InputMaybe; swapImpactPoolAmountShort_gt?: InputMaybe; swapImpactPoolAmountShort_gte?: InputMaybe; swapImpactPoolAmountShort_in?: InputMaybe>; swapImpactPoolAmountShort_isNull?: InputMaybe; swapImpactPoolAmountShort_lt?: InputMaybe; swapImpactPoolAmountShort_lte?: InputMaybe; swapImpactPoolAmountShort_not_eq?: InputMaybe; swapImpactPoolAmountShort_not_in?: InputMaybe>; thresholdForDecreaseFunding_eq?: InputMaybe; thresholdForDecreaseFunding_gt?: InputMaybe; thresholdForDecreaseFunding_gte?: InputMaybe; thresholdForDecreaseFunding_in?: InputMaybe>; thresholdForDecreaseFunding_isNull?: InputMaybe; thresholdForDecreaseFunding_lt?: InputMaybe; thresholdForDecreaseFunding_lte?: InputMaybe; thresholdForDecreaseFunding_not_eq?: InputMaybe; thresholdForDecreaseFunding_not_in?: InputMaybe>; thresholdForStableFunding_eq?: InputMaybe; thresholdForStableFunding_gt?: InputMaybe; thresholdForStableFunding_gte?: InputMaybe; thresholdForStableFunding_in?: InputMaybe>; thresholdForStableFunding_isNull?: InputMaybe; thresholdForStableFunding_lt?: InputMaybe; thresholdForStableFunding_lte?: InputMaybe; thresholdForStableFunding_not_eq?: InputMaybe; thresholdForStableFunding_not_in?: InputMaybe>; totalBorrowingFees_eq?: InputMaybe; totalBorrowingFees_gt?: InputMaybe; totalBorrowingFees_gte?: InputMaybe; totalBorrowingFees_in?: InputMaybe>; totalBorrowingFees_isNull?: InputMaybe; totalBorrowingFees_lt?: InputMaybe; totalBorrowingFees_lte?: InputMaybe; totalBorrowingFees_not_eq?: InputMaybe; totalBorrowingFees_not_in?: InputMaybe>; useOpenInterestInTokensForBalance_eq?: InputMaybe; useOpenInterestInTokensForBalance_isNull?: InputMaybe; useOpenInterestInTokensForBalance_not_eq?: InputMaybe; virtualIndexTokenId_contains?: InputMaybe; virtualIndexTokenId_containsInsensitive?: InputMaybe; virtualIndexTokenId_endsWith?: InputMaybe; virtualIndexTokenId_eq?: InputMaybe; virtualIndexTokenId_gt?: InputMaybe; virtualIndexTokenId_gte?: InputMaybe; virtualIndexTokenId_in?: InputMaybe>; virtualIndexTokenId_isNull?: InputMaybe; virtualIndexTokenId_lt?: InputMaybe; virtualIndexTokenId_lte?: InputMaybe; virtualIndexTokenId_not_contains?: InputMaybe; virtualIndexTokenId_not_containsInsensitive?: InputMaybe; virtualIndexTokenId_not_endsWith?: InputMaybe; virtualIndexTokenId_not_eq?: InputMaybe; virtualIndexTokenId_not_in?: InputMaybe>; virtualIndexTokenId_not_startsWith?: InputMaybe; virtualIndexTokenId_startsWith?: InputMaybe; virtualInventoryForPositions_eq?: InputMaybe; virtualInventoryForPositions_gt?: InputMaybe; virtualInventoryForPositions_gte?: InputMaybe; virtualInventoryForPositions_in?: InputMaybe>; virtualInventoryForPositions_isNull?: InputMaybe; virtualInventoryForPositions_lt?: InputMaybe; virtualInventoryForPositions_lte?: InputMaybe; virtualInventoryForPositions_not_eq?: InputMaybe; virtualInventoryForPositions_not_in?: InputMaybe>; virtualLongTokenId_contains?: InputMaybe; virtualLongTokenId_containsInsensitive?: InputMaybe; virtualLongTokenId_endsWith?: InputMaybe; virtualLongTokenId_eq?: InputMaybe; virtualLongTokenId_gt?: InputMaybe; virtualLongTokenId_gte?: InputMaybe; virtualLongTokenId_in?: InputMaybe>; virtualLongTokenId_isNull?: InputMaybe; virtualLongTokenId_lt?: InputMaybe; virtualLongTokenId_lte?: InputMaybe; virtualLongTokenId_not_contains?: InputMaybe; virtualLongTokenId_not_containsInsensitive?: InputMaybe; virtualLongTokenId_not_endsWith?: InputMaybe; virtualLongTokenId_not_eq?: InputMaybe; virtualLongTokenId_not_in?: InputMaybe>; virtualLongTokenId_not_startsWith?: InputMaybe; virtualLongTokenId_startsWith?: InputMaybe; virtualMarketId_contains?: InputMaybe; virtualMarketId_containsInsensitive?: InputMaybe; virtualMarketId_endsWith?: InputMaybe; virtualMarketId_eq?: InputMaybe; virtualMarketId_gt?: InputMaybe; virtualMarketId_gte?: InputMaybe; virtualMarketId_in?: InputMaybe>; virtualMarketId_isNull?: InputMaybe; virtualMarketId_lt?: InputMaybe; virtualMarketId_lte?: InputMaybe; virtualMarketId_not_contains?: InputMaybe; virtualMarketId_not_containsInsensitive?: InputMaybe; virtualMarketId_not_endsWith?: InputMaybe; virtualMarketId_not_eq?: InputMaybe; virtualMarketId_not_in?: InputMaybe>; virtualMarketId_not_startsWith?: InputMaybe; virtualMarketId_startsWith?: InputMaybe; virtualPoolAmountForLongToken_eq?: InputMaybe; virtualPoolAmountForLongToken_gt?: InputMaybe; virtualPoolAmountForLongToken_gte?: InputMaybe; virtualPoolAmountForLongToken_in?: InputMaybe>; virtualPoolAmountForLongToken_isNull?: InputMaybe; virtualPoolAmountForLongToken_lt?: InputMaybe; virtualPoolAmountForLongToken_lte?: InputMaybe; virtualPoolAmountForLongToken_not_eq?: InputMaybe; virtualPoolAmountForLongToken_not_in?: InputMaybe>; virtualPoolAmountForShortToken_eq?: InputMaybe; virtualPoolAmountForShortToken_gt?: InputMaybe; virtualPoolAmountForShortToken_gte?: InputMaybe; virtualPoolAmountForShortToken_in?: InputMaybe>; virtualPoolAmountForShortToken_isNull?: InputMaybe; virtualPoolAmountForShortToken_lt?: InputMaybe; virtualPoolAmountForShortToken_lte?: InputMaybe; virtualPoolAmountForShortToken_not_eq?: InputMaybe; virtualPoolAmountForShortToken_not_in?: InputMaybe>; virtualShortTokenId_contains?: InputMaybe; virtualShortTokenId_containsInsensitive?: InputMaybe; virtualShortTokenId_endsWith?: InputMaybe; virtualShortTokenId_eq?: InputMaybe; virtualShortTokenId_gt?: InputMaybe; virtualShortTokenId_gte?: InputMaybe; virtualShortTokenId_in?: InputMaybe>; virtualShortTokenId_isNull?: InputMaybe; virtualShortTokenId_lt?: InputMaybe; virtualShortTokenId_lte?: InputMaybe; virtualShortTokenId_not_contains?: InputMaybe; virtualShortTokenId_not_containsInsensitive?: InputMaybe; virtualShortTokenId_not_endsWith?: InputMaybe; virtualShortTokenId_not_eq?: InputMaybe; virtualShortTokenId_not_in?: InputMaybe>; virtualShortTokenId_not_startsWith?: InputMaybe; virtualShortTokenId_startsWith?: InputMaybe; } export interface MarketInfosConnection { __typename?: "MarketInfosConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface MarketNetRates { __typename?: "MarketNetRates"; borrowingRateLong: Scalars["BigInt"]["output"]; borrowingRateShort: Scalars["BigInt"]["output"]; fundingRateLong: Scalars["BigInt"]["output"]; fundingRateShort: Scalars["BigInt"]["output"]; netRateLong: Scalars["BigInt"]["output"]; netRateShort: Scalars["BigInt"]["output"]; timestamp: Scalars["Float"]["output"]; } export interface MarketNetRatesResponse { __typename?: "MarketNetRatesResponse"; marketAddress: Scalars["String"]["output"]; ratesSnapshots: Array; } export interface MarketNetRatesWhereInput { averageBy?: InputMaybe; marketAddresses?: InputMaybe>; periodEnd: Scalars["Float"]["input"]; periodStart: Scalars["Float"]["input"]; } export declare enum MarketOrderByInput { id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", indexToken_ASC = "indexToken_ASC", indexToken_ASC_NULLS_FIRST = "indexToken_ASC_NULLS_FIRST", indexToken_ASC_NULLS_LAST = "indexToken_ASC_NULLS_LAST", indexToken_DESC = "indexToken_DESC", indexToken_DESC_NULLS_FIRST = "indexToken_DESC_NULLS_FIRST", indexToken_DESC_NULLS_LAST = "indexToken_DESC_NULLS_LAST", longToken_ASC = "longToken_ASC", longToken_ASC_NULLS_FIRST = "longToken_ASC_NULLS_FIRST", longToken_ASC_NULLS_LAST = "longToken_ASC_NULLS_LAST", longToken_DESC = "longToken_DESC", longToken_DESC_NULLS_FIRST = "longToken_DESC_NULLS_FIRST", longToken_DESC_NULLS_LAST = "longToken_DESC_NULLS_LAST", shortToken_ASC = "shortToken_ASC", shortToken_ASC_NULLS_FIRST = "shortToken_ASC_NULLS_FIRST", shortToken_ASC_NULLS_LAST = "shortToken_ASC_NULLS_LAST", shortToken_DESC = "shortToken_DESC", shortToken_DESC_NULLS_FIRST = "shortToken_DESC_NULLS_FIRST", shortToken_DESC_NULLS_LAST = "shortToken_DESC_NULLS_LAST" } export interface MarketPnlApr { __typename?: "MarketPnlApr"; apr: Scalars["BigInt"]["output"]; marketAddress: Scalars["String"]["output"]; periodRealizedPnlLong: Scalars["BigInt"]["output"]; periodRealizedPnlShort: Scalars["BigInt"]["output"]; periodUnrealizedPnlLong: Scalars["BigInt"]["output"]; periodUnrealizedPnlShort: Scalars["BigInt"]["output"]; timeWeightedPoolValue: Scalars["BigInt"]["output"]; } export interface MarketPnlAprsWhereInput { marketAddresses?: InputMaybe>; periodEnd: Scalars["Float"]["input"]; periodStart: Scalars["Float"]["input"]; } export interface MarketWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; indexToken_contains?: InputMaybe; indexToken_containsInsensitive?: InputMaybe; indexToken_endsWith?: InputMaybe; indexToken_eq?: InputMaybe; indexToken_gt?: InputMaybe; indexToken_gte?: InputMaybe; indexToken_in?: InputMaybe>; indexToken_isNull?: InputMaybe; indexToken_lt?: InputMaybe; indexToken_lte?: InputMaybe; indexToken_not_contains?: InputMaybe; indexToken_not_containsInsensitive?: InputMaybe; indexToken_not_endsWith?: InputMaybe; indexToken_not_eq?: InputMaybe; indexToken_not_in?: InputMaybe>; indexToken_not_startsWith?: InputMaybe; indexToken_startsWith?: InputMaybe; longToken_contains?: InputMaybe; longToken_containsInsensitive?: InputMaybe; longToken_endsWith?: InputMaybe; longToken_eq?: InputMaybe; longToken_gt?: InputMaybe; longToken_gte?: InputMaybe; longToken_in?: InputMaybe>; longToken_isNull?: InputMaybe; longToken_lt?: InputMaybe; longToken_lte?: InputMaybe; longToken_not_contains?: InputMaybe; longToken_not_containsInsensitive?: InputMaybe; longToken_not_endsWith?: InputMaybe; longToken_not_eq?: InputMaybe; longToken_not_in?: InputMaybe>; longToken_not_startsWith?: InputMaybe; longToken_startsWith?: InputMaybe; shortToken_contains?: InputMaybe; shortToken_containsInsensitive?: InputMaybe; shortToken_endsWith?: InputMaybe; shortToken_eq?: InputMaybe; shortToken_gt?: InputMaybe; shortToken_gte?: InputMaybe; shortToken_in?: InputMaybe>; shortToken_isNull?: InputMaybe; shortToken_lt?: InputMaybe; shortToken_lte?: InputMaybe; shortToken_not_contains?: InputMaybe; shortToken_not_containsInsensitive?: InputMaybe; shortToken_not_endsWith?: InputMaybe; shortToken_not_eq?: InputMaybe; shortToken_not_in?: InputMaybe>; shortToken_not_startsWith?: InputMaybe; shortToken_startsWith?: InputMaybe; } export interface MarketsConnection { __typename?: "MarketsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface MultichainFundingInfo { __typename?: "MultichainFundingInfo"; account: Scalars["String"]["output"]; executedTimestamp?: Maybe; executedTxn?: Maybe; expectedReceivedAmount: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; isExecutionError?: Maybe; operation: Scalars["String"]["output"]; receivedAmount?: Maybe; receivedTimestamp?: Maybe; receivedTxn?: Maybe; sentAmount: Scalars["BigInt"]["output"]; sentTimestamp: Scalars["Float"]["output"]; sentTxn: Scalars["String"]["output"]; settlementChainId: Scalars["Float"]["output"]; sourceChainId: Scalars["Float"]["output"]; step: Scalars["String"]["output"]; token: Scalars["String"]["output"]; } export declare enum MultichainFundingOperation { deposit = "deposit", withdrawal = "withdrawal" } export interface MultichainFundingReceiveEvent { __typename?: "MultichainFundingReceiveEvent"; deliveredTimestamp?: Maybe; deliveredTxn?: Maybe; id: Scalars["String"]["output"]; isDeliveryError?: Maybe; isUncertain: Scalars["Boolean"]["output"]; operation: MultichainFundingOperation; receivedAmount: Scalars["BigInt"]["output"]; receivedTimestamp: Scalars["Int"]["output"]; receivedTxn: Scalars["String"]["output"]; sourceChainId: Scalars["Int"]["output"]; } export interface MultichainFundingReceiveEventEdge { __typename?: "MultichainFundingReceiveEventEdge"; cursor: Scalars["String"]["output"]; node: MultichainFundingReceiveEvent; } export declare enum MultichainFundingReceiveEventOrderByInput { deliveredTimestamp_ASC = "deliveredTimestamp_ASC", deliveredTimestamp_ASC_NULLS_FIRST = "deliveredTimestamp_ASC_NULLS_FIRST", deliveredTimestamp_ASC_NULLS_LAST = "deliveredTimestamp_ASC_NULLS_LAST", deliveredTimestamp_DESC = "deliveredTimestamp_DESC", deliveredTimestamp_DESC_NULLS_FIRST = "deliveredTimestamp_DESC_NULLS_FIRST", deliveredTimestamp_DESC_NULLS_LAST = "deliveredTimestamp_DESC_NULLS_LAST", deliveredTxn_ASC = "deliveredTxn_ASC", deliveredTxn_ASC_NULLS_FIRST = "deliveredTxn_ASC_NULLS_FIRST", deliveredTxn_ASC_NULLS_LAST = "deliveredTxn_ASC_NULLS_LAST", deliveredTxn_DESC = "deliveredTxn_DESC", deliveredTxn_DESC_NULLS_FIRST = "deliveredTxn_DESC_NULLS_FIRST", deliveredTxn_DESC_NULLS_LAST = "deliveredTxn_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", isDeliveryError_ASC = "isDeliveryError_ASC", isDeliveryError_ASC_NULLS_FIRST = "isDeliveryError_ASC_NULLS_FIRST", isDeliveryError_ASC_NULLS_LAST = "isDeliveryError_ASC_NULLS_LAST", isDeliveryError_DESC = "isDeliveryError_DESC", isDeliveryError_DESC_NULLS_FIRST = "isDeliveryError_DESC_NULLS_FIRST", isDeliveryError_DESC_NULLS_LAST = "isDeliveryError_DESC_NULLS_LAST", isUncertain_ASC = "isUncertain_ASC", isUncertain_ASC_NULLS_FIRST = "isUncertain_ASC_NULLS_FIRST", isUncertain_ASC_NULLS_LAST = "isUncertain_ASC_NULLS_LAST", isUncertain_DESC = "isUncertain_DESC", isUncertain_DESC_NULLS_FIRST = "isUncertain_DESC_NULLS_FIRST", isUncertain_DESC_NULLS_LAST = "isUncertain_DESC_NULLS_LAST", operation_ASC = "operation_ASC", operation_ASC_NULLS_FIRST = "operation_ASC_NULLS_FIRST", operation_ASC_NULLS_LAST = "operation_ASC_NULLS_LAST", operation_DESC = "operation_DESC", operation_DESC_NULLS_FIRST = "operation_DESC_NULLS_FIRST", operation_DESC_NULLS_LAST = "operation_DESC_NULLS_LAST", receivedAmount_ASC = "receivedAmount_ASC", receivedAmount_ASC_NULLS_FIRST = "receivedAmount_ASC_NULLS_FIRST", receivedAmount_ASC_NULLS_LAST = "receivedAmount_ASC_NULLS_LAST", receivedAmount_DESC = "receivedAmount_DESC", receivedAmount_DESC_NULLS_FIRST = "receivedAmount_DESC_NULLS_FIRST", receivedAmount_DESC_NULLS_LAST = "receivedAmount_DESC_NULLS_LAST", receivedTimestamp_ASC = "receivedTimestamp_ASC", receivedTimestamp_ASC_NULLS_FIRST = "receivedTimestamp_ASC_NULLS_FIRST", receivedTimestamp_ASC_NULLS_LAST = "receivedTimestamp_ASC_NULLS_LAST", receivedTimestamp_DESC = "receivedTimestamp_DESC", receivedTimestamp_DESC_NULLS_FIRST = "receivedTimestamp_DESC_NULLS_FIRST", receivedTimestamp_DESC_NULLS_LAST = "receivedTimestamp_DESC_NULLS_LAST", receivedTxn_ASC = "receivedTxn_ASC", receivedTxn_ASC_NULLS_FIRST = "receivedTxn_ASC_NULLS_FIRST", receivedTxn_ASC_NULLS_LAST = "receivedTxn_ASC_NULLS_LAST", receivedTxn_DESC = "receivedTxn_DESC", receivedTxn_DESC_NULLS_FIRST = "receivedTxn_DESC_NULLS_FIRST", receivedTxn_DESC_NULLS_LAST = "receivedTxn_DESC_NULLS_LAST", sourceChainId_ASC = "sourceChainId_ASC", sourceChainId_ASC_NULLS_FIRST = "sourceChainId_ASC_NULLS_FIRST", sourceChainId_ASC_NULLS_LAST = "sourceChainId_ASC_NULLS_LAST", sourceChainId_DESC = "sourceChainId_DESC", sourceChainId_DESC_NULLS_FIRST = "sourceChainId_DESC_NULLS_FIRST", sourceChainId_DESC_NULLS_LAST = "sourceChainId_DESC_NULLS_LAST" } export interface MultichainFundingReceiveEventWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; deliveredTimestamp_eq?: InputMaybe; deliveredTimestamp_gt?: InputMaybe; deliveredTimestamp_gte?: InputMaybe; deliveredTimestamp_in?: InputMaybe>; deliveredTimestamp_isNull?: InputMaybe; deliveredTimestamp_lt?: InputMaybe; deliveredTimestamp_lte?: InputMaybe; deliveredTimestamp_not_eq?: InputMaybe; deliveredTimestamp_not_in?: InputMaybe>; deliveredTxn_contains?: InputMaybe; deliveredTxn_containsInsensitive?: InputMaybe; deliveredTxn_endsWith?: InputMaybe; deliveredTxn_eq?: InputMaybe; deliveredTxn_gt?: InputMaybe; deliveredTxn_gte?: InputMaybe; deliveredTxn_in?: InputMaybe>; deliveredTxn_isNull?: InputMaybe; deliveredTxn_lt?: InputMaybe; deliveredTxn_lte?: InputMaybe; deliveredTxn_not_contains?: InputMaybe; deliveredTxn_not_containsInsensitive?: InputMaybe; deliveredTxn_not_endsWith?: InputMaybe; deliveredTxn_not_eq?: InputMaybe; deliveredTxn_not_in?: InputMaybe>; deliveredTxn_not_startsWith?: InputMaybe; deliveredTxn_startsWith?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; isDeliveryError_eq?: InputMaybe; isDeliveryError_isNull?: InputMaybe; isDeliveryError_not_eq?: InputMaybe; isUncertain_eq?: InputMaybe; isUncertain_isNull?: InputMaybe; isUncertain_not_eq?: InputMaybe; operation_eq?: InputMaybe; operation_in?: InputMaybe>; operation_isNull?: InputMaybe; operation_not_eq?: InputMaybe; operation_not_in?: InputMaybe>; receivedAmount_eq?: InputMaybe; receivedAmount_gt?: InputMaybe; receivedAmount_gte?: InputMaybe; receivedAmount_in?: InputMaybe>; receivedAmount_isNull?: InputMaybe; receivedAmount_lt?: InputMaybe; receivedAmount_lte?: InputMaybe; receivedAmount_not_eq?: InputMaybe; receivedAmount_not_in?: InputMaybe>; receivedTimestamp_eq?: InputMaybe; receivedTimestamp_gt?: InputMaybe; receivedTimestamp_gte?: InputMaybe; receivedTimestamp_in?: InputMaybe>; receivedTimestamp_isNull?: InputMaybe; receivedTimestamp_lt?: InputMaybe; receivedTimestamp_lte?: InputMaybe; receivedTimestamp_not_eq?: InputMaybe; receivedTimestamp_not_in?: InputMaybe>; receivedTxn_contains?: InputMaybe; receivedTxn_containsInsensitive?: InputMaybe; receivedTxn_endsWith?: InputMaybe; receivedTxn_eq?: InputMaybe; receivedTxn_gt?: InputMaybe; receivedTxn_gte?: InputMaybe; receivedTxn_in?: InputMaybe>; receivedTxn_isNull?: InputMaybe; receivedTxn_lt?: InputMaybe; receivedTxn_lte?: InputMaybe; receivedTxn_not_contains?: InputMaybe; receivedTxn_not_containsInsensitive?: InputMaybe; receivedTxn_not_endsWith?: InputMaybe; receivedTxn_not_eq?: InputMaybe; receivedTxn_not_in?: InputMaybe>; receivedTxn_not_startsWith?: InputMaybe; receivedTxn_startsWith?: InputMaybe; sourceChainId_eq?: InputMaybe; sourceChainId_gt?: InputMaybe; sourceChainId_gte?: InputMaybe; sourceChainId_in?: InputMaybe>; sourceChainId_isNull?: InputMaybe; sourceChainId_lt?: InputMaybe; sourceChainId_lte?: InputMaybe; sourceChainId_not_eq?: InputMaybe; sourceChainId_not_in?: InputMaybe>; } export interface MultichainFundingReceiveEventsConnection { __typename?: "MultichainFundingReceiveEventsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface MultichainFundingSendEvent { __typename?: "MultichainFundingSendEvent"; account: Scalars["String"]["output"]; expectedReceivedAmount: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; operation: MultichainFundingOperation; sentAmount: Scalars["BigInt"]["output"]; settlementChainId: Scalars["Int"]["output"]; sourceChainId: Scalars["Int"]["output"]; timestamp: Scalars["Int"]["output"]; token: Scalars["String"]["output"]; txn: Scalars["String"]["output"]; } export interface MultichainFundingSendEventEdge { __typename?: "MultichainFundingSendEventEdge"; cursor: Scalars["String"]["output"]; node: MultichainFundingSendEvent; } export declare enum MultichainFundingSendEventOrderByInput { account_ASC = "account_ASC", account_ASC_NULLS_FIRST = "account_ASC_NULLS_FIRST", account_ASC_NULLS_LAST = "account_ASC_NULLS_LAST", account_DESC = "account_DESC", account_DESC_NULLS_FIRST = "account_DESC_NULLS_FIRST", account_DESC_NULLS_LAST = "account_DESC_NULLS_LAST", expectedReceivedAmount_ASC = "expectedReceivedAmount_ASC", expectedReceivedAmount_ASC_NULLS_FIRST = "expectedReceivedAmount_ASC_NULLS_FIRST", expectedReceivedAmount_ASC_NULLS_LAST = "expectedReceivedAmount_ASC_NULLS_LAST", expectedReceivedAmount_DESC = "expectedReceivedAmount_DESC", expectedReceivedAmount_DESC_NULLS_FIRST = "expectedReceivedAmount_DESC_NULLS_FIRST", expectedReceivedAmount_DESC_NULLS_LAST = "expectedReceivedAmount_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", operation_ASC = "operation_ASC", operation_ASC_NULLS_FIRST = "operation_ASC_NULLS_FIRST", operation_ASC_NULLS_LAST = "operation_ASC_NULLS_LAST", operation_DESC = "operation_DESC", operation_DESC_NULLS_FIRST = "operation_DESC_NULLS_FIRST", operation_DESC_NULLS_LAST = "operation_DESC_NULLS_LAST", sentAmount_ASC = "sentAmount_ASC", sentAmount_ASC_NULLS_FIRST = "sentAmount_ASC_NULLS_FIRST", sentAmount_ASC_NULLS_LAST = "sentAmount_ASC_NULLS_LAST", sentAmount_DESC = "sentAmount_DESC", sentAmount_DESC_NULLS_FIRST = "sentAmount_DESC_NULLS_FIRST", sentAmount_DESC_NULLS_LAST = "sentAmount_DESC_NULLS_LAST", settlementChainId_ASC = "settlementChainId_ASC", settlementChainId_ASC_NULLS_FIRST = "settlementChainId_ASC_NULLS_FIRST", settlementChainId_ASC_NULLS_LAST = "settlementChainId_ASC_NULLS_LAST", settlementChainId_DESC = "settlementChainId_DESC", settlementChainId_DESC_NULLS_FIRST = "settlementChainId_DESC_NULLS_FIRST", settlementChainId_DESC_NULLS_LAST = "settlementChainId_DESC_NULLS_LAST", sourceChainId_ASC = "sourceChainId_ASC", sourceChainId_ASC_NULLS_FIRST = "sourceChainId_ASC_NULLS_FIRST", sourceChainId_ASC_NULLS_LAST = "sourceChainId_ASC_NULLS_LAST", sourceChainId_DESC = "sourceChainId_DESC", sourceChainId_DESC_NULLS_FIRST = "sourceChainId_DESC_NULLS_FIRST", sourceChainId_DESC_NULLS_LAST = "sourceChainId_DESC_NULLS_LAST", timestamp_ASC = "timestamp_ASC", timestamp_ASC_NULLS_FIRST = "timestamp_ASC_NULLS_FIRST", timestamp_ASC_NULLS_LAST = "timestamp_ASC_NULLS_LAST", timestamp_DESC = "timestamp_DESC", timestamp_DESC_NULLS_FIRST = "timestamp_DESC_NULLS_FIRST", timestamp_DESC_NULLS_LAST = "timestamp_DESC_NULLS_LAST", token_ASC = "token_ASC", token_ASC_NULLS_FIRST = "token_ASC_NULLS_FIRST", token_ASC_NULLS_LAST = "token_ASC_NULLS_LAST", token_DESC = "token_DESC", token_DESC_NULLS_FIRST = "token_DESC_NULLS_FIRST", token_DESC_NULLS_LAST = "token_DESC_NULLS_LAST", txn_ASC = "txn_ASC", txn_ASC_NULLS_FIRST = "txn_ASC_NULLS_FIRST", txn_ASC_NULLS_LAST = "txn_ASC_NULLS_LAST", txn_DESC = "txn_DESC", txn_DESC_NULLS_FIRST = "txn_DESC_NULLS_FIRST", txn_DESC_NULLS_LAST = "txn_DESC_NULLS_LAST" } export interface MultichainFundingSendEventWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; account_contains?: InputMaybe; account_containsInsensitive?: InputMaybe; account_endsWith?: InputMaybe; account_eq?: InputMaybe; account_gt?: InputMaybe; account_gte?: InputMaybe; account_in?: InputMaybe>; account_isNull?: InputMaybe; account_lt?: InputMaybe; account_lte?: InputMaybe; account_not_contains?: InputMaybe; account_not_containsInsensitive?: InputMaybe; account_not_endsWith?: InputMaybe; account_not_eq?: InputMaybe; account_not_in?: InputMaybe>; account_not_startsWith?: InputMaybe; account_startsWith?: InputMaybe; expectedReceivedAmount_eq?: InputMaybe; expectedReceivedAmount_gt?: InputMaybe; expectedReceivedAmount_gte?: InputMaybe; expectedReceivedAmount_in?: InputMaybe>; expectedReceivedAmount_isNull?: InputMaybe; expectedReceivedAmount_lt?: InputMaybe; expectedReceivedAmount_lte?: InputMaybe; expectedReceivedAmount_not_eq?: InputMaybe; expectedReceivedAmount_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; operation_eq?: InputMaybe; operation_in?: InputMaybe>; operation_isNull?: InputMaybe; operation_not_eq?: InputMaybe; operation_not_in?: InputMaybe>; sentAmount_eq?: InputMaybe; sentAmount_gt?: InputMaybe; sentAmount_gte?: InputMaybe; sentAmount_in?: InputMaybe>; sentAmount_isNull?: InputMaybe; sentAmount_lt?: InputMaybe; sentAmount_lte?: InputMaybe; sentAmount_not_eq?: InputMaybe; sentAmount_not_in?: InputMaybe>; settlementChainId_eq?: InputMaybe; settlementChainId_gt?: InputMaybe; settlementChainId_gte?: InputMaybe; settlementChainId_in?: InputMaybe>; settlementChainId_isNull?: InputMaybe; settlementChainId_lt?: InputMaybe; settlementChainId_lte?: InputMaybe; settlementChainId_not_eq?: InputMaybe; settlementChainId_not_in?: InputMaybe>; sourceChainId_eq?: InputMaybe; sourceChainId_gt?: InputMaybe; sourceChainId_gte?: InputMaybe; sourceChainId_in?: InputMaybe>; sourceChainId_isNull?: InputMaybe; sourceChainId_lt?: InputMaybe; sourceChainId_lte?: InputMaybe; sourceChainId_not_eq?: InputMaybe; sourceChainId_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_isNull?: InputMaybe; timestamp_lt?: InputMaybe; timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; token_contains?: InputMaybe; token_containsInsensitive?: InputMaybe; token_endsWith?: InputMaybe; token_eq?: InputMaybe; token_gt?: InputMaybe; token_gte?: InputMaybe; token_in?: InputMaybe>; token_isNull?: InputMaybe; token_lt?: InputMaybe; token_lte?: InputMaybe; token_not_contains?: InputMaybe; token_not_containsInsensitive?: InputMaybe; token_not_endsWith?: InputMaybe; token_not_eq?: InputMaybe; token_not_in?: InputMaybe>; token_not_startsWith?: InputMaybe; token_startsWith?: InputMaybe; txn_contains?: InputMaybe; txn_containsInsensitive?: InputMaybe; txn_endsWith?: InputMaybe; txn_eq?: InputMaybe; txn_gt?: InputMaybe; txn_gte?: InputMaybe; txn_in?: InputMaybe>; txn_isNull?: InputMaybe; txn_lt?: InputMaybe; txn_lte?: InputMaybe; txn_not_contains?: InputMaybe; txn_not_containsInsensitive?: InputMaybe; txn_not_endsWith?: InputMaybe; txn_not_eq?: InputMaybe; txn_not_in?: InputMaybe>; txn_not_startsWith?: InputMaybe; txn_startsWith?: InputMaybe; } export interface MultichainFundingSendEventsConnection { __typename?: "MultichainFundingSendEventsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface MultichainFundingWhereInput { account?: InputMaybe; id?: InputMaybe; sourceChainId?: InputMaybe; } export interface MultichainSamechainFundingEvent { __typename?: "MultichainSamechainFundingEvent"; account: Scalars["String"]["output"]; amount: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; operation: MultichainFundingOperation; timestamp: Scalars["Int"]["output"]; token: Scalars["String"]["output"]; txHash: Scalars["String"]["output"]; } export interface MultichainSamechainFundingEventEdge { __typename?: "MultichainSamechainFundingEventEdge"; cursor: Scalars["String"]["output"]; node: MultichainSamechainFundingEvent; } export declare enum MultichainSamechainFundingEventOrderByInput { account_ASC = "account_ASC", account_ASC_NULLS_FIRST = "account_ASC_NULLS_FIRST", account_ASC_NULLS_LAST = "account_ASC_NULLS_LAST", account_DESC = "account_DESC", account_DESC_NULLS_FIRST = "account_DESC_NULLS_FIRST", account_DESC_NULLS_LAST = "account_DESC_NULLS_LAST", amount_ASC = "amount_ASC", amount_ASC_NULLS_FIRST = "amount_ASC_NULLS_FIRST", amount_ASC_NULLS_LAST = "amount_ASC_NULLS_LAST", amount_DESC = "amount_DESC", amount_DESC_NULLS_FIRST = "amount_DESC_NULLS_FIRST", amount_DESC_NULLS_LAST = "amount_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", operation_ASC = "operation_ASC", operation_ASC_NULLS_FIRST = "operation_ASC_NULLS_FIRST", operation_ASC_NULLS_LAST = "operation_ASC_NULLS_LAST", operation_DESC = "operation_DESC", operation_DESC_NULLS_FIRST = "operation_DESC_NULLS_FIRST", operation_DESC_NULLS_LAST = "operation_DESC_NULLS_LAST", timestamp_ASC = "timestamp_ASC", timestamp_ASC_NULLS_FIRST = "timestamp_ASC_NULLS_FIRST", timestamp_ASC_NULLS_LAST = "timestamp_ASC_NULLS_LAST", timestamp_DESC = "timestamp_DESC", timestamp_DESC_NULLS_FIRST = "timestamp_DESC_NULLS_FIRST", timestamp_DESC_NULLS_LAST = "timestamp_DESC_NULLS_LAST", token_ASC = "token_ASC", token_ASC_NULLS_FIRST = "token_ASC_NULLS_FIRST", token_ASC_NULLS_LAST = "token_ASC_NULLS_LAST", token_DESC = "token_DESC", token_DESC_NULLS_FIRST = "token_DESC_NULLS_FIRST", token_DESC_NULLS_LAST = "token_DESC_NULLS_LAST", txHash_ASC = "txHash_ASC", txHash_ASC_NULLS_FIRST = "txHash_ASC_NULLS_FIRST", txHash_ASC_NULLS_LAST = "txHash_ASC_NULLS_LAST", txHash_DESC = "txHash_DESC", txHash_DESC_NULLS_FIRST = "txHash_DESC_NULLS_FIRST", txHash_DESC_NULLS_LAST = "txHash_DESC_NULLS_LAST" } export interface MultichainSamechainFundingEventWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; account_contains?: InputMaybe; account_containsInsensitive?: InputMaybe; account_endsWith?: InputMaybe; account_eq?: InputMaybe; account_gt?: InputMaybe; account_gte?: InputMaybe; account_in?: InputMaybe>; account_isNull?: InputMaybe; account_lt?: InputMaybe; account_lte?: InputMaybe; account_not_contains?: InputMaybe; account_not_containsInsensitive?: InputMaybe; account_not_endsWith?: InputMaybe; account_not_eq?: InputMaybe; account_not_in?: InputMaybe>; account_not_startsWith?: InputMaybe; account_startsWith?: InputMaybe; amount_eq?: InputMaybe; amount_gt?: InputMaybe; amount_gte?: InputMaybe; amount_in?: InputMaybe>; amount_isNull?: InputMaybe; amount_lt?: InputMaybe; amount_lte?: InputMaybe; amount_not_eq?: InputMaybe; amount_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; operation_eq?: InputMaybe; operation_in?: InputMaybe>; operation_isNull?: InputMaybe; operation_not_eq?: InputMaybe; operation_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_isNull?: InputMaybe; timestamp_lt?: InputMaybe; timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; token_contains?: InputMaybe; token_containsInsensitive?: InputMaybe; token_endsWith?: InputMaybe; token_eq?: InputMaybe; token_gt?: InputMaybe; token_gte?: InputMaybe; token_in?: InputMaybe>; token_isNull?: InputMaybe; token_lt?: InputMaybe; token_lte?: InputMaybe; token_not_contains?: InputMaybe; token_not_containsInsensitive?: InputMaybe; token_not_endsWith?: InputMaybe; token_not_eq?: InputMaybe; token_not_in?: InputMaybe>; token_not_startsWith?: InputMaybe; token_startsWith?: InputMaybe; txHash_contains?: InputMaybe; txHash_containsInsensitive?: InputMaybe; txHash_endsWith?: InputMaybe; txHash_eq?: InputMaybe; txHash_gt?: InputMaybe; txHash_gte?: InputMaybe; txHash_in?: InputMaybe>; txHash_isNull?: InputMaybe; txHash_lt?: InputMaybe; txHash_lte?: InputMaybe; txHash_not_contains?: InputMaybe; txHash_not_containsInsensitive?: InputMaybe; txHash_not_endsWith?: InputMaybe; txHash_not_eq?: InputMaybe; txHash_not_in?: InputMaybe>; txHash_not_startsWith?: InputMaybe; txHash_startsWith?: InputMaybe; } export interface MultichainSamechainFundingEventsConnection { __typename?: "MultichainSamechainFundingEventsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface NetworkStakingPower { __typename?: "NetworkStakingPower"; id: Scalars["String"]["output"]; lastUpdateTimestamp: Scalars["Int"]["output"]; totalAccumulatedPower: Scalars["BigInt"]["output"]; totalCurrentStaked: Scalars["BigInt"]["output"]; } export interface NetworkStakingPowerEdge { __typename?: "NetworkStakingPowerEdge"; cursor: Scalars["String"]["output"]; node: NetworkStakingPower; } export declare enum NetworkStakingPowerOrderByInput { id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", lastUpdateTimestamp_ASC = "lastUpdateTimestamp_ASC", lastUpdateTimestamp_ASC_NULLS_FIRST = "lastUpdateTimestamp_ASC_NULLS_FIRST", lastUpdateTimestamp_ASC_NULLS_LAST = "lastUpdateTimestamp_ASC_NULLS_LAST", lastUpdateTimestamp_DESC = "lastUpdateTimestamp_DESC", lastUpdateTimestamp_DESC_NULLS_FIRST = "lastUpdateTimestamp_DESC_NULLS_FIRST", lastUpdateTimestamp_DESC_NULLS_LAST = "lastUpdateTimestamp_DESC_NULLS_LAST", totalAccumulatedPower_ASC = "totalAccumulatedPower_ASC", totalAccumulatedPower_ASC_NULLS_FIRST = "totalAccumulatedPower_ASC_NULLS_FIRST", totalAccumulatedPower_ASC_NULLS_LAST = "totalAccumulatedPower_ASC_NULLS_LAST", totalAccumulatedPower_DESC = "totalAccumulatedPower_DESC", totalAccumulatedPower_DESC_NULLS_FIRST = "totalAccumulatedPower_DESC_NULLS_FIRST", totalAccumulatedPower_DESC_NULLS_LAST = "totalAccumulatedPower_DESC_NULLS_LAST", totalCurrentStaked_ASC = "totalCurrentStaked_ASC", totalCurrentStaked_ASC_NULLS_FIRST = "totalCurrentStaked_ASC_NULLS_FIRST", totalCurrentStaked_ASC_NULLS_LAST = "totalCurrentStaked_ASC_NULLS_LAST", totalCurrentStaked_DESC = "totalCurrentStaked_DESC", totalCurrentStaked_DESC_NULLS_FIRST = "totalCurrentStaked_DESC_NULLS_FIRST", totalCurrentStaked_DESC_NULLS_LAST = "totalCurrentStaked_DESC_NULLS_LAST" } export interface NetworkStakingPowerWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; lastUpdateTimestamp_eq?: InputMaybe; lastUpdateTimestamp_gt?: InputMaybe; lastUpdateTimestamp_gte?: InputMaybe; lastUpdateTimestamp_in?: InputMaybe>; lastUpdateTimestamp_isNull?: InputMaybe; lastUpdateTimestamp_lt?: InputMaybe; lastUpdateTimestamp_lte?: InputMaybe; lastUpdateTimestamp_not_eq?: InputMaybe; lastUpdateTimestamp_not_in?: InputMaybe>; totalAccumulatedPower_eq?: InputMaybe; totalAccumulatedPower_gt?: InputMaybe; totalAccumulatedPower_gte?: InputMaybe; totalAccumulatedPower_in?: InputMaybe>; totalAccumulatedPower_isNull?: InputMaybe; totalAccumulatedPower_lt?: InputMaybe; totalAccumulatedPower_lte?: InputMaybe; totalAccumulatedPower_not_eq?: InputMaybe; totalAccumulatedPower_not_in?: InputMaybe>; totalCurrentStaked_eq?: InputMaybe; totalCurrentStaked_gt?: InputMaybe; totalCurrentStaked_gte?: InputMaybe; totalCurrentStaked_in?: InputMaybe>; totalCurrentStaked_isNull?: InputMaybe; totalCurrentStaked_lt?: InputMaybe; totalCurrentStaked_lte?: InputMaybe; totalCurrentStaked_not_eq?: InputMaybe; totalCurrentStaked_not_in?: InputMaybe>; } export interface NetworkStakingPowersConnection { __typename?: "NetworkStakingPowersConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface OnChainSetting { __typename?: "OnChainSetting"; id: Scalars["String"]["output"]; key: Scalars["String"]["output"]; type: OnChainSettingType; value: Scalars["String"]["output"]; } export interface OnChainSettingEdge { __typename?: "OnChainSettingEdge"; cursor: Scalars["String"]["output"]; node: OnChainSetting; } export declare enum OnChainSettingOrderByInput { id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", key_ASC = "key_ASC", key_ASC_NULLS_FIRST = "key_ASC_NULLS_FIRST", key_ASC_NULLS_LAST = "key_ASC_NULLS_LAST", key_DESC = "key_DESC", key_DESC_NULLS_FIRST = "key_DESC_NULLS_FIRST", key_DESC_NULLS_LAST = "key_DESC_NULLS_LAST", type_ASC = "type_ASC", type_ASC_NULLS_FIRST = "type_ASC_NULLS_FIRST", type_ASC_NULLS_LAST = "type_ASC_NULLS_LAST", type_DESC = "type_DESC", type_DESC_NULLS_FIRST = "type_DESC_NULLS_FIRST", type_DESC_NULLS_LAST = "type_DESC_NULLS_LAST", value_ASC = "value_ASC", value_ASC_NULLS_FIRST = "value_ASC_NULLS_FIRST", value_ASC_NULLS_LAST = "value_ASC_NULLS_LAST", value_DESC = "value_DESC", value_DESC_NULLS_FIRST = "value_DESC_NULLS_FIRST", value_DESC_NULLS_LAST = "value_DESC_NULLS_LAST" } export declare enum OnChainSettingType { bool = "bool", bytes32 = "bytes32", string = "string", uint = "uint" } export interface OnChainSettingWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; key_contains?: InputMaybe; key_containsInsensitive?: InputMaybe; key_endsWith?: InputMaybe; key_eq?: InputMaybe; key_gt?: InputMaybe; key_gte?: InputMaybe; key_in?: InputMaybe>; key_isNull?: InputMaybe; key_lt?: InputMaybe; key_lte?: InputMaybe; key_not_contains?: InputMaybe; key_not_containsInsensitive?: InputMaybe; key_not_endsWith?: InputMaybe; key_not_eq?: InputMaybe; key_not_in?: InputMaybe>; key_not_startsWith?: InputMaybe; key_startsWith?: InputMaybe; type_eq?: InputMaybe; type_in?: InputMaybe>; type_isNull?: InputMaybe; type_not_eq?: InputMaybe; type_not_in?: InputMaybe>; value_contains?: InputMaybe; value_containsInsensitive?: InputMaybe; value_endsWith?: InputMaybe; value_eq?: InputMaybe; value_gt?: InputMaybe; value_gte?: InputMaybe; value_in?: InputMaybe>; value_isNull?: InputMaybe; value_lt?: InputMaybe; value_lte?: InputMaybe; value_not_contains?: InputMaybe; value_not_containsInsensitive?: InputMaybe; value_not_endsWith?: InputMaybe; value_not_eq?: InputMaybe; value_not_in?: InputMaybe>; value_not_startsWith?: InputMaybe; value_startsWith?: InputMaybe; } export interface OnChainSettingsConnection { __typename?: "OnChainSettingsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface Order { __typename?: "Order"; acceptablePrice: Scalars["BigInt"]["output"]; account: Scalars["String"]["output"]; callbackContract: Scalars["String"]["output"]; callbackGasLimit: Scalars["BigInt"]["output"]; cancelledReason?: Maybe; cancelledReasonBytes?: Maybe; cancelledTxnHash?: Maybe; createdTxnHash: Scalars["String"]["output"]; decreasePositionSwapType: Scalars["Int"]["output"]; executedTxnHash?: Maybe; executionFee: Scalars["BigInt"]["output"]; frozenReason?: Maybe; frozenReasonBytes?: Maybe; id: Scalars["String"]["output"]; initialCollateralDeltaAmount: Scalars["BigInt"]["output"]; initialCollateralTokenAddress: Scalars["String"]["output"]; isLong: Scalars["Boolean"]["output"]; marketAddress: Scalars["String"]["output"]; minOutputAmount: Scalars["BigInt"]["output"]; numberOfParts?: Maybe; orderType: Scalars["Int"]["output"]; receiver: Scalars["String"]["output"]; shouldUnwrapNativeToken: Scalars["Boolean"]["output"]; sizeDeltaUsd: Scalars["BigInt"]["output"]; srcChainId?: Maybe; status: OrderStatus; swapPath: Array; triggerPrice: Scalars["BigInt"]["output"]; twapGroupId?: Maybe; uiFeeReceiver: Scalars["String"]["output"]; updatedAtBlock: Scalars["BigInt"]["output"]; } export interface OrderEdge { __typename?: "OrderEdge"; cursor: Scalars["String"]["output"]; node: Order; } export declare enum OrderOrderByInput { acceptablePrice_ASC = "acceptablePrice_ASC", acceptablePrice_ASC_NULLS_FIRST = "acceptablePrice_ASC_NULLS_FIRST", acceptablePrice_ASC_NULLS_LAST = "acceptablePrice_ASC_NULLS_LAST", acceptablePrice_DESC = "acceptablePrice_DESC", acceptablePrice_DESC_NULLS_FIRST = "acceptablePrice_DESC_NULLS_FIRST", acceptablePrice_DESC_NULLS_LAST = "acceptablePrice_DESC_NULLS_LAST", account_ASC = "account_ASC", account_ASC_NULLS_FIRST = "account_ASC_NULLS_FIRST", account_ASC_NULLS_LAST = "account_ASC_NULLS_LAST", account_DESC = "account_DESC", account_DESC_NULLS_FIRST = "account_DESC_NULLS_FIRST", account_DESC_NULLS_LAST = "account_DESC_NULLS_LAST", callbackContract_ASC = "callbackContract_ASC", callbackContract_ASC_NULLS_FIRST = "callbackContract_ASC_NULLS_FIRST", callbackContract_ASC_NULLS_LAST = "callbackContract_ASC_NULLS_LAST", callbackContract_DESC = "callbackContract_DESC", callbackContract_DESC_NULLS_FIRST = "callbackContract_DESC_NULLS_FIRST", callbackContract_DESC_NULLS_LAST = "callbackContract_DESC_NULLS_LAST", callbackGasLimit_ASC = "callbackGasLimit_ASC", callbackGasLimit_ASC_NULLS_FIRST = "callbackGasLimit_ASC_NULLS_FIRST", callbackGasLimit_ASC_NULLS_LAST = "callbackGasLimit_ASC_NULLS_LAST", callbackGasLimit_DESC = "callbackGasLimit_DESC", callbackGasLimit_DESC_NULLS_FIRST = "callbackGasLimit_DESC_NULLS_FIRST", callbackGasLimit_DESC_NULLS_LAST = "callbackGasLimit_DESC_NULLS_LAST", cancelledReasonBytes_ASC = "cancelledReasonBytes_ASC", cancelledReasonBytes_ASC_NULLS_FIRST = "cancelledReasonBytes_ASC_NULLS_FIRST", cancelledReasonBytes_ASC_NULLS_LAST = "cancelledReasonBytes_ASC_NULLS_LAST", cancelledReasonBytes_DESC = "cancelledReasonBytes_DESC", cancelledReasonBytes_DESC_NULLS_FIRST = "cancelledReasonBytes_DESC_NULLS_FIRST", cancelledReasonBytes_DESC_NULLS_LAST = "cancelledReasonBytes_DESC_NULLS_LAST", cancelledReason_ASC = "cancelledReason_ASC", cancelledReason_ASC_NULLS_FIRST = "cancelledReason_ASC_NULLS_FIRST", cancelledReason_ASC_NULLS_LAST = "cancelledReason_ASC_NULLS_LAST", cancelledReason_DESC = "cancelledReason_DESC", cancelledReason_DESC_NULLS_FIRST = "cancelledReason_DESC_NULLS_FIRST", cancelledReason_DESC_NULLS_LAST = "cancelledReason_DESC_NULLS_LAST", cancelledTxnHash_ASC = "cancelledTxnHash_ASC", cancelledTxnHash_ASC_NULLS_FIRST = "cancelledTxnHash_ASC_NULLS_FIRST", cancelledTxnHash_ASC_NULLS_LAST = "cancelledTxnHash_ASC_NULLS_LAST", cancelledTxnHash_DESC = "cancelledTxnHash_DESC", cancelledTxnHash_DESC_NULLS_FIRST = "cancelledTxnHash_DESC_NULLS_FIRST", cancelledTxnHash_DESC_NULLS_LAST = "cancelledTxnHash_DESC_NULLS_LAST", createdTxnHash_ASC = "createdTxnHash_ASC", createdTxnHash_ASC_NULLS_FIRST = "createdTxnHash_ASC_NULLS_FIRST", createdTxnHash_ASC_NULLS_LAST = "createdTxnHash_ASC_NULLS_LAST", createdTxnHash_DESC = "createdTxnHash_DESC", createdTxnHash_DESC_NULLS_FIRST = "createdTxnHash_DESC_NULLS_FIRST", createdTxnHash_DESC_NULLS_LAST = "createdTxnHash_DESC_NULLS_LAST", decreasePositionSwapType_ASC = "decreasePositionSwapType_ASC", decreasePositionSwapType_ASC_NULLS_FIRST = "decreasePositionSwapType_ASC_NULLS_FIRST", decreasePositionSwapType_ASC_NULLS_LAST = "decreasePositionSwapType_ASC_NULLS_LAST", decreasePositionSwapType_DESC = "decreasePositionSwapType_DESC", decreasePositionSwapType_DESC_NULLS_FIRST = "decreasePositionSwapType_DESC_NULLS_FIRST", decreasePositionSwapType_DESC_NULLS_LAST = "decreasePositionSwapType_DESC_NULLS_LAST", executedTxnHash_ASC = "executedTxnHash_ASC", executedTxnHash_ASC_NULLS_FIRST = "executedTxnHash_ASC_NULLS_FIRST", executedTxnHash_ASC_NULLS_LAST = "executedTxnHash_ASC_NULLS_LAST", executedTxnHash_DESC = "executedTxnHash_DESC", executedTxnHash_DESC_NULLS_FIRST = "executedTxnHash_DESC_NULLS_FIRST", executedTxnHash_DESC_NULLS_LAST = "executedTxnHash_DESC_NULLS_LAST", executionFee_ASC = "executionFee_ASC", executionFee_ASC_NULLS_FIRST = "executionFee_ASC_NULLS_FIRST", executionFee_ASC_NULLS_LAST = "executionFee_ASC_NULLS_LAST", executionFee_DESC = "executionFee_DESC", executionFee_DESC_NULLS_FIRST = "executionFee_DESC_NULLS_FIRST", executionFee_DESC_NULLS_LAST = "executionFee_DESC_NULLS_LAST", frozenReasonBytes_ASC = "frozenReasonBytes_ASC", frozenReasonBytes_ASC_NULLS_FIRST = "frozenReasonBytes_ASC_NULLS_FIRST", frozenReasonBytes_ASC_NULLS_LAST = "frozenReasonBytes_ASC_NULLS_LAST", frozenReasonBytes_DESC = "frozenReasonBytes_DESC", frozenReasonBytes_DESC_NULLS_FIRST = "frozenReasonBytes_DESC_NULLS_FIRST", frozenReasonBytes_DESC_NULLS_LAST = "frozenReasonBytes_DESC_NULLS_LAST", frozenReason_ASC = "frozenReason_ASC", frozenReason_ASC_NULLS_FIRST = "frozenReason_ASC_NULLS_FIRST", frozenReason_ASC_NULLS_LAST = "frozenReason_ASC_NULLS_LAST", frozenReason_DESC = "frozenReason_DESC", frozenReason_DESC_NULLS_FIRST = "frozenReason_DESC_NULLS_FIRST", frozenReason_DESC_NULLS_LAST = "frozenReason_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", initialCollateralDeltaAmount_ASC = "initialCollateralDeltaAmount_ASC", initialCollateralDeltaAmount_ASC_NULLS_FIRST = "initialCollateralDeltaAmount_ASC_NULLS_FIRST", initialCollateralDeltaAmount_ASC_NULLS_LAST = "initialCollateralDeltaAmount_ASC_NULLS_LAST", initialCollateralDeltaAmount_DESC = "initialCollateralDeltaAmount_DESC", initialCollateralDeltaAmount_DESC_NULLS_FIRST = "initialCollateralDeltaAmount_DESC_NULLS_FIRST", initialCollateralDeltaAmount_DESC_NULLS_LAST = "initialCollateralDeltaAmount_DESC_NULLS_LAST", initialCollateralTokenAddress_ASC = "initialCollateralTokenAddress_ASC", initialCollateralTokenAddress_ASC_NULLS_FIRST = "initialCollateralTokenAddress_ASC_NULLS_FIRST", initialCollateralTokenAddress_ASC_NULLS_LAST = "initialCollateralTokenAddress_ASC_NULLS_LAST", initialCollateralTokenAddress_DESC = "initialCollateralTokenAddress_DESC", initialCollateralTokenAddress_DESC_NULLS_FIRST = "initialCollateralTokenAddress_DESC_NULLS_FIRST", initialCollateralTokenAddress_DESC_NULLS_LAST = "initialCollateralTokenAddress_DESC_NULLS_LAST", isLong_ASC = "isLong_ASC", isLong_ASC_NULLS_FIRST = "isLong_ASC_NULLS_FIRST", isLong_ASC_NULLS_LAST = "isLong_ASC_NULLS_LAST", isLong_DESC = "isLong_DESC", isLong_DESC_NULLS_FIRST = "isLong_DESC_NULLS_FIRST", isLong_DESC_NULLS_LAST = "isLong_DESC_NULLS_LAST", marketAddress_ASC = "marketAddress_ASC", marketAddress_ASC_NULLS_FIRST = "marketAddress_ASC_NULLS_FIRST", marketAddress_ASC_NULLS_LAST = "marketAddress_ASC_NULLS_LAST", marketAddress_DESC = "marketAddress_DESC", marketAddress_DESC_NULLS_FIRST = "marketAddress_DESC_NULLS_FIRST", marketAddress_DESC_NULLS_LAST = "marketAddress_DESC_NULLS_LAST", minOutputAmount_ASC = "minOutputAmount_ASC", minOutputAmount_ASC_NULLS_FIRST = "minOutputAmount_ASC_NULLS_FIRST", minOutputAmount_ASC_NULLS_LAST = "minOutputAmount_ASC_NULLS_LAST", minOutputAmount_DESC = "minOutputAmount_DESC", minOutputAmount_DESC_NULLS_FIRST = "minOutputAmount_DESC_NULLS_FIRST", minOutputAmount_DESC_NULLS_LAST = "minOutputAmount_DESC_NULLS_LAST", numberOfParts_ASC = "numberOfParts_ASC", numberOfParts_ASC_NULLS_FIRST = "numberOfParts_ASC_NULLS_FIRST", numberOfParts_ASC_NULLS_LAST = "numberOfParts_ASC_NULLS_LAST", numberOfParts_DESC = "numberOfParts_DESC", numberOfParts_DESC_NULLS_FIRST = "numberOfParts_DESC_NULLS_FIRST", numberOfParts_DESC_NULLS_LAST = "numberOfParts_DESC_NULLS_LAST", orderType_ASC = "orderType_ASC", orderType_ASC_NULLS_FIRST = "orderType_ASC_NULLS_FIRST", orderType_ASC_NULLS_LAST = "orderType_ASC_NULLS_LAST", orderType_DESC = "orderType_DESC", orderType_DESC_NULLS_FIRST = "orderType_DESC_NULLS_FIRST", orderType_DESC_NULLS_LAST = "orderType_DESC_NULLS_LAST", receiver_ASC = "receiver_ASC", receiver_ASC_NULLS_FIRST = "receiver_ASC_NULLS_FIRST", receiver_ASC_NULLS_LAST = "receiver_ASC_NULLS_LAST", receiver_DESC = "receiver_DESC", receiver_DESC_NULLS_FIRST = "receiver_DESC_NULLS_FIRST", receiver_DESC_NULLS_LAST = "receiver_DESC_NULLS_LAST", shouldUnwrapNativeToken_ASC = "shouldUnwrapNativeToken_ASC", shouldUnwrapNativeToken_ASC_NULLS_FIRST = "shouldUnwrapNativeToken_ASC_NULLS_FIRST", shouldUnwrapNativeToken_ASC_NULLS_LAST = "shouldUnwrapNativeToken_ASC_NULLS_LAST", shouldUnwrapNativeToken_DESC = "shouldUnwrapNativeToken_DESC", shouldUnwrapNativeToken_DESC_NULLS_FIRST = "shouldUnwrapNativeToken_DESC_NULLS_FIRST", shouldUnwrapNativeToken_DESC_NULLS_LAST = "shouldUnwrapNativeToken_DESC_NULLS_LAST", sizeDeltaUsd_ASC = "sizeDeltaUsd_ASC", sizeDeltaUsd_ASC_NULLS_FIRST = "sizeDeltaUsd_ASC_NULLS_FIRST", sizeDeltaUsd_ASC_NULLS_LAST = "sizeDeltaUsd_ASC_NULLS_LAST", sizeDeltaUsd_DESC = "sizeDeltaUsd_DESC", sizeDeltaUsd_DESC_NULLS_FIRST = "sizeDeltaUsd_DESC_NULLS_FIRST", sizeDeltaUsd_DESC_NULLS_LAST = "sizeDeltaUsd_DESC_NULLS_LAST", srcChainId_ASC = "srcChainId_ASC", srcChainId_ASC_NULLS_FIRST = "srcChainId_ASC_NULLS_FIRST", srcChainId_ASC_NULLS_LAST = "srcChainId_ASC_NULLS_LAST", srcChainId_DESC = "srcChainId_DESC", srcChainId_DESC_NULLS_FIRST = "srcChainId_DESC_NULLS_FIRST", srcChainId_DESC_NULLS_LAST = "srcChainId_DESC_NULLS_LAST", status_ASC = "status_ASC", status_ASC_NULLS_FIRST = "status_ASC_NULLS_FIRST", status_ASC_NULLS_LAST = "status_ASC_NULLS_LAST", status_DESC = "status_DESC", status_DESC_NULLS_FIRST = "status_DESC_NULLS_FIRST", status_DESC_NULLS_LAST = "status_DESC_NULLS_LAST", triggerPrice_ASC = "triggerPrice_ASC", triggerPrice_ASC_NULLS_FIRST = "triggerPrice_ASC_NULLS_FIRST", triggerPrice_ASC_NULLS_LAST = "triggerPrice_ASC_NULLS_LAST", triggerPrice_DESC = "triggerPrice_DESC", triggerPrice_DESC_NULLS_FIRST = "triggerPrice_DESC_NULLS_FIRST", triggerPrice_DESC_NULLS_LAST = "triggerPrice_DESC_NULLS_LAST", twapGroupId_ASC = "twapGroupId_ASC", twapGroupId_ASC_NULLS_FIRST = "twapGroupId_ASC_NULLS_FIRST", twapGroupId_ASC_NULLS_LAST = "twapGroupId_ASC_NULLS_LAST", twapGroupId_DESC = "twapGroupId_DESC", twapGroupId_DESC_NULLS_FIRST = "twapGroupId_DESC_NULLS_FIRST", twapGroupId_DESC_NULLS_LAST = "twapGroupId_DESC_NULLS_LAST", uiFeeReceiver_ASC = "uiFeeReceiver_ASC", uiFeeReceiver_ASC_NULLS_FIRST = "uiFeeReceiver_ASC_NULLS_FIRST", uiFeeReceiver_ASC_NULLS_LAST = "uiFeeReceiver_ASC_NULLS_LAST", uiFeeReceiver_DESC = "uiFeeReceiver_DESC", uiFeeReceiver_DESC_NULLS_FIRST = "uiFeeReceiver_DESC_NULLS_FIRST", uiFeeReceiver_DESC_NULLS_LAST = "uiFeeReceiver_DESC_NULLS_LAST", updatedAtBlock_ASC = "updatedAtBlock_ASC", updatedAtBlock_ASC_NULLS_FIRST = "updatedAtBlock_ASC_NULLS_FIRST", updatedAtBlock_ASC_NULLS_LAST = "updatedAtBlock_ASC_NULLS_LAST", updatedAtBlock_DESC = "updatedAtBlock_DESC", updatedAtBlock_DESC_NULLS_FIRST = "updatedAtBlock_DESC_NULLS_FIRST", updatedAtBlock_DESC_NULLS_LAST = "updatedAtBlock_DESC_NULLS_LAST" } export declare enum OrderStatus { Cancelled = "Cancelled", Created = "Created", Executed = "Executed", Frozen = "Frozen" } export interface OrderWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; acceptablePrice_eq?: InputMaybe; acceptablePrice_gt?: InputMaybe; acceptablePrice_gte?: InputMaybe; acceptablePrice_in?: InputMaybe>; acceptablePrice_isNull?: InputMaybe; acceptablePrice_lt?: InputMaybe; acceptablePrice_lte?: InputMaybe; acceptablePrice_not_eq?: InputMaybe; acceptablePrice_not_in?: InputMaybe>; account_contains?: InputMaybe; account_containsInsensitive?: InputMaybe; account_endsWith?: InputMaybe; account_eq?: InputMaybe; account_gt?: InputMaybe; account_gte?: InputMaybe; account_in?: InputMaybe>; account_isNull?: InputMaybe; account_lt?: InputMaybe; account_lte?: InputMaybe; account_not_contains?: InputMaybe; account_not_containsInsensitive?: InputMaybe; account_not_endsWith?: InputMaybe; account_not_eq?: InputMaybe; account_not_in?: InputMaybe>; account_not_startsWith?: InputMaybe; account_startsWith?: InputMaybe; callbackContract_contains?: InputMaybe; callbackContract_containsInsensitive?: InputMaybe; callbackContract_endsWith?: InputMaybe; callbackContract_eq?: InputMaybe; callbackContract_gt?: InputMaybe; callbackContract_gte?: InputMaybe; callbackContract_in?: InputMaybe>; callbackContract_isNull?: InputMaybe; callbackContract_lt?: InputMaybe; callbackContract_lte?: InputMaybe; callbackContract_not_contains?: InputMaybe; callbackContract_not_containsInsensitive?: InputMaybe; callbackContract_not_endsWith?: InputMaybe; callbackContract_not_eq?: InputMaybe; callbackContract_not_in?: InputMaybe>; callbackContract_not_startsWith?: InputMaybe; callbackContract_startsWith?: InputMaybe; callbackGasLimit_eq?: InputMaybe; callbackGasLimit_gt?: InputMaybe; callbackGasLimit_gte?: InputMaybe; callbackGasLimit_in?: InputMaybe>; callbackGasLimit_isNull?: InputMaybe; callbackGasLimit_lt?: InputMaybe; callbackGasLimit_lte?: InputMaybe; callbackGasLimit_not_eq?: InputMaybe; callbackGasLimit_not_in?: InputMaybe>; cancelledReasonBytes_contains?: InputMaybe; cancelledReasonBytes_containsInsensitive?: InputMaybe; cancelledReasonBytes_endsWith?: InputMaybe; cancelledReasonBytes_eq?: InputMaybe; cancelledReasonBytes_gt?: InputMaybe; cancelledReasonBytes_gte?: InputMaybe; cancelledReasonBytes_in?: InputMaybe>; cancelledReasonBytes_isNull?: InputMaybe; cancelledReasonBytes_lt?: InputMaybe; cancelledReasonBytes_lte?: InputMaybe; cancelledReasonBytes_not_contains?: InputMaybe; cancelledReasonBytes_not_containsInsensitive?: InputMaybe; cancelledReasonBytes_not_endsWith?: InputMaybe; cancelledReasonBytes_not_eq?: InputMaybe; cancelledReasonBytes_not_in?: InputMaybe>; cancelledReasonBytes_not_startsWith?: InputMaybe; cancelledReasonBytes_startsWith?: InputMaybe; cancelledReason_contains?: InputMaybe; cancelledReason_containsInsensitive?: InputMaybe; cancelledReason_endsWith?: InputMaybe; cancelledReason_eq?: InputMaybe; cancelledReason_gt?: InputMaybe; cancelledReason_gte?: InputMaybe; cancelledReason_in?: InputMaybe>; cancelledReason_isNull?: InputMaybe; cancelledReason_lt?: InputMaybe; cancelledReason_lte?: InputMaybe; cancelledReason_not_contains?: InputMaybe; cancelledReason_not_containsInsensitive?: InputMaybe; cancelledReason_not_endsWith?: InputMaybe; cancelledReason_not_eq?: InputMaybe; cancelledReason_not_in?: InputMaybe>; cancelledReason_not_startsWith?: InputMaybe; cancelledReason_startsWith?: InputMaybe; cancelledTxnHash_contains?: InputMaybe; cancelledTxnHash_containsInsensitive?: InputMaybe; cancelledTxnHash_endsWith?: InputMaybe; cancelledTxnHash_eq?: InputMaybe; cancelledTxnHash_gt?: InputMaybe; cancelledTxnHash_gte?: InputMaybe; cancelledTxnHash_in?: InputMaybe>; cancelledTxnHash_isNull?: InputMaybe; cancelledTxnHash_lt?: InputMaybe; cancelledTxnHash_lte?: InputMaybe; cancelledTxnHash_not_contains?: InputMaybe; cancelledTxnHash_not_containsInsensitive?: InputMaybe; cancelledTxnHash_not_endsWith?: InputMaybe; cancelledTxnHash_not_eq?: InputMaybe; cancelledTxnHash_not_in?: InputMaybe>; cancelledTxnHash_not_startsWith?: InputMaybe; cancelledTxnHash_startsWith?: InputMaybe; createdTxnHash_contains?: InputMaybe; createdTxnHash_containsInsensitive?: InputMaybe; createdTxnHash_endsWith?: InputMaybe; createdTxnHash_eq?: InputMaybe; createdTxnHash_gt?: InputMaybe; createdTxnHash_gte?: InputMaybe; createdTxnHash_in?: InputMaybe>; createdTxnHash_isNull?: InputMaybe; createdTxnHash_lt?: InputMaybe; createdTxnHash_lte?: InputMaybe; createdTxnHash_not_contains?: InputMaybe; createdTxnHash_not_containsInsensitive?: InputMaybe; createdTxnHash_not_endsWith?: InputMaybe; createdTxnHash_not_eq?: InputMaybe; createdTxnHash_not_in?: InputMaybe>; createdTxnHash_not_startsWith?: InputMaybe; createdTxnHash_startsWith?: InputMaybe; decreasePositionSwapType_eq?: InputMaybe; decreasePositionSwapType_gt?: InputMaybe; decreasePositionSwapType_gte?: InputMaybe; decreasePositionSwapType_in?: InputMaybe>; decreasePositionSwapType_isNull?: InputMaybe; decreasePositionSwapType_lt?: InputMaybe; decreasePositionSwapType_lte?: InputMaybe; decreasePositionSwapType_not_eq?: InputMaybe; decreasePositionSwapType_not_in?: InputMaybe>; executedTxnHash_contains?: InputMaybe; executedTxnHash_containsInsensitive?: InputMaybe; executedTxnHash_endsWith?: InputMaybe; executedTxnHash_eq?: InputMaybe; executedTxnHash_gt?: InputMaybe; executedTxnHash_gte?: InputMaybe; executedTxnHash_in?: InputMaybe>; executedTxnHash_isNull?: InputMaybe; executedTxnHash_lt?: InputMaybe; executedTxnHash_lte?: InputMaybe; executedTxnHash_not_contains?: InputMaybe; executedTxnHash_not_containsInsensitive?: InputMaybe; executedTxnHash_not_endsWith?: InputMaybe; executedTxnHash_not_eq?: InputMaybe; executedTxnHash_not_in?: InputMaybe>; executedTxnHash_not_startsWith?: InputMaybe; executedTxnHash_startsWith?: InputMaybe; executionFee_eq?: InputMaybe; executionFee_gt?: InputMaybe; executionFee_gte?: InputMaybe; executionFee_in?: InputMaybe>; executionFee_isNull?: InputMaybe; executionFee_lt?: InputMaybe; executionFee_lte?: InputMaybe; executionFee_not_eq?: InputMaybe; executionFee_not_in?: InputMaybe>; frozenReasonBytes_contains?: InputMaybe; frozenReasonBytes_containsInsensitive?: InputMaybe; frozenReasonBytes_endsWith?: InputMaybe; frozenReasonBytes_eq?: InputMaybe; frozenReasonBytes_gt?: InputMaybe; frozenReasonBytes_gte?: InputMaybe; frozenReasonBytes_in?: InputMaybe>; frozenReasonBytes_isNull?: InputMaybe; frozenReasonBytes_lt?: InputMaybe; frozenReasonBytes_lte?: InputMaybe; frozenReasonBytes_not_contains?: InputMaybe; frozenReasonBytes_not_containsInsensitive?: InputMaybe; frozenReasonBytes_not_endsWith?: InputMaybe; frozenReasonBytes_not_eq?: InputMaybe; frozenReasonBytes_not_in?: InputMaybe>; frozenReasonBytes_not_startsWith?: InputMaybe; frozenReasonBytes_startsWith?: InputMaybe; frozenReason_contains?: InputMaybe; frozenReason_containsInsensitive?: InputMaybe; frozenReason_endsWith?: InputMaybe; frozenReason_eq?: InputMaybe; frozenReason_gt?: InputMaybe; frozenReason_gte?: InputMaybe; frozenReason_in?: InputMaybe>; frozenReason_isNull?: InputMaybe; frozenReason_lt?: InputMaybe; frozenReason_lte?: InputMaybe; frozenReason_not_contains?: InputMaybe; frozenReason_not_containsInsensitive?: InputMaybe; frozenReason_not_endsWith?: InputMaybe; frozenReason_not_eq?: InputMaybe; frozenReason_not_in?: InputMaybe>; frozenReason_not_startsWith?: InputMaybe; frozenReason_startsWith?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; initialCollateralDeltaAmount_eq?: InputMaybe; initialCollateralDeltaAmount_gt?: InputMaybe; initialCollateralDeltaAmount_gte?: InputMaybe; initialCollateralDeltaAmount_in?: InputMaybe>; initialCollateralDeltaAmount_isNull?: InputMaybe; initialCollateralDeltaAmount_lt?: InputMaybe; initialCollateralDeltaAmount_lte?: InputMaybe; initialCollateralDeltaAmount_not_eq?: InputMaybe; initialCollateralDeltaAmount_not_in?: InputMaybe>; initialCollateralTokenAddress_contains?: InputMaybe; initialCollateralTokenAddress_containsInsensitive?: InputMaybe; initialCollateralTokenAddress_endsWith?: InputMaybe; initialCollateralTokenAddress_eq?: InputMaybe; initialCollateralTokenAddress_gt?: InputMaybe; initialCollateralTokenAddress_gte?: InputMaybe; initialCollateralTokenAddress_in?: InputMaybe>; initialCollateralTokenAddress_isNull?: InputMaybe; initialCollateralTokenAddress_lt?: InputMaybe; initialCollateralTokenAddress_lte?: InputMaybe; initialCollateralTokenAddress_not_contains?: InputMaybe; initialCollateralTokenAddress_not_containsInsensitive?: InputMaybe; initialCollateralTokenAddress_not_endsWith?: InputMaybe; initialCollateralTokenAddress_not_eq?: InputMaybe; initialCollateralTokenAddress_not_in?: InputMaybe>; initialCollateralTokenAddress_not_startsWith?: InputMaybe; initialCollateralTokenAddress_startsWith?: InputMaybe; isLong_eq?: InputMaybe; isLong_isNull?: InputMaybe; isLong_not_eq?: InputMaybe; marketAddress_contains?: InputMaybe; marketAddress_containsInsensitive?: InputMaybe; marketAddress_endsWith?: InputMaybe; marketAddress_eq?: InputMaybe; marketAddress_gt?: InputMaybe; marketAddress_gte?: InputMaybe; marketAddress_in?: InputMaybe>; marketAddress_isNull?: InputMaybe; marketAddress_lt?: InputMaybe; marketAddress_lte?: InputMaybe; marketAddress_not_contains?: InputMaybe; marketAddress_not_containsInsensitive?: InputMaybe; marketAddress_not_endsWith?: InputMaybe; marketAddress_not_eq?: InputMaybe; marketAddress_not_in?: InputMaybe>; marketAddress_not_startsWith?: InputMaybe; marketAddress_startsWith?: InputMaybe; minOutputAmount_eq?: InputMaybe; minOutputAmount_gt?: InputMaybe; minOutputAmount_gte?: InputMaybe; minOutputAmount_in?: InputMaybe>; minOutputAmount_isNull?: InputMaybe; minOutputAmount_lt?: InputMaybe; minOutputAmount_lte?: InputMaybe; minOutputAmount_not_eq?: InputMaybe; minOutputAmount_not_in?: InputMaybe>; numberOfParts_eq?: InputMaybe; numberOfParts_gt?: InputMaybe; numberOfParts_gte?: InputMaybe; numberOfParts_in?: InputMaybe>; numberOfParts_isNull?: InputMaybe; numberOfParts_lt?: InputMaybe; numberOfParts_lte?: InputMaybe; numberOfParts_not_eq?: InputMaybe; numberOfParts_not_in?: InputMaybe>; orderType_eq?: InputMaybe; orderType_gt?: InputMaybe; orderType_gte?: InputMaybe; orderType_in?: InputMaybe>; orderType_isNull?: InputMaybe; orderType_lt?: InputMaybe; orderType_lte?: InputMaybe; orderType_not_eq?: InputMaybe; orderType_not_in?: InputMaybe>; receiver_contains?: InputMaybe; receiver_containsInsensitive?: InputMaybe; receiver_endsWith?: InputMaybe; receiver_eq?: InputMaybe; receiver_gt?: InputMaybe; receiver_gte?: InputMaybe; receiver_in?: InputMaybe>; receiver_isNull?: InputMaybe; receiver_lt?: InputMaybe; receiver_lte?: InputMaybe; receiver_not_contains?: InputMaybe; receiver_not_containsInsensitive?: InputMaybe; receiver_not_endsWith?: InputMaybe; receiver_not_eq?: InputMaybe; receiver_not_in?: InputMaybe>; receiver_not_startsWith?: InputMaybe; receiver_startsWith?: InputMaybe; shouldUnwrapNativeToken_eq?: InputMaybe; shouldUnwrapNativeToken_isNull?: InputMaybe; shouldUnwrapNativeToken_not_eq?: InputMaybe; sizeDeltaUsd_eq?: InputMaybe; sizeDeltaUsd_gt?: InputMaybe; sizeDeltaUsd_gte?: InputMaybe; sizeDeltaUsd_in?: InputMaybe>; sizeDeltaUsd_isNull?: InputMaybe; sizeDeltaUsd_lt?: InputMaybe; sizeDeltaUsd_lte?: InputMaybe; sizeDeltaUsd_not_eq?: InputMaybe; sizeDeltaUsd_not_in?: InputMaybe>; srcChainId_eq?: InputMaybe; srcChainId_gt?: InputMaybe; srcChainId_gte?: InputMaybe; srcChainId_in?: InputMaybe>; srcChainId_isNull?: InputMaybe; srcChainId_lt?: InputMaybe; srcChainId_lte?: InputMaybe; srcChainId_not_eq?: InputMaybe; srcChainId_not_in?: InputMaybe>; status_eq?: InputMaybe; status_in?: InputMaybe>; status_isNull?: InputMaybe; status_not_eq?: InputMaybe; status_not_in?: InputMaybe>; swapPath_containsAll?: InputMaybe>; swapPath_containsAny?: InputMaybe>; swapPath_containsNone?: InputMaybe>; swapPath_isNull?: InputMaybe; triggerPrice_eq?: InputMaybe; triggerPrice_gt?: InputMaybe; triggerPrice_gte?: InputMaybe; triggerPrice_in?: InputMaybe>; triggerPrice_isNull?: InputMaybe; triggerPrice_lt?: InputMaybe; triggerPrice_lte?: InputMaybe; triggerPrice_not_eq?: InputMaybe; triggerPrice_not_in?: InputMaybe>; twapGroupId_contains?: InputMaybe; twapGroupId_containsInsensitive?: InputMaybe; twapGroupId_endsWith?: InputMaybe; twapGroupId_eq?: InputMaybe; twapGroupId_gt?: InputMaybe; twapGroupId_gte?: InputMaybe; twapGroupId_in?: InputMaybe>; twapGroupId_isNull?: InputMaybe; twapGroupId_lt?: InputMaybe; twapGroupId_lte?: InputMaybe; twapGroupId_not_contains?: InputMaybe; twapGroupId_not_containsInsensitive?: InputMaybe; twapGroupId_not_endsWith?: InputMaybe; twapGroupId_not_eq?: InputMaybe; twapGroupId_not_in?: InputMaybe>; twapGroupId_not_startsWith?: InputMaybe; twapGroupId_startsWith?: InputMaybe; uiFeeReceiver_contains?: InputMaybe; uiFeeReceiver_containsInsensitive?: InputMaybe; uiFeeReceiver_endsWith?: InputMaybe; uiFeeReceiver_eq?: InputMaybe; uiFeeReceiver_gt?: InputMaybe; uiFeeReceiver_gte?: InputMaybe; uiFeeReceiver_in?: InputMaybe>; uiFeeReceiver_isNull?: InputMaybe; uiFeeReceiver_lt?: InputMaybe; uiFeeReceiver_lte?: InputMaybe; uiFeeReceiver_not_contains?: InputMaybe; uiFeeReceiver_not_containsInsensitive?: InputMaybe; uiFeeReceiver_not_endsWith?: InputMaybe; uiFeeReceiver_not_eq?: InputMaybe; uiFeeReceiver_not_in?: InputMaybe>; uiFeeReceiver_not_startsWith?: InputMaybe; uiFeeReceiver_startsWith?: InputMaybe; updatedAtBlock_eq?: InputMaybe; updatedAtBlock_gt?: InputMaybe; updatedAtBlock_gte?: InputMaybe; updatedAtBlock_in?: InputMaybe>; updatedAtBlock_isNull?: InputMaybe; updatedAtBlock_lt?: InputMaybe; updatedAtBlock_lte?: InputMaybe; updatedAtBlock_not_eq?: InputMaybe; updatedAtBlock_not_in?: InputMaybe>; } export interface OrdersConnection { __typename?: "OrdersConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface PageInfo { __typename?: "PageInfo"; endCursor: Scalars["String"]["output"]; hasNextPage: Scalars["Boolean"]["output"]; hasPreviousPage: Scalars["Boolean"]["output"]; startCursor: Scalars["String"]["output"]; } export interface PerformanceSnapshotObject { __typename?: "PerformanceSnapshotObject"; snapshotTimestamp: Scalars["String"]["output"]; uniswapV2Performance: Scalars["String"]["output"]; } export interface PerformanceSnapshots { __typename?: "PerformanceSnapshots"; address: Scalars["String"]["output"]; entity: Scalars["String"]["output"]; snapshots: Array; } export interface PerformanceWhereInput { addresses?: InputMaybe>; period: Scalars["String"]["input"]; } export interface PeriodAccountStatObject { __typename?: "PeriodAccountStatObject"; closedCount: Scalars["Float"]["output"]; cumsumCollateral: Scalars["BigInt"]["output"]; cumsumSize: Scalars["BigInt"]["output"]; id: Scalars["ID"]["output"]; losses: Scalars["Float"]["output"]; maxCapital: Scalars["BigInt"]["output"]; netCapital: Scalars["BigInt"]["output"]; realizedFees: Scalars["BigInt"]["output"]; realizedPnl: Scalars["BigInt"]["output"]; realizedPriceImpact: Scalars["BigInt"]["output"]; realizedSwapImpact: Scalars["BigInt"]["output"]; startUnrealizedFees: Scalars["BigInt"]["output"]; startUnrealizedPnl: Scalars["BigInt"]["output"]; startUnrealizedPriceImpact: Scalars["BigInt"]["output"]; sumMaxSize: Scalars["BigInt"]["output"]; volume: Scalars["BigInt"]["output"]; wins: Scalars["Float"]["output"]; } export interface PlatformStats { __typename?: "PlatformStats"; depositedUsers: Scalars["Int"]["output"]; id: Scalars["String"]["output"]; tradedUsers: Scalars["Int"]["output"]; volume: Scalars["BigInt"]["output"]; } export interface PlatformStatsConnection { __typename?: "PlatformStatsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface PlatformStatsEdge { __typename?: "PlatformStatsEdge"; cursor: Scalars["String"]["output"]; node: PlatformStats; } export declare enum PlatformStatsOrderByInput { depositedUsers_ASC = "depositedUsers_ASC", depositedUsers_ASC_NULLS_FIRST = "depositedUsers_ASC_NULLS_FIRST", depositedUsers_ASC_NULLS_LAST = "depositedUsers_ASC_NULLS_LAST", depositedUsers_DESC = "depositedUsers_DESC", depositedUsers_DESC_NULLS_FIRST = "depositedUsers_DESC_NULLS_FIRST", depositedUsers_DESC_NULLS_LAST = "depositedUsers_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", tradedUsers_ASC = "tradedUsers_ASC", tradedUsers_ASC_NULLS_FIRST = "tradedUsers_ASC_NULLS_FIRST", tradedUsers_ASC_NULLS_LAST = "tradedUsers_ASC_NULLS_LAST", tradedUsers_DESC = "tradedUsers_DESC", tradedUsers_DESC_NULLS_FIRST = "tradedUsers_DESC_NULLS_FIRST", tradedUsers_DESC_NULLS_LAST = "tradedUsers_DESC_NULLS_LAST", volume_ASC = "volume_ASC", volume_ASC_NULLS_FIRST = "volume_ASC_NULLS_FIRST", volume_ASC_NULLS_LAST = "volume_ASC_NULLS_LAST", volume_DESC = "volume_DESC", volume_DESC_NULLS_FIRST = "volume_DESC_NULLS_FIRST", volume_DESC_NULLS_LAST = "volume_DESC_NULLS_LAST" } export interface PlatformStatsWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; depositedUsers_eq?: InputMaybe; depositedUsers_gt?: InputMaybe; depositedUsers_gte?: InputMaybe; depositedUsers_in?: InputMaybe>; depositedUsers_isNull?: InputMaybe; depositedUsers_lt?: InputMaybe; depositedUsers_lte?: InputMaybe; depositedUsers_not_eq?: InputMaybe; depositedUsers_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; tradedUsers_eq?: InputMaybe; tradedUsers_gt?: InputMaybe; tradedUsers_gte?: InputMaybe; tradedUsers_in?: InputMaybe>; tradedUsers_isNull?: InputMaybe; tradedUsers_lt?: InputMaybe; tradedUsers_lte?: InputMaybe; tradedUsers_not_eq?: InputMaybe; tradedUsers_not_in?: InputMaybe>; volume_eq?: InputMaybe; volume_gt?: InputMaybe; volume_gte?: InputMaybe; volume_in?: InputMaybe>; volume_isNull?: InputMaybe; volume_lt?: InputMaybe; volume_lte?: InputMaybe; volume_not_eq?: InputMaybe; volume_not_in?: InputMaybe>; } export interface PnlAprSnapshot { __typename?: "PnlAprSnapshot"; address: Scalars["String"]["output"]; apr: Scalars["BigInt"]["output"]; entityType: EntityType; id: Scalars["String"]["output"]; snapshotTimestamp: Scalars["Int"]["output"]; } export interface PnlAprSnapshotEdge { __typename?: "PnlAprSnapshotEdge"; cursor: Scalars["String"]["output"]; node: PnlAprSnapshot; } export declare enum PnlAprSnapshotOrderByInput { address_ASC = "address_ASC", address_ASC_NULLS_FIRST = "address_ASC_NULLS_FIRST", address_ASC_NULLS_LAST = "address_ASC_NULLS_LAST", address_DESC = "address_DESC", address_DESC_NULLS_FIRST = "address_DESC_NULLS_FIRST", address_DESC_NULLS_LAST = "address_DESC_NULLS_LAST", apr_ASC = "apr_ASC", apr_ASC_NULLS_FIRST = "apr_ASC_NULLS_FIRST", apr_ASC_NULLS_LAST = "apr_ASC_NULLS_LAST", apr_DESC = "apr_DESC", apr_DESC_NULLS_FIRST = "apr_DESC_NULLS_FIRST", apr_DESC_NULLS_LAST = "apr_DESC_NULLS_LAST", entityType_ASC = "entityType_ASC", entityType_ASC_NULLS_FIRST = "entityType_ASC_NULLS_FIRST", entityType_ASC_NULLS_LAST = "entityType_ASC_NULLS_LAST", entityType_DESC = "entityType_DESC", entityType_DESC_NULLS_FIRST = "entityType_DESC_NULLS_FIRST", entityType_DESC_NULLS_LAST = "entityType_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", snapshotTimestamp_ASC = "snapshotTimestamp_ASC", snapshotTimestamp_ASC_NULLS_FIRST = "snapshotTimestamp_ASC_NULLS_FIRST", snapshotTimestamp_ASC_NULLS_LAST = "snapshotTimestamp_ASC_NULLS_LAST", snapshotTimestamp_DESC = "snapshotTimestamp_DESC", snapshotTimestamp_DESC_NULLS_FIRST = "snapshotTimestamp_DESC_NULLS_FIRST", snapshotTimestamp_DESC_NULLS_LAST = "snapshotTimestamp_DESC_NULLS_LAST" } export interface PnlAprSnapshotWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; address_contains?: InputMaybe; address_containsInsensitive?: InputMaybe; address_endsWith?: InputMaybe; address_eq?: InputMaybe; address_gt?: InputMaybe; address_gte?: InputMaybe; address_in?: InputMaybe>; address_isNull?: InputMaybe; address_lt?: InputMaybe; address_lte?: InputMaybe; address_not_contains?: InputMaybe; address_not_containsInsensitive?: InputMaybe; address_not_endsWith?: InputMaybe; address_not_eq?: InputMaybe; address_not_in?: InputMaybe>; address_not_startsWith?: InputMaybe; address_startsWith?: InputMaybe; apr_eq?: InputMaybe; apr_gt?: InputMaybe; apr_gte?: InputMaybe; apr_in?: InputMaybe>; apr_isNull?: InputMaybe; apr_lt?: InputMaybe; apr_lte?: InputMaybe; apr_not_eq?: InputMaybe; apr_not_in?: InputMaybe>; entityType_eq?: InputMaybe; entityType_in?: InputMaybe>; entityType_isNull?: InputMaybe; entityType_not_eq?: InputMaybe; entityType_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; snapshotTimestamp_eq?: InputMaybe; snapshotTimestamp_gt?: InputMaybe; snapshotTimestamp_gte?: InputMaybe; snapshotTimestamp_in?: InputMaybe>; snapshotTimestamp_isNull?: InputMaybe; snapshotTimestamp_lt?: InputMaybe; snapshotTimestamp_lte?: InputMaybe; snapshotTimestamp_not_eq?: InputMaybe; snapshotTimestamp_not_in?: InputMaybe>; } export interface PnlAprSnapshotsConnection { __typename?: "PnlAprSnapshotsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface Position { __typename?: "Position"; account: Scalars["String"]["output"]; accountStat: AccountStat; collateralAmount: Scalars["BigInt"]["output"]; collateralToken: Scalars["String"]["output"]; entryPrice: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; isLong: Scalars["Boolean"]["output"]; isSnapshot: Scalars["Boolean"]["output"]; leverage: Scalars["BigInt"]["output"]; market: Scalars["String"]["output"]; maxCapital: Scalars["BigInt"]["output"]; maxSize: Scalars["BigInt"]["output"]; openedAt: Scalars["Int"]["output"]; positionKey: Scalars["String"]["output"]; qualifyingPnl: Scalars["BigInt"]["output"]; realizedFees: Scalars["BigInt"]["output"]; realizedPnl: Scalars["BigInt"]["output"]; realizedPriceImpact: Scalars["BigInt"]["output"]; sizeInTokens: Scalars["BigInt"]["output"]; sizeInUsd: Scalars["BigInt"]["output"]; snapshotTimestamp?: Maybe; unrealizedFees: Scalars["BigInt"]["output"]; unrealizedPnl: Scalars["BigInt"]["output"]; unrealizedPriceImpact: Scalars["BigInt"]["output"]; } export interface PositionChange { __typename?: "PositionChange"; account: Scalars["String"]["output"]; basePnlUsd: Scalars["BigInt"]["output"]; block: Scalars["Int"]["output"]; collateralAmount: Scalars["BigInt"]["output"]; collateralDeltaAmount: Scalars["BigInt"]["output"]; collateralToken: Scalars["String"]["output"]; collateralTokenPriceMin: Scalars["BigInt"]["output"]; executionPrice: Scalars["BigInt"]["output"]; feesAmount: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; isLong: Scalars["Boolean"]["output"]; isWin?: Maybe; market: Scalars["String"]["output"]; maxSize: Scalars["BigInt"]["output"]; orderKey: Scalars["String"]["output"]; positionKey: Scalars["String"]["output"]; priceImpactAmount?: Maybe; priceImpactDiffUsd?: Maybe; priceImpactUsd: Scalars["BigInt"]["output"]; proportionalPendingImpactUsd?: Maybe; sizeDeltaInTokens: Scalars["BigInt"]["output"]; sizeDeltaUsd: Scalars["BigInt"]["output"]; sizeInTokens: Scalars["BigInt"]["output"]; sizeInUsd: Scalars["BigInt"]["output"]; swapImpactUsd?: Maybe; timestamp: Scalars["Int"]["output"]; totalImpactUsd?: Maybe; type: PositionChangeType; } export interface PositionChangeEdge { __typename?: "PositionChangeEdge"; cursor: Scalars["String"]["output"]; node: PositionChange; } export declare enum PositionChangeOrderByInput { account_ASC = "account_ASC", account_ASC_NULLS_FIRST = "account_ASC_NULLS_FIRST", account_ASC_NULLS_LAST = "account_ASC_NULLS_LAST", account_DESC = "account_DESC", account_DESC_NULLS_FIRST = "account_DESC_NULLS_FIRST", account_DESC_NULLS_LAST = "account_DESC_NULLS_LAST", basePnlUsd_ASC = "basePnlUsd_ASC", basePnlUsd_ASC_NULLS_FIRST = "basePnlUsd_ASC_NULLS_FIRST", basePnlUsd_ASC_NULLS_LAST = "basePnlUsd_ASC_NULLS_LAST", basePnlUsd_DESC = "basePnlUsd_DESC", basePnlUsd_DESC_NULLS_FIRST = "basePnlUsd_DESC_NULLS_FIRST", basePnlUsd_DESC_NULLS_LAST = "basePnlUsd_DESC_NULLS_LAST", block_ASC = "block_ASC", block_ASC_NULLS_FIRST = "block_ASC_NULLS_FIRST", block_ASC_NULLS_LAST = "block_ASC_NULLS_LAST", block_DESC = "block_DESC", block_DESC_NULLS_FIRST = "block_DESC_NULLS_FIRST", block_DESC_NULLS_LAST = "block_DESC_NULLS_LAST", collateralAmount_ASC = "collateralAmount_ASC", collateralAmount_ASC_NULLS_FIRST = "collateralAmount_ASC_NULLS_FIRST", collateralAmount_ASC_NULLS_LAST = "collateralAmount_ASC_NULLS_LAST", collateralAmount_DESC = "collateralAmount_DESC", collateralAmount_DESC_NULLS_FIRST = "collateralAmount_DESC_NULLS_FIRST", collateralAmount_DESC_NULLS_LAST = "collateralAmount_DESC_NULLS_LAST", collateralDeltaAmount_ASC = "collateralDeltaAmount_ASC", collateralDeltaAmount_ASC_NULLS_FIRST = "collateralDeltaAmount_ASC_NULLS_FIRST", collateralDeltaAmount_ASC_NULLS_LAST = "collateralDeltaAmount_ASC_NULLS_LAST", collateralDeltaAmount_DESC = "collateralDeltaAmount_DESC", collateralDeltaAmount_DESC_NULLS_FIRST = "collateralDeltaAmount_DESC_NULLS_FIRST", collateralDeltaAmount_DESC_NULLS_LAST = "collateralDeltaAmount_DESC_NULLS_LAST", collateralTokenPriceMin_ASC = "collateralTokenPriceMin_ASC", collateralTokenPriceMin_ASC_NULLS_FIRST = "collateralTokenPriceMin_ASC_NULLS_FIRST", collateralTokenPriceMin_ASC_NULLS_LAST = "collateralTokenPriceMin_ASC_NULLS_LAST", collateralTokenPriceMin_DESC = "collateralTokenPriceMin_DESC", collateralTokenPriceMin_DESC_NULLS_FIRST = "collateralTokenPriceMin_DESC_NULLS_FIRST", collateralTokenPriceMin_DESC_NULLS_LAST = "collateralTokenPriceMin_DESC_NULLS_LAST", collateralToken_ASC = "collateralToken_ASC", collateralToken_ASC_NULLS_FIRST = "collateralToken_ASC_NULLS_FIRST", collateralToken_ASC_NULLS_LAST = "collateralToken_ASC_NULLS_LAST", collateralToken_DESC = "collateralToken_DESC", collateralToken_DESC_NULLS_FIRST = "collateralToken_DESC_NULLS_FIRST", collateralToken_DESC_NULLS_LAST = "collateralToken_DESC_NULLS_LAST", executionPrice_ASC = "executionPrice_ASC", executionPrice_ASC_NULLS_FIRST = "executionPrice_ASC_NULLS_FIRST", executionPrice_ASC_NULLS_LAST = "executionPrice_ASC_NULLS_LAST", executionPrice_DESC = "executionPrice_DESC", executionPrice_DESC_NULLS_FIRST = "executionPrice_DESC_NULLS_FIRST", executionPrice_DESC_NULLS_LAST = "executionPrice_DESC_NULLS_LAST", feesAmount_ASC = "feesAmount_ASC", feesAmount_ASC_NULLS_FIRST = "feesAmount_ASC_NULLS_FIRST", feesAmount_ASC_NULLS_LAST = "feesAmount_ASC_NULLS_LAST", feesAmount_DESC = "feesAmount_DESC", feesAmount_DESC_NULLS_FIRST = "feesAmount_DESC_NULLS_FIRST", feesAmount_DESC_NULLS_LAST = "feesAmount_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", isLong_ASC = "isLong_ASC", isLong_ASC_NULLS_FIRST = "isLong_ASC_NULLS_FIRST", isLong_ASC_NULLS_LAST = "isLong_ASC_NULLS_LAST", isLong_DESC = "isLong_DESC", isLong_DESC_NULLS_FIRST = "isLong_DESC_NULLS_FIRST", isLong_DESC_NULLS_LAST = "isLong_DESC_NULLS_LAST", isWin_ASC = "isWin_ASC", isWin_ASC_NULLS_FIRST = "isWin_ASC_NULLS_FIRST", isWin_ASC_NULLS_LAST = "isWin_ASC_NULLS_LAST", isWin_DESC = "isWin_DESC", isWin_DESC_NULLS_FIRST = "isWin_DESC_NULLS_FIRST", isWin_DESC_NULLS_LAST = "isWin_DESC_NULLS_LAST", market_ASC = "market_ASC", market_ASC_NULLS_FIRST = "market_ASC_NULLS_FIRST", market_ASC_NULLS_LAST = "market_ASC_NULLS_LAST", market_DESC = "market_DESC", market_DESC_NULLS_FIRST = "market_DESC_NULLS_FIRST", market_DESC_NULLS_LAST = "market_DESC_NULLS_LAST", maxSize_ASC = "maxSize_ASC", maxSize_ASC_NULLS_FIRST = "maxSize_ASC_NULLS_FIRST", maxSize_ASC_NULLS_LAST = "maxSize_ASC_NULLS_LAST", maxSize_DESC = "maxSize_DESC", maxSize_DESC_NULLS_FIRST = "maxSize_DESC_NULLS_FIRST", maxSize_DESC_NULLS_LAST = "maxSize_DESC_NULLS_LAST", orderKey_ASC = "orderKey_ASC", orderKey_ASC_NULLS_FIRST = "orderKey_ASC_NULLS_FIRST", orderKey_ASC_NULLS_LAST = "orderKey_ASC_NULLS_LAST", orderKey_DESC = "orderKey_DESC", orderKey_DESC_NULLS_FIRST = "orderKey_DESC_NULLS_FIRST", orderKey_DESC_NULLS_LAST = "orderKey_DESC_NULLS_LAST", positionKey_ASC = "positionKey_ASC", positionKey_ASC_NULLS_FIRST = "positionKey_ASC_NULLS_FIRST", positionKey_ASC_NULLS_LAST = "positionKey_ASC_NULLS_LAST", positionKey_DESC = "positionKey_DESC", positionKey_DESC_NULLS_FIRST = "positionKey_DESC_NULLS_FIRST", positionKey_DESC_NULLS_LAST = "positionKey_DESC_NULLS_LAST", priceImpactAmount_ASC = "priceImpactAmount_ASC", priceImpactAmount_ASC_NULLS_FIRST = "priceImpactAmount_ASC_NULLS_FIRST", priceImpactAmount_ASC_NULLS_LAST = "priceImpactAmount_ASC_NULLS_LAST", priceImpactAmount_DESC = "priceImpactAmount_DESC", priceImpactAmount_DESC_NULLS_FIRST = "priceImpactAmount_DESC_NULLS_FIRST", priceImpactAmount_DESC_NULLS_LAST = "priceImpactAmount_DESC_NULLS_LAST", priceImpactDiffUsd_ASC = "priceImpactDiffUsd_ASC", priceImpactDiffUsd_ASC_NULLS_FIRST = "priceImpactDiffUsd_ASC_NULLS_FIRST", priceImpactDiffUsd_ASC_NULLS_LAST = "priceImpactDiffUsd_ASC_NULLS_LAST", priceImpactDiffUsd_DESC = "priceImpactDiffUsd_DESC", priceImpactDiffUsd_DESC_NULLS_FIRST = "priceImpactDiffUsd_DESC_NULLS_FIRST", priceImpactDiffUsd_DESC_NULLS_LAST = "priceImpactDiffUsd_DESC_NULLS_LAST", priceImpactUsd_ASC = "priceImpactUsd_ASC", priceImpactUsd_ASC_NULLS_FIRST = "priceImpactUsd_ASC_NULLS_FIRST", priceImpactUsd_ASC_NULLS_LAST = "priceImpactUsd_ASC_NULLS_LAST", priceImpactUsd_DESC = "priceImpactUsd_DESC", priceImpactUsd_DESC_NULLS_FIRST = "priceImpactUsd_DESC_NULLS_FIRST", priceImpactUsd_DESC_NULLS_LAST = "priceImpactUsd_DESC_NULLS_LAST", proportionalPendingImpactUsd_ASC = "proportionalPendingImpactUsd_ASC", proportionalPendingImpactUsd_ASC_NULLS_FIRST = "proportionalPendingImpactUsd_ASC_NULLS_FIRST", proportionalPendingImpactUsd_ASC_NULLS_LAST = "proportionalPendingImpactUsd_ASC_NULLS_LAST", proportionalPendingImpactUsd_DESC = "proportionalPendingImpactUsd_DESC", proportionalPendingImpactUsd_DESC_NULLS_FIRST = "proportionalPendingImpactUsd_DESC_NULLS_FIRST", proportionalPendingImpactUsd_DESC_NULLS_LAST = "proportionalPendingImpactUsd_DESC_NULLS_LAST", sizeDeltaInTokens_ASC = "sizeDeltaInTokens_ASC", sizeDeltaInTokens_ASC_NULLS_FIRST = "sizeDeltaInTokens_ASC_NULLS_FIRST", sizeDeltaInTokens_ASC_NULLS_LAST = "sizeDeltaInTokens_ASC_NULLS_LAST", sizeDeltaInTokens_DESC = "sizeDeltaInTokens_DESC", sizeDeltaInTokens_DESC_NULLS_FIRST = "sizeDeltaInTokens_DESC_NULLS_FIRST", sizeDeltaInTokens_DESC_NULLS_LAST = "sizeDeltaInTokens_DESC_NULLS_LAST", sizeDeltaUsd_ASC = "sizeDeltaUsd_ASC", sizeDeltaUsd_ASC_NULLS_FIRST = "sizeDeltaUsd_ASC_NULLS_FIRST", sizeDeltaUsd_ASC_NULLS_LAST = "sizeDeltaUsd_ASC_NULLS_LAST", sizeDeltaUsd_DESC = "sizeDeltaUsd_DESC", sizeDeltaUsd_DESC_NULLS_FIRST = "sizeDeltaUsd_DESC_NULLS_FIRST", sizeDeltaUsd_DESC_NULLS_LAST = "sizeDeltaUsd_DESC_NULLS_LAST", sizeInTokens_ASC = "sizeInTokens_ASC", sizeInTokens_ASC_NULLS_FIRST = "sizeInTokens_ASC_NULLS_FIRST", sizeInTokens_ASC_NULLS_LAST = "sizeInTokens_ASC_NULLS_LAST", sizeInTokens_DESC = "sizeInTokens_DESC", sizeInTokens_DESC_NULLS_FIRST = "sizeInTokens_DESC_NULLS_FIRST", sizeInTokens_DESC_NULLS_LAST = "sizeInTokens_DESC_NULLS_LAST", sizeInUsd_ASC = "sizeInUsd_ASC", sizeInUsd_ASC_NULLS_FIRST = "sizeInUsd_ASC_NULLS_FIRST", sizeInUsd_ASC_NULLS_LAST = "sizeInUsd_ASC_NULLS_LAST", sizeInUsd_DESC = "sizeInUsd_DESC", sizeInUsd_DESC_NULLS_FIRST = "sizeInUsd_DESC_NULLS_FIRST", sizeInUsd_DESC_NULLS_LAST = "sizeInUsd_DESC_NULLS_LAST", swapImpactUsd_ASC = "swapImpactUsd_ASC", swapImpactUsd_ASC_NULLS_FIRST = "swapImpactUsd_ASC_NULLS_FIRST", swapImpactUsd_ASC_NULLS_LAST = "swapImpactUsd_ASC_NULLS_LAST", swapImpactUsd_DESC = "swapImpactUsd_DESC", swapImpactUsd_DESC_NULLS_FIRST = "swapImpactUsd_DESC_NULLS_FIRST", swapImpactUsd_DESC_NULLS_LAST = "swapImpactUsd_DESC_NULLS_LAST", timestamp_ASC = "timestamp_ASC", timestamp_ASC_NULLS_FIRST = "timestamp_ASC_NULLS_FIRST", timestamp_ASC_NULLS_LAST = "timestamp_ASC_NULLS_LAST", timestamp_DESC = "timestamp_DESC", timestamp_DESC_NULLS_FIRST = "timestamp_DESC_NULLS_FIRST", timestamp_DESC_NULLS_LAST = "timestamp_DESC_NULLS_LAST", totalImpactUsd_ASC = "totalImpactUsd_ASC", totalImpactUsd_ASC_NULLS_FIRST = "totalImpactUsd_ASC_NULLS_FIRST", totalImpactUsd_ASC_NULLS_LAST = "totalImpactUsd_ASC_NULLS_LAST", totalImpactUsd_DESC = "totalImpactUsd_DESC", totalImpactUsd_DESC_NULLS_FIRST = "totalImpactUsd_DESC_NULLS_FIRST", totalImpactUsd_DESC_NULLS_LAST = "totalImpactUsd_DESC_NULLS_LAST", type_ASC = "type_ASC", type_ASC_NULLS_FIRST = "type_ASC_NULLS_FIRST", type_ASC_NULLS_LAST = "type_ASC_NULLS_LAST", type_DESC = "type_DESC", type_DESC_NULLS_FIRST = "type_DESC_NULLS_FIRST", type_DESC_NULLS_LAST = "type_DESC_NULLS_LAST" } export declare enum PositionChangeType { decrease = "decrease", increase = "increase" } export interface PositionChangeWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; account_contains?: InputMaybe; account_containsInsensitive?: InputMaybe; account_endsWith?: InputMaybe; account_eq?: InputMaybe; account_gt?: InputMaybe; account_gte?: InputMaybe; account_in?: InputMaybe>; account_isNull?: InputMaybe; account_lt?: InputMaybe; account_lte?: InputMaybe; account_not_contains?: InputMaybe; account_not_containsInsensitive?: InputMaybe; account_not_endsWith?: InputMaybe; account_not_eq?: InputMaybe; account_not_in?: InputMaybe>; account_not_startsWith?: InputMaybe; account_startsWith?: InputMaybe; basePnlUsd_eq?: InputMaybe; basePnlUsd_gt?: InputMaybe; basePnlUsd_gte?: InputMaybe; basePnlUsd_in?: InputMaybe>; basePnlUsd_isNull?: InputMaybe; basePnlUsd_lt?: InputMaybe; basePnlUsd_lte?: InputMaybe; basePnlUsd_not_eq?: InputMaybe; basePnlUsd_not_in?: InputMaybe>; block_eq?: InputMaybe; block_gt?: InputMaybe; block_gte?: InputMaybe; block_in?: InputMaybe>; block_isNull?: InputMaybe; block_lt?: InputMaybe; block_lte?: InputMaybe; block_not_eq?: InputMaybe; block_not_in?: InputMaybe>; collateralAmount_eq?: InputMaybe; collateralAmount_gt?: InputMaybe; collateralAmount_gte?: InputMaybe; collateralAmount_in?: InputMaybe>; collateralAmount_isNull?: InputMaybe; collateralAmount_lt?: InputMaybe; collateralAmount_lte?: InputMaybe; collateralAmount_not_eq?: InputMaybe; collateralAmount_not_in?: InputMaybe>; collateralDeltaAmount_eq?: InputMaybe; collateralDeltaAmount_gt?: InputMaybe; collateralDeltaAmount_gte?: InputMaybe; collateralDeltaAmount_in?: InputMaybe>; collateralDeltaAmount_isNull?: InputMaybe; collateralDeltaAmount_lt?: InputMaybe; collateralDeltaAmount_lte?: InputMaybe; collateralDeltaAmount_not_eq?: InputMaybe; collateralDeltaAmount_not_in?: InputMaybe>; collateralTokenPriceMin_eq?: InputMaybe; collateralTokenPriceMin_gt?: InputMaybe; collateralTokenPriceMin_gte?: InputMaybe; collateralTokenPriceMin_in?: InputMaybe>; collateralTokenPriceMin_isNull?: InputMaybe; collateralTokenPriceMin_lt?: InputMaybe; collateralTokenPriceMin_lte?: InputMaybe; collateralTokenPriceMin_not_eq?: InputMaybe; collateralTokenPriceMin_not_in?: InputMaybe>; collateralToken_contains?: InputMaybe; collateralToken_containsInsensitive?: InputMaybe; collateralToken_endsWith?: InputMaybe; collateralToken_eq?: InputMaybe; collateralToken_gt?: InputMaybe; collateralToken_gte?: InputMaybe; collateralToken_in?: InputMaybe>; collateralToken_isNull?: InputMaybe; collateralToken_lt?: InputMaybe; collateralToken_lte?: InputMaybe; collateralToken_not_contains?: InputMaybe; collateralToken_not_containsInsensitive?: InputMaybe; collateralToken_not_endsWith?: InputMaybe; collateralToken_not_eq?: InputMaybe; collateralToken_not_in?: InputMaybe>; collateralToken_not_startsWith?: InputMaybe; collateralToken_startsWith?: InputMaybe; executionPrice_eq?: InputMaybe; executionPrice_gt?: InputMaybe; executionPrice_gte?: InputMaybe; executionPrice_in?: InputMaybe>; executionPrice_isNull?: InputMaybe; executionPrice_lt?: InputMaybe; executionPrice_lte?: InputMaybe; executionPrice_not_eq?: InputMaybe; executionPrice_not_in?: InputMaybe>; feesAmount_eq?: InputMaybe; feesAmount_gt?: InputMaybe; feesAmount_gte?: InputMaybe; feesAmount_in?: InputMaybe>; feesAmount_isNull?: InputMaybe; feesAmount_lt?: InputMaybe; feesAmount_lte?: InputMaybe; feesAmount_not_eq?: InputMaybe; feesAmount_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; isLong_eq?: InputMaybe; isLong_isNull?: InputMaybe; isLong_not_eq?: InputMaybe; isWin_eq?: InputMaybe; isWin_isNull?: InputMaybe; isWin_not_eq?: InputMaybe; market_contains?: InputMaybe; market_containsInsensitive?: InputMaybe; market_endsWith?: InputMaybe; market_eq?: InputMaybe; market_gt?: InputMaybe; market_gte?: InputMaybe; market_in?: InputMaybe>; market_isNull?: InputMaybe; market_lt?: InputMaybe; market_lte?: InputMaybe; market_not_contains?: InputMaybe; market_not_containsInsensitive?: InputMaybe; market_not_endsWith?: InputMaybe; market_not_eq?: InputMaybe; market_not_in?: InputMaybe>; market_not_startsWith?: InputMaybe; market_startsWith?: InputMaybe; maxSize_eq?: InputMaybe; maxSize_gt?: InputMaybe; maxSize_gte?: InputMaybe; maxSize_in?: InputMaybe>; maxSize_isNull?: InputMaybe; maxSize_lt?: InputMaybe; maxSize_lte?: InputMaybe; maxSize_not_eq?: InputMaybe; maxSize_not_in?: InputMaybe>; orderKey_contains?: InputMaybe; orderKey_containsInsensitive?: InputMaybe; orderKey_endsWith?: InputMaybe; orderKey_eq?: InputMaybe; orderKey_gt?: InputMaybe; orderKey_gte?: InputMaybe; orderKey_in?: InputMaybe>; orderKey_isNull?: InputMaybe; orderKey_lt?: InputMaybe; orderKey_lte?: InputMaybe; orderKey_not_contains?: InputMaybe; orderKey_not_containsInsensitive?: InputMaybe; orderKey_not_endsWith?: InputMaybe; orderKey_not_eq?: InputMaybe; orderKey_not_in?: InputMaybe>; orderKey_not_startsWith?: InputMaybe; orderKey_startsWith?: InputMaybe; positionKey_contains?: InputMaybe; positionKey_containsInsensitive?: InputMaybe; positionKey_endsWith?: InputMaybe; positionKey_eq?: InputMaybe; positionKey_gt?: InputMaybe; positionKey_gte?: InputMaybe; positionKey_in?: InputMaybe>; positionKey_isNull?: InputMaybe; positionKey_lt?: InputMaybe; positionKey_lte?: InputMaybe; positionKey_not_contains?: InputMaybe; positionKey_not_containsInsensitive?: InputMaybe; positionKey_not_endsWith?: InputMaybe; positionKey_not_eq?: InputMaybe; positionKey_not_in?: InputMaybe>; positionKey_not_startsWith?: InputMaybe; positionKey_startsWith?: InputMaybe; priceImpactAmount_eq?: InputMaybe; priceImpactAmount_gt?: InputMaybe; priceImpactAmount_gte?: InputMaybe; priceImpactAmount_in?: InputMaybe>; priceImpactAmount_isNull?: InputMaybe; priceImpactAmount_lt?: InputMaybe; priceImpactAmount_lte?: InputMaybe; priceImpactAmount_not_eq?: InputMaybe; priceImpactAmount_not_in?: InputMaybe>; priceImpactDiffUsd_eq?: InputMaybe; priceImpactDiffUsd_gt?: InputMaybe; priceImpactDiffUsd_gte?: InputMaybe; priceImpactDiffUsd_in?: InputMaybe>; priceImpactDiffUsd_isNull?: InputMaybe; priceImpactDiffUsd_lt?: InputMaybe; priceImpactDiffUsd_lte?: InputMaybe; priceImpactDiffUsd_not_eq?: InputMaybe; priceImpactDiffUsd_not_in?: InputMaybe>; priceImpactUsd_eq?: InputMaybe; priceImpactUsd_gt?: InputMaybe; priceImpactUsd_gte?: InputMaybe; priceImpactUsd_in?: InputMaybe>; priceImpactUsd_isNull?: InputMaybe; priceImpactUsd_lt?: InputMaybe; priceImpactUsd_lte?: InputMaybe; priceImpactUsd_not_eq?: InputMaybe; priceImpactUsd_not_in?: InputMaybe>; proportionalPendingImpactUsd_eq?: InputMaybe; proportionalPendingImpactUsd_gt?: InputMaybe; proportionalPendingImpactUsd_gte?: InputMaybe; proportionalPendingImpactUsd_in?: InputMaybe>; proportionalPendingImpactUsd_isNull?: InputMaybe; proportionalPendingImpactUsd_lt?: InputMaybe; proportionalPendingImpactUsd_lte?: InputMaybe; proportionalPendingImpactUsd_not_eq?: InputMaybe; proportionalPendingImpactUsd_not_in?: InputMaybe>; sizeDeltaInTokens_eq?: InputMaybe; sizeDeltaInTokens_gt?: InputMaybe; sizeDeltaInTokens_gte?: InputMaybe; sizeDeltaInTokens_in?: InputMaybe>; sizeDeltaInTokens_isNull?: InputMaybe; sizeDeltaInTokens_lt?: InputMaybe; sizeDeltaInTokens_lte?: InputMaybe; sizeDeltaInTokens_not_eq?: InputMaybe; sizeDeltaInTokens_not_in?: InputMaybe>; sizeDeltaUsd_eq?: InputMaybe; sizeDeltaUsd_gt?: InputMaybe; sizeDeltaUsd_gte?: InputMaybe; sizeDeltaUsd_in?: InputMaybe>; sizeDeltaUsd_isNull?: InputMaybe; sizeDeltaUsd_lt?: InputMaybe; sizeDeltaUsd_lte?: InputMaybe; sizeDeltaUsd_not_eq?: InputMaybe; sizeDeltaUsd_not_in?: InputMaybe>; sizeInTokens_eq?: InputMaybe; sizeInTokens_gt?: InputMaybe; sizeInTokens_gte?: InputMaybe; sizeInTokens_in?: InputMaybe>; sizeInTokens_isNull?: InputMaybe; sizeInTokens_lt?: InputMaybe; sizeInTokens_lte?: InputMaybe; sizeInTokens_not_eq?: InputMaybe; sizeInTokens_not_in?: InputMaybe>; sizeInUsd_eq?: InputMaybe; sizeInUsd_gt?: InputMaybe; sizeInUsd_gte?: InputMaybe; sizeInUsd_in?: InputMaybe>; sizeInUsd_isNull?: InputMaybe; sizeInUsd_lt?: InputMaybe; sizeInUsd_lte?: InputMaybe; sizeInUsd_not_eq?: InputMaybe; sizeInUsd_not_in?: InputMaybe>; swapImpactUsd_eq?: InputMaybe; swapImpactUsd_gt?: InputMaybe; swapImpactUsd_gte?: InputMaybe; swapImpactUsd_in?: InputMaybe>; swapImpactUsd_isNull?: InputMaybe; swapImpactUsd_lt?: InputMaybe; swapImpactUsd_lte?: InputMaybe; swapImpactUsd_not_eq?: InputMaybe; swapImpactUsd_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_isNull?: InputMaybe; timestamp_lt?: InputMaybe; timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; totalImpactUsd_eq?: InputMaybe; totalImpactUsd_gt?: InputMaybe; totalImpactUsd_gte?: InputMaybe; totalImpactUsd_in?: InputMaybe>; totalImpactUsd_isNull?: InputMaybe; totalImpactUsd_lt?: InputMaybe; totalImpactUsd_lte?: InputMaybe; totalImpactUsd_not_eq?: InputMaybe; totalImpactUsd_not_in?: InputMaybe>; type_eq?: InputMaybe; type_in?: InputMaybe>; type_isNull?: InputMaybe; type_not_eq?: InputMaybe; type_not_in?: InputMaybe>; } export interface PositionChangesConnection { __typename?: "PositionChangesConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface PositionEdge { __typename?: "PositionEdge"; cursor: Scalars["String"]["output"]; node: Position; } export interface PositionFeesEntitiesConnection { __typename?: "PositionFeesEntitiesConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface PositionFeesEntity { __typename?: "PositionFeesEntity"; affiliate: Scalars["String"]["output"]; affiliateRewardAmount: Scalars["BigInt"]["output"]; borrowingFeeAmount: Scalars["BigInt"]["output"]; collateralTokenAddress: Scalars["String"]["output"]; collateralTokenPriceMax: Scalars["BigInt"]["output"]; collateralTokenPriceMin: Scalars["BigInt"]["output"]; eventName: Scalars["String"]["output"]; feeUsdForPool: Scalars["BigInt"]["output"]; fundingFeeAmount: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; liquidationFeeAmount?: Maybe; marketAddress: Scalars["String"]["output"]; orderKey: Scalars["String"]["output"]; positionFeeAmount: Scalars["BigInt"]["output"]; totalRebateAmount: Scalars["BigInt"]["output"]; totalRebateFactor: Scalars["BigInt"]["output"]; trader: Scalars["String"]["output"]; traderDiscountAmount: Scalars["BigInt"]["output"]; transactionHash: Scalars["String"]["output"]; type: PositionFeesEntityType; } export interface PositionFeesEntityEdge { __typename?: "PositionFeesEntityEdge"; cursor: Scalars["String"]["output"]; node: PositionFeesEntity; } export declare enum PositionFeesEntityOrderByInput { affiliateRewardAmount_ASC = "affiliateRewardAmount_ASC", affiliateRewardAmount_ASC_NULLS_FIRST = "affiliateRewardAmount_ASC_NULLS_FIRST", affiliateRewardAmount_ASC_NULLS_LAST = "affiliateRewardAmount_ASC_NULLS_LAST", affiliateRewardAmount_DESC = "affiliateRewardAmount_DESC", affiliateRewardAmount_DESC_NULLS_FIRST = "affiliateRewardAmount_DESC_NULLS_FIRST", affiliateRewardAmount_DESC_NULLS_LAST = "affiliateRewardAmount_DESC_NULLS_LAST", affiliate_ASC = "affiliate_ASC", affiliate_ASC_NULLS_FIRST = "affiliate_ASC_NULLS_FIRST", affiliate_ASC_NULLS_LAST = "affiliate_ASC_NULLS_LAST", affiliate_DESC = "affiliate_DESC", affiliate_DESC_NULLS_FIRST = "affiliate_DESC_NULLS_FIRST", affiliate_DESC_NULLS_LAST = "affiliate_DESC_NULLS_LAST", borrowingFeeAmount_ASC = "borrowingFeeAmount_ASC", borrowingFeeAmount_ASC_NULLS_FIRST = "borrowingFeeAmount_ASC_NULLS_FIRST", borrowingFeeAmount_ASC_NULLS_LAST = "borrowingFeeAmount_ASC_NULLS_LAST", borrowingFeeAmount_DESC = "borrowingFeeAmount_DESC", borrowingFeeAmount_DESC_NULLS_FIRST = "borrowingFeeAmount_DESC_NULLS_FIRST", borrowingFeeAmount_DESC_NULLS_LAST = "borrowingFeeAmount_DESC_NULLS_LAST", collateralTokenAddress_ASC = "collateralTokenAddress_ASC", collateralTokenAddress_ASC_NULLS_FIRST = "collateralTokenAddress_ASC_NULLS_FIRST", collateralTokenAddress_ASC_NULLS_LAST = "collateralTokenAddress_ASC_NULLS_LAST", collateralTokenAddress_DESC = "collateralTokenAddress_DESC", collateralTokenAddress_DESC_NULLS_FIRST = "collateralTokenAddress_DESC_NULLS_FIRST", collateralTokenAddress_DESC_NULLS_LAST = "collateralTokenAddress_DESC_NULLS_LAST", collateralTokenPriceMax_ASC = "collateralTokenPriceMax_ASC", collateralTokenPriceMax_ASC_NULLS_FIRST = "collateralTokenPriceMax_ASC_NULLS_FIRST", collateralTokenPriceMax_ASC_NULLS_LAST = "collateralTokenPriceMax_ASC_NULLS_LAST", collateralTokenPriceMax_DESC = "collateralTokenPriceMax_DESC", collateralTokenPriceMax_DESC_NULLS_FIRST = "collateralTokenPriceMax_DESC_NULLS_FIRST", collateralTokenPriceMax_DESC_NULLS_LAST = "collateralTokenPriceMax_DESC_NULLS_LAST", collateralTokenPriceMin_ASC = "collateralTokenPriceMin_ASC", collateralTokenPriceMin_ASC_NULLS_FIRST = "collateralTokenPriceMin_ASC_NULLS_FIRST", collateralTokenPriceMin_ASC_NULLS_LAST = "collateralTokenPriceMin_ASC_NULLS_LAST", collateralTokenPriceMin_DESC = "collateralTokenPriceMin_DESC", collateralTokenPriceMin_DESC_NULLS_FIRST = "collateralTokenPriceMin_DESC_NULLS_FIRST", collateralTokenPriceMin_DESC_NULLS_LAST = "collateralTokenPriceMin_DESC_NULLS_LAST", eventName_ASC = "eventName_ASC", eventName_ASC_NULLS_FIRST = "eventName_ASC_NULLS_FIRST", eventName_ASC_NULLS_LAST = "eventName_ASC_NULLS_LAST", eventName_DESC = "eventName_DESC", eventName_DESC_NULLS_FIRST = "eventName_DESC_NULLS_FIRST", eventName_DESC_NULLS_LAST = "eventName_DESC_NULLS_LAST", feeUsdForPool_ASC = "feeUsdForPool_ASC", feeUsdForPool_ASC_NULLS_FIRST = "feeUsdForPool_ASC_NULLS_FIRST", feeUsdForPool_ASC_NULLS_LAST = "feeUsdForPool_ASC_NULLS_LAST", feeUsdForPool_DESC = "feeUsdForPool_DESC", feeUsdForPool_DESC_NULLS_FIRST = "feeUsdForPool_DESC_NULLS_FIRST", feeUsdForPool_DESC_NULLS_LAST = "feeUsdForPool_DESC_NULLS_LAST", fundingFeeAmount_ASC = "fundingFeeAmount_ASC", fundingFeeAmount_ASC_NULLS_FIRST = "fundingFeeAmount_ASC_NULLS_FIRST", fundingFeeAmount_ASC_NULLS_LAST = "fundingFeeAmount_ASC_NULLS_LAST", fundingFeeAmount_DESC = "fundingFeeAmount_DESC", fundingFeeAmount_DESC_NULLS_FIRST = "fundingFeeAmount_DESC_NULLS_FIRST", fundingFeeAmount_DESC_NULLS_LAST = "fundingFeeAmount_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", liquidationFeeAmount_ASC = "liquidationFeeAmount_ASC", liquidationFeeAmount_ASC_NULLS_FIRST = "liquidationFeeAmount_ASC_NULLS_FIRST", liquidationFeeAmount_ASC_NULLS_LAST = "liquidationFeeAmount_ASC_NULLS_LAST", liquidationFeeAmount_DESC = "liquidationFeeAmount_DESC", liquidationFeeAmount_DESC_NULLS_FIRST = "liquidationFeeAmount_DESC_NULLS_FIRST", liquidationFeeAmount_DESC_NULLS_LAST = "liquidationFeeAmount_DESC_NULLS_LAST", marketAddress_ASC = "marketAddress_ASC", marketAddress_ASC_NULLS_FIRST = "marketAddress_ASC_NULLS_FIRST", marketAddress_ASC_NULLS_LAST = "marketAddress_ASC_NULLS_LAST", marketAddress_DESC = "marketAddress_DESC", marketAddress_DESC_NULLS_FIRST = "marketAddress_DESC_NULLS_FIRST", marketAddress_DESC_NULLS_LAST = "marketAddress_DESC_NULLS_LAST", orderKey_ASC = "orderKey_ASC", orderKey_ASC_NULLS_FIRST = "orderKey_ASC_NULLS_FIRST", orderKey_ASC_NULLS_LAST = "orderKey_ASC_NULLS_LAST", orderKey_DESC = "orderKey_DESC", orderKey_DESC_NULLS_FIRST = "orderKey_DESC_NULLS_FIRST", orderKey_DESC_NULLS_LAST = "orderKey_DESC_NULLS_LAST", positionFeeAmount_ASC = "positionFeeAmount_ASC", positionFeeAmount_ASC_NULLS_FIRST = "positionFeeAmount_ASC_NULLS_FIRST", positionFeeAmount_ASC_NULLS_LAST = "positionFeeAmount_ASC_NULLS_LAST", positionFeeAmount_DESC = "positionFeeAmount_DESC", positionFeeAmount_DESC_NULLS_FIRST = "positionFeeAmount_DESC_NULLS_FIRST", positionFeeAmount_DESC_NULLS_LAST = "positionFeeAmount_DESC_NULLS_LAST", totalRebateAmount_ASC = "totalRebateAmount_ASC", totalRebateAmount_ASC_NULLS_FIRST = "totalRebateAmount_ASC_NULLS_FIRST", totalRebateAmount_ASC_NULLS_LAST = "totalRebateAmount_ASC_NULLS_LAST", totalRebateAmount_DESC = "totalRebateAmount_DESC", totalRebateAmount_DESC_NULLS_FIRST = "totalRebateAmount_DESC_NULLS_FIRST", totalRebateAmount_DESC_NULLS_LAST = "totalRebateAmount_DESC_NULLS_LAST", totalRebateFactor_ASC = "totalRebateFactor_ASC", totalRebateFactor_ASC_NULLS_FIRST = "totalRebateFactor_ASC_NULLS_FIRST", totalRebateFactor_ASC_NULLS_LAST = "totalRebateFactor_ASC_NULLS_LAST", totalRebateFactor_DESC = "totalRebateFactor_DESC", totalRebateFactor_DESC_NULLS_FIRST = "totalRebateFactor_DESC_NULLS_FIRST", totalRebateFactor_DESC_NULLS_LAST = "totalRebateFactor_DESC_NULLS_LAST", traderDiscountAmount_ASC = "traderDiscountAmount_ASC", traderDiscountAmount_ASC_NULLS_FIRST = "traderDiscountAmount_ASC_NULLS_FIRST", traderDiscountAmount_ASC_NULLS_LAST = "traderDiscountAmount_ASC_NULLS_LAST", traderDiscountAmount_DESC = "traderDiscountAmount_DESC", traderDiscountAmount_DESC_NULLS_FIRST = "traderDiscountAmount_DESC_NULLS_FIRST", traderDiscountAmount_DESC_NULLS_LAST = "traderDiscountAmount_DESC_NULLS_LAST", trader_ASC = "trader_ASC", trader_ASC_NULLS_FIRST = "trader_ASC_NULLS_FIRST", trader_ASC_NULLS_LAST = "trader_ASC_NULLS_LAST", trader_DESC = "trader_DESC", trader_DESC_NULLS_FIRST = "trader_DESC_NULLS_FIRST", trader_DESC_NULLS_LAST = "trader_DESC_NULLS_LAST", transactionHash_ASC = "transactionHash_ASC", transactionHash_ASC_NULLS_FIRST = "transactionHash_ASC_NULLS_FIRST", transactionHash_ASC_NULLS_LAST = "transactionHash_ASC_NULLS_LAST", transactionHash_DESC = "transactionHash_DESC", transactionHash_DESC_NULLS_FIRST = "transactionHash_DESC_NULLS_FIRST", transactionHash_DESC_NULLS_LAST = "transactionHash_DESC_NULLS_LAST", type_ASC = "type_ASC", type_ASC_NULLS_FIRST = "type_ASC_NULLS_FIRST", type_ASC_NULLS_LAST = "type_ASC_NULLS_LAST", type_DESC = "type_DESC", type_DESC_NULLS_FIRST = "type_DESC_NULLS_FIRST", type_DESC_NULLS_LAST = "type_DESC_NULLS_LAST" } export declare enum PositionFeesEntityType { PositionFeesCollected = "PositionFeesCollected", PositionFeesInfo = "PositionFeesInfo" } export interface PositionFeesEntityWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; affiliateRewardAmount_eq?: InputMaybe; affiliateRewardAmount_gt?: InputMaybe; affiliateRewardAmount_gte?: InputMaybe; affiliateRewardAmount_in?: InputMaybe>; affiliateRewardAmount_isNull?: InputMaybe; affiliateRewardAmount_lt?: InputMaybe; affiliateRewardAmount_lte?: InputMaybe; affiliateRewardAmount_not_eq?: InputMaybe; affiliateRewardAmount_not_in?: InputMaybe>; affiliate_contains?: InputMaybe; affiliate_containsInsensitive?: InputMaybe; affiliate_endsWith?: InputMaybe; affiliate_eq?: InputMaybe; affiliate_gt?: InputMaybe; affiliate_gte?: InputMaybe; affiliate_in?: InputMaybe>; affiliate_isNull?: InputMaybe; affiliate_lt?: InputMaybe; affiliate_lte?: InputMaybe; affiliate_not_contains?: InputMaybe; affiliate_not_containsInsensitive?: InputMaybe; affiliate_not_endsWith?: InputMaybe; affiliate_not_eq?: InputMaybe; affiliate_not_in?: InputMaybe>; affiliate_not_startsWith?: InputMaybe; affiliate_startsWith?: InputMaybe; borrowingFeeAmount_eq?: InputMaybe; borrowingFeeAmount_gt?: InputMaybe; borrowingFeeAmount_gte?: InputMaybe; borrowingFeeAmount_in?: InputMaybe>; borrowingFeeAmount_isNull?: InputMaybe; borrowingFeeAmount_lt?: InputMaybe; borrowingFeeAmount_lte?: InputMaybe; borrowingFeeAmount_not_eq?: InputMaybe; borrowingFeeAmount_not_in?: InputMaybe>; collateralTokenAddress_contains?: InputMaybe; collateralTokenAddress_containsInsensitive?: InputMaybe; collateralTokenAddress_endsWith?: InputMaybe; collateralTokenAddress_eq?: InputMaybe; collateralTokenAddress_gt?: InputMaybe; collateralTokenAddress_gte?: InputMaybe; collateralTokenAddress_in?: InputMaybe>; collateralTokenAddress_isNull?: InputMaybe; collateralTokenAddress_lt?: InputMaybe; collateralTokenAddress_lte?: InputMaybe; collateralTokenAddress_not_contains?: InputMaybe; collateralTokenAddress_not_containsInsensitive?: InputMaybe; collateralTokenAddress_not_endsWith?: InputMaybe; collateralTokenAddress_not_eq?: InputMaybe; collateralTokenAddress_not_in?: InputMaybe>; collateralTokenAddress_not_startsWith?: InputMaybe; collateralTokenAddress_startsWith?: InputMaybe; collateralTokenPriceMax_eq?: InputMaybe; collateralTokenPriceMax_gt?: InputMaybe; collateralTokenPriceMax_gte?: InputMaybe; collateralTokenPriceMax_in?: InputMaybe>; collateralTokenPriceMax_isNull?: InputMaybe; collateralTokenPriceMax_lt?: InputMaybe; collateralTokenPriceMax_lte?: InputMaybe; collateralTokenPriceMax_not_eq?: InputMaybe; collateralTokenPriceMax_not_in?: InputMaybe>; collateralTokenPriceMin_eq?: InputMaybe; collateralTokenPriceMin_gt?: InputMaybe; collateralTokenPriceMin_gte?: InputMaybe; collateralTokenPriceMin_in?: InputMaybe>; collateralTokenPriceMin_isNull?: InputMaybe; collateralTokenPriceMin_lt?: InputMaybe; collateralTokenPriceMin_lte?: InputMaybe; collateralTokenPriceMin_not_eq?: InputMaybe; collateralTokenPriceMin_not_in?: InputMaybe>; eventName_contains?: InputMaybe; eventName_containsInsensitive?: InputMaybe; eventName_endsWith?: InputMaybe; eventName_eq?: InputMaybe; eventName_gt?: InputMaybe; eventName_gte?: InputMaybe; eventName_in?: InputMaybe>; eventName_isNull?: InputMaybe; eventName_lt?: InputMaybe; eventName_lte?: InputMaybe; eventName_not_contains?: InputMaybe; eventName_not_containsInsensitive?: InputMaybe; eventName_not_endsWith?: InputMaybe; eventName_not_eq?: InputMaybe; eventName_not_in?: InputMaybe>; eventName_not_startsWith?: InputMaybe; eventName_startsWith?: InputMaybe; feeUsdForPool_eq?: InputMaybe; feeUsdForPool_gt?: InputMaybe; feeUsdForPool_gte?: InputMaybe; feeUsdForPool_in?: InputMaybe>; feeUsdForPool_isNull?: InputMaybe; feeUsdForPool_lt?: InputMaybe; feeUsdForPool_lte?: InputMaybe; feeUsdForPool_not_eq?: InputMaybe; feeUsdForPool_not_in?: InputMaybe>; fundingFeeAmount_eq?: InputMaybe; fundingFeeAmount_gt?: InputMaybe; fundingFeeAmount_gte?: InputMaybe; fundingFeeAmount_in?: InputMaybe>; fundingFeeAmount_isNull?: InputMaybe; fundingFeeAmount_lt?: InputMaybe; fundingFeeAmount_lte?: InputMaybe; fundingFeeAmount_not_eq?: InputMaybe; fundingFeeAmount_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; liquidationFeeAmount_eq?: InputMaybe; liquidationFeeAmount_gt?: InputMaybe; liquidationFeeAmount_gte?: InputMaybe; liquidationFeeAmount_in?: InputMaybe>; liquidationFeeAmount_isNull?: InputMaybe; liquidationFeeAmount_lt?: InputMaybe; liquidationFeeAmount_lte?: InputMaybe; liquidationFeeAmount_not_eq?: InputMaybe; liquidationFeeAmount_not_in?: InputMaybe>; marketAddress_contains?: InputMaybe; marketAddress_containsInsensitive?: InputMaybe; marketAddress_endsWith?: InputMaybe; marketAddress_eq?: InputMaybe; marketAddress_gt?: InputMaybe; marketAddress_gte?: InputMaybe; marketAddress_in?: InputMaybe>; marketAddress_isNull?: InputMaybe; marketAddress_lt?: InputMaybe; marketAddress_lte?: InputMaybe; marketAddress_not_contains?: InputMaybe; marketAddress_not_containsInsensitive?: InputMaybe; marketAddress_not_endsWith?: InputMaybe; marketAddress_not_eq?: InputMaybe; marketAddress_not_in?: InputMaybe>; marketAddress_not_startsWith?: InputMaybe; marketAddress_startsWith?: InputMaybe; orderKey_contains?: InputMaybe; orderKey_containsInsensitive?: InputMaybe; orderKey_endsWith?: InputMaybe; orderKey_eq?: InputMaybe; orderKey_gt?: InputMaybe; orderKey_gte?: InputMaybe; orderKey_in?: InputMaybe>; orderKey_isNull?: InputMaybe; orderKey_lt?: InputMaybe; orderKey_lte?: InputMaybe; orderKey_not_contains?: InputMaybe; orderKey_not_containsInsensitive?: InputMaybe; orderKey_not_endsWith?: InputMaybe; orderKey_not_eq?: InputMaybe; orderKey_not_in?: InputMaybe>; orderKey_not_startsWith?: InputMaybe; orderKey_startsWith?: InputMaybe; positionFeeAmount_eq?: InputMaybe; positionFeeAmount_gt?: InputMaybe; positionFeeAmount_gte?: InputMaybe; positionFeeAmount_in?: InputMaybe>; positionFeeAmount_isNull?: InputMaybe; positionFeeAmount_lt?: InputMaybe; positionFeeAmount_lte?: InputMaybe; positionFeeAmount_not_eq?: InputMaybe; positionFeeAmount_not_in?: InputMaybe>; totalRebateAmount_eq?: InputMaybe; totalRebateAmount_gt?: InputMaybe; totalRebateAmount_gte?: InputMaybe; totalRebateAmount_in?: InputMaybe>; totalRebateAmount_isNull?: InputMaybe; totalRebateAmount_lt?: InputMaybe; totalRebateAmount_lte?: InputMaybe; totalRebateAmount_not_eq?: InputMaybe; totalRebateAmount_not_in?: InputMaybe>; totalRebateFactor_eq?: InputMaybe; totalRebateFactor_gt?: InputMaybe; totalRebateFactor_gte?: InputMaybe; totalRebateFactor_in?: InputMaybe>; totalRebateFactor_isNull?: InputMaybe; totalRebateFactor_lt?: InputMaybe; totalRebateFactor_lte?: InputMaybe; totalRebateFactor_not_eq?: InputMaybe; totalRebateFactor_not_in?: InputMaybe>; traderDiscountAmount_eq?: InputMaybe; traderDiscountAmount_gt?: InputMaybe; traderDiscountAmount_gte?: InputMaybe; traderDiscountAmount_in?: InputMaybe>; traderDiscountAmount_isNull?: InputMaybe; traderDiscountAmount_lt?: InputMaybe; traderDiscountAmount_lte?: InputMaybe; traderDiscountAmount_not_eq?: InputMaybe; traderDiscountAmount_not_in?: InputMaybe>; trader_contains?: InputMaybe; trader_containsInsensitive?: InputMaybe; trader_endsWith?: InputMaybe; trader_eq?: InputMaybe; trader_gt?: InputMaybe; trader_gte?: InputMaybe; trader_in?: InputMaybe>; trader_isNull?: InputMaybe; trader_lt?: InputMaybe; trader_lte?: InputMaybe; trader_not_contains?: InputMaybe; trader_not_containsInsensitive?: InputMaybe; trader_not_endsWith?: InputMaybe; trader_not_eq?: InputMaybe; trader_not_in?: InputMaybe>; trader_not_startsWith?: InputMaybe; trader_startsWith?: InputMaybe; transactionHash_contains?: InputMaybe; transactionHash_containsInsensitive?: InputMaybe; transactionHash_endsWith?: InputMaybe; transactionHash_eq?: InputMaybe; transactionHash_gt?: InputMaybe; transactionHash_gte?: InputMaybe; transactionHash_in?: InputMaybe>; transactionHash_isNull?: InputMaybe; transactionHash_lt?: InputMaybe; transactionHash_lte?: InputMaybe; transactionHash_not_contains?: InputMaybe; transactionHash_not_containsInsensitive?: InputMaybe; transactionHash_not_endsWith?: InputMaybe; transactionHash_not_eq?: InputMaybe; transactionHash_not_in?: InputMaybe>; transactionHash_not_startsWith?: InputMaybe; transactionHash_startsWith?: InputMaybe; type_eq?: InputMaybe; type_in?: InputMaybe>; type_isNull?: InputMaybe; type_not_eq?: InputMaybe; type_not_in?: InputMaybe>; } export interface PositionFeesInfoWithPeriod { __typename?: "PositionFeesInfoWithPeriod"; id: Scalars["String"]["output"]; period: Scalars["String"]["output"]; timestamp?: Maybe; totalBorrowingFeeUsd: Scalars["BigInt"]["output"]; totalLiquidationFeeAmount: Scalars["BigInt"]["output"]; totalLiquidationFeeUsd: Scalars["BigInt"]["output"]; totalPositionFeeAmount: Scalars["BigInt"]["output"]; totalPositionFeeAmountForPool: Scalars["BigInt"]["output"]; totalPositionFeeUsd: Scalars["BigInt"]["output"]; totalPositionFeeUsdForPool: Scalars["BigInt"]["output"]; } export interface PositionFeesInfoWithPeriodEdge { __typename?: "PositionFeesInfoWithPeriodEdge"; cursor: Scalars["String"]["output"]; node: PositionFeesInfoWithPeriod; } export declare enum PositionFeesInfoWithPeriodOrderByInput { id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", period_ASC = "period_ASC", period_ASC_NULLS_FIRST = "period_ASC_NULLS_FIRST", period_ASC_NULLS_LAST = "period_ASC_NULLS_LAST", period_DESC = "period_DESC", period_DESC_NULLS_FIRST = "period_DESC_NULLS_FIRST", period_DESC_NULLS_LAST = "period_DESC_NULLS_LAST", timestamp_ASC = "timestamp_ASC", timestamp_ASC_NULLS_FIRST = "timestamp_ASC_NULLS_FIRST", timestamp_ASC_NULLS_LAST = "timestamp_ASC_NULLS_LAST", timestamp_DESC = "timestamp_DESC", timestamp_DESC_NULLS_FIRST = "timestamp_DESC_NULLS_FIRST", timestamp_DESC_NULLS_LAST = "timestamp_DESC_NULLS_LAST", totalBorrowingFeeUsd_ASC = "totalBorrowingFeeUsd_ASC", totalBorrowingFeeUsd_ASC_NULLS_FIRST = "totalBorrowingFeeUsd_ASC_NULLS_FIRST", totalBorrowingFeeUsd_ASC_NULLS_LAST = "totalBorrowingFeeUsd_ASC_NULLS_LAST", totalBorrowingFeeUsd_DESC = "totalBorrowingFeeUsd_DESC", totalBorrowingFeeUsd_DESC_NULLS_FIRST = "totalBorrowingFeeUsd_DESC_NULLS_FIRST", totalBorrowingFeeUsd_DESC_NULLS_LAST = "totalBorrowingFeeUsd_DESC_NULLS_LAST", totalLiquidationFeeAmount_ASC = "totalLiquidationFeeAmount_ASC", totalLiquidationFeeAmount_ASC_NULLS_FIRST = "totalLiquidationFeeAmount_ASC_NULLS_FIRST", totalLiquidationFeeAmount_ASC_NULLS_LAST = "totalLiquidationFeeAmount_ASC_NULLS_LAST", totalLiquidationFeeAmount_DESC = "totalLiquidationFeeAmount_DESC", totalLiquidationFeeAmount_DESC_NULLS_FIRST = "totalLiquidationFeeAmount_DESC_NULLS_FIRST", totalLiquidationFeeAmount_DESC_NULLS_LAST = "totalLiquidationFeeAmount_DESC_NULLS_LAST", totalLiquidationFeeUsd_ASC = "totalLiquidationFeeUsd_ASC", totalLiquidationFeeUsd_ASC_NULLS_FIRST = "totalLiquidationFeeUsd_ASC_NULLS_FIRST", totalLiquidationFeeUsd_ASC_NULLS_LAST = "totalLiquidationFeeUsd_ASC_NULLS_LAST", totalLiquidationFeeUsd_DESC = "totalLiquidationFeeUsd_DESC", totalLiquidationFeeUsd_DESC_NULLS_FIRST = "totalLiquidationFeeUsd_DESC_NULLS_FIRST", totalLiquidationFeeUsd_DESC_NULLS_LAST = "totalLiquidationFeeUsd_DESC_NULLS_LAST", totalPositionFeeAmountForPool_ASC = "totalPositionFeeAmountForPool_ASC", totalPositionFeeAmountForPool_ASC_NULLS_FIRST = "totalPositionFeeAmountForPool_ASC_NULLS_FIRST", totalPositionFeeAmountForPool_ASC_NULLS_LAST = "totalPositionFeeAmountForPool_ASC_NULLS_LAST", totalPositionFeeAmountForPool_DESC = "totalPositionFeeAmountForPool_DESC", totalPositionFeeAmountForPool_DESC_NULLS_FIRST = "totalPositionFeeAmountForPool_DESC_NULLS_FIRST", totalPositionFeeAmountForPool_DESC_NULLS_LAST = "totalPositionFeeAmountForPool_DESC_NULLS_LAST", totalPositionFeeAmount_ASC = "totalPositionFeeAmount_ASC", totalPositionFeeAmount_ASC_NULLS_FIRST = "totalPositionFeeAmount_ASC_NULLS_FIRST", totalPositionFeeAmount_ASC_NULLS_LAST = "totalPositionFeeAmount_ASC_NULLS_LAST", totalPositionFeeAmount_DESC = "totalPositionFeeAmount_DESC", totalPositionFeeAmount_DESC_NULLS_FIRST = "totalPositionFeeAmount_DESC_NULLS_FIRST", totalPositionFeeAmount_DESC_NULLS_LAST = "totalPositionFeeAmount_DESC_NULLS_LAST", totalPositionFeeUsdForPool_ASC = "totalPositionFeeUsdForPool_ASC", totalPositionFeeUsdForPool_ASC_NULLS_FIRST = "totalPositionFeeUsdForPool_ASC_NULLS_FIRST", totalPositionFeeUsdForPool_ASC_NULLS_LAST = "totalPositionFeeUsdForPool_ASC_NULLS_LAST", totalPositionFeeUsdForPool_DESC = "totalPositionFeeUsdForPool_DESC", totalPositionFeeUsdForPool_DESC_NULLS_FIRST = "totalPositionFeeUsdForPool_DESC_NULLS_FIRST", totalPositionFeeUsdForPool_DESC_NULLS_LAST = "totalPositionFeeUsdForPool_DESC_NULLS_LAST", totalPositionFeeUsd_ASC = "totalPositionFeeUsd_ASC", totalPositionFeeUsd_ASC_NULLS_FIRST = "totalPositionFeeUsd_ASC_NULLS_FIRST", totalPositionFeeUsd_ASC_NULLS_LAST = "totalPositionFeeUsd_ASC_NULLS_LAST", totalPositionFeeUsd_DESC = "totalPositionFeeUsd_DESC", totalPositionFeeUsd_DESC_NULLS_FIRST = "totalPositionFeeUsd_DESC_NULLS_FIRST", totalPositionFeeUsd_DESC_NULLS_LAST = "totalPositionFeeUsd_DESC_NULLS_LAST" } export interface PositionFeesInfoWithPeriodWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; period_contains?: InputMaybe; period_containsInsensitive?: InputMaybe; period_endsWith?: InputMaybe; period_eq?: InputMaybe; period_gt?: InputMaybe; period_gte?: InputMaybe; period_in?: InputMaybe>; period_isNull?: InputMaybe; period_lt?: InputMaybe; period_lte?: InputMaybe; period_not_contains?: InputMaybe; period_not_containsInsensitive?: InputMaybe; period_not_endsWith?: InputMaybe; period_not_eq?: InputMaybe; period_not_in?: InputMaybe>; period_not_startsWith?: InputMaybe; period_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_isNull?: InputMaybe; timestamp_lt?: InputMaybe; timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; totalBorrowingFeeUsd_eq?: InputMaybe; totalBorrowingFeeUsd_gt?: InputMaybe; totalBorrowingFeeUsd_gte?: InputMaybe; totalBorrowingFeeUsd_in?: InputMaybe>; totalBorrowingFeeUsd_isNull?: InputMaybe; totalBorrowingFeeUsd_lt?: InputMaybe; totalBorrowingFeeUsd_lte?: InputMaybe; totalBorrowingFeeUsd_not_eq?: InputMaybe; totalBorrowingFeeUsd_not_in?: InputMaybe>; totalLiquidationFeeAmount_eq?: InputMaybe; totalLiquidationFeeAmount_gt?: InputMaybe; totalLiquidationFeeAmount_gte?: InputMaybe; totalLiquidationFeeAmount_in?: InputMaybe>; totalLiquidationFeeAmount_isNull?: InputMaybe; totalLiquidationFeeAmount_lt?: InputMaybe; totalLiquidationFeeAmount_lte?: InputMaybe; totalLiquidationFeeAmount_not_eq?: InputMaybe; totalLiquidationFeeAmount_not_in?: InputMaybe>; totalLiquidationFeeUsd_eq?: InputMaybe; totalLiquidationFeeUsd_gt?: InputMaybe; totalLiquidationFeeUsd_gte?: InputMaybe; totalLiquidationFeeUsd_in?: InputMaybe>; totalLiquidationFeeUsd_isNull?: InputMaybe; totalLiquidationFeeUsd_lt?: InputMaybe; totalLiquidationFeeUsd_lte?: InputMaybe; totalLiquidationFeeUsd_not_eq?: InputMaybe; totalLiquidationFeeUsd_not_in?: InputMaybe>; totalPositionFeeAmountForPool_eq?: InputMaybe; totalPositionFeeAmountForPool_gt?: InputMaybe; totalPositionFeeAmountForPool_gte?: InputMaybe; totalPositionFeeAmountForPool_in?: InputMaybe>; totalPositionFeeAmountForPool_isNull?: InputMaybe; totalPositionFeeAmountForPool_lt?: InputMaybe; totalPositionFeeAmountForPool_lte?: InputMaybe; totalPositionFeeAmountForPool_not_eq?: InputMaybe; totalPositionFeeAmountForPool_not_in?: InputMaybe>; totalPositionFeeAmount_eq?: InputMaybe; totalPositionFeeAmount_gt?: InputMaybe; totalPositionFeeAmount_gte?: InputMaybe; totalPositionFeeAmount_in?: InputMaybe>; totalPositionFeeAmount_isNull?: InputMaybe; totalPositionFeeAmount_lt?: InputMaybe; totalPositionFeeAmount_lte?: InputMaybe; totalPositionFeeAmount_not_eq?: InputMaybe; totalPositionFeeAmount_not_in?: InputMaybe>; totalPositionFeeUsdForPool_eq?: InputMaybe; totalPositionFeeUsdForPool_gt?: InputMaybe; totalPositionFeeUsdForPool_gte?: InputMaybe; totalPositionFeeUsdForPool_in?: InputMaybe>; totalPositionFeeUsdForPool_isNull?: InputMaybe; totalPositionFeeUsdForPool_lt?: InputMaybe; totalPositionFeeUsdForPool_lte?: InputMaybe; totalPositionFeeUsdForPool_not_eq?: InputMaybe; totalPositionFeeUsdForPool_not_in?: InputMaybe>; totalPositionFeeUsd_eq?: InputMaybe; totalPositionFeeUsd_gt?: InputMaybe; totalPositionFeeUsd_gte?: InputMaybe; totalPositionFeeUsd_in?: InputMaybe>; totalPositionFeeUsd_isNull?: InputMaybe; totalPositionFeeUsd_lt?: InputMaybe; totalPositionFeeUsd_lte?: InputMaybe; totalPositionFeeUsd_not_eq?: InputMaybe; totalPositionFeeUsd_not_in?: InputMaybe>; } export interface PositionFeesInfoWithPeriodsConnection { __typename?: "PositionFeesInfoWithPeriodsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface PositionMarketVolumeInfo { __typename?: "PositionMarketVolumeInfo"; market: Scalars["String"]["output"]; volume: Scalars["BigInt"]["output"]; } export declare enum PositionOrderByInput { accountStat_account_ASC = "accountStat_account_ASC", accountStat_account_ASC_NULLS_FIRST = "accountStat_account_ASC_NULLS_FIRST", accountStat_account_ASC_NULLS_LAST = "accountStat_account_ASC_NULLS_LAST", accountStat_account_DESC = "accountStat_account_DESC", accountStat_account_DESC_NULLS_FIRST = "accountStat_account_DESC_NULLS_FIRST", accountStat_account_DESC_NULLS_LAST = "accountStat_account_DESC_NULLS_LAST", accountStat_closedCount_ASC = "accountStat_closedCount_ASC", accountStat_closedCount_ASC_NULLS_FIRST = "accountStat_closedCount_ASC_NULLS_FIRST", accountStat_closedCount_ASC_NULLS_LAST = "accountStat_closedCount_ASC_NULLS_LAST", accountStat_closedCount_DESC = "accountStat_closedCount_DESC", accountStat_closedCount_DESC_NULLS_FIRST = "accountStat_closedCount_DESC_NULLS_FIRST", accountStat_closedCount_DESC_NULLS_LAST = "accountStat_closedCount_DESC_NULLS_LAST", accountStat_cumsumCollateral_ASC = "accountStat_cumsumCollateral_ASC", accountStat_cumsumCollateral_ASC_NULLS_FIRST = "accountStat_cumsumCollateral_ASC_NULLS_FIRST", accountStat_cumsumCollateral_ASC_NULLS_LAST = "accountStat_cumsumCollateral_ASC_NULLS_LAST", accountStat_cumsumCollateral_DESC = "accountStat_cumsumCollateral_DESC", accountStat_cumsumCollateral_DESC_NULLS_FIRST = "accountStat_cumsumCollateral_DESC_NULLS_FIRST", accountStat_cumsumCollateral_DESC_NULLS_LAST = "accountStat_cumsumCollateral_DESC_NULLS_LAST", accountStat_cumsumSize_ASC = "accountStat_cumsumSize_ASC", accountStat_cumsumSize_ASC_NULLS_FIRST = "accountStat_cumsumSize_ASC_NULLS_FIRST", accountStat_cumsumSize_ASC_NULLS_LAST = "accountStat_cumsumSize_ASC_NULLS_LAST", accountStat_cumsumSize_DESC = "accountStat_cumsumSize_DESC", accountStat_cumsumSize_DESC_NULLS_FIRST = "accountStat_cumsumSize_DESC_NULLS_FIRST", accountStat_cumsumSize_DESC_NULLS_LAST = "accountStat_cumsumSize_DESC_NULLS_LAST", accountStat_dayTimestamp_ASC = "accountStat_dayTimestamp_ASC", accountStat_dayTimestamp_ASC_NULLS_FIRST = "accountStat_dayTimestamp_ASC_NULLS_FIRST", accountStat_dayTimestamp_ASC_NULLS_LAST = "accountStat_dayTimestamp_ASC_NULLS_LAST", accountStat_dayTimestamp_DESC = "accountStat_dayTimestamp_DESC", accountStat_dayTimestamp_DESC_NULLS_FIRST = "accountStat_dayTimestamp_DESC_NULLS_FIRST", accountStat_dayTimestamp_DESC_NULLS_LAST = "accountStat_dayTimestamp_DESC_NULLS_LAST", accountStat_deposits_ASC = "accountStat_deposits_ASC", accountStat_deposits_ASC_NULLS_FIRST = "accountStat_deposits_ASC_NULLS_FIRST", accountStat_deposits_ASC_NULLS_LAST = "accountStat_deposits_ASC_NULLS_LAST", accountStat_deposits_DESC = "accountStat_deposits_DESC", accountStat_deposits_DESC_NULLS_FIRST = "accountStat_deposits_DESC_NULLS_FIRST", accountStat_deposits_DESC_NULLS_LAST = "accountStat_deposits_DESC_NULLS_LAST", accountStat_id_ASC = "accountStat_id_ASC", accountStat_id_ASC_NULLS_FIRST = "accountStat_id_ASC_NULLS_FIRST", accountStat_id_ASC_NULLS_LAST = "accountStat_id_ASC_NULLS_LAST", accountStat_id_DESC = "accountStat_id_DESC", accountStat_id_DESC_NULLS_FIRST = "accountStat_id_DESC_NULLS_FIRST", accountStat_id_DESC_NULLS_LAST = "accountStat_id_DESC_NULLS_LAST", accountStat_losses_ASC = "accountStat_losses_ASC", accountStat_losses_ASC_NULLS_FIRST = "accountStat_losses_ASC_NULLS_FIRST", accountStat_losses_ASC_NULLS_LAST = "accountStat_losses_ASC_NULLS_LAST", accountStat_losses_DESC = "accountStat_losses_DESC", accountStat_losses_DESC_NULLS_FIRST = "accountStat_losses_DESC_NULLS_FIRST", accountStat_losses_DESC_NULLS_LAST = "accountStat_losses_DESC_NULLS_LAST", accountStat_maxCapital_ASC = "accountStat_maxCapital_ASC", accountStat_maxCapital_ASC_NULLS_FIRST = "accountStat_maxCapital_ASC_NULLS_FIRST", accountStat_maxCapital_ASC_NULLS_LAST = "accountStat_maxCapital_ASC_NULLS_LAST", accountStat_maxCapital_DESC = "accountStat_maxCapital_DESC", accountStat_maxCapital_DESC_NULLS_FIRST = "accountStat_maxCapital_DESC_NULLS_FIRST", accountStat_maxCapital_DESC_NULLS_LAST = "accountStat_maxCapital_DESC_NULLS_LAST", accountStat_maxNetCapitalRunningDelta_ASC = "accountStat_maxNetCapitalRunningDelta_ASC", accountStat_maxNetCapitalRunningDelta_ASC_NULLS_FIRST = "accountStat_maxNetCapitalRunningDelta_ASC_NULLS_FIRST", accountStat_maxNetCapitalRunningDelta_ASC_NULLS_LAST = "accountStat_maxNetCapitalRunningDelta_ASC_NULLS_LAST", accountStat_maxNetCapitalRunningDelta_DESC = "accountStat_maxNetCapitalRunningDelta_DESC", accountStat_maxNetCapitalRunningDelta_DESC_NULLS_FIRST = "accountStat_maxNetCapitalRunningDelta_DESC_NULLS_FIRST", accountStat_maxNetCapitalRunningDelta_DESC_NULLS_LAST = "accountStat_maxNetCapitalRunningDelta_DESC_NULLS_LAST", accountStat_netCapitalDelta_ASC = "accountStat_netCapitalDelta_ASC", accountStat_netCapitalDelta_ASC_NULLS_FIRST = "accountStat_netCapitalDelta_ASC_NULLS_FIRST", accountStat_netCapitalDelta_ASC_NULLS_LAST = "accountStat_netCapitalDelta_ASC_NULLS_LAST", accountStat_netCapitalDelta_DESC = "accountStat_netCapitalDelta_DESC", accountStat_netCapitalDelta_DESC_NULLS_FIRST = "accountStat_netCapitalDelta_DESC_NULLS_FIRST", accountStat_netCapitalDelta_DESC_NULLS_LAST = "accountStat_netCapitalDelta_DESC_NULLS_LAST", accountStat_netCapital_ASC = "accountStat_netCapital_ASC", accountStat_netCapital_ASC_NULLS_FIRST = "accountStat_netCapital_ASC_NULLS_FIRST", accountStat_netCapital_ASC_NULLS_LAST = "accountStat_netCapital_ASC_NULLS_LAST", accountStat_netCapital_DESC = "accountStat_netCapital_DESC", accountStat_netCapital_DESC_NULLS_FIRST = "accountStat_netCapital_DESC_NULLS_FIRST", accountStat_netCapital_DESC_NULLS_LAST = "accountStat_netCapital_DESC_NULLS_LAST", accountStat_period_ASC = "accountStat_period_ASC", accountStat_period_ASC_NULLS_FIRST = "accountStat_period_ASC_NULLS_FIRST", accountStat_period_ASC_NULLS_LAST = "accountStat_period_ASC_NULLS_LAST", accountStat_period_DESC = "accountStat_period_DESC", accountStat_period_DESC_NULLS_FIRST = "accountStat_period_DESC_NULLS_FIRST", accountStat_period_DESC_NULLS_LAST = "accountStat_period_DESC_NULLS_LAST", accountStat_realizedFees_ASC = "accountStat_realizedFees_ASC", accountStat_realizedFees_ASC_NULLS_FIRST = "accountStat_realizedFees_ASC_NULLS_FIRST", accountStat_realizedFees_ASC_NULLS_LAST = "accountStat_realizedFees_ASC_NULLS_LAST", accountStat_realizedFees_DESC = "accountStat_realizedFees_DESC", accountStat_realizedFees_DESC_NULLS_FIRST = "accountStat_realizedFees_DESC_NULLS_FIRST", accountStat_realizedFees_DESC_NULLS_LAST = "accountStat_realizedFees_DESC_NULLS_LAST", accountStat_realizedPnl_ASC = "accountStat_realizedPnl_ASC", accountStat_realizedPnl_ASC_NULLS_FIRST = "accountStat_realizedPnl_ASC_NULLS_FIRST", accountStat_realizedPnl_ASC_NULLS_LAST = "accountStat_realizedPnl_ASC_NULLS_LAST", accountStat_realizedPnl_DESC = "accountStat_realizedPnl_DESC", accountStat_realizedPnl_DESC_NULLS_FIRST = "accountStat_realizedPnl_DESC_NULLS_FIRST", accountStat_realizedPnl_DESC_NULLS_LAST = "accountStat_realizedPnl_DESC_NULLS_LAST", accountStat_realizedPriceImpact_ASC = "accountStat_realizedPriceImpact_ASC", accountStat_realizedPriceImpact_ASC_NULLS_FIRST = "accountStat_realizedPriceImpact_ASC_NULLS_FIRST", accountStat_realizedPriceImpact_ASC_NULLS_LAST = "accountStat_realizedPriceImpact_ASC_NULLS_LAST", accountStat_realizedPriceImpact_DESC = "accountStat_realizedPriceImpact_DESC", accountStat_realizedPriceImpact_DESC_NULLS_FIRST = "accountStat_realizedPriceImpact_DESC_NULLS_FIRST", accountStat_realizedPriceImpact_DESC_NULLS_LAST = "accountStat_realizedPriceImpact_DESC_NULLS_LAST", accountStat_realizedSwapImpact_ASC = "accountStat_realizedSwapImpact_ASC", accountStat_realizedSwapImpact_ASC_NULLS_FIRST = "accountStat_realizedSwapImpact_ASC_NULLS_FIRST", accountStat_realizedSwapImpact_ASC_NULLS_LAST = "accountStat_realizedSwapImpact_ASC_NULLS_LAST", accountStat_realizedSwapImpact_DESC = "accountStat_realizedSwapImpact_DESC", accountStat_realizedSwapImpact_DESC_NULLS_FIRST = "accountStat_realizedSwapImpact_DESC_NULLS_FIRST", accountStat_realizedSwapImpact_DESC_NULLS_LAST = "accountStat_realizedSwapImpact_DESC_NULLS_LAST", accountStat_sumMaxSize_ASC = "accountStat_sumMaxSize_ASC", accountStat_sumMaxSize_ASC_NULLS_FIRST = "accountStat_sumMaxSize_ASC_NULLS_FIRST", accountStat_sumMaxSize_ASC_NULLS_LAST = "accountStat_sumMaxSize_ASC_NULLS_LAST", accountStat_sumMaxSize_DESC = "accountStat_sumMaxSize_DESC", accountStat_sumMaxSize_DESC_NULLS_FIRST = "accountStat_sumMaxSize_DESC_NULLS_FIRST", accountStat_sumMaxSize_DESC_NULLS_LAST = "accountStat_sumMaxSize_DESC_NULLS_LAST", accountStat_volume_ASC = "accountStat_volume_ASC", accountStat_volume_ASC_NULLS_FIRST = "accountStat_volume_ASC_NULLS_FIRST", accountStat_volume_ASC_NULLS_LAST = "accountStat_volume_ASC_NULLS_LAST", accountStat_volume_DESC = "accountStat_volume_DESC", accountStat_volume_DESC_NULLS_FIRST = "accountStat_volume_DESC_NULLS_FIRST", accountStat_volume_DESC_NULLS_LAST = "accountStat_volume_DESC_NULLS_LAST", accountStat_wins_ASC = "accountStat_wins_ASC", accountStat_wins_ASC_NULLS_FIRST = "accountStat_wins_ASC_NULLS_FIRST", accountStat_wins_ASC_NULLS_LAST = "accountStat_wins_ASC_NULLS_LAST", accountStat_wins_DESC = "accountStat_wins_DESC", accountStat_wins_DESC_NULLS_FIRST = "accountStat_wins_DESC_NULLS_FIRST", accountStat_wins_DESC_NULLS_LAST = "accountStat_wins_DESC_NULLS_LAST", account_ASC = "account_ASC", account_ASC_NULLS_FIRST = "account_ASC_NULLS_FIRST", account_ASC_NULLS_LAST = "account_ASC_NULLS_LAST", account_DESC = "account_DESC", account_DESC_NULLS_FIRST = "account_DESC_NULLS_FIRST", account_DESC_NULLS_LAST = "account_DESC_NULLS_LAST", collateralAmount_ASC = "collateralAmount_ASC", collateralAmount_ASC_NULLS_FIRST = "collateralAmount_ASC_NULLS_FIRST", collateralAmount_ASC_NULLS_LAST = "collateralAmount_ASC_NULLS_LAST", collateralAmount_DESC = "collateralAmount_DESC", collateralAmount_DESC_NULLS_FIRST = "collateralAmount_DESC_NULLS_FIRST", collateralAmount_DESC_NULLS_LAST = "collateralAmount_DESC_NULLS_LAST", collateralToken_ASC = "collateralToken_ASC", collateralToken_ASC_NULLS_FIRST = "collateralToken_ASC_NULLS_FIRST", collateralToken_ASC_NULLS_LAST = "collateralToken_ASC_NULLS_LAST", collateralToken_DESC = "collateralToken_DESC", collateralToken_DESC_NULLS_FIRST = "collateralToken_DESC_NULLS_FIRST", collateralToken_DESC_NULLS_LAST = "collateralToken_DESC_NULLS_LAST", entryPrice_ASC = "entryPrice_ASC", entryPrice_ASC_NULLS_FIRST = "entryPrice_ASC_NULLS_FIRST", entryPrice_ASC_NULLS_LAST = "entryPrice_ASC_NULLS_LAST", entryPrice_DESC = "entryPrice_DESC", entryPrice_DESC_NULLS_FIRST = "entryPrice_DESC_NULLS_FIRST", entryPrice_DESC_NULLS_LAST = "entryPrice_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", isLong_ASC = "isLong_ASC", isLong_ASC_NULLS_FIRST = "isLong_ASC_NULLS_FIRST", isLong_ASC_NULLS_LAST = "isLong_ASC_NULLS_LAST", isLong_DESC = "isLong_DESC", isLong_DESC_NULLS_FIRST = "isLong_DESC_NULLS_FIRST", isLong_DESC_NULLS_LAST = "isLong_DESC_NULLS_LAST", isSnapshot_ASC = "isSnapshot_ASC", isSnapshot_ASC_NULLS_FIRST = "isSnapshot_ASC_NULLS_FIRST", isSnapshot_ASC_NULLS_LAST = "isSnapshot_ASC_NULLS_LAST", isSnapshot_DESC = "isSnapshot_DESC", isSnapshot_DESC_NULLS_FIRST = "isSnapshot_DESC_NULLS_FIRST", isSnapshot_DESC_NULLS_LAST = "isSnapshot_DESC_NULLS_LAST", leverage_ASC = "leverage_ASC", leverage_ASC_NULLS_FIRST = "leverage_ASC_NULLS_FIRST", leverage_ASC_NULLS_LAST = "leverage_ASC_NULLS_LAST", leverage_DESC = "leverage_DESC", leverage_DESC_NULLS_FIRST = "leverage_DESC_NULLS_FIRST", leverage_DESC_NULLS_LAST = "leverage_DESC_NULLS_LAST", market_ASC = "market_ASC", market_ASC_NULLS_FIRST = "market_ASC_NULLS_FIRST", market_ASC_NULLS_LAST = "market_ASC_NULLS_LAST", market_DESC = "market_DESC", market_DESC_NULLS_FIRST = "market_DESC_NULLS_FIRST", market_DESC_NULLS_LAST = "market_DESC_NULLS_LAST", maxCapital_ASC = "maxCapital_ASC", maxCapital_ASC_NULLS_FIRST = "maxCapital_ASC_NULLS_FIRST", maxCapital_ASC_NULLS_LAST = "maxCapital_ASC_NULLS_LAST", maxCapital_DESC = "maxCapital_DESC", maxCapital_DESC_NULLS_FIRST = "maxCapital_DESC_NULLS_FIRST", maxCapital_DESC_NULLS_LAST = "maxCapital_DESC_NULLS_LAST", maxSize_ASC = "maxSize_ASC", maxSize_ASC_NULLS_FIRST = "maxSize_ASC_NULLS_FIRST", maxSize_ASC_NULLS_LAST = "maxSize_ASC_NULLS_LAST", maxSize_DESC = "maxSize_DESC", maxSize_DESC_NULLS_FIRST = "maxSize_DESC_NULLS_FIRST", maxSize_DESC_NULLS_LAST = "maxSize_DESC_NULLS_LAST", openedAt_ASC = "openedAt_ASC", openedAt_ASC_NULLS_FIRST = "openedAt_ASC_NULLS_FIRST", openedAt_ASC_NULLS_LAST = "openedAt_ASC_NULLS_LAST", openedAt_DESC = "openedAt_DESC", openedAt_DESC_NULLS_FIRST = "openedAt_DESC_NULLS_FIRST", openedAt_DESC_NULLS_LAST = "openedAt_DESC_NULLS_LAST", positionKey_ASC = "positionKey_ASC", positionKey_ASC_NULLS_FIRST = "positionKey_ASC_NULLS_FIRST", positionKey_ASC_NULLS_LAST = "positionKey_ASC_NULLS_LAST", positionKey_DESC = "positionKey_DESC", positionKey_DESC_NULLS_FIRST = "positionKey_DESC_NULLS_FIRST", positionKey_DESC_NULLS_LAST = "positionKey_DESC_NULLS_LAST", qualifyingPnl_ASC = "qualifyingPnl_ASC", qualifyingPnl_ASC_NULLS_FIRST = "qualifyingPnl_ASC_NULLS_FIRST", qualifyingPnl_ASC_NULLS_LAST = "qualifyingPnl_ASC_NULLS_LAST", qualifyingPnl_DESC = "qualifyingPnl_DESC", qualifyingPnl_DESC_NULLS_FIRST = "qualifyingPnl_DESC_NULLS_FIRST", qualifyingPnl_DESC_NULLS_LAST = "qualifyingPnl_DESC_NULLS_LAST", realizedFees_ASC = "realizedFees_ASC", realizedFees_ASC_NULLS_FIRST = "realizedFees_ASC_NULLS_FIRST", realizedFees_ASC_NULLS_LAST = "realizedFees_ASC_NULLS_LAST", realizedFees_DESC = "realizedFees_DESC", realizedFees_DESC_NULLS_FIRST = "realizedFees_DESC_NULLS_FIRST", realizedFees_DESC_NULLS_LAST = "realizedFees_DESC_NULLS_LAST", realizedPnl_ASC = "realizedPnl_ASC", realizedPnl_ASC_NULLS_FIRST = "realizedPnl_ASC_NULLS_FIRST", realizedPnl_ASC_NULLS_LAST = "realizedPnl_ASC_NULLS_LAST", realizedPnl_DESC = "realizedPnl_DESC", realizedPnl_DESC_NULLS_FIRST = "realizedPnl_DESC_NULLS_FIRST", realizedPnl_DESC_NULLS_LAST = "realizedPnl_DESC_NULLS_LAST", realizedPriceImpact_ASC = "realizedPriceImpact_ASC", realizedPriceImpact_ASC_NULLS_FIRST = "realizedPriceImpact_ASC_NULLS_FIRST", realizedPriceImpact_ASC_NULLS_LAST = "realizedPriceImpact_ASC_NULLS_LAST", realizedPriceImpact_DESC = "realizedPriceImpact_DESC", realizedPriceImpact_DESC_NULLS_FIRST = "realizedPriceImpact_DESC_NULLS_FIRST", realizedPriceImpact_DESC_NULLS_LAST = "realizedPriceImpact_DESC_NULLS_LAST", sizeInTokens_ASC = "sizeInTokens_ASC", sizeInTokens_ASC_NULLS_FIRST = "sizeInTokens_ASC_NULLS_FIRST", sizeInTokens_ASC_NULLS_LAST = "sizeInTokens_ASC_NULLS_LAST", sizeInTokens_DESC = "sizeInTokens_DESC", sizeInTokens_DESC_NULLS_FIRST = "sizeInTokens_DESC_NULLS_FIRST", sizeInTokens_DESC_NULLS_LAST = "sizeInTokens_DESC_NULLS_LAST", sizeInUsd_ASC = "sizeInUsd_ASC", sizeInUsd_ASC_NULLS_FIRST = "sizeInUsd_ASC_NULLS_FIRST", sizeInUsd_ASC_NULLS_LAST = "sizeInUsd_ASC_NULLS_LAST", sizeInUsd_DESC = "sizeInUsd_DESC", sizeInUsd_DESC_NULLS_FIRST = "sizeInUsd_DESC_NULLS_FIRST", sizeInUsd_DESC_NULLS_LAST = "sizeInUsd_DESC_NULLS_LAST", snapshotTimestamp_ASC = "snapshotTimestamp_ASC", snapshotTimestamp_ASC_NULLS_FIRST = "snapshotTimestamp_ASC_NULLS_FIRST", snapshotTimestamp_ASC_NULLS_LAST = "snapshotTimestamp_ASC_NULLS_LAST", snapshotTimestamp_DESC = "snapshotTimestamp_DESC", snapshotTimestamp_DESC_NULLS_FIRST = "snapshotTimestamp_DESC_NULLS_FIRST", snapshotTimestamp_DESC_NULLS_LAST = "snapshotTimestamp_DESC_NULLS_LAST", unrealizedFees_ASC = "unrealizedFees_ASC", unrealizedFees_ASC_NULLS_FIRST = "unrealizedFees_ASC_NULLS_FIRST", unrealizedFees_ASC_NULLS_LAST = "unrealizedFees_ASC_NULLS_LAST", unrealizedFees_DESC = "unrealizedFees_DESC", unrealizedFees_DESC_NULLS_FIRST = "unrealizedFees_DESC_NULLS_FIRST", unrealizedFees_DESC_NULLS_LAST = "unrealizedFees_DESC_NULLS_LAST", unrealizedPnl_ASC = "unrealizedPnl_ASC", unrealizedPnl_ASC_NULLS_FIRST = "unrealizedPnl_ASC_NULLS_FIRST", unrealizedPnl_ASC_NULLS_LAST = "unrealizedPnl_ASC_NULLS_LAST", unrealizedPnl_DESC = "unrealizedPnl_DESC", unrealizedPnl_DESC_NULLS_FIRST = "unrealizedPnl_DESC_NULLS_FIRST", unrealizedPnl_DESC_NULLS_LAST = "unrealizedPnl_DESC_NULLS_LAST", unrealizedPriceImpact_ASC = "unrealizedPriceImpact_ASC", unrealizedPriceImpact_ASC_NULLS_FIRST = "unrealizedPriceImpact_ASC_NULLS_FIRST", unrealizedPriceImpact_ASC_NULLS_LAST = "unrealizedPriceImpact_ASC_NULLS_LAST", unrealizedPriceImpact_DESC = "unrealizedPriceImpact_DESC", unrealizedPriceImpact_DESC_NULLS_FIRST = "unrealizedPriceImpact_DESC_NULLS_FIRST", unrealizedPriceImpact_DESC_NULLS_LAST = "unrealizedPriceImpact_DESC_NULLS_LAST" } export interface PositionTotalCollateralAmount { __typename?: "PositionTotalCollateralAmount"; amount: Scalars["BigInt"]["output"]; token: Scalars["String"]["output"]; } export interface PositionTotalCollateralAmountWhereInput { marketAddress?: InputMaybe; } export interface PositionVolumeByAllMarketsWhereInput { period?: InputMaybe; timestamp?: InputMaybe; } export interface PositionVolumeInfo { __typename?: "PositionVolumeInfo"; collateralToken: Scalars["String"]["output"]; id: Scalars["String"]["output"]; indexToken: Scalars["String"]["output"]; period: Scalars["String"]["output"]; timestamp: Scalars["Int"]["output"]; volumeUsd: Scalars["BigInt"]["output"]; } export interface PositionVolumeInfoEdge { __typename?: "PositionVolumeInfoEdge"; cursor: Scalars["String"]["output"]; node: PositionVolumeInfo; } export declare enum PositionVolumeInfoOrderByInput { collateralToken_ASC = "collateralToken_ASC", collateralToken_ASC_NULLS_FIRST = "collateralToken_ASC_NULLS_FIRST", collateralToken_ASC_NULLS_LAST = "collateralToken_ASC_NULLS_LAST", collateralToken_DESC = "collateralToken_DESC", collateralToken_DESC_NULLS_FIRST = "collateralToken_DESC_NULLS_FIRST", collateralToken_DESC_NULLS_LAST = "collateralToken_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", indexToken_ASC = "indexToken_ASC", indexToken_ASC_NULLS_FIRST = "indexToken_ASC_NULLS_FIRST", indexToken_ASC_NULLS_LAST = "indexToken_ASC_NULLS_LAST", indexToken_DESC = "indexToken_DESC", indexToken_DESC_NULLS_FIRST = "indexToken_DESC_NULLS_FIRST", indexToken_DESC_NULLS_LAST = "indexToken_DESC_NULLS_LAST", period_ASC = "period_ASC", period_ASC_NULLS_FIRST = "period_ASC_NULLS_FIRST", period_ASC_NULLS_LAST = "period_ASC_NULLS_LAST", period_DESC = "period_DESC", period_DESC_NULLS_FIRST = "period_DESC_NULLS_FIRST", period_DESC_NULLS_LAST = "period_DESC_NULLS_LAST", timestamp_ASC = "timestamp_ASC", timestamp_ASC_NULLS_FIRST = "timestamp_ASC_NULLS_FIRST", timestamp_ASC_NULLS_LAST = "timestamp_ASC_NULLS_LAST", timestamp_DESC = "timestamp_DESC", timestamp_DESC_NULLS_FIRST = "timestamp_DESC_NULLS_FIRST", timestamp_DESC_NULLS_LAST = "timestamp_DESC_NULLS_LAST", volumeUsd_ASC = "volumeUsd_ASC", volumeUsd_ASC_NULLS_FIRST = "volumeUsd_ASC_NULLS_FIRST", volumeUsd_ASC_NULLS_LAST = "volumeUsd_ASC_NULLS_LAST", volumeUsd_DESC = "volumeUsd_DESC", volumeUsd_DESC_NULLS_FIRST = "volumeUsd_DESC_NULLS_FIRST", volumeUsd_DESC_NULLS_LAST = "volumeUsd_DESC_NULLS_LAST" } export interface PositionVolumeInfoWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; collateralToken_contains?: InputMaybe; collateralToken_containsInsensitive?: InputMaybe; collateralToken_endsWith?: InputMaybe; collateralToken_eq?: InputMaybe; collateralToken_gt?: InputMaybe; collateralToken_gte?: InputMaybe; collateralToken_in?: InputMaybe>; collateralToken_isNull?: InputMaybe; collateralToken_lt?: InputMaybe; collateralToken_lte?: InputMaybe; collateralToken_not_contains?: InputMaybe; collateralToken_not_containsInsensitive?: InputMaybe; collateralToken_not_endsWith?: InputMaybe; collateralToken_not_eq?: InputMaybe; collateralToken_not_in?: InputMaybe>; collateralToken_not_startsWith?: InputMaybe; collateralToken_startsWith?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; indexToken_contains?: InputMaybe; indexToken_containsInsensitive?: InputMaybe; indexToken_endsWith?: InputMaybe; indexToken_eq?: InputMaybe; indexToken_gt?: InputMaybe; indexToken_gte?: InputMaybe; indexToken_in?: InputMaybe>; indexToken_isNull?: InputMaybe; indexToken_lt?: InputMaybe; indexToken_lte?: InputMaybe; indexToken_not_contains?: InputMaybe; indexToken_not_containsInsensitive?: InputMaybe; indexToken_not_endsWith?: InputMaybe; indexToken_not_eq?: InputMaybe; indexToken_not_in?: InputMaybe>; indexToken_not_startsWith?: InputMaybe; indexToken_startsWith?: InputMaybe; period_contains?: InputMaybe; period_containsInsensitive?: InputMaybe; period_endsWith?: InputMaybe; period_eq?: InputMaybe; period_gt?: InputMaybe; period_gte?: InputMaybe; period_in?: InputMaybe>; period_isNull?: InputMaybe; period_lt?: InputMaybe; period_lte?: InputMaybe; period_not_contains?: InputMaybe; period_not_containsInsensitive?: InputMaybe; period_not_endsWith?: InputMaybe; period_not_eq?: InputMaybe; period_not_in?: InputMaybe>; period_not_startsWith?: InputMaybe; period_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_isNull?: InputMaybe; timestamp_lt?: InputMaybe; timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; volumeUsd_eq?: InputMaybe; volumeUsd_gt?: InputMaybe; volumeUsd_gte?: InputMaybe; volumeUsd_in?: InputMaybe>; volumeUsd_isNull?: InputMaybe; volumeUsd_lt?: InputMaybe; volumeUsd_lte?: InputMaybe; volumeUsd_not_eq?: InputMaybe; volumeUsd_not_in?: InputMaybe>; } export interface PositionVolumeInfosConnection { __typename?: "PositionVolumeInfosConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface PositionWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; accountStat?: InputMaybe; accountStat_isNull?: InputMaybe; account_contains?: InputMaybe; account_containsInsensitive?: InputMaybe; account_endsWith?: InputMaybe; account_eq?: InputMaybe; account_gt?: InputMaybe; account_gte?: InputMaybe; account_in?: InputMaybe>; account_isNull?: InputMaybe; account_lt?: InputMaybe; account_lte?: InputMaybe; account_not_contains?: InputMaybe; account_not_containsInsensitive?: InputMaybe; account_not_endsWith?: InputMaybe; account_not_eq?: InputMaybe; account_not_in?: InputMaybe>; account_not_startsWith?: InputMaybe; account_startsWith?: InputMaybe; collateralAmount_eq?: InputMaybe; collateralAmount_gt?: InputMaybe; collateralAmount_gte?: InputMaybe; collateralAmount_in?: InputMaybe>; collateralAmount_isNull?: InputMaybe; collateralAmount_lt?: InputMaybe; collateralAmount_lte?: InputMaybe; collateralAmount_not_eq?: InputMaybe; collateralAmount_not_in?: InputMaybe>; collateralToken_contains?: InputMaybe; collateralToken_containsInsensitive?: InputMaybe; collateralToken_endsWith?: InputMaybe; collateralToken_eq?: InputMaybe; collateralToken_gt?: InputMaybe; collateralToken_gte?: InputMaybe; collateralToken_in?: InputMaybe>; collateralToken_isNull?: InputMaybe; collateralToken_lt?: InputMaybe; collateralToken_lte?: InputMaybe; collateralToken_not_contains?: InputMaybe; collateralToken_not_containsInsensitive?: InputMaybe; collateralToken_not_endsWith?: InputMaybe; collateralToken_not_eq?: InputMaybe; collateralToken_not_in?: InputMaybe>; collateralToken_not_startsWith?: InputMaybe; collateralToken_startsWith?: InputMaybe; entryPrice_eq?: InputMaybe; entryPrice_gt?: InputMaybe; entryPrice_gte?: InputMaybe; entryPrice_in?: InputMaybe>; entryPrice_isNull?: InputMaybe; entryPrice_lt?: InputMaybe; entryPrice_lte?: InputMaybe; entryPrice_not_eq?: InputMaybe; entryPrice_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; isLong_eq?: InputMaybe; isLong_isNull?: InputMaybe; isLong_not_eq?: InputMaybe; isSnapshot_eq?: InputMaybe; isSnapshot_isNull?: InputMaybe; isSnapshot_not_eq?: InputMaybe; leverage_eq?: InputMaybe; leverage_gt?: InputMaybe; leverage_gte?: InputMaybe; leverage_in?: InputMaybe>; leverage_isNull?: InputMaybe; leverage_lt?: InputMaybe; leverage_lte?: InputMaybe; leverage_not_eq?: InputMaybe; leverage_not_in?: InputMaybe>; market_contains?: InputMaybe; market_containsInsensitive?: InputMaybe; market_endsWith?: InputMaybe; market_eq?: InputMaybe; market_gt?: InputMaybe; market_gte?: InputMaybe; market_in?: InputMaybe>; market_isNull?: InputMaybe; market_lt?: InputMaybe; market_lte?: InputMaybe; market_not_contains?: InputMaybe; market_not_containsInsensitive?: InputMaybe; market_not_endsWith?: InputMaybe; market_not_eq?: InputMaybe; market_not_in?: InputMaybe>; market_not_startsWith?: InputMaybe; market_startsWith?: InputMaybe; maxCapital_eq?: InputMaybe; maxCapital_gt?: InputMaybe; maxCapital_gte?: InputMaybe; maxCapital_in?: InputMaybe>; maxCapital_isNull?: InputMaybe; maxCapital_lt?: InputMaybe; maxCapital_lte?: InputMaybe; maxCapital_not_eq?: InputMaybe; maxCapital_not_in?: InputMaybe>; maxSize_eq?: InputMaybe; maxSize_gt?: InputMaybe; maxSize_gte?: InputMaybe; maxSize_in?: InputMaybe>; maxSize_isNull?: InputMaybe; maxSize_lt?: InputMaybe; maxSize_lte?: InputMaybe; maxSize_not_eq?: InputMaybe; maxSize_not_in?: InputMaybe>; openedAt_eq?: InputMaybe; openedAt_gt?: InputMaybe; openedAt_gte?: InputMaybe; openedAt_in?: InputMaybe>; openedAt_isNull?: InputMaybe; openedAt_lt?: InputMaybe; openedAt_lte?: InputMaybe; openedAt_not_eq?: InputMaybe; openedAt_not_in?: InputMaybe>; positionKey_contains?: InputMaybe; positionKey_containsInsensitive?: InputMaybe; positionKey_endsWith?: InputMaybe; positionKey_eq?: InputMaybe; positionKey_gt?: InputMaybe; positionKey_gte?: InputMaybe; positionKey_in?: InputMaybe>; positionKey_isNull?: InputMaybe; positionKey_lt?: InputMaybe; positionKey_lte?: InputMaybe; positionKey_not_contains?: InputMaybe; positionKey_not_containsInsensitive?: InputMaybe; positionKey_not_endsWith?: InputMaybe; positionKey_not_eq?: InputMaybe; positionKey_not_in?: InputMaybe>; positionKey_not_startsWith?: InputMaybe; positionKey_startsWith?: InputMaybe; qualifyingPnl_eq?: InputMaybe; qualifyingPnl_gt?: InputMaybe; qualifyingPnl_gte?: InputMaybe; qualifyingPnl_in?: InputMaybe>; qualifyingPnl_isNull?: InputMaybe; qualifyingPnl_lt?: InputMaybe; qualifyingPnl_lte?: InputMaybe; qualifyingPnl_not_eq?: InputMaybe; qualifyingPnl_not_in?: InputMaybe>; realizedFees_eq?: InputMaybe; realizedFees_gt?: InputMaybe; realizedFees_gte?: InputMaybe; realizedFees_in?: InputMaybe>; realizedFees_isNull?: InputMaybe; realizedFees_lt?: InputMaybe; realizedFees_lte?: InputMaybe; realizedFees_not_eq?: InputMaybe; realizedFees_not_in?: InputMaybe>; realizedPnl_eq?: InputMaybe; realizedPnl_gt?: InputMaybe; realizedPnl_gte?: InputMaybe; realizedPnl_in?: InputMaybe>; realizedPnl_isNull?: InputMaybe; realizedPnl_lt?: InputMaybe; realizedPnl_lte?: InputMaybe; realizedPnl_not_eq?: InputMaybe; realizedPnl_not_in?: InputMaybe>; realizedPriceImpact_eq?: InputMaybe; realizedPriceImpact_gt?: InputMaybe; realizedPriceImpact_gte?: InputMaybe; realizedPriceImpact_in?: InputMaybe>; realizedPriceImpact_isNull?: InputMaybe; realizedPriceImpact_lt?: InputMaybe; realizedPriceImpact_lte?: InputMaybe; realizedPriceImpact_not_eq?: InputMaybe; realizedPriceImpact_not_in?: InputMaybe>; sizeInTokens_eq?: InputMaybe; sizeInTokens_gt?: InputMaybe; sizeInTokens_gte?: InputMaybe; sizeInTokens_in?: InputMaybe>; sizeInTokens_isNull?: InputMaybe; sizeInTokens_lt?: InputMaybe; sizeInTokens_lte?: InputMaybe; sizeInTokens_not_eq?: InputMaybe; sizeInTokens_not_in?: InputMaybe>; sizeInUsd_eq?: InputMaybe; sizeInUsd_gt?: InputMaybe; sizeInUsd_gte?: InputMaybe; sizeInUsd_in?: InputMaybe>; sizeInUsd_isNull?: InputMaybe; sizeInUsd_lt?: InputMaybe; sizeInUsd_lte?: InputMaybe; sizeInUsd_not_eq?: InputMaybe; sizeInUsd_not_in?: InputMaybe>; snapshotTimestamp_eq?: InputMaybe; snapshotTimestamp_gt?: InputMaybe; snapshotTimestamp_gte?: InputMaybe; snapshotTimestamp_in?: InputMaybe>; snapshotTimestamp_isNull?: InputMaybe; snapshotTimestamp_lt?: InputMaybe; snapshotTimestamp_lte?: InputMaybe; snapshotTimestamp_not_eq?: InputMaybe; snapshotTimestamp_not_in?: InputMaybe>; unrealizedFees_eq?: InputMaybe; unrealizedFees_gt?: InputMaybe; unrealizedFees_gte?: InputMaybe; unrealizedFees_in?: InputMaybe>; unrealizedFees_isNull?: InputMaybe; unrealizedFees_lt?: InputMaybe; unrealizedFees_lte?: InputMaybe; unrealizedFees_not_eq?: InputMaybe; unrealizedFees_not_in?: InputMaybe>; unrealizedPnl_eq?: InputMaybe; unrealizedPnl_gt?: InputMaybe; unrealizedPnl_gte?: InputMaybe; unrealizedPnl_in?: InputMaybe>; unrealizedPnl_isNull?: InputMaybe; unrealizedPnl_lt?: InputMaybe; unrealizedPnl_lte?: InputMaybe; unrealizedPnl_not_eq?: InputMaybe; unrealizedPnl_not_in?: InputMaybe>; unrealizedPriceImpact_eq?: InputMaybe; unrealizedPriceImpact_gt?: InputMaybe; unrealizedPriceImpact_gte?: InputMaybe; unrealizedPriceImpact_in?: InputMaybe>; unrealizedPriceImpact_isNull?: InputMaybe; unrealizedPriceImpact_lt?: InputMaybe; unrealizedPriceImpact_lte?: InputMaybe; unrealizedPriceImpact_not_eq?: InputMaybe; unrealizedPriceImpact_not_in?: InputMaybe>; } export interface PositionsConnection { __typename?: "PositionsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface Price { __typename?: "Price"; id: Scalars["String"]["output"]; isSnapshot: Scalars["Boolean"]["output"]; maxPrice: Scalars["BigInt"]["output"]; minPrice: Scalars["BigInt"]["output"]; snapshotTimestamp?: Maybe; timestamp: Scalars["Int"]["output"]; token: Scalars["String"]["output"]; type: PriceType; } export interface PriceEdge { __typename?: "PriceEdge"; cursor: Scalars["String"]["output"]; node: Price; } export declare enum PriceOrderByInput { id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", isSnapshot_ASC = "isSnapshot_ASC", isSnapshot_ASC_NULLS_FIRST = "isSnapshot_ASC_NULLS_FIRST", isSnapshot_ASC_NULLS_LAST = "isSnapshot_ASC_NULLS_LAST", isSnapshot_DESC = "isSnapshot_DESC", isSnapshot_DESC_NULLS_FIRST = "isSnapshot_DESC_NULLS_FIRST", isSnapshot_DESC_NULLS_LAST = "isSnapshot_DESC_NULLS_LAST", maxPrice_ASC = "maxPrice_ASC", maxPrice_ASC_NULLS_FIRST = "maxPrice_ASC_NULLS_FIRST", maxPrice_ASC_NULLS_LAST = "maxPrice_ASC_NULLS_LAST", maxPrice_DESC = "maxPrice_DESC", maxPrice_DESC_NULLS_FIRST = "maxPrice_DESC_NULLS_FIRST", maxPrice_DESC_NULLS_LAST = "maxPrice_DESC_NULLS_LAST", minPrice_ASC = "minPrice_ASC", minPrice_ASC_NULLS_FIRST = "minPrice_ASC_NULLS_FIRST", minPrice_ASC_NULLS_LAST = "minPrice_ASC_NULLS_LAST", minPrice_DESC = "minPrice_DESC", minPrice_DESC_NULLS_FIRST = "minPrice_DESC_NULLS_FIRST", minPrice_DESC_NULLS_LAST = "minPrice_DESC_NULLS_LAST", snapshotTimestamp_ASC = "snapshotTimestamp_ASC", snapshotTimestamp_ASC_NULLS_FIRST = "snapshotTimestamp_ASC_NULLS_FIRST", snapshotTimestamp_ASC_NULLS_LAST = "snapshotTimestamp_ASC_NULLS_LAST", snapshotTimestamp_DESC = "snapshotTimestamp_DESC", snapshotTimestamp_DESC_NULLS_FIRST = "snapshotTimestamp_DESC_NULLS_FIRST", snapshotTimestamp_DESC_NULLS_LAST = "snapshotTimestamp_DESC_NULLS_LAST", timestamp_ASC = "timestamp_ASC", timestamp_ASC_NULLS_FIRST = "timestamp_ASC_NULLS_FIRST", timestamp_ASC_NULLS_LAST = "timestamp_ASC_NULLS_LAST", timestamp_DESC = "timestamp_DESC", timestamp_DESC_NULLS_FIRST = "timestamp_DESC_NULLS_FIRST", timestamp_DESC_NULLS_LAST = "timestamp_DESC_NULLS_LAST", token_ASC = "token_ASC", token_ASC_NULLS_FIRST = "token_ASC_NULLS_FIRST", token_ASC_NULLS_LAST = "token_ASC_NULLS_LAST", token_DESC = "token_DESC", token_DESC_NULLS_FIRST = "token_DESC_NULLS_FIRST", token_DESC_NULLS_LAST = "token_DESC_NULLS_LAST", type_ASC = "type_ASC", type_ASC_NULLS_FIRST = "type_ASC_NULLS_FIRST", type_ASC_NULLS_LAST = "type_ASC_NULLS_LAST", type_DESC = "type_DESC", type_DESC_NULLS_FIRST = "type_DESC_NULLS_FIRST", type_DESC_NULLS_LAST = "type_DESC_NULLS_LAST" } export declare enum PriceType { glv = "glv", gm = "gm", onchainFeed = "onchainFeed", v2 = "v2" } export interface PriceWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; isSnapshot_eq?: InputMaybe; isSnapshot_isNull?: InputMaybe; isSnapshot_not_eq?: InputMaybe; maxPrice_eq?: InputMaybe; maxPrice_gt?: InputMaybe; maxPrice_gte?: InputMaybe; maxPrice_in?: InputMaybe>; maxPrice_isNull?: InputMaybe; maxPrice_lt?: InputMaybe; maxPrice_lte?: InputMaybe; maxPrice_not_eq?: InputMaybe; maxPrice_not_in?: InputMaybe>; minPrice_eq?: InputMaybe; minPrice_gt?: InputMaybe; minPrice_gte?: InputMaybe; minPrice_in?: InputMaybe>; minPrice_isNull?: InputMaybe; minPrice_lt?: InputMaybe; minPrice_lte?: InputMaybe; minPrice_not_eq?: InputMaybe; minPrice_not_in?: InputMaybe>; snapshotTimestamp_eq?: InputMaybe; snapshotTimestamp_gt?: InputMaybe; snapshotTimestamp_gte?: InputMaybe; snapshotTimestamp_in?: InputMaybe>; snapshotTimestamp_isNull?: InputMaybe; snapshotTimestamp_lt?: InputMaybe; snapshotTimestamp_lte?: InputMaybe; snapshotTimestamp_not_eq?: InputMaybe; snapshotTimestamp_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_isNull?: InputMaybe; timestamp_lt?: InputMaybe; timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; token_contains?: InputMaybe; token_containsInsensitive?: InputMaybe; token_endsWith?: InputMaybe; token_eq?: InputMaybe; token_gt?: InputMaybe; token_gte?: InputMaybe; token_in?: InputMaybe>; token_isNull?: InputMaybe; token_lt?: InputMaybe; token_lte?: InputMaybe; token_not_contains?: InputMaybe; token_not_containsInsensitive?: InputMaybe; token_not_endsWith?: InputMaybe; token_not_eq?: InputMaybe; token_not_in?: InputMaybe>; token_not_startsWith?: InputMaybe; token_startsWith?: InputMaybe; type_eq?: InputMaybe; type_in?: InputMaybe>; type_isNull?: InputMaybe; type_not_eq?: InputMaybe; type_not_in?: InputMaybe>; } export interface PricesConnection { __typename?: "PricesConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface ProcessorStatus { __typename?: "ProcessorStatus"; id: Scalars["String"]["output"]; lastParsedBlockNumber: Scalars["Int"]["output"]; lastParsedBlockTimestamp: Scalars["Int"]["output"]; lastProcessorCallTimestamp: Scalars["Int"]["output"]; } export interface ProcessorStatusEdge { __typename?: "ProcessorStatusEdge"; cursor: Scalars["String"]["output"]; node: ProcessorStatus; } export declare enum ProcessorStatusOrderByInput { id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", lastParsedBlockNumber_ASC = "lastParsedBlockNumber_ASC", lastParsedBlockNumber_ASC_NULLS_FIRST = "lastParsedBlockNumber_ASC_NULLS_FIRST", lastParsedBlockNumber_ASC_NULLS_LAST = "lastParsedBlockNumber_ASC_NULLS_LAST", lastParsedBlockNumber_DESC = "lastParsedBlockNumber_DESC", lastParsedBlockNumber_DESC_NULLS_FIRST = "lastParsedBlockNumber_DESC_NULLS_FIRST", lastParsedBlockNumber_DESC_NULLS_LAST = "lastParsedBlockNumber_DESC_NULLS_LAST", lastParsedBlockTimestamp_ASC = "lastParsedBlockTimestamp_ASC", lastParsedBlockTimestamp_ASC_NULLS_FIRST = "lastParsedBlockTimestamp_ASC_NULLS_FIRST", lastParsedBlockTimestamp_ASC_NULLS_LAST = "lastParsedBlockTimestamp_ASC_NULLS_LAST", lastParsedBlockTimestamp_DESC = "lastParsedBlockTimestamp_DESC", lastParsedBlockTimestamp_DESC_NULLS_FIRST = "lastParsedBlockTimestamp_DESC_NULLS_FIRST", lastParsedBlockTimestamp_DESC_NULLS_LAST = "lastParsedBlockTimestamp_DESC_NULLS_LAST", lastProcessorCallTimestamp_ASC = "lastProcessorCallTimestamp_ASC", lastProcessorCallTimestamp_ASC_NULLS_FIRST = "lastProcessorCallTimestamp_ASC_NULLS_FIRST", lastProcessorCallTimestamp_ASC_NULLS_LAST = "lastProcessorCallTimestamp_ASC_NULLS_LAST", lastProcessorCallTimestamp_DESC = "lastProcessorCallTimestamp_DESC", lastProcessorCallTimestamp_DESC_NULLS_FIRST = "lastProcessorCallTimestamp_DESC_NULLS_FIRST", lastProcessorCallTimestamp_DESC_NULLS_LAST = "lastProcessorCallTimestamp_DESC_NULLS_LAST" } export interface ProcessorStatusWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; lastParsedBlockNumber_eq?: InputMaybe; lastParsedBlockNumber_gt?: InputMaybe; lastParsedBlockNumber_gte?: InputMaybe; lastParsedBlockNumber_in?: InputMaybe>; lastParsedBlockNumber_isNull?: InputMaybe; lastParsedBlockNumber_lt?: InputMaybe; lastParsedBlockNumber_lte?: InputMaybe; lastParsedBlockNumber_not_eq?: InputMaybe; lastParsedBlockNumber_not_in?: InputMaybe>; lastParsedBlockTimestamp_eq?: InputMaybe; lastParsedBlockTimestamp_gt?: InputMaybe; lastParsedBlockTimestamp_gte?: InputMaybe; lastParsedBlockTimestamp_in?: InputMaybe>; lastParsedBlockTimestamp_isNull?: InputMaybe; lastParsedBlockTimestamp_lt?: InputMaybe; lastParsedBlockTimestamp_lte?: InputMaybe; lastParsedBlockTimestamp_not_eq?: InputMaybe; lastParsedBlockTimestamp_not_in?: InputMaybe>; lastProcessorCallTimestamp_eq?: InputMaybe; lastProcessorCallTimestamp_gt?: InputMaybe; lastProcessorCallTimestamp_gte?: InputMaybe; lastProcessorCallTimestamp_in?: InputMaybe>; lastProcessorCallTimestamp_isNull?: InputMaybe; lastProcessorCallTimestamp_lt?: InputMaybe; lastProcessorCallTimestamp_lte?: InputMaybe; lastProcessorCallTimestamp_not_eq?: InputMaybe; lastProcessorCallTimestamp_not_in?: InputMaybe>; } export interface ProcessorStatusesConnection { __typename?: "ProcessorStatusesConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface Query { __typename?: "Query"; accountPnlHistoryStats: Array; accountPnlSummaryStats: Array; accountStatById?: Maybe; accountStats: Array; accountStatsConnection: AccountStatsConnection; affiliateReferralTradeStatsByHourById?: Maybe; affiliateReferralTradeStatsByHours: Array; affiliateReferralTradeStatsByHoursConnection: AffiliateReferralTradeStatsByHoursConnection; affiliateStats: AffiliateStatsResponse; affiliateTraderStatsByHourById?: Maybe; affiliateTraderStatsByHours: Array; affiliateTraderStatsByHoursConnection: AffiliateTraderStatsByHoursConnection; annualizedPerformance: Array; aprSnapshotById?: Maybe; aprSnapshots: Array; aprSnapshotsConnection: AprSnapshotsConnection; borrowingRateSnapshotById?: Maybe; borrowingRateSnapshots: Array; borrowingRateSnapshotsConnection: BorrowingRateSnapshotsConnection; claimActionById?: Maybe; claimActions: Array; claimActionsConnection: ClaimActionsConnection; claimRefById?: Maybe; claimRefs: Array; claimRefsConnection: ClaimRefsConnection; claimableAmountById?: Maybe; claimableAmounts: Array; claimableAmountsConnection: ClaimableAmountsConnection; claimableCollateralById?: Maybe; claimableCollateralGroupById?: Maybe; claimableCollateralGroups: Array; claimableCollateralGroupsConnection: ClaimableCollateralGroupsConnection; claimableCollaterals: Array; claimableCollateralsConnection: ClaimableCollateralsConnection; claimableFundingFeeInfoById?: Maybe; claimableFundingFeeInfos: Array; claimableFundingFeeInfosConnection: ClaimableFundingFeeInfosConnection; collectedFeesInfoById?: Maybe; collectedFeesInfos: Array; collectedFeesInfosConnection: CollectedFeesInfosConnection; cumulativePnlById?: Maybe; cumulativePnls: Array; cumulativePnlsConnection: CumulativePnlsConnection; cumulativePoolValueById?: Maybe; cumulativePoolValues: Array; cumulativePoolValuesConnection: CumulativePoolValuesConnection; distributionById?: Maybe; distributions: Array; distributionsConnection: DistributionsConnection; fundingRateSnapshotById?: Maybe; fundingRateSnapshots: Array; fundingRateSnapshotsConnection: FundingRateSnapshotsConnection; glvById?: Maybe; glvs: Array; glvsAprByPeriod: Array; glvsConnection: GlvsConnection; glvsPnlAprByPeriod: Array; marketById?: Maybe; marketInfoById?: Maybe; marketInfos: Array; marketInfosConnection: MarketInfosConnection; markets: Array; marketsAprByPeriod: Array; marketsConnection: MarketsConnection; marketsNetRatesByPeriod: Array; marketsPnlAprByPeriod: Array; multichainFunding: Array; multichainFundingReceiveEventById?: Maybe; multichainFundingReceiveEvents: Array; multichainFundingReceiveEventsConnection: MultichainFundingReceiveEventsConnection; multichainFundingSendEventById?: Maybe; multichainFundingSendEvents: Array; multichainFundingSendEventsConnection: MultichainFundingSendEventsConnection; multichainSamechainFundingEventById?: Maybe; multichainSamechainFundingEvents: Array; multichainSamechainFundingEventsConnection: MultichainSamechainFundingEventsConnection; networkStakingPowerById?: Maybe; networkStakingPowers: Array; networkStakingPowersConnection: NetworkStakingPowersConnection; onChainSettingById?: Maybe; onChainSettings: Array; onChainSettingsConnection: OnChainSettingsConnection; orderById?: Maybe; orders: Array; ordersConnection: OrdersConnection; performanceSnapshots: Array; periodAccountStats: Array; periodAccountVolume: AccountVolumeStatObject; platformStats: Array; platformStatsById?: Maybe; platformStatsConnection: PlatformStatsConnection; pnlAprSnapshotById?: Maybe; pnlAprSnapshots: Array; pnlAprSnapshotsConnection: PnlAprSnapshotsConnection; positionById?: Maybe; positionChangeById?: Maybe; positionChanges: Array; positionChangesConnection: PositionChangesConnection; positionFeesEntities: Array; positionFeesEntitiesConnection: PositionFeesEntitiesConnection; positionFeesEntityById?: Maybe; positionFeesInfoWithPeriodById?: Maybe; positionFeesInfoWithPeriods: Array; positionFeesInfoWithPeriodsConnection: PositionFeesInfoWithPeriodsConnection; positionTotalCollateralAmount: Array; positionVolumeInfoById?: Maybe; positionVolumeInfos: Array; positionVolumeInfosConnection: PositionVolumeInfosConnection; positions: Array; positionsConnection: PositionsConnection; positionsVolume: Array; priceById?: Maybe; prices: Array; pricesConnection: PricesConnection; processorStatusById?: Maybe; processorStatuses: Array; processorStatusesConnection: ProcessorStatusesConnection; referralCodeOwnerById?: Maybe; referralCodeOwners: Array; referralCodeOwnersConnection: ReferralCodeOwnersConnection; squidStatus: SquidStatus; stakingPowerById?: Maybe; stakingPowers: Array; stakingPowersConnection: StakingPowersConnection; swapFeesInfoById?: Maybe; swapFeesInfoWithPeriodById?: Maybe; swapFeesInfoWithPeriods: Array; swapFeesInfoWithPeriodsConnection: SwapFeesInfoWithPeriodsConnection; swapFeesInfos: Array; swapFeesInfosConnection: SwapFeesInfosConnection; swapInfoById?: Maybe; swapInfos: Array; swapInfosConnection: SwapInfosConnection; swapVolumeInfoById?: Maybe; swapVolumeInfos: Array; swapVolumeInfosConnection: SwapVolumeInfosConnection; totalPositionChanges: Scalars["Float"]["output"]; tradeActionById?: Maybe; tradeActions: Array; tradeActionsConnection: TradeActionsConnection; traderReferralById?: Maybe; traderReferralStats: TraderReferralStatsResponse; traderReferralTradeStatsByHourById?: Maybe; traderReferralTradeStatsByHours: Array; traderReferralTradeStatsByHoursConnection: TraderReferralTradeStatsByHoursConnection; traderReferrals: Array; traderReferralsConnection: TraderReferralsConnection; volumeInfoById?: Maybe; volumeInfos: Array; volumeInfosConnection: VolumeInfosConnection; } export interface QueryaccountPnlHistoryStatsArgs { account: Scalars["String"]["input"]; from?: InputMaybe; } export interface QueryaccountPnlSummaryStatsArgs { account: Scalars["String"]["input"]; } export interface QueryaccountStatByIdArgs { id: Scalars["String"]["input"]; } export interface QueryaccountStatsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryaccountStatsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryaffiliateReferralTradeStatsByHourByIdArgs { id: Scalars["String"]["input"]; } export interface QueryaffiliateReferralTradeStatsByHoursArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryaffiliateReferralTradeStatsByHoursConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryaffiliateStatsArgs { where?: InputMaybe; } export interface QueryaffiliateTraderStatsByHourByIdArgs { id: Scalars["String"]["input"]; } export interface QueryaffiliateTraderStatsByHoursArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryaffiliateTraderStatsByHoursConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryannualizedPerformanceArgs { where?: InputMaybe; } export interface QueryaprSnapshotByIdArgs { id: Scalars["String"]["input"]; } export interface QueryaprSnapshotsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryaprSnapshotsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryborrowingRateSnapshotByIdArgs { id: Scalars["String"]["input"]; } export interface QueryborrowingRateSnapshotsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryborrowingRateSnapshotsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryclaimActionByIdArgs { id: Scalars["String"]["input"]; } export interface QueryclaimActionsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryclaimActionsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryclaimRefByIdArgs { id: Scalars["String"]["input"]; } export interface QueryclaimRefsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryclaimRefsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryclaimableAmountByIdArgs { id: Scalars["String"]["input"]; } export interface QueryclaimableAmountsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryclaimableAmountsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryclaimableCollateralByIdArgs { id: Scalars["String"]["input"]; } export interface QueryclaimableCollateralGroupByIdArgs { id: Scalars["String"]["input"]; } export interface QueryclaimableCollateralGroupsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryclaimableCollateralGroupsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryclaimableCollateralsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryclaimableCollateralsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryclaimableFundingFeeInfoByIdArgs { id: Scalars["String"]["input"]; } export interface QueryclaimableFundingFeeInfosArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryclaimableFundingFeeInfosConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerycollectedFeesInfoByIdArgs { id: Scalars["String"]["input"]; } export interface QuerycollectedFeesInfosArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerycollectedFeesInfosConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerycumulativePnlByIdArgs { id: Scalars["String"]["input"]; } export interface QuerycumulativePnlsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerycumulativePnlsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerycumulativePoolValueByIdArgs { id: Scalars["String"]["input"]; } export interface QuerycumulativePoolValuesArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerycumulativePoolValuesConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerydistributionByIdArgs { id: Scalars["String"]["input"]; } export interface QuerydistributionsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerydistributionsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryfundingRateSnapshotByIdArgs { id: Scalars["String"]["input"]; } export interface QueryfundingRateSnapshotsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryfundingRateSnapshotsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryglvByIdArgs { id: Scalars["String"]["input"]; } export interface QueryglvsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryglvsAprByPeriodArgs { where?: InputMaybe; } export interface QueryglvsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryglvsPnlAprByPeriodArgs { where?: InputMaybe; } export interface QuerymarketByIdArgs { id: Scalars["String"]["input"]; } export interface QuerymarketInfoByIdArgs { id: Scalars["String"]["input"]; } export interface QuerymarketInfosArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerymarketInfosConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerymarketsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerymarketsAprByPeriodArgs { where?: InputMaybe; } export interface QuerymarketsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerymarketsNetRatesByPeriodArgs { where?: InputMaybe; } export interface QuerymarketsPnlAprByPeriodArgs { where?: InputMaybe; } export interface QuerymultichainFundingArgs { where?: InputMaybe; } export interface QuerymultichainFundingReceiveEventByIdArgs { id: Scalars["String"]["input"]; } export interface QuerymultichainFundingReceiveEventsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerymultichainFundingReceiveEventsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerymultichainFundingSendEventByIdArgs { id: Scalars["String"]["input"]; } export interface QuerymultichainFundingSendEventsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerymultichainFundingSendEventsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerymultichainSamechainFundingEventByIdArgs { id: Scalars["String"]["input"]; } export interface QuerymultichainSamechainFundingEventsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerymultichainSamechainFundingEventsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerynetworkStakingPowerByIdArgs { id: Scalars["String"]["input"]; } export interface QuerynetworkStakingPowersArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerynetworkStakingPowersConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryonChainSettingByIdArgs { id: Scalars["String"]["input"]; } export interface QueryonChainSettingsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryonChainSettingsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryorderByIdArgs { id: Scalars["String"]["input"]; } export interface QueryordersArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryordersConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryperformanceSnapshotsArgs { where?: InputMaybe; } export interface QueryperiodAccountStatsArgs { limit?: InputMaybe; offset?: InputMaybe; where?: InputMaybe; } export interface QueryperiodAccountVolumeArgs { where?: InputMaybe; } export interface QueryplatformStatsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryplatformStatsByIdArgs { id: Scalars["String"]["input"]; } export interface QueryplatformStatsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerypnlAprSnapshotByIdArgs { id: Scalars["String"]["input"]; } export interface QuerypnlAprSnapshotsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerypnlAprSnapshotsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerypositionByIdArgs { id: Scalars["String"]["input"]; } export interface QuerypositionChangeByIdArgs { id: Scalars["String"]["input"]; } export interface QuerypositionChangesArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerypositionChangesConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerypositionFeesEntitiesArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerypositionFeesEntitiesConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerypositionFeesEntityByIdArgs { id: Scalars["String"]["input"]; } export interface QuerypositionFeesInfoWithPeriodByIdArgs { id: Scalars["String"]["input"]; } export interface QuerypositionFeesInfoWithPeriodsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerypositionFeesInfoWithPeriodsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerypositionTotalCollateralAmountArgs { where?: InputMaybe; } export interface QuerypositionVolumeInfoByIdArgs { id: Scalars["String"]["input"]; } export interface QuerypositionVolumeInfosArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerypositionVolumeInfosConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerypositionsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerypositionsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerypositionsVolumeArgs { where?: InputMaybe; } export interface QuerypriceByIdArgs { id: Scalars["String"]["input"]; } export interface QuerypricesArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerypricesConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryprocessorStatusByIdArgs { id: Scalars["String"]["input"]; } export interface QueryprocessorStatusesArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryprocessorStatusesConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryreferralCodeOwnerByIdArgs { id: Scalars["String"]["input"]; } export interface QueryreferralCodeOwnersArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryreferralCodeOwnersConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerystakingPowerByIdArgs { id: Scalars["String"]["input"]; } export interface QuerystakingPowersArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerystakingPowersConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryswapFeesInfoByIdArgs { id: Scalars["String"]["input"]; } export interface QueryswapFeesInfoWithPeriodByIdArgs { id: Scalars["String"]["input"]; } export interface QueryswapFeesInfoWithPeriodsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryswapFeesInfoWithPeriodsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryswapFeesInfosArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryswapFeesInfosConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryswapInfoByIdArgs { id: Scalars["String"]["input"]; } export interface QueryswapInfosArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryswapInfosConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryswapVolumeInfoByIdArgs { id: Scalars["String"]["input"]; } export interface QueryswapVolumeInfosArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryswapVolumeInfosConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerytradeActionByIdArgs { id: Scalars["String"]["input"]; } export interface QuerytradeActionsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerytradeActionsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerytraderReferralByIdArgs { id: Scalars["String"]["input"]; } export interface QuerytraderReferralStatsArgs { where?: InputMaybe; } export interface QuerytraderReferralTradeStatsByHourByIdArgs { id: Scalars["String"]["input"]; } export interface QuerytraderReferralTradeStatsByHoursArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerytraderReferralTradeStatsByHoursConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QuerytraderReferralsArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QuerytraderReferralsConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface QueryvolumeInfoByIdArgs { id: Scalars["String"]["input"]; } export interface QueryvolumeInfosArgs { limit?: InputMaybe; offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface QueryvolumeInfosConnectionArgs { after?: InputMaybe; first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface ReferralCodeOwner { __typename?: "ReferralCodeOwner"; id: Scalars["String"]["output"]; owner: Scalars["String"]["output"]; updatedAtBlock: Scalars["Int"]["output"]; updatedAtTimestamp: Scalars["Int"]["output"]; updatedTxnHash: Scalars["String"]["output"]; } export interface ReferralCodeOwnerEdge { __typename?: "ReferralCodeOwnerEdge"; cursor: Scalars["String"]["output"]; node: ReferralCodeOwner; } export declare enum ReferralCodeOwnerOrderByInput { id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", owner_ASC = "owner_ASC", owner_ASC_NULLS_FIRST = "owner_ASC_NULLS_FIRST", owner_ASC_NULLS_LAST = "owner_ASC_NULLS_LAST", owner_DESC = "owner_DESC", owner_DESC_NULLS_FIRST = "owner_DESC_NULLS_FIRST", owner_DESC_NULLS_LAST = "owner_DESC_NULLS_LAST", updatedAtBlock_ASC = "updatedAtBlock_ASC", updatedAtBlock_ASC_NULLS_FIRST = "updatedAtBlock_ASC_NULLS_FIRST", updatedAtBlock_ASC_NULLS_LAST = "updatedAtBlock_ASC_NULLS_LAST", updatedAtBlock_DESC = "updatedAtBlock_DESC", updatedAtBlock_DESC_NULLS_FIRST = "updatedAtBlock_DESC_NULLS_FIRST", updatedAtBlock_DESC_NULLS_LAST = "updatedAtBlock_DESC_NULLS_LAST", updatedAtTimestamp_ASC = "updatedAtTimestamp_ASC", updatedAtTimestamp_ASC_NULLS_FIRST = "updatedAtTimestamp_ASC_NULLS_FIRST", updatedAtTimestamp_ASC_NULLS_LAST = "updatedAtTimestamp_ASC_NULLS_LAST", updatedAtTimestamp_DESC = "updatedAtTimestamp_DESC", updatedAtTimestamp_DESC_NULLS_FIRST = "updatedAtTimestamp_DESC_NULLS_FIRST", updatedAtTimestamp_DESC_NULLS_LAST = "updatedAtTimestamp_DESC_NULLS_LAST", updatedTxnHash_ASC = "updatedTxnHash_ASC", updatedTxnHash_ASC_NULLS_FIRST = "updatedTxnHash_ASC_NULLS_FIRST", updatedTxnHash_ASC_NULLS_LAST = "updatedTxnHash_ASC_NULLS_LAST", updatedTxnHash_DESC = "updatedTxnHash_DESC", updatedTxnHash_DESC_NULLS_FIRST = "updatedTxnHash_DESC_NULLS_FIRST", updatedTxnHash_DESC_NULLS_LAST = "updatedTxnHash_DESC_NULLS_LAST" } export interface ReferralCodeOwnerWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; owner_contains?: InputMaybe; owner_containsInsensitive?: InputMaybe; owner_endsWith?: InputMaybe; owner_eq?: InputMaybe; owner_gt?: InputMaybe; owner_gte?: InputMaybe; owner_in?: InputMaybe>; owner_isNull?: InputMaybe; owner_lt?: InputMaybe; owner_lte?: InputMaybe; owner_not_contains?: InputMaybe; owner_not_containsInsensitive?: InputMaybe; owner_not_endsWith?: InputMaybe; owner_not_eq?: InputMaybe; owner_not_in?: InputMaybe>; owner_not_startsWith?: InputMaybe; owner_startsWith?: InputMaybe; updatedAtBlock_eq?: InputMaybe; updatedAtBlock_gt?: InputMaybe; updatedAtBlock_gte?: InputMaybe; updatedAtBlock_in?: InputMaybe>; updatedAtBlock_isNull?: InputMaybe; updatedAtBlock_lt?: InputMaybe; updatedAtBlock_lte?: InputMaybe; updatedAtBlock_not_eq?: InputMaybe; updatedAtBlock_not_in?: InputMaybe>; updatedAtTimestamp_eq?: InputMaybe; updatedAtTimestamp_gt?: InputMaybe; updatedAtTimestamp_gte?: InputMaybe; updatedAtTimestamp_in?: InputMaybe>; updatedAtTimestamp_isNull?: InputMaybe; updatedAtTimestamp_lt?: InputMaybe; updatedAtTimestamp_lte?: InputMaybe; updatedAtTimestamp_not_eq?: InputMaybe; updatedAtTimestamp_not_in?: InputMaybe>; updatedTxnHash_contains?: InputMaybe; updatedTxnHash_containsInsensitive?: InputMaybe; updatedTxnHash_endsWith?: InputMaybe; updatedTxnHash_eq?: InputMaybe; updatedTxnHash_gt?: InputMaybe; updatedTxnHash_gte?: InputMaybe; updatedTxnHash_in?: InputMaybe>; updatedTxnHash_isNull?: InputMaybe; updatedTxnHash_lt?: InputMaybe; updatedTxnHash_lte?: InputMaybe; updatedTxnHash_not_contains?: InputMaybe; updatedTxnHash_not_containsInsensitive?: InputMaybe; updatedTxnHash_not_endsWith?: InputMaybe; updatedTxnHash_not_eq?: InputMaybe; updatedTxnHash_not_in?: InputMaybe>; updatedTxnHash_not_startsWith?: InputMaybe; updatedTxnHash_startsWith?: InputMaybe; } export interface ReferralCodeOwnersConnection { __typename?: "ReferralCodeOwnersConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface SquidStatus { __typename?: "SquidStatus"; finalizedHeight: Scalars["Int"]["output"]; height: Scalars["Int"]["output"]; } export interface StakingPower { __typename?: "StakingPower"; accumulatedPower: Scalars["BigInt"]["output"]; currentStakedBalance: Scalars["BigInt"]["output"]; historicalMaxStaked?: Maybe; id: Scalars["String"]["output"]; lastPowerResetAt?: Maybe; lastUpdateTimestamp: Scalars["Int"]["output"]; powerResetCount: Scalars["Int"]["output"]; } export interface StakingPowerEdge { __typename?: "StakingPowerEdge"; cursor: Scalars["String"]["output"]; node: StakingPower; } export declare enum StakingPowerOrderByInput { accumulatedPower_ASC = "accumulatedPower_ASC", accumulatedPower_ASC_NULLS_FIRST = "accumulatedPower_ASC_NULLS_FIRST", accumulatedPower_ASC_NULLS_LAST = "accumulatedPower_ASC_NULLS_LAST", accumulatedPower_DESC = "accumulatedPower_DESC", accumulatedPower_DESC_NULLS_FIRST = "accumulatedPower_DESC_NULLS_FIRST", accumulatedPower_DESC_NULLS_LAST = "accumulatedPower_DESC_NULLS_LAST", currentStakedBalance_ASC = "currentStakedBalance_ASC", currentStakedBalance_ASC_NULLS_FIRST = "currentStakedBalance_ASC_NULLS_FIRST", currentStakedBalance_ASC_NULLS_LAST = "currentStakedBalance_ASC_NULLS_LAST", currentStakedBalance_DESC = "currentStakedBalance_DESC", currentStakedBalance_DESC_NULLS_FIRST = "currentStakedBalance_DESC_NULLS_FIRST", currentStakedBalance_DESC_NULLS_LAST = "currentStakedBalance_DESC_NULLS_LAST", historicalMaxStaked_ASC = "historicalMaxStaked_ASC", historicalMaxStaked_ASC_NULLS_FIRST = "historicalMaxStaked_ASC_NULLS_FIRST", historicalMaxStaked_ASC_NULLS_LAST = "historicalMaxStaked_ASC_NULLS_LAST", historicalMaxStaked_DESC = "historicalMaxStaked_DESC", historicalMaxStaked_DESC_NULLS_FIRST = "historicalMaxStaked_DESC_NULLS_FIRST", historicalMaxStaked_DESC_NULLS_LAST = "historicalMaxStaked_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", lastPowerResetAt_ASC = "lastPowerResetAt_ASC", lastPowerResetAt_ASC_NULLS_FIRST = "lastPowerResetAt_ASC_NULLS_FIRST", lastPowerResetAt_ASC_NULLS_LAST = "lastPowerResetAt_ASC_NULLS_LAST", lastPowerResetAt_DESC = "lastPowerResetAt_DESC", lastPowerResetAt_DESC_NULLS_FIRST = "lastPowerResetAt_DESC_NULLS_FIRST", lastPowerResetAt_DESC_NULLS_LAST = "lastPowerResetAt_DESC_NULLS_LAST", lastUpdateTimestamp_ASC = "lastUpdateTimestamp_ASC", lastUpdateTimestamp_ASC_NULLS_FIRST = "lastUpdateTimestamp_ASC_NULLS_FIRST", lastUpdateTimestamp_ASC_NULLS_LAST = "lastUpdateTimestamp_ASC_NULLS_LAST", lastUpdateTimestamp_DESC = "lastUpdateTimestamp_DESC", lastUpdateTimestamp_DESC_NULLS_FIRST = "lastUpdateTimestamp_DESC_NULLS_FIRST", lastUpdateTimestamp_DESC_NULLS_LAST = "lastUpdateTimestamp_DESC_NULLS_LAST", powerResetCount_ASC = "powerResetCount_ASC", powerResetCount_ASC_NULLS_FIRST = "powerResetCount_ASC_NULLS_FIRST", powerResetCount_ASC_NULLS_LAST = "powerResetCount_ASC_NULLS_LAST", powerResetCount_DESC = "powerResetCount_DESC", powerResetCount_DESC_NULLS_FIRST = "powerResetCount_DESC_NULLS_FIRST", powerResetCount_DESC_NULLS_LAST = "powerResetCount_DESC_NULLS_LAST" } export interface StakingPowerWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; accumulatedPower_eq?: InputMaybe; accumulatedPower_gt?: InputMaybe; accumulatedPower_gte?: InputMaybe; accumulatedPower_in?: InputMaybe>; accumulatedPower_isNull?: InputMaybe; accumulatedPower_lt?: InputMaybe; accumulatedPower_lte?: InputMaybe; accumulatedPower_not_eq?: InputMaybe; accumulatedPower_not_in?: InputMaybe>; currentStakedBalance_eq?: InputMaybe; currentStakedBalance_gt?: InputMaybe; currentStakedBalance_gte?: InputMaybe; currentStakedBalance_in?: InputMaybe>; currentStakedBalance_isNull?: InputMaybe; currentStakedBalance_lt?: InputMaybe; currentStakedBalance_lte?: InputMaybe; currentStakedBalance_not_eq?: InputMaybe; currentStakedBalance_not_in?: InputMaybe>; historicalMaxStaked_eq?: InputMaybe; historicalMaxStaked_gt?: InputMaybe; historicalMaxStaked_gte?: InputMaybe; historicalMaxStaked_in?: InputMaybe>; historicalMaxStaked_isNull?: InputMaybe; historicalMaxStaked_lt?: InputMaybe; historicalMaxStaked_lte?: InputMaybe; historicalMaxStaked_not_eq?: InputMaybe; historicalMaxStaked_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; lastPowerResetAt_eq?: InputMaybe; lastPowerResetAt_gt?: InputMaybe; lastPowerResetAt_gte?: InputMaybe; lastPowerResetAt_in?: InputMaybe>; lastPowerResetAt_isNull?: InputMaybe; lastPowerResetAt_lt?: InputMaybe; lastPowerResetAt_lte?: InputMaybe; lastPowerResetAt_not_eq?: InputMaybe; lastPowerResetAt_not_in?: InputMaybe>; lastUpdateTimestamp_eq?: InputMaybe; lastUpdateTimestamp_gt?: InputMaybe; lastUpdateTimestamp_gte?: InputMaybe; lastUpdateTimestamp_in?: InputMaybe>; lastUpdateTimestamp_isNull?: InputMaybe; lastUpdateTimestamp_lt?: InputMaybe; lastUpdateTimestamp_lte?: InputMaybe; lastUpdateTimestamp_not_eq?: InputMaybe; lastUpdateTimestamp_not_in?: InputMaybe>; powerResetCount_eq?: InputMaybe; powerResetCount_gt?: InputMaybe; powerResetCount_gte?: InputMaybe; powerResetCount_in?: InputMaybe>; powerResetCount_isNull?: InputMaybe; powerResetCount_lt?: InputMaybe; powerResetCount_lte?: InputMaybe; powerResetCount_not_eq?: InputMaybe; powerResetCount_not_in?: InputMaybe>; } export interface StakingPowersConnection { __typename?: "StakingPowersConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface SwapFeesInfo { __typename?: "SwapFeesInfo"; feeReceiverAmount: Scalars["BigInt"]["output"]; feeUsdForPool: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; marketAddress: Scalars["String"]["output"]; swapFeeType: Scalars["String"]["output"]; tokenAddress: Scalars["String"]["output"]; tokenPrice: Scalars["BigInt"]["output"]; transactionHash: Scalars["String"]["output"]; } export interface SwapFeesInfoEdge { __typename?: "SwapFeesInfoEdge"; cursor: Scalars["String"]["output"]; node: SwapFeesInfo; } export declare enum SwapFeesInfoOrderByInput { feeReceiverAmount_ASC = "feeReceiverAmount_ASC", feeReceiverAmount_ASC_NULLS_FIRST = "feeReceiverAmount_ASC_NULLS_FIRST", feeReceiverAmount_ASC_NULLS_LAST = "feeReceiverAmount_ASC_NULLS_LAST", feeReceiverAmount_DESC = "feeReceiverAmount_DESC", feeReceiverAmount_DESC_NULLS_FIRST = "feeReceiverAmount_DESC_NULLS_FIRST", feeReceiverAmount_DESC_NULLS_LAST = "feeReceiverAmount_DESC_NULLS_LAST", feeUsdForPool_ASC = "feeUsdForPool_ASC", feeUsdForPool_ASC_NULLS_FIRST = "feeUsdForPool_ASC_NULLS_FIRST", feeUsdForPool_ASC_NULLS_LAST = "feeUsdForPool_ASC_NULLS_LAST", feeUsdForPool_DESC = "feeUsdForPool_DESC", feeUsdForPool_DESC_NULLS_FIRST = "feeUsdForPool_DESC_NULLS_FIRST", feeUsdForPool_DESC_NULLS_LAST = "feeUsdForPool_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", marketAddress_ASC = "marketAddress_ASC", marketAddress_ASC_NULLS_FIRST = "marketAddress_ASC_NULLS_FIRST", marketAddress_ASC_NULLS_LAST = "marketAddress_ASC_NULLS_LAST", marketAddress_DESC = "marketAddress_DESC", marketAddress_DESC_NULLS_FIRST = "marketAddress_DESC_NULLS_FIRST", marketAddress_DESC_NULLS_LAST = "marketAddress_DESC_NULLS_LAST", swapFeeType_ASC = "swapFeeType_ASC", swapFeeType_ASC_NULLS_FIRST = "swapFeeType_ASC_NULLS_FIRST", swapFeeType_ASC_NULLS_LAST = "swapFeeType_ASC_NULLS_LAST", swapFeeType_DESC = "swapFeeType_DESC", swapFeeType_DESC_NULLS_FIRST = "swapFeeType_DESC_NULLS_FIRST", swapFeeType_DESC_NULLS_LAST = "swapFeeType_DESC_NULLS_LAST", tokenAddress_ASC = "tokenAddress_ASC", tokenAddress_ASC_NULLS_FIRST = "tokenAddress_ASC_NULLS_FIRST", tokenAddress_ASC_NULLS_LAST = "tokenAddress_ASC_NULLS_LAST", tokenAddress_DESC = "tokenAddress_DESC", tokenAddress_DESC_NULLS_FIRST = "tokenAddress_DESC_NULLS_FIRST", tokenAddress_DESC_NULLS_LAST = "tokenAddress_DESC_NULLS_LAST", tokenPrice_ASC = "tokenPrice_ASC", tokenPrice_ASC_NULLS_FIRST = "tokenPrice_ASC_NULLS_FIRST", tokenPrice_ASC_NULLS_LAST = "tokenPrice_ASC_NULLS_LAST", tokenPrice_DESC = "tokenPrice_DESC", tokenPrice_DESC_NULLS_FIRST = "tokenPrice_DESC_NULLS_FIRST", tokenPrice_DESC_NULLS_LAST = "tokenPrice_DESC_NULLS_LAST", transactionHash_ASC = "transactionHash_ASC", transactionHash_ASC_NULLS_FIRST = "transactionHash_ASC_NULLS_FIRST", transactionHash_ASC_NULLS_LAST = "transactionHash_ASC_NULLS_LAST", transactionHash_DESC = "transactionHash_DESC", transactionHash_DESC_NULLS_FIRST = "transactionHash_DESC_NULLS_FIRST", transactionHash_DESC_NULLS_LAST = "transactionHash_DESC_NULLS_LAST" } export interface SwapFeesInfoWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; feeReceiverAmount_eq?: InputMaybe; feeReceiverAmount_gt?: InputMaybe; feeReceiverAmount_gte?: InputMaybe; feeReceiverAmount_in?: InputMaybe>; feeReceiverAmount_isNull?: InputMaybe; feeReceiverAmount_lt?: InputMaybe; feeReceiverAmount_lte?: InputMaybe; feeReceiverAmount_not_eq?: InputMaybe; feeReceiverAmount_not_in?: InputMaybe>; feeUsdForPool_eq?: InputMaybe; feeUsdForPool_gt?: InputMaybe; feeUsdForPool_gte?: InputMaybe; feeUsdForPool_in?: InputMaybe>; feeUsdForPool_isNull?: InputMaybe; feeUsdForPool_lt?: InputMaybe; feeUsdForPool_lte?: InputMaybe; feeUsdForPool_not_eq?: InputMaybe; feeUsdForPool_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; marketAddress_contains?: InputMaybe; marketAddress_containsInsensitive?: InputMaybe; marketAddress_endsWith?: InputMaybe; marketAddress_eq?: InputMaybe; marketAddress_gt?: InputMaybe; marketAddress_gte?: InputMaybe; marketAddress_in?: InputMaybe>; marketAddress_isNull?: InputMaybe; marketAddress_lt?: InputMaybe; marketAddress_lte?: InputMaybe; marketAddress_not_contains?: InputMaybe; marketAddress_not_containsInsensitive?: InputMaybe; marketAddress_not_endsWith?: InputMaybe; marketAddress_not_eq?: InputMaybe; marketAddress_not_in?: InputMaybe>; marketAddress_not_startsWith?: InputMaybe; marketAddress_startsWith?: InputMaybe; swapFeeType_contains?: InputMaybe; swapFeeType_containsInsensitive?: InputMaybe; swapFeeType_endsWith?: InputMaybe; swapFeeType_eq?: InputMaybe; swapFeeType_gt?: InputMaybe; swapFeeType_gte?: InputMaybe; swapFeeType_in?: InputMaybe>; swapFeeType_isNull?: InputMaybe; swapFeeType_lt?: InputMaybe; swapFeeType_lte?: InputMaybe; swapFeeType_not_contains?: InputMaybe; swapFeeType_not_containsInsensitive?: InputMaybe; swapFeeType_not_endsWith?: InputMaybe; swapFeeType_not_eq?: InputMaybe; swapFeeType_not_in?: InputMaybe>; swapFeeType_not_startsWith?: InputMaybe; swapFeeType_startsWith?: InputMaybe; tokenAddress_contains?: InputMaybe; tokenAddress_containsInsensitive?: InputMaybe; tokenAddress_endsWith?: InputMaybe; tokenAddress_eq?: InputMaybe; tokenAddress_gt?: InputMaybe; tokenAddress_gte?: InputMaybe; tokenAddress_in?: InputMaybe>; tokenAddress_isNull?: InputMaybe; tokenAddress_lt?: InputMaybe; tokenAddress_lte?: InputMaybe; tokenAddress_not_contains?: InputMaybe; tokenAddress_not_containsInsensitive?: InputMaybe; tokenAddress_not_endsWith?: InputMaybe; tokenAddress_not_eq?: InputMaybe; tokenAddress_not_in?: InputMaybe>; tokenAddress_not_startsWith?: InputMaybe; tokenAddress_startsWith?: InputMaybe; tokenPrice_eq?: InputMaybe; tokenPrice_gt?: InputMaybe; tokenPrice_gte?: InputMaybe; tokenPrice_in?: InputMaybe>; tokenPrice_isNull?: InputMaybe; tokenPrice_lt?: InputMaybe; tokenPrice_lte?: InputMaybe; tokenPrice_not_eq?: InputMaybe; tokenPrice_not_in?: InputMaybe>; transactionHash_contains?: InputMaybe; transactionHash_containsInsensitive?: InputMaybe; transactionHash_endsWith?: InputMaybe; transactionHash_eq?: InputMaybe; transactionHash_gt?: InputMaybe; transactionHash_gte?: InputMaybe; transactionHash_in?: InputMaybe>; transactionHash_isNull?: InputMaybe; transactionHash_lt?: InputMaybe; transactionHash_lte?: InputMaybe; transactionHash_not_contains?: InputMaybe; transactionHash_not_containsInsensitive?: InputMaybe; transactionHash_not_endsWith?: InputMaybe; transactionHash_not_eq?: InputMaybe; transactionHash_not_in?: InputMaybe>; transactionHash_not_startsWith?: InputMaybe; transactionHash_startsWith?: InputMaybe; } export interface SwapFeesInfoWithPeriod { __typename?: "SwapFeesInfoWithPeriod"; id: Scalars["String"]["output"]; period: Scalars["String"]["output"]; timestamp?: Maybe; totalFeeReceiverUsd: Scalars["BigInt"]["output"]; totalFeeUsdForPool: Scalars["BigInt"]["output"]; } export interface SwapFeesInfoWithPeriodEdge { __typename?: "SwapFeesInfoWithPeriodEdge"; cursor: Scalars["String"]["output"]; node: SwapFeesInfoWithPeriod; } export declare enum SwapFeesInfoWithPeriodOrderByInput { id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", period_ASC = "period_ASC", period_ASC_NULLS_FIRST = "period_ASC_NULLS_FIRST", period_ASC_NULLS_LAST = "period_ASC_NULLS_LAST", period_DESC = "period_DESC", period_DESC_NULLS_FIRST = "period_DESC_NULLS_FIRST", period_DESC_NULLS_LAST = "period_DESC_NULLS_LAST", timestamp_ASC = "timestamp_ASC", timestamp_ASC_NULLS_FIRST = "timestamp_ASC_NULLS_FIRST", timestamp_ASC_NULLS_LAST = "timestamp_ASC_NULLS_LAST", timestamp_DESC = "timestamp_DESC", timestamp_DESC_NULLS_FIRST = "timestamp_DESC_NULLS_FIRST", timestamp_DESC_NULLS_LAST = "timestamp_DESC_NULLS_LAST", totalFeeReceiverUsd_ASC = "totalFeeReceiverUsd_ASC", totalFeeReceiverUsd_ASC_NULLS_FIRST = "totalFeeReceiverUsd_ASC_NULLS_FIRST", totalFeeReceiverUsd_ASC_NULLS_LAST = "totalFeeReceiverUsd_ASC_NULLS_LAST", totalFeeReceiverUsd_DESC = "totalFeeReceiverUsd_DESC", totalFeeReceiverUsd_DESC_NULLS_FIRST = "totalFeeReceiverUsd_DESC_NULLS_FIRST", totalFeeReceiverUsd_DESC_NULLS_LAST = "totalFeeReceiverUsd_DESC_NULLS_LAST", totalFeeUsdForPool_ASC = "totalFeeUsdForPool_ASC", totalFeeUsdForPool_ASC_NULLS_FIRST = "totalFeeUsdForPool_ASC_NULLS_FIRST", totalFeeUsdForPool_ASC_NULLS_LAST = "totalFeeUsdForPool_ASC_NULLS_LAST", totalFeeUsdForPool_DESC = "totalFeeUsdForPool_DESC", totalFeeUsdForPool_DESC_NULLS_FIRST = "totalFeeUsdForPool_DESC_NULLS_FIRST", totalFeeUsdForPool_DESC_NULLS_LAST = "totalFeeUsdForPool_DESC_NULLS_LAST" } export interface SwapFeesInfoWithPeriodWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; period_contains?: InputMaybe; period_containsInsensitive?: InputMaybe; period_endsWith?: InputMaybe; period_eq?: InputMaybe; period_gt?: InputMaybe; period_gte?: InputMaybe; period_in?: InputMaybe>; period_isNull?: InputMaybe; period_lt?: InputMaybe; period_lte?: InputMaybe; period_not_contains?: InputMaybe; period_not_containsInsensitive?: InputMaybe; period_not_endsWith?: InputMaybe; period_not_eq?: InputMaybe; period_not_in?: InputMaybe>; period_not_startsWith?: InputMaybe; period_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_isNull?: InputMaybe; timestamp_lt?: InputMaybe; timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; totalFeeReceiverUsd_eq?: InputMaybe; totalFeeReceiverUsd_gt?: InputMaybe; totalFeeReceiverUsd_gte?: InputMaybe; totalFeeReceiverUsd_in?: InputMaybe>; totalFeeReceiverUsd_isNull?: InputMaybe; totalFeeReceiverUsd_lt?: InputMaybe; totalFeeReceiverUsd_lte?: InputMaybe; totalFeeReceiverUsd_not_eq?: InputMaybe; totalFeeReceiverUsd_not_in?: InputMaybe>; totalFeeUsdForPool_eq?: InputMaybe; totalFeeUsdForPool_gt?: InputMaybe; totalFeeUsdForPool_gte?: InputMaybe; totalFeeUsdForPool_in?: InputMaybe>; totalFeeUsdForPool_isNull?: InputMaybe; totalFeeUsdForPool_lt?: InputMaybe; totalFeeUsdForPool_lte?: InputMaybe; totalFeeUsdForPool_not_eq?: InputMaybe; totalFeeUsdForPool_not_in?: InputMaybe>; } export interface SwapFeesInfoWithPeriodsConnection { __typename?: "SwapFeesInfoWithPeriodsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface SwapFeesInfosConnection { __typename?: "SwapFeesInfosConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface SwapInfo { __typename?: "SwapInfo"; amountIn: Scalars["BigInt"]["output"]; amountInAfterFees: Scalars["BigInt"]["output"]; amountOut: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; marketAddress: Scalars["String"]["output"]; orderKey: Scalars["String"]["output"]; priceImpactUsd: Scalars["BigInt"]["output"]; receiver: Scalars["String"]["output"]; tokenInAddress: Scalars["String"]["output"]; tokenInPrice: Scalars["BigInt"]["output"]; tokenOutAddress: Scalars["String"]["output"]; tokenOutPrice: Scalars["BigInt"]["output"]; transactionHash: Scalars["String"]["output"]; } export interface SwapInfoEdge { __typename?: "SwapInfoEdge"; cursor: Scalars["String"]["output"]; node: SwapInfo; } export declare enum SwapInfoOrderByInput { amountInAfterFees_ASC = "amountInAfterFees_ASC", amountInAfterFees_ASC_NULLS_FIRST = "amountInAfterFees_ASC_NULLS_FIRST", amountInAfterFees_ASC_NULLS_LAST = "amountInAfterFees_ASC_NULLS_LAST", amountInAfterFees_DESC = "amountInAfterFees_DESC", amountInAfterFees_DESC_NULLS_FIRST = "amountInAfterFees_DESC_NULLS_FIRST", amountInAfterFees_DESC_NULLS_LAST = "amountInAfterFees_DESC_NULLS_LAST", amountIn_ASC = "amountIn_ASC", amountIn_ASC_NULLS_FIRST = "amountIn_ASC_NULLS_FIRST", amountIn_ASC_NULLS_LAST = "amountIn_ASC_NULLS_LAST", amountIn_DESC = "amountIn_DESC", amountIn_DESC_NULLS_FIRST = "amountIn_DESC_NULLS_FIRST", amountIn_DESC_NULLS_LAST = "amountIn_DESC_NULLS_LAST", amountOut_ASC = "amountOut_ASC", amountOut_ASC_NULLS_FIRST = "amountOut_ASC_NULLS_FIRST", amountOut_ASC_NULLS_LAST = "amountOut_ASC_NULLS_LAST", amountOut_DESC = "amountOut_DESC", amountOut_DESC_NULLS_FIRST = "amountOut_DESC_NULLS_FIRST", amountOut_DESC_NULLS_LAST = "amountOut_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", marketAddress_ASC = "marketAddress_ASC", marketAddress_ASC_NULLS_FIRST = "marketAddress_ASC_NULLS_FIRST", marketAddress_ASC_NULLS_LAST = "marketAddress_ASC_NULLS_LAST", marketAddress_DESC = "marketAddress_DESC", marketAddress_DESC_NULLS_FIRST = "marketAddress_DESC_NULLS_FIRST", marketAddress_DESC_NULLS_LAST = "marketAddress_DESC_NULLS_LAST", orderKey_ASC = "orderKey_ASC", orderKey_ASC_NULLS_FIRST = "orderKey_ASC_NULLS_FIRST", orderKey_ASC_NULLS_LAST = "orderKey_ASC_NULLS_LAST", orderKey_DESC = "orderKey_DESC", orderKey_DESC_NULLS_FIRST = "orderKey_DESC_NULLS_FIRST", orderKey_DESC_NULLS_LAST = "orderKey_DESC_NULLS_LAST", priceImpactUsd_ASC = "priceImpactUsd_ASC", priceImpactUsd_ASC_NULLS_FIRST = "priceImpactUsd_ASC_NULLS_FIRST", priceImpactUsd_ASC_NULLS_LAST = "priceImpactUsd_ASC_NULLS_LAST", priceImpactUsd_DESC = "priceImpactUsd_DESC", priceImpactUsd_DESC_NULLS_FIRST = "priceImpactUsd_DESC_NULLS_FIRST", priceImpactUsd_DESC_NULLS_LAST = "priceImpactUsd_DESC_NULLS_LAST", receiver_ASC = "receiver_ASC", receiver_ASC_NULLS_FIRST = "receiver_ASC_NULLS_FIRST", receiver_ASC_NULLS_LAST = "receiver_ASC_NULLS_LAST", receiver_DESC = "receiver_DESC", receiver_DESC_NULLS_FIRST = "receiver_DESC_NULLS_FIRST", receiver_DESC_NULLS_LAST = "receiver_DESC_NULLS_LAST", tokenInAddress_ASC = "tokenInAddress_ASC", tokenInAddress_ASC_NULLS_FIRST = "tokenInAddress_ASC_NULLS_FIRST", tokenInAddress_ASC_NULLS_LAST = "tokenInAddress_ASC_NULLS_LAST", tokenInAddress_DESC = "tokenInAddress_DESC", tokenInAddress_DESC_NULLS_FIRST = "tokenInAddress_DESC_NULLS_FIRST", tokenInAddress_DESC_NULLS_LAST = "tokenInAddress_DESC_NULLS_LAST", tokenInPrice_ASC = "tokenInPrice_ASC", tokenInPrice_ASC_NULLS_FIRST = "tokenInPrice_ASC_NULLS_FIRST", tokenInPrice_ASC_NULLS_LAST = "tokenInPrice_ASC_NULLS_LAST", tokenInPrice_DESC = "tokenInPrice_DESC", tokenInPrice_DESC_NULLS_FIRST = "tokenInPrice_DESC_NULLS_FIRST", tokenInPrice_DESC_NULLS_LAST = "tokenInPrice_DESC_NULLS_LAST", tokenOutAddress_ASC = "tokenOutAddress_ASC", tokenOutAddress_ASC_NULLS_FIRST = "tokenOutAddress_ASC_NULLS_FIRST", tokenOutAddress_ASC_NULLS_LAST = "tokenOutAddress_ASC_NULLS_LAST", tokenOutAddress_DESC = "tokenOutAddress_DESC", tokenOutAddress_DESC_NULLS_FIRST = "tokenOutAddress_DESC_NULLS_FIRST", tokenOutAddress_DESC_NULLS_LAST = "tokenOutAddress_DESC_NULLS_LAST", tokenOutPrice_ASC = "tokenOutPrice_ASC", tokenOutPrice_ASC_NULLS_FIRST = "tokenOutPrice_ASC_NULLS_FIRST", tokenOutPrice_ASC_NULLS_LAST = "tokenOutPrice_ASC_NULLS_LAST", tokenOutPrice_DESC = "tokenOutPrice_DESC", tokenOutPrice_DESC_NULLS_FIRST = "tokenOutPrice_DESC_NULLS_FIRST", tokenOutPrice_DESC_NULLS_LAST = "tokenOutPrice_DESC_NULLS_LAST", transactionHash_ASC = "transactionHash_ASC", transactionHash_ASC_NULLS_FIRST = "transactionHash_ASC_NULLS_FIRST", transactionHash_ASC_NULLS_LAST = "transactionHash_ASC_NULLS_LAST", transactionHash_DESC = "transactionHash_DESC", transactionHash_DESC_NULLS_FIRST = "transactionHash_DESC_NULLS_FIRST", transactionHash_DESC_NULLS_LAST = "transactionHash_DESC_NULLS_LAST" } export interface SwapInfoWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; amountInAfterFees_eq?: InputMaybe; amountInAfterFees_gt?: InputMaybe; amountInAfterFees_gte?: InputMaybe; amountInAfterFees_in?: InputMaybe>; amountInAfterFees_isNull?: InputMaybe; amountInAfterFees_lt?: InputMaybe; amountInAfterFees_lte?: InputMaybe; amountInAfterFees_not_eq?: InputMaybe; amountInAfterFees_not_in?: InputMaybe>; amountIn_eq?: InputMaybe; amountIn_gt?: InputMaybe; amountIn_gte?: InputMaybe; amountIn_in?: InputMaybe>; amountIn_isNull?: InputMaybe; amountIn_lt?: InputMaybe; amountIn_lte?: InputMaybe; amountIn_not_eq?: InputMaybe; amountIn_not_in?: InputMaybe>; amountOut_eq?: InputMaybe; amountOut_gt?: InputMaybe; amountOut_gte?: InputMaybe; amountOut_in?: InputMaybe>; amountOut_isNull?: InputMaybe; amountOut_lt?: InputMaybe; amountOut_lte?: InputMaybe; amountOut_not_eq?: InputMaybe; amountOut_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; marketAddress_contains?: InputMaybe; marketAddress_containsInsensitive?: InputMaybe; marketAddress_endsWith?: InputMaybe; marketAddress_eq?: InputMaybe; marketAddress_gt?: InputMaybe; marketAddress_gte?: InputMaybe; marketAddress_in?: InputMaybe>; marketAddress_isNull?: InputMaybe; marketAddress_lt?: InputMaybe; marketAddress_lte?: InputMaybe; marketAddress_not_contains?: InputMaybe; marketAddress_not_containsInsensitive?: InputMaybe; marketAddress_not_endsWith?: InputMaybe; marketAddress_not_eq?: InputMaybe; marketAddress_not_in?: InputMaybe>; marketAddress_not_startsWith?: InputMaybe; marketAddress_startsWith?: InputMaybe; orderKey_contains?: InputMaybe; orderKey_containsInsensitive?: InputMaybe; orderKey_endsWith?: InputMaybe; orderKey_eq?: InputMaybe; orderKey_gt?: InputMaybe; orderKey_gte?: InputMaybe; orderKey_in?: InputMaybe>; orderKey_isNull?: InputMaybe; orderKey_lt?: InputMaybe; orderKey_lte?: InputMaybe; orderKey_not_contains?: InputMaybe; orderKey_not_containsInsensitive?: InputMaybe; orderKey_not_endsWith?: InputMaybe; orderKey_not_eq?: InputMaybe; orderKey_not_in?: InputMaybe>; orderKey_not_startsWith?: InputMaybe; orderKey_startsWith?: InputMaybe; priceImpactUsd_eq?: InputMaybe; priceImpactUsd_gt?: InputMaybe; priceImpactUsd_gte?: InputMaybe; priceImpactUsd_in?: InputMaybe>; priceImpactUsd_isNull?: InputMaybe; priceImpactUsd_lt?: InputMaybe; priceImpactUsd_lte?: InputMaybe; priceImpactUsd_not_eq?: InputMaybe; priceImpactUsd_not_in?: InputMaybe>; receiver_contains?: InputMaybe; receiver_containsInsensitive?: InputMaybe; receiver_endsWith?: InputMaybe; receiver_eq?: InputMaybe; receiver_gt?: InputMaybe; receiver_gte?: InputMaybe; receiver_in?: InputMaybe>; receiver_isNull?: InputMaybe; receiver_lt?: InputMaybe; receiver_lte?: InputMaybe; receiver_not_contains?: InputMaybe; receiver_not_containsInsensitive?: InputMaybe; receiver_not_endsWith?: InputMaybe; receiver_not_eq?: InputMaybe; receiver_not_in?: InputMaybe>; receiver_not_startsWith?: InputMaybe; receiver_startsWith?: InputMaybe; tokenInAddress_contains?: InputMaybe; tokenInAddress_containsInsensitive?: InputMaybe; tokenInAddress_endsWith?: InputMaybe; tokenInAddress_eq?: InputMaybe; tokenInAddress_gt?: InputMaybe; tokenInAddress_gte?: InputMaybe; tokenInAddress_in?: InputMaybe>; tokenInAddress_isNull?: InputMaybe; tokenInAddress_lt?: InputMaybe; tokenInAddress_lte?: InputMaybe; tokenInAddress_not_contains?: InputMaybe; tokenInAddress_not_containsInsensitive?: InputMaybe; tokenInAddress_not_endsWith?: InputMaybe; tokenInAddress_not_eq?: InputMaybe; tokenInAddress_not_in?: InputMaybe>; tokenInAddress_not_startsWith?: InputMaybe; tokenInAddress_startsWith?: InputMaybe; tokenInPrice_eq?: InputMaybe; tokenInPrice_gt?: InputMaybe; tokenInPrice_gte?: InputMaybe; tokenInPrice_in?: InputMaybe>; tokenInPrice_isNull?: InputMaybe; tokenInPrice_lt?: InputMaybe; tokenInPrice_lte?: InputMaybe; tokenInPrice_not_eq?: InputMaybe; tokenInPrice_not_in?: InputMaybe>; tokenOutAddress_contains?: InputMaybe; tokenOutAddress_containsInsensitive?: InputMaybe; tokenOutAddress_endsWith?: InputMaybe; tokenOutAddress_eq?: InputMaybe; tokenOutAddress_gt?: InputMaybe; tokenOutAddress_gte?: InputMaybe; tokenOutAddress_in?: InputMaybe>; tokenOutAddress_isNull?: InputMaybe; tokenOutAddress_lt?: InputMaybe; tokenOutAddress_lte?: InputMaybe; tokenOutAddress_not_contains?: InputMaybe; tokenOutAddress_not_containsInsensitive?: InputMaybe; tokenOutAddress_not_endsWith?: InputMaybe; tokenOutAddress_not_eq?: InputMaybe; tokenOutAddress_not_in?: InputMaybe>; tokenOutAddress_not_startsWith?: InputMaybe; tokenOutAddress_startsWith?: InputMaybe; tokenOutPrice_eq?: InputMaybe; tokenOutPrice_gt?: InputMaybe; tokenOutPrice_gte?: InputMaybe; tokenOutPrice_in?: InputMaybe>; tokenOutPrice_isNull?: InputMaybe; tokenOutPrice_lt?: InputMaybe; tokenOutPrice_lte?: InputMaybe; tokenOutPrice_not_eq?: InputMaybe; tokenOutPrice_not_in?: InputMaybe>; transactionHash_contains?: InputMaybe; transactionHash_containsInsensitive?: InputMaybe; transactionHash_endsWith?: InputMaybe; transactionHash_eq?: InputMaybe; transactionHash_gt?: InputMaybe; transactionHash_gte?: InputMaybe; transactionHash_in?: InputMaybe>; transactionHash_isNull?: InputMaybe; transactionHash_lt?: InputMaybe; transactionHash_lte?: InputMaybe; transactionHash_not_contains?: InputMaybe; transactionHash_not_containsInsensitive?: InputMaybe; transactionHash_not_endsWith?: InputMaybe; transactionHash_not_eq?: InputMaybe; transactionHash_not_in?: InputMaybe>; transactionHash_not_startsWith?: InputMaybe; transactionHash_startsWith?: InputMaybe; } export interface SwapInfosConnection { __typename?: "SwapInfosConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface SwapVolumeInfo { __typename?: "SwapVolumeInfo"; id: Scalars["String"]["output"]; period: Scalars["String"]["output"]; timestamp: Scalars["Int"]["output"]; tokenIn: Scalars["String"]["output"]; tokenOut: Scalars["String"]["output"]; volumeUsd: Scalars["BigInt"]["output"]; } export interface SwapVolumeInfoEdge { __typename?: "SwapVolumeInfoEdge"; cursor: Scalars["String"]["output"]; node: SwapVolumeInfo; } export declare enum SwapVolumeInfoOrderByInput { id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", period_ASC = "period_ASC", period_ASC_NULLS_FIRST = "period_ASC_NULLS_FIRST", period_ASC_NULLS_LAST = "period_ASC_NULLS_LAST", period_DESC = "period_DESC", period_DESC_NULLS_FIRST = "period_DESC_NULLS_FIRST", period_DESC_NULLS_LAST = "period_DESC_NULLS_LAST", timestamp_ASC = "timestamp_ASC", timestamp_ASC_NULLS_FIRST = "timestamp_ASC_NULLS_FIRST", timestamp_ASC_NULLS_LAST = "timestamp_ASC_NULLS_LAST", timestamp_DESC = "timestamp_DESC", timestamp_DESC_NULLS_FIRST = "timestamp_DESC_NULLS_FIRST", timestamp_DESC_NULLS_LAST = "timestamp_DESC_NULLS_LAST", tokenIn_ASC = "tokenIn_ASC", tokenIn_ASC_NULLS_FIRST = "tokenIn_ASC_NULLS_FIRST", tokenIn_ASC_NULLS_LAST = "tokenIn_ASC_NULLS_LAST", tokenIn_DESC = "tokenIn_DESC", tokenIn_DESC_NULLS_FIRST = "tokenIn_DESC_NULLS_FIRST", tokenIn_DESC_NULLS_LAST = "tokenIn_DESC_NULLS_LAST", tokenOut_ASC = "tokenOut_ASC", tokenOut_ASC_NULLS_FIRST = "tokenOut_ASC_NULLS_FIRST", tokenOut_ASC_NULLS_LAST = "tokenOut_ASC_NULLS_LAST", tokenOut_DESC = "tokenOut_DESC", tokenOut_DESC_NULLS_FIRST = "tokenOut_DESC_NULLS_FIRST", tokenOut_DESC_NULLS_LAST = "tokenOut_DESC_NULLS_LAST", volumeUsd_ASC = "volumeUsd_ASC", volumeUsd_ASC_NULLS_FIRST = "volumeUsd_ASC_NULLS_FIRST", volumeUsd_ASC_NULLS_LAST = "volumeUsd_ASC_NULLS_LAST", volumeUsd_DESC = "volumeUsd_DESC", volumeUsd_DESC_NULLS_FIRST = "volumeUsd_DESC_NULLS_FIRST", volumeUsd_DESC_NULLS_LAST = "volumeUsd_DESC_NULLS_LAST" } export interface SwapVolumeInfoWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; period_contains?: InputMaybe; period_containsInsensitive?: InputMaybe; period_endsWith?: InputMaybe; period_eq?: InputMaybe; period_gt?: InputMaybe; period_gte?: InputMaybe; period_in?: InputMaybe>; period_isNull?: InputMaybe; period_lt?: InputMaybe; period_lte?: InputMaybe; period_not_contains?: InputMaybe; period_not_containsInsensitive?: InputMaybe; period_not_endsWith?: InputMaybe; period_not_eq?: InputMaybe; period_not_in?: InputMaybe>; period_not_startsWith?: InputMaybe; period_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_isNull?: InputMaybe; timestamp_lt?: InputMaybe; timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; tokenIn_contains?: InputMaybe; tokenIn_containsInsensitive?: InputMaybe; tokenIn_endsWith?: InputMaybe; tokenIn_eq?: InputMaybe; tokenIn_gt?: InputMaybe; tokenIn_gte?: InputMaybe; tokenIn_in?: InputMaybe>; tokenIn_isNull?: InputMaybe; tokenIn_lt?: InputMaybe; tokenIn_lte?: InputMaybe; tokenIn_not_contains?: InputMaybe; tokenIn_not_containsInsensitive?: InputMaybe; tokenIn_not_endsWith?: InputMaybe; tokenIn_not_eq?: InputMaybe; tokenIn_not_in?: InputMaybe>; tokenIn_not_startsWith?: InputMaybe; tokenIn_startsWith?: InputMaybe; tokenOut_contains?: InputMaybe; tokenOut_containsInsensitive?: InputMaybe; tokenOut_endsWith?: InputMaybe; tokenOut_eq?: InputMaybe; tokenOut_gt?: InputMaybe; tokenOut_gte?: InputMaybe; tokenOut_in?: InputMaybe>; tokenOut_isNull?: InputMaybe; tokenOut_lt?: InputMaybe; tokenOut_lte?: InputMaybe; tokenOut_not_contains?: InputMaybe; tokenOut_not_containsInsensitive?: InputMaybe; tokenOut_not_endsWith?: InputMaybe; tokenOut_not_eq?: InputMaybe; tokenOut_not_in?: InputMaybe>; tokenOut_not_startsWith?: InputMaybe; tokenOut_startsWith?: InputMaybe; volumeUsd_eq?: InputMaybe; volumeUsd_gt?: InputMaybe; volumeUsd_gte?: InputMaybe; volumeUsd_in?: InputMaybe>; volumeUsd_isNull?: InputMaybe; volumeUsd_lt?: InputMaybe; volumeUsd_lte?: InputMaybe; volumeUsd_not_eq?: InputMaybe; volumeUsd_not_in?: InputMaybe>; } export interface SwapVolumeInfosConnection { __typename?: "SwapVolumeInfosConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface TradeAction { __typename?: "TradeAction"; acceptablePrice?: Maybe; account: Scalars["String"]["output"]; basePnlUsd?: Maybe; borrowingFeeAmount?: Maybe; collateralTokenPriceMax?: Maybe; collateralTokenPriceMin?: Maybe; collateralTotalCostAmount?: Maybe; contractTriggerPrice?: Maybe; decreasePositionSwapType?: Maybe; eventName: Scalars["String"]["output"]; executionAmountOut?: Maybe; executionPrice?: Maybe; fundingFeeAmount?: Maybe; id: Scalars["String"]["output"]; indexTokenPriceMax?: Maybe; indexTokenPriceMin?: Maybe; initialCollateralDeltaAmount: Scalars["BigInt"]["output"]; initialCollateralTokenAddress: Scalars["String"]["output"]; isLong?: Maybe; liquidationFeeAmount?: Maybe; marketAddress?: Maybe; minOutputAmount?: Maybe; numberOfParts?: Maybe; orderKey: Scalars["String"]["output"]; orderType: Scalars["Int"]["output"]; pnlUsd?: Maybe; positionFeeAmount?: Maybe; priceImpactAmount?: Maybe; priceImpactDiffUsd?: Maybe; priceImpactUsd?: Maybe; proportionalPendingImpactUsd?: Maybe; reason?: Maybe; reasonBytes?: Maybe; shouldUnwrapNativeToken?: Maybe; sizeDeltaInTokens?: Maybe; sizeDeltaUsd?: Maybe; srcChainId?: Maybe; swapImpactUsd?: Maybe; swapPath: Array; timestamp: Scalars["Int"]["output"]; totalImpactUsd?: Maybe; transactionHash: Scalars["String"]["output"]; triggerPrice?: Maybe; twapGroupId?: Maybe; uiFeeReceiver: Scalars["String"]["output"]; } export interface TradeActionEdge { __typename?: "TradeActionEdge"; cursor: Scalars["String"]["output"]; node: TradeAction; } export declare enum TradeActionOrderByInput { acceptablePrice_ASC = "acceptablePrice_ASC", acceptablePrice_ASC_NULLS_FIRST = "acceptablePrice_ASC_NULLS_FIRST", acceptablePrice_ASC_NULLS_LAST = "acceptablePrice_ASC_NULLS_LAST", acceptablePrice_DESC = "acceptablePrice_DESC", acceptablePrice_DESC_NULLS_FIRST = "acceptablePrice_DESC_NULLS_FIRST", acceptablePrice_DESC_NULLS_LAST = "acceptablePrice_DESC_NULLS_LAST", account_ASC = "account_ASC", account_ASC_NULLS_FIRST = "account_ASC_NULLS_FIRST", account_ASC_NULLS_LAST = "account_ASC_NULLS_LAST", account_DESC = "account_DESC", account_DESC_NULLS_FIRST = "account_DESC_NULLS_FIRST", account_DESC_NULLS_LAST = "account_DESC_NULLS_LAST", basePnlUsd_ASC = "basePnlUsd_ASC", basePnlUsd_ASC_NULLS_FIRST = "basePnlUsd_ASC_NULLS_FIRST", basePnlUsd_ASC_NULLS_LAST = "basePnlUsd_ASC_NULLS_LAST", basePnlUsd_DESC = "basePnlUsd_DESC", basePnlUsd_DESC_NULLS_FIRST = "basePnlUsd_DESC_NULLS_FIRST", basePnlUsd_DESC_NULLS_LAST = "basePnlUsd_DESC_NULLS_LAST", borrowingFeeAmount_ASC = "borrowingFeeAmount_ASC", borrowingFeeAmount_ASC_NULLS_FIRST = "borrowingFeeAmount_ASC_NULLS_FIRST", borrowingFeeAmount_ASC_NULLS_LAST = "borrowingFeeAmount_ASC_NULLS_LAST", borrowingFeeAmount_DESC = "borrowingFeeAmount_DESC", borrowingFeeAmount_DESC_NULLS_FIRST = "borrowingFeeAmount_DESC_NULLS_FIRST", borrowingFeeAmount_DESC_NULLS_LAST = "borrowingFeeAmount_DESC_NULLS_LAST", collateralTokenPriceMax_ASC = "collateralTokenPriceMax_ASC", collateralTokenPriceMax_ASC_NULLS_FIRST = "collateralTokenPriceMax_ASC_NULLS_FIRST", collateralTokenPriceMax_ASC_NULLS_LAST = "collateralTokenPriceMax_ASC_NULLS_LAST", collateralTokenPriceMax_DESC = "collateralTokenPriceMax_DESC", collateralTokenPriceMax_DESC_NULLS_FIRST = "collateralTokenPriceMax_DESC_NULLS_FIRST", collateralTokenPriceMax_DESC_NULLS_LAST = "collateralTokenPriceMax_DESC_NULLS_LAST", collateralTokenPriceMin_ASC = "collateralTokenPriceMin_ASC", collateralTokenPriceMin_ASC_NULLS_FIRST = "collateralTokenPriceMin_ASC_NULLS_FIRST", collateralTokenPriceMin_ASC_NULLS_LAST = "collateralTokenPriceMin_ASC_NULLS_LAST", collateralTokenPriceMin_DESC = "collateralTokenPriceMin_DESC", collateralTokenPriceMin_DESC_NULLS_FIRST = "collateralTokenPriceMin_DESC_NULLS_FIRST", collateralTokenPriceMin_DESC_NULLS_LAST = "collateralTokenPriceMin_DESC_NULLS_LAST", collateralTotalCostAmount_ASC = "collateralTotalCostAmount_ASC", collateralTotalCostAmount_ASC_NULLS_FIRST = "collateralTotalCostAmount_ASC_NULLS_FIRST", collateralTotalCostAmount_ASC_NULLS_LAST = "collateralTotalCostAmount_ASC_NULLS_LAST", collateralTotalCostAmount_DESC = "collateralTotalCostAmount_DESC", collateralTotalCostAmount_DESC_NULLS_FIRST = "collateralTotalCostAmount_DESC_NULLS_FIRST", collateralTotalCostAmount_DESC_NULLS_LAST = "collateralTotalCostAmount_DESC_NULLS_LAST", contractTriggerPrice_ASC = "contractTriggerPrice_ASC", contractTriggerPrice_ASC_NULLS_FIRST = "contractTriggerPrice_ASC_NULLS_FIRST", contractTriggerPrice_ASC_NULLS_LAST = "contractTriggerPrice_ASC_NULLS_LAST", contractTriggerPrice_DESC = "contractTriggerPrice_DESC", contractTriggerPrice_DESC_NULLS_FIRST = "contractTriggerPrice_DESC_NULLS_FIRST", contractTriggerPrice_DESC_NULLS_LAST = "contractTriggerPrice_DESC_NULLS_LAST", decreasePositionSwapType_ASC = "decreasePositionSwapType_ASC", decreasePositionSwapType_ASC_NULLS_FIRST = "decreasePositionSwapType_ASC_NULLS_FIRST", decreasePositionSwapType_ASC_NULLS_LAST = "decreasePositionSwapType_ASC_NULLS_LAST", decreasePositionSwapType_DESC = "decreasePositionSwapType_DESC", decreasePositionSwapType_DESC_NULLS_FIRST = "decreasePositionSwapType_DESC_NULLS_FIRST", decreasePositionSwapType_DESC_NULLS_LAST = "decreasePositionSwapType_DESC_NULLS_LAST", eventName_ASC = "eventName_ASC", eventName_ASC_NULLS_FIRST = "eventName_ASC_NULLS_FIRST", eventName_ASC_NULLS_LAST = "eventName_ASC_NULLS_LAST", eventName_DESC = "eventName_DESC", eventName_DESC_NULLS_FIRST = "eventName_DESC_NULLS_FIRST", eventName_DESC_NULLS_LAST = "eventName_DESC_NULLS_LAST", executionAmountOut_ASC = "executionAmountOut_ASC", executionAmountOut_ASC_NULLS_FIRST = "executionAmountOut_ASC_NULLS_FIRST", executionAmountOut_ASC_NULLS_LAST = "executionAmountOut_ASC_NULLS_LAST", executionAmountOut_DESC = "executionAmountOut_DESC", executionAmountOut_DESC_NULLS_FIRST = "executionAmountOut_DESC_NULLS_FIRST", executionAmountOut_DESC_NULLS_LAST = "executionAmountOut_DESC_NULLS_LAST", executionPrice_ASC = "executionPrice_ASC", executionPrice_ASC_NULLS_FIRST = "executionPrice_ASC_NULLS_FIRST", executionPrice_ASC_NULLS_LAST = "executionPrice_ASC_NULLS_LAST", executionPrice_DESC = "executionPrice_DESC", executionPrice_DESC_NULLS_FIRST = "executionPrice_DESC_NULLS_FIRST", executionPrice_DESC_NULLS_LAST = "executionPrice_DESC_NULLS_LAST", fundingFeeAmount_ASC = "fundingFeeAmount_ASC", fundingFeeAmount_ASC_NULLS_FIRST = "fundingFeeAmount_ASC_NULLS_FIRST", fundingFeeAmount_ASC_NULLS_LAST = "fundingFeeAmount_ASC_NULLS_LAST", fundingFeeAmount_DESC = "fundingFeeAmount_DESC", fundingFeeAmount_DESC_NULLS_FIRST = "fundingFeeAmount_DESC_NULLS_FIRST", fundingFeeAmount_DESC_NULLS_LAST = "fundingFeeAmount_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", indexTokenPriceMax_ASC = "indexTokenPriceMax_ASC", indexTokenPriceMax_ASC_NULLS_FIRST = "indexTokenPriceMax_ASC_NULLS_FIRST", indexTokenPriceMax_ASC_NULLS_LAST = "indexTokenPriceMax_ASC_NULLS_LAST", indexTokenPriceMax_DESC = "indexTokenPriceMax_DESC", indexTokenPriceMax_DESC_NULLS_FIRST = "indexTokenPriceMax_DESC_NULLS_FIRST", indexTokenPriceMax_DESC_NULLS_LAST = "indexTokenPriceMax_DESC_NULLS_LAST", indexTokenPriceMin_ASC = "indexTokenPriceMin_ASC", indexTokenPriceMin_ASC_NULLS_FIRST = "indexTokenPriceMin_ASC_NULLS_FIRST", indexTokenPriceMin_ASC_NULLS_LAST = "indexTokenPriceMin_ASC_NULLS_LAST", indexTokenPriceMin_DESC = "indexTokenPriceMin_DESC", indexTokenPriceMin_DESC_NULLS_FIRST = "indexTokenPriceMin_DESC_NULLS_FIRST", indexTokenPriceMin_DESC_NULLS_LAST = "indexTokenPriceMin_DESC_NULLS_LAST", initialCollateralDeltaAmount_ASC = "initialCollateralDeltaAmount_ASC", initialCollateralDeltaAmount_ASC_NULLS_FIRST = "initialCollateralDeltaAmount_ASC_NULLS_FIRST", initialCollateralDeltaAmount_ASC_NULLS_LAST = "initialCollateralDeltaAmount_ASC_NULLS_LAST", initialCollateralDeltaAmount_DESC = "initialCollateralDeltaAmount_DESC", initialCollateralDeltaAmount_DESC_NULLS_FIRST = "initialCollateralDeltaAmount_DESC_NULLS_FIRST", initialCollateralDeltaAmount_DESC_NULLS_LAST = "initialCollateralDeltaAmount_DESC_NULLS_LAST", initialCollateralTokenAddress_ASC = "initialCollateralTokenAddress_ASC", initialCollateralTokenAddress_ASC_NULLS_FIRST = "initialCollateralTokenAddress_ASC_NULLS_FIRST", initialCollateralTokenAddress_ASC_NULLS_LAST = "initialCollateralTokenAddress_ASC_NULLS_LAST", initialCollateralTokenAddress_DESC = "initialCollateralTokenAddress_DESC", initialCollateralTokenAddress_DESC_NULLS_FIRST = "initialCollateralTokenAddress_DESC_NULLS_FIRST", initialCollateralTokenAddress_DESC_NULLS_LAST = "initialCollateralTokenAddress_DESC_NULLS_LAST", isLong_ASC = "isLong_ASC", isLong_ASC_NULLS_FIRST = "isLong_ASC_NULLS_FIRST", isLong_ASC_NULLS_LAST = "isLong_ASC_NULLS_LAST", isLong_DESC = "isLong_DESC", isLong_DESC_NULLS_FIRST = "isLong_DESC_NULLS_FIRST", isLong_DESC_NULLS_LAST = "isLong_DESC_NULLS_LAST", liquidationFeeAmount_ASC = "liquidationFeeAmount_ASC", liquidationFeeAmount_ASC_NULLS_FIRST = "liquidationFeeAmount_ASC_NULLS_FIRST", liquidationFeeAmount_ASC_NULLS_LAST = "liquidationFeeAmount_ASC_NULLS_LAST", liquidationFeeAmount_DESC = "liquidationFeeAmount_DESC", liquidationFeeAmount_DESC_NULLS_FIRST = "liquidationFeeAmount_DESC_NULLS_FIRST", liquidationFeeAmount_DESC_NULLS_LAST = "liquidationFeeAmount_DESC_NULLS_LAST", marketAddress_ASC = "marketAddress_ASC", marketAddress_ASC_NULLS_FIRST = "marketAddress_ASC_NULLS_FIRST", marketAddress_ASC_NULLS_LAST = "marketAddress_ASC_NULLS_LAST", marketAddress_DESC = "marketAddress_DESC", marketAddress_DESC_NULLS_FIRST = "marketAddress_DESC_NULLS_FIRST", marketAddress_DESC_NULLS_LAST = "marketAddress_DESC_NULLS_LAST", minOutputAmount_ASC = "minOutputAmount_ASC", minOutputAmount_ASC_NULLS_FIRST = "minOutputAmount_ASC_NULLS_FIRST", minOutputAmount_ASC_NULLS_LAST = "minOutputAmount_ASC_NULLS_LAST", minOutputAmount_DESC = "minOutputAmount_DESC", minOutputAmount_DESC_NULLS_FIRST = "minOutputAmount_DESC_NULLS_FIRST", minOutputAmount_DESC_NULLS_LAST = "minOutputAmount_DESC_NULLS_LAST", numberOfParts_ASC = "numberOfParts_ASC", numberOfParts_ASC_NULLS_FIRST = "numberOfParts_ASC_NULLS_FIRST", numberOfParts_ASC_NULLS_LAST = "numberOfParts_ASC_NULLS_LAST", numberOfParts_DESC = "numberOfParts_DESC", numberOfParts_DESC_NULLS_FIRST = "numberOfParts_DESC_NULLS_FIRST", numberOfParts_DESC_NULLS_LAST = "numberOfParts_DESC_NULLS_LAST", orderKey_ASC = "orderKey_ASC", orderKey_ASC_NULLS_FIRST = "orderKey_ASC_NULLS_FIRST", orderKey_ASC_NULLS_LAST = "orderKey_ASC_NULLS_LAST", orderKey_DESC = "orderKey_DESC", orderKey_DESC_NULLS_FIRST = "orderKey_DESC_NULLS_FIRST", orderKey_DESC_NULLS_LAST = "orderKey_DESC_NULLS_LAST", orderType_ASC = "orderType_ASC", orderType_ASC_NULLS_FIRST = "orderType_ASC_NULLS_FIRST", orderType_ASC_NULLS_LAST = "orderType_ASC_NULLS_LAST", orderType_DESC = "orderType_DESC", orderType_DESC_NULLS_FIRST = "orderType_DESC_NULLS_FIRST", orderType_DESC_NULLS_LAST = "orderType_DESC_NULLS_LAST", pnlUsd_ASC = "pnlUsd_ASC", pnlUsd_ASC_NULLS_FIRST = "pnlUsd_ASC_NULLS_FIRST", pnlUsd_ASC_NULLS_LAST = "pnlUsd_ASC_NULLS_LAST", pnlUsd_DESC = "pnlUsd_DESC", pnlUsd_DESC_NULLS_FIRST = "pnlUsd_DESC_NULLS_FIRST", pnlUsd_DESC_NULLS_LAST = "pnlUsd_DESC_NULLS_LAST", positionFeeAmount_ASC = "positionFeeAmount_ASC", positionFeeAmount_ASC_NULLS_FIRST = "positionFeeAmount_ASC_NULLS_FIRST", positionFeeAmount_ASC_NULLS_LAST = "positionFeeAmount_ASC_NULLS_LAST", positionFeeAmount_DESC = "positionFeeAmount_DESC", positionFeeAmount_DESC_NULLS_FIRST = "positionFeeAmount_DESC_NULLS_FIRST", positionFeeAmount_DESC_NULLS_LAST = "positionFeeAmount_DESC_NULLS_LAST", priceImpactAmount_ASC = "priceImpactAmount_ASC", priceImpactAmount_ASC_NULLS_FIRST = "priceImpactAmount_ASC_NULLS_FIRST", priceImpactAmount_ASC_NULLS_LAST = "priceImpactAmount_ASC_NULLS_LAST", priceImpactAmount_DESC = "priceImpactAmount_DESC", priceImpactAmount_DESC_NULLS_FIRST = "priceImpactAmount_DESC_NULLS_FIRST", priceImpactAmount_DESC_NULLS_LAST = "priceImpactAmount_DESC_NULLS_LAST", priceImpactDiffUsd_ASC = "priceImpactDiffUsd_ASC", priceImpactDiffUsd_ASC_NULLS_FIRST = "priceImpactDiffUsd_ASC_NULLS_FIRST", priceImpactDiffUsd_ASC_NULLS_LAST = "priceImpactDiffUsd_ASC_NULLS_LAST", priceImpactDiffUsd_DESC = "priceImpactDiffUsd_DESC", priceImpactDiffUsd_DESC_NULLS_FIRST = "priceImpactDiffUsd_DESC_NULLS_FIRST", priceImpactDiffUsd_DESC_NULLS_LAST = "priceImpactDiffUsd_DESC_NULLS_LAST", priceImpactUsd_ASC = "priceImpactUsd_ASC", priceImpactUsd_ASC_NULLS_FIRST = "priceImpactUsd_ASC_NULLS_FIRST", priceImpactUsd_ASC_NULLS_LAST = "priceImpactUsd_ASC_NULLS_LAST", priceImpactUsd_DESC = "priceImpactUsd_DESC", priceImpactUsd_DESC_NULLS_FIRST = "priceImpactUsd_DESC_NULLS_FIRST", priceImpactUsd_DESC_NULLS_LAST = "priceImpactUsd_DESC_NULLS_LAST", proportionalPendingImpactUsd_ASC = "proportionalPendingImpactUsd_ASC", proportionalPendingImpactUsd_ASC_NULLS_FIRST = "proportionalPendingImpactUsd_ASC_NULLS_FIRST", proportionalPendingImpactUsd_ASC_NULLS_LAST = "proportionalPendingImpactUsd_ASC_NULLS_LAST", proportionalPendingImpactUsd_DESC = "proportionalPendingImpactUsd_DESC", proportionalPendingImpactUsd_DESC_NULLS_FIRST = "proportionalPendingImpactUsd_DESC_NULLS_FIRST", proportionalPendingImpactUsd_DESC_NULLS_LAST = "proportionalPendingImpactUsd_DESC_NULLS_LAST", reasonBytes_ASC = "reasonBytes_ASC", reasonBytes_ASC_NULLS_FIRST = "reasonBytes_ASC_NULLS_FIRST", reasonBytes_ASC_NULLS_LAST = "reasonBytes_ASC_NULLS_LAST", reasonBytes_DESC = "reasonBytes_DESC", reasonBytes_DESC_NULLS_FIRST = "reasonBytes_DESC_NULLS_FIRST", reasonBytes_DESC_NULLS_LAST = "reasonBytes_DESC_NULLS_LAST", reason_ASC = "reason_ASC", reason_ASC_NULLS_FIRST = "reason_ASC_NULLS_FIRST", reason_ASC_NULLS_LAST = "reason_ASC_NULLS_LAST", reason_DESC = "reason_DESC", reason_DESC_NULLS_FIRST = "reason_DESC_NULLS_FIRST", reason_DESC_NULLS_LAST = "reason_DESC_NULLS_LAST", shouldUnwrapNativeToken_ASC = "shouldUnwrapNativeToken_ASC", shouldUnwrapNativeToken_ASC_NULLS_FIRST = "shouldUnwrapNativeToken_ASC_NULLS_FIRST", shouldUnwrapNativeToken_ASC_NULLS_LAST = "shouldUnwrapNativeToken_ASC_NULLS_LAST", shouldUnwrapNativeToken_DESC = "shouldUnwrapNativeToken_DESC", shouldUnwrapNativeToken_DESC_NULLS_FIRST = "shouldUnwrapNativeToken_DESC_NULLS_FIRST", shouldUnwrapNativeToken_DESC_NULLS_LAST = "shouldUnwrapNativeToken_DESC_NULLS_LAST", sizeDeltaInTokens_ASC = "sizeDeltaInTokens_ASC", sizeDeltaInTokens_ASC_NULLS_FIRST = "sizeDeltaInTokens_ASC_NULLS_FIRST", sizeDeltaInTokens_ASC_NULLS_LAST = "sizeDeltaInTokens_ASC_NULLS_LAST", sizeDeltaInTokens_DESC = "sizeDeltaInTokens_DESC", sizeDeltaInTokens_DESC_NULLS_FIRST = "sizeDeltaInTokens_DESC_NULLS_FIRST", sizeDeltaInTokens_DESC_NULLS_LAST = "sizeDeltaInTokens_DESC_NULLS_LAST", sizeDeltaUsd_ASC = "sizeDeltaUsd_ASC", sizeDeltaUsd_ASC_NULLS_FIRST = "sizeDeltaUsd_ASC_NULLS_FIRST", sizeDeltaUsd_ASC_NULLS_LAST = "sizeDeltaUsd_ASC_NULLS_LAST", sizeDeltaUsd_DESC = "sizeDeltaUsd_DESC", sizeDeltaUsd_DESC_NULLS_FIRST = "sizeDeltaUsd_DESC_NULLS_FIRST", sizeDeltaUsd_DESC_NULLS_LAST = "sizeDeltaUsd_DESC_NULLS_LAST", srcChainId_ASC = "srcChainId_ASC", srcChainId_ASC_NULLS_FIRST = "srcChainId_ASC_NULLS_FIRST", srcChainId_ASC_NULLS_LAST = "srcChainId_ASC_NULLS_LAST", srcChainId_DESC = "srcChainId_DESC", srcChainId_DESC_NULLS_FIRST = "srcChainId_DESC_NULLS_FIRST", srcChainId_DESC_NULLS_LAST = "srcChainId_DESC_NULLS_LAST", swapImpactUsd_ASC = "swapImpactUsd_ASC", swapImpactUsd_ASC_NULLS_FIRST = "swapImpactUsd_ASC_NULLS_FIRST", swapImpactUsd_ASC_NULLS_LAST = "swapImpactUsd_ASC_NULLS_LAST", swapImpactUsd_DESC = "swapImpactUsd_DESC", swapImpactUsd_DESC_NULLS_FIRST = "swapImpactUsd_DESC_NULLS_FIRST", swapImpactUsd_DESC_NULLS_LAST = "swapImpactUsd_DESC_NULLS_LAST", timestamp_ASC = "timestamp_ASC", timestamp_ASC_NULLS_FIRST = "timestamp_ASC_NULLS_FIRST", timestamp_ASC_NULLS_LAST = "timestamp_ASC_NULLS_LAST", timestamp_DESC = "timestamp_DESC", timestamp_DESC_NULLS_FIRST = "timestamp_DESC_NULLS_FIRST", timestamp_DESC_NULLS_LAST = "timestamp_DESC_NULLS_LAST", totalImpactUsd_ASC = "totalImpactUsd_ASC", totalImpactUsd_ASC_NULLS_FIRST = "totalImpactUsd_ASC_NULLS_FIRST", totalImpactUsd_ASC_NULLS_LAST = "totalImpactUsd_ASC_NULLS_LAST", totalImpactUsd_DESC = "totalImpactUsd_DESC", totalImpactUsd_DESC_NULLS_FIRST = "totalImpactUsd_DESC_NULLS_FIRST", totalImpactUsd_DESC_NULLS_LAST = "totalImpactUsd_DESC_NULLS_LAST", transactionHash_ASC = "transactionHash_ASC", transactionHash_ASC_NULLS_FIRST = "transactionHash_ASC_NULLS_FIRST", transactionHash_ASC_NULLS_LAST = "transactionHash_ASC_NULLS_LAST", transactionHash_DESC = "transactionHash_DESC", transactionHash_DESC_NULLS_FIRST = "transactionHash_DESC_NULLS_FIRST", transactionHash_DESC_NULLS_LAST = "transactionHash_DESC_NULLS_LAST", triggerPrice_ASC = "triggerPrice_ASC", triggerPrice_ASC_NULLS_FIRST = "triggerPrice_ASC_NULLS_FIRST", triggerPrice_ASC_NULLS_LAST = "triggerPrice_ASC_NULLS_LAST", triggerPrice_DESC = "triggerPrice_DESC", triggerPrice_DESC_NULLS_FIRST = "triggerPrice_DESC_NULLS_FIRST", triggerPrice_DESC_NULLS_LAST = "triggerPrice_DESC_NULLS_LAST", twapGroupId_ASC = "twapGroupId_ASC", twapGroupId_ASC_NULLS_FIRST = "twapGroupId_ASC_NULLS_FIRST", twapGroupId_ASC_NULLS_LAST = "twapGroupId_ASC_NULLS_LAST", twapGroupId_DESC = "twapGroupId_DESC", twapGroupId_DESC_NULLS_FIRST = "twapGroupId_DESC_NULLS_FIRST", twapGroupId_DESC_NULLS_LAST = "twapGroupId_DESC_NULLS_LAST", uiFeeReceiver_ASC = "uiFeeReceiver_ASC", uiFeeReceiver_ASC_NULLS_FIRST = "uiFeeReceiver_ASC_NULLS_FIRST", uiFeeReceiver_ASC_NULLS_LAST = "uiFeeReceiver_ASC_NULLS_LAST", uiFeeReceiver_DESC = "uiFeeReceiver_DESC", uiFeeReceiver_DESC_NULLS_FIRST = "uiFeeReceiver_DESC_NULLS_FIRST", uiFeeReceiver_DESC_NULLS_LAST = "uiFeeReceiver_DESC_NULLS_LAST" } export interface TradeActionWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; acceptablePrice_eq?: InputMaybe; acceptablePrice_gt?: InputMaybe; acceptablePrice_gte?: InputMaybe; acceptablePrice_in?: InputMaybe>; acceptablePrice_isNull?: InputMaybe; acceptablePrice_lt?: InputMaybe; acceptablePrice_lte?: InputMaybe; acceptablePrice_not_eq?: InputMaybe; acceptablePrice_not_in?: InputMaybe>; account_contains?: InputMaybe; account_containsInsensitive?: InputMaybe; account_endsWith?: InputMaybe; account_eq?: InputMaybe; account_gt?: InputMaybe; account_gte?: InputMaybe; account_in?: InputMaybe>; account_isNull?: InputMaybe; account_lt?: InputMaybe; account_lte?: InputMaybe; account_not_contains?: InputMaybe; account_not_containsInsensitive?: InputMaybe; account_not_endsWith?: InputMaybe; account_not_eq?: InputMaybe; account_not_in?: InputMaybe>; account_not_startsWith?: InputMaybe; account_startsWith?: InputMaybe; basePnlUsd_eq?: InputMaybe; basePnlUsd_gt?: InputMaybe; basePnlUsd_gte?: InputMaybe; basePnlUsd_in?: InputMaybe>; basePnlUsd_isNull?: InputMaybe; basePnlUsd_lt?: InputMaybe; basePnlUsd_lte?: InputMaybe; basePnlUsd_not_eq?: InputMaybe; basePnlUsd_not_in?: InputMaybe>; borrowingFeeAmount_eq?: InputMaybe; borrowingFeeAmount_gt?: InputMaybe; borrowingFeeAmount_gte?: InputMaybe; borrowingFeeAmount_in?: InputMaybe>; borrowingFeeAmount_isNull?: InputMaybe; borrowingFeeAmount_lt?: InputMaybe; borrowingFeeAmount_lte?: InputMaybe; borrowingFeeAmount_not_eq?: InputMaybe; borrowingFeeAmount_not_in?: InputMaybe>; collateralTokenPriceMax_eq?: InputMaybe; collateralTokenPriceMax_gt?: InputMaybe; collateralTokenPriceMax_gte?: InputMaybe; collateralTokenPriceMax_in?: InputMaybe>; collateralTokenPriceMax_isNull?: InputMaybe; collateralTokenPriceMax_lt?: InputMaybe; collateralTokenPriceMax_lte?: InputMaybe; collateralTokenPriceMax_not_eq?: InputMaybe; collateralTokenPriceMax_not_in?: InputMaybe>; collateralTokenPriceMin_eq?: InputMaybe; collateralTokenPriceMin_gt?: InputMaybe; collateralTokenPriceMin_gte?: InputMaybe; collateralTokenPriceMin_in?: InputMaybe>; collateralTokenPriceMin_isNull?: InputMaybe; collateralTokenPriceMin_lt?: InputMaybe; collateralTokenPriceMin_lte?: InputMaybe; collateralTokenPriceMin_not_eq?: InputMaybe; collateralTokenPriceMin_not_in?: InputMaybe>; collateralTotalCostAmount_eq?: InputMaybe; collateralTotalCostAmount_gt?: InputMaybe; collateralTotalCostAmount_gte?: InputMaybe; collateralTotalCostAmount_in?: InputMaybe>; collateralTotalCostAmount_isNull?: InputMaybe; collateralTotalCostAmount_lt?: InputMaybe; collateralTotalCostAmount_lte?: InputMaybe; collateralTotalCostAmount_not_eq?: InputMaybe; collateralTotalCostAmount_not_in?: InputMaybe>; contractTriggerPrice_eq?: InputMaybe; contractTriggerPrice_gt?: InputMaybe; contractTriggerPrice_gte?: InputMaybe; contractTriggerPrice_in?: InputMaybe>; contractTriggerPrice_isNull?: InputMaybe; contractTriggerPrice_lt?: InputMaybe; contractTriggerPrice_lte?: InputMaybe; contractTriggerPrice_not_eq?: InputMaybe; contractTriggerPrice_not_in?: InputMaybe>; decreasePositionSwapType_eq?: InputMaybe; decreasePositionSwapType_gt?: InputMaybe; decreasePositionSwapType_gte?: InputMaybe; decreasePositionSwapType_in?: InputMaybe>; decreasePositionSwapType_isNull?: InputMaybe; decreasePositionSwapType_lt?: InputMaybe; decreasePositionSwapType_lte?: InputMaybe; decreasePositionSwapType_not_eq?: InputMaybe; decreasePositionSwapType_not_in?: InputMaybe>; eventName_contains?: InputMaybe; eventName_containsInsensitive?: InputMaybe; eventName_endsWith?: InputMaybe; eventName_eq?: InputMaybe; eventName_gt?: InputMaybe; eventName_gte?: InputMaybe; eventName_in?: InputMaybe>; eventName_isNull?: InputMaybe; eventName_lt?: InputMaybe; eventName_lte?: InputMaybe; eventName_not_contains?: InputMaybe; eventName_not_containsInsensitive?: InputMaybe; eventName_not_endsWith?: InputMaybe; eventName_not_eq?: InputMaybe; eventName_not_in?: InputMaybe>; eventName_not_startsWith?: InputMaybe; eventName_startsWith?: InputMaybe; executionAmountOut_eq?: InputMaybe; executionAmountOut_gt?: InputMaybe; executionAmountOut_gte?: InputMaybe; executionAmountOut_in?: InputMaybe>; executionAmountOut_isNull?: InputMaybe; executionAmountOut_lt?: InputMaybe; executionAmountOut_lte?: InputMaybe; executionAmountOut_not_eq?: InputMaybe; executionAmountOut_not_in?: InputMaybe>; executionPrice_eq?: InputMaybe; executionPrice_gt?: InputMaybe; executionPrice_gte?: InputMaybe; executionPrice_in?: InputMaybe>; executionPrice_isNull?: InputMaybe; executionPrice_lt?: InputMaybe; executionPrice_lte?: InputMaybe; executionPrice_not_eq?: InputMaybe; executionPrice_not_in?: InputMaybe>; fundingFeeAmount_eq?: InputMaybe; fundingFeeAmount_gt?: InputMaybe; fundingFeeAmount_gte?: InputMaybe; fundingFeeAmount_in?: InputMaybe>; fundingFeeAmount_isNull?: InputMaybe; fundingFeeAmount_lt?: InputMaybe; fundingFeeAmount_lte?: InputMaybe; fundingFeeAmount_not_eq?: InputMaybe; fundingFeeAmount_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; indexTokenPriceMax_eq?: InputMaybe; indexTokenPriceMax_gt?: InputMaybe; indexTokenPriceMax_gte?: InputMaybe; indexTokenPriceMax_in?: InputMaybe>; indexTokenPriceMax_isNull?: InputMaybe; indexTokenPriceMax_lt?: InputMaybe; indexTokenPriceMax_lte?: InputMaybe; indexTokenPriceMax_not_eq?: InputMaybe; indexTokenPriceMax_not_in?: InputMaybe>; indexTokenPriceMin_eq?: InputMaybe; indexTokenPriceMin_gt?: InputMaybe; indexTokenPriceMin_gte?: InputMaybe; indexTokenPriceMin_in?: InputMaybe>; indexTokenPriceMin_isNull?: InputMaybe; indexTokenPriceMin_lt?: InputMaybe; indexTokenPriceMin_lte?: InputMaybe; indexTokenPriceMin_not_eq?: InputMaybe; indexTokenPriceMin_not_in?: InputMaybe>; initialCollateralDeltaAmount_eq?: InputMaybe; initialCollateralDeltaAmount_gt?: InputMaybe; initialCollateralDeltaAmount_gte?: InputMaybe; initialCollateralDeltaAmount_in?: InputMaybe>; initialCollateralDeltaAmount_isNull?: InputMaybe; initialCollateralDeltaAmount_lt?: InputMaybe; initialCollateralDeltaAmount_lte?: InputMaybe; initialCollateralDeltaAmount_not_eq?: InputMaybe; initialCollateralDeltaAmount_not_in?: InputMaybe>; initialCollateralTokenAddress_contains?: InputMaybe; initialCollateralTokenAddress_containsInsensitive?: InputMaybe; initialCollateralTokenAddress_endsWith?: InputMaybe; initialCollateralTokenAddress_eq?: InputMaybe; initialCollateralTokenAddress_gt?: InputMaybe; initialCollateralTokenAddress_gte?: InputMaybe; initialCollateralTokenAddress_in?: InputMaybe>; initialCollateralTokenAddress_isNull?: InputMaybe; initialCollateralTokenAddress_lt?: InputMaybe; initialCollateralTokenAddress_lte?: InputMaybe; initialCollateralTokenAddress_not_contains?: InputMaybe; initialCollateralTokenAddress_not_containsInsensitive?: InputMaybe; initialCollateralTokenAddress_not_endsWith?: InputMaybe; initialCollateralTokenAddress_not_eq?: InputMaybe; initialCollateralTokenAddress_not_in?: InputMaybe>; initialCollateralTokenAddress_not_startsWith?: InputMaybe; initialCollateralTokenAddress_startsWith?: InputMaybe; isLong_eq?: InputMaybe; isLong_isNull?: InputMaybe; isLong_not_eq?: InputMaybe; liquidationFeeAmount_eq?: InputMaybe; liquidationFeeAmount_gt?: InputMaybe; liquidationFeeAmount_gte?: InputMaybe; liquidationFeeAmount_in?: InputMaybe>; liquidationFeeAmount_isNull?: InputMaybe; liquidationFeeAmount_lt?: InputMaybe; liquidationFeeAmount_lte?: InputMaybe; liquidationFeeAmount_not_eq?: InputMaybe; liquidationFeeAmount_not_in?: InputMaybe>; marketAddress_contains?: InputMaybe; marketAddress_containsInsensitive?: InputMaybe; marketAddress_endsWith?: InputMaybe; marketAddress_eq?: InputMaybe; marketAddress_gt?: InputMaybe; marketAddress_gte?: InputMaybe; marketAddress_in?: InputMaybe>; marketAddress_isNull?: InputMaybe; marketAddress_lt?: InputMaybe; marketAddress_lte?: InputMaybe; marketAddress_not_contains?: InputMaybe; marketAddress_not_containsInsensitive?: InputMaybe; marketAddress_not_endsWith?: InputMaybe; marketAddress_not_eq?: InputMaybe; marketAddress_not_in?: InputMaybe>; marketAddress_not_startsWith?: InputMaybe; marketAddress_startsWith?: InputMaybe; minOutputAmount_eq?: InputMaybe; minOutputAmount_gt?: InputMaybe; minOutputAmount_gte?: InputMaybe; minOutputAmount_in?: InputMaybe>; minOutputAmount_isNull?: InputMaybe; minOutputAmount_lt?: InputMaybe; minOutputAmount_lte?: InputMaybe; minOutputAmount_not_eq?: InputMaybe; minOutputAmount_not_in?: InputMaybe>; numberOfParts_eq?: InputMaybe; numberOfParts_gt?: InputMaybe; numberOfParts_gte?: InputMaybe; numberOfParts_in?: InputMaybe>; numberOfParts_isNull?: InputMaybe; numberOfParts_lt?: InputMaybe; numberOfParts_lte?: InputMaybe; numberOfParts_not_eq?: InputMaybe; numberOfParts_not_in?: InputMaybe>; orderKey_contains?: InputMaybe; orderKey_containsInsensitive?: InputMaybe; orderKey_endsWith?: InputMaybe; orderKey_eq?: InputMaybe; orderKey_gt?: InputMaybe; orderKey_gte?: InputMaybe; orderKey_in?: InputMaybe>; orderKey_isNull?: InputMaybe; orderKey_lt?: InputMaybe; orderKey_lte?: InputMaybe; orderKey_not_contains?: InputMaybe; orderKey_not_containsInsensitive?: InputMaybe; orderKey_not_endsWith?: InputMaybe; orderKey_not_eq?: InputMaybe; orderKey_not_in?: InputMaybe>; orderKey_not_startsWith?: InputMaybe; orderKey_startsWith?: InputMaybe; orderType_eq?: InputMaybe; orderType_gt?: InputMaybe; orderType_gte?: InputMaybe; orderType_in?: InputMaybe>; orderType_isNull?: InputMaybe; orderType_lt?: InputMaybe; orderType_lte?: InputMaybe; orderType_not_eq?: InputMaybe; orderType_not_in?: InputMaybe>; pnlUsd_eq?: InputMaybe; pnlUsd_gt?: InputMaybe; pnlUsd_gte?: InputMaybe; pnlUsd_in?: InputMaybe>; pnlUsd_isNull?: InputMaybe; pnlUsd_lt?: InputMaybe; pnlUsd_lte?: InputMaybe; pnlUsd_not_eq?: InputMaybe; pnlUsd_not_in?: InputMaybe>; positionFeeAmount_eq?: InputMaybe; positionFeeAmount_gt?: InputMaybe; positionFeeAmount_gte?: InputMaybe; positionFeeAmount_in?: InputMaybe>; positionFeeAmount_isNull?: InputMaybe; positionFeeAmount_lt?: InputMaybe; positionFeeAmount_lte?: InputMaybe; positionFeeAmount_not_eq?: InputMaybe; positionFeeAmount_not_in?: InputMaybe>; priceImpactAmount_eq?: InputMaybe; priceImpactAmount_gt?: InputMaybe; priceImpactAmount_gte?: InputMaybe; priceImpactAmount_in?: InputMaybe>; priceImpactAmount_isNull?: InputMaybe; priceImpactAmount_lt?: InputMaybe; priceImpactAmount_lte?: InputMaybe; priceImpactAmount_not_eq?: InputMaybe; priceImpactAmount_not_in?: InputMaybe>; priceImpactDiffUsd_eq?: InputMaybe; priceImpactDiffUsd_gt?: InputMaybe; priceImpactDiffUsd_gte?: InputMaybe; priceImpactDiffUsd_in?: InputMaybe>; priceImpactDiffUsd_isNull?: InputMaybe; priceImpactDiffUsd_lt?: InputMaybe; priceImpactDiffUsd_lte?: InputMaybe; priceImpactDiffUsd_not_eq?: InputMaybe; priceImpactDiffUsd_not_in?: InputMaybe>; priceImpactUsd_eq?: InputMaybe; priceImpactUsd_gt?: InputMaybe; priceImpactUsd_gte?: InputMaybe; priceImpactUsd_in?: InputMaybe>; priceImpactUsd_isNull?: InputMaybe; priceImpactUsd_lt?: InputMaybe; priceImpactUsd_lte?: InputMaybe; priceImpactUsd_not_eq?: InputMaybe; priceImpactUsd_not_in?: InputMaybe>; proportionalPendingImpactUsd_eq?: InputMaybe; proportionalPendingImpactUsd_gt?: InputMaybe; proportionalPendingImpactUsd_gte?: InputMaybe; proportionalPendingImpactUsd_in?: InputMaybe>; proportionalPendingImpactUsd_isNull?: InputMaybe; proportionalPendingImpactUsd_lt?: InputMaybe; proportionalPendingImpactUsd_lte?: InputMaybe; proportionalPendingImpactUsd_not_eq?: InputMaybe; proportionalPendingImpactUsd_not_in?: InputMaybe>; reasonBytes_contains?: InputMaybe; reasonBytes_containsInsensitive?: InputMaybe; reasonBytes_endsWith?: InputMaybe; reasonBytes_eq?: InputMaybe; reasonBytes_gt?: InputMaybe; reasonBytes_gte?: InputMaybe; reasonBytes_in?: InputMaybe>; reasonBytes_isNull?: InputMaybe; reasonBytes_lt?: InputMaybe; reasonBytes_lte?: InputMaybe; reasonBytes_not_contains?: InputMaybe; reasonBytes_not_containsInsensitive?: InputMaybe; reasonBytes_not_endsWith?: InputMaybe; reasonBytes_not_eq?: InputMaybe; reasonBytes_not_in?: InputMaybe>; reasonBytes_not_startsWith?: InputMaybe; reasonBytes_startsWith?: InputMaybe; reason_contains?: InputMaybe; reason_containsInsensitive?: InputMaybe; reason_endsWith?: InputMaybe; reason_eq?: InputMaybe; reason_gt?: InputMaybe; reason_gte?: InputMaybe; reason_in?: InputMaybe>; reason_isNull?: InputMaybe; reason_lt?: InputMaybe; reason_lte?: InputMaybe; reason_not_contains?: InputMaybe; reason_not_containsInsensitive?: InputMaybe; reason_not_endsWith?: InputMaybe; reason_not_eq?: InputMaybe; reason_not_in?: InputMaybe>; reason_not_startsWith?: InputMaybe; reason_startsWith?: InputMaybe; shouldUnwrapNativeToken_eq?: InputMaybe; shouldUnwrapNativeToken_isNull?: InputMaybe; shouldUnwrapNativeToken_not_eq?: InputMaybe; sizeDeltaInTokens_eq?: InputMaybe; sizeDeltaInTokens_gt?: InputMaybe; sizeDeltaInTokens_gte?: InputMaybe; sizeDeltaInTokens_in?: InputMaybe>; sizeDeltaInTokens_isNull?: InputMaybe; sizeDeltaInTokens_lt?: InputMaybe; sizeDeltaInTokens_lte?: InputMaybe; sizeDeltaInTokens_not_eq?: InputMaybe; sizeDeltaInTokens_not_in?: InputMaybe>; sizeDeltaUsd_eq?: InputMaybe; sizeDeltaUsd_gt?: InputMaybe; sizeDeltaUsd_gte?: InputMaybe; sizeDeltaUsd_in?: InputMaybe>; sizeDeltaUsd_isNull?: InputMaybe; sizeDeltaUsd_lt?: InputMaybe; sizeDeltaUsd_lte?: InputMaybe; sizeDeltaUsd_not_eq?: InputMaybe; sizeDeltaUsd_not_in?: InputMaybe>; srcChainId_eq?: InputMaybe; srcChainId_gt?: InputMaybe; srcChainId_gte?: InputMaybe; srcChainId_in?: InputMaybe>; srcChainId_isNull?: InputMaybe; srcChainId_lt?: InputMaybe; srcChainId_lte?: InputMaybe; srcChainId_not_eq?: InputMaybe; srcChainId_not_in?: InputMaybe>; swapImpactUsd_eq?: InputMaybe; swapImpactUsd_gt?: InputMaybe; swapImpactUsd_gte?: InputMaybe; swapImpactUsd_in?: InputMaybe>; swapImpactUsd_isNull?: InputMaybe; swapImpactUsd_lt?: InputMaybe; swapImpactUsd_lte?: InputMaybe; swapImpactUsd_not_eq?: InputMaybe; swapImpactUsd_not_in?: InputMaybe>; swapPath_containsAll?: InputMaybe>; swapPath_containsAny?: InputMaybe>; swapPath_containsNone?: InputMaybe>; swapPath_isNull?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_isNull?: InputMaybe; timestamp_lt?: InputMaybe; timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; totalImpactUsd_eq?: InputMaybe; totalImpactUsd_gt?: InputMaybe; totalImpactUsd_gte?: InputMaybe; totalImpactUsd_in?: InputMaybe>; totalImpactUsd_isNull?: InputMaybe; totalImpactUsd_lt?: InputMaybe; totalImpactUsd_lte?: InputMaybe; totalImpactUsd_not_eq?: InputMaybe; totalImpactUsd_not_in?: InputMaybe>; transactionHash_contains?: InputMaybe; transactionHash_containsInsensitive?: InputMaybe; transactionHash_endsWith?: InputMaybe; transactionHash_eq?: InputMaybe; transactionHash_gt?: InputMaybe; transactionHash_gte?: InputMaybe; transactionHash_in?: InputMaybe>; transactionHash_isNull?: InputMaybe; transactionHash_lt?: InputMaybe; transactionHash_lte?: InputMaybe; transactionHash_not_contains?: InputMaybe; transactionHash_not_containsInsensitive?: InputMaybe; transactionHash_not_endsWith?: InputMaybe; transactionHash_not_eq?: InputMaybe; transactionHash_not_in?: InputMaybe>; transactionHash_not_startsWith?: InputMaybe; transactionHash_startsWith?: InputMaybe; triggerPrice_eq?: InputMaybe; triggerPrice_gt?: InputMaybe; triggerPrice_gte?: InputMaybe; triggerPrice_in?: InputMaybe>; triggerPrice_isNull?: InputMaybe; triggerPrice_lt?: InputMaybe; triggerPrice_lte?: InputMaybe; triggerPrice_not_eq?: InputMaybe; triggerPrice_not_in?: InputMaybe>; twapGroupId_contains?: InputMaybe; twapGroupId_containsInsensitive?: InputMaybe; twapGroupId_endsWith?: InputMaybe; twapGroupId_eq?: InputMaybe; twapGroupId_gt?: InputMaybe; twapGroupId_gte?: InputMaybe; twapGroupId_in?: InputMaybe>; twapGroupId_isNull?: InputMaybe; twapGroupId_lt?: InputMaybe; twapGroupId_lte?: InputMaybe; twapGroupId_not_contains?: InputMaybe; twapGroupId_not_containsInsensitive?: InputMaybe; twapGroupId_not_endsWith?: InputMaybe; twapGroupId_not_eq?: InputMaybe; twapGroupId_not_in?: InputMaybe>; twapGroupId_not_startsWith?: InputMaybe; twapGroupId_startsWith?: InputMaybe; uiFeeReceiver_contains?: InputMaybe; uiFeeReceiver_containsInsensitive?: InputMaybe; uiFeeReceiver_endsWith?: InputMaybe; uiFeeReceiver_eq?: InputMaybe; uiFeeReceiver_gt?: InputMaybe; uiFeeReceiver_gte?: InputMaybe; uiFeeReceiver_in?: InputMaybe>; uiFeeReceiver_isNull?: InputMaybe; uiFeeReceiver_lt?: InputMaybe; uiFeeReceiver_lte?: InputMaybe; uiFeeReceiver_not_contains?: InputMaybe; uiFeeReceiver_not_containsInsensitive?: InputMaybe; uiFeeReceiver_not_endsWith?: InputMaybe; uiFeeReceiver_not_eq?: InputMaybe; uiFeeReceiver_not_in?: InputMaybe>; uiFeeReceiver_not_startsWith?: InputMaybe; uiFeeReceiver_startsWith?: InputMaybe; } export interface TradeActionsConnection { __typename?: "TradeActionsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface TraderReferral { __typename?: "TraderReferral"; affiliate?: Maybe; id: Scalars["String"]["output"]; referralCode?: Maybe; updatedAtBlock: Scalars["Int"]["output"]; updatedAtTimestamp: Scalars["Int"]["output"]; updatedTxnHash: Scalars["String"]["output"]; } export interface TraderReferralEdge { __typename?: "TraderReferralEdge"; cursor: Scalars["String"]["output"]; node: TraderReferral; } export declare enum TraderReferralOrderByInput { affiliate_ASC = "affiliate_ASC", affiliate_ASC_NULLS_FIRST = "affiliate_ASC_NULLS_FIRST", affiliate_ASC_NULLS_LAST = "affiliate_ASC_NULLS_LAST", affiliate_DESC = "affiliate_DESC", affiliate_DESC_NULLS_FIRST = "affiliate_DESC_NULLS_FIRST", affiliate_DESC_NULLS_LAST = "affiliate_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", referralCode_ASC = "referralCode_ASC", referralCode_ASC_NULLS_FIRST = "referralCode_ASC_NULLS_FIRST", referralCode_ASC_NULLS_LAST = "referralCode_ASC_NULLS_LAST", referralCode_DESC = "referralCode_DESC", referralCode_DESC_NULLS_FIRST = "referralCode_DESC_NULLS_FIRST", referralCode_DESC_NULLS_LAST = "referralCode_DESC_NULLS_LAST", updatedAtBlock_ASC = "updatedAtBlock_ASC", updatedAtBlock_ASC_NULLS_FIRST = "updatedAtBlock_ASC_NULLS_FIRST", updatedAtBlock_ASC_NULLS_LAST = "updatedAtBlock_ASC_NULLS_LAST", updatedAtBlock_DESC = "updatedAtBlock_DESC", updatedAtBlock_DESC_NULLS_FIRST = "updatedAtBlock_DESC_NULLS_FIRST", updatedAtBlock_DESC_NULLS_LAST = "updatedAtBlock_DESC_NULLS_LAST", updatedAtTimestamp_ASC = "updatedAtTimestamp_ASC", updatedAtTimestamp_ASC_NULLS_FIRST = "updatedAtTimestamp_ASC_NULLS_FIRST", updatedAtTimestamp_ASC_NULLS_LAST = "updatedAtTimestamp_ASC_NULLS_LAST", updatedAtTimestamp_DESC = "updatedAtTimestamp_DESC", updatedAtTimestamp_DESC_NULLS_FIRST = "updatedAtTimestamp_DESC_NULLS_FIRST", updatedAtTimestamp_DESC_NULLS_LAST = "updatedAtTimestamp_DESC_NULLS_LAST", updatedTxnHash_ASC = "updatedTxnHash_ASC", updatedTxnHash_ASC_NULLS_FIRST = "updatedTxnHash_ASC_NULLS_FIRST", updatedTxnHash_ASC_NULLS_LAST = "updatedTxnHash_ASC_NULLS_LAST", updatedTxnHash_DESC = "updatedTxnHash_DESC", updatedTxnHash_DESC_NULLS_FIRST = "updatedTxnHash_DESC_NULLS_FIRST", updatedTxnHash_DESC_NULLS_LAST = "updatedTxnHash_DESC_NULLS_LAST" } export interface TraderReferralStatsPoint { __typename?: "TraderReferralStatsPoint"; discountsUsd: Scalars["BigInt"]["output"]; timestamp: Scalars["Float"]["output"]; volumeUsd: Scalars["BigInt"]["output"]; } export interface TraderReferralStatsResponse { __typename?: "TraderReferralStatsResponse"; bucketSizeSeconds: Scalars["Float"]["output"]; compareFrom?: Maybe; compareTo?: Maybe; from: Scalars["Float"]["output"]; hasComparison: Scalars["Boolean"]["output"]; points: Array; summary: TraderReferralStatsSummary; to: Scalars["Float"]["output"]; trader: Scalars["String"]["output"]; } export interface TraderReferralStatsSummary { __typename?: "TraderReferralStatsSummary"; discountsUsd: Scalars["BigInt"]["output"]; discountsUsdDelta?: Maybe; volumeUsd: Scalars["BigInt"]["output"]; volumeUsdDelta?: Maybe; } export interface TraderReferralStatsWhereInput { from?: InputMaybe; to?: InputMaybe; trader: Scalars["String"]["input"]; } export interface TraderReferralTradeStatsByHour { __typename?: "TraderReferralTradeStatsByHour"; discountsUsd: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; timestamp: Scalars["Int"]["output"]; trader: Scalars["String"]["output"]; volumeUsd: Scalars["BigInt"]["output"]; } export interface TraderReferralTradeStatsByHourEdge { __typename?: "TraderReferralTradeStatsByHourEdge"; cursor: Scalars["String"]["output"]; node: TraderReferralTradeStatsByHour; } export declare enum TraderReferralTradeStatsByHourOrderByInput { discountsUsd_ASC = "discountsUsd_ASC", discountsUsd_ASC_NULLS_FIRST = "discountsUsd_ASC_NULLS_FIRST", discountsUsd_ASC_NULLS_LAST = "discountsUsd_ASC_NULLS_LAST", discountsUsd_DESC = "discountsUsd_DESC", discountsUsd_DESC_NULLS_FIRST = "discountsUsd_DESC_NULLS_FIRST", discountsUsd_DESC_NULLS_LAST = "discountsUsd_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", timestamp_ASC = "timestamp_ASC", timestamp_ASC_NULLS_FIRST = "timestamp_ASC_NULLS_FIRST", timestamp_ASC_NULLS_LAST = "timestamp_ASC_NULLS_LAST", timestamp_DESC = "timestamp_DESC", timestamp_DESC_NULLS_FIRST = "timestamp_DESC_NULLS_FIRST", timestamp_DESC_NULLS_LAST = "timestamp_DESC_NULLS_LAST", trader_ASC = "trader_ASC", trader_ASC_NULLS_FIRST = "trader_ASC_NULLS_FIRST", trader_ASC_NULLS_LAST = "trader_ASC_NULLS_LAST", trader_DESC = "trader_DESC", trader_DESC_NULLS_FIRST = "trader_DESC_NULLS_FIRST", trader_DESC_NULLS_LAST = "trader_DESC_NULLS_LAST", volumeUsd_ASC = "volumeUsd_ASC", volumeUsd_ASC_NULLS_FIRST = "volumeUsd_ASC_NULLS_FIRST", volumeUsd_ASC_NULLS_LAST = "volumeUsd_ASC_NULLS_LAST", volumeUsd_DESC = "volumeUsd_DESC", volumeUsd_DESC_NULLS_FIRST = "volumeUsd_DESC_NULLS_FIRST", volumeUsd_DESC_NULLS_LAST = "volumeUsd_DESC_NULLS_LAST" } export interface TraderReferralTradeStatsByHourWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; discountsUsd_eq?: InputMaybe; discountsUsd_gt?: InputMaybe; discountsUsd_gte?: InputMaybe; discountsUsd_in?: InputMaybe>; discountsUsd_isNull?: InputMaybe; discountsUsd_lt?: InputMaybe; discountsUsd_lte?: InputMaybe; discountsUsd_not_eq?: InputMaybe; discountsUsd_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_isNull?: InputMaybe; timestamp_lt?: InputMaybe; timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; trader_contains?: InputMaybe; trader_containsInsensitive?: InputMaybe; trader_endsWith?: InputMaybe; trader_eq?: InputMaybe; trader_gt?: InputMaybe; trader_gte?: InputMaybe; trader_in?: InputMaybe>; trader_isNull?: InputMaybe; trader_lt?: InputMaybe; trader_lte?: InputMaybe; trader_not_contains?: InputMaybe; trader_not_containsInsensitive?: InputMaybe; trader_not_endsWith?: InputMaybe; trader_not_eq?: InputMaybe; trader_not_in?: InputMaybe>; trader_not_startsWith?: InputMaybe; trader_startsWith?: InputMaybe; volumeUsd_eq?: InputMaybe; volumeUsd_gt?: InputMaybe; volumeUsd_gte?: InputMaybe; volumeUsd_in?: InputMaybe>; volumeUsd_isNull?: InputMaybe; volumeUsd_lt?: InputMaybe; volumeUsd_lte?: InputMaybe; volumeUsd_not_eq?: InputMaybe; volumeUsd_not_in?: InputMaybe>; } export interface TraderReferralTradeStatsByHoursConnection { __typename?: "TraderReferralTradeStatsByHoursConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface TraderReferralWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; affiliate_contains?: InputMaybe; affiliate_containsInsensitive?: InputMaybe; affiliate_endsWith?: InputMaybe; affiliate_eq?: InputMaybe; affiliate_gt?: InputMaybe; affiliate_gte?: InputMaybe; affiliate_in?: InputMaybe>; affiliate_isNull?: InputMaybe; affiliate_lt?: InputMaybe; affiliate_lte?: InputMaybe; affiliate_not_contains?: InputMaybe; affiliate_not_containsInsensitive?: InputMaybe; affiliate_not_endsWith?: InputMaybe; affiliate_not_eq?: InputMaybe; affiliate_not_in?: InputMaybe>; affiliate_not_startsWith?: InputMaybe; affiliate_startsWith?: InputMaybe; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; referralCode_contains?: InputMaybe; referralCode_containsInsensitive?: InputMaybe; referralCode_endsWith?: InputMaybe; referralCode_eq?: InputMaybe; referralCode_gt?: InputMaybe; referralCode_gte?: InputMaybe; referralCode_in?: InputMaybe>; referralCode_isNull?: InputMaybe; referralCode_lt?: InputMaybe; referralCode_lte?: InputMaybe; referralCode_not_contains?: InputMaybe; referralCode_not_containsInsensitive?: InputMaybe; referralCode_not_endsWith?: InputMaybe; referralCode_not_eq?: InputMaybe; referralCode_not_in?: InputMaybe>; referralCode_not_startsWith?: InputMaybe; referralCode_startsWith?: InputMaybe; updatedAtBlock_eq?: InputMaybe; updatedAtBlock_gt?: InputMaybe; updatedAtBlock_gte?: InputMaybe; updatedAtBlock_in?: InputMaybe>; updatedAtBlock_isNull?: InputMaybe; updatedAtBlock_lt?: InputMaybe; updatedAtBlock_lte?: InputMaybe; updatedAtBlock_not_eq?: InputMaybe; updatedAtBlock_not_in?: InputMaybe>; updatedAtTimestamp_eq?: InputMaybe; updatedAtTimestamp_gt?: InputMaybe; updatedAtTimestamp_gte?: InputMaybe; updatedAtTimestamp_in?: InputMaybe>; updatedAtTimestamp_isNull?: InputMaybe; updatedAtTimestamp_lt?: InputMaybe; updatedAtTimestamp_lte?: InputMaybe; updatedAtTimestamp_not_eq?: InputMaybe; updatedAtTimestamp_not_in?: InputMaybe>; updatedTxnHash_contains?: InputMaybe; updatedTxnHash_containsInsensitive?: InputMaybe; updatedTxnHash_endsWith?: InputMaybe; updatedTxnHash_eq?: InputMaybe; updatedTxnHash_gt?: InputMaybe; updatedTxnHash_gte?: InputMaybe; updatedTxnHash_in?: InputMaybe>; updatedTxnHash_isNull?: InputMaybe; updatedTxnHash_lt?: InputMaybe; updatedTxnHash_lte?: InputMaybe; updatedTxnHash_not_contains?: InputMaybe; updatedTxnHash_not_containsInsensitive?: InputMaybe; updatedTxnHash_not_endsWith?: InputMaybe; updatedTxnHash_not_eq?: InputMaybe; updatedTxnHash_not_in?: InputMaybe>; updatedTxnHash_not_startsWith?: InputMaybe; updatedTxnHash_startsWith?: InputMaybe; } export interface TraderReferralsConnection { __typename?: "TraderReferralsConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface VolumeInfo { __typename?: "VolumeInfo"; depositVolumeUsd: Scalars["BigInt"]["output"]; id: Scalars["String"]["output"]; marginVolumeUsd: Scalars["BigInt"]["output"]; period: Scalars["String"]["output"]; swapVolumeUsd: Scalars["BigInt"]["output"]; timestamp: Scalars["Int"]["output"]; volumeUsd: Scalars["BigInt"]["output"]; withdrawalVolumeUsd: Scalars["BigInt"]["output"]; } export interface VolumeInfoEdge { __typename?: "VolumeInfoEdge"; cursor: Scalars["String"]["output"]; node: VolumeInfo; } export declare enum VolumeInfoOrderByInput { depositVolumeUsd_ASC = "depositVolumeUsd_ASC", depositVolumeUsd_ASC_NULLS_FIRST = "depositVolumeUsd_ASC_NULLS_FIRST", depositVolumeUsd_ASC_NULLS_LAST = "depositVolumeUsd_ASC_NULLS_LAST", depositVolumeUsd_DESC = "depositVolumeUsd_DESC", depositVolumeUsd_DESC_NULLS_FIRST = "depositVolumeUsd_DESC_NULLS_FIRST", depositVolumeUsd_DESC_NULLS_LAST = "depositVolumeUsd_DESC_NULLS_LAST", id_ASC = "id_ASC", id_ASC_NULLS_FIRST = "id_ASC_NULLS_FIRST", id_ASC_NULLS_LAST = "id_ASC_NULLS_LAST", id_DESC = "id_DESC", id_DESC_NULLS_FIRST = "id_DESC_NULLS_FIRST", id_DESC_NULLS_LAST = "id_DESC_NULLS_LAST", marginVolumeUsd_ASC = "marginVolumeUsd_ASC", marginVolumeUsd_ASC_NULLS_FIRST = "marginVolumeUsd_ASC_NULLS_FIRST", marginVolumeUsd_ASC_NULLS_LAST = "marginVolumeUsd_ASC_NULLS_LAST", marginVolumeUsd_DESC = "marginVolumeUsd_DESC", marginVolumeUsd_DESC_NULLS_FIRST = "marginVolumeUsd_DESC_NULLS_FIRST", marginVolumeUsd_DESC_NULLS_LAST = "marginVolumeUsd_DESC_NULLS_LAST", period_ASC = "period_ASC", period_ASC_NULLS_FIRST = "period_ASC_NULLS_FIRST", period_ASC_NULLS_LAST = "period_ASC_NULLS_LAST", period_DESC = "period_DESC", period_DESC_NULLS_FIRST = "period_DESC_NULLS_FIRST", period_DESC_NULLS_LAST = "period_DESC_NULLS_LAST", swapVolumeUsd_ASC = "swapVolumeUsd_ASC", swapVolumeUsd_ASC_NULLS_FIRST = "swapVolumeUsd_ASC_NULLS_FIRST", swapVolumeUsd_ASC_NULLS_LAST = "swapVolumeUsd_ASC_NULLS_LAST", swapVolumeUsd_DESC = "swapVolumeUsd_DESC", swapVolumeUsd_DESC_NULLS_FIRST = "swapVolumeUsd_DESC_NULLS_FIRST", swapVolumeUsd_DESC_NULLS_LAST = "swapVolumeUsd_DESC_NULLS_LAST", timestamp_ASC = "timestamp_ASC", timestamp_ASC_NULLS_FIRST = "timestamp_ASC_NULLS_FIRST", timestamp_ASC_NULLS_LAST = "timestamp_ASC_NULLS_LAST", timestamp_DESC = "timestamp_DESC", timestamp_DESC_NULLS_FIRST = "timestamp_DESC_NULLS_FIRST", timestamp_DESC_NULLS_LAST = "timestamp_DESC_NULLS_LAST", volumeUsd_ASC = "volumeUsd_ASC", volumeUsd_ASC_NULLS_FIRST = "volumeUsd_ASC_NULLS_FIRST", volumeUsd_ASC_NULLS_LAST = "volumeUsd_ASC_NULLS_LAST", volumeUsd_DESC = "volumeUsd_DESC", volumeUsd_DESC_NULLS_FIRST = "volumeUsd_DESC_NULLS_FIRST", volumeUsd_DESC_NULLS_LAST = "volumeUsd_DESC_NULLS_LAST", withdrawalVolumeUsd_ASC = "withdrawalVolumeUsd_ASC", withdrawalVolumeUsd_ASC_NULLS_FIRST = "withdrawalVolumeUsd_ASC_NULLS_FIRST", withdrawalVolumeUsd_ASC_NULLS_LAST = "withdrawalVolumeUsd_ASC_NULLS_LAST", withdrawalVolumeUsd_DESC = "withdrawalVolumeUsd_DESC", withdrawalVolumeUsd_DESC_NULLS_FIRST = "withdrawalVolumeUsd_DESC_NULLS_FIRST", withdrawalVolumeUsd_DESC_NULLS_LAST = "withdrawalVolumeUsd_DESC_NULLS_LAST" } export interface VolumeInfoWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; depositVolumeUsd_eq?: InputMaybe; depositVolumeUsd_gt?: InputMaybe; depositVolumeUsd_gte?: InputMaybe; depositVolumeUsd_in?: InputMaybe>; depositVolumeUsd_isNull?: InputMaybe; depositVolumeUsd_lt?: InputMaybe; depositVolumeUsd_lte?: InputMaybe; depositVolumeUsd_not_eq?: InputMaybe; depositVolumeUsd_not_in?: InputMaybe>; id_contains?: InputMaybe; id_containsInsensitive?: InputMaybe; id_endsWith?: InputMaybe; id_eq?: InputMaybe; id_gt?: InputMaybe; id_gte?: InputMaybe; id_in?: InputMaybe>; id_isNull?: InputMaybe; id_lt?: InputMaybe; id_lte?: InputMaybe; id_not_contains?: InputMaybe; id_not_containsInsensitive?: InputMaybe; id_not_endsWith?: InputMaybe; id_not_eq?: InputMaybe; id_not_in?: InputMaybe>; id_not_startsWith?: InputMaybe; id_startsWith?: InputMaybe; marginVolumeUsd_eq?: InputMaybe; marginVolumeUsd_gt?: InputMaybe; marginVolumeUsd_gte?: InputMaybe; marginVolumeUsd_in?: InputMaybe>; marginVolumeUsd_isNull?: InputMaybe; marginVolumeUsd_lt?: InputMaybe; marginVolumeUsd_lte?: InputMaybe; marginVolumeUsd_not_eq?: InputMaybe; marginVolumeUsd_not_in?: InputMaybe>; period_contains?: InputMaybe; period_containsInsensitive?: InputMaybe; period_endsWith?: InputMaybe; period_eq?: InputMaybe; period_gt?: InputMaybe; period_gte?: InputMaybe; period_in?: InputMaybe>; period_isNull?: InputMaybe; period_lt?: InputMaybe; period_lte?: InputMaybe; period_not_contains?: InputMaybe; period_not_containsInsensitive?: InputMaybe; period_not_endsWith?: InputMaybe; period_not_eq?: InputMaybe; period_not_in?: InputMaybe>; period_not_startsWith?: InputMaybe; period_startsWith?: InputMaybe; swapVolumeUsd_eq?: InputMaybe; swapVolumeUsd_gt?: InputMaybe; swapVolumeUsd_gte?: InputMaybe; swapVolumeUsd_in?: InputMaybe>; swapVolumeUsd_isNull?: InputMaybe; swapVolumeUsd_lt?: InputMaybe; swapVolumeUsd_lte?: InputMaybe; swapVolumeUsd_not_eq?: InputMaybe; swapVolumeUsd_not_in?: InputMaybe>; timestamp_eq?: InputMaybe; timestamp_gt?: InputMaybe; timestamp_gte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_isNull?: InputMaybe; timestamp_lt?: InputMaybe; timestamp_lte?: InputMaybe; timestamp_not_eq?: InputMaybe; timestamp_not_in?: InputMaybe>; volumeUsd_eq?: InputMaybe; volumeUsd_gt?: InputMaybe; volumeUsd_gte?: InputMaybe; volumeUsd_in?: InputMaybe>; volumeUsd_isNull?: InputMaybe; volumeUsd_lt?: InputMaybe; volumeUsd_lte?: InputMaybe; volumeUsd_not_eq?: InputMaybe; volumeUsd_not_in?: InputMaybe>; withdrawalVolumeUsd_eq?: InputMaybe; withdrawalVolumeUsd_gt?: InputMaybe; withdrawalVolumeUsd_gte?: InputMaybe; withdrawalVolumeUsd_in?: InputMaybe>; withdrawalVolumeUsd_isNull?: InputMaybe; withdrawalVolumeUsd_lt?: InputMaybe; withdrawalVolumeUsd_lte?: InputMaybe; withdrawalVolumeUsd_not_eq?: InputMaybe; withdrawalVolumeUsd_not_in?: InputMaybe>; } export interface VolumeInfosConnection { __typename?: "VolumeInfosConnection"; edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]["output"]; } export interface WhereInput { from?: InputMaybe; id_eq?: InputMaybe; maxCapital_gte?: InputMaybe; to?: InputMaybe; }