diff --git a/package.json b/package.json index 66a192677d..2d7b576b3c 100644 --- a/package.json +++ b/package.json @@ -95,6 +95,7 @@ "react-toastify": "10.0.5", "react-use": "17.3.1", "recharts": "2.12.7", + "regenerator-runtime": "0.14.1", "reselect": "5.1.0", "sass": "1.55.0", "shallowequal": "1.1.0", @@ -143,6 +144,7 @@ "@typechain/ethers-v6": "0.5.1", "@types/react-calendar": "4.1.0", "@types/react-date-range": "1.4.9", + "@types/regenerator-runtime": "^0", "@typescript-eslint/eslint-plugin": "8.26.1", "@typescript-eslint/parser": "8.26.1", "@vitejs/plugin-react": "4.3.1", @@ -189,5 +191,5 @@ "prettier --write" ] }, - "packageManager": "yarn@3.1.0" + "packageManager": "yarn@4.12.0" } diff --git a/sdk/src/configs/batch.ts b/sdk/src/configs/batch.ts index 19a5119e2e..4182667e1a 100644 --- a/sdk/src/configs/batch.ts +++ b/sdk/src/configs/batch.ts @@ -6,7 +6,9 @@ import { ARBITRUM_SEPOLIA, AVALANCHE, AVALANCHE_FUJI, + BASE_SEPOLIA, BOTANIX, + LOCALHOST, SOURCE_BASE_MAINNET, SOURCE_OPTIMISM_SEPOLIA, SOURCE_SEPOLIA, @@ -93,6 +95,18 @@ export const BATCH_CONFIGS: Record< }, }, }, + [BASE_SEPOLIA]: { + http: { + batchSize: 40, + wait: 100, + }, + client: { + multicall: { + batchSize: 1024 * 1024, + wait: 100, + }, + }, + }, [SOURCE_OPTIMISM_SEPOLIA]: { http: { batchSize: 40, @@ -117,4 +131,16 @@ export const BATCH_CONFIGS: Record< }, }, }, + [LOCALHOST]: { + http: { + batchSize: 0, + wait: 0, + }, + client: { + multicall: { + batchSize: 1024 * 1024, + wait: 0, + }, + }, + }, }; diff --git a/sdk/src/configs/chainIds.ts b/sdk/src/configs/chainIds.ts index 52040091c6..aea153f02b 100644 --- a/sdk/src/configs/chainIds.ts +++ b/sdk/src/configs/chainIds.ts @@ -11,3 +11,6 @@ export const ARBITRUM_SEPOLIA = 421614; // Testnet source export const SOURCE_OPTIMISM_SEPOLIA = 11155420; export const SOURCE_SEPOLIA = 11155111; +// Local development +export const LOCALHOST = 31337; +export const BASE_SEPOLIA = 84532; diff --git a/sdk/src/configs/chains.ts b/sdk/src/configs/chains.ts index 19808b646a..576d348676 100644 --- a/sdk/src/configs/chains.ts +++ b/sdk/src/configs/chains.ts @@ -6,8 +6,10 @@ import { avalancheFuji, base, Chain, + localhost as viemLocalhost, optimismSepolia, sepolia, + baseSepolia, } from "viem/chains"; import type { GasLimitsConfig } from "types/fees"; @@ -22,6 +24,8 @@ import { SOURCE_OPTIMISM_SEPOLIA, SOURCE_SEPOLIA, SOURCE_BASE_MAINNET, + BASE_SEPOLIA, + LOCALHOST, } from "./chainIds"; export { AVALANCHE, @@ -33,20 +37,24 @@ export { SOURCE_OPTIMISM_SEPOLIA, SOURCE_SEPOLIA, SOURCE_BASE_MAINNET, + BASE_SEPOLIA, + LOCALHOST, }; export const CONTRACTS_CHAIN_IDS: ContractsChainId[] = [ARBITRUM, AVALANCHE, BOTANIX]; -export const CONTRACTS_CHAIN_IDS_DEV: ContractsChainId[] = [...CONTRACTS_CHAIN_IDS, AVALANCHE_FUJI, ARBITRUM_SEPOLIA]; +export const CONTRACTS_CHAIN_IDS_DEV: ContractsChainId[] = [...CONTRACTS_CHAIN_IDS, AVALANCHE_FUJI, ARBITRUM_SEPOLIA, LOCALHOST]; export type ContractsChainId = | typeof ARBITRUM | typeof AVALANCHE | typeof AVALANCHE_FUJI | typeof BOTANIX - | typeof ARBITRUM_SEPOLIA; + | typeof ARBITRUM_SEPOLIA + | typeof BASE_SEPOLIA + | typeof LOCALHOST; -export type SettlementChainId = typeof ARBITRUM_SEPOLIA | typeof ARBITRUM | typeof AVALANCHE; -export type SourceChainId = typeof SOURCE_OPTIMISM_SEPOLIA | typeof SOURCE_SEPOLIA | typeof SOURCE_BASE_MAINNET; +export type SettlementChainId = typeof ARBITRUM_SEPOLIA | typeof ARBITRUM | typeof AVALANCHE | typeof BASE_SEPOLIA; +export type SourceChainId = typeof SOURCE_OPTIMISM_SEPOLIA | typeof SOURCE_SEPOLIA | typeof SOURCE_BASE_MAINNET | typeof BASE_SEPOLIA; export type AnyChainId = ContractsChainId | SettlementChainId | SourceChainId; export type ChainName = @@ -57,7 +65,9 @@ export type ChainName = | "Optimism Sepolia" | "Sepolia" | "Botanix" - | "Base"; + | "Base" + | "Base Sepolia" + | "Localhost"; export const CHAIN_NAMES_MAP: Record = { [ARBITRUM]: "Arbitrum", @@ -68,6 +78,8 @@ export const CHAIN_NAMES_MAP: Record = { [SOURCE_OPTIMISM_SEPOLIA]: "Optimism Sepolia", [SOURCE_SEPOLIA]: "Sepolia", [SOURCE_BASE_MAINNET]: "Base", + [BASE_SEPOLIA]: "Base Sepolia", + [LOCALHOST]: "Localhost", }; export const HIGH_EXECUTION_FEES_MAP: Record = { @@ -76,6 +88,8 @@ export const HIGH_EXECUTION_FEES_MAP: Record = { [AVALANCHE_FUJI]: 5, // 5 USD [BOTANIX]: 5, // 5 USD [ARBITRUM_SEPOLIA]: 5, // 5 USD + [BASE_SEPOLIA]: 5, // 5 USD + [LOCALHOST]: 5, // 5 USD }; // added to maxPriorityFeePerGas @@ -103,6 +117,8 @@ export const MAX_PRIORITY_FEE_PER_GAS_MAP: Record> = { @@ -110,6 +126,8 @@ export const EXCESSIVE_EXECUTION_FEES_MAP: Partial = { [AVALANCHE_FUJI]: avalancheFuji, [ARBITRUM]: arbitrum, @@ -182,6 +221,8 @@ const VIEM_CHAIN_BY_CHAIN_ID: Record = { [SOURCE_OPTIMISM_SEPOLIA]: optimismSepolia, [SOURCE_SEPOLIA]: sepolia, [SOURCE_BASE_MAINNET]: base, + [BASE_SEPOLIA]: baseSepolia, + [LOCALHOST]: localhost, }; export function getChainName(chainId: number): ChainName { @@ -205,7 +246,7 @@ export function isContractsChain(chainId: number, dev = false): chainId is Contr } export function isTestnetChain(chainId: number): boolean { - return [AVALANCHE_FUJI, ARBITRUM_SEPOLIA].includes(chainId); + return [AVALANCHE_FUJI, ARBITRUM_SEPOLIA, LOCALHOST].includes(chainId); } export const EXECUTION_FEE_CONFIG_V2: { @@ -230,10 +271,18 @@ export const EXECUTION_FEE_CONFIG_V2: { shouldUseMaxPriorityFeePerGas: false, defaultBufferBps: 1000, // 10% }, + [BASE_SEPOLIA]: { + shouldUseMaxPriorityFeePerGas: false, + defaultBufferBps: 1000, // 10% + }, [BOTANIX]: { shouldUseMaxPriorityFeePerGas: true, defaultBufferBps: 3000, // 30% }, + [LOCALHOST]: { + shouldUseMaxPriorityFeePerGas: false, + defaultBufferBps: 1000, // 10% + }, }; type StaticGasLimitsConfig = Pick< @@ -281,4 +330,18 @@ export const GAS_LIMITS_STATIC_CONFIG: Record = { diff --git a/sdk/src/configs/express.ts b/sdk/src/configs/express.ts index 8ac568e5e2..7751edc53b 100644 --- a/sdk/src/configs/express.ts +++ b/sdk/src/configs/express.ts @@ -2,7 +2,7 @@ import { Token } from "types/tokens"; import { expandDecimals, USD_DECIMALS } from "utils/numbers"; import { periodToSeconds } from "utils/time"; -import { ARBITRUM, ARBITRUM_SEPOLIA, AVALANCHE, AVALANCHE_FUJI, BOTANIX, ContractsChainId } from "./chains"; +import { ARBITRUM, ARBITRUM_SEPOLIA, AVALANCHE, AVALANCHE_FUJI, BOTANIX, LOCALHOST, ContractsChainId, BASE_SEPOLIA } from "./chains"; import { getTokenBySymbol, getWrappedToken } from "./tokens"; export const SUBACCOUNT_MESSAGE = @@ -32,6 +32,8 @@ const GAS_PAYMENT_TOKENS: Record = { getTokenBySymbol(ARBITRUM_SEPOLIA, "WETH").address, ], [BOTANIX]: [getTokenBySymbol(BOTANIX, "pBTC").address], + [LOCALHOST]: [getTokenBySymbol(LOCALHOST, "USDC").address, getTokenBySymbol(LOCALHOST, "WETH").address], + [BASE_SEPOLIA]: [getTokenBySymbol(BASE_SEPOLIA, "USDC").address, getTokenBySymbol(BASE_SEPOLIA, "WETH").address], }; export function getGasPaymentTokens(chainId: number): string[] { diff --git a/sdk/src/configs/markets.ts b/sdk/src/configs/markets.ts index 368abf0b59..c2f307ffa4 100644 --- a/sdk/src/configs/markets.ts +++ b/sdk/src/configs/markets.ts @@ -2,7 +2,7 @@ This files is used to pre-build data during the build process. Avoid adding client-side code here, as it can break the build process. */ -import { ARBITRUM, ARBITRUM_SEPOLIA, AVALANCHE, AVALANCHE_FUJI, BOTANIX, ContractsChainId } from "./chains"; +import { ARBITRUM, ARBITRUM_SEPOLIA, AVALANCHE, AVALANCHE_FUJI, BOTANIX, LOCALHOST, ContractsChainId, BASE_SEPOLIA } from "./chains"; export const SWAP_GRAPH_MAX_MARKETS_PER_TOKEN = 5; @@ -1099,4 +1099,23 @@ export const MARKETS: Record> = { shortTokenAddress: "0x0D2437F93Fed6EA64Ef01cCde385FB1263910C56", }, }, + // Localhost markets will be dynamically loaded from the deployed contracts + // Add your markets here after creating them via the deployment scripts + [LOCALHOST]: {}, + [BASE_SEPOLIA]: { + // EUR/USD [mUSDC-mUSDC] + "0x0ec8334dAc31DdFC08a7ab35F3dB24ef94889554": { + marketTokenAddress: "0x0ec8334dAc31DdFC08a7ab35F3dB24ef94889554", + indexTokenAddress: "0xfba59E25FB69199D21d109C4b6680DFb3aF883fe", + longTokenAddress: "0xA36a6765cc50b1F4678fA91770dcfCf48727730F", + shortTokenAddress: "0xA36a6765cc50b1F4678fA91770dcfCf48727730F", + }, + // WBTC/USD [mUSDC-mUSDC] + "0xd37dc80216c897fB2dD020C6CE25C71832e7543d": { + marketTokenAddress: "0xd37dc80216c897fB2dD020C6CE25C71832e7543d", + indexTokenAddress: "0xD8a6E3FCA403d79b6AD6216b60527F51cc967D39", + longTokenAddress: "0xA36a6765cc50b1F4678fA91770dcfCf48727730F", + shortTokenAddress: "0xA36a6765cc50b1F4678fA91770dcfCf48727730F", + }, + }, }; diff --git a/sdk/src/configs/multichain.ts b/sdk/src/configs/multichain.ts index d365a9c0fe..88425720b7 100644 --- a/sdk/src/configs/multichain.ts +++ b/sdk/src/configs/multichain.ts @@ -5,6 +5,7 @@ import { SOURCE_OPTIMISM_SEPOLIA, SOURCE_SEPOLIA, SOURCE_BASE_MAINNET, + BASE_SEPOLIA } from "./chainIds"; import { SettlementChainId, SourceChainId } from "./chains"; @@ -16,12 +17,14 @@ export const SETTLEMENT_CHAINS: SettlementChainId[] = ensureExhaustive({ [SOURCE_OPTIMISM_SEPOLIA]: true, [SOURCE_SEPOLIA]: true, [SOURCE_BASE_MAINNET]: true, + [BASE_SEPOLIA]: true, }); export function isSettlementChain(chainId: number): chainId is SettlementChainId { diff --git a/sdk/src/configs/oracleKeeper.ts b/sdk/src/configs/oracleKeeper.ts index 3fb12beed8..6fe36c10f7 100644 --- a/sdk/src/configs/oracleKeeper.ts +++ b/sdk/src/configs/oracleKeeper.ts @@ -1,4 +1,4 @@ -import { ARBITRUM, ARBITRUM_SEPOLIA, AVALANCHE, AVALANCHE_FUJI, BOTANIX, ContractsChainId } from "./chains"; +import { ARBITRUM, ARBITRUM_SEPOLIA, AVALANCHE, AVALANCHE_FUJI, BOTANIX, LOCALHOST, ContractsChainId, BASE_SEPOLIA } from "./chains"; const ORACLE_KEEPER_URLS: Record = { [ARBITRUM]: "https://arbitrum-api.gmxinfra.io", @@ -10,6 +10,11 @@ const ORACLE_KEEPER_URLS: Record = { [BOTANIX]: "https://botanix-api.gmxinfra.io", [ARBITRUM_SEPOLIA]: "https://dolphin-app-a2dup.ondigitalocean.app", + + // For localhost, you may need to run your own oracle keeper or use mock prices + [LOCALHOST]: "http://127.0.0.1:3000", + + [BASE_SEPOLIA]: "http://127.0.0.1:37017", }; const ORACLE_KEEPER_FALLBACK_URLS: Record = { @@ -22,6 +27,10 @@ const ORACLE_KEEPER_FALLBACK_URLS: Record = { [BOTANIX]: ["https://botanix-api-fallback.gmxinfra.io", "https://botanix-api-fallback.gmxinfra2.io"], [ARBITRUM_SEPOLIA]: ["https://dolphin-app-a2dup.ondigitalocean.app"], + + [LOCALHOST]: ["http://127.0.0.1:3000"], + + [BASE_SEPOLIA]: ["http://127.0.0.1:37017"], }; export function getOracleKeeperUrl(chainId: number) { diff --git a/sdk/src/configs/tokens.ts b/sdk/src/configs/tokens.ts index dab3c8c50b..c0b12e4e50 100644 --- a/sdk/src/configs/tokens.ts +++ b/sdk/src/configs/tokens.ts @@ -2,12 +2,73 @@ import { zeroAddress } from "viem"; import type { Token, TokenAddressTypesMap, TokenCategory } from "types/tokens"; -import { ARBITRUM, ARBITRUM_SEPOLIA, AVALANCHE, AVALANCHE_FUJI, BOTANIX } from "./chains"; +import { ARBITRUM, ARBITRUM_SEPOLIA, AVALANCHE, AVALANCHE_FUJI, BOTANIX, LOCALHOST, BASE_SEPOLIA } from "./chains"; import { getContract } from "./contracts"; export const NATIVE_TOKEN_ADDRESS = zeroAddress; export const TOKENS: { [chainId: number]: Token[] } = { + [BASE_SEPOLIA]: [ + { + name: "Ethereum", + symbol: "ETH", + decimals: 18, + address: zeroAddress, + isNative: true, + isShortable: true, + categories: ["layer1"], + imageUrl: "https://assets.coingecko.com/coins/images/279/small/ethereum.png?1595348880", + coingeckoUrl: "https://www.coingecko.com/en/coins/ethereum", + isV1Available: true, + }, + { + name: "Wrapped ETH", + symbol: "WETH", + address: "0xEa347A7CB535cBE125099A4C3B992149aE08e55d", + decimals: 18, + isWrapped: true, + baseSymbol: "ETH", + categories: ["layer1"], + imageUrl: "https://assets.coingecko.com/coins/images/279/small/ethereum.png?1595348880", + coingeckoUrl: "https://www.coingecko.com/en/coins/ethereum", + }, + { + name: "USDC", + symbol: "USDC", + address: "0x036CbD53842c5426634e7929541eC2318f3dCF7e", + decimals: 6, + isStable: true, + imageUrl: "https://assets.coingecko.com/coins/images/6319/thumb/USD_Coin_icon.png?1547042389", + coingeckoUrl: "https://www.coingecko.com/en/coins/usd-coin", + }, + { + name: "EUR", + symbol: "EUR", + decimals: 18, + address: "0xfba59E25FB69199D21d109C4b6680DFb3aF883fe", + isStable: true, + imageUrl: "https://assets.coingecko.com/coins/images/1/small/euro.png?1547033579", + coingeckoUrl: "https://www.coingecko.com/en/coins/euro", + }, + { + name: "Mock USDC", + symbol: "mUSDC", + decimals: 6, + address: "0xA36a6765cc50b1F4678fA91770dcfCf48727730F", + isStable: true, + imageUrl: "https://assets.coingecko.com/coins/images/6319/thumb/USD_Coin_icon.png?1547042389", + coingeckoUrl: "https://www.coingecko.com/en/coins/usd-coin", + }, + { + name: "Wrapped BTC", + symbol: "WBTC", + decimals: 8, + address: "0xD8a6E3FCA403d79b6AD6216b60527F51cc967D39", + isSynthetic: false, + imageUrl: "https://assets.coingecko.com/coins/images/7598/thumb/wrapped_bitcoin_wbtc.png", + coingeckoUrl: "https://www.coingecko.com/en/coins/wrapped-bitcoin", + }, + ], [ARBITRUM]: [ { name: "Ethereum", @@ -1918,6 +1979,97 @@ export const TOKENS: { [chainId: number]: Token[] } = { isPlatformToken: true, }, ], + [LOCALHOST]: [ + { + name: "Ethereum", + symbol: "ETH", + decimals: 18, + address: zeroAddress, + wrappedAddress: "0x1613beB3B2C4f22Ee086B2b38C1476A3cE7f78E8", + isNative: true, + isShortable: true, + categories: ["layer1"], + imageUrl: "https://assets.coingecko.com/coins/images/279/small/ethereum.png?1595348880", + coingeckoUrl: "https://www.coingecko.com/en/coins/ethereum", + }, + { + name: "Wrapped ETH", + symbol: "WETH", + address: "0x1613beB3B2C4f22Ee086B2b38C1476A3cE7f78E8", + decimals: 18, + isWrapped: true, + baseSymbol: "ETH", + categories: ["layer1"], + imageUrl: "https://assets.coingecko.com/coins/images/279/small/ethereum.png?1595348880", + coingeckoUrl: "https://www.coingecko.com/en/coins/ethereum", + }, + { + name: "Wrapped Bitcoin", + symbol: "BTC", + address: "0x95401dc811bb5740090279Ba06cfA8fcF6113778", + decimals: 8, + imageUrl: "https://assets.coingecko.com/coins/images/1/small/bitcoin.png?1746042828", + coingeckoUrl: "https://www.coingecko.com/en/coins/bitcoin", + }, + { + name: "USD Coin", + symbol: "USDC", + address: "0x70e0bA845a1A0F2DA3359C97E0285013525FFC49", + decimals: 6, + isStable: true, + imageUrl: "https://assets.coingecko.com/coins/images/6319/thumb/USD_Coin_icon.png?1547042389", + coingeckoUrl: "https://www.coingecko.com/en/coins/usd-coin", + }, + { + name: "Tether USD", + symbol: "USDT", + address: "0x99bbA657f2BbC93c02D617f8bA121cB8Fc104Acf", + decimals: 6, + isStable: true, + imageUrl: "https://assets.coingecko.com/coins/images/325/thumb/Tether-logo.png", + coingeckoUrl: "https://www.coingecko.com/en/coins/tether", + }, + /** Placeholder tokens */ + { + name: "GMX", + symbol: "GMX", + address: "0x851356ae760d987E095750cCeb3bC6014560891C", + decimals: 18, + imageUrl: "https://assets.coingecko.com/coins/images/18323/small/arbit.png?1631532468", + isPlatformToken: true, + }, + { + name: "Escrowed GMX", + symbol: "ESGMX", + address: "", + decimals: 18, + isPlatformToken: true, + }, + { + name: "GMX LP", + symbol: "GLP", + address: "", + decimals: 18, + imageUrl: "https://github.com/gmx-io/gmx-assets/blob/main/GMX-Assets/PNG/GLP_LOGO%20ONLY.png?raw=true", + isPlatformToken: true, + }, + { + name: "GMX Market tokens", + symbol: "GM", + address: "", + decimals: 18, + imageUrl: "https://raw.githubusercontent.com/gmx-io/gmx-assets/main/GMX-Assets/PNG/GM_LOGO.png", + isPlatformToken: true, + }, + { + name: "GLV Market tokens", + symbol: "GLV", + address: "", + decimals: 18, + imageUrl: "https://raw.githubusercontent.com/gmx-io/gmx-assets/main/GMX-Assets/PNG/GLV_LOGO.png", + isPlatformToken: true, + }, + ], }; export const TOKEN_COLOR_MAP = { @@ -1963,7 +2115,7 @@ export const TOKENS_BY_SYMBOL_MAP: { [chainId: number]: { [symbol: string]: Toke export const WRAPPED_TOKENS_MAP: { [chainId: number]: Token } = {}; export const NATIVE_TOKENS_MAP: { [chainId: number]: Token } = {}; -const CHAIN_IDS = [ARBITRUM, AVALANCHE, AVALANCHE_FUJI, BOTANIX, ARBITRUM_SEPOLIA]; +const CHAIN_IDS = [ARBITRUM, AVALANCHE, AVALANCHE_FUJI, BOTANIX, ARBITRUM_SEPOLIA, LOCALHOST, BASE_SEPOLIA]; for (let j = 0; j < CHAIN_IDS.length; j++) { const chainId = CHAIN_IDS[j]; diff --git a/sdk/src/types/subsquid.ts b/sdk/src/types/subsquid.ts index 56eb87be82..6a1d3f178f 100644 --- a/sdk/src/types/subsquid.ts +++ b/sdk/src/types/subsquid.ts @@ -4,943 +4,1106 @@ 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 }; +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 }; + 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"]; + __typename?: 'AccountPnlHistoryPointObject'; + account: Scalars['String']['output']; + cumulativePnl: Scalars['BigInt']['output']; /** Field for debug */ - cumulativeRealizedFees: Scalars["BigInt"]["output"]; + cumulativeRealizedFees: Scalars['BigInt']['output']; /** Field for debug */ - cumulativeRealizedPnl: Scalars["BigInt"]["output"]; + cumulativeRealizedPnl: Scalars['BigInt']['output']; /** Field for debug */ - cumulativeRealizedPriceImpact: Scalars["BigInt"]["output"]; - pnl: Scalars["BigInt"]["output"]; + cumulativeRealizedPriceImpact: Scalars['BigInt']['output']; /** Field for debug */ - realizedFees: Scalars["BigInt"]["output"]; + cumulativeRealizedSwapImpact: Scalars['BigInt']['output']; + pnl: Scalars['BigInt']['output']; /** Field for debug */ - realizedPnl: Scalars["BigInt"]["output"]; + realizedFees: Scalars['BigInt']['output']; /** Field for debug */ - realizedPriceImpact: Scalars["BigInt"]["output"]; + realizedPnl: Scalars['BigInt']['output']; /** Field for debug */ - startUnrealizedFees: Scalars["BigInt"]["output"]; + realizedPriceImpact: Scalars['BigInt']['output']; /** Field for debug */ - startUnrealizedPnl: Scalars["BigInt"]["output"]; - timestamp: Scalars["Int"]["output"]; + realizedSwapImpact: Scalars['BigInt']['output']; /** Field for debug */ - unrealizedFees: Scalars["BigInt"]["output"]; + startUnrealizedFees: Scalars['BigInt']['output']; /** Field for debug */ - unrealizedPnl: Scalars["BigInt"]["output"]; + 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"]; + __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"]; + realizedBasePnlUsd: Scalars['BigInt']['output']; /** Field for debug */ - realizedFeesUsd: Scalars["BigInt"]["output"]; - realizedPnlUsd: Scalars["BigInt"]["output"]; + realizedFeesUsd: Scalars['BigInt']['output']; + realizedPnlUsd: Scalars['BigInt']['output']; /** Field for debug */ - realizedPriceImpactUsd: Scalars["BigInt"]["output"]; + realizedPriceImpactUsd: Scalars['BigInt']['output']; /** Field for debug */ - startUnrealizedBasePnlUsd: Scalars["BigInt"]["output"]; + realizedSwapImpactUsd: Scalars['BigInt']['output']; /** Field for debug */ - startUnrealizedFeesUsd: Scalars["BigInt"]["output"]; - startUnrealizedPnlUsd: Scalars["BigInt"]["output"]; + startUnrealizedBasePnlUsd: Scalars['BigInt']['output']; /** Field for debug */ - unrealizedBasePnlUsd: Scalars["BigInt"]["output"]; + startUnrealizedFeesUsd: Scalars['BigInt']['output']; + startUnrealizedPnlUsd: 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"]; + 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; + winsLossesRatioBps?: Maybe; } export interface AccountStat { - __typename?: "AccountStat"; - closedCount: Scalars["Int"]["output"]; - cumsumCollateral: Scalars["BigInt"]["output"]; - cumsumSize: Scalars["BigInt"]["output"]; - deposits: Scalars["Int"]["output"]; - id: Scalars["String"]["output"]; - losses: Scalars["Int"]["output"]; - maxCapital: Scalars["BigInt"]["output"]; - netCapital: Scalars["BigInt"]["output"]; + __typename?: 'AccountStat'; + closedCount: Scalars['Int']['output']; + cumsumCollateral: Scalars['BigInt']['output']; + cumsumSize: Scalars['BigInt']['output']; + deposits: Scalars['BigInt']['output']; + id: Scalars['String']['output']; + losses: Scalars['Int']['output']; + maxCapital: Scalars['BigInt']['output']; + netCapital: Scalars['BigInt']['output']; positions: Array; - realizedFees: Scalars["BigInt"]["output"]; - realizedPnl: Scalars["BigInt"]["output"]; - realizedPriceImpact: Scalars["BigInt"]["output"]; - sumMaxSize: Scalars["BigInt"]["output"]; - volume: Scalars["BigInt"]["output"]; - wins: Scalars["Int"]["output"]; + 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; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface AccountStatEdge { - __typename?: "AccountStatEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'AccountStatEdge'; + cursor: Scalars['String']['output']; node: AccountStat; } export enum AccountStatOrderByInput { - 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", - 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", - 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", - 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", - 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", + 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', + 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', + 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', + 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>; - 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>; - 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>; - 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>; + 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>; + 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>; + 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>; 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>; - 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>; + 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"; + __typename?: 'AccountStatsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + 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"]; + __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"]; + __typename?: 'AprSnapshot'; + address: Scalars['String']['output']; + aprByBorrowingFee: Scalars['BigInt']['output']; + aprByFee: Scalars['BigInt']['output']; entityType: EntityType; - id: Scalars["String"]["output"]; - snapshotTimestamp: Scalars["Int"]["output"]; + id: Scalars['String']['output']; + snapshotTimestamp: Scalars['Int']['output']; } export interface AprSnapshotEdge { - __typename?: "AprSnapshotEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'AprSnapshotEdge'; + cursor: Scalars['String']['output']; node: AprSnapshot; } export 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", + 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>; + 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_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>; + 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"; + __typename?: 'AprSnapshotsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + 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"]; + __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"]; + id: Scalars['String']['output']; + snapshotTimestamp: Scalars['Int']['output']; } export interface BorrowingRateSnapshotEdge { - __typename?: "BorrowingRateSnapshotEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'BorrowingRateSnapshotEdge'; + cursor: Scalars['String']['output']; node: BorrowingRateSnapshot; } export 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", + 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>; + 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_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>; + 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"; + __typename?: 'BorrowingRateSnapshotsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export interface ClaimAction { - __typename?: "ClaimAction"; - account: Scalars["String"]["output"]; - amounts: Array; + __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; + id: Scalars['String']['output']; + isLongOrders: Array; + marketAddresses: Array; + timestamp: Scalars['Int']['output']; + tokenAddresses: Array; + tokenPrices: Array; transaction: Transaction; } export interface ClaimActionEdge { - __typename?: "ClaimActionEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'ClaimActionEdge'; + cursor: Scalars['String']['output']; node: ClaimAction; } export 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", - transaction_blockNumber_ASC = "transaction_blockNumber_ASC", - transaction_blockNumber_ASC_NULLS_FIRST = "transaction_blockNumber_ASC_NULLS_FIRST", - transaction_blockNumber_ASC_NULLS_LAST = "transaction_blockNumber_ASC_NULLS_LAST", - transaction_blockNumber_DESC = "transaction_blockNumber_DESC", - transaction_blockNumber_DESC_NULLS_FIRST = "transaction_blockNumber_DESC_NULLS_FIRST", - transaction_blockNumber_DESC_NULLS_LAST = "transaction_blockNumber_DESC_NULLS_LAST", - transaction_chainId_ASC = "transaction_chainId_ASC", - transaction_chainId_ASC_NULLS_FIRST = "transaction_chainId_ASC_NULLS_FIRST", - transaction_chainId_ASC_NULLS_LAST = "transaction_chainId_ASC_NULLS_LAST", - transaction_chainId_DESC = "transaction_chainId_DESC", - transaction_chainId_DESC_NULLS_FIRST = "transaction_chainId_DESC_NULLS_FIRST", - transaction_chainId_DESC_NULLS_LAST = "transaction_chainId_DESC_NULLS_LAST", - transaction_from_ASC = "transaction_from_ASC", - transaction_from_ASC_NULLS_FIRST = "transaction_from_ASC_NULLS_FIRST", - transaction_from_ASC_NULLS_LAST = "transaction_from_ASC_NULLS_LAST", - transaction_from_DESC = "transaction_from_DESC", - transaction_from_DESC_NULLS_FIRST = "transaction_from_DESC_NULLS_FIRST", - transaction_from_DESC_NULLS_LAST = "transaction_from_DESC_NULLS_LAST", - transaction_hash_ASC = "transaction_hash_ASC", - transaction_hash_ASC_NULLS_FIRST = "transaction_hash_ASC_NULLS_FIRST", - transaction_hash_ASC_NULLS_LAST = "transaction_hash_ASC_NULLS_LAST", - transaction_hash_DESC = "transaction_hash_DESC", - transaction_hash_DESC_NULLS_FIRST = "transaction_hash_DESC_NULLS_FIRST", - transaction_hash_DESC_NULLS_LAST = "transaction_hash_DESC_NULLS_LAST", - transaction_id_ASC = "transaction_id_ASC", - transaction_id_ASC_NULLS_FIRST = "transaction_id_ASC_NULLS_FIRST", - transaction_id_ASC_NULLS_LAST = "transaction_id_ASC_NULLS_LAST", - transaction_id_DESC = "transaction_id_DESC", - transaction_id_DESC_NULLS_FIRST = "transaction_id_DESC_NULLS_FIRST", - transaction_id_DESC_NULLS_LAST = "transaction_id_DESC_NULLS_LAST", - transaction_timestamp_ASC = "transaction_timestamp_ASC", - transaction_timestamp_ASC_NULLS_FIRST = "transaction_timestamp_ASC_NULLS_FIRST", - transaction_timestamp_ASC_NULLS_LAST = "transaction_timestamp_ASC_NULLS_LAST", - transaction_timestamp_DESC = "transaction_timestamp_DESC", - transaction_timestamp_DESC_NULLS_FIRST = "transaction_timestamp_DESC_NULLS_FIRST", - transaction_timestamp_DESC_NULLS_LAST = "transaction_timestamp_DESC_NULLS_LAST", - transaction_to_ASC = "transaction_to_ASC", - transaction_to_ASC_NULLS_FIRST = "transaction_to_ASC_NULLS_FIRST", - transaction_to_ASC_NULLS_LAST = "transaction_to_ASC_NULLS_LAST", - transaction_to_DESC = "transaction_to_DESC", - transaction_to_DESC_NULLS_FIRST = "transaction_to_DESC_NULLS_FIRST", - transaction_to_DESC_NULLS_LAST = "transaction_to_DESC_NULLS_LAST", - transaction_transactionIndex_ASC = "transaction_transactionIndex_ASC", - transaction_transactionIndex_ASC_NULLS_FIRST = "transaction_transactionIndex_ASC_NULLS_FIRST", - transaction_transactionIndex_ASC_NULLS_LAST = "transaction_transactionIndex_ASC_NULLS_LAST", - transaction_transactionIndex_DESC = "transaction_transactionIndex_DESC", - transaction_transactionIndex_DESC_NULLS_FIRST = "transaction_transactionIndex_DESC_NULLS_FIRST", - transaction_transactionIndex_DESC_NULLS_LAST = "transaction_transactionIndex_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', + 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', + transaction_blockNumber_ASC = 'transaction_blockNumber_ASC', + transaction_blockNumber_ASC_NULLS_FIRST = 'transaction_blockNumber_ASC_NULLS_FIRST', + transaction_blockNumber_ASC_NULLS_LAST = 'transaction_blockNumber_ASC_NULLS_LAST', + transaction_blockNumber_DESC = 'transaction_blockNumber_DESC', + transaction_blockNumber_DESC_NULLS_FIRST = 'transaction_blockNumber_DESC_NULLS_FIRST', + transaction_blockNumber_DESC_NULLS_LAST = 'transaction_blockNumber_DESC_NULLS_LAST', + transaction_from_ASC = 'transaction_from_ASC', + transaction_from_ASC_NULLS_FIRST = 'transaction_from_ASC_NULLS_FIRST', + transaction_from_ASC_NULLS_LAST = 'transaction_from_ASC_NULLS_LAST', + transaction_from_DESC = 'transaction_from_DESC', + transaction_from_DESC_NULLS_FIRST = 'transaction_from_DESC_NULLS_FIRST', + transaction_from_DESC_NULLS_LAST = 'transaction_from_DESC_NULLS_LAST', + transaction_hash_ASC = 'transaction_hash_ASC', + transaction_hash_ASC_NULLS_FIRST = 'transaction_hash_ASC_NULLS_FIRST', + transaction_hash_ASC_NULLS_LAST = 'transaction_hash_ASC_NULLS_LAST', + transaction_hash_DESC = 'transaction_hash_DESC', + transaction_hash_DESC_NULLS_FIRST = 'transaction_hash_DESC_NULLS_FIRST', + transaction_hash_DESC_NULLS_LAST = 'transaction_hash_DESC_NULLS_LAST', + transaction_id_ASC = 'transaction_id_ASC', + transaction_id_ASC_NULLS_FIRST = 'transaction_id_ASC_NULLS_FIRST', + transaction_id_ASC_NULLS_LAST = 'transaction_id_ASC_NULLS_LAST', + transaction_id_DESC = 'transaction_id_DESC', + transaction_id_DESC_NULLS_FIRST = 'transaction_id_DESC_NULLS_FIRST', + transaction_id_DESC_NULLS_LAST = 'transaction_id_DESC_NULLS_LAST', + transaction_timestamp_ASC = 'transaction_timestamp_ASC', + transaction_timestamp_ASC_NULLS_FIRST = 'transaction_timestamp_ASC_NULLS_FIRST', + transaction_timestamp_ASC_NULLS_LAST = 'transaction_timestamp_ASC_NULLS_LAST', + transaction_timestamp_DESC = 'transaction_timestamp_DESC', + transaction_timestamp_DESC_NULLS_FIRST = 'transaction_timestamp_DESC_NULLS_FIRST', + transaction_timestamp_DESC_NULLS_LAST = 'transaction_timestamp_DESC_NULLS_LAST', + transaction_to_ASC = 'transaction_to_ASC', + transaction_to_ASC_NULLS_FIRST = 'transaction_to_ASC_NULLS_FIRST', + transaction_to_ASC_NULLS_LAST = 'transaction_to_ASC_NULLS_LAST', + transaction_to_DESC = 'transaction_to_DESC', + transaction_to_DESC_NULLS_FIRST = 'transaction_to_DESC_NULLS_FIRST', + transaction_to_DESC_NULLS_LAST = 'transaction_to_DESC_NULLS_LAST', + transaction_transactionIndex_ASC = 'transaction_transactionIndex_ASC', + transaction_transactionIndex_ASC_NULLS_FIRST = 'transaction_transactionIndex_ASC_NULLS_FIRST', + transaction_transactionIndex_ASC_NULLS_LAST = 'transaction_transactionIndex_ASC_NULLS_LAST', + transaction_transactionIndex_DESC = 'transaction_transactionIndex_DESC', + transaction_transactionIndex_DESC_NULLS_FIRST = 'transaction_transactionIndex_DESC_NULLS_FIRST', + transaction_transactionIndex_DESC_NULLS_LAST = 'transaction_transactionIndex_DESC_NULLS_LAST' } export enum ClaimActionType { - ClaimFunding = "ClaimFunding", - ClaimPriceImpact = "ClaimPriceImpact", - SettleFundingFeeCancelled = "SettleFundingFeeCancelled", - SettleFundingFeeCreated = "SettleFundingFeeCreated", - SettleFundingFeeExecuted = "SettleFundingFeeExecuted", + 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; + 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_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; + 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; transaction?: InputMaybe; - transaction_isNull?: InputMaybe; + transaction_isNull?: InputMaybe; } export interface ClaimActionsConnection { - __typename?: "ClaimActionsConnection"; + __typename?: 'ClaimActionsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export interface ClaimRef { - __typename?: "ClaimRef"; - id: Scalars["String"]["output"]; + __typename?: 'ClaimRef'; + id: Scalars['String']['output']; } export interface ClaimRefEdge { - __typename?: "ClaimRefEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'ClaimRefEdge'; + cursor: Scalars['String']['output']; node: ClaimRef; } export 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", + 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; + 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"; + __typename?: 'ClaimRefsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + 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 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"]; + __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["String"]["output"]; - tokenAddress: Scalars["String"]["output"]; - value: Scalars["BigInt"]["output"]; + 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"]; + __typename?: 'ClaimableCollateralEdge'; + cursor: Scalars['String']['output']; node: ClaimableCollateral; } export interface ClaimableCollateralGroup { - __typename?: "ClaimableCollateralGroup"; + __typename?: 'ClaimableCollateralGroup'; claimables: Array; - factor: Scalars["BigInt"]["output"]; - id: Scalars["String"]["output"]; - marketAddress: Scalars["String"]["output"]; - timeKey: Scalars["String"]["output"]; - tokenAddress: Scalars["String"]["output"]; + 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; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } export interface ClaimableCollateralGroupEdge { - __typename?: "ClaimableCollateralGroupEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'ClaimableCollateralGroupEdge'; + cursor: Scalars['String']['output']; node: ClaimableCollateralGroup; } export 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", + 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 { @@ -949,6313 +1112,6286 @@ export interface ClaimableCollateralGroupWhereInput { 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_contains?: InputMaybe; - timeKey_containsInsensitive?: InputMaybe; - timeKey_endsWith?: InputMaybe; - timeKey_eq?: InputMaybe; - timeKey_gt?: InputMaybe; - timeKey_gte?: InputMaybe; - timeKey_in?: InputMaybe>; - timeKey_isNull?: InputMaybe; - timeKey_lt?: InputMaybe; - timeKey_lte?: InputMaybe; - timeKey_not_contains?: InputMaybe; - timeKey_not_containsInsensitive?: InputMaybe; - timeKey_not_endsWith?: InputMaybe; - timeKey_not_eq?: InputMaybe; - timeKey_not_in?: InputMaybe>; - timeKey_not_startsWith?: InputMaybe; - timeKey_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; + 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"; + __typename?: 'ClaimableCollateralGroupsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export 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", + 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>; + 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_contains?: InputMaybe; - timeKey_containsInsensitive?: InputMaybe; - timeKey_endsWith?: InputMaybe; - timeKey_eq?: InputMaybe; - timeKey_gt?: InputMaybe; - timeKey_gte?: InputMaybe; - timeKey_in?: InputMaybe>; - timeKey_isNull?: InputMaybe; - timeKey_lt?: InputMaybe; - timeKey_lte?: InputMaybe; - timeKey_not_contains?: InputMaybe; - timeKey_not_containsInsensitive?: InputMaybe; - timeKey_not_endsWith?: InputMaybe; - timeKey_not_eq?: InputMaybe; - timeKey_not_in?: InputMaybe>; - timeKey_not_startsWith?: InputMaybe; - timeKey_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; - 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>; + 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"; + __typename?: 'ClaimableCollateralsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export interface ClaimableFundingFeeInfo { - __typename?: "ClaimableFundingFeeInfo"; - amounts: Array; - id: Scalars["String"]["output"]; - marketAddresses: Array; - tokenAddresses: Array; + __typename?: 'ClaimableFundingFeeInfo'; + amounts: Array; + id: Scalars['String']['output']; + marketAddresses: Array; + tokenAddresses: Array; } export interface ClaimableFundingFeeInfoEdge { - __typename?: "ClaimableFundingFeeInfoEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'ClaimableFundingFeeInfoEdge'; + cursor: Scalars['String']['output']; node: ClaimableFundingFeeInfo; } export 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", + 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; + 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"; + __typename?: 'ClaimableFundingFeeInfosConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + 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"]; + __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"]; + 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"]; + __typename?: 'CollectedFeesInfoEdge'; + cursor: Scalars['String']['output']; node: CollectedFeesInfo; } export 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", + 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>; + 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_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>; + 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"; + __typename?: 'CollectedFeesInfosConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + 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"]; + __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; + id: Scalars['String']['output']; + isSnapshot: Scalars['Boolean']['output']; + lastUnrealizedPnlLong?: Maybe; + lastUnrealizedPnlShort?: Maybe; + snapshotTimestamp?: Maybe; } export interface CumulativePnlEdge { - __typename?: "CumulativePnlEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'CumulativePnlEdge'; + cursor: Scalars['String']['output']; node: CumulativePnl; } export 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", + 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>; + 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_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>; + 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"; + __typename?: 'CumulativePnlsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export interface CumulativePoolValue { - __typename?: "CumulativePoolValue"; - address: Scalars["String"]["output"]; - cumulativePoolValueByTime: Scalars["BigInt"]["output"]; - cumulativeTime: Scalars["BigInt"]["output"]; + __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; + 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"]; + __typename?: 'CumulativePoolValueEdge'; + cursor: Scalars['String']['output']; node: CumulativePoolValue; } export 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", + 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>; + 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_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>; + 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"; + __typename?: 'CumulativePoolValuesConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export interface Distribution { - __typename?: "Distribution"; - amounts: Array; - amountsInUsd: Array; - id: Scalars["String"]["output"]; - receiver: Scalars["String"]["output"]; - tokens: Array; + __typename?: 'Distribution'; + amounts: Array; + amountsInUsd: Array; + id: Scalars['String']['output']; + receiver: Scalars['String']['output']; + tokens: Array; transaction: Transaction; - typeId: Scalars["BigInt"]["output"]; + typeId: Scalars['BigInt']['output']; } export interface DistributionEdge { - __typename?: "DistributionEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'DistributionEdge'; + cursor: Scalars['String']['output']; node: Distribution; } export 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", - transaction_blockNumber_ASC = "transaction_blockNumber_ASC", - transaction_blockNumber_ASC_NULLS_FIRST = "transaction_blockNumber_ASC_NULLS_FIRST", - transaction_blockNumber_ASC_NULLS_LAST = "transaction_blockNumber_ASC_NULLS_LAST", - transaction_blockNumber_DESC = "transaction_blockNumber_DESC", - transaction_blockNumber_DESC_NULLS_FIRST = "transaction_blockNumber_DESC_NULLS_FIRST", - transaction_blockNumber_DESC_NULLS_LAST = "transaction_blockNumber_DESC_NULLS_LAST", - transaction_chainId_ASC = "transaction_chainId_ASC", - transaction_chainId_ASC_NULLS_FIRST = "transaction_chainId_ASC_NULLS_FIRST", - transaction_chainId_ASC_NULLS_LAST = "transaction_chainId_ASC_NULLS_LAST", - transaction_chainId_DESC = "transaction_chainId_DESC", - transaction_chainId_DESC_NULLS_FIRST = "transaction_chainId_DESC_NULLS_FIRST", - transaction_chainId_DESC_NULLS_LAST = "transaction_chainId_DESC_NULLS_LAST", - transaction_from_ASC = "transaction_from_ASC", - transaction_from_ASC_NULLS_FIRST = "transaction_from_ASC_NULLS_FIRST", - transaction_from_ASC_NULLS_LAST = "transaction_from_ASC_NULLS_LAST", - transaction_from_DESC = "transaction_from_DESC", - transaction_from_DESC_NULLS_FIRST = "transaction_from_DESC_NULLS_FIRST", - transaction_from_DESC_NULLS_LAST = "transaction_from_DESC_NULLS_LAST", - transaction_hash_ASC = "transaction_hash_ASC", - transaction_hash_ASC_NULLS_FIRST = "transaction_hash_ASC_NULLS_FIRST", - transaction_hash_ASC_NULLS_LAST = "transaction_hash_ASC_NULLS_LAST", - transaction_hash_DESC = "transaction_hash_DESC", - transaction_hash_DESC_NULLS_FIRST = "transaction_hash_DESC_NULLS_FIRST", - transaction_hash_DESC_NULLS_LAST = "transaction_hash_DESC_NULLS_LAST", - transaction_id_ASC = "transaction_id_ASC", - transaction_id_ASC_NULLS_FIRST = "transaction_id_ASC_NULLS_FIRST", - transaction_id_ASC_NULLS_LAST = "transaction_id_ASC_NULLS_LAST", - transaction_id_DESC = "transaction_id_DESC", - transaction_id_DESC_NULLS_FIRST = "transaction_id_DESC_NULLS_FIRST", - transaction_id_DESC_NULLS_LAST = "transaction_id_DESC_NULLS_LAST", - transaction_timestamp_ASC = "transaction_timestamp_ASC", - transaction_timestamp_ASC_NULLS_FIRST = "transaction_timestamp_ASC_NULLS_FIRST", - transaction_timestamp_ASC_NULLS_LAST = "transaction_timestamp_ASC_NULLS_LAST", - transaction_timestamp_DESC = "transaction_timestamp_DESC", - transaction_timestamp_DESC_NULLS_FIRST = "transaction_timestamp_DESC_NULLS_FIRST", - transaction_timestamp_DESC_NULLS_LAST = "transaction_timestamp_DESC_NULLS_LAST", - transaction_to_ASC = "transaction_to_ASC", - transaction_to_ASC_NULLS_FIRST = "transaction_to_ASC_NULLS_FIRST", - transaction_to_ASC_NULLS_LAST = "transaction_to_ASC_NULLS_LAST", - transaction_to_DESC = "transaction_to_DESC", - transaction_to_DESC_NULLS_FIRST = "transaction_to_DESC_NULLS_FIRST", - transaction_to_DESC_NULLS_LAST = "transaction_to_DESC_NULLS_LAST", - transaction_transactionIndex_ASC = "transaction_transactionIndex_ASC", - transaction_transactionIndex_ASC_NULLS_FIRST = "transaction_transactionIndex_ASC_NULLS_FIRST", - transaction_transactionIndex_ASC_NULLS_LAST = "transaction_transactionIndex_ASC_NULLS_LAST", - transaction_transactionIndex_DESC = "transaction_transactionIndex_DESC", - transaction_transactionIndex_DESC_NULLS_FIRST = "transaction_transactionIndex_DESC_NULLS_FIRST", - transaction_transactionIndex_DESC_NULLS_LAST = "transaction_transactionIndex_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", + 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', + transaction_blockNumber_ASC = 'transaction_blockNumber_ASC', + transaction_blockNumber_ASC_NULLS_FIRST = 'transaction_blockNumber_ASC_NULLS_FIRST', + transaction_blockNumber_ASC_NULLS_LAST = 'transaction_blockNumber_ASC_NULLS_LAST', + transaction_blockNumber_DESC = 'transaction_blockNumber_DESC', + transaction_blockNumber_DESC_NULLS_FIRST = 'transaction_blockNumber_DESC_NULLS_FIRST', + transaction_blockNumber_DESC_NULLS_LAST = 'transaction_blockNumber_DESC_NULLS_LAST', + transaction_from_ASC = 'transaction_from_ASC', + transaction_from_ASC_NULLS_FIRST = 'transaction_from_ASC_NULLS_FIRST', + transaction_from_ASC_NULLS_LAST = 'transaction_from_ASC_NULLS_LAST', + transaction_from_DESC = 'transaction_from_DESC', + transaction_from_DESC_NULLS_FIRST = 'transaction_from_DESC_NULLS_FIRST', + transaction_from_DESC_NULLS_LAST = 'transaction_from_DESC_NULLS_LAST', + transaction_hash_ASC = 'transaction_hash_ASC', + transaction_hash_ASC_NULLS_FIRST = 'transaction_hash_ASC_NULLS_FIRST', + transaction_hash_ASC_NULLS_LAST = 'transaction_hash_ASC_NULLS_LAST', + transaction_hash_DESC = 'transaction_hash_DESC', + transaction_hash_DESC_NULLS_FIRST = 'transaction_hash_DESC_NULLS_FIRST', + transaction_hash_DESC_NULLS_LAST = 'transaction_hash_DESC_NULLS_LAST', + transaction_id_ASC = 'transaction_id_ASC', + transaction_id_ASC_NULLS_FIRST = 'transaction_id_ASC_NULLS_FIRST', + transaction_id_ASC_NULLS_LAST = 'transaction_id_ASC_NULLS_LAST', + transaction_id_DESC = 'transaction_id_DESC', + transaction_id_DESC_NULLS_FIRST = 'transaction_id_DESC_NULLS_FIRST', + transaction_id_DESC_NULLS_LAST = 'transaction_id_DESC_NULLS_LAST', + transaction_timestamp_ASC = 'transaction_timestamp_ASC', + transaction_timestamp_ASC_NULLS_FIRST = 'transaction_timestamp_ASC_NULLS_FIRST', + transaction_timestamp_ASC_NULLS_LAST = 'transaction_timestamp_ASC_NULLS_LAST', + transaction_timestamp_DESC = 'transaction_timestamp_DESC', + transaction_timestamp_DESC_NULLS_FIRST = 'transaction_timestamp_DESC_NULLS_FIRST', + transaction_timestamp_DESC_NULLS_LAST = 'transaction_timestamp_DESC_NULLS_LAST', + transaction_to_ASC = 'transaction_to_ASC', + transaction_to_ASC_NULLS_FIRST = 'transaction_to_ASC_NULLS_FIRST', + transaction_to_ASC_NULLS_LAST = 'transaction_to_ASC_NULLS_LAST', + transaction_to_DESC = 'transaction_to_DESC', + transaction_to_DESC_NULLS_FIRST = 'transaction_to_DESC_NULLS_FIRST', + transaction_to_DESC_NULLS_LAST = 'transaction_to_DESC_NULLS_LAST', + transaction_transactionIndex_ASC = 'transaction_transactionIndex_ASC', + transaction_transactionIndex_ASC_NULLS_FIRST = 'transaction_transactionIndex_ASC_NULLS_FIRST', + transaction_transactionIndex_ASC_NULLS_LAST = 'transaction_transactionIndex_ASC_NULLS_LAST', + transaction_transactionIndex_DESC = 'transaction_transactionIndex_DESC', + transaction_transactionIndex_DESC_NULLS_FIRST = 'transaction_transactionIndex_DESC_NULLS_FIRST', + transaction_transactionIndex_DESC_NULLS_LAST = 'transaction_transactionIndex_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; - tokens_containsAll?: InputMaybe>; - tokens_containsAny?: InputMaybe>; - tokens_containsNone?: InputMaybe>; - tokens_isNull?: 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; + tokens_containsAll?: InputMaybe>; + tokens_containsAny?: InputMaybe>; + tokens_containsNone?: InputMaybe>; + tokens_isNull?: InputMaybe; transaction?: InputMaybe; - transaction_isNull?: 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>; + transaction_isNull?: 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"; + __typename?: 'DistributionsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export enum EntityType { - Glv = "Glv", - Market = "Market", + Glv = 'Glv', + Market = 'Market' } 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"]; + __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"]; + __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"]; + glvAddresses?: InputMaybe>; + periodEnd: Scalars['Float']['input']; + periodStart: Scalars['Float']['input']; } export interface GlvEdge { - __typename?: "GlvEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'GlvEdge'; + cursor: Scalars['String']['output']; node: Glv; } export 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", + 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"]; + __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"]; + 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; + 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"; + __typename?: 'GlvsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + 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"]; + __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"]; + __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"]; + marketAddresses?: InputMaybe>; + periodEnd: Scalars['Float']['input']; + periodStart: Scalars['Float']['input']; } export interface MarketEdge { - __typename?: "MarketEdge"; - cursor: Scalars["String"]["output"]; + __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"]; - longPoolAmountAdjustment: 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"]; - positionImpactExponentFactor: 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"]; - shortPoolAmountAdjustment: 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"]; - 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"]; + __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']; + positionImpactExponentFactor: 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']; + 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"]; + __typename?: 'MarketInfoEdge'; + cursor: Scalars['String']['output']; node: MarketInfo; } export 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", - longPoolAmountAdjustment_ASC = "longPoolAmountAdjustment_ASC", - longPoolAmountAdjustment_ASC_NULLS_FIRST = "longPoolAmountAdjustment_ASC_NULLS_FIRST", - longPoolAmountAdjustment_ASC_NULLS_LAST = "longPoolAmountAdjustment_ASC_NULLS_LAST", - longPoolAmountAdjustment_DESC = "longPoolAmountAdjustment_DESC", - longPoolAmountAdjustment_DESC_NULLS_FIRST = "longPoolAmountAdjustment_DESC_NULLS_FIRST", - longPoolAmountAdjustment_DESC_NULLS_LAST = "longPoolAmountAdjustment_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", - positionImpactExponentFactor_ASC = "positionImpactExponentFactor_ASC", - positionImpactExponentFactor_ASC_NULLS_FIRST = "positionImpactExponentFactor_ASC_NULLS_FIRST", - positionImpactExponentFactor_ASC_NULLS_LAST = "positionImpactExponentFactor_ASC_NULLS_LAST", - positionImpactExponentFactor_DESC = "positionImpactExponentFactor_DESC", - positionImpactExponentFactor_DESC_NULLS_FIRST = "positionImpactExponentFactor_DESC_NULLS_FIRST", - positionImpactExponentFactor_DESC_NULLS_LAST = "positionImpactExponentFactor_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", - shortPoolAmountAdjustment_ASC = "shortPoolAmountAdjustment_ASC", - shortPoolAmountAdjustment_ASC_NULLS_FIRST = "shortPoolAmountAdjustment_ASC_NULLS_FIRST", - shortPoolAmountAdjustment_ASC_NULLS_LAST = "shortPoolAmountAdjustment_ASC_NULLS_LAST", - shortPoolAmountAdjustment_DESC = "shortPoolAmountAdjustment_DESC", - shortPoolAmountAdjustment_DESC_NULLS_FIRST = "shortPoolAmountAdjustment_DESC_NULLS_FIRST", - shortPoolAmountAdjustment_DESC_NULLS_LAST = "shortPoolAmountAdjustment_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", - 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", + 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', + positionImpactExponentFactor_ASC = 'positionImpactExponentFactor_ASC', + positionImpactExponentFactor_ASC_NULLS_FIRST = 'positionImpactExponentFactor_ASC_NULLS_FIRST', + positionImpactExponentFactor_ASC_NULLS_LAST = 'positionImpactExponentFactor_ASC_NULLS_LAST', + positionImpactExponentFactor_DESC = 'positionImpactExponentFactor_DESC', + positionImpactExponentFactor_DESC_NULLS_FIRST = 'positionImpactExponentFactor_DESC_NULLS_FIRST', + positionImpactExponentFactor_DESC_NULLS_LAST = 'positionImpactExponentFactor_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', + 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>; - longPoolAmountAdjustment_eq?: InputMaybe; - longPoolAmountAdjustment_gt?: InputMaybe; - longPoolAmountAdjustment_gte?: InputMaybe; - longPoolAmountAdjustment_in?: InputMaybe>; - longPoolAmountAdjustment_isNull?: InputMaybe; - longPoolAmountAdjustment_lt?: InputMaybe; - longPoolAmountAdjustment_lte?: InputMaybe; - longPoolAmountAdjustment_not_eq?: InputMaybe; - longPoolAmountAdjustment_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>; - positionImpactExponentFactor_eq?: InputMaybe; - positionImpactExponentFactor_gt?: InputMaybe; - positionImpactExponentFactor_gte?: InputMaybe; - positionImpactExponentFactor_in?: InputMaybe>; - positionImpactExponentFactor_isNull?: InputMaybe; - positionImpactExponentFactor_lt?: InputMaybe; - positionImpactExponentFactor_lte?: InputMaybe; - positionImpactExponentFactor_not_eq?: InputMaybe; - positionImpactExponentFactor_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>; - shortPoolAmountAdjustment_eq?: InputMaybe; - shortPoolAmountAdjustment_gt?: InputMaybe; - shortPoolAmountAdjustment_gte?: InputMaybe; - shortPoolAmountAdjustment_in?: InputMaybe>; - shortPoolAmountAdjustment_isNull?: InputMaybe; - shortPoolAmountAdjustment_lt?: InputMaybe; - shortPoolAmountAdjustment_lte?: InputMaybe; - shortPoolAmountAdjustment_not_eq?: InputMaybe; - shortPoolAmountAdjustment_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>; - 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; + 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>; + positionImpactExponentFactor_eq?: InputMaybe; + positionImpactExponentFactor_gt?: InputMaybe; + positionImpactExponentFactor_gte?: InputMaybe; + positionImpactExponentFactor_in?: InputMaybe>; + positionImpactExponentFactor_isNull?: InputMaybe; + positionImpactExponentFactor_lt?: InputMaybe; + positionImpactExponentFactor_lte?: InputMaybe; + positionImpactExponentFactor_not_eq?: InputMaybe; + positionImpactExponentFactor_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>; + 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"; + __typename?: 'MarketInfosConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export 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", + 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"]; + __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"]; + 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; + 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"; + __typename?: 'MarketsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + 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"]; + __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 enum MultichainFundingOperation { - deposit = "deposit", - withdrawal = "withdrawal", + deposit = 'deposit', + withdrawal = 'withdrawal' } export interface MultichainFundingReceiveEvent { - __typename?: "MultichainFundingReceiveEvent"; - deliveredTxn?: Maybe; - id: Scalars["String"]["output"]; - isDeliveryError?: Maybe; - isUncertain: Scalars["Boolean"]["output"]; + __typename?: 'MultichainFundingReceiveEvent'; + deliveredTimestamp?: Maybe; + deliveredTxn?: Maybe; + id: Scalars['String']['output']; + isDeliveryError?: Maybe; + isUncertain: Scalars['Boolean']['output']; operation: MultichainFundingOperation; - receivedAmount: Scalars["BigInt"]["output"]; - receivedTxn: Transaction; - sourceChainId: Scalars["Int"]["output"]; + 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"]; + __typename?: 'MultichainFundingReceiveEventEdge'; + cursor: Scalars['String']['output']; node: MultichainFundingReceiveEvent; } export enum MultichainFundingReceiveEventOrderByInput { - deliveredTxn_blockNumber_ASC = "deliveredTxn_blockNumber_ASC", - deliveredTxn_blockNumber_ASC_NULLS_FIRST = "deliveredTxn_blockNumber_ASC_NULLS_FIRST", - deliveredTxn_blockNumber_ASC_NULLS_LAST = "deliveredTxn_blockNumber_ASC_NULLS_LAST", - deliveredTxn_blockNumber_DESC = "deliveredTxn_blockNumber_DESC", - deliveredTxn_blockNumber_DESC_NULLS_FIRST = "deliveredTxn_blockNumber_DESC_NULLS_FIRST", - deliveredTxn_blockNumber_DESC_NULLS_LAST = "deliveredTxn_blockNumber_DESC_NULLS_LAST", - deliveredTxn_chainId_ASC = "deliveredTxn_chainId_ASC", - deliveredTxn_chainId_ASC_NULLS_FIRST = "deliveredTxn_chainId_ASC_NULLS_FIRST", - deliveredTxn_chainId_ASC_NULLS_LAST = "deliveredTxn_chainId_ASC_NULLS_LAST", - deliveredTxn_chainId_DESC = "deliveredTxn_chainId_DESC", - deliveredTxn_chainId_DESC_NULLS_FIRST = "deliveredTxn_chainId_DESC_NULLS_FIRST", - deliveredTxn_chainId_DESC_NULLS_LAST = "deliveredTxn_chainId_DESC_NULLS_LAST", - deliveredTxn_from_ASC = "deliveredTxn_from_ASC", - deliveredTxn_from_ASC_NULLS_FIRST = "deliveredTxn_from_ASC_NULLS_FIRST", - deliveredTxn_from_ASC_NULLS_LAST = "deliveredTxn_from_ASC_NULLS_LAST", - deliveredTxn_from_DESC = "deliveredTxn_from_DESC", - deliveredTxn_from_DESC_NULLS_FIRST = "deliveredTxn_from_DESC_NULLS_FIRST", - deliveredTxn_from_DESC_NULLS_LAST = "deliveredTxn_from_DESC_NULLS_LAST", - deliveredTxn_hash_ASC = "deliveredTxn_hash_ASC", - deliveredTxn_hash_ASC_NULLS_FIRST = "deliveredTxn_hash_ASC_NULLS_FIRST", - deliveredTxn_hash_ASC_NULLS_LAST = "deliveredTxn_hash_ASC_NULLS_LAST", - deliveredTxn_hash_DESC = "deliveredTxn_hash_DESC", - deliveredTxn_hash_DESC_NULLS_FIRST = "deliveredTxn_hash_DESC_NULLS_FIRST", - deliveredTxn_hash_DESC_NULLS_LAST = "deliveredTxn_hash_DESC_NULLS_LAST", - deliveredTxn_id_ASC = "deliveredTxn_id_ASC", - deliveredTxn_id_ASC_NULLS_FIRST = "deliveredTxn_id_ASC_NULLS_FIRST", - deliveredTxn_id_ASC_NULLS_LAST = "deliveredTxn_id_ASC_NULLS_LAST", - deliveredTxn_id_DESC = "deliveredTxn_id_DESC", - deliveredTxn_id_DESC_NULLS_FIRST = "deliveredTxn_id_DESC_NULLS_FIRST", - deliveredTxn_id_DESC_NULLS_LAST = "deliveredTxn_id_DESC_NULLS_LAST", - deliveredTxn_timestamp_ASC = "deliveredTxn_timestamp_ASC", - deliveredTxn_timestamp_ASC_NULLS_FIRST = "deliveredTxn_timestamp_ASC_NULLS_FIRST", - deliveredTxn_timestamp_ASC_NULLS_LAST = "deliveredTxn_timestamp_ASC_NULLS_LAST", - deliveredTxn_timestamp_DESC = "deliveredTxn_timestamp_DESC", - deliveredTxn_timestamp_DESC_NULLS_FIRST = "deliveredTxn_timestamp_DESC_NULLS_FIRST", - deliveredTxn_timestamp_DESC_NULLS_LAST = "deliveredTxn_timestamp_DESC_NULLS_LAST", - deliveredTxn_to_ASC = "deliveredTxn_to_ASC", - deliveredTxn_to_ASC_NULLS_FIRST = "deliveredTxn_to_ASC_NULLS_FIRST", - deliveredTxn_to_ASC_NULLS_LAST = "deliveredTxn_to_ASC_NULLS_LAST", - deliveredTxn_to_DESC = "deliveredTxn_to_DESC", - deliveredTxn_to_DESC_NULLS_FIRST = "deliveredTxn_to_DESC_NULLS_FIRST", - deliveredTxn_to_DESC_NULLS_LAST = "deliveredTxn_to_DESC_NULLS_LAST", - deliveredTxn_transactionIndex_ASC = "deliveredTxn_transactionIndex_ASC", - deliveredTxn_transactionIndex_ASC_NULLS_FIRST = "deliveredTxn_transactionIndex_ASC_NULLS_FIRST", - deliveredTxn_transactionIndex_ASC_NULLS_LAST = "deliveredTxn_transactionIndex_ASC_NULLS_LAST", - deliveredTxn_transactionIndex_DESC = "deliveredTxn_transactionIndex_DESC", - deliveredTxn_transactionIndex_DESC_NULLS_FIRST = "deliveredTxn_transactionIndex_DESC_NULLS_FIRST", - deliveredTxn_transactionIndex_DESC_NULLS_LAST = "deliveredTxn_transactionIndex_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", - receivedTxn_blockNumber_ASC = "receivedTxn_blockNumber_ASC", - receivedTxn_blockNumber_ASC_NULLS_FIRST = "receivedTxn_blockNumber_ASC_NULLS_FIRST", - receivedTxn_blockNumber_ASC_NULLS_LAST = "receivedTxn_blockNumber_ASC_NULLS_LAST", - receivedTxn_blockNumber_DESC = "receivedTxn_blockNumber_DESC", - receivedTxn_blockNumber_DESC_NULLS_FIRST = "receivedTxn_blockNumber_DESC_NULLS_FIRST", - receivedTxn_blockNumber_DESC_NULLS_LAST = "receivedTxn_blockNumber_DESC_NULLS_LAST", - receivedTxn_chainId_ASC = "receivedTxn_chainId_ASC", - receivedTxn_chainId_ASC_NULLS_FIRST = "receivedTxn_chainId_ASC_NULLS_FIRST", - receivedTxn_chainId_ASC_NULLS_LAST = "receivedTxn_chainId_ASC_NULLS_LAST", - receivedTxn_chainId_DESC = "receivedTxn_chainId_DESC", - receivedTxn_chainId_DESC_NULLS_FIRST = "receivedTxn_chainId_DESC_NULLS_FIRST", - receivedTxn_chainId_DESC_NULLS_LAST = "receivedTxn_chainId_DESC_NULLS_LAST", - receivedTxn_from_ASC = "receivedTxn_from_ASC", - receivedTxn_from_ASC_NULLS_FIRST = "receivedTxn_from_ASC_NULLS_FIRST", - receivedTxn_from_ASC_NULLS_LAST = "receivedTxn_from_ASC_NULLS_LAST", - receivedTxn_from_DESC = "receivedTxn_from_DESC", - receivedTxn_from_DESC_NULLS_FIRST = "receivedTxn_from_DESC_NULLS_FIRST", - receivedTxn_from_DESC_NULLS_LAST = "receivedTxn_from_DESC_NULLS_LAST", - receivedTxn_hash_ASC = "receivedTxn_hash_ASC", - receivedTxn_hash_ASC_NULLS_FIRST = "receivedTxn_hash_ASC_NULLS_FIRST", - receivedTxn_hash_ASC_NULLS_LAST = "receivedTxn_hash_ASC_NULLS_LAST", - receivedTxn_hash_DESC = "receivedTxn_hash_DESC", - receivedTxn_hash_DESC_NULLS_FIRST = "receivedTxn_hash_DESC_NULLS_FIRST", - receivedTxn_hash_DESC_NULLS_LAST = "receivedTxn_hash_DESC_NULLS_LAST", - receivedTxn_id_ASC = "receivedTxn_id_ASC", - receivedTxn_id_ASC_NULLS_FIRST = "receivedTxn_id_ASC_NULLS_FIRST", - receivedTxn_id_ASC_NULLS_LAST = "receivedTxn_id_ASC_NULLS_LAST", - receivedTxn_id_DESC = "receivedTxn_id_DESC", - receivedTxn_id_DESC_NULLS_FIRST = "receivedTxn_id_DESC_NULLS_FIRST", - receivedTxn_id_DESC_NULLS_LAST = "receivedTxn_id_DESC_NULLS_LAST", - receivedTxn_timestamp_ASC = "receivedTxn_timestamp_ASC", - receivedTxn_timestamp_ASC_NULLS_FIRST = "receivedTxn_timestamp_ASC_NULLS_FIRST", - receivedTxn_timestamp_ASC_NULLS_LAST = "receivedTxn_timestamp_ASC_NULLS_LAST", - receivedTxn_timestamp_DESC = "receivedTxn_timestamp_DESC", - receivedTxn_timestamp_DESC_NULLS_FIRST = "receivedTxn_timestamp_DESC_NULLS_FIRST", - receivedTxn_timestamp_DESC_NULLS_LAST = "receivedTxn_timestamp_DESC_NULLS_LAST", - receivedTxn_to_ASC = "receivedTxn_to_ASC", - receivedTxn_to_ASC_NULLS_FIRST = "receivedTxn_to_ASC_NULLS_FIRST", - receivedTxn_to_ASC_NULLS_LAST = "receivedTxn_to_ASC_NULLS_LAST", - receivedTxn_to_DESC = "receivedTxn_to_DESC", - receivedTxn_to_DESC_NULLS_FIRST = "receivedTxn_to_DESC_NULLS_FIRST", - receivedTxn_to_DESC_NULLS_LAST = "receivedTxn_to_DESC_NULLS_LAST", - receivedTxn_transactionIndex_ASC = "receivedTxn_transactionIndex_ASC", - receivedTxn_transactionIndex_ASC_NULLS_FIRST = "receivedTxn_transactionIndex_ASC_NULLS_FIRST", - receivedTxn_transactionIndex_ASC_NULLS_LAST = "receivedTxn_transactionIndex_ASC_NULLS_LAST", - receivedTxn_transactionIndex_DESC = "receivedTxn_transactionIndex_DESC", - receivedTxn_transactionIndex_DESC_NULLS_FIRST = "receivedTxn_transactionIndex_DESC_NULLS_FIRST", - receivedTxn_transactionIndex_DESC_NULLS_LAST = "receivedTxn_transactionIndex_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", + 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>; - deliveredTxn?: InputMaybe; - deliveredTxn_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; - isDeliveryError_eq?: InputMaybe; - isDeliveryError_isNull?: InputMaybe; - isDeliveryError_not_eq?: InputMaybe; - isUncertain_eq?: InputMaybe; - isUncertain_isNull?: InputMaybe; - isUncertain_not_eq?: 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_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>; - receivedTxn?: InputMaybe; - receivedTxn_isNull?: 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>; + 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"; + __typename?: 'MultichainFundingReceiveEventsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export interface MultichainFundingSendEvent { - __typename?: "MultichainFundingSendEvent"; - account: Scalars["String"]["output"]; - expectedReceivedAmount: Scalars["BigInt"]["output"]; - id: Scalars["String"]["output"]; + __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"]; - token: Scalars["String"]["output"]; - txn: Transaction; + 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"]; + __typename?: 'MultichainFundingSendEventEdge'; + cursor: Scalars['String']['output']; node: MultichainFundingSendEvent; } export 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", - 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_blockNumber_ASC = "txn_blockNumber_ASC", - txn_blockNumber_ASC_NULLS_FIRST = "txn_blockNumber_ASC_NULLS_FIRST", - txn_blockNumber_ASC_NULLS_LAST = "txn_blockNumber_ASC_NULLS_LAST", - txn_blockNumber_DESC = "txn_blockNumber_DESC", - txn_blockNumber_DESC_NULLS_FIRST = "txn_blockNumber_DESC_NULLS_FIRST", - txn_blockNumber_DESC_NULLS_LAST = "txn_blockNumber_DESC_NULLS_LAST", - txn_chainId_ASC = "txn_chainId_ASC", - txn_chainId_ASC_NULLS_FIRST = "txn_chainId_ASC_NULLS_FIRST", - txn_chainId_ASC_NULLS_LAST = "txn_chainId_ASC_NULLS_LAST", - txn_chainId_DESC = "txn_chainId_DESC", - txn_chainId_DESC_NULLS_FIRST = "txn_chainId_DESC_NULLS_FIRST", - txn_chainId_DESC_NULLS_LAST = "txn_chainId_DESC_NULLS_LAST", - txn_from_ASC = "txn_from_ASC", - txn_from_ASC_NULLS_FIRST = "txn_from_ASC_NULLS_FIRST", - txn_from_ASC_NULLS_LAST = "txn_from_ASC_NULLS_LAST", - txn_from_DESC = "txn_from_DESC", - txn_from_DESC_NULLS_FIRST = "txn_from_DESC_NULLS_FIRST", - txn_from_DESC_NULLS_LAST = "txn_from_DESC_NULLS_LAST", - txn_hash_ASC = "txn_hash_ASC", - txn_hash_ASC_NULLS_FIRST = "txn_hash_ASC_NULLS_FIRST", - txn_hash_ASC_NULLS_LAST = "txn_hash_ASC_NULLS_LAST", - txn_hash_DESC = "txn_hash_DESC", - txn_hash_DESC_NULLS_FIRST = "txn_hash_DESC_NULLS_FIRST", - txn_hash_DESC_NULLS_LAST = "txn_hash_DESC_NULLS_LAST", - txn_id_ASC = "txn_id_ASC", - txn_id_ASC_NULLS_FIRST = "txn_id_ASC_NULLS_FIRST", - txn_id_ASC_NULLS_LAST = "txn_id_ASC_NULLS_LAST", - txn_id_DESC = "txn_id_DESC", - txn_id_DESC_NULLS_FIRST = "txn_id_DESC_NULLS_FIRST", - txn_id_DESC_NULLS_LAST = "txn_id_DESC_NULLS_LAST", - txn_timestamp_ASC = "txn_timestamp_ASC", - txn_timestamp_ASC_NULLS_FIRST = "txn_timestamp_ASC_NULLS_FIRST", - txn_timestamp_ASC_NULLS_LAST = "txn_timestamp_ASC_NULLS_LAST", - txn_timestamp_DESC = "txn_timestamp_DESC", - txn_timestamp_DESC_NULLS_FIRST = "txn_timestamp_DESC_NULLS_FIRST", - txn_timestamp_DESC_NULLS_LAST = "txn_timestamp_DESC_NULLS_LAST", - txn_to_ASC = "txn_to_ASC", - txn_to_ASC_NULLS_FIRST = "txn_to_ASC_NULLS_FIRST", - txn_to_ASC_NULLS_LAST = "txn_to_ASC_NULLS_LAST", - txn_to_DESC = "txn_to_DESC", - txn_to_DESC_NULLS_FIRST = "txn_to_DESC_NULLS_FIRST", - txn_to_DESC_NULLS_LAST = "txn_to_DESC_NULLS_LAST", - txn_transactionIndex_ASC = "txn_transactionIndex_ASC", - txn_transactionIndex_ASC_NULLS_FIRST = "txn_transactionIndex_ASC_NULLS_FIRST", - txn_transactionIndex_ASC_NULLS_LAST = "txn_transactionIndex_ASC_NULLS_LAST", - txn_transactionIndex_DESC = "txn_transactionIndex_DESC", - txn_transactionIndex_DESC_NULLS_FIRST = "txn_transactionIndex_DESC_NULLS_FIRST", - txn_transactionIndex_DESC_NULLS_LAST = "txn_transactionIndex_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', + 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; + 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_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>; - 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?: InputMaybe; - txn_isNull?: 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"; + __typename?: 'MultichainFundingSendEventsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export interface MultichainFundingWhereInput { - account?: InputMaybe; - id?: InputMaybe; + account?: InputMaybe; + id?: InputMaybe; + sourceChainId?: InputMaybe; } export interface MultichainMetadata { - __typename?: "MultichainMetadata"; - id: Scalars["String"]["output"]; - lastBlockNumber: Scalars["Int"]["output"]; - lastBlockTimestamp: Scalars["Int"]["output"]; + __typename?: 'MultichainMetadata'; + id: Scalars['String']['output']; + lastBlockNumber: Scalars['Int']['output']; + lastBlockTimestamp: Scalars['Int']['output']; } export interface MultichainMetadataConnection { - __typename?: "MultichainMetadataConnection"; + __typename?: 'MultichainMetadataConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export interface MultichainMetadataEdge { - __typename?: "MultichainMetadataEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'MultichainMetadataEdge'; + cursor: Scalars['String']['output']; node: MultichainMetadata; } export enum MultichainMetadataOrderByInput { - 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", - lastBlockNumber_ASC = "lastBlockNumber_ASC", - lastBlockNumber_ASC_NULLS_FIRST = "lastBlockNumber_ASC_NULLS_FIRST", - lastBlockNumber_ASC_NULLS_LAST = "lastBlockNumber_ASC_NULLS_LAST", - lastBlockNumber_DESC = "lastBlockNumber_DESC", - lastBlockNumber_DESC_NULLS_FIRST = "lastBlockNumber_DESC_NULLS_FIRST", - lastBlockNumber_DESC_NULLS_LAST = "lastBlockNumber_DESC_NULLS_LAST", - lastBlockTimestamp_ASC = "lastBlockTimestamp_ASC", - lastBlockTimestamp_ASC_NULLS_FIRST = "lastBlockTimestamp_ASC_NULLS_FIRST", - lastBlockTimestamp_ASC_NULLS_LAST = "lastBlockTimestamp_ASC_NULLS_LAST", - lastBlockTimestamp_DESC = "lastBlockTimestamp_DESC", - lastBlockTimestamp_DESC_NULLS_FIRST = "lastBlockTimestamp_DESC_NULLS_FIRST", - lastBlockTimestamp_DESC_NULLS_LAST = "lastBlockTimestamp_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', + lastBlockNumber_ASC = 'lastBlockNumber_ASC', + lastBlockNumber_ASC_NULLS_FIRST = 'lastBlockNumber_ASC_NULLS_FIRST', + lastBlockNumber_ASC_NULLS_LAST = 'lastBlockNumber_ASC_NULLS_LAST', + lastBlockNumber_DESC = 'lastBlockNumber_DESC', + lastBlockNumber_DESC_NULLS_FIRST = 'lastBlockNumber_DESC_NULLS_FIRST', + lastBlockNumber_DESC_NULLS_LAST = 'lastBlockNumber_DESC_NULLS_LAST', + lastBlockTimestamp_ASC = 'lastBlockTimestamp_ASC', + lastBlockTimestamp_ASC_NULLS_FIRST = 'lastBlockTimestamp_ASC_NULLS_FIRST', + lastBlockTimestamp_ASC_NULLS_LAST = 'lastBlockTimestamp_ASC_NULLS_LAST', + lastBlockTimestamp_DESC = 'lastBlockTimestamp_DESC', + lastBlockTimestamp_DESC_NULLS_FIRST = 'lastBlockTimestamp_DESC_NULLS_FIRST', + lastBlockTimestamp_DESC_NULLS_LAST = 'lastBlockTimestamp_DESC_NULLS_LAST' } export interface MultichainMetadataWhereInput { 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; - lastBlockNumber_eq?: InputMaybe; - lastBlockNumber_gt?: InputMaybe; - lastBlockNumber_gte?: InputMaybe; - lastBlockNumber_in?: InputMaybe>; - lastBlockNumber_isNull?: InputMaybe; - lastBlockNumber_lt?: InputMaybe; - lastBlockNumber_lte?: InputMaybe; - lastBlockNumber_not_eq?: InputMaybe; - lastBlockNumber_not_in?: InputMaybe>; - lastBlockTimestamp_eq?: InputMaybe; - lastBlockTimestamp_gt?: InputMaybe; - lastBlockTimestamp_gte?: InputMaybe; - lastBlockTimestamp_in?: InputMaybe>; - lastBlockTimestamp_isNull?: InputMaybe; - lastBlockTimestamp_lt?: InputMaybe; - lastBlockTimestamp_lte?: InputMaybe; - lastBlockTimestamp_not_eq?: InputMaybe; - lastBlockTimestamp_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; + lastBlockNumber_eq?: InputMaybe; + lastBlockNumber_gt?: InputMaybe; + lastBlockNumber_gte?: InputMaybe; + lastBlockNumber_in?: InputMaybe>; + lastBlockNumber_isNull?: InputMaybe; + lastBlockNumber_lt?: InputMaybe; + lastBlockNumber_lte?: InputMaybe; + lastBlockNumber_not_eq?: InputMaybe; + lastBlockNumber_not_in?: InputMaybe>; + lastBlockTimestamp_eq?: InputMaybe; + lastBlockTimestamp_gt?: InputMaybe; + lastBlockTimestamp_gte?: InputMaybe; + lastBlockTimestamp_in?: InputMaybe>; + lastBlockTimestamp_isNull?: InputMaybe; + lastBlockTimestamp_lt?: InputMaybe; + lastBlockTimestamp_lte?: InputMaybe; + lastBlockTimestamp_not_eq?: InputMaybe; + lastBlockTimestamp_not_in?: InputMaybe>; } export interface OnChainSetting { - __typename?: "OnChainSetting"; - id: Scalars["String"]["output"]; - key: Scalars["String"]["output"]; + __typename?: 'OnChainSetting'; + id: Scalars['String']['output']; + key: Scalars['String']['output']; type: OnChainSettingType; - value: Scalars["String"]["output"]; + value: Scalars['String']['output']; } export interface OnChainSettingEdge { - __typename?: "OnChainSettingEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'OnChainSettingEdge'; + cursor: Scalars['String']['output']; node: OnChainSetting; } export 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", + 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 enum OnChainSettingType { - bool = "bool", - bytes32 = "bytes32", - string = "string", - uint = "uint", + 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; + 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_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; + 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"; + __typename?: 'OnChainSettingsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + 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; + __typename?: 'Order'; + acceptablePrice: Scalars['BigInt']['output']; + account: Scalars['String']['output']; + callbackContract: Scalars['String']['output']; + callbackGasLimit: Scalars['BigInt']['output']; + cancelledReason?: Maybe; + cancelledReasonBytes?: Maybe; cancelledTxn?: Maybe; createdTxn: Transaction; + decreasePositionSwapType: Scalars['Int']['output']; executedTxn?: 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; + 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"]; + 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"]; + __typename?: 'OrderEdge'; + cursor: Scalars['String']['output']; node: Order; } export 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", - cancelledTxn_blockNumber_ASC = "cancelledTxn_blockNumber_ASC", - cancelledTxn_blockNumber_ASC_NULLS_FIRST = "cancelledTxn_blockNumber_ASC_NULLS_FIRST", - cancelledTxn_blockNumber_ASC_NULLS_LAST = "cancelledTxn_blockNumber_ASC_NULLS_LAST", - cancelledTxn_blockNumber_DESC = "cancelledTxn_blockNumber_DESC", - cancelledTxn_blockNumber_DESC_NULLS_FIRST = "cancelledTxn_blockNumber_DESC_NULLS_FIRST", - cancelledTxn_blockNumber_DESC_NULLS_LAST = "cancelledTxn_blockNumber_DESC_NULLS_LAST", - cancelledTxn_chainId_ASC = "cancelledTxn_chainId_ASC", - cancelledTxn_chainId_ASC_NULLS_FIRST = "cancelledTxn_chainId_ASC_NULLS_FIRST", - cancelledTxn_chainId_ASC_NULLS_LAST = "cancelledTxn_chainId_ASC_NULLS_LAST", - cancelledTxn_chainId_DESC = "cancelledTxn_chainId_DESC", - cancelledTxn_chainId_DESC_NULLS_FIRST = "cancelledTxn_chainId_DESC_NULLS_FIRST", - cancelledTxn_chainId_DESC_NULLS_LAST = "cancelledTxn_chainId_DESC_NULLS_LAST", - cancelledTxn_from_ASC = "cancelledTxn_from_ASC", - cancelledTxn_from_ASC_NULLS_FIRST = "cancelledTxn_from_ASC_NULLS_FIRST", - cancelledTxn_from_ASC_NULLS_LAST = "cancelledTxn_from_ASC_NULLS_LAST", - cancelledTxn_from_DESC = "cancelledTxn_from_DESC", - cancelledTxn_from_DESC_NULLS_FIRST = "cancelledTxn_from_DESC_NULLS_FIRST", - cancelledTxn_from_DESC_NULLS_LAST = "cancelledTxn_from_DESC_NULLS_LAST", - cancelledTxn_hash_ASC = "cancelledTxn_hash_ASC", - cancelledTxn_hash_ASC_NULLS_FIRST = "cancelledTxn_hash_ASC_NULLS_FIRST", - cancelledTxn_hash_ASC_NULLS_LAST = "cancelledTxn_hash_ASC_NULLS_LAST", - cancelledTxn_hash_DESC = "cancelledTxn_hash_DESC", - cancelledTxn_hash_DESC_NULLS_FIRST = "cancelledTxn_hash_DESC_NULLS_FIRST", - cancelledTxn_hash_DESC_NULLS_LAST = "cancelledTxn_hash_DESC_NULLS_LAST", - cancelledTxn_id_ASC = "cancelledTxn_id_ASC", - cancelledTxn_id_ASC_NULLS_FIRST = "cancelledTxn_id_ASC_NULLS_FIRST", - cancelledTxn_id_ASC_NULLS_LAST = "cancelledTxn_id_ASC_NULLS_LAST", - cancelledTxn_id_DESC = "cancelledTxn_id_DESC", - cancelledTxn_id_DESC_NULLS_FIRST = "cancelledTxn_id_DESC_NULLS_FIRST", - cancelledTxn_id_DESC_NULLS_LAST = "cancelledTxn_id_DESC_NULLS_LAST", - cancelledTxn_timestamp_ASC = "cancelledTxn_timestamp_ASC", - cancelledTxn_timestamp_ASC_NULLS_FIRST = "cancelledTxn_timestamp_ASC_NULLS_FIRST", - cancelledTxn_timestamp_ASC_NULLS_LAST = "cancelledTxn_timestamp_ASC_NULLS_LAST", - cancelledTxn_timestamp_DESC = "cancelledTxn_timestamp_DESC", - cancelledTxn_timestamp_DESC_NULLS_FIRST = "cancelledTxn_timestamp_DESC_NULLS_FIRST", - cancelledTxn_timestamp_DESC_NULLS_LAST = "cancelledTxn_timestamp_DESC_NULLS_LAST", - cancelledTxn_to_ASC = "cancelledTxn_to_ASC", - cancelledTxn_to_ASC_NULLS_FIRST = "cancelledTxn_to_ASC_NULLS_FIRST", - cancelledTxn_to_ASC_NULLS_LAST = "cancelledTxn_to_ASC_NULLS_LAST", - cancelledTxn_to_DESC = "cancelledTxn_to_DESC", - cancelledTxn_to_DESC_NULLS_FIRST = "cancelledTxn_to_DESC_NULLS_FIRST", - cancelledTxn_to_DESC_NULLS_LAST = "cancelledTxn_to_DESC_NULLS_LAST", - cancelledTxn_transactionIndex_ASC = "cancelledTxn_transactionIndex_ASC", - cancelledTxn_transactionIndex_ASC_NULLS_FIRST = "cancelledTxn_transactionIndex_ASC_NULLS_FIRST", - cancelledTxn_transactionIndex_ASC_NULLS_LAST = "cancelledTxn_transactionIndex_ASC_NULLS_LAST", - cancelledTxn_transactionIndex_DESC = "cancelledTxn_transactionIndex_DESC", - cancelledTxn_transactionIndex_DESC_NULLS_FIRST = "cancelledTxn_transactionIndex_DESC_NULLS_FIRST", - cancelledTxn_transactionIndex_DESC_NULLS_LAST = "cancelledTxn_transactionIndex_DESC_NULLS_LAST", - createdTxn_blockNumber_ASC = "createdTxn_blockNumber_ASC", - createdTxn_blockNumber_ASC_NULLS_FIRST = "createdTxn_blockNumber_ASC_NULLS_FIRST", - createdTxn_blockNumber_ASC_NULLS_LAST = "createdTxn_blockNumber_ASC_NULLS_LAST", - createdTxn_blockNumber_DESC = "createdTxn_blockNumber_DESC", - createdTxn_blockNumber_DESC_NULLS_FIRST = "createdTxn_blockNumber_DESC_NULLS_FIRST", - createdTxn_blockNumber_DESC_NULLS_LAST = "createdTxn_blockNumber_DESC_NULLS_LAST", - createdTxn_chainId_ASC = "createdTxn_chainId_ASC", - createdTxn_chainId_ASC_NULLS_FIRST = "createdTxn_chainId_ASC_NULLS_FIRST", - createdTxn_chainId_ASC_NULLS_LAST = "createdTxn_chainId_ASC_NULLS_LAST", - createdTxn_chainId_DESC = "createdTxn_chainId_DESC", - createdTxn_chainId_DESC_NULLS_FIRST = "createdTxn_chainId_DESC_NULLS_FIRST", - createdTxn_chainId_DESC_NULLS_LAST = "createdTxn_chainId_DESC_NULLS_LAST", - createdTxn_from_ASC = "createdTxn_from_ASC", - createdTxn_from_ASC_NULLS_FIRST = "createdTxn_from_ASC_NULLS_FIRST", - createdTxn_from_ASC_NULLS_LAST = "createdTxn_from_ASC_NULLS_LAST", - createdTxn_from_DESC = "createdTxn_from_DESC", - createdTxn_from_DESC_NULLS_FIRST = "createdTxn_from_DESC_NULLS_FIRST", - createdTxn_from_DESC_NULLS_LAST = "createdTxn_from_DESC_NULLS_LAST", - createdTxn_hash_ASC = "createdTxn_hash_ASC", - createdTxn_hash_ASC_NULLS_FIRST = "createdTxn_hash_ASC_NULLS_FIRST", - createdTxn_hash_ASC_NULLS_LAST = "createdTxn_hash_ASC_NULLS_LAST", - createdTxn_hash_DESC = "createdTxn_hash_DESC", - createdTxn_hash_DESC_NULLS_FIRST = "createdTxn_hash_DESC_NULLS_FIRST", - createdTxn_hash_DESC_NULLS_LAST = "createdTxn_hash_DESC_NULLS_LAST", - createdTxn_id_ASC = "createdTxn_id_ASC", - createdTxn_id_ASC_NULLS_FIRST = "createdTxn_id_ASC_NULLS_FIRST", - createdTxn_id_ASC_NULLS_LAST = "createdTxn_id_ASC_NULLS_LAST", - createdTxn_id_DESC = "createdTxn_id_DESC", - createdTxn_id_DESC_NULLS_FIRST = "createdTxn_id_DESC_NULLS_FIRST", - createdTxn_id_DESC_NULLS_LAST = "createdTxn_id_DESC_NULLS_LAST", - createdTxn_timestamp_ASC = "createdTxn_timestamp_ASC", - createdTxn_timestamp_ASC_NULLS_FIRST = "createdTxn_timestamp_ASC_NULLS_FIRST", - createdTxn_timestamp_ASC_NULLS_LAST = "createdTxn_timestamp_ASC_NULLS_LAST", - createdTxn_timestamp_DESC = "createdTxn_timestamp_DESC", - createdTxn_timestamp_DESC_NULLS_FIRST = "createdTxn_timestamp_DESC_NULLS_FIRST", - createdTxn_timestamp_DESC_NULLS_LAST = "createdTxn_timestamp_DESC_NULLS_LAST", - createdTxn_to_ASC = "createdTxn_to_ASC", - createdTxn_to_ASC_NULLS_FIRST = "createdTxn_to_ASC_NULLS_FIRST", - createdTxn_to_ASC_NULLS_LAST = "createdTxn_to_ASC_NULLS_LAST", - createdTxn_to_DESC = "createdTxn_to_DESC", - createdTxn_to_DESC_NULLS_FIRST = "createdTxn_to_DESC_NULLS_FIRST", - createdTxn_to_DESC_NULLS_LAST = "createdTxn_to_DESC_NULLS_LAST", - createdTxn_transactionIndex_ASC = "createdTxn_transactionIndex_ASC", - createdTxn_transactionIndex_ASC_NULLS_FIRST = "createdTxn_transactionIndex_ASC_NULLS_FIRST", - createdTxn_transactionIndex_ASC_NULLS_LAST = "createdTxn_transactionIndex_ASC_NULLS_LAST", - createdTxn_transactionIndex_DESC = "createdTxn_transactionIndex_DESC", - createdTxn_transactionIndex_DESC_NULLS_FIRST = "createdTxn_transactionIndex_DESC_NULLS_FIRST", - createdTxn_transactionIndex_DESC_NULLS_LAST = "createdTxn_transactionIndex_DESC_NULLS_LAST", - executedTxn_blockNumber_ASC = "executedTxn_blockNumber_ASC", - executedTxn_blockNumber_ASC_NULLS_FIRST = "executedTxn_blockNumber_ASC_NULLS_FIRST", - executedTxn_blockNumber_ASC_NULLS_LAST = "executedTxn_blockNumber_ASC_NULLS_LAST", - executedTxn_blockNumber_DESC = "executedTxn_blockNumber_DESC", - executedTxn_blockNumber_DESC_NULLS_FIRST = "executedTxn_blockNumber_DESC_NULLS_FIRST", - executedTxn_blockNumber_DESC_NULLS_LAST = "executedTxn_blockNumber_DESC_NULLS_LAST", - executedTxn_chainId_ASC = "executedTxn_chainId_ASC", - executedTxn_chainId_ASC_NULLS_FIRST = "executedTxn_chainId_ASC_NULLS_FIRST", - executedTxn_chainId_ASC_NULLS_LAST = "executedTxn_chainId_ASC_NULLS_LAST", - executedTxn_chainId_DESC = "executedTxn_chainId_DESC", - executedTxn_chainId_DESC_NULLS_FIRST = "executedTxn_chainId_DESC_NULLS_FIRST", - executedTxn_chainId_DESC_NULLS_LAST = "executedTxn_chainId_DESC_NULLS_LAST", - executedTxn_from_ASC = "executedTxn_from_ASC", - executedTxn_from_ASC_NULLS_FIRST = "executedTxn_from_ASC_NULLS_FIRST", - executedTxn_from_ASC_NULLS_LAST = "executedTxn_from_ASC_NULLS_LAST", - executedTxn_from_DESC = "executedTxn_from_DESC", - executedTxn_from_DESC_NULLS_FIRST = "executedTxn_from_DESC_NULLS_FIRST", - executedTxn_from_DESC_NULLS_LAST = "executedTxn_from_DESC_NULLS_LAST", - executedTxn_hash_ASC = "executedTxn_hash_ASC", - executedTxn_hash_ASC_NULLS_FIRST = "executedTxn_hash_ASC_NULLS_FIRST", - executedTxn_hash_ASC_NULLS_LAST = "executedTxn_hash_ASC_NULLS_LAST", - executedTxn_hash_DESC = "executedTxn_hash_DESC", - executedTxn_hash_DESC_NULLS_FIRST = "executedTxn_hash_DESC_NULLS_FIRST", - executedTxn_hash_DESC_NULLS_LAST = "executedTxn_hash_DESC_NULLS_LAST", - executedTxn_id_ASC = "executedTxn_id_ASC", - executedTxn_id_ASC_NULLS_FIRST = "executedTxn_id_ASC_NULLS_FIRST", - executedTxn_id_ASC_NULLS_LAST = "executedTxn_id_ASC_NULLS_LAST", - executedTxn_id_DESC = "executedTxn_id_DESC", - executedTxn_id_DESC_NULLS_FIRST = "executedTxn_id_DESC_NULLS_FIRST", - executedTxn_id_DESC_NULLS_LAST = "executedTxn_id_DESC_NULLS_LAST", - executedTxn_timestamp_ASC = "executedTxn_timestamp_ASC", - executedTxn_timestamp_ASC_NULLS_FIRST = "executedTxn_timestamp_ASC_NULLS_FIRST", - executedTxn_timestamp_ASC_NULLS_LAST = "executedTxn_timestamp_ASC_NULLS_LAST", - executedTxn_timestamp_DESC = "executedTxn_timestamp_DESC", - executedTxn_timestamp_DESC_NULLS_FIRST = "executedTxn_timestamp_DESC_NULLS_FIRST", - executedTxn_timestamp_DESC_NULLS_LAST = "executedTxn_timestamp_DESC_NULLS_LAST", - executedTxn_to_ASC = "executedTxn_to_ASC", - executedTxn_to_ASC_NULLS_FIRST = "executedTxn_to_ASC_NULLS_FIRST", - executedTxn_to_ASC_NULLS_LAST = "executedTxn_to_ASC_NULLS_LAST", - executedTxn_to_DESC = "executedTxn_to_DESC", - executedTxn_to_DESC_NULLS_FIRST = "executedTxn_to_DESC_NULLS_FIRST", - executedTxn_to_DESC_NULLS_LAST = "executedTxn_to_DESC_NULLS_LAST", - executedTxn_transactionIndex_ASC = "executedTxn_transactionIndex_ASC", - executedTxn_transactionIndex_ASC_NULLS_FIRST = "executedTxn_transactionIndex_ASC_NULLS_FIRST", - executedTxn_transactionIndex_ASC_NULLS_LAST = "executedTxn_transactionIndex_ASC_NULLS_LAST", - executedTxn_transactionIndex_DESC = "executedTxn_transactionIndex_DESC", - executedTxn_transactionIndex_DESC_NULLS_FIRST = "executedTxn_transactionIndex_DESC_NULLS_FIRST", - executedTxn_transactionIndex_DESC_NULLS_LAST = "executedTxn_transactionIndex_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", + 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', + cancelledTxn_blockNumber_ASC = 'cancelledTxn_blockNumber_ASC', + cancelledTxn_blockNumber_ASC_NULLS_FIRST = 'cancelledTxn_blockNumber_ASC_NULLS_FIRST', + cancelledTxn_blockNumber_ASC_NULLS_LAST = 'cancelledTxn_blockNumber_ASC_NULLS_LAST', + cancelledTxn_blockNumber_DESC = 'cancelledTxn_blockNumber_DESC', + cancelledTxn_blockNumber_DESC_NULLS_FIRST = 'cancelledTxn_blockNumber_DESC_NULLS_FIRST', + cancelledTxn_blockNumber_DESC_NULLS_LAST = 'cancelledTxn_blockNumber_DESC_NULLS_LAST', + cancelledTxn_from_ASC = 'cancelledTxn_from_ASC', + cancelledTxn_from_ASC_NULLS_FIRST = 'cancelledTxn_from_ASC_NULLS_FIRST', + cancelledTxn_from_ASC_NULLS_LAST = 'cancelledTxn_from_ASC_NULLS_LAST', + cancelledTxn_from_DESC = 'cancelledTxn_from_DESC', + cancelledTxn_from_DESC_NULLS_FIRST = 'cancelledTxn_from_DESC_NULLS_FIRST', + cancelledTxn_from_DESC_NULLS_LAST = 'cancelledTxn_from_DESC_NULLS_LAST', + cancelledTxn_hash_ASC = 'cancelledTxn_hash_ASC', + cancelledTxn_hash_ASC_NULLS_FIRST = 'cancelledTxn_hash_ASC_NULLS_FIRST', + cancelledTxn_hash_ASC_NULLS_LAST = 'cancelledTxn_hash_ASC_NULLS_LAST', + cancelledTxn_hash_DESC = 'cancelledTxn_hash_DESC', + cancelledTxn_hash_DESC_NULLS_FIRST = 'cancelledTxn_hash_DESC_NULLS_FIRST', + cancelledTxn_hash_DESC_NULLS_LAST = 'cancelledTxn_hash_DESC_NULLS_LAST', + cancelledTxn_id_ASC = 'cancelledTxn_id_ASC', + cancelledTxn_id_ASC_NULLS_FIRST = 'cancelledTxn_id_ASC_NULLS_FIRST', + cancelledTxn_id_ASC_NULLS_LAST = 'cancelledTxn_id_ASC_NULLS_LAST', + cancelledTxn_id_DESC = 'cancelledTxn_id_DESC', + cancelledTxn_id_DESC_NULLS_FIRST = 'cancelledTxn_id_DESC_NULLS_FIRST', + cancelledTxn_id_DESC_NULLS_LAST = 'cancelledTxn_id_DESC_NULLS_LAST', + cancelledTxn_timestamp_ASC = 'cancelledTxn_timestamp_ASC', + cancelledTxn_timestamp_ASC_NULLS_FIRST = 'cancelledTxn_timestamp_ASC_NULLS_FIRST', + cancelledTxn_timestamp_ASC_NULLS_LAST = 'cancelledTxn_timestamp_ASC_NULLS_LAST', + cancelledTxn_timestamp_DESC = 'cancelledTxn_timestamp_DESC', + cancelledTxn_timestamp_DESC_NULLS_FIRST = 'cancelledTxn_timestamp_DESC_NULLS_FIRST', + cancelledTxn_timestamp_DESC_NULLS_LAST = 'cancelledTxn_timestamp_DESC_NULLS_LAST', + cancelledTxn_to_ASC = 'cancelledTxn_to_ASC', + cancelledTxn_to_ASC_NULLS_FIRST = 'cancelledTxn_to_ASC_NULLS_FIRST', + cancelledTxn_to_ASC_NULLS_LAST = 'cancelledTxn_to_ASC_NULLS_LAST', + cancelledTxn_to_DESC = 'cancelledTxn_to_DESC', + cancelledTxn_to_DESC_NULLS_FIRST = 'cancelledTxn_to_DESC_NULLS_FIRST', + cancelledTxn_to_DESC_NULLS_LAST = 'cancelledTxn_to_DESC_NULLS_LAST', + cancelledTxn_transactionIndex_ASC = 'cancelledTxn_transactionIndex_ASC', + cancelledTxn_transactionIndex_ASC_NULLS_FIRST = 'cancelledTxn_transactionIndex_ASC_NULLS_FIRST', + cancelledTxn_transactionIndex_ASC_NULLS_LAST = 'cancelledTxn_transactionIndex_ASC_NULLS_LAST', + cancelledTxn_transactionIndex_DESC = 'cancelledTxn_transactionIndex_DESC', + cancelledTxn_transactionIndex_DESC_NULLS_FIRST = 'cancelledTxn_transactionIndex_DESC_NULLS_FIRST', + cancelledTxn_transactionIndex_DESC_NULLS_LAST = 'cancelledTxn_transactionIndex_DESC_NULLS_LAST', + createdTxn_blockNumber_ASC = 'createdTxn_blockNumber_ASC', + createdTxn_blockNumber_ASC_NULLS_FIRST = 'createdTxn_blockNumber_ASC_NULLS_FIRST', + createdTxn_blockNumber_ASC_NULLS_LAST = 'createdTxn_blockNumber_ASC_NULLS_LAST', + createdTxn_blockNumber_DESC = 'createdTxn_blockNumber_DESC', + createdTxn_blockNumber_DESC_NULLS_FIRST = 'createdTxn_blockNumber_DESC_NULLS_FIRST', + createdTxn_blockNumber_DESC_NULLS_LAST = 'createdTxn_blockNumber_DESC_NULLS_LAST', + createdTxn_from_ASC = 'createdTxn_from_ASC', + createdTxn_from_ASC_NULLS_FIRST = 'createdTxn_from_ASC_NULLS_FIRST', + createdTxn_from_ASC_NULLS_LAST = 'createdTxn_from_ASC_NULLS_LAST', + createdTxn_from_DESC = 'createdTxn_from_DESC', + createdTxn_from_DESC_NULLS_FIRST = 'createdTxn_from_DESC_NULLS_FIRST', + createdTxn_from_DESC_NULLS_LAST = 'createdTxn_from_DESC_NULLS_LAST', + createdTxn_hash_ASC = 'createdTxn_hash_ASC', + createdTxn_hash_ASC_NULLS_FIRST = 'createdTxn_hash_ASC_NULLS_FIRST', + createdTxn_hash_ASC_NULLS_LAST = 'createdTxn_hash_ASC_NULLS_LAST', + createdTxn_hash_DESC = 'createdTxn_hash_DESC', + createdTxn_hash_DESC_NULLS_FIRST = 'createdTxn_hash_DESC_NULLS_FIRST', + createdTxn_hash_DESC_NULLS_LAST = 'createdTxn_hash_DESC_NULLS_LAST', + createdTxn_id_ASC = 'createdTxn_id_ASC', + createdTxn_id_ASC_NULLS_FIRST = 'createdTxn_id_ASC_NULLS_FIRST', + createdTxn_id_ASC_NULLS_LAST = 'createdTxn_id_ASC_NULLS_LAST', + createdTxn_id_DESC = 'createdTxn_id_DESC', + createdTxn_id_DESC_NULLS_FIRST = 'createdTxn_id_DESC_NULLS_FIRST', + createdTxn_id_DESC_NULLS_LAST = 'createdTxn_id_DESC_NULLS_LAST', + createdTxn_timestamp_ASC = 'createdTxn_timestamp_ASC', + createdTxn_timestamp_ASC_NULLS_FIRST = 'createdTxn_timestamp_ASC_NULLS_FIRST', + createdTxn_timestamp_ASC_NULLS_LAST = 'createdTxn_timestamp_ASC_NULLS_LAST', + createdTxn_timestamp_DESC = 'createdTxn_timestamp_DESC', + createdTxn_timestamp_DESC_NULLS_FIRST = 'createdTxn_timestamp_DESC_NULLS_FIRST', + createdTxn_timestamp_DESC_NULLS_LAST = 'createdTxn_timestamp_DESC_NULLS_LAST', + createdTxn_to_ASC = 'createdTxn_to_ASC', + createdTxn_to_ASC_NULLS_FIRST = 'createdTxn_to_ASC_NULLS_FIRST', + createdTxn_to_ASC_NULLS_LAST = 'createdTxn_to_ASC_NULLS_LAST', + createdTxn_to_DESC = 'createdTxn_to_DESC', + createdTxn_to_DESC_NULLS_FIRST = 'createdTxn_to_DESC_NULLS_FIRST', + createdTxn_to_DESC_NULLS_LAST = 'createdTxn_to_DESC_NULLS_LAST', + createdTxn_transactionIndex_ASC = 'createdTxn_transactionIndex_ASC', + createdTxn_transactionIndex_ASC_NULLS_FIRST = 'createdTxn_transactionIndex_ASC_NULLS_FIRST', + createdTxn_transactionIndex_ASC_NULLS_LAST = 'createdTxn_transactionIndex_ASC_NULLS_LAST', + createdTxn_transactionIndex_DESC = 'createdTxn_transactionIndex_DESC', + createdTxn_transactionIndex_DESC_NULLS_FIRST = 'createdTxn_transactionIndex_DESC_NULLS_FIRST', + createdTxn_transactionIndex_DESC_NULLS_LAST = 'createdTxn_transactionIndex_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', + executedTxn_blockNumber_ASC = 'executedTxn_blockNumber_ASC', + executedTxn_blockNumber_ASC_NULLS_FIRST = 'executedTxn_blockNumber_ASC_NULLS_FIRST', + executedTxn_blockNumber_ASC_NULLS_LAST = 'executedTxn_blockNumber_ASC_NULLS_LAST', + executedTxn_blockNumber_DESC = 'executedTxn_blockNumber_DESC', + executedTxn_blockNumber_DESC_NULLS_FIRST = 'executedTxn_blockNumber_DESC_NULLS_FIRST', + executedTxn_blockNumber_DESC_NULLS_LAST = 'executedTxn_blockNumber_DESC_NULLS_LAST', + executedTxn_from_ASC = 'executedTxn_from_ASC', + executedTxn_from_ASC_NULLS_FIRST = 'executedTxn_from_ASC_NULLS_FIRST', + executedTxn_from_ASC_NULLS_LAST = 'executedTxn_from_ASC_NULLS_LAST', + executedTxn_from_DESC = 'executedTxn_from_DESC', + executedTxn_from_DESC_NULLS_FIRST = 'executedTxn_from_DESC_NULLS_FIRST', + executedTxn_from_DESC_NULLS_LAST = 'executedTxn_from_DESC_NULLS_LAST', + executedTxn_hash_ASC = 'executedTxn_hash_ASC', + executedTxn_hash_ASC_NULLS_FIRST = 'executedTxn_hash_ASC_NULLS_FIRST', + executedTxn_hash_ASC_NULLS_LAST = 'executedTxn_hash_ASC_NULLS_LAST', + executedTxn_hash_DESC = 'executedTxn_hash_DESC', + executedTxn_hash_DESC_NULLS_FIRST = 'executedTxn_hash_DESC_NULLS_FIRST', + executedTxn_hash_DESC_NULLS_LAST = 'executedTxn_hash_DESC_NULLS_LAST', + executedTxn_id_ASC = 'executedTxn_id_ASC', + executedTxn_id_ASC_NULLS_FIRST = 'executedTxn_id_ASC_NULLS_FIRST', + executedTxn_id_ASC_NULLS_LAST = 'executedTxn_id_ASC_NULLS_LAST', + executedTxn_id_DESC = 'executedTxn_id_DESC', + executedTxn_id_DESC_NULLS_FIRST = 'executedTxn_id_DESC_NULLS_FIRST', + executedTxn_id_DESC_NULLS_LAST = 'executedTxn_id_DESC_NULLS_LAST', + executedTxn_timestamp_ASC = 'executedTxn_timestamp_ASC', + executedTxn_timestamp_ASC_NULLS_FIRST = 'executedTxn_timestamp_ASC_NULLS_FIRST', + executedTxn_timestamp_ASC_NULLS_LAST = 'executedTxn_timestamp_ASC_NULLS_LAST', + executedTxn_timestamp_DESC = 'executedTxn_timestamp_DESC', + executedTxn_timestamp_DESC_NULLS_FIRST = 'executedTxn_timestamp_DESC_NULLS_FIRST', + executedTxn_timestamp_DESC_NULLS_LAST = 'executedTxn_timestamp_DESC_NULLS_LAST', + executedTxn_to_ASC = 'executedTxn_to_ASC', + executedTxn_to_ASC_NULLS_FIRST = 'executedTxn_to_ASC_NULLS_FIRST', + executedTxn_to_ASC_NULLS_LAST = 'executedTxn_to_ASC_NULLS_LAST', + executedTxn_to_DESC = 'executedTxn_to_DESC', + executedTxn_to_DESC_NULLS_FIRST = 'executedTxn_to_DESC_NULLS_FIRST', + executedTxn_to_DESC_NULLS_LAST = 'executedTxn_to_DESC_NULLS_LAST', + executedTxn_transactionIndex_ASC = 'executedTxn_transactionIndex_ASC', + executedTxn_transactionIndex_ASC_NULLS_FIRST = 'executedTxn_transactionIndex_ASC_NULLS_FIRST', + executedTxn_transactionIndex_ASC_NULLS_LAST = 'executedTxn_transactionIndex_ASC_NULLS_LAST', + executedTxn_transactionIndex_DESC = 'executedTxn_transactionIndex_DESC', + executedTxn_transactionIndex_DESC_NULLS_FIRST = 'executedTxn_transactionIndex_DESC_NULLS_FIRST', + executedTxn_transactionIndex_DESC_NULLS_LAST = 'executedTxn_transactionIndex_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 enum OrderStatus { - Cancelled = "Cancelled", - Created = "Created", - Executed = "Executed", - Frozen = "Frozen", + 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; + 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; cancelledTxn?: InputMaybe; - cancelledTxn_isNull?: InputMaybe; + cancelledTxn_isNull?: InputMaybe; createdTxn?: InputMaybe; - createdTxn_isNull?: InputMaybe; + createdTxn_isNull?: 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>; executedTxn?: InputMaybe; - executedTxn_isNull?: 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>; + executedTxn_isNull?: 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_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>; + 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"; + __typename?: 'OrdersConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + 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"]; + __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"]; + __typename?: 'PerformanceSnapshotObject'; + snapshotTimestamp: Scalars['String']['output']; + uniswapV2Performance: Scalars['String']['output']; } export interface PerformanceSnapshots { - __typename?: "PerformanceSnapshots"; - address: Scalars["String"]["output"]; - entity: Scalars["String"]["output"]; + __typename?: 'PerformanceSnapshots'; + address: Scalars['String']['output']; + entity: Scalars['String']['output']; snapshots: Array; } export interface PerformanceWhereInput { - addresses?: InputMaybe>; - period: Scalars["String"]["input"]; + 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"]; - startUnrealizedFees: Scalars["BigInt"]["output"]; - startUnrealizedPnl: Scalars["BigInt"]["output"]; - startUnrealizedPriceImpact: Scalars["BigInt"]["output"]; - sumMaxSize: Scalars["BigInt"]["output"]; - volume: Scalars["BigInt"]["output"]; - wins: Scalars["Float"]["output"]; + __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"]; + __typename?: 'PlatformStats'; + depositedUsers: Scalars['Int']['output']; + id: Scalars['String']['output']; + tradedUsers: Scalars['Int']['output']; + volume: Scalars['BigInt']['output']; } export interface PlatformStatsConnection { - __typename?: "PlatformStatsConnection"; + __typename?: 'PlatformStatsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export interface PlatformStatsEdge { - __typename?: "PlatformStatsEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'PlatformStatsEdge'; + cursor: Scalars['String']['output']; node: PlatformStats; } export 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", + 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>; + 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"]; + __typename?: 'PnlAprSnapshot'; + address: Scalars['String']['output']; + apr: Scalars['BigInt']['output']; entityType: EntityType; - id: Scalars["String"]["output"]; - snapshotTimestamp: Scalars["Int"]["output"]; + id: Scalars['String']['output']; + snapshotTimestamp: Scalars['Int']['output']; } export interface PnlAprSnapshotEdge { - __typename?: "PnlAprSnapshotEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'PnlAprSnapshotEdge'; + cursor: Scalars['String']['output']; node: PnlAprSnapshot; } export 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", + 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>; + 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_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>; + 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"; + __typename?: 'PnlAprSnapshotsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export interface Position { - __typename?: "Position"; - account: Scalars["String"]["output"]; + __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"]; - market: Scalars["String"]["output"]; - maxSize: Scalars["BigInt"]["output"]; - openedAt: Scalars["Int"]["output"]; - positionKey: Scalars["String"]["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"]; + 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']; + 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"]; - priceImpactAmount?: Maybe; - priceImpactDiffUsd?: Maybe; - priceImpactUsd: Scalars["BigInt"]["output"]; - proportionalPendingImpactUsd?: Maybe; - sizeDeltaUsd: Scalars["BigInt"]["output"]; - sizeInUsd: Scalars["BigInt"]["output"]; - timestamp: Scalars["Int"]["output"]; - totalImpactUsd?: Maybe; + __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']; + priceImpactAmount?: Maybe; + priceImpactDiffUsd?: Maybe; + priceImpactUsd: Scalars['BigInt']['output']; + proportionalPendingImpactUsd?: Maybe; + sizeDeltaInTokens: Scalars['BigInt']['output']; + sizeDeltaUsd: 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"]; + __typename?: 'PositionChangeEdge'; + cursor: Scalars['String']['output']; node: PositionChange; } export 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", - 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", - 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", - 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", - 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", + 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', + 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', + 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 enum PositionChangeType { - decrease = "decrease", - increase = "increase", + 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>; - 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>; - 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>; - 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>; - 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>; + 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>; + 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>; + 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_isNull?: InputMaybe; type_not_eq?: InputMaybe; type_not_in?: InputMaybe>; } export interface PositionChangesConnection { - __typename?: "PositionChangesConnection"; + __typename?: 'PositionChangesConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export interface PositionEdge { - __typename?: "PositionEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'PositionEdge'; + cursor: Scalars['String']['output']; node: Position; } export interface PositionFeesEntitiesConnection { - __typename?: "PositionFeesEntitiesConnection"; + __typename?: 'PositionFeesEntitiesConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + 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"]; + __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']; transaction: Transaction; type: PositionFeesEntityType; } export interface PositionFeesEntityEdge { - __typename?: "PositionFeesEntityEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'PositionFeesEntityEdge'; + cursor: Scalars['String']['output']; node: PositionFeesEntity; } export 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", - transaction_blockNumber_ASC = "transaction_blockNumber_ASC", - transaction_blockNumber_ASC_NULLS_FIRST = "transaction_blockNumber_ASC_NULLS_FIRST", - transaction_blockNumber_ASC_NULLS_LAST = "transaction_blockNumber_ASC_NULLS_LAST", - transaction_blockNumber_DESC = "transaction_blockNumber_DESC", - transaction_blockNumber_DESC_NULLS_FIRST = "transaction_blockNumber_DESC_NULLS_FIRST", - transaction_blockNumber_DESC_NULLS_LAST = "transaction_blockNumber_DESC_NULLS_LAST", - transaction_chainId_ASC = "transaction_chainId_ASC", - transaction_chainId_ASC_NULLS_FIRST = "transaction_chainId_ASC_NULLS_FIRST", - transaction_chainId_ASC_NULLS_LAST = "transaction_chainId_ASC_NULLS_LAST", - transaction_chainId_DESC = "transaction_chainId_DESC", - transaction_chainId_DESC_NULLS_FIRST = "transaction_chainId_DESC_NULLS_FIRST", - transaction_chainId_DESC_NULLS_LAST = "transaction_chainId_DESC_NULLS_LAST", - transaction_from_ASC = "transaction_from_ASC", - transaction_from_ASC_NULLS_FIRST = "transaction_from_ASC_NULLS_FIRST", - transaction_from_ASC_NULLS_LAST = "transaction_from_ASC_NULLS_LAST", - transaction_from_DESC = "transaction_from_DESC", - transaction_from_DESC_NULLS_FIRST = "transaction_from_DESC_NULLS_FIRST", - transaction_from_DESC_NULLS_LAST = "transaction_from_DESC_NULLS_LAST", - transaction_hash_ASC = "transaction_hash_ASC", - transaction_hash_ASC_NULLS_FIRST = "transaction_hash_ASC_NULLS_FIRST", - transaction_hash_ASC_NULLS_LAST = "transaction_hash_ASC_NULLS_LAST", - transaction_hash_DESC = "transaction_hash_DESC", - transaction_hash_DESC_NULLS_FIRST = "transaction_hash_DESC_NULLS_FIRST", - transaction_hash_DESC_NULLS_LAST = "transaction_hash_DESC_NULLS_LAST", - transaction_id_ASC = "transaction_id_ASC", - transaction_id_ASC_NULLS_FIRST = "transaction_id_ASC_NULLS_FIRST", - transaction_id_ASC_NULLS_LAST = "transaction_id_ASC_NULLS_LAST", - transaction_id_DESC = "transaction_id_DESC", - transaction_id_DESC_NULLS_FIRST = "transaction_id_DESC_NULLS_FIRST", - transaction_id_DESC_NULLS_LAST = "transaction_id_DESC_NULLS_LAST", - transaction_timestamp_ASC = "transaction_timestamp_ASC", - transaction_timestamp_ASC_NULLS_FIRST = "transaction_timestamp_ASC_NULLS_FIRST", - transaction_timestamp_ASC_NULLS_LAST = "transaction_timestamp_ASC_NULLS_LAST", - transaction_timestamp_DESC = "transaction_timestamp_DESC", - transaction_timestamp_DESC_NULLS_FIRST = "transaction_timestamp_DESC_NULLS_FIRST", - transaction_timestamp_DESC_NULLS_LAST = "transaction_timestamp_DESC_NULLS_LAST", - transaction_to_ASC = "transaction_to_ASC", - transaction_to_ASC_NULLS_FIRST = "transaction_to_ASC_NULLS_FIRST", - transaction_to_ASC_NULLS_LAST = "transaction_to_ASC_NULLS_LAST", - transaction_to_DESC = "transaction_to_DESC", - transaction_to_DESC_NULLS_FIRST = "transaction_to_DESC_NULLS_FIRST", - transaction_to_DESC_NULLS_LAST = "transaction_to_DESC_NULLS_LAST", - transaction_transactionIndex_ASC = "transaction_transactionIndex_ASC", - transaction_transactionIndex_ASC_NULLS_FIRST = "transaction_transactionIndex_ASC_NULLS_FIRST", - transaction_transactionIndex_ASC_NULLS_LAST = "transaction_transactionIndex_ASC_NULLS_LAST", - transaction_transactionIndex_DESC = "transaction_transactionIndex_DESC", - transaction_transactionIndex_DESC_NULLS_FIRST = "transaction_transactionIndex_DESC_NULLS_FIRST", - transaction_transactionIndex_DESC_NULLS_LAST = "transaction_transactionIndex_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", + 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', + transaction_blockNumber_ASC = 'transaction_blockNumber_ASC', + transaction_blockNumber_ASC_NULLS_FIRST = 'transaction_blockNumber_ASC_NULLS_FIRST', + transaction_blockNumber_ASC_NULLS_LAST = 'transaction_blockNumber_ASC_NULLS_LAST', + transaction_blockNumber_DESC = 'transaction_blockNumber_DESC', + transaction_blockNumber_DESC_NULLS_FIRST = 'transaction_blockNumber_DESC_NULLS_FIRST', + transaction_blockNumber_DESC_NULLS_LAST = 'transaction_blockNumber_DESC_NULLS_LAST', + transaction_from_ASC = 'transaction_from_ASC', + transaction_from_ASC_NULLS_FIRST = 'transaction_from_ASC_NULLS_FIRST', + transaction_from_ASC_NULLS_LAST = 'transaction_from_ASC_NULLS_LAST', + transaction_from_DESC = 'transaction_from_DESC', + transaction_from_DESC_NULLS_FIRST = 'transaction_from_DESC_NULLS_FIRST', + transaction_from_DESC_NULLS_LAST = 'transaction_from_DESC_NULLS_LAST', + transaction_hash_ASC = 'transaction_hash_ASC', + transaction_hash_ASC_NULLS_FIRST = 'transaction_hash_ASC_NULLS_FIRST', + transaction_hash_ASC_NULLS_LAST = 'transaction_hash_ASC_NULLS_LAST', + transaction_hash_DESC = 'transaction_hash_DESC', + transaction_hash_DESC_NULLS_FIRST = 'transaction_hash_DESC_NULLS_FIRST', + transaction_hash_DESC_NULLS_LAST = 'transaction_hash_DESC_NULLS_LAST', + transaction_id_ASC = 'transaction_id_ASC', + transaction_id_ASC_NULLS_FIRST = 'transaction_id_ASC_NULLS_FIRST', + transaction_id_ASC_NULLS_LAST = 'transaction_id_ASC_NULLS_LAST', + transaction_id_DESC = 'transaction_id_DESC', + transaction_id_DESC_NULLS_FIRST = 'transaction_id_DESC_NULLS_FIRST', + transaction_id_DESC_NULLS_LAST = 'transaction_id_DESC_NULLS_LAST', + transaction_timestamp_ASC = 'transaction_timestamp_ASC', + transaction_timestamp_ASC_NULLS_FIRST = 'transaction_timestamp_ASC_NULLS_FIRST', + transaction_timestamp_ASC_NULLS_LAST = 'transaction_timestamp_ASC_NULLS_LAST', + transaction_timestamp_DESC = 'transaction_timestamp_DESC', + transaction_timestamp_DESC_NULLS_FIRST = 'transaction_timestamp_DESC_NULLS_FIRST', + transaction_timestamp_DESC_NULLS_LAST = 'transaction_timestamp_DESC_NULLS_LAST', + transaction_to_ASC = 'transaction_to_ASC', + transaction_to_ASC_NULLS_FIRST = 'transaction_to_ASC_NULLS_FIRST', + transaction_to_ASC_NULLS_LAST = 'transaction_to_ASC_NULLS_LAST', + transaction_to_DESC = 'transaction_to_DESC', + transaction_to_DESC_NULLS_FIRST = 'transaction_to_DESC_NULLS_FIRST', + transaction_to_DESC_NULLS_LAST = 'transaction_to_DESC_NULLS_LAST', + transaction_transactionIndex_ASC = 'transaction_transactionIndex_ASC', + transaction_transactionIndex_ASC_NULLS_FIRST = 'transaction_transactionIndex_ASC_NULLS_FIRST', + transaction_transactionIndex_ASC_NULLS_LAST = 'transaction_transactionIndex_ASC_NULLS_LAST', + transaction_transactionIndex_DESC = 'transaction_transactionIndex_DESC', + transaction_transactionIndex_DESC_NULLS_FIRST = 'transaction_transactionIndex_DESC_NULLS_FIRST', + transaction_transactionIndex_DESC_NULLS_LAST = 'transaction_transactionIndex_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 enum PositionFeesEntityType { - PositionFeesCollected = "PositionFeesCollected", - PositionFeesInfo = "PositionFeesInfo", + 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; + 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; transaction?: InputMaybe; - transaction_isNull?: InputMaybe; + transaction_isNull?: InputMaybe; type_eq?: InputMaybe; type_in?: InputMaybe>; - type_isNull?: InputMaybe; + type_isNull?: InputMaybe; type_not_eq?: InputMaybe; type_not_in?: InputMaybe>; } export interface PositionMarketVolumeInfo { - __typename?: "PositionMarketVolumeInfo"; - market: Scalars["String"]["output"]; - volume: Scalars["BigInt"]["output"]; + __typename?: 'PositionMarketVolumeInfo'; + market: Scalars['String']['output']; + volume: Scalars['BigInt']['output']; } export enum PositionOrderByInput { - 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_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_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_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_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", - 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", - 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", - 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", + 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_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_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_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', + 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"]; + __typename?: 'PositionTotalCollateralAmount'; + amount: Scalars['BigInt']['output']; + token: Scalars['String']['output']; } export interface PositionTotalCollateralAmountWhereInput { - marketAddress?: InputMaybe; + marketAddress?: InputMaybe; } export interface PositionVolumeByAllMarketsWhereInput { - timestamp: Scalars["Float"]["input"]; -} - -export interface PositionVolumeWhereInput { - marketAddress?: InputMaybe; - timestamp: Scalars["Float"]["input"]; + period?: InputMaybe; + timestamp?: InputMaybe; } 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; - 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>; - 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; - 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>; + 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; + 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"; + __typename?: 'PositionsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + 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"]; + __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"]; + __typename?: 'PriceEdge'; + cursor: Scalars['String']['output']; node: Price; } export 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", + 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 enum PriceType { - glv = "glv", - gm = "gm", - onchainFeed = "onchainFeed", - v2 = "v2", + 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; + 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_isNull?: InputMaybe; type_not_eq?: InputMaybe; type_not_in?: InputMaybe>; } export interface PricesConnection { - __typename?: "PricesConnection"; + __typename?: 'PricesConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + 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"]; + __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"]; + __typename?: 'ProcessorStatusEdge'; + cursor: Scalars['String']['output']; node: ProcessorStatus; } export 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", + 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>; + 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"; + __typename?: 'ProcessorStatusesConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export interface Query { - __typename?: "Query"; + __typename?: 'Query'; accountPnlHistoryStats: Array; accountPnlSummaryStats: Array; accountStatById?: Maybe; @@ -7274,6 +7410,9 @@ export interface Query { claimRefById?: Maybe; claimRefs: Array; claimRefsConnection: ClaimRefsConnection; + claimableAmountById?: Maybe; + claimableAmounts: Array; + claimableAmountsConnection: ClaimableAmountsConnection; claimableCollateralById?: Maybe; claimableCollateralGroupById?: Maybe; claimableCollateralGroups: Array; @@ -7343,7 +7482,6 @@ export interface Query { positions: Array; positionsConnection: PositionsConnection; positionsVolume: Array; - positionsVolume24hByMarket: Scalars["BigInt"]["output"]; priceById?: Maybe; prices: Array; pricesConnection: PricesConnection; @@ -7354,7 +7492,7 @@ export interface Query { swapInfoById?: Maybe; swapInfos: Array; swapInfosConnection: SwapInfosConnection; - totalPositionChanges: Scalars["Float"]["output"]; + totalPositionChanges: Scalars['Float']['output']; tradeActionById?: Maybe; tradeActions: Array; tradeActionsConnection: TradeActionsConnection; @@ -7363,1884 +7501,2039 @@ export interface Query { transactionsConnection: TransactionsConnection; } + export interface QueryaccountPnlHistoryStatsArgs { - account: Scalars["String"]["input"]; - from?: InputMaybe; + account: Scalars['String']['input']; + from?: InputMaybe; } + export interface QueryaccountPnlSummaryStatsArgs { - account: Scalars["String"]["input"]; + account: Scalars['String']['input']; } + export interface QueryaccountStatByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QueryaccountStatsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QueryaccountStatsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QueryannualizedPerformanceArgs { where?: InputMaybe; } + export interface QueryaprSnapshotByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QueryaprSnapshotsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QueryaprSnapshotsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QueryborrowingRateSnapshotByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QueryborrowingRateSnapshotsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QueryborrowingRateSnapshotsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QueryclaimActionByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QueryclaimActionsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QueryclaimActionsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QueryclaimRefByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QueryclaimRefsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QueryclaimRefsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + 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"]; + id: Scalars['String']['input']; } + export interface QueryclaimableCollateralGroupByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QueryclaimableCollateralGroupsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QueryclaimableCollateralGroupsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QueryclaimableCollateralsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QueryclaimableCollateralsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QueryclaimableFundingFeeInfoByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QueryclaimableFundingFeeInfosArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QueryclaimableFundingFeeInfosConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QuerycollectedFeesInfoByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerycollectedFeesInfosArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerycollectedFeesInfosConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QuerycumulativePnlByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerycumulativePnlsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerycumulativePnlsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QuerycumulativePoolValueByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerycumulativePoolValuesArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerycumulativePoolValuesConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QuerydistributionByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerydistributionsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerydistributionsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QueryglvByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QueryglvsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QueryglvsAprByPeriodArgs { where?: InputMaybe; } + export interface QueryglvsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QueryglvsPnlAprByPeriodArgs { where?: InputMaybe; } + export interface QuerymarketByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerymarketInfoByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerymarketInfosArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerymarketInfosConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QuerymarketsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerymarketsAprByPeriodArgs { where?: InputMaybe; } + export interface QuerymarketsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QuerymarketsPnlAprByPeriodArgs { where?: InputMaybe; } + export interface QuerymultichainFundingArgs { where?: InputMaybe; } + export interface QuerymultichainFundingReceiveEventByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerymultichainFundingReceiveEventsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerymultichainFundingReceiveEventsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QuerymultichainFundingSendEventByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerymultichainFundingSendEventsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerymultichainFundingSendEventsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QuerymultichainMetadataArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerymultichainMetadataByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerymultichainMetadataConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QueryonChainSettingByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QueryonChainSettingsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QueryonChainSettingsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QueryorderByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QueryordersArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QueryordersConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QueryperformanceSnapshotsArgs { where?: InputMaybe; } + export interface QueryperiodAccountStatsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; where?: InputMaybe; } + export interface QueryplatformStatsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QueryplatformStatsByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QueryplatformStatsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QuerypnlAprSnapshotByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerypnlAprSnapshotsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerypnlAprSnapshotsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QuerypositionByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerypositionChangeByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerypositionChangesArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerypositionChangesConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QuerypositionFeesEntitiesArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerypositionFeesEntitiesConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QuerypositionFeesEntityByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerypositionTotalCollateralAmountArgs { where?: InputMaybe; } + export interface QuerypositionsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerypositionsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QuerypositionsVolumeArgs { where?: InputMaybe; } -export interface QuerypositionsVolume24hByMarketArgs { - where?: InputMaybe; -} export interface QuerypriceByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerypricesArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerypricesConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QueryprocessorStatusByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QueryprocessorStatusesArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QueryprocessorStatusesConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QueryswapInfoByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QueryswapInfosArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QueryswapInfosConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QuerytradeActionByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerytradeActionsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerytradeActionsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } + export interface QuerytransactionByIdArgs { - id: Scalars["String"]["input"]; + id: Scalars['String']['input']; } + export interface QuerytransactionsArgs { - limit?: InputMaybe; - offset?: InputMaybe; + limit?: InputMaybe; + offset?: InputMaybe; orderBy?: InputMaybe>; where?: InputMaybe; } + export interface QuerytransactionsConnectionArgs { - after?: InputMaybe; - first?: InputMaybe; + after?: InputMaybe; + first?: InputMaybe; orderBy: Array; where?: InputMaybe; } export interface SquidStatus { - __typename?: "SquidStatus"; - finalizedHeight: Scalars["Float"]["output"]; - height: Scalars["Float"]["output"]; + __typename?: 'SquidStatus'; + finalizedHeight: Scalars['Float']['output']; + height: Scalars['Float']['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"]; + __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']; transaction: Transaction; } export interface SwapInfoEdge { - __typename?: "SwapInfoEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'SwapInfoEdge'; + cursor: Scalars['String']['output']; node: SwapInfo; } export 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", - transaction_blockNumber_ASC = "transaction_blockNumber_ASC", - transaction_blockNumber_ASC_NULLS_FIRST = "transaction_blockNumber_ASC_NULLS_FIRST", - transaction_blockNumber_ASC_NULLS_LAST = "transaction_blockNumber_ASC_NULLS_LAST", - transaction_blockNumber_DESC = "transaction_blockNumber_DESC", - transaction_blockNumber_DESC_NULLS_FIRST = "transaction_blockNumber_DESC_NULLS_FIRST", - transaction_blockNumber_DESC_NULLS_LAST = "transaction_blockNumber_DESC_NULLS_LAST", - transaction_chainId_ASC = "transaction_chainId_ASC", - transaction_chainId_ASC_NULLS_FIRST = "transaction_chainId_ASC_NULLS_FIRST", - transaction_chainId_ASC_NULLS_LAST = "transaction_chainId_ASC_NULLS_LAST", - transaction_chainId_DESC = "transaction_chainId_DESC", - transaction_chainId_DESC_NULLS_FIRST = "transaction_chainId_DESC_NULLS_FIRST", - transaction_chainId_DESC_NULLS_LAST = "transaction_chainId_DESC_NULLS_LAST", - transaction_from_ASC = "transaction_from_ASC", - transaction_from_ASC_NULLS_FIRST = "transaction_from_ASC_NULLS_FIRST", - transaction_from_ASC_NULLS_LAST = "transaction_from_ASC_NULLS_LAST", - transaction_from_DESC = "transaction_from_DESC", - transaction_from_DESC_NULLS_FIRST = "transaction_from_DESC_NULLS_FIRST", - transaction_from_DESC_NULLS_LAST = "transaction_from_DESC_NULLS_LAST", - transaction_hash_ASC = "transaction_hash_ASC", - transaction_hash_ASC_NULLS_FIRST = "transaction_hash_ASC_NULLS_FIRST", - transaction_hash_ASC_NULLS_LAST = "transaction_hash_ASC_NULLS_LAST", - transaction_hash_DESC = "transaction_hash_DESC", - transaction_hash_DESC_NULLS_FIRST = "transaction_hash_DESC_NULLS_FIRST", - transaction_hash_DESC_NULLS_LAST = "transaction_hash_DESC_NULLS_LAST", - transaction_id_ASC = "transaction_id_ASC", - transaction_id_ASC_NULLS_FIRST = "transaction_id_ASC_NULLS_FIRST", - transaction_id_ASC_NULLS_LAST = "transaction_id_ASC_NULLS_LAST", - transaction_id_DESC = "transaction_id_DESC", - transaction_id_DESC_NULLS_FIRST = "transaction_id_DESC_NULLS_FIRST", - transaction_id_DESC_NULLS_LAST = "transaction_id_DESC_NULLS_LAST", - transaction_timestamp_ASC = "transaction_timestamp_ASC", - transaction_timestamp_ASC_NULLS_FIRST = "transaction_timestamp_ASC_NULLS_FIRST", - transaction_timestamp_ASC_NULLS_LAST = "transaction_timestamp_ASC_NULLS_LAST", - transaction_timestamp_DESC = "transaction_timestamp_DESC", - transaction_timestamp_DESC_NULLS_FIRST = "transaction_timestamp_DESC_NULLS_FIRST", - transaction_timestamp_DESC_NULLS_LAST = "transaction_timestamp_DESC_NULLS_LAST", - transaction_to_ASC = "transaction_to_ASC", - transaction_to_ASC_NULLS_FIRST = "transaction_to_ASC_NULLS_FIRST", - transaction_to_ASC_NULLS_LAST = "transaction_to_ASC_NULLS_LAST", - transaction_to_DESC = "transaction_to_DESC", - transaction_to_DESC_NULLS_FIRST = "transaction_to_DESC_NULLS_FIRST", - transaction_to_DESC_NULLS_LAST = "transaction_to_DESC_NULLS_LAST", - transaction_transactionIndex_ASC = "transaction_transactionIndex_ASC", - transaction_transactionIndex_ASC_NULLS_FIRST = "transaction_transactionIndex_ASC_NULLS_FIRST", - transaction_transactionIndex_ASC_NULLS_LAST = "transaction_transactionIndex_ASC_NULLS_LAST", - transaction_transactionIndex_DESC = "transaction_transactionIndex_DESC", - transaction_transactionIndex_DESC_NULLS_FIRST = "transaction_transactionIndex_DESC_NULLS_FIRST", - transaction_transactionIndex_DESC_NULLS_LAST = "transaction_transactionIndex_DESC_NULLS_LAST", + 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', + transaction_blockNumber_ASC = 'transaction_blockNumber_ASC', + transaction_blockNumber_ASC_NULLS_FIRST = 'transaction_blockNumber_ASC_NULLS_FIRST', + transaction_blockNumber_ASC_NULLS_LAST = 'transaction_blockNumber_ASC_NULLS_LAST', + transaction_blockNumber_DESC = 'transaction_blockNumber_DESC', + transaction_blockNumber_DESC_NULLS_FIRST = 'transaction_blockNumber_DESC_NULLS_FIRST', + transaction_blockNumber_DESC_NULLS_LAST = 'transaction_blockNumber_DESC_NULLS_LAST', + transaction_from_ASC = 'transaction_from_ASC', + transaction_from_ASC_NULLS_FIRST = 'transaction_from_ASC_NULLS_FIRST', + transaction_from_ASC_NULLS_LAST = 'transaction_from_ASC_NULLS_LAST', + transaction_from_DESC = 'transaction_from_DESC', + transaction_from_DESC_NULLS_FIRST = 'transaction_from_DESC_NULLS_FIRST', + transaction_from_DESC_NULLS_LAST = 'transaction_from_DESC_NULLS_LAST', + transaction_hash_ASC = 'transaction_hash_ASC', + transaction_hash_ASC_NULLS_FIRST = 'transaction_hash_ASC_NULLS_FIRST', + transaction_hash_ASC_NULLS_LAST = 'transaction_hash_ASC_NULLS_LAST', + transaction_hash_DESC = 'transaction_hash_DESC', + transaction_hash_DESC_NULLS_FIRST = 'transaction_hash_DESC_NULLS_FIRST', + transaction_hash_DESC_NULLS_LAST = 'transaction_hash_DESC_NULLS_LAST', + transaction_id_ASC = 'transaction_id_ASC', + transaction_id_ASC_NULLS_FIRST = 'transaction_id_ASC_NULLS_FIRST', + transaction_id_ASC_NULLS_LAST = 'transaction_id_ASC_NULLS_LAST', + transaction_id_DESC = 'transaction_id_DESC', + transaction_id_DESC_NULLS_FIRST = 'transaction_id_DESC_NULLS_FIRST', + transaction_id_DESC_NULLS_LAST = 'transaction_id_DESC_NULLS_LAST', + transaction_timestamp_ASC = 'transaction_timestamp_ASC', + transaction_timestamp_ASC_NULLS_FIRST = 'transaction_timestamp_ASC_NULLS_FIRST', + transaction_timestamp_ASC_NULLS_LAST = 'transaction_timestamp_ASC_NULLS_LAST', + transaction_timestamp_DESC = 'transaction_timestamp_DESC', + transaction_timestamp_DESC_NULLS_FIRST = 'transaction_timestamp_DESC_NULLS_FIRST', + transaction_timestamp_DESC_NULLS_LAST = 'transaction_timestamp_DESC_NULLS_LAST', + transaction_to_ASC = 'transaction_to_ASC', + transaction_to_ASC_NULLS_FIRST = 'transaction_to_ASC_NULLS_FIRST', + transaction_to_ASC_NULLS_LAST = 'transaction_to_ASC_NULLS_LAST', + transaction_to_DESC = 'transaction_to_DESC', + transaction_to_DESC_NULLS_FIRST = 'transaction_to_DESC_NULLS_FIRST', + transaction_to_DESC_NULLS_LAST = 'transaction_to_DESC_NULLS_LAST', + transaction_transactionIndex_ASC = 'transaction_transactionIndex_ASC', + transaction_transactionIndex_ASC_NULLS_FIRST = 'transaction_transactionIndex_ASC_NULLS_FIRST', + transaction_transactionIndex_ASC_NULLS_LAST = 'transaction_transactionIndex_ASC_NULLS_LAST', + transaction_transactionIndex_DESC = 'transaction_transactionIndex_DESC', + transaction_transactionIndex_DESC_NULLS_FIRST = 'transaction_transactionIndex_DESC_NULLS_FIRST', + transaction_transactionIndex_DESC_NULLS_LAST = 'transaction_transactionIndex_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>; + 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>; transaction?: InputMaybe; - transaction_isNull?: InputMaybe; + transaction_isNull?: InputMaybe; } export interface SwapInfosConnection { - __typename?: "SwapInfosConnection"; + __typename?: 'SwapInfosConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export interface TradeAction { - __typename?: "TradeAction"; - acceptablePrice?: Maybe; - account: Scalars["String"]["output"]; - basePnlUsd?: Maybe; - borrowingFeeAmount?: Maybe; - collateralTokenPriceMax?: Maybe; - collateralTokenPriceMin?: Maybe; - contractTriggerPrice?: 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; - sizeDeltaUsd?: Maybe; - srcChainId?: Maybe; - swapPath: Array; - timestamp: Scalars["Int"]["output"]; - totalImpactUsd?: Maybe; + __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; transaction: Transaction; - triggerPrice?: Maybe; - twapGroupId?: Maybe; - uiFeeReceiver: Scalars["String"]["output"]; + triggerPrice?: Maybe; + twapGroupId?: Maybe; + uiFeeReceiver: Scalars['String']['output']; } export interface TradeActionEdge { - __typename?: "TradeActionEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'TradeActionEdge'; + cursor: Scalars['String']['output']; node: TradeAction; } export 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", - 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", - 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", - 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", - 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", - transaction_blockNumber_ASC = "transaction_blockNumber_ASC", - transaction_blockNumber_ASC_NULLS_FIRST = "transaction_blockNumber_ASC_NULLS_FIRST", - transaction_blockNumber_ASC_NULLS_LAST = "transaction_blockNumber_ASC_NULLS_LAST", - transaction_blockNumber_DESC = "transaction_blockNumber_DESC", - transaction_blockNumber_DESC_NULLS_FIRST = "transaction_blockNumber_DESC_NULLS_FIRST", - transaction_blockNumber_DESC_NULLS_LAST = "transaction_blockNumber_DESC_NULLS_LAST", - transaction_chainId_ASC = "transaction_chainId_ASC", - transaction_chainId_ASC_NULLS_FIRST = "transaction_chainId_ASC_NULLS_FIRST", - transaction_chainId_ASC_NULLS_LAST = "transaction_chainId_ASC_NULLS_LAST", - transaction_chainId_DESC = "transaction_chainId_DESC", - transaction_chainId_DESC_NULLS_FIRST = "transaction_chainId_DESC_NULLS_FIRST", - transaction_chainId_DESC_NULLS_LAST = "transaction_chainId_DESC_NULLS_LAST", - transaction_from_ASC = "transaction_from_ASC", - transaction_from_ASC_NULLS_FIRST = "transaction_from_ASC_NULLS_FIRST", - transaction_from_ASC_NULLS_LAST = "transaction_from_ASC_NULLS_LAST", - transaction_from_DESC = "transaction_from_DESC", - transaction_from_DESC_NULLS_FIRST = "transaction_from_DESC_NULLS_FIRST", - transaction_from_DESC_NULLS_LAST = "transaction_from_DESC_NULLS_LAST", - transaction_hash_ASC = "transaction_hash_ASC", - transaction_hash_ASC_NULLS_FIRST = "transaction_hash_ASC_NULLS_FIRST", - transaction_hash_ASC_NULLS_LAST = "transaction_hash_ASC_NULLS_LAST", - transaction_hash_DESC = "transaction_hash_DESC", - transaction_hash_DESC_NULLS_FIRST = "transaction_hash_DESC_NULLS_FIRST", - transaction_hash_DESC_NULLS_LAST = "transaction_hash_DESC_NULLS_LAST", - transaction_id_ASC = "transaction_id_ASC", - transaction_id_ASC_NULLS_FIRST = "transaction_id_ASC_NULLS_FIRST", - transaction_id_ASC_NULLS_LAST = "transaction_id_ASC_NULLS_LAST", - transaction_id_DESC = "transaction_id_DESC", - transaction_id_DESC_NULLS_FIRST = "transaction_id_DESC_NULLS_FIRST", - transaction_id_DESC_NULLS_LAST = "transaction_id_DESC_NULLS_LAST", - transaction_timestamp_ASC = "transaction_timestamp_ASC", - transaction_timestamp_ASC_NULLS_FIRST = "transaction_timestamp_ASC_NULLS_FIRST", - transaction_timestamp_ASC_NULLS_LAST = "transaction_timestamp_ASC_NULLS_LAST", - transaction_timestamp_DESC = "transaction_timestamp_DESC", - transaction_timestamp_DESC_NULLS_FIRST = "transaction_timestamp_DESC_NULLS_FIRST", - transaction_timestamp_DESC_NULLS_LAST = "transaction_timestamp_DESC_NULLS_LAST", - transaction_to_ASC = "transaction_to_ASC", - transaction_to_ASC_NULLS_FIRST = "transaction_to_ASC_NULLS_FIRST", - transaction_to_ASC_NULLS_LAST = "transaction_to_ASC_NULLS_LAST", - transaction_to_DESC = "transaction_to_DESC", - transaction_to_DESC_NULLS_FIRST = "transaction_to_DESC_NULLS_FIRST", - transaction_to_DESC_NULLS_LAST = "transaction_to_DESC_NULLS_LAST", - transaction_transactionIndex_ASC = "transaction_transactionIndex_ASC", - transaction_transactionIndex_ASC_NULLS_FIRST = "transaction_transactionIndex_ASC_NULLS_FIRST", - transaction_transactionIndex_ASC_NULLS_LAST = "transaction_transactionIndex_ASC_NULLS_LAST", - transaction_transactionIndex_DESC = "transaction_transactionIndex_DESC", - transaction_transactionIndex_DESC_NULLS_FIRST = "transaction_transactionIndex_DESC_NULLS_FIRST", - transaction_transactionIndex_DESC_NULLS_LAST = "transaction_transactionIndex_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", + 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', + transaction_blockNumber_ASC = 'transaction_blockNumber_ASC', + transaction_blockNumber_ASC_NULLS_FIRST = 'transaction_blockNumber_ASC_NULLS_FIRST', + transaction_blockNumber_ASC_NULLS_LAST = 'transaction_blockNumber_ASC_NULLS_LAST', + transaction_blockNumber_DESC = 'transaction_blockNumber_DESC', + transaction_blockNumber_DESC_NULLS_FIRST = 'transaction_blockNumber_DESC_NULLS_FIRST', + transaction_blockNumber_DESC_NULLS_LAST = 'transaction_blockNumber_DESC_NULLS_LAST', + transaction_from_ASC = 'transaction_from_ASC', + transaction_from_ASC_NULLS_FIRST = 'transaction_from_ASC_NULLS_FIRST', + transaction_from_ASC_NULLS_LAST = 'transaction_from_ASC_NULLS_LAST', + transaction_from_DESC = 'transaction_from_DESC', + transaction_from_DESC_NULLS_FIRST = 'transaction_from_DESC_NULLS_FIRST', + transaction_from_DESC_NULLS_LAST = 'transaction_from_DESC_NULLS_LAST', + transaction_hash_ASC = 'transaction_hash_ASC', + transaction_hash_ASC_NULLS_FIRST = 'transaction_hash_ASC_NULLS_FIRST', + transaction_hash_ASC_NULLS_LAST = 'transaction_hash_ASC_NULLS_LAST', + transaction_hash_DESC = 'transaction_hash_DESC', + transaction_hash_DESC_NULLS_FIRST = 'transaction_hash_DESC_NULLS_FIRST', + transaction_hash_DESC_NULLS_LAST = 'transaction_hash_DESC_NULLS_LAST', + transaction_id_ASC = 'transaction_id_ASC', + transaction_id_ASC_NULLS_FIRST = 'transaction_id_ASC_NULLS_FIRST', + transaction_id_ASC_NULLS_LAST = 'transaction_id_ASC_NULLS_LAST', + transaction_id_DESC = 'transaction_id_DESC', + transaction_id_DESC_NULLS_FIRST = 'transaction_id_DESC_NULLS_FIRST', + transaction_id_DESC_NULLS_LAST = 'transaction_id_DESC_NULLS_LAST', + transaction_timestamp_ASC = 'transaction_timestamp_ASC', + transaction_timestamp_ASC_NULLS_FIRST = 'transaction_timestamp_ASC_NULLS_FIRST', + transaction_timestamp_ASC_NULLS_LAST = 'transaction_timestamp_ASC_NULLS_LAST', + transaction_timestamp_DESC = 'transaction_timestamp_DESC', + transaction_timestamp_DESC_NULLS_FIRST = 'transaction_timestamp_DESC_NULLS_FIRST', + transaction_timestamp_DESC_NULLS_LAST = 'transaction_timestamp_DESC_NULLS_LAST', + transaction_to_ASC = 'transaction_to_ASC', + transaction_to_ASC_NULLS_FIRST = 'transaction_to_ASC_NULLS_FIRST', + transaction_to_ASC_NULLS_LAST = 'transaction_to_ASC_NULLS_LAST', + transaction_to_DESC = 'transaction_to_DESC', + transaction_to_DESC_NULLS_FIRST = 'transaction_to_DESC_NULLS_FIRST', + transaction_to_DESC_NULLS_LAST = 'transaction_to_DESC_NULLS_LAST', + transaction_transactionIndex_ASC = 'transaction_transactionIndex_ASC', + transaction_transactionIndex_ASC_NULLS_FIRST = 'transaction_transactionIndex_ASC_NULLS_FIRST', + transaction_transactionIndex_ASC_NULLS_LAST = 'transaction_transactionIndex_ASC_NULLS_LAST', + transaction_transactionIndex_DESC = 'transaction_transactionIndex_DESC', + transaction_transactionIndex_DESC_NULLS_FIRST = 'transaction_transactionIndex_DESC_NULLS_FIRST', + transaction_transactionIndex_DESC_NULLS_LAST = 'transaction_transactionIndex_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>; - 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>; - 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; - 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>; - 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>; + 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>; transaction?: InputMaybe; - transaction_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; + transaction_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; } export interface TradeActionsConnection { - __typename?: "TradeActionsConnection"; + __typename?: 'TradeActionsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export interface Transaction { - __typename?: "Transaction"; - blockNumber: Scalars["Int"]["output"]; - chainId: Scalars["Int"]["output"]; - from: Scalars["String"]["output"]; - hash: Scalars["String"]["output"]; - id: Scalars["String"]["output"]; - timestamp: Scalars["Int"]["output"]; - to: Scalars["String"]["output"]; - transactionIndex: Scalars["Int"]["output"]; + __typename?: 'Transaction'; + blockNumber: Scalars['Int']['output']; + from: Scalars['String']['output']; + hash: Scalars['String']['output']; + id: Scalars['String']['output']; + timestamp: Scalars['Int']['output']; + to: Scalars['String']['output']; + transactionIndex: Scalars['Int']['output']; } export interface TransactionEdge { - __typename?: "TransactionEdge"; - cursor: Scalars["String"]["output"]; + __typename?: 'TransactionEdge'; + cursor: Scalars['String']['output']; node: Transaction; } export enum TransactionOrderByInput { - blockNumber_ASC = "blockNumber_ASC", - blockNumber_ASC_NULLS_FIRST = "blockNumber_ASC_NULLS_FIRST", - blockNumber_ASC_NULLS_LAST = "blockNumber_ASC_NULLS_LAST", - blockNumber_DESC = "blockNumber_DESC", - blockNumber_DESC_NULLS_FIRST = "blockNumber_DESC_NULLS_FIRST", - blockNumber_DESC_NULLS_LAST = "blockNumber_DESC_NULLS_LAST", - chainId_ASC = "chainId_ASC", - chainId_ASC_NULLS_FIRST = "chainId_ASC_NULLS_FIRST", - chainId_ASC_NULLS_LAST = "chainId_ASC_NULLS_LAST", - chainId_DESC = "chainId_DESC", - chainId_DESC_NULLS_FIRST = "chainId_DESC_NULLS_FIRST", - chainId_DESC_NULLS_LAST = "chainId_DESC_NULLS_LAST", - from_ASC = "from_ASC", - from_ASC_NULLS_FIRST = "from_ASC_NULLS_FIRST", - from_ASC_NULLS_LAST = "from_ASC_NULLS_LAST", - from_DESC = "from_DESC", - from_DESC_NULLS_FIRST = "from_DESC_NULLS_FIRST", - from_DESC_NULLS_LAST = "from_DESC_NULLS_LAST", - hash_ASC = "hash_ASC", - hash_ASC_NULLS_FIRST = "hash_ASC_NULLS_FIRST", - hash_ASC_NULLS_LAST = "hash_ASC_NULLS_LAST", - hash_DESC = "hash_DESC", - hash_DESC_NULLS_FIRST = "hash_DESC_NULLS_FIRST", - hash_DESC_NULLS_LAST = "hash_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", - to_ASC = "to_ASC", - to_ASC_NULLS_FIRST = "to_ASC_NULLS_FIRST", - to_ASC_NULLS_LAST = "to_ASC_NULLS_LAST", - to_DESC = "to_DESC", - to_DESC_NULLS_FIRST = "to_DESC_NULLS_FIRST", - to_DESC_NULLS_LAST = "to_DESC_NULLS_LAST", - transactionIndex_ASC = "transactionIndex_ASC", - transactionIndex_ASC_NULLS_FIRST = "transactionIndex_ASC_NULLS_FIRST", - transactionIndex_ASC_NULLS_LAST = "transactionIndex_ASC_NULLS_LAST", - transactionIndex_DESC = "transactionIndex_DESC", - transactionIndex_DESC_NULLS_FIRST = "transactionIndex_DESC_NULLS_FIRST", - transactionIndex_DESC_NULLS_LAST = "transactionIndex_DESC_NULLS_LAST", + blockNumber_ASC = 'blockNumber_ASC', + blockNumber_ASC_NULLS_FIRST = 'blockNumber_ASC_NULLS_FIRST', + blockNumber_ASC_NULLS_LAST = 'blockNumber_ASC_NULLS_LAST', + blockNumber_DESC = 'blockNumber_DESC', + blockNumber_DESC_NULLS_FIRST = 'blockNumber_DESC_NULLS_FIRST', + blockNumber_DESC_NULLS_LAST = 'blockNumber_DESC_NULLS_LAST', + from_ASC = 'from_ASC', + from_ASC_NULLS_FIRST = 'from_ASC_NULLS_FIRST', + from_ASC_NULLS_LAST = 'from_ASC_NULLS_LAST', + from_DESC = 'from_DESC', + from_DESC_NULLS_FIRST = 'from_DESC_NULLS_FIRST', + from_DESC_NULLS_LAST = 'from_DESC_NULLS_LAST', + hash_ASC = 'hash_ASC', + hash_ASC_NULLS_FIRST = 'hash_ASC_NULLS_FIRST', + hash_ASC_NULLS_LAST = 'hash_ASC_NULLS_LAST', + hash_DESC = 'hash_DESC', + hash_DESC_NULLS_FIRST = 'hash_DESC_NULLS_FIRST', + hash_DESC_NULLS_LAST = 'hash_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', + to_ASC = 'to_ASC', + to_ASC_NULLS_FIRST = 'to_ASC_NULLS_FIRST', + to_ASC_NULLS_LAST = 'to_ASC_NULLS_LAST', + to_DESC = 'to_DESC', + to_DESC_NULLS_FIRST = 'to_DESC_NULLS_FIRST', + to_DESC_NULLS_LAST = 'to_DESC_NULLS_LAST', + transactionIndex_ASC = 'transactionIndex_ASC', + transactionIndex_ASC_NULLS_FIRST = 'transactionIndex_ASC_NULLS_FIRST', + transactionIndex_ASC_NULLS_LAST = 'transactionIndex_ASC_NULLS_LAST', + transactionIndex_DESC = 'transactionIndex_DESC', + transactionIndex_DESC_NULLS_FIRST = 'transactionIndex_DESC_NULLS_FIRST', + transactionIndex_DESC_NULLS_LAST = 'transactionIndex_DESC_NULLS_LAST' } export interface TransactionWhereInput { AND?: InputMaybe>; OR?: InputMaybe>; - blockNumber_eq?: InputMaybe; - blockNumber_gt?: InputMaybe; - blockNumber_gte?: InputMaybe; - blockNumber_in?: InputMaybe>; - blockNumber_isNull?: InputMaybe; - blockNumber_lt?: InputMaybe; - blockNumber_lte?: InputMaybe; - blockNumber_not_eq?: InputMaybe; - blockNumber_not_in?: InputMaybe>; - chainId_eq?: InputMaybe; - chainId_gt?: InputMaybe; - chainId_gte?: InputMaybe; - chainId_in?: InputMaybe>; - chainId_isNull?: InputMaybe; - chainId_lt?: InputMaybe; - chainId_lte?: InputMaybe; - chainId_not_eq?: InputMaybe; - chainId_not_in?: InputMaybe>; - from_contains?: InputMaybe; - from_containsInsensitive?: InputMaybe; - from_endsWith?: InputMaybe; - from_eq?: InputMaybe; - from_gt?: InputMaybe; - from_gte?: InputMaybe; - from_in?: InputMaybe>; - from_isNull?: InputMaybe; - from_lt?: InputMaybe; - from_lte?: InputMaybe; - from_not_contains?: InputMaybe; - from_not_containsInsensitive?: InputMaybe; - from_not_endsWith?: InputMaybe; - from_not_eq?: InputMaybe; - from_not_in?: InputMaybe>; - from_not_startsWith?: InputMaybe; - from_startsWith?: InputMaybe; - hash_contains?: InputMaybe; - hash_containsInsensitive?: InputMaybe; - hash_endsWith?: InputMaybe; - hash_eq?: InputMaybe; - hash_gt?: InputMaybe; - hash_gte?: InputMaybe; - hash_in?: InputMaybe>; - hash_isNull?: InputMaybe; - hash_lt?: InputMaybe; - hash_lte?: InputMaybe; - hash_not_contains?: InputMaybe; - hash_not_containsInsensitive?: InputMaybe; - hash_not_endsWith?: InputMaybe; - hash_not_eq?: InputMaybe; - hash_not_in?: InputMaybe>; - hash_not_startsWith?: InputMaybe; - hash_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>; - to_contains?: InputMaybe; - to_containsInsensitive?: InputMaybe; - to_endsWith?: InputMaybe; - to_eq?: InputMaybe; - to_gt?: InputMaybe; - to_gte?: InputMaybe; - to_in?: InputMaybe>; - to_isNull?: InputMaybe; - to_lt?: InputMaybe; - to_lte?: InputMaybe; - to_not_contains?: InputMaybe; - to_not_containsInsensitive?: InputMaybe; - to_not_endsWith?: InputMaybe; - to_not_eq?: InputMaybe; - to_not_in?: InputMaybe>; - to_not_startsWith?: InputMaybe; - to_startsWith?: InputMaybe; - transactionIndex_eq?: InputMaybe; - transactionIndex_gt?: InputMaybe; - transactionIndex_gte?: InputMaybe; - transactionIndex_in?: InputMaybe>; - transactionIndex_isNull?: InputMaybe; - transactionIndex_lt?: InputMaybe; - transactionIndex_lte?: InputMaybe; - transactionIndex_not_eq?: InputMaybe; - transactionIndex_not_in?: InputMaybe>; + blockNumber_eq?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_isNull?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_not_eq?: InputMaybe; + blockNumber_not_in?: InputMaybe>; + from_contains?: InputMaybe; + from_containsInsensitive?: InputMaybe; + from_endsWith?: InputMaybe; + from_eq?: InputMaybe; + from_gt?: InputMaybe; + from_gte?: InputMaybe; + from_in?: InputMaybe>; + from_isNull?: InputMaybe; + from_lt?: InputMaybe; + from_lte?: InputMaybe; + from_not_contains?: InputMaybe; + from_not_containsInsensitive?: InputMaybe; + from_not_endsWith?: InputMaybe; + from_not_eq?: InputMaybe; + from_not_in?: InputMaybe>; + from_not_startsWith?: InputMaybe; + from_startsWith?: InputMaybe; + hash_contains?: InputMaybe; + hash_containsInsensitive?: InputMaybe; + hash_endsWith?: InputMaybe; + hash_eq?: InputMaybe; + hash_gt?: InputMaybe; + hash_gte?: InputMaybe; + hash_in?: InputMaybe>; + hash_isNull?: InputMaybe; + hash_lt?: InputMaybe; + hash_lte?: InputMaybe; + hash_not_contains?: InputMaybe; + hash_not_containsInsensitive?: InputMaybe; + hash_not_endsWith?: InputMaybe; + hash_not_eq?: InputMaybe; + hash_not_in?: InputMaybe>; + hash_not_startsWith?: InputMaybe; + hash_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>; + to_contains?: InputMaybe; + to_containsInsensitive?: InputMaybe; + to_endsWith?: InputMaybe; + to_eq?: InputMaybe; + to_gt?: InputMaybe; + to_gte?: InputMaybe; + to_in?: InputMaybe>; + to_isNull?: InputMaybe; + to_lt?: InputMaybe; + to_lte?: InputMaybe; + to_not_contains?: InputMaybe; + to_not_containsInsensitive?: InputMaybe; + to_not_endsWith?: InputMaybe; + to_not_eq?: InputMaybe; + to_not_in?: InputMaybe>; + to_not_startsWith?: InputMaybe; + to_startsWith?: InputMaybe; + transactionIndex_eq?: InputMaybe; + transactionIndex_gt?: InputMaybe; + transactionIndex_gte?: InputMaybe; + transactionIndex_in?: InputMaybe>; + transactionIndex_isNull?: InputMaybe; + transactionIndex_lt?: InputMaybe; + transactionIndex_lte?: InputMaybe; + transactionIndex_not_eq?: InputMaybe; + transactionIndex_not_in?: InputMaybe>; } export interface TransactionsConnection { - __typename?: "TransactionsConnection"; + __typename?: 'TransactionsConnection'; edges: Array; pageInfo: PageInfo; - totalCount: Scalars["Int"]["output"]; + totalCount: Scalars['Int']['output']; } export interface WhereInput { - from?: InputMaybe; - id_eq?: InputMaybe; - maxCapital_gte?: InputMaybe; - to?: InputMaybe; + from?: InputMaybe; + id_eq?: InputMaybe; + maxCapital_gte?: InputMaybe; + to?: InputMaybe; } diff --git a/src/components/BuyCards/BuyCards.tsx b/src/components/BuyCards/BuyCards.tsx index 8d0a519e6b..ad074e415d 100644 --- a/src/components/BuyCards/BuyCards.tsx +++ b/src/components/BuyCards/BuyCards.tsx @@ -10,6 +10,7 @@ import { AVALANCHE, AVALANCHE_FUJI, BOTANIX, + LOCALHOST, ContractsChainId, getChainName, } from "config/chains"; @@ -43,6 +44,7 @@ const NETWORK_ICONS: Record = { [ARBITRUM_SEPOLIA]: ["ETH"], [AVALANCHE_FUJI]: [], + [LOCALHOST]: ["ETH", "BTC"], }; const WAIVE_DISMISSAL_PERIOD_MS = 24 * 60 * 60 * 1000; // 24 hours diff --git a/src/config/chains.ts b/src/config/chains.ts index 8852234834..6985d0b5fb 100644 --- a/src/config/chains.ts +++ b/src/config/chains.ts @@ -5,12 +5,14 @@ import { AnyChainId, ARBITRUM_SEPOLIA, BOTANIX, + LOCALHOST, ContractsChainId, CONTRACTS_CHAIN_IDS as SDK_CONTRACTS_CHAIN_IDS, CONTRACTS_CHAIN_IDS_DEV as SDK_CONTRACTS_CHAIN_IDS_DEV, SOURCE_BASE_MAINNET, SOURCE_OPTIMISM_SEPOLIA, SOURCE_SEPOLIA, + BASE_SEPOLIA, } from "sdk/configs/chains"; import { isDevelopment } from "./env"; @@ -37,6 +39,8 @@ export const IS_NETWORK_DISABLED: Record = { [ARBITRUM_SEPOLIA]: false, [AVALANCHE_FUJI]: false, [BOTANIX]: false, + [LOCALHOST]: false, + [BASE_SEPOLIA]: false, }; export const NETWORK_EXECUTION_TO_CREATE_FEE_FACTOR = { @@ -114,6 +118,32 @@ const constants = { // contract requires that execution fee be strictly greater than instead of gte DECREASE_ORDER_EXECUTION_GAS_FEE: parseEther("0.0100001"), }, + [LOCALHOST]: { + nativeTokenSymbol: "ETH", + wrappedTokenSymbol: "WETH", + defaultCollateralSymbol: "USDC", + defaultFlagOrdersEnabled: true, + positionReaderPropsLength: 9, + v2: true, + + SWAP_ORDER_EXECUTION_GAS_FEE: parseEther("0.0003"), + INCREASE_ORDER_EXECUTION_GAS_FEE: parseEther("0.0003"), + // contract requires that execution fee be strictly greater than instead of gte + DECREASE_ORDER_EXECUTION_GAS_FEE: parseEther("0.000300001"), + }, + [BASE_SEPOLIA]: { + nativeTokenSymbol: "ETH", + wrappedTokenSymbol: "WETH", + defaultCollateralSymbol: "USDC", + defaultFlagOrdersEnabled: true, + positionReaderPropsLength: 9, + v2: true, + + SWAP_ORDER_EXECUTION_GAS_FEE: parseEther("0.0003"), + INCREASE_ORDER_EXECUTION_GAS_FEE: parseEther("0.0003"), + // contract requires that execution fee be strictly greater than instead of gte + DECREASE_ORDER_EXECUTION_GAS_FEE: parseEther("0.000300001"), + }, } satisfies Record>; const ALCHEMY_WHITELISTED_DOMAINS = ["gmx.io", "app.gmx.io", "gmxapp.io"]; @@ -161,6 +191,13 @@ export const RPC_PROVIDERS: Record = // "https://rpc.botanixlabs.com", "https://rpc.ankr.com/botanix_mainnet", ], + [LOCALHOST]: ["http://127.0.0.1:8545"], + [BASE_SEPOLIA]: [ + "https://base-sepolia.drpc.org", + "https://base-sepolia.publicnode.com", + "https://base-sepolia.therpc.io", + "https://base-sepolia.rpc.ankr.com", + ], }; export const FALLBACK_PROVIDERS: Record = { @@ -176,6 +213,8 @@ export const FALLBACK_PROVIDERS: Record = { [SOURCE_BASE_MAINNET]: [getAlchemyBaseMainnetHttpUrl("fallback")], [SOURCE_OPTIMISM_SEPOLIA]: [getAlchemyOptimismSepoliaHttpUrl("fallback")], [SOURCE_SEPOLIA]: [getAlchemyBaseSepoliaHttpUrl("fallback")], + [LOCALHOST]: ["http://127.0.0.1:8545"], + [BASE_SEPOLIA]: [getAlchemyBaseSepoliaHttpUrl("fallback")], }; export const PRIVATE_RPC_PROVIDERS: Partial> = { @@ -230,7 +269,7 @@ function getAlchemyKey(purpose: AlchemyKeyPurpose) { } } - return "EmVYwUw0N2tXOuG0SZfe5Z04rzBsCbr2"; + return "jXT7KIV6ttYFNoSprdkqG"; } export function getAlchemyArbitrumHttpUrl(purpose: AlchemyKeyPurpose) { @@ -289,6 +328,10 @@ export function getAlchemySepoliaWsUrl(purpose: AlchemyKeyPurpose) { return `wss://eth-sepolia.g.alchemy.com/v2/${getAlchemyKey(purpose)}`; } +export function getAlchemyBaseSepoliaWsUrl(purpose: AlchemyKeyPurpose) { + return `wss://base-sepolia.g.alchemy.com/v2/${getAlchemyKey(purpose)}`; +} + export function getExplorerUrl(chainId: number | "layerzero" | "layerzero-testnet"): string { switch (chainId as AnyChainId | "layerzero" | "layerzero-testnet") { case ARBITRUM: @@ -307,6 +350,10 @@ export function getExplorerUrl(chainId: number | "layerzero" | "layerzero-testne return "https://botanixscan.io/"; case SOURCE_BASE_MAINNET: return "https://basescan.org/"; + case LOCALHOST: + return "http://127.0.0.1:8545/"; + case BASE_SEPOLIA: + return "https://basescan.org/"; case "layerzero": return "https://layerzeroscan.com/"; case "layerzero-testnet": diff --git a/src/config/icons.ts b/src/config/icons.ts index b031722485..4a257cc585 100644 --- a/src/config/icons.ts +++ b/src/config/icons.ts @@ -5,9 +5,11 @@ import { AVALANCHE, AVALANCHE_FUJI, BOTANIX, + LOCALHOST, SOURCE_BASE_MAINNET, SOURCE_OPTIMISM_SEPOLIA, SOURCE_SEPOLIA, + BASE_SEPOLIA, } from "config/chains"; import gmIcon from "img/gm_icon.svg"; @@ -78,6 +80,20 @@ const ICONS: Record = { gm: gmIcon, esgmx: esGMXIcon, }, + [LOCALHOST]: { + network: arbitrum, + gmx: gmxArbitrum, + glp: glpArbitrum, + esgmx: esGMXArbitrumIcon, + gm: gmArbitrum, + }, + [BASE_SEPOLIA]: { + network: base, + gmx: gmxIcon, + glp: glpIcon, + esgmx: esGMXIcon, + gm: gmIcon, + }, common: { gmx: gmxIcon, gmxOutline: gmxOutlineIcon, @@ -98,6 +114,8 @@ export const CHAIN_ID_TO_NETWORK_ICON: Record = { [SOURCE_OPTIMISM_SEPOLIA]: optimismSepolia, [SOURCE_SEPOLIA]: sepolia, [BOTANIX]: botanix, + [LOCALHOST]: arbitrum, + [BASE_SEPOLIA]: base, }; /** diff --git a/src/config/multichain.ts b/src/config/multichain.ts index c5fb0a4fec..129f1b875c 100644 --- a/src/config/multichain.ts +++ b/src/config/multichain.ts @@ -25,6 +25,7 @@ import { AVALANCHE, AVALANCHE_FUJI, BOTANIX, + LOCALHOST, SettlementChainId, SOURCE_BASE_MAINNET, SOURCE_OPTIMISM_SEPOLIA, @@ -273,6 +274,7 @@ export const DEFAULT_SETTLEMENT_CHAIN_ID_MAP: Record = { [ARBITRUM]: [], [AVALANCHE_FUJI]: [], [ARBITRUM_SEPOLIA]: [], + [LOCALHOST]: [], + [BASE_SEPOLIA]: [], }; export function useAvailableTokenOptions( diff --git a/src/lib/chains/blockExplorers.tsx b/src/lib/chains/blockExplorers.tsx index 2999b26f02..8f225febd1 100644 --- a/src/lib/chains/blockExplorers.tsx +++ b/src/lib/chains/blockExplorers.tsx @@ -7,6 +7,7 @@ import { AVALANCHE, AVALANCHE_FUJI, BOTANIX, + LOCALHOST, getExplorerUrl, SOURCE_BASE_MAINNET, SOURCE_OPTIMISM_SEPOLIA, @@ -25,6 +26,7 @@ export const CHAIN_ID_TO_TX_URL_BUILDER: Record< [AVALANCHE_FUJI]: (txId: string) => `${getExplorerUrl(AVALANCHE_FUJI)}tx/${txId}`, [SOURCE_SEPOLIA]: (txId: string) => `${getExplorerUrl(SOURCE_SEPOLIA)}tx/${txId}`, [BOTANIX]: (txId: string) => `${getExplorerUrl(BOTANIX)}tx/${txId}`, + [LOCALHOST]: (txId: string) => `${getExplorerUrl(LOCALHOST)}tx/${txId}`, layerzero: (txId: string) => `${getExplorerUrl("layerzero")}tx/${txId}`, "layerzero-testnet": (txId: string) => `${getExplorerUrl("layerzero-testnet")}tx/${txId}`, }; @@ -38,4 +40,5 @@ export const CHAIN_ID_TO_EXPLORER_NAME: Record = { [SOURCE_OPTIMISM_SEPOLIA]: "OP Sepolia Etherscan", [SOURCE_SEPOLIA]: "Sepolia Etherscan", [BOTANIX]: "Botanix Explorer", + [LOCALHOST]: "Localhost", }; diff --git a/src/lib/rpc/bestRpcTracker.ts b/src/lib/rpc/bestRpcTracker.ts index a8a5df2ce8..5019bb3767 100644 --- a/src/lib/rpc/bestRpcTracker.ts +++ b/src/lib/rpc/bestRpcTracker.ts @@ -12,7 +12,9 @@ import { ARBITRUM_SEPOLIA, AVALANCHE, AVALANCHE_FUJI, + BASE_SEPOLIA, BOTANIX, + LOCALHOST, CONTRACTS_CHAIN_IDS, ContractsChainId, FALLBACK_PROVIDERS, @@ -50,6 +52,8 @@ const PROBE_SAMPLE_MARKET: Record = { [AVALANCHE_FUJI]: "0xbf338a6C595f06B7Cfff2FA8c958d49201466374", // ETH/USD [BOTANIX]: "0x6682BB60590a045A956541B1433f016Ed22E361d", // STBTC-STBTC [ARBITRUM_SEPOLIA]: "0xb6fC4C9eB02C35A134044526C62bb15014Ac0Bcc", // ETH/USD + [LOCALHOST]: "0x0000000000000000000000000000000000000000", // Placeholder - add actual market address after deployment + [BASE_SEPOLIA]: "0x0ec8334dAc31DdFC08a7ab35F3dB24ef94889554", // EUR/USD }; type ProbeData = { diff --git a/src/lib/rpc/index.ts b/src/lib/rpc/index.ts index 8fee6bf8e0..c83c97f5b9 100644 --- a/src/lib/rpc/index.ts +++ b/src/lib/rpc/index.ts @@ -20,6 +20,8 @@ import { SOURCE_BASE_MAINNET, SOURCE_OPTIMISM_SEPOLIA, SOURCE_SEPOLIA, + BASE_SEPOLIA, + getAlchemyBaseSepoliaWsUrl, } from "config/chains"; import { isDevelopment } from "config/env"; import { getIsLargeAccount } from "domain/stats/isLargeAccount"; @@ -107,6 +109,14 @@ export function getWsProvider(chainId: AnyChainId): WebSocketProvider | JsonRpcP ); } + if (chainId === BASE_SEPOLIA) { + return new ethers.WebSocketProvider( + getAlchemyBaseSepoliaWsUrl(getIsLargeAccount() ? "largeAccount" : "fallback"), + network, + { staticNetwork: network } + ); + } + throw new Error(`Unsupported websocket provider for chain id: ${chainId}`); } diff --git a/src/pages/AccountDashboard/constants.tsx b/src/pages/AccountDashboard/constants.tsx index 17de5b5071..60fa747fd3 100644 --- a/src/pages/AccountDashboard/constants.tsx +++ b/src/pages/AccountDashboard/constants.tsx @@ -1,7 +1,7 @@ import invert from "lodash/invert"; import mapValues from "lodash/mapValues"; -import { ARBITRUM, ARBITRUM_SEPOLIA, AVALANCHE, AVALANCHE_FUJI, BOTANIX, type ContractsChainId } from "config/chains"; +import { ARBITRUM, ARBITRUM_SEPOLIA, AVALANCHE, AVALANCHE_FUJI, BOTANIX, LOCALHOST, type ContractsChainId } from "config/chains"; export const NETWORK_QUERY_PARAM = "network"; export const VERSION_QUERY_PARAM = "v"; @@ -12,6 +12,7 @@ export const NETWORK_ID_SLUGS_MAP: Record = { [AVALANCHE_FUJI]: "avalanche_fuji", [BOTANIX]: "botanix", [ARBITRUM_SEPOLIA]: "arbitrum_sepolia", + [LOCALHOST]: "localhost", }; export const NETWORK_SLUGS_ID_MAP = mapValues(invert(NETWORK_ID_SLUGS_MAP), Number); diff --git a/src/pages/ParseTransaction/ParseTransaction.tsx b/src/pages/ParseTransaction/ParseTransaction.tsx index 996b4d861b..d1a7b1e877 100644 --- a/src/pages/ParseTransaction/ParseTransaction.tsx +++ b/src/pages/ParseTransaction/ParseTransaction.tsx @@ -15,6 +15,7 @@ import { AVALANCHE, AVALANCHE_FUJI, BOTANIX, + LOCALHOST, ContractsChainId, getExplorerUrl, } from "config/chains"; @@ -72,6 +73,7 @@ export const NETWORKS_BY_CHAIN_IDS: Record = { [AVALANCHE_FUJI]: "fuji", [ARBITRUM_SEPOLIA]: "arbitrum-sepolia", [BOTANIX]: "botanix", + [LOCALHOST]: "localhost", }; const NETWORKS = mapValues(invert(NETWORKS_BY_CHAIN_IDS), Number) as Record;