Panoptic Subgraph Schema
Panoptic Subgraph
A subgraph is a derived data schema that indexes and organizes data from various decentralized protocols.
The Panoptic subgraph is a comprehensive data schema designed to provide insights into the Panoptic protocol, enabling developers and users to efficiently query and analyze data related to Panoptic pools and its associated entities. The Panoptic subgraph leverages the underlying data from Uniswap pools as its foundation, upon which the Panoptic pools are built. Users can access structured data related to Panoptic pools, accounts, transactions, and more through the subgraph. This documentation serves as a guide to understanding the structure and functionality of the Panoptic subgraph, facilitating effective utilization of its capabilities.
See some example queries here.
Objects
Account
Account of a Uniswap or Panoptic user.
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | Account address | |
| accountBalances | [AccountBalance!]! | TokenIds owned by this account | |
| skip | Int | ||
| first | Int | ||
| orderBy | AccountBalance_orderBy | ||
| orderDirection | OrderDirection | ||
| where | AccountBalance_filter | ||
| panopticPoolAccount | [PanopticPoolAccount!] | Subaccounts for PanopticPools where this Account has options activity | |
| skip | Int | ||
| first | Int | ||
| orderBy | PanopticPoolAccount_orderBy | ||
| orderDirection | OrderDirection | ||
| where | PanopticPoolAccount_filter | ||
AccountBalance
The AccountBalance entity represents how many of a specific TokenId an Account holds
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | For open positions, IDs will have the structure: 'Sender address' + '#' + 'tokenId'. The sender is to distinguish NFPM/SFPM positions from PanopticPool positions. For closed and force exercised positions, the structure will be 'Sender address' + '#' + 'tokenId' + '#' + 'txn hash of close event' + '#' + log index of close event'. For liquidated positions, the ID will be the same as for other closed positions but with an additional counter for the index of the liquidated position ('#' + 'index of liquidated position'). | |
| owner | Account! | Creator of this AccountToken balance (e.g. NFPM Account, SFPM Account, PanopticPool) | |
| sender | Account! | Initiator of this txn (account responsible) | |
| tokenId | TokenId! | The ERC1155 TokenId held by this Account | |
| legLiquidities | [LegLiquidities!]! | The Legs and associated liquidity amounts of this AccountBalance's TokenId | |
| skip | Int | ||
| first | Int | ||
| orderBy | LegLiquidities_orderBy | ||
| orderDirection | OrderDirection | ||
| where | LegLiquidities_filter | ||
| tokenCount | BigInt! | Amount of TokenId held by this Account | |
| positionSize | BigInt! | Position size expressed in terms of the asset | |
| panopticPoolAccount | PanopticPoolAccount | The associated PanopticPoolAccount IF the TokenId exists within a PanopticPool. Null if the tokenId exists outside of a PanopticPool, like an LP position created through direct interaction with the SFPM / NFPM. | |
| premiaSettled0Total | BigInt | Total token0 premia settled for this position. | |
| premiaSettled0InEthTotal | BigDecimal | Total token0 premia, in Eth, settled for this position. | |
| premiaSettled0InUsdTotal | BigDecimal | Total token0 premia, in USD, settled for this position. | |
| premiaSettled1Total | BigInt | Total token1 premia settled for this position. | |
| premiaSettled1InEthTotal | BigDecimal | Total token1 premia, in Eth, settled for this position. | |
| premiaSettled1InUsdTotal | BigDecimal | Total token1 premia, in USD, settled for this position. | |
| underlyingPool | Pool | Underlying Uniswap pool associated with AccountBalance | |
| txnOpened | Event! | ID of the event that created account balance | |
| txnClosed | Event | ID of the event that closed account balance | |
| isOpen | Int! | Open state of this Position. Will be 0 if closed, 1 if open, and 2 if there is another closed copy of this account balance and this instance is just a placeholder waiting to get overwritten. | |
| createdTimestamp | BigInt! | Creation timestamp | |
| createdBlockNumber | BigInt! | Creation block number | |
| closedTimestamp | BigInt | Closed timestamp | |
AccountLiquidated
Liquidation of a distressed PanopticPoolAccount. All of the distressed account's positions in a specific PanopticPool get closed and the liquidator receives a bonus.
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | ||
| hash | String! | ||
| logIndex | BigInt! | ||
| eventType | EventType! | ||
| from | String! | ||
| to | String! | ||
| blockNumber | BigInt! | ||
| timestamp | BigInt! | ||
| gasUsed | BigInt! | ||
| gasPrice | BigInt! | ||
| pool | Pool! | ||
| liquidator | Account! | Address that liquidates the distressed account | |
| liquidatee | Account! | Address of the distressed/liquidated account | |
| bonusAmounts | BigInt! | LeftRight encoding for the the bonus paid for token 0 (right slot) and 1 (left slot) from the Panoptic Pool to the liquidator. See liquidationBonus0 and liquidationBonus1 for the unpacked token values. | |
| liquidationBonus0 | BigInt! | The amount of bonus paid for token0 for this liquidation. | |
| liquidationBonus1 | BigInt! | The amount of bonus paid for token1 for this liquidation. | |
| liquidationBonusUSD | BigDecimal! | The summed liquidation bonus in USD. | |
| tickAt | Int! | Tick when the position was liquidated | |
| panopticPool | PanopticPool! | The PanopticPool this liquidation happened in (from event.address) | |
| optionBurns | [OptionBurn!] | List of OptionBurn events resulting from this Liquidation | |
| skip | Int | ||
| first | Int | ||
| orderBy | OptionBurn_orderBy | ||
| orderDirection | OrderDirection | ||
| where | OptionBurn_filter | ||
| panopticVersion | BigDecimal | Version of Panoptic contract that emitted this event | |
Bundle
Keeps track of ETH/USD price using a configured Uniswap pool.
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | The ID of the Bundle singleton is always 1. | |
| ethPriceUSD | BigDecimal! | Price of ETH in USD. | |
Burn
Uniswap liquidity burn
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | ||
| hash | String! | ||
| logIndex | BigInt! | ||
| eventType | EventType! | ||
| from | String! | ||
| to | String! | ||
| blockNumber | BigInt! | ||
| timestamp | BigInt! | ||
| gasUsed | BigInt! | ||
| gasPrice | BigInt! | ||
| pool | Pool! | ||
| owner | Account! | The owner of the position for which liquidity is removed | |
| tickLower | Int! | The lower tick of the position | |
| tickUpper | Int! | The upper tick of the position | |
| amount | BigInt! | The amount of liquidity to remove | |
| amount0 | BigDecimal! | The amount of token 0 withdrawn | |
| amount1 | BigDecimal! | The amount of token 1 withdrawn | |
| token0 | Token! | Allow indexing by tokens | |
| token1 | Token! | Allow indexing by tokens | |
Chunk
A chunk of liquidity. Used to track liquidity available in Uniswap, as well as liquidity removed from Uniswap for use in PanopticPools.
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | ID is a concatenated string of: owner + '#' + manager + '#' + poolAddress + '#' + tokenType + '#' + lowerTick + '#' + upperTick | |
| owner | Account! | TokenizedPositionMinted.caller if mint routes through SFPM. Otherwise, same as manager (will be a PanopticPool address for option mints/burns). | |
| manager | Account! | Mint.sender / Burn.owner on Uniswap pool event | |
| tickLower | BigInt! | Lower tick of the position | |
| tickUpper | BigInt! | Upper tick of the position | |
| strike | BigInt! | Avg. of tickLower & tickUpper | |
| width | BigInt! | (tickUpper - tickLower) / pool.tickSpacing | |
| tokenType | BigInt! | Which token is moved when deployed (0 -> token0, 1 -> token1). When minted through Uniswap's NFPM, tokenType is always 1 (for put). | |
| pool | Pool! | Pool where this chunk exists | |
| panopticPool | PanopticPool | If owned by a PanopticPool, PanopticPool that owns this chunk | |
| netLiquidity | BigInt! | Net liquidity in chunk | |
| shortLiquidity | BigInt! | Short liquidity in chunk | |
| longLiquidity | BigInt! | Long liquidity in chunk | |
| shortCounts | BigInt! | Total long positions in chunk | |
| longCounts | BigInt! | Total short positions in chunk | |
| totalLiquidity | BigInt! | Total liquidity in chunk | |
| legs | [Leg!]! | Legs created on this chunk of liquidity | |
| skip | Int | ||
| first | Int | ||
| orderBy | Leg_orderBy | ||
| orderDirection | OrderDirection | ||
| where | Leg_filter | ||
Collateral
Contains the collateralization metrics of a certain token in a certain PanopticPool (derived from the CollateralTracker.sol contract).
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | Address of CollateralTracker for pool | |
| panopticVersion | BigDecimal | Can be 1, 1.1, or 2 | |
| token | Token! | Address of underlying token | |
| totalShares | BigInt! | Total shares supply (receipts to claim assets) | |
| totalAssets | BigInt! | Total assets managed by this Collateral vault. Should be equal to | |
| poolAssets | BigInt! | Assets accounted to be held by the Panoptic Pool. Ignores donations, pending fee payouts, and other untracked balance changes. | |
| inAMM | BigInt! | Tokens moved from Panoptic Pool to AMM | |
| poolUtilization | BigInt! | Pool utilization represents how many funds are in the AMM pool, times 10,000, over the total assets controlled by the Panoptic pool. | |
| panopticPool | PanopticPool! | The PanopticPool being collateralized | |
| index | BigInt! | Index of 0 or 1, indicating if this is collateralTracker0 or collateralTracker1 in its parent PanopticPool | |
| collateralDayData | [CollateralDayData!]! | Snapshots of CollateralDayData | |
| skip | Int | ||
| first | Int | ||
| orderBy | CollateralDayData_orderBy | ||
| orderDirection | OrderDirection | ||
| where | CollateralDayData_filter | ||
CollateralDayData
Data accumulated and condensed into day stats for each collateral. If no Collateral events are emitted on a given day, there will be a missing CollateralDayData for that day.
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | Timestamp rounded to current day combined with collateral id | |
| collateral | Collateral! | Pointer to Collateral | |
| date | Int! | Timestamp rounded to current day by dividing by 86400 | |
| totalShares | BigInt! | Shares | |
| totalAssets | BigInt! | Assets | |
| sharePrice | BigDecimal! | Share price (assets/shares) - useful for calculating PLP (collateral depositors) APY | |
CollateralDeposit
Collateral deposit (PLP liquidity deposit)
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | ||
| hash | String! | ||
| logIndex | BigInt! | ||
| eventType | EventType! | ||
| from | String! | ||
| to | String! | ||
| blockNumber | BigInt! | ||
| timestamp | BigInt! | ||
| gasUsed | BigInt! | ||
| gasPrice | BigInt! | ||
| pool | Pool! | ||
| sender | Account! | The address of the caller (and depositor) | |
| owner | Account! | The address of the recipient of the newly minted shares | |
| assets | BigInt! | The amount of assets deposited by | |
| shares | BigInt! | Shares the amount of shares minted to | |
| collateral | Collateral! | The collateral entity that received the deposit. | |
| tickAtDeposit | BigInt | ||
| tokenDerivedEthAtDeposit | BigDecimal! | ||
| ethPriceUSDAtDeposit | BigDecimal! | ||
| panopticVersion | BigDecimal | Version of Panoptic contract that emitted this event | |
CollateralWithdraw
Collateral deposit (PLP liquidity withdrawal)
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | ||
| hash | String! | ||
| logIndex | BigInt! | ||
| eventType | EventType! | ||
| from | String! | ||
| to | String! | ||
| blockNumber | BigInt! | ||
| timestamp | BigInt! | ||
| gasUsed | BigInt! | ||
| gasPrice | BigInt! | ||
| pool | Pool! | ||
| sender | Account! | The address of the caller | |
| receiver | Account! | The address of the recipient of the withdrawn assets | |
| owner | Account! | The address of the owner of the shares being burned | |
| assets | BigInt! | The amount of assets withdrawn to | |
| shares | BigInt! | The amount of shares burned by | |
| collateral | Collateral! | The collateral entity that was withdrawn from. | |
| tickAtWithdraw | BigInt | ||
| tokenDerivedEthAtWithdraw | BigDecimal! | ||
| ethPriceUSDAtWithdraw | BigDecimal! | ||
| panopticVersion | BigDecimal | Version of Panoptic contract that emitted this event | |
Collect
Uniswap collect
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | ||
| hash | String! | ||
| logIndex | BigInt! | ||
| eventType | EventType! | ||
| from | String! | ||
| to | String! | ||
| blockNumber | BigInt! | ||
| timestamp | BigInt! | ||
| gasUsed | BigInt! | ||
| gasPrice | BigInt! | ||
| pool | Pool! | ||
| owner | Account! | The owner of the position for which fees are collected | |
| recipient | Account! | The address that received the output of the collect | |
| tickLower | Int! | The lower tick of the position | |
| tickUpper | Int! | The upper tick of the position | |
| amount0 | BigDecimal! | The amount of token0 fees collected | |
| amount1 | BigDecimal! | The amount of token1 fees collected | |
Factory
Uniswap Factory (deployer of Pools).
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | Factory address | |
| poolCount | BigInt! | Amount of pools created | |
| owner | ID! | Current owner of the factory | |
| opBackfilled | Boolean | Used to track if regenesis backfill has completed for Optimism. | |
ForcedExercise
Force the exercise of a single position. Exercisor will have to pay a fee to the force exercisee.
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | ||
| hash | String! | ||
| logIndex | BigInt! | ||
| eventType | EventType! | ||
| from | String! | ||
| to | String! | ||
| blockNumber | BigInt! | ||
| timestamp | BigInt! | ||
| gasUsed | BigInt! | ||
| gasPrice | BigInt! | ||
| pool | Pool! | ||
| exercisor | Account! | Address of the account that forces the exercise of the position | |
| user | Account! | Address of the owner of the liquidated position | |
| tokenId | BigInt! | TokenId of the exercised position | |
| exerciseFee | BigInt! | LeftRight encoding for the cost paid by the exercisor to force the exercise of the token. The token0 fee is in the right slot, and token1 fee is in the left slot. | |
| exerciseFee0 | BigInt! | The cost paid by the exercisor to force the exercise for token0 (represented as a negative value, fee debited) | |
| exerciseFee1 | BigInt! | The cost paid by the exercisor to force the exercise for token1 (represented as a negative value, fee debited) | |
| exerciseFeeUSD | BigDecimal! | The summed cost in USD paid by the exercisor for this force exercise | |
| tickAt | Int! | Tick when the position was exercised | |
| panopticPool | PanopticPool! | The PanopticPool this forced exercise happened in (from event.address) | |
| optionBurn | OptionBurn | OptionBurn event for the exercised position | |
| panopticVersion | BigDecimal | Version of Panoptic contract that emitted this event | |
Leg
A leg of a TokenId, representing a single option.
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | Id is the tuple (asset, optionRatio, isLong, tokenType, riskPartner, strike, width) from LSB to MSB, in BigInt form, cast to a string See TokenId entity for more details, or the source here: https://github.com/panoptic-labs/Panoptic/blob/b33788f414d3101448309212dd66654e63c6a31d/contracts/libraries/TokenId.sol#L29 | |
| index | Int! | Index of the leg in the tokenId | |
| idHexString | String! | Hex stringified leg ID | |
| pool | Pool! | Pool position is within | |
| optionRatio | BigInt! | Number of contracts per leg | |
| asset | BigInt! | Asset of 0 token0, 1 for token1 | |
| tokenType | BigInt! | Token type | |
| isLong | BigInt! | Is it a long leg? | |
| riskPartner | BigInt! | Risk partner | |
| strike | BigInt! | The strike tick, defined as the average of the lower bound tick of this position and the upper bound | |
| width | BigInt! | The width of this position, defined as the upper bound tick of the position, minus the lower bound, divided by tickSpacing | |
| chunk | Chunk! | Chunk data | |
| legCount | BigInt! | How many of this Leg exist | |
| tokenIds | [TokenId!]! | TokenIds which this leg exists in | |
| skip | Int | ||
| first | Int | ||
| orderBy | TokenId_orderBy | ||
| orderDirection | OrderDirection | ||
| where | TokenId_filter | ||
LegLiquidities
Currently only for Panoptic TokenIds (not synthetic tokenIds created from uniswap positions), stores the liquidity underlying each instance of a leg. While multiple legs may exist with the same ID, each instance of a leg controls a fixed amount of liquidity when active. Can also think of these as the 'operators' of a given chunk. Don't directly own the liquidity (like PanopticPool) or manage it (like SFPM), but the account that owns this Leg has the right to instruct the manager on how to manage the underlying liquidity. The 'operator' wasn't added to Chunk IDs to avoid fragmentation of the entities - we would quickly reach the 1000 query limit otherwise. Maybe this will be removed in favor of a simple 'operator' field in Chunk in the future.
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | leg id + '#' + txnHash + '#' + logIndex | |
| leg | Leg! | ||
| chunk | Chunk! | ||
| liquidity | BigInt! | ||
Mint
Uniswap liquidity mint
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | ||
| hash | String! | ||
| logIndex | BigInt! | ||
| eventType | EventType! | ||
| from | String! | ||
| to | String! | ||
| blockNumber | BigInt! | ||
| timestamp | BigInt! | ||
| gasUsed | BigInt! | ||
| gasPrice | BigInt! | ||
| pool | Pool! | ||
| sender | Account! | The address that minted the liquidity | |
| owner | Account! | Owner of position where liquidity minted to | |
| tickLower | Int! | Lower tick of the position | |
| tickUpper | Int! | Upper tick of the position | |
| amount | BigInt! | Amount of liquidity minted | |
| amount0 | BigDecimal! | Amount of token 0 minted | |
| amount1 | BigDecimal! | Amount of token 1 minted | |
| token0 | Token! | Allow indexing by tokens | |
| token1 | Token! | Allow indexing by tokens | |
OptionBurn
Panoption burn / position close
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | ||
| hash | String! | ||
| logIndex | BigInt! | ||
| eventType | EventType! | ||
| from | String! | ||
| to | String! | ||
| blockNumber | BigInt! | ||
| timestamp | BigInt! | ||
| gasUsed | BigInt! | ||
| gasPrice | BigInt! | ||
| pool | Pool! | ||
| recipient | Account! | User that burnt the option | |
| positionSize | BigInt! | The number of contracts burnt, expressed in terms of the asset | |
| tokenId | TokenId! | TokenId of the burnt option | |
| tickAt | Int! | Tick at which the option was burned | |
| panopticPool | PanopticPool! | PanopticPool where burn occured (from event.address) | |
| premium0 | BigInt! | Premium collected for token0 | |
| premium1 | BigInt! | Premium collected for token1 | |
| premiaByLeg | [BigInt!] | Packed premia for each leg | |
| totalShares0 | BigInt | Collateral0 shares at time of liquidation. Helpful for calculating protocol loss during liquidation | |
| totalAssets0 | BigInt | Collateral0 assets at time of liquidation. Helpful for calculating protocol loss during liquidation | |
| totalShares1 | BigInt | Collateral1 shares at time of liquidation. Helpful for calculating protocol loss during liquidation | |
| totalAssets1 | BigInt | Collateral1 assets at time of liquidation. Helpful for calculating protocol loss during liquidation | |
| txnOpened | OptionMint! | ID of the corresponding OptionMint | |
| accountBalance | AccountBalance | The AccountBalance (a.k.a. user's position) whose closing emitted this OptionBurn event. | |
| forcedExercise | ForcedExercise | If this optionBurn was due to a position being exercised, this will be the ID of the related ForceExercise event. | |
| accountLiquidated | AccountLiquidated | If this optionBurn was due to a PanopticPoolAccount being liquidated, this will be the ID of the related AccountLiquidated event. | |
| panopticVersion | BigDecimal | Version of Panoptic contract that emitted this event | |
OptionMint
Panoption mint / position open
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | ||
| hash | String! | ||
| logIndex | BigInt! | ||
| eventType | EventType! | ||
| from | String! | ||
| to | String! | ||
| blockNumber | BigInt! | ||
| timestamp | BigInt! | ||
| gasUsed | BigInt! | ||
| gasPrice | BigInt! | ||
| pool | Pool! | ||
| recipient | Account! | User that minted the option | |
| tokenId | TokenId! | TokenId of the created option | |
| positionSize | BigInt! | The number of contracts minted, expressed in terms of the asset | |
| poolUtilization0 | BigInt! | Pool utilization of token0 (how many funds are in the AMM pool vs. the Panoptic pool) at the time of mint. Defined as (inAMM / totalBalance) * 10_000 | |
| poolUtilization1 | BigInt! | Pool utilization of token1 | |
| currentTick | Int | Tick extracted from PositionBalance | |
| fastOracleTick | Int | Tick extracted from PositionBalance | |
| lastObservedTick | Int | Tick extracted from PositionBalance | |
| slowOracleTick | Int | Tick extracted from PositionBalance | |
| accountBalance | AccountBalance | The AccountBalance (a.k.a. user's position) whose creation emitted this OptionMinted event. | |
| panopticPool | PanopticPool! | PanopticPool mint is within (from event.address) | |
| commissions0 | BigDecimal! | Token0 commissions paid to mint this option | |
| commissions1 | BigDecimal! | Token1 commissions paid to mint this option | |
| commissions0USD | BigDecimal | Token0 commissions paid in USD (converted using token.derivedEth and Bundle.ethPriceUsd at time of mint) | |
| commissions1USD | BigDecimal | Token1 commissions paid in USD | |
| commissionsUSD | BigDecimal | Total commissions paid in USD | |
| tickAt | Int! | Tick at which the option was minted | |
| panopticVersion | BigDecimal | Version of Panoptic contract that emitted this event | |
OptionRoll
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | ||
| hash | String! | ||
| logIndex | BigInt! | ||
| eventType | EventType! | ||
| from | String! | ||
| to | String! | ||
| blockNumber | BigInt! | ||
| timestamp | BigInt! | ||
| gasUsed | BigInt! | ||
| gasPrice | BigInt! | ||
| pool | Pool! | ||
| recipient | Account! | User that burnt the option | |
| positionSize | BigInt! | The number of contracts burnt, expressed in terms of the asset | |
| oldTokenId | BigInt! | TokenId of the burnt option | |
| newTokenId | BigInt! | TokenId of the minted option | |
| tickAtRoll | Int! | Tick at which the option was rolled | |
| poolUtilizations | BigInt! | Packing of the pool utilization (how much funds are in the Panoptic pool versus the AMM pool) at the time of minting. Right 64bits for token0 and left 64bits for token1, defined as (inAMM / totalBalance) * 10_000 | |
| premia | BigInt! | LeftRight packing for the amount of premia collected for token0 and token1 | |
| panopticPool | PanopticPool! | PanopticPool roll is within (from event.address) | |
| poolUtilization0 | BigInt! | Pool utilization token0 | |
| poolUtilization1 | BigInt! | Pool utilization token1 | |
| premium0 | BigInt! | Premium collected for token0 | |
| premium1 | BigInt! | Premium collected for token1 | |
PanopticFactory
Panoptic Factory (deployer of PanopticPools).
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | Factory address | |
| poolCount | BigInt! | Amount of pools created | |
| owner | ID! | Current owner of the factory | |
| panopticVersion | BigDecimal | Can be 1, or 1.1 (or maybe 2 in the future) | |
PanopticPool
A pool deployed on top of an existing Uniswap Pool to facilitate perpetual options trading.
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | Pool address | |
| txCount | BigInt! | Total transaction count | |
| token0 | Token! | Token0 | |
| token1 | Token! | Token1 | |
| feeTier | BigInt! | Fee amount | |
| collateral0 | Collateral! | Vault for token 0 collateral | |
| collateral1 | Collateral! | Vault for token 1 collateral | |
| underlyingPool | Pool! | Underlying pool | |
| panopticVersion | BigDecimal | Can be 1, 1.1, or 2 | |
| oracleContract | Bytes | The external oracle contract used by the newly deployed Panoptic Pool (will only be non-0 for V1.1 pools) | |
| mintVolume0 | BigDecimal! | Token0 moved for OptionMints. | |
| mintVolume0USD | BigDecimal! | Token0 moved for OptionMints in USD. | |
| burnVolume0 | BigDecimal! | Token0 moved for OptionBurns. | |
| burnVolume0USD | BigDecimal! | Token0 moved for OptionBurns in USD. | |
| totalVolume0 | BigDecimal! | Sum of OptionMint and OptionBurn token0 volume. | |
| totalVolume0USD | BigDecimal! | Sum of OptionMint and OptionBurn token0 volume in USD. | |
| mintVolume1 | BigDecimal! | Token1 moved for OptionMints. | |
| mintVolume1USD | BigDecimal! | Token1 moved for OptionMints in USD. | |
| burnVolume1 | BigDecimal! | Token1 moved for OptionBurns. | |
| burnVolume1USD | BigDecimal! | Token1 moved for OptionBurns in USD. | |
| totalVolume1 | BigDecimal! | Sum of OptionMint and OptionBurn token1 volume in USD. | |
| totalVolume1USD | BigDecimal! | Sum of OptionMint and OptionBurn token1 volume in USD. | |
| totalVolumeUSD | BigDecimal! | Sum of OptionMint and OptionBurn volume for token0 and token1 in USD. | |
| commissions0 | BigDecimal! | All time commissions earned from Collateral0. Commissions increase with every OptionMint and collateral deposit. They may decrease in case of protocol loss, which gets realized as part of a liquidation. | |
| commissions0USD | BigDecimal! | All time token0 commissions converted to USD (calculated using token0's derivedETH and the bundle.ethPriceUSD values). | |
| commissions1 | BigDecimal! | All time commissions earned from Collateral1. | |
| commissions1USD | BigDecimal! | All time token1 commissions converted to USD. | |
| commissionsUSD | BigDecimal! | All time commissions for both tokens converted to USD. | |
| protocolLoss0 | BigDecimal! | All time protocol loss in token0. Protocol loss is the value of shares added to the supply in the event of liquidation of bad debt. | |
| protocolLoss0USD | BigDecimal! | All time protocol loss in token0 converted to USD (calculated using token0's derivedETH and the bundle.ethPriceUSD values). | |
| protocolLoss1 | BigDecimal! | All time protocol loss in token1. | |
| protocolLoss1USD | BigDecimal! | All time protocol loss in token1 converted to USD. | |
| protocolLossUSD | BigDecimal! | All time protocol loss in both tokens converted to USD. | |
| chunks | [Chunk!]! | Link to all chunks of liquidity managed by this PanopticPool. | |
| skip | Int | ||
| first | Int | ||
| orderBy | Chunk_orderBy | ||
| orderDirection | OrderDirection | ||
| where | Chunk_filter | ||
| panopticPoolDayData | [PanopticPoolDayData!]! | Snapshots of PanopticPoolDayData | |
| skip | Int | ||
| first | Int | ||
| orderBy | PanopticPoolDayData_orderBy | ||
| orderDirection | OrderDirection | ||
| where | PanopticPoolDayData_filter | ||
| panopticPoolAccounts | [PanopticPoolAccount!]! | Link to all PanopticPoolAccounts for this PanopticPool. | |
| skip | Int | ||
| first | Int | ||
| orderBy | PanopticPoolAccount_orderBy | ||
| orderDirection | OrderDirection | ||
| where | PanopticPoolAccount_filter | ||
| createdTimestamp | BigInt | Creation timestamp | |
| createdBlockNumber | BigInt | Creation block number | |
PanopticPoolAccount
Tracks Panoption & PLP activity (collateral withdrawals and deposits) for a given Account & PanopticPool the Account has interacted with.
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | Address of account + '#' + address of panoptic pool | |
| panopticPool | PanopticPool! | Panoptic pool address | |
| account | Account! | Account address | |
| collateral0 | Collateral! | Collateral contract for Token0 | |
| collateral0Shares | BigInt! | Number of Collateral0 shares this PanopticPoolAccount controls | |
| collateral0Assets | BigInt! | @deprecated Estimate of Collateral0 assets this PanopticPoolAccount can withdraw. | |
| collateral1 | Collateral! | Collateral contract for Token1 | |
| collateral1Shares | BigInt! | Number of Collateral1 shares this PanopticPoolAccount controls | |
| collateral1Assets | BigInt! | @deprecated Estimate of Collateral1 assets this PanopticPoolAccount can withdraw. | |
| isLiquidated | Int! | Whether or not the user has been liquidated for this pool & not opened new positions (1 if true) | |
| accountBalances | [AccountBalance!]! | TokenId balances that this PanopticPoolAccount is responsible for | |
| skip | Int | ||
| first | Int | ||
| orderBy | AccountBalance_orderBy | ||
| orderDirection | OrderDirection | ||
| where | AccountBalance_filter | ||
| commissions0 | BigDecimal | All time token0 commissions for this PPA. | |
| commissions0Usd | BigDecimal | All time token0 commissions for this PPA converted to USD (calculated using token0's derivedETH and the bundle.ethPriceUSD values). | |
| commissions1 | BigDecimal | All time token1 commissions for this PPA. | |
| commissions1Usd | BigDecimal | All time token1 commissions for this PPA converted to USD (calculated using token1's derivedETH and the bundle.ethPriceUSD values). | |
PanopticPoolDayData
Data accumulated and condensed into day stats for each PanopticPool. If no PanopticPool events are emitted on a given day, there will be a missing PanopticPoolDayData for that day. Updated at the end of every Panoptic Pool event handler to guarantee the inclusion of volume updates from SFPM event handling (because SFPM events get emitted and handled before the option events).
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | Timestamp rounded to current day combined with panoptic pool id | |
| panopticPool | PanopticPool! | Pointer to Panoptic Pool | |
| date | Int! | Timestamp rounded to current day by dividing by 86400 | |
| mintVolume0 | BigDecimal! | Token0 moved for OptionMints. | |
| mintVolume0USD | BigDecimal! | Token0 moved for OptionMints in USD. | |
| burnVolume0 | BigDecimal! | Token0 moved for OptionBurns. | |
| burnVolume0USD | BigDecimal! | Token0 moved for OptionBurns in USD. | |
| totalVolume0 | BigDecimal! | Sum of OptionMint and OptionBurn token0 volume. | |
| totalVolume0USD | BigDecimal! | Sum of OptionMint and OptionBurn token0 volume in USD. | |
| mintVolume1 | BigDecimal! | Token1 moved for OptionMints. | |
| mintVolume1USD | BigDecimal! | Token1 moved for OptionMints in USD. | |
| burnVolume1 | BigDecimal! | Token1 moved for OptionBurns. | |
| burnVolume1USD | BigDecimal! | Token1 moved for OptionBurns in USD. | |
| totalVolume1 | BigDecimal! | Sum of OptionMint and OptionBurn token1 volume in USD. | |
| totalVolume1USD | BigDecimal! | Sum of OptionMint and OptionBurn token1 volume in USD. | |
| totalVolumeUSD | BigDecimal! | Sum of OptionMint and OptionBurn volume for token0 and token1 in USD. | |
| commissions0 | BigDecimal! | All time commissions earned from Collateral0. Commissions increase with every OptionMint and collateral deposit. They may decrease in case of protocol loss, which gets realized as part of a liquidation. | |
| commissions0USD | BigDecimal! | All time token0 commissions converted to USD (calculated using token0's derivedETH and the bundle.ethPriceUSD values). | |
| commissions1 | BigDecimal! | All time commissions earned from Collateral1. | |
| commissions1USD | BigDecimal! | All time token1 commissions converted to USD. | |
| commissionsUSD | BigDecimal! | All time commissions for both tokens converted to USD. | |
Pool
Underlying pool (e.g. Uniswap V3 Pool)
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | Pool address for V3 pool, or for V4 pools, abi encoded hash of the pool key struct for the new pool. | |
| isV4Pool | Boolean | If this is a V4Pool, will be true. If it's a V3Pool, will be false | |
| hooks | Bytes | Hook contract address | |
| poolId | String | Panoptic identifier of uniswap pool | |
| feeTier | BigInt! | Fee amount | |
| tickSpacing | BigInt! | Min space between ticks | |
| token0 | Token! | Token0 | |
| token1 | Token! | Token1 | |
| txCount | BigInt! | Total transaction count | |
| liquidity | BigInt! | In range liquidity | |
| sqrtPrice | BigInt! | Current price tracker | |
| tick | BigInt | Current tick. May be null if pool has not been initialized. | |
| tickLastUpdateTimestamp | BigInt! | Timestamp of the last time this tick was updated | |
| tickLastUpdateBlockNumber | BigInt! | Block number of the last time this tick was updated | |
| poolHourData | [PoolHourData!]! | Snapshots of PoolHourData | |
| skip | Int | ||
| first | Int | ||
| orderBy | PoolHourData_orderBy | ||
| orderDirection | OrderDirection | ||
| where | PoolHourData_filter | ||
| poolDayData | [PoolDayData!]! | Snapshots of PoolDayData | |
| skip | Int | ||
| first | Int | ||
| orderBy | PoolDayData_orderBy | ||
| orderDirection | OrderDirection | ||
| where | PoolDayData_filter | ||
| token0Price | BigDecimal! | token0 per token1 | |
| token1Price | BigDecimal! | Token1 per token0 | |
| totalValueLockedToken0 | BigDecimal! | Total token 0 across all ticks | |
| totalValueLockedToken1 | BigDecimal! | Total token 1 across all ticks | |
| totalValueLockedETH | BigDecimal! | Tvl derived ETH (necessary for tvlUSD using uni's implementation) | |
| totalValueLockedUSD | BigDecimal! | Tvl USD | |
| minEnforcedTick | BigInt | The minimum enforced tick for the SFPM to create a position in this pool | |
| maxEnforcedTick | BigInt | The maximum enforced tick for the SFPM to create a position in this pool | |
| panopticPool | PanopticPool | Associated PanopticPool. Null if not created yet | |
| panopticPools | [PanopticPool!]! | Associated PanopticPools. For V3 pools, will contain at most one pool. For V4 pools, can contain multiple pools. | |
| skip | Int | ||
| first | Int | ||
| orderBy | PanopticPool_orderBy | ||
| orderDirection | OrderDirection | ||
| where | PanopticPool_filter | ||
PoolDayData
Data accumulated and condensed into day stats for each pool. If no Pool events are emitted on a given day, there will be a missing PoolDayData for that day.
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | Timestamp rounded to current day combined with pool id | |
| pool | Pool! | Pointer to Pool | |
| date | Int! | Timestamp rounded to current day by dividing by 86400 | |
| txCount | BigInt! | Number of transactions during period | |
| liquidity | BigInt! | In range liquidity at end of period | |
| token0Price | BigDecimal! | Price of token0 - derived from sqrtPrice | |
| token1Price | BigDecimal! | Price of token1 - derived from sqrtPrice | |
| volumeToken0 | BigDecimal! | Volume in token0 | |
| volumeToken1 | BigDecimal! | Volume in token1 | |
| volumeUSD | BigDecimal! | Volume in USD | |
| feesUSD | BigDecimal! | Fees in USD | |
| open | BigDecimal! | Opening price of token0 | |
| high | BigDecimal! | High price of token0 | |
| low | BigDecimal! | Low price of token0 | |
| close | BigDecimal! | Close price of token0 | |
PoolHourData
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | Format: pool address + # + timestamp | |
| pool | Pool! | Pointer to pool | |
| txCount | BigInt! | Number of transactions during period | |
| liquidity | BigInt! | In range liquidity at end of period | |
| token0Price | BigDecimal! | Price of token0 - derived from sqrtPrice | |
| token1Price | BigDecimal! | Price of token1 - derived from sqrtPrice | |
| volumeToken0 | BigDecimal! | Volume in token0 | |
| volumeToken1 | BigDecimal! | Volume in token1 | |
| volumeUSD | BigDecimal! | Volume in USD | |
| open | BigDecimal! | Opening price of token0 | |
| high | BigDecimal! | High price of token0 | |
| low | BigDecimal! | Low price of token0 | |
| close | BigDecimal! | Close price of token0 | |
| periodStartUnix | Int! | Unix timestamp for start of hour | |
PremiumSettled
Emitted when premium is settled independent of a mint/burn (e.g. during settleLongPremium)
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | ||
| hash | String! | ||
| logIndex | BigInt! | ||
| eventType | EventType! | ||
| from | String! | ||
| to | String! | ||
| blockNumber | BigInt! | ||
| timestamp | BigInt! | ||
| gasUsed | BigInt! | ||
| gasPrice | BigInt! | ||
| pool | Pool! | ||
| user | Account! | Address of the owner of the settled position | |
| tokenId | TokenId! | TokenId of the settled position | |
| legIndex | BigInt | The leg index of | |
| settledAmounts | BigInt! | LeftRight encoding for the amount of premium settled for token0 (right slot) and token1 (left slot) | |
| settledAmount0 | BigInt! | Amount settled for token0 | |
| settledAmount0InEth | BigDecimal | Amount settled for token0 in ETH | |
| settledAmount0InUsd | BigDecimal | Amount settled for token0 in USD | |
| settledAmount1 | BigInt! | Amount settled for token1 | |
| settledAmount1InEth | BigDecimal | Amount settled for token1 in ETH | |
| settledAmount1InUsd | BigDecimal | Amount settled for token1 in USD | |
| panopticPool | PanopticPool! | PanopticPool mint is within (from event.address) | |
| panopticVersion | BigDecimal | Version of Panoptic contract that emitted this event | |
Token
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | Token address | |
| decimals | BigInt! | Token decimals | |
| name | String! | Token name | |
| symbol | String! | Token symbol | |
| totalSupply | BigInt! | Token total supply | |
| txCount | BigInt! | Number of transactions across all pools that include this token | |
| derivedETH | BigDecimal! | Derived price in ETH, used to provide human readable price | |
| whitelistPools | [Pool!]! | Pools token is in that are white listed for USD pricing | |
| skip | Int | ||
| first | Int | ||
| orderBy | Pool_orderBy | ||
| orderDirection | OrderDirection | ||
| where | Pool_filter | ||
TokenId
An ERC-1155 ID representing a position.
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | The ERC-1155 TokenId for this position. See the TokenId.sol for more information on its structure. | |
| idHexString | String! | Hex stringified tokenId | |
| pool | Pool! | Pool position is within | |
| tokenCount | BigInt! | Also known as positionSize, the total net number of contracts for this tokenId, expressed in terms of the asset | |
| accountBalances | [AccountBalance!]! | AccountBalances that own an instance of this TokenId | |
| skip | Int | ||
| first | Int | ||
| orderBy | AccountBalance_orderBy | ||
| orderDirection | OrderDirection | ||
| where | AccountBalance_filter | ||
| legs | [Leg!]! | Legs in this tokenId | |
| skip | Int | ||
| first | Int | ||
| orderBy | Leg_orderBy | ||
| orderDirection | OrderDirection | ||
| where | Leg_filter | ||
TokenizedPositionBurnt
SFPM tokenized position burn
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | ||
| hash | String! | ||
| logIndex | BigInt! | ||
| eventType | EventType! | ||
| from | String! | ||
| to | String! | ||
| blockNumber | BigInt! | ||
| timestamp | BigInt! | ||
| gasUsed | BigInt! | ||
| gasPrice | BigInt! | ||
| pool | Pool! | ||
| recipient | Account! | User that burnt the position | |
| positionSize | BigInt! | The number of contracts burnt, expressed in terms of the asset | |
| tokenId | TokenId! | TokenId of the burnt option | |
| panopticVersion | BigDecimal | Version of Panoptic contract that emitted this event | |
TokenizedPositionMinted
SFPM tokenized position mint
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | ||
| hash | String! | ||
| logIndex | BigInt! | ||
| eventType | EventType! | ||
| from | String! | ||
| to | String! | ||
| blockNumber | BigInt! | ||
| timestamp | BigInt! | ||
| gasUsed | BigInt! | ||
| gasPrice | BigInt! | ||
| pool | Pool! | ||
| caller | Account! | User that minted the position | |
| positionSize | BigInt! | The number of contracts minted, expressed in terms of the asset | |
| tokenId | TokenId! | TokenId of the minted position | |
| panopticVersion | BigDecimal | Version of Panoptic contract that emitted this event | |
TokenizedPositionRolled
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | ||
| hash | String! | ||
| logIndex | BigInt! | ||
| eventType | EventType! | ||
| from | String! | ||
| to | String! | ||
| blockNumber | BigInt! | ||
| timestamp | BigInt! | ||
| gasUsed | BigInt! | ||
| gasPrice | BigInt! | ||
| pool | Pool! | ||
| recipient | Account! | User that rolled the position | |
| oldTokenId | TokenId! | TokenId of the burnt position | |
| newTokenId | TokenId! | TokenId of the newly minted position | |
| positionSize | BigInt! | The number of contracts rolled, expressed in terms of the asset | |
Block
| Field | Argument | Type | Description |
|---|---|---|---|
| hash | Bytes | The hash of the block | |
| number | Int! | The block number | |
| timestamp | Int | Integer representation of the timestamp stored in blocks for the chain | |
| parentHash | Bytes | The hash of the parent block | |
Meta
The type for the top-level _meta field
| Field | Argument | Type | Description |
|---|---|---|---|
| block | _Block_! | Information about a specific subgraph block. The hash of the block will be null if the _meta field has a block constraint that asks for a block number. It will be filled if the _meta field has no block constraint and therefore asks for the latest block | |
| deployment | String! | The deployment ID | |
| hasIndexingErrors | Boolean! | If | |
Inputs
AccountBalance_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| owner | String | ||
| owner_not | String | ||
| owner_gt | String | ||
| owner_lt | String | ||
| owner_gte | String | ||
| owner_lte | String | ||
| owner_in | [String!] | ||
| owner_not_in | [String!] | ||
| owner_contains | String | ||
| owner_contains_nocase | String | ||
| owner_not_contains | String | ||
| owner_not_contains_nocase | String | ||
| owner_starts_with | String | ||
| owner_starts_with_nocase | String | ||
| owner_not_starts_with | String | ||
| owner_not_starts_with_nocase | String | ||
| owner_ends_with | String | ||
| owner_ends_with_nocase | String | ||
| owner_not_ends_with | String | ||
| owner_not_ends_with_nocase | String | ||
| owner_ | Account_filter | ||
| sender | String | ||
| sender_not | String | ||
| sender_gt | String | ||
| sender_lt | String | ||
| sender_gte | String | ||
| sender_lte | String | ||
| sender_in | [String!] | ||
| sender_not_in | [String!] | ||
| sender_contains | String | ||
| sender_contains_nocase | String | ||
| sender_not_contains | String | ||
| sender_not_contains_nocase | String | ||
| sender_starts_with | String | ||
| sender_starts_with_nocase | String | ||
| sender_not_starts_with | String | ||
| sender_not_starts_with_nocase | String | ||
| sender_ends_with | String | ||
| sender_ends_with_nocase | String | ||
| sender_not_ends_with | String | ||
| sender_not_ends_with_nocase | String | ||
| sender_ | Account_filter | ||
| tokenId | String | ||
| tokenId_not | String | ||
| tokenId_gt | String | ||
| tokenId_lt | String | ||
| tokenId_gte | String | ||
| tokenId_lte | String | ||
| tokenId_in | [String!] | ||
| tokenId_not_in | [String!] | ||
| tokenId_contains | String | ||
| tokenId_contains_nocase | String | ||
| tokenId_not_contains | String | ||
| tokenId_not_contains_nocase | String | ||
| tokenId_starts_with | String | ||
| tokenId_starts_with_nocase | String | ||
| tokenId_not_starts_with | String | ||
| tokenId_not_starts_with_nocase | String | ||
| tokenId_ends_with | String | ||
| tokenId_ends_with_nocase | String | ||
| tokenId_not_ends_with | String | ||
| tokenId_not_ends_with_nocase | String | ||
| tokenId_ | TokenId_filter | ||
| legLiquidities | [String!] | ||
| legLiquidities_not | [String!] | ||
| legLiquidities_contains | [String!] | ||
| legLiquidities_contains_nocase | [String!] | ||
| legLiquidities_not_contains | [String!] | ||
| legLiquidities_not_contains_nocase | [String!] | ||
| legLiquidities_ | LegLiquidities_filter | ||
| tokenCount | BigInt | ||
| tokenCount_not | BigInt | ||
| tokenCount_gt | BigInt | ||
| tokenCount_lt | BigInt | ||
| tokenCount_gte | BigInt | ||
| tokenCount_lte | BigInt | ||
| tokenCount_in | [BigInt!] | ||
| tokenCount_not_in | [BigInt!] | ||
| positionSize | BigInt | ||
| positionSize_not | BigInt | ||
| positionSize_gt | BigInt | ||
| positionSize_lt | BigInt | ||
| positionSize_gte | BigInt | ||
| positionSize_lte | BigInt | ||
| positionSize_in | [BigInt!] | ||
| positionSize_not_in | [BigInt!] | ||
| panopticPoolAccount | String | ||
| panopticPoolAccount_not | String | ||
| panopticPoolAccount_gt | String | ||
| panopticPoolAccount_lt | String | ||
| panopticPoolAccount_gte | String | ||
| panopticPoolAccount_lte | String | ||
| panopticPoolAccount_in | [String!] | ||
| panopticPoolAccount_not_in | [String!] | ||
| panopticPoolAccount_contains | String | ||
| panopticPoolAccount_contains_nocase | String | ||
| panopticPoolAccount_not_contains | String | ||
| panopticPoolAccount_not_contains_nocase | String | ||
| panopticPoolAccount_starts_with | String | ||
| panopticPoolAccount_starts_with_nocase | String | ||
| panopticPoolAccount_not_starts_with | String | ||
| panopticPoolAccount_not_starts_with_nocase | String | ||
| panopticPoolAccount_ends_with | String | ||
| panopticPoolAccount_ends_with_nocase | String | ||
| panopticPoolAccount_not_ends_with | String | ||
| panopticPoolAccount_not_ends_with_nocase | String | ||
| panopticPoolAccount_ | PanopticPoolAccount_filter | ||
| premiaSettled0Total | BigInt | ||
| premiaSettled0Total_not | BigInt | ||
| premiaSettled0Total_gt | BigInt | ||
| premiaSettled0Total_lt | BigInt | ||
| premiaSettled0Total_gte | BigInt | ||
| premiaSettled0Total_lte | BigInt | ||
| premiaSettled0Total_in | [BigInt!] | ||
| premiaSettled0Total_not_in | [BigInt!] | ||
| premiaSettled0InEthTotal | BigDecimal | ||
| premiaSettled0InEthTotal_not | BigDecimal | ||
| premiaSettled0InEthTotal_gt | BigDecimal | ||
| premiaSettled0InEthTotal_lt | BigDecimal | ||
| premiaSettled0InEthTotal_gte | BigDecimal | ||
| premiaSettled0InEthTotal_lte | BigDecimal | ||
| premiaSettled0InEthTotal_in | [BigDecimal!] | ||
| premiaSettled0InEthTotal_not_in | [BigDecimal!] | ||
| premiaSettled0InUsdTotal | BigDecimal | ||
| premiaSettled0InUsdTotal_not | BigDecimal | ||
| premiaSettled0InUsdTotal_gt | BigDecimal | ||
| premiaSettled0InUsdTotal_lt | BigDecimal | ||
| premiaSettled0InUsdTotal_gte | BigDecimal | ||
| premiaSettled0InUsdTotal_lte | BigDecimal | ||
| premiaSettled0InUsdTotal_in | [BigDecimal!] | ||
| premiaSettled0InUsdTotal_not_in | [BigDecimal!] | ||
| premiaSettled1Total | BigInt | ||
| premiaSettled1Total_not | BigInt | ||
| premiaSettled1Total_gt | BigInt | ||
| premiaSettled1Total_lt | BigInt | ||
| premiaSettled1Total_gte | BigInt | ||
| premiaSettled1Total_lte | BigInt | ||
| premiaSettled1Total_in | [BigInt!] | ||
| premiaSettled1Total_not_in | [BigInt!] | ||
| premiaSettled1InEthTotal | BigDecimal | ||
| premiaSettled1InEthTotal_not | BigDecimal | ||
| premiaSettled1InEthTotal_gt | BigDecimal | ||
| premiaSettled1InEthTotal_lt | BigDecimal | ||
| premiaSettled1InEthTotal_gte | BigDecimal | ||
| premiaSettled1InEthTotal_lte | BigDecimal | ||
| premiaSettled1InEthTotal_in | [BigDecimal!] | ||
| premiaSettled1InEthTotal_not_in | [BigDecimal!] | ||
| premiaSettled1InUsdTotal | BigDecimal | ||
| premiaSettled1InUsdTotal_not | BigDecimal | ||
| premiaSettled1InUsdTotal_gt | BigDecimal | ||
| premiaSettled1InUsdTotal_lt | BigDecimal | ||
| premiaSettled1InUsdTotal_gte | BigDecimal | ||
| premiaSettled1InUsdTotal_lte | BigDecimal | ||
| premiaSettled1InUsdTotal_in | [BigDecimal!] | ||
| premiaSettled1InUsdTotal_not_in | [BigDecimal!] | ||
| underlyingPool | String | ||
| underlyingPool_not | String | ||
| underlyingPool_gt | String | ||
| underlyingPool_lt | String | ||
| underlyingPool_gte | String | ||
| underlyingPool_lte | String | ||
| underlyingPool_in | [String!] | ||
| underlyingPool_not_in | [String!] | ||
| underlyingPool_contains | String | ||
| underlyingPool_contains_nocase | String | ||
| underlyingPool_not_contains | String | ||
| underlyingPool_not_contains_nocase | String | ||
| underlyingPool_starts_with | String | ||
| underlyingPool_starts_with_nocase | String | ||
| underlyingPool_not_starts_with | String | ||
| underlyingPool_not_starts_with_nocase | String | ||
| underlyingPool_ends_with | String | ||
| underlyingPool_ends_with_nocase | String | ||
| underlyingPool_not_ends_with | String | ||
| underlyingPool_not_ends_with_nocase | String | ||
| underlyingPool_ | Pool_filter | ||
| txnOpened | String | ||
| txnOpened_not | String | ||
| txnOpened_gt | String | ||
| txnOpened_lt | String | ||
| txnOpened_gte | String | ||
| txnOpened_lte | String | ||
| txnOpened_in | [String!] | ||
| txnOpened_not_in | [String!] | ||
| txnOpened_contains | String | ||
| txnOpened_contains_nocase | String | ||
| txnOpened_not_contains | String | ||
| txnOpened_not_contains_nocase | String | ||
| txnOpened_starts_with | String | ||
| txnOpened_starts_with_nocase | String | ||
| txnOpened_not_starts_with | String | ||
| txnOpened_not_starts_with_nocase | String | ||
| txnOpened_ends_with | String | ||
| txnOpened_ends_with_nocase | String | ||
| txnOpened_not_ends_with | String | ||
| txnOpened_not_ends_with_nocase | String | ||
| txnOpened_ | Event_filter | ||
| txnClosed | String | ||
| txnClosed_not | String | ||
| txnClosed_gt | String | ||
| txnClosed_lt | String | ||
| txnClosed_gte | String | ||
| txnClosed_lte | String | ||
| txnClosed_in | [String!] | ||
| txnClosed_not_in | [String!] | ||
| txnClosed_contains | String | ||
| txnClosed_contains_nocase | String | ||
| txnClosed_not_contains | String | ||
| txnClosed_not_contains_nocase | String | ||
| txnClosed_starts_with | String | ||
| txnClosed_starts_with_nocase | String | ||
| txnClosed_not_starts_with | String | ||
| txnClosed_not_starts_with_nocase | String | ||
| txnClosed_ends_with | String | ||
| txnClosed_ends_with_nocase | String | ||
| txnClosed_not_ends_with | String | ||
| txnClosed_not_ends_with_nocase | String | ||
| txnClosed_ | Event_filter | ||
| isOpen | Int | ||
| isOpen_not | Int | ||
| isOpen_gt | Int | ||
| isOpen_lt | Int | ||
| isOpen_gte | Int | ||
| isOpen_lte | Int | ||
| isOpen_in | [Int!] | ||
| isOpen_not_in | [Int!] | ||
| createdTimestamp | BigInt | ||
| createdTimestamp_not | BigInt | ||
| createdTimestamp_gt | BigInt | ||
| createdTimestamp_lt | BigInt | ||
| createdTimestamp_gte | BigInt | ||
| createdTimestamp_lte | BigInt | ||
| createdTimestamp_in | [BigInt!] | ||
| createdTimestamp_not_in | [BigInt!] | ||
| createdBlockNumber | BigInt | ||
| createdBlockNumber_not | BigInt | ||
| createdBlockNumber_gt | BigInt | ||
| createdBlockNumber_lt | BigInt | ||
| createdBlockNumber_gte | BigInt | ||
| createdBlockNumber_lte | BigInt | ||
| createdBlockNumber_in | [BigInt!] | ||
| createdBlockNumber_not_in | [BigInt!] | ||
| closedTimestamp | BigInt | ||
| closedTimestamp_not | BigInt | ||
| closedTimestamp_gt | BigInt | ||
| closedTimestamp_lt | BigInt | ||
| closedTimestamp_gte | BigInt | ||
| closedTimestamp_lte | BigInt | ||
| closedTimestamp_in | [BigInt!] | ||
| closedTimestamp_not_in | [BigInt!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [AccountBalance_filter] | ||
| or | [AccountBalance_filter] | ||
AccountLiquidated_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| hash | String | ||
| hash_not | String | ||
| hash_gt | String | ||
| hash_lt | String | ||
| hash_gte | String | ||
| hash_lte | String | ||
| hash_in | [String!] | ||
| hash_not_in | [String!] | ||
| hash_contains | String | ||
| hash_contains_nocase | String | ||
| hash_not_contains | String | ||
| hash_not_contains_nocase | String | ||
| hash_starts_with | String | ||
| hash_starts_with_nocase | String | ||
| hash_not_starts_with | String | ||
| hash_not_starts_with_nocase | String | ||
| hash_ends_with | String | ||
| hash_ends_with_nocase | String | ||
| hash_not_ends_with | String | ||
| hash_not_ends_with_nocase | String | ||
| logIndex | BigInt | ||
| logIndex_not | BigInt | ||
| logIndex_gt | BigInt | ||
| logIndex_lt | BigInt | ||
| logIndex_gte | BigInt | ||
| logIndex_lte | BigInt | ||
| logIndex_in | [BigInt!] | ||
| logIndex_not_in | [BigInt!] | ||
| eventType | EventType | ||
| eventType_not | EventType | ||
| eventType_in | [EventType!] | ||
| eventType_not_in | [EventType!] | ||
| from | String | ||
| from_not | String | ||
| from_gt | String | ||
| from_lt | String | ||
| from_gte | String | ||
| from_lte | String | ||
| from_in | [String!] | ||
| from_not_in | [String!] | ||
| from_contains | String | ||
| from_contains_nocase | String | ||
| from_not_contains | String | ||
| from_not_contains_nocase | String | ||
| from_starts_with | String | ||
| from_starts_with_nocase | String | ||
| from_not_starts_with | String | ||
| from_not_starts_with_nocase | String | ||
| from_ends_with | String | ||
| from_ends_with_nocase | String | ||
| from_not_ends_with | String | ||
| from_not_ends_with_nocase | String | ||
| to | String | ||
| to_not | String | ||
| to_gt | String | ||
| to_lt | String | ||
| to_gte | String | ||
| to_lte | String | ||
| to_in | [String!] | ||
| to_not_in | [String!] | ||
| to_contains | String | ||
| to_contains_nocase | String | ||
| to_not_contains | String | ||
| to_not_contains_nocase | String | ||
| to_starts_with | String | ||
| to_starts_with_nocase | String | ||
| to_not_starts_with | String | ||
| to_not_starts_with_nocase | String | ||
| to_ends_with | String | ||
| to_ends_with_nocase | String | ||
| to_not_ends_with | String | ||
| to_not_ends_with_nocase | String | ||
| blockNumber | BigInt | ||
| blockNumber_not | BigInt | ||
| blockNumber_gt | BigInt | ||
| blockNumber_lt | BigInt | ||
| blockNumber_gte | BigInt | ||
| blockNumber_lte | BigInt | ||
| blockNumber_in | [BigInt!] | ||
| blockNumber_not_in | [BigInt!] | ||
| timestamp | BigInt | ||
| timestamp_not | BigInt | ||
| timestamp_gt | BigInt | ||
| timestamp_lt | BigInt | ||
| timestamp_gte | BigInt | ||
| timestamp_lte | BigInt | ||
| timestamp_in | [BigInt!] | ||
| timestamp_not_in | [BigInt!] | ||
| gasUsed | BigInt | ||
| gasUsed_not | BigInt | ||
| gasUsed_gt | BigInt | ||
| gasUsed_lt | BigInt | ||
| gasUsed_gte | BigInt | ||
| gasUsed_lte | BigInt | ||
| gasUsed_in | [BigInt!] | ||
| gasUsed_not_in | [BigInt!] | ||
| gasPrice | BigInt | ||
| gasPrice_not | BigInt | ||
| gasPrice_gt | BigInt | ||
| gasPrice_lt | BigInt | ||
| gasPrice_gte | BigInt | ||
| gasPrice_lte | BigInt | ||
| gasPrice_in | [BigInt!] | ||
| gasPrice_not_in | [BigInt!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| liquidator | String | ||
| liquidator_not | String | ||
| liquidator_gt | String | ||
| liquidator_lt | String | ||
| liquidator_gte | String | ||
| liquidator_lte | String | ||
| liquidator_in | [String!] | ||
| liquidator_not_in | [String!] | ||
| liquidator_contains | String | ||
| liquidator_contains_nocase | String | ||
| liquidator_not_contains | String | ||
| liquidator_not_contains_nocase | String | ||
| liquidator_starts_with | String | ||
| liquidator_starts_with_nocase | String | ||
| liquidator_not_starts_with | String | ||
| liquidator_not_starts_with_nocase | String | ||
| liquidator_ends_with | String | ||
| liquidator_ends_with_nocase | String | ||
| liquidator_not_ends_with | String | ||
| liquidator_not_ends_with_nocase | String | ||
| liquidator_ | Account_filter | ||
| liquidatee | String | ||
| liquidatee_not | String | ||
| liquidatee_gt | String | ||
| liquidatee_lt | String | ||
| liquidatee_gte | String | ||
| liquidatee_lte | String | ||
| liquidatee_in | [String!] | ||
| liquidatee_not_in | [String!] | ||
| liquidatee_contains | String | ||
| liquidatee_contains_nocase | String | ||
| liquidatee_not_contains | String | ||
| liquidatee_not_contains_nocase | String | ||
| liquidatee_starts_with | String | ||
| liquidatee_starts_with_nocase | String | ||
| liquidatee_not_starts_with | String | ||
| liquidatee_not_starts_with_nocase | String | ||
| liquidatee_ends_with | String | ||
| liquidatee_ends_with_nocase | String | ||
| liquidatee_not_ends_with | String | ||
| liquidatee_not_ends_with_nocase | String | ||
| liquidatee_ | Account_filter | ||
| bonusAmounts | BigInt | ||
| bonusAmounts_not | BigInt | ||
| bonusAmounts_gt | BigInt | ||
| bonusAmounts_lt | BigInt | ||
| bonusAmounts_gte | BigInt | ||
| bonusAmounts_lte | BigInt | ||
| bonusAmounts_in | [BigInt!] | ||
| bonusAmounts_not_in | [BigInt!] | ||
| liquidationBonus0 | BigInt | ||
| liquidationBonus0_not | BigInt | ||
| liquidationBonus0_gt | BigInt | ||
| liquidationBonus0_lt | BigInt | ||
| liquidationBonus0_gte | BigInt | ||
| liquidationBonus0_lte | BigInt | ||
| liquidationBonus0_in | [BigInt!] | ||
| liquidationBonus0_not_in | [BigInt!] | ||
| liquidationBonus1 | BigInt | ||
| liquidationBonus1_not | BigInt | ||
| liquidationBonus1_gt | BigInt | ||
| liquidationBonus1_lt | BigInt | ||
| liquidationBonus1_gte | BigInt | ||
| liquidationBonus1_lte | BigInt | ||
| liquidationBonus1_in | [BigInt!] | ||
| liquidationBonus1_not_in | [BigInt!] | ||
| liquidationBonusUSD | BigDecimal | ||
| liquidationBonusUSD_not | BigDecimal | ||
| liquidationBonusUSD_gt | BigDecimal | ||
| liquidationBonusUSD_lt | BigDecimal | ||
| liquidationBonusUSD_gte | BigDecimal | ||
| liquidationBonusUSD_lte | BigDecimal | ||
| liquidationBonusUSD_in | [BigDecimal!] | ||
| liquidationBonusUSD_not_in | [BigDecimal!] | ||
| tickAt | Int | ||
| tickAt_not | Int | ||
| tickAt_gt | Int | ||
| tickAt_lt | Int | ||
| tickAt_gte | Int | ||
| tickAt_lte | Int | ||
| tickAt_in | [Int!] | ||
| tickAt_not_in | [Int!] | ||
| panopticPool | String | ||
| panopticPool_not | String | ||
| panopticPool_gt | String | ||
| panopticPool_lt | String | ||
| panopticPool_gte | String | ||
| panopticPool_lte | String | ||
| panopticPool_in | [String!] | ||
| panopticPool_not_in | [String!] | ||
| panopticPool_contains | String | ||
| panopticPool_contains_nocase | String | ||
| panopticPool_not_contains | String | ||
| panopticPool_not_contains_nocase | String | ||
| panopticPool_starts_with | String | ||
| panopticPool_starts_with_nocase | String | ||
| panopticPool_not_starts_with | String | ||
| panopticPool_not_starts_with_nocase | String | ||
| panopticPool_ends_with | String | ||
| panopticPool_ends_with_nocase | String | ||
| panopticPool_not_ends_with | String | ||
| panopticPool_not_ends_with_nocase | String | ||
| panopticPool_ | PanopticPool_filter | ||
| optionBurns_ | OptionBurn_filter | ||
| panopticVersion | BigDecimal | ||
| panopticVersion_not | BigDecimal | ||
| panopticVersion_gt | BigDecimal | ||
| panopticVersion_lt | BigDecimal | ||
| panopticVersion_gte | BigDecimal | ||
| panopticVersion_lte | BigDecimal | ||
| panopticVersion_in | [BigDecimal!] | ||
| panopticVersion_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [AccountLiquidated_filter] | ||
| or | [AccountLiquidated_filter] | ||
Account_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| accountBalances_ | AccountBalance_filter | ||
| panopticPoolAccount_ | PanopticPoolAccount_filter | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [Account_filter] | ||
| or | [Account_filter] | ||
BlockChangedFilter
| Field | Type | Description | |
|---|---|---|---|
| number_gte | Int! | ||
Block_height
| Field | Type | Description | |
|---|---|---|---|
| hash | Bytes | ||
| number | Int | ||
| number_gte | Int | ||
Bundle_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| ethPriceUSD | BigDecimal | ||
| ethPriceUSD_not | BigDecimal | ||
| ethPriceUSD_gt | BigDecimal | ||
| ethPriceUSD_lt | BigDecimal | ||
| ethPriceUSD_gte | BigDecimal | ||
| ethPriceUSD_lte | BigDecimal | ||
| ethPriceUSD_in | [BigDecimal!] | ||
| ethPriceUSD_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [Bundle_filter] | ||
| or | [Bundle_filter] | ||
Burn_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| hash | String | ||
| hash_not | String | ||
| hash_gt | String | ||
| hash_lt | String | ||
| hash_gte | String | ||
| hash_lte | String | ||
| hash_in | [String!] | ||
| hash_not_in | [String!] | ||
| hash_contains | String | ||
| hash_contains_nocase | String | ||
| hash_not_contains | String | ||
| hash_not_contains_nocase | String | ||
| hash_starts_with | String | ||
| hash_starts_with_nocase | String | ||
| hash_not_starts_with | String | ||
| hash_not_starts_with_nocase | String | ||
| hash_ends_with | String | ||
| hash_ends_with_nocase | String | ||
| hash_not_ends_with | String | ||
| hash_not_ends_with_nocase | String | ||
| logIndex | BigInt | ||
| logIndex_not | BigInt | ||
| logIndex_gt | BigInt | ||
| logIndex_lt | BigInt | ||
| logIndex_gte | BigInt | ||
| logIndex_lte | BigInt | ||
| logIndex_in | [BigInt!] | ||
| logIndex_not_in | [BigInt!] | ||
| eventType | EventType | ||
| eventType_not | EventType | ||
| eventType_in | [EventType!] | ||
| eventType_not_in | [EventType!] | ||
| from | String | ||
| from_not | String | ||
| from_gt | String | ||
| from_lt | String | ||
| from_gte | String | ||
| from_lte | String | ||
| from_in | [String!] | ||
| from_not_in | [String!] | ||
| from_contains | String | ||
| from_contains_nocase | String | ||
| from_not_contains | String | ||
| from_not_contains_nocase | String | ||
| from_starts_with | String | ||
| from_starts_with_nocase | String | ||
| from_not_starts_with | String | ||
| from_not_starts_with_nocase | String | ||
| from_ends_with | String | ||
| from_ends_with_nocase | String | ||
| from_not_ends_with | String | ||
| from_not_ends_with_nocase | String | ||
| to | String | ||
| to_not | String | ||
| to_gt | String | ||
| to_lt | String | ||
| to_gte | String | ||
| to_lte | String | ||
| to_in | [String!] | ||
| to_not_in | [String!] | ||
| to_contains | String | ||
| to_contains_nocase | String | ||
| to_not_contains | String | ||
| to_not_contains_nocase | String | ||
| to_starts_with | String | ||
| to_starts_with_nocase | String | ||
| to_not_starts_with | String | ||
| to_not_starts_with_nocase | String | ||
| to_ends_with | String | ||
| to_ends_with_nocase | String | ||
| to_not_ends_with | String | ||
| to_not_ends_with_nocase | String | ||
| blockNumber | BigInt | ||
| blockNumber_not | BigInt | ||
| blockNumber_gt | BigInt | ||
| blockNumber_lt | BigInt | ||
| blockNumber_gte | BigInt | ||
| blockNumber_lte | BigInt | ||
| blockNumber_in | [BigInt!] | ||
| blockNumber_not_in | [BigInt!] | ||
| timestamp | BigInt | ||
| timestamp_not | BigInt | ||
| timestamp_gt | BigInt | ||
| timestamp_lt | BigInt | ||
| timestamp_gte | BigInt | ||
| timestamp_lte | BigInt | ||
| timestamp_in | [BigInt!] | ||
| timestamp_not_in | [BigInt!] | ||
| gasUsed | BigInt | ||
| gasUsed_not | BigInt | ||
| gasUsed_gt | BigInt | ||
| gasUsed_lt | BigInt | ||
| gasUsed_gte | BigInt | ||
| gasUsed_lte | BigInt | ||
| gasUsed_in | [BigInt!] | ||
| gasUsed_not_in | [BigInt!] | ||
| gasPrice | BigInt | ||
| gasPrice_not | BigInt | ||
| gasPrice_gt | BigInt | ||
| gasPrice_lt | BigInt | ||
| gasPrice_gte | BigInt | ||
| gasPrice_lte | BigInt | ||
| gasPrice_in | [BigInt!] | ||
| gasPrice_not_in | [BigInt!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| owner | String | ||
| owner_not | String | ||
| owner_gt | String | ||
| owner_lt | String | ||
| owner_gte | String | ||
| owner_lte | String | ||
| owner_in | [String!] | ||
| owner_not_in | [String!] | ||
| owner_contains | String | ||
| owner_contains_nocase | String | ||
| owner_not_contains | String | ||
| owner_not_contains_nocase | String | ||
| owner_starts_with | String | ||
| owner_starts_with_nocase | String | ||
| owner_not_starts_with | String | ||
| owner_not_starts_with_nocase | String | ||
| owner_ends_with | String | ||
| owner_ends_with_nocase | String | ||
| owner_not_ends_with | String | ||
| owner_not_ends_with_nocase | String | ||
| owner_ | Account_filter | ||
| tickLower | Int | ||
| tickLower_not | Int | ||
| tickLower_gt | Int | ||
| tickLower_lt | Int | ||
| tickLower_gte | Int | ||
| tickLower_lte | Int | ||
| tickLower_in | [Int!] | ||
| tickLower_not_in | [Int!] | ||
| tickUpper | Int | ||
| tickUpper_not | Int | ||
| tickUpper_gt | Int | ||
| tickUpper_lt | Int | ||
| tickUpper_gte | Int | ||
| tickUpper_lte | Int | ||
| tickUpper_in | [Int!] | ||
| tickUpper_not_in | [Int!] | ||
| amount | BigInt | ||
| amount_not | BigInt | ||
| amount_gt | BigInt | ||
| amount_lt | BigInt | ||
| amount_gte | BigInt | ||
| amount_lte | BigInt | ||
| amount_in | [BigInt!] | ||
| amount_not_in | [BigInt!] | ||
| amount0 | BigDecimal | ||
| amount0_not | BigDecimal | ||
| amount0_gt | BigDecimal | ||
| amount0_lt | BigDecimal | ||
| amount0_gte | BigDecimal | ||
| amount0_lte | BigDecimal | ||
| amount0_in | [BigDecimal!] | ||
| amount0_not_in | [BigDecimal!] | ||
| amount1 | BigDecimal | ||
| amount1_not | BigDecimal | ||
| amount1_gt | BigDecimal | ||
| amount1_lt | BigDecimal | ||
| amount1_gte | BigDecimal | ||
| amount1_lte | BigDecimal | ||
| amount1_in | [BigDecimal!] | ||
| amount1_not_in | [BigDecimal!] | ||
| token0 | String | ||
| token0_not | String | ||
| token0_gt | String | ||
| token0_lt | String | ||
| token0_gte | String | ||
| token0_lte | String | ||
| token0_in | [String!] | ||
| token0_not_in | [String!] | ||
| token0_contains | String | ||
| token0_contains_nocase | String | ||
| token0_not_contains | String | ||
| token0_not_contains_nocase | String | ||
| token0_starts_with | String | ||
| token0_starts_with_nocase | String | ||
| token0_not_starts_with | String | ||
| token0_not_starts_with_nocase | String | ||
| token0_ends_with | String | ||
| token0_ends_with_nocase | String | ||
| token0_not_ends_with | String | ||
| token0_not_ends_with_nocase | String | ||
| token0_ | Token_filter | ||
| token1 | String | ||
| token1_not | String | ||
| token1_gt | String | ||
| token1_lt | String | ||
| token1_gte | String | ||
| token1_lte | String | ||
| token1_in | [String!] | ||
| token1_not_in | [String!] | ||
| token1_contains | String | ||
| token1_contains_nocase | String | ||
| token1_not_contains | String | ||
| token1_not_contains_nocase | String | ||
| token1_starts_with | String | ||
| token1_starts_with_nocase | String | ||
| token1_not_starts_with | String | ||
| token1_not_starts_with_nocase | String | ||
| token1_ends_with | String | ||
| token1_ends_with_nocase | String | ||
| token1_not_ends_with | String | ||
| token1_not_ends_with_nocase | String | ||
| token1_ | Token_filter | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [Burn_filter] | ||
| or | [Burn_filter] | ||
Chunk_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| owner | String | ||
| owner_not | String | ||
| owner_gt | String | ||
| owner_lt | String | ||
| owner_gte | String | ||
| owner_lte | String | ||
| owner_in | [String!] | ||
| owner_not_in | [String!] | ||
| owner_contains | String | ||
| owner_contains_nocase | String | ||
| owner_not_contains | String | ||
| owner_not_contains_nocase | String | ||
| owner_starts_with | String | ||
| owner_starts_with_nocase | String | ||
| owner_not_starts_with | String | ||
| owner_not_starts_with_nocase | String | ||
| owner_ends_with | String | ||
| owner_ends_with_nocase | String | ||
| owner_not_ends_with | String | ||
| owner_not_ends_with_nocase | String | ||
| owner_ | Account_filter | ||
| manager | String | ||
| manager_not | String | ||
| manager_gt | String | ||
| manager_lt | String | ||
| manager_gte | String | ||
| manager_lte | String | ||
| manager_in | [String!] | ||
| manager_not_in | [String!] | ||
| manager_contains | String | ||
| manager_contains_nocase | String | ||
| manager_not_contains | String | ||
| manager_not_contains_nocase | String | ||
| manager_starts_with | String | ||
| manager_starts_with_nocase | String | ||
| manager_not_starts_with | String | ||
| manager_not_starts_with_nocase | String | ||
| manager_ends_with | String | ||
| manager_ends_with_nocase | String | ||
| manager_not_ends_with | String | ||
| manager_not_ends_with_nocase | String | ||
| manager_ | Account_filter | ||
| tickLower | BigInt | ||
| tickLower_not | BigInt | ||
| tickLower_gt | BigInt | ||
| tickLower_lt | BigInt | ||
| tickLower_gte | BigInt | ||
| tickLower_lte | BigInt | ||
| tickLower_in | [BigInt!] | ||
| tickLower_not_in | [BigInt!] | ||
| tickUpper | BigInt | ||
| tickUpper_not | BigInt | ||
| tickUpper_gt | BigInt | ||
| tickUpper_lt | BigInt | ||
| tickUpper_gte | BigInt | ||
| tickUpper_lte | BigInt | ||
| tickUpper_in | [BigInt!] | ||
| tickUpper_not_in | [BigInt!] | ||
| strike | BigInt | ||
| strike_not | BigInt | ||
| strike_gt | BigInt | ||
| strike_lt | BigInt | ||
| strike_gte | BigInt | ||
| strike_lte | BigInt | ||
| strike_in | [BigInt!] | ||
| strike_not_in | [BigInt!] | ||
| width | BigInt | ||
| width_not | BigInt | ||
| width_gt | BigInt | ||
| width_lt | BigInt | ||
| width_gte | BigInt | ||
| width_lte | BigInt | ||
| width_in | [BigInt!] | ||
| width_not_in | [BigInt!] | ||
| tokenType | BigInt | ||
| tokenType_not | BigInt | ||
| tokenType_gt | BigInt | ||
| tokenType_lt | BigInt | ||
| tokenType_gte | BigInt | ||
| tokenType_lte | BigInt | ||
| tokenType_in | [BigInt!] | ||
| tokenType_not_in | [BigInt!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| panopticPool | String | ||
| panopticPool_not | String | ||
| panopticPool_gt | String | ||
| panopticPool_lt | String | ||
| panopticPool_gte | String | ||
| panopticPool_lte | String | ||
| panopticPool_in | [String!] | ||
| panopticPool_not_in | [String!] | ||
| panopticPool_contains | String | ||
| panopticPool_contains_nocase | String | ||
| panopticPool_not_contains | String | ||
| panopticPool_not_contains_nocase | String | ||
| panopticPool_starts_with | String | ||
| panopticPool_starts_with_nocase | String | ||
| panopticPool_not_starts_with | String | ||
| panopticPool_not_starts_with_nocase | String | ||
| panopticPool_ends_with | String | ||
| panopticPool_ends_with_nocase | String | ||
| panopticPool_not_ends_with | String | ||
| panopticPool_not_ends_with_nocase | String | ||
| panopticPool_ | PanopticPool_filter | ||
| netLiquidity | BigInt | ||
| netLiquidity_not | BigInt | ||
| netLiquidity_gt | BigInt | ||
| netLiquidity_lt | BigInt | ||
| netLiquidity_gte | BigInt | ||
| netLiquidity_lte | BigInt | ||
| netLiquidity_in | [BigInt!] | ||
| netLiquidity_not_in | [BigInt!] | ||
| shortLiquidity | BigInt | ||
| shortLiquidity_not | BigInt | ||
| shortLiquidity_gt | BigInt | ||
| shortLiquidity_lt | BigInt | ||
| shortLiquidity_gte | BigInt | ||
| shortLiquidity_lte | BigInt | ||
| shortLiquidity_in | [BigInt!] | ||
| shortLiquidity_not_in | [BigInt!] | ||
| longLiquidity | BigInt | ||
| longLiquidity_not | BigInt | ||
| longLiquidity_gt | BigInt | ||
| longLiquidity_lt | BigInt | ||
| longLiquidity_gte | BigInt | ||
| longLiquidity_lte | BigInt | ||
| longLiquidity_in | [BigInt!] | ||
| longLiquidity_not_in | [BigInt!] | ||
| shortCounts | BigInt | ||
| shortCounts_not | BigInt | ||
| shortCounts_gt | BigInt | ||
| shortCounts_lt | BigInt | ||
| shortCounts_gte | BigInt | ||
| shortCounts_lte | BigInt | ||
| shortCounts_in | [BigInt!] | ||
| shortCounts_not_in | [BigInt!] | ||
| longCounts | BigInt | ||
| longCounts_not | BigInt | ||
| longCounts_gt | BigInt | ||
| longCounts_lt | BigInt | ||
| longCounts_gte | BigInt | ||
| longCounts_lte | BigInt | ||
| longCounts_in | [BigInt!] | ||
| longCounts_not_in | [BigInt!] | ||
| totalLiquidity | BigInt | ||
| totalLiquidity_not | BigInt | ||
| totalLiquidity_gt | BigInt | ||
| totalLiquidity_lt | BigInt | ||
| totalLiquidity_gte | BigInt | ||
| totalLiquidity_lte | BigInt | ||
| totalLiquidity_in | [BigInt!] | ||
| totalLiquidity_not_in | [BigInt!] | ||
| legs_ | Leg_filter | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [Chunk_filter] | ||
| or | [Chunk_filter] | ||
CollateralDayData_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| collateral | String | ||
| collateral_not | String | ||
| collateral_gt | String | ||
| collateral_lt | String | ||
| collateral_gte | String | ||
| collateral_lte | String | ||
| collateral_in | [String!] | ||
| collateral_not_in | [String!] | ||
| collateral_contains | String | ||
| collateral_contains_nocase | String | ||
| collateral_not_contains | String | ||
| collateral_not_contains_nocase | String | ||
| collateral_starts_with | String | ||
| collateral_starts_with_nocase | String | ||
| collateral_not_starts_with | String | ||
| collateral_not_starts_with_nocase | String | ||
| collateral_ends_with | String | ||
| collateral_ends_with_nocase | String | ||
| collateral_not_ends_with | String | ||
| collateral_not_ends_with_nocase | String | ||
| collateral_ | Collateral_filter | ||
| date | Int | ||
| date_not | Int | ||
| date_gt | Int | ||
| date_lt | Int | ||
| date_gte | Int | ||
| date_lte | Int | ||
| date_in | [Int!] | ||
| date_not_in | [Int!] | ||
| totalShares | BigInt | ||
| totalShares_not | BigInt | ||
| totalShares_gt | BigInt | ||
| totalShares_lt | BigInt | ||
| totalShares_gte | BigInt | ||
| totalShares_lte | BigInt | ||
| totalShares_in | [BigInt!] | ||
| totalShares_not_in | [BigInt!] | ||
| totalAssets | BigInt | ||
| totalAssets_not | BigInt | ||
| totalAssets_gt | BigInt | ||
| totalAssets_lt | BigInt | ||
| totalAssets_gte | BigInt | ||
| totalAssets_lte | BigInt | ||
| totalAssets_in | [BigInt!] | ||
| totalAssets_not_in | [BigInt!] | ||
| sharePrice | BigDecimal | ||
| sharePrice_not | BigDecimal | ||
| sharePrice_gt | BigDecimal | ||
| sharePrice_lt | BigDecimal | ||
| sharePrice_gte | BigDecimal | ||
| sharePrice_lte | BigDecimal | ||
| sharePrice_in | [BigDecimal!] | ||
| sharePrice_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [CollateralDayData_filter] | ||
| or | [CollateralDayData_filter] | ||
CollateralDeposit_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| hash | String | ||
| hash_not | String | ||
| hash_gt | String | ||
| hash_lt | String | ||
| hash_gte | String | ||
| hash_lte | String | ||
| hash_in | [String!] | ||
| hash_not_in | [String!] | ||
| hash_contains | String | ||
| hash_contains_nocase | String | ||
| hash_not_contains | String | ||
| hash_not_contains_nocase | String | ||
| hash_starts_with | String | ||
| hash_starts_with_nocase | String | ||
| hash_not_starts_with | String | ||
| hash_not_starts_with_nocase | String | ||
| hash_ends_with | String | ||
| hash_ends_with_nocase | String | ||
| hash_not_ends_with | String | ||
| hash_not_ends_with_nocase | String | ||
| logIndex | BigInt | ||
| logIndex_not | BigInt | ||
| logIndex_gt | BigInt | ||
| logIndex_lt | BigInt | ||
| logIndex_gte | BigInt | ||
| logIndex_lte | BigInt | ||
| logIndex_in | [BigInt!] | ||
| logIndex_not_in | [BigInt!] | ||
| eventType | EventType | ||
| eventType_not | EventType | ||
| eventType_in | [EventType!] | ||
| eventType_not_in | [EventType!] | ||
| from | String | ||
| from_not | String | ||
| from_gt | String | ||
| from_lt | String | ||
| from_gte | String | ||
| from_lte | String | ||
| from_in | [String!] | ||
| from_not_in | [String!] | ||
| from_contains | String | ||
| from_contains_nocase | String | ||
| from_not_contains | String | ||
| from_not_contains_nocase | String | ||
| from_starts_with | String | ||
| from_starts_with_nocase | String | ||
| from_not_starts_with | String | ||
| from_not_starts_with_nocase | String | ||
| from_ends_with | String | ||
| from_ends_with_nocase | String | ||
| from_not_ends_with | String | ||
| from_not_ends_with_nocase | String | ||
| to | String | ||
| to_not | String | ||
| to_gt | String | ||
| to_lt | String | ||
| to_gte | String | ||
| to_lte | String | ||
| to_in | [String!] | ||
| to_not_in | [String!] | ||
| to_contains | String | ||
| to_contains_nocase | String | ||
| to_not_contains | String | ||
| to_not_contains_nocase | String | ||
| to_starts_with | String | ||
| to_starts_with_nocase | String | ||
| to_not_starts_with | String | ||
| to_not_starts_with_nocase | String | ||
| to_ends_with | String | ||
| to_ends_with_nocase | String | ||
| to_not_ends_with | String | ||
| to_not_ends_with_nocase | String | ||
| blockNumber | BigInt | ||
| blockNumber_not | BigInt | ||
| blockNumber_gt | BigInt | ||
| blockNumber_lt | BigInt | ||
| blockNumber_gte | BigInt | ||
| blockNumber_lte | BigInt | ||
| blockNumber_in | [BigInt!] | ||
| blockNumber_not_in | [BigInt!] | ||
| timestamp | BigInt | ||
| timestamp_not | BigInt | ||
| timestamp_gt | BigInt | ||
| timestamp_lt | BigInt | ||
| timestamp_gte | BigInt | ||
| timestamp_lte | BigInt | ||
| timestamp_in | [BigInt!] | ||
| timestamp_not_in | [BigInt!] | ||
| gasUsed | BigInt | ||
| gasUsed_not | BigInt | ||
| gasUsed_gt | BigInt | ||
| gasUsed_lt | BigInt | ||
| gasUsed_gte | BigInt | ||
| gasUsed_lte | BigInt | ||
| gasUsed_in | [BigInt!] | ||
| gasUsed_not_in | [BigInt!] | ||
| gasPrice | BigInt | ||
| gasPrice_not | BigInt | ||
| gasPrice_gt | BigInt | ||
| gasPrice_lt | BigInt | ||
| gasPrice_gte | BigInt | ||
| gasPrice_lte | BigInt | ||
| gasPrice_in | [BigInt!] | ||
| gasPrice_not_in | [BigInt!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| sender | String | ||
| sender_not | String | ||
| sender_gt | String | ||
| sender_lt | String | ||
| sender_gte | String | ||
| sender_lte | String | ||
| sender_in | [String!] | ||
| sender_not_in | [String!] | ||
| sender_contains | String | ||
| sender_contains_nocase | String | ||
| sender_not_contains | String | ||
| sender_not_contains_nocase | String | ||
| sender_starts_with | String | ||
| sender_starts_with_nocase | String | ||
| sender_not_starts_with | String | ||
| sender_not_starts_with_nocase | String | ||
| sender_ends_with | String | ||
| sender_ends_with_nocase | String | ||
| sender_not_ends_with | String | ||
| sender_not_ends_with_nocase | String | ||
| sender_ | Account_filter | ||
| owner | String | ||
| owner_not | String | ||
| owner_gt | String | ||
| owner_lt | String | ||
| owner_gte | String | ||
| owner_lte | String | ||
| owner_in | [String!] | ||
| owner_not_in | [String!] | ||
| owner_contains | String | ||
| owner_contains_nocase | String | ||
| owner_not_contains | String | ||
| owner_not_contains_nocase | String | ||
| owner_starts_with | String | ||
| owner_starts_with_nocase | String | ||
| owner_not_starts_with | String | ||
| owner_not_starts_with_nocase | String | ||
| owner_ends_with | String | ||
| owner_ends_with_nocase | String | ||
| owner_not_ends_with | String | ||
| owner_not_ends_with_nocase | String | ||
| owner_ | Account_filter | ||
| assets | BigInt | ||
| assets_not | BigInt | ||
| assets_gt | BigInt | ||
| assets_lt | BigInt | ||
| assets_gte | BigInt | ||
| assets_lte | BigInt | ||
| assets_in | [BigInt!] | ||
| assets_not_in | [BigInt!] | ||
| shares | BigInt | ||
| shares_not | BigInt | ||
| shares_gt | BigInt | ||
| shares_lt | BigInt | ||
| shares_gte | BigInt | ||
| shares_lte | BigInt | ||
| shares_in | [BigInt!] | ||
| shares_not_in | [BigInt!] | ||
| collateral | String | ||
| collateral_not | String | ||
| collateral_gt | String | ||
| collateral_lt | String | ||
| collateral_gte | String | ||
| collateral_lte | String | ||
| collateral_in | [String!] | ||
| collateral_not_in | [String!] | ||
| collateral_contains | String | ||
| collateral_contains_nocase | String | ||
| collateral_not_contains | String | ||
| collateral_not_contains_nocase | String | ||
| collateral_starts_with | String | ||
| collateral_starts_with_nocase | String | ||
| collateral_not_starts_with | String | ||
| collateral_not_starts_with_nocase | String | ||
| collateral_ends_with | String | ||
| collateral_ends_with_nocase | String | ||
| collateral_not_ends_with | String | ||
| collateral_not_ends_with_nocase | String | ||
| collateral_ | Collateral_filter | ||
| tickAtDeposit | BigInt | ||
| tickAtDeposit_not | BigInt | ||
| tickAtDeposit_gt | BigInt | ||
| tickAtDeposit_lt | BigInt | ||
| tickAtDeposit_gte | BigInt | ||
| tickAtDeposit_lte | BigInt | ||
| tickAtDeposit_in | [BigInt!] | ||
| tickAtDeposit_not_in | [BigInt!] | ||
| tokenDerivedEthAtDeposit | BigDecimal | ||
| tokenDerivedEthAtDeposit_not | BigDecimal | ||
| tokenDerivedEthAtDeposit_gt | BigDecimal | ||
| tokenDerivedEthAtDeposit_lt | BigDecimal | ||
| tokenDerivedEthAtDeposit_gte | BigDecimal | ||
| tokenDerivedEthAtDeposit_lte | BigDecimal | ||
| tokenDerivedEthAtDeposit_in | [BigDecimal!] | ||
| tokenDerivedEthAtDeposit_not_in | [BigDecimal!] | ||
| ethPriceUSDAtDeposit | BigDecimal | ||
| ethPriceUSDAtDeposit_not | BigDecimal | ||
| ethPriceUSDAtDeposit_gt | BigDecimal | ||
| ethPriceUSDAtDeposit_lt | BigDecimal | ||
| ethPriceUSDAtDeposit_gte | BigDecimal | ||
| ethPriceUSDAtDeposit_lte | BigDecimal | ||
| ethPriceUSDAtDeposit_in | [BigDecimal!] | ||
| ethPriceUSDAtDeposit_not_in | [BigDecimal!] | ||
| panopticVersion | BigDecimal | ||
| panopticVersion_not | BigDecimal | ||
| panopticVersion_gt | BigDecimal | ||
| panopticVersion_lt | BigDecimal | ||
| panopticVersion_gte | BigDecimal | ||
| panopticVersion_lte | BigDecimal | ||
| panopticVersion_in | [BigDecimal!] | ||
| panopticVersion_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [CollateralDeposit_filter] | ||
| or | [CollateralDeposit_filter] | ||
CollateralWithdraw_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| hash | String | ||
| hash_not | String | ||
| hash_gt | String | ||
| hash_lt | String | ||
| hash_gte | String | ||
| hash_lte | String | ||
| hash_in | [String!] | ||
| hash_not_in | [String!] | ||
| hash_contains | String | ||
| hash_contains_nocase | String | ||
| hash_not_contains | String | ||
| hash_not_contains_nocase | String | ||
| hash_starts_with | String | ||
| hash_starts_with_nocase | String | ||
| hash_not_starts_with | String | ||
| hash_not_starts_with_nocase | String | ||
| hash_ends_with | String | ||
| hash_ends_with_nocase | String | ||
| hash_not_ends_with | String | ||
| hash_not_ends_with_nocase | String | ||
| logIndex | BigInt | ||
| logIndex_not | BigInt | ||
| logIndex_gt | BigInt | ||
| logIndex_lt | BigInt | ||
| logIndex_gte | BigInt | ||
| logIndex_lte | BigInt | ||
| logIndex_in | [BigInt!] | ||
| logIndex_not_in | [BigInt!] | ||
| eventType | EventType | ||
| eventType_not | EventType | ||
| eventType_in | [EventType!] | ||
| eventType_not_in | [EventType!] | ||
| from | String | ||
| from_not | String | ||
| from_gt | String | ||
| from_lt | String | ||
| from_gte | String | ||
| from_lte | String | ||
| from_in | [String!] | ||
| from_not_in | [String!] | ||
| from_contains | String | ||
| from_contains_nocase | String | ||
| from_not_contains | String | ||
| from_not_contains_nocase | String | ||
| from_starts_with | String | ||
| from_starts_with_nocase | String | ||
| from_not_starts_with | String | ||
| from_not_starts_with_nocase | String | ||
| from_ends_with | String | ||
| from_ends_with_nocase | String | ||
| from_not_ends_with | String | ||
| from_not_ends_with_nocase | String | ||
| to | String | ||
| to_not | String | ||
| to_gt | String | ||
| to_lt | String | ||
| to_gte | String | ||
| to_lte | String | ||
| to_in | [String!] | ||
| to_not_in | [String!] | ||
| to_contains | String | ||
| to_contains_nocase | String | ||
| to_not_contains | String | ||
| to_not_contains_nocase | String | ||
| to_starts_with | String | ||
| to_starts_with_nocase | String | ||
| to_not_starts_with | String | ||
| to_not_starts_with_nocase | String | ||
| to_ends_with | String | ||
| to_ends_with_nocase | String | ||
| to_not_ends_with | String | ||
| to_not_ends_with_nocase | String | ||
| blockNumber | BigInt | ||
| blockNumber_not | BigInt | ||
| blockNumber_gt | BigInt | ||
| blockNumber_lt | BigInt | ||
| blockNumber_gte | BigInt | ||
| blockNumber_lte | BigInt | ||
| blockNumber_in | [BigInt!] | ||
| blockNumber_not_in | [BigInt!] | ||
| timestamp | BigInt | ||
| timestamp_not | BigInt | ||
| timestamp_gt | BigInt | ||
| timestamp_lt | BigInt | ||
| timestamp_gte | BigInt | ||
| timestamp_lte | BigInt | ||
| timestamp_in | [BigInt!] | ||
| timestamp_not_in | [BigInt!] | ||
| gasUsed | BigInt | ||
| gasUsed_not | BigInt | ||
| gasUsed_gt | BigInt | ||
| gasUsed_lt | BigInt | ||
| gasUsed_gte | BigInt | ||
| gasUsed_lte | BigInt | ||
| gasUsed_in | [BigInt!] | ||
| gasUsed_not_in | [BigInt!] | ||
| gasPrice | BigInt | ||
| gasPrice_not | BigInt | ||
| gasPrice_gt | BigInt | ||
| gasPrice_lt | BigInt | ||
| gasPrice_gte | BigInt | ||
| gasPrice_lte | BigInt | ||
| gasPrice_in | [BigInt!] | ||
| gasPrice_not_in | [BigInt!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| sender | String | ||
| sender_not | String | ||
| sender_gt | String | ||
| sender_lt | String | ||
| sender_gte | String | ||
| sender_lte | String | ||
| sender_in | [String!] | ||
| sender_not_in | [String!] | ||
| sender_contains | String | ||
| sender_contains_nocase | String | ||
| sender_not_contains | String | ||
| sender_not_contains_nocase | String | ||
| sender_starts_with | String | ||
| sender_starts_with_nocase | String | ||
| sender_not_starts_with | String | ||
| sender_not_starts_with_nocase | String | ||
| sender_ends_with | String | ||
| sender_ends_with_nocase | String | ||
| sender_not_ends_with | String | ||
| sender_not_ends_with_nocase | String | ||
| sender_ | Account_filter | ||
| receiver | String | ||
| receiver_not | String | ||
| receiver_gt | String | ||
| receiver_lt | String | ||
| receiver_gte | String | ||
| receiver_lte | String | ||
| receiver_in | [String!] | ||
| receiver_not_in | [String!] | ||
| receiver_contains | String | ||
| receiver_contains_nocase | String | ||
| receiver_not_contains | String | ||
| receiver_not_contains_nocase | String | ||
| receiver_starts_with | String | ||
| receiver_starts_with_nocase | String | ||
| receiver_not_starts_with | String | ||
| receiver_not_starts_with_nocase | String | ||
| receiver_ends_with | String | ||
| receiver_ends_with_nocase | String | ||
| receiver_not_ends_with | String | ||
| receiver_not_ends_with_nocase | String | ||
| receiver_ | Account_filter | ||
| owner | String | ||
| owner_not | String | ||
| owner_gt | String | ||
| owner_lt | String | ||
| owner_gte | String | ||
| owner_lte | String | ||
| owner_in | [String!] | ||
| owner_not_in | [String!] | ||
| owner_contains | String | ||
| owner_contains_nocase | String | ||
| owner_not_contains | String | ||
| owner_not_contains_nocase | String | ||
| owner_starts_with | String | ||
| owner_starts_with_nocase | String | ||
| owner_not_starts_with | String | ||
| owner_not_starts_with_nocase | String | ||
| owner_ends_with | String | ||
| owner_ends_with_nocase | String | ||
| owner_not_ends_with | String | ||
| owner_not_ends_with_nocase | String | ||
| owner_ | Account_filter | ||
| assets | BigInt | ||
| assets_not | BigInt | ||
| assets_gt | BigInt | ||
| assets_lt | BigInt | ||
| assets_gte | BigInt | ||
| assets_lte | BigInt | ||
| assets_in | [BigInt!] | ||
| assets_not_in | [BigInt!] | ||
| shares | BigInt | ||
| shares_not | BigInt | ||
| shares_gt | BigInt | ||
| shares_lt | BigInt | ||
| shares_gte | BigInt | ||
| shares_lte | BigInt | ||
| shares_in | [BigInt!] | ||
| shares_not_in | [BigInt!] | ||
| collateral | String | ||
| collateral_not | String | ||
| collateral_gt | String | ||
| collateral_lt | String | ||
| collateral_gte | String | ||
| collateral_lte | String | ||
| collateral_in | [String!] | ||
| collateral_not_in | [String!] | ||
| collateral_contains | String | ||
| collateral_contains_nocase | String | ||
| collateral_not_contains | String | ||
| collateral_not_contains_nocase | String | ||
| collateral_starts_with | String | ||
| collateral_starts_with_nocase | String | ||
| collateral_not_starts_with | String | ||
| collateral_not_starts_with_nocase | String | ||
| collateral_ends_with | String | ||
| collateral_ends_with_nocase | String | ||
| collateral_not_ends_with | String | ||
| collateral_not_ends_with_nocase | String | ||
| collateral_ | Collateral_filter | ||
| tickAtWithdraw | BigInt | ||
| tickAtWithdraw_not | BigInt | ||
| tickAtWithdraw_gt | BigInt | ||
| tickAtWithdraw_lt | BigInt | ||
| tickAtWithdraw_gte | BigInt | ||
| tickAtWithdraw_lte | BigInt | ||
| tickAtWithdraw_in | [BigInt!] | ||
| tickAtWithdraw_not_in | [BigInt!] | ||
| tokenDerivedEthAtWithdraw | BigDecimal | ||
| tokenDerivedEthAtWithdraw_not | BigDecimal | ||
| tokenDerivedEthAtWithdraw_gt | BigDecimal | ||
| tokenDerivedEthAtWithdraw_lt | BigDecimal | ||
| tokenDerivedEthAtWithdraw_gte | BigDecimal | ||
| tokenDerivedEthAtWithdraw_lte | BigDecimal | ||
| tokenDerivedEthAtWithdraw_in | [BigDecimal!] | ||
| tokenDerivedEthAtWithdraw_not_in | [BigDecimal!] | ||
| ethPriceUSDAtWithdraw | BigDecimal | ||
| ethPriceUSDAtWithdraw_not | BigDecimal | ||
| ethPriceUSDAtWithdraw_gt | BigDecimal | ||
| ethPriceUSDAtWithdraw_lt | BigDecimal | ||
| ethPriceUSDAtWithdraw_gte | BigDecimal | ||
| ethPriceUSDAtWithdraw_lte | BigDecimal | ||
| ethPriceUSDAtWithdraw_in | [BigDecimal!] | ||
| ethPriceUSDAtWithdraw_not_in | [BigDecimal!] | ||
| panopticVersion | BigDecimal | ||
| panopticVersion_not | BigDecimal | ||
| panopticVersion_gt | BigDecimal | ||
| panopticVersion_lt | BigDecimal | ||
| panopticVersion_gte | BigDecimal | ||
| panopticVersion_lte | BigDecimal | ||
| panopticVersion_in | [BigDecimal!] | ||
| panopticVersion_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [CollateralWithdraw_filter] | ||
| or | [CollateralWithdraw_filter] | ||
Collateral_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| panopticVersion | BigDecimal | ||
| panopticVersion_not | BigDecimal | ||
| panopticVersion_gt | BigDecimal | ||
| panopticVersion_lt | BigDecimal | ||
| panopticVersion_gte | BigDecimal | ||
| panopticVersion_lte | BigDecimal | ||
| panopticVersion_in | [BigDecimal!] | ||
| panopticVersion_not_in | [BigDecimal!] | ||
| token | String | ||
| token_not | String | ||
| token_gt | String | ||
| token_lt | String | ||
| token_gte | String | ||
| token_lte | String | ||
| token_in | [String!] | ||
| token_not_in | [String!] | ||
| token_contains | String | ||
| token_contains_nocase | String | ||
| token_not_contains | String | ||
| token_not_contains_nocase | String | ||
| token_starts_with | String | ||
| token_starts_with_nocase | String | ||
| token_not_starts_with | String | ||
| token_not_starts_with_nocase | String | ||
| token_ends_with | String | ||
| token_ends_with_nocase | String | ||
| token_not_ends_with | String | ||
| token_not_ends_with_nocase | String | ||
| token_ | Token_filter | ||
| totalShares | BigInt | ||
| totalShares_not | BigInt | ||
| totalShares_gt | BigInt | ||
| totalShares_lt | BigInt | ||
| totalShares_gte | BigInt | ||
| totalShares_lte | BigInt | ||
| totalShares_in | [BigInt!] | ||
| totalShares_not_in | [BigInt!] | ||
| totalAssets | BigInt | ||
| totalAssets_not | BigInt | ||
| totalAssets_gt | BigInt | ||
| totalAssets_lt | BigInt | ||
| totalAssets_gte | BigInt | ||
| totalAssets_lte | BigInt | ||
| totalAssets_in | [BigInt!] | ||
| totalAssets_not_in | [BigInt!] | ||
| poolAssets | BigInt | ||
| poolAssets_not | BigInt | ||
| poolAssets_gt | BigInt | ||
| poolAssets_lt | BigInt | ||
| poolAssets_gte | BigInt | ||
| poolAssets_lte | BigInt | ||
| poolAssets_in | [BigInt!] | ||
| poolAssets_not_in | [BigInt!] | ||
| inAMM | BigInt | ||
| inAMM_not | BigInt | ||
| inAMM_gt | BigInt | ||
| inAMM_lt | BigInt | ||
| inAMM_gte | BigInt | ||
| inAMM_lte | BigInt | ||
| inAMM_in | [BigInt!] | ||
| inAMM_not_in | [BigInt!] | ||
| poolUtilization | BigInt | ||
| poolUtilization_not | BigInt | ||
| poolUtilization_gt | BigInt | ||
| poolUtilization_lt | BigInt | ||
| poolUtilization_gte | BigInt | ||
| poolUtilization_lte | BigInt | ||
| poolUtilization_in | [BigInt!] | ||
| poolUtilization_not_in | [BigInt!] | ||
| panopticPool | String | ||
| panopticPool_not | String | ||
| panopticPool_gt | String | ||
| panopticPool_lt | String | ||
| panopticPool_gte | String | ||
| panopticPool_lte | String | ||
| panopticPool_in | [String!] | ||
| panopticPool_not_in | [String!] | ||
| panopticPool_contains | String | ||
| panopticPool_contains_nocase | String | ||
| panopticPool_not_contains | String | ||
| panopticPool_not_contains_nocase | String | ||
| panopticPool_starts_with | String | ||
| panopticPool_starts_with_nocase | String | ||
| panopticPool_not_starts_with | String | ||
| panopticPool_not_starts_with_nocase | String | ||
| panopticPool_ends_with | String | ||
| panopticPool_ends_with_nocase | String | ||
| panopticPool_not_ends_with | String | ||
| panopticPool_not_ends_with_nocase | String | ||
| panopticPool_ | PanopticPool_filter | ||
| index | BigInt | ||
| index_not | BigInt | ||
| index_gt | BigInt | ||
| index_lt | BigInt | ||
| index_gte | BigInt | ||
| index_lte | BigInt | ||
| index_in | [BigInt!] | ||
| index_not_in | [BigInt!] | ||
| collateralDayData_ | CollateralDayData_filter | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [Collateral_filter] | ||
| or | [Collateral_filter] | ||
Collect_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| hash | String | ||
| hash_not | String | ||
| hash_gt | String | ||
| hash_lt | String | ||
| hash_gte | String | ||
| hash_lte | String | ||
| hash_in | [String!] | ||
| hash_not_in | [String!] | ||
| hash_contains | String | ||
| hash_contains_nocase | String | ||
| hash_not_contains | String | ||
| hash_not_contains_nocase | String | ||
| hash_starts_with | String | ||
| hash_starts_with_nocase | String | ||
| hash_not_starts_with | String | ||
| hash_not_starts_with_nocase | String | ||
| hash_ends_with | String | ||
| hash_ends_with_nocase | String | ||
| hash_not_ends_with | String | ||
| hash_not_ends_with_nocase | String | ||
| logIndex | BigInt | ||
| logIndex_not | BigInt | ||
| logIndex_gt | BigInt | ||
| logIndex_lt | BigInt | ||
| logIndex_gte | BigInt | ||
| logIndex_lte | BigInt | ||
| logIndex_in | [BigInt!] | ||
| logIndex_not_in | [BigInt!] | ||
| eventType | EventType | ||
| eventType_not | EventType | ||
| eventType_in | [EventType!] | ||
| eventType_not_in | [EventType!] | ||
| from | String | ||
| from_not | String | ||
| from_gt | String | ||
| from_lt | String | ||
| from_gte | String | ||
| from_lte | String | ||
| from_in | [String!] | ||
| from_not_in | [String!] | ||
| from_contains | String | ||
| from_contains_nocase | String | ||
| from_not_contains | String | ||
| from_not_contains_nocase | String | ||
| from_starts_with | String | ||
| from_starts_with_nocase | String | ||
| from_not_starts_with | String | ||
| from_not_starts_with_nocase | String | ||
| from_ends_with | String | ||
| from_ends_with_nocase | String | ||
| from_not_ends_with | String | ||
| from_not_ends_with_nocase | String | ||
| to | String | ||
| to_not | String | ||
| to_gt | String | ||
| to_lt | String | ||
| to_gte | String | ||
| to_lte | String | ||
| to_in | [String!] | ||
| to_not_in | [String!] | ||
| to_contains | String | ||
| to_contains_nocase | String | ||
| to_not_contains | String | ||
| to_not_contains_nocase | String | ||
| to_starts_with | String | ||
| to_starts_with_nocase | String | ||
| to_not_starts_with | String | ||
| to_not_starts_with_nocase | String | ||
| to_ends_with | String | ||
| to_ends_with_nocase | String | ||
| to_not_ends_with | String | ||
| to_not_ends_with_nocase | String | ||
| blockNumber | BigInt | ||
| blockNumber_not | BigInt | ||
| blockNumber_gt | BigInt | ||
| blockNumber_lt | BigInt | ||
| blockNumber_gte | BigInt | ||
| blockNumber_lte | BigInt | ||
| blockNumber_in | [BigInt!] | ||
| blockNumber_not_in | [BigInt!] | ||
| timestamp | BigInt | ||
| timestamp_not | BigInt | ||
| timestamp_gt | BigInt | ||
| timestamp_lt | BigInt | ||
| timestamp_gte | BigInt | ||
| timestamp_lte | BigInt | ||
| timestamp_in | [BigInt!] | ||
| timestamp_not_in | [BigInt!] | ||
| gasUsed | BigInt | ||
| gasUsed_not | BigInt | ||
| gasUsed_gt | BigInt | ||
| gasUsed_lt | BigInt | ||
| gasUsed_gte | BigInt | ||
| gasUsed_lte | BigInt | ||
| gasUsed_in | [BigInt!] | ||
| gasUsed_not_in | [BigInt!] | ||
| gasPrice | BigInt | ||
| gasPrice_not | BigInt | ||
| gasPrice_gt | BigInt | ||
| gasPrice_lt | BigInt | ||
| gasPrice_gte | BigInt | ||
| gasPrice_lte | BigInt | ||
| gasPrice_in | [BigInt!] | ||
| gasPrice_not_in | [BigInt!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| owner | String | ||
| owner_not | String | ||
| owner_gt | String | ||
| owner_lt | String | ||
| owner_gte | String | ||
| owner_lte | String | ||
| owner_in | [String!] | ||
| owner_not_in | [String!] | ||
| owner_contains | String | ||
| owner_contains_nocase | String | ||
| owner_not_contains | String | ||
| owner_not_contains_nocase | String | ||
| owner_starts_with | String | ||
| owner_starts_with_nocase | String | ||
| owner_not_starts_with | String | ||
| owner_not_starts_with_nocase | String | ||
| owner_ends_with | String | ||
| owner_ends_with_nocase | String | ||
| owner_not_ends_with | String | ||
| owner_not_ends_with_nocase | String | ||
| owner_ | Account_filter | ||
| recipient | String | ||
| recipient_not | String | ||
| recipient_gt | String | ||
| recipient_lt | String | ||
| recipient_gte | String | ||
| recipient_lte | String | ||
| recipient_in | [String!] | ||
| recipient_not_in | [String!] | ||
| recipient_contains | String | ||
| recipient_contains_nocase | String | ||
| recipient_not_contains | String | ||
| recipient_not_contains_nocase | String | ||
| recipient_starts_with | String | ||
| recipient_starts_with_nocase | String | ||
| recipient_not_starts_with | String | ||
| recipient_not_starts_with_nocase | String | ||
| recipient_ends_with | String | ||
| recipient_ends_with_nocase | String | ||
| recipient_not_ends_with | String | ||
| recipient_not_ends_with_nocase | String | ||
| recipient_ | Account_filter | ||
| tickLower | Int | ||
| tickLower_not | Int | ||
| tickLower_gt | Int | ||
| tickLower_lt | Int | ||
| tickLower_gte | Int | ||
| tickLower_lte | Int | ||
| tickLower_in | [Int!] | ||
| tickLower_not_in | [Int!] | ||
| tickUpper | Int | ||
| tickUpper_not | Int | ||
| tickUpper_gt | Int | ||
| tickUpper_lt | Int | ||
| tickUpper_gte | Int | ||
| tickUpper_lte | Int | ||
| tickUpper_in | [Int!] | ||
| tickUpper_not_in | [Int!] | ||
| amount0 | BigDecimal | ||
| amount0_not | BigDecimal | ||
| amount0_gt | BigDecimal | ||
| amount0_lt | BigDecimal | ||
| amount0_gte | BigDecimal | ||
| amount0_lte | BigDecimal | ||
| amount0_in | [BigDecimal!] | ||
| amount0_not_in | [BigDecimal!] | ||
| amount1 | BigDecimal | ||
| amount1_not | BigDecimal | ||
| amount1_gt | BigDecimal | ||
| amount1_lt | BigDecimal | ||
| amount1_gte | BigDecimal | ||
| amount1_lte | BigDecimal | ||
| amount1_in | [BigDecimal!] | ||
| amount1_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [Collect_filter] | ||
| or | [Collect_filter] | ||
Event_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| hash | String | ||
| hash_not | String | ||
| hash_gt | String | ||
| hash_lt | String | ||
| hash_gte | String | ||
| hash_lte | String | ||
| hash_in | [String!] | ||
| hash_not_in | [String!] | ||
| hash_contains | String | ||
| hash_contains_nocase | String | ||
| hash_not_contains | String | ||
| hash_not_contains_nocase | String | ||
| hash_starts_with | String | ||
| hash_starts_with_nocase | String | ||
| hash_not_starts_with | String | ||
| hash_not_starts_with_nocase | String | ||
| hash_ends_with | String | ||
| hash_ends_with_nocase | String | ||
| hash_not_ends_with | String | ||
| hash_not_ends_with_nocase | String | ||
| logIndex | BigInt | ||
| logIndex_not | BigInt | ||
| logIndex_gt | BigInt | ||
| logIndex_lt | BigInt | ||
| logIndex_gte | BigInt | ||
| logIndex_lte | BigInt | ||
| logIndex_in | [BigInt!] | ||
| logIndex_not_in | [BigInt!] | ||
| from | String | ||
| from_not | String | ||
| from_gt | String | ||
| from_lt | String | ||
| from_gte | String | ||
| from_lte | String | ||
| from_in | [String!] | ||
| from_not_in | [String!] | ||
| from_contains | String | ||
| from_contains_nocase | String | ||
| from_not_contains | String | ||
| from_not_contains_nocase | String | ||
| from_starts_with | String | ||
| from_starts_with_nocase | String | ||
| from_not_starts_with | String | ||
| from_not_starts_with_nocase | String | ||
| from_ends_with | String | ||
| from_ends_with_nocase | String | ||
| from_not_ends_with | String | ||
| from_not_ends_with_nocase | String | ||
| to | String | ||
| to_not | String | ||
| to_gt | String | ||
| to_lt | String | ||
| to_gte | String | ||
| to_lte | String | ||
| to_in | [String!] | ||
| to_not_in | [String!] | ||
| to_contains | String | ||
| to_contains_nocase | String | ||
| to_not_contains | String | ||
| to_not_contains_nocase | String | ||
| to_starts_with | String | ||
| to_starts_with_nocase | String | ||
| to_not_starts_with | String | ||
| to_not_starts_with_nocase | String | ||
| to_ends_with | String | ||
| to_ends_with_nocase | String | ||
| to_not_ends_with | String | ||
| to_not_ends_with_nocase | String | ||
| blockNumber | BigInt | ||
| blockNumber_not | BigInt | ||
| blockNumber_gt | BigInt | ||
| blockNumber_lt | BigInt | ||
| blockNumber_gte | BigInt | ||
| blockNumber_lte | BigInt | ||
| blockNumber_in | [BigInt!] | ||
| blockNumber_not_in | [BigInt!] | ||
| timestamp | BigInt | ||
| timestamp_not | BigInt | ||
| timestamp_gt | BigInt | ||
| timestamp_lt | BigInt | ||
| timestamp_gte | BigInt | ||
| timestamp_lte | BigInt | ||
| timestamp_in | [BigInt!] | ||
| timestamp_not_in | [BigInt!] | ||
| gasUsed | BigInt | ||
| gasUsed_not | BigInt | ||
| gasUsed_gt | BigInt | ||
| gasUsed_lt | BigInt | ||
| gasUsed_gte | BigInt | ||
| gasUsed_lte | BigInt | ||
| gasUsed_in | [BigInt!] | ||
| gasUsed_not_in | [BigInt!] | ||
| gasPrice | BigInt | ||
| gasPrice_not | BigInt | ||
| gasPrice_gt | BigInt | ||
| gasPrice_lt | BigInt | ||
| gasPrice_gte | BigInt | ||
| gasPrice_lte | BigInt | ||
| gasPrice_in | [BigInt!] | ||
| gasPrice_not_in | [BigInt!] | ||
| eventType | EventType | ||
| eventType_not | EventType | ||
| eventType_in | [EventType!] | ||
| eventType_not_in | [EventType!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [Event_filter] | ||
| or | [Event_filter] | ||
Factory_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| poolCount | BigInt | ||
| poolCount_not | BigInt | ||
| poolCount_gt | BigInt | ||
| poolCount_lt | BigInt | ||
| poolCount_gte | BigInt | ||
| poolCount_lte | BigInt | ||
| poolCount_in | [BigInt!] | ||
| poolCount_not_in | [BigInt!] | ||
| owner | ID | ||
| owner_not | ID | ||
| owner_gt | ID | ||
| owner_lt | ID | ||
| owner_gte | ID | ||
| owner_lte | ID | ||
| owner_in | [ID!] | ||
| owner_not_in | [ID!] | ||
| opBackfilled | Boolean | ||
| opBackfilled_not | Boolean | ||
| opBackfilled_in | [Boolean!] | ||
| opBackfilled_not_in | [Boolean!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [Factory_filter] | ||
| or | [Factory_filter] | ||
ForcedExercise_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| hash | String | ||
| hash_not | String | ||
| hash_gt | String | ||
| hash_lt | String | ||
| hash_gte | String | ||
| hash_lte | String | ||
| hash_in | [String!] | ||
| hash_not_in | [String!] | ||
| hash_contains | String | ||
| hash_contains_nocase | String | ||
| hash_not_contains | String | ||
| hash_not_contains_nocase | String | ||
| hash_starts_with | String | ||
| hash_starts_with_nocase | String | ||
| hash_not_starts_with | String | ||
| hash_not_starts_with_nocase | String | ||
| hash_ends_with | String | ||
| hash_ends_with_nocase | String | ||
| hash_not_ends_with | String | ||
| hash_not_ends_with_nocase | String | ||
| logIndex | BigInt | ||
| logIndex_not | BigInt | ||
| logIndex_gt | BigInt | ||
| logIndex_lt | BigInt | ||
| logIndex_gte | BigInt | ||
| logIndex_lte | BigInt | ||
| logIndex_in | [BigInt!] | ||
| logIndex_not_in | [BigInt!] | ||
| eventType | EventType | ||
| eventType_not | EventType | ||
| eventType_in | [EventType!] | ||
| eventType_not_in | [EventType!] | ||
| from | String | ||
| from_not | String | ||
| from_gt | String | ||
| from_lt | String | ||
| from_gte | String | ||
| from_lte | String | ||
| from_in | [String!] | ||
| from_not_in | [String!] | ||
| from_contains | String | ||
| from_contains_nocase | String | ||
| from_not_contains | String | ||
| from_not_contains_nocase | String | ||
| from_starts_with | String | ||
| from_starts_with_nocase | String | ||
| from_not_starts_with | String | ||
| from_not_starts_with_nocase | String | ||
| from_ends_with | String | ||
| from_ends_with_nocase | String | ||
| from_not_ends_with | String | ||
| from_not_ends_with_nocase | String | ||
| to | String | ||
| to_not | String | ||
| to_gt | String | ||
| to_lt | String | ||
| to_gte | String | ||
| to_lte | String | ||
| to_in | [String!] | ||
| to_not_in | [String!] | ||
| to_contains | String | ||
| to_contains_nocase | String | ||
| to_not_contains | String | ||
| to_not_contains_nocase | String | ||
| to_starts_with | String | ||
| to_starts_with_nocase | String | ||
| to_not_starts_with | String | ||
| to_not_starts_with_nocase | String | ||
| to_ends_with | String | ||
| to_ends_with_nocase | String | ||
| to_not_ends_with | String | ||
| to_not_ends_with_nocase | String | ||
| blockNumber | BigInt | ||
| blockNumber_not | BigInt | ||
| blockNumber_gt | BigInt | ||
| blockNumber_lt | BigInt | ||
| blockNumber_gte | BigInt | ||
| blockNumber_lte | BigInt | ||
| blockNumber_in | [BigInt!] | ||
| blockNumber_not_in | [BigInt!] | ||
| timestamp | BigInt | ||
| timestamp_not | BigInt | ||
| timestamp_gt | BigInt | ||
| timestamp_lt | BigInt | ||
| timestamp_gte | BigInt | ||
| timestamp_lte | BigInt | ||
| timestamp_in | [BigInt!] | ||
| timestamp_not_in | [BigInt!] | ||
| gasUsed | BigInt | ||
| gasUsed_not | BigInt | ||
| gasUsed_gt | BigInt | ||
| gasUsed_lt | BigInt | ||
| gasUsed_gte | BigInt | ||
| gasUsed_lte | BigInt | ||
| gasUsed_in | [BigInt!] | ||
| gasUsed_not_in | [BigInt!] | ||
| gasPrice | BigInt | ||
| gasPrice_not | BigInt | ||
| gasPrice_gt | BigInt | ||
| gasPrice_lt | BigInt | ||
| gasPrice_gte | BigInt | ||
| gasPrice_lte | BigInt | ||
| gasPrice_in | [BigInt!] | ||
| gasPrice_not_in | [BigInt!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| exercisor | String | ||
| exercisor_not | String | ||
| exercisor_gt | String | ||
| exercisor_lt | String | ||
| exercisor_gte | String | ||
| exercisor_lte | String | ||
| exercisor_in | [String!] | ||
| exercisor_not_in | [String!] | ||
| exercisor_contains | String | ||
| exercisor_contains_nocase | String | ||
| exercisor_not_contains | String | ||
| exercisor_not_contains_nocase | String | ||
| exercisor_starts_with | String | ||
| exercisor_starts_with_nocase | String | ||
| exercisor_not_starts_with | String | ||
| exercisor_not_starts_with_nocase | String | ||
| exercisor_ends_with | String | ||
| exercisor_ends_with_nocase | String | ||
| exercisor_not_ends_with | String | ||
| exercisor_not_ends_with_nocase | String | ||
| exercisor_ | Account_filter | ||
| user | String | ||
| user_not | String | ||
| user_gt | String | ||
| user_lt | String | ||
| user_gte | String | ||
| user_lte | String | ||
| user_in | [String!] | ||
| user_not_in | [String!] | ||
| user_contains | String | ||
| user_contains_nocase | String | ||
| user_not_contains | String | ||
| user_not_contains_nocase | String | ||
| user_starts_with | String | ||
| user_starts_with_nocase | String | ||
| user_not_starts_with | String | ||
| user_not_starts_with_nocase | String | ||
| user_ends_with | String | ||
| user_ends_with_nocase | String | ||
| user_not_ends_with | String | ||
| user_not_ends_with_nocase | String | ||
| user_ | Account_filter | ||
| tokenId | BigInt | ||
| tokenId_not | BigInt | ||
| tokenId_gt | BigInt | ||
| tokenId_lt | BigInt | ||
| tokenId_gte | BigInt | ||
| tokenId_lte | BigInt | ||
| tokenId_in | [BigInt!] | ||
| tokenId_not_in | [BigInt!] | ||
| exerciseFee | BigInt | ||
| exerciseFee_not | BigInt | ||
| exerciseFee_gt | BigInt | ||
| exerciseFee_lt | BigInt | ||
| exerciseFee_gte | BigInt | ||
| exerciseFee_lte | BigInt | ||
| exerciseFee_in | [BigInt!] | ||
| exerciseFee_not_in | [BigInt!] | ||
| exerciseFee0 | BigInt | ||
| exerciseFee0_not | BigInt | ||
| exerciseFee0_gt | BigInt | ||
| exerciseFee0_lt | BigInt | ||
| exerciseFee0_gte | BigInt | ||
| exerciseFee0_lte | BigInt | ||
| exerciseFee0_in | [BigInt!] | ||
| exerciseFee0_not_in | [BigInt!] | ||
| exerciseFee1 | BigInt | ||
| exerciseFee1_not | BigInt | ||
| exerciseFee1_gt | BigInt | ||
| exerciseFee1_lt | BigInt | ||
| exerciseFee1_gte | BigInt | ||
| exerciseFee1_lte | BigInt | ||
| exerciseFee1_in | [BigInt!] | ||
| exerciseFee1_not_in | [BigInt!] | ||
| exerciseFeeUSD | BigDecimal | ||
| exerciseFeeUSD_not | BigDecimal | ||
| exerciseFeeUSD_gt | BigDecimal | ||
| exerciseFeeUSD_lt | BigDecimal | ||
| exerciseFeeUSD_gte | BigDecimal | ||
| exerciseFeeUSD_lte | BigDecimal | ||
| exerciseFeeUSD_in | [BigDecimal!] | ||
| exerciseFeeUSD_not_in | [BigDecimal!] | ||
| tickAt | Int | ||
| tickAt_not | Int | ||
| tickAt_gt | Int | ||
| tickAt_lt | Int | ||
| tickAt_gte | Int | ||
| tickAt_lte | Int | ||
| tickAt_in | [Int!] | ||
| tickAt_not_in | [Int!] | ||
| panopticPool | String | ||
| panopticPool_not | String | ||
| panopticPool_gt | String | ||
| panopticPool_lt | String | ||
| panopticPool_gte | String | ||
| panopticPool_lte | String | ||
| panopticPool_in | [String!] | ||
| panopticPool_not_in | [String!] | ||
| panopticPool_contains | String | ||
| panopticPool_contains_nocase | String | ||
| panopticPool_not_contains | String | ||
| panopticPool_not_contains_nocase | String | ||
| panopticPool_starts_with | String | ||
| panopticPool_starts_with_nocase | String | ||
| panopticPool_not_starts_with | String | ||
| panopticPool_not_starts_with_nocase | String | ||
| panopticPool_ends_with | String | ||
| panopticPool_ends_with_nocase | String | ||
| panopticPool_not_ends_with | String | ||
| panopticPool_not_ends_with_nocase | String | ||
| panopticPool_ | PanopticPool_filter | ||
| optionBurn_ | OptionBurn_filter | ||
| panopticVersion | BigDecimal | ||
| panopticVersion_not | BigDecimal | ||
| panopticVersion_gt | BigDecimal | ||
| panopticVersion_lt | BigDecimal | ||
| panopticVersion_gte | BigDecimal | ||
| panopticVersion_lte | BigDecimal | ||
| panopticVersion_in | [BigDecimal!] | ||
| panopticVersion_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [ForcedExercise_filter] | ||
| or | [ForcedExercise_filter] | ||
LegLiquidities_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| leg | String | ||
| leg_not | String | ||
| leg_gt | String | ||
| leg_lt | String | ||
| leg_gte | String | ||
| leg_lte | String | ||
| leg_in | [String!] | ||
| leg_not_in | [String!] | ||
| leg_contains | String | ||
| leg_contains_nocase | String | ||
| leg_not_contains | String | ||
| leg_not_contains_nocase | String | ||
| leg_starts_with | String | ||
| leg_starts_with_nocase | String | ||
| leg_not_starts_with | String | ||
| leg_not_starts_with_nocase | String | ||
| leg_ends_with | String | ||
| leg_ends_with_nocase | String | ||
| leg_not_ends_with | String | ||
| leg_not_ends_with_nocase | String | ||
| leg_ | Leg_filter | ||
| chunk | String | ||
| chunk_not | String | ||
| chunk_gt | String | ||
| chunk_lt | String | ||
| chunk_gte | String | ||
| chunk_lte | String | ||
| chunk_in | [String!] | ||
| chunk_not_in | [String!] | ||
| chunk_contains | String | ||
| chunk_contains_nocase | String | ||
| chunk_not_contains | String | ||
| chunk_not_contains_nocase | String | ||
| chunk_starts_with | String | ||
| chunk_starts_with_nocase | String | ||
| chunk_not_starts_with | String | ||
| chunk_not_starts_with_nocase | String | ||
| chunk_ends_with | String | ||
| chunk_ends_with_nocase | String | ||
| chunk_not_ends_with | String | ||
| chunk_not_ends_with_nocase | String | ||
| chunk_ | Chunk_filter | ||
| liquidity | BigInt | ||
| liquidity_not | BigInt | ||
| liquidity_gt | BigInt | ||
| liquidity_lt | BigInt | ||
| liquidity_gte | BigInt | ||
| liquidity_lte | BigInt | ||
| liquidity_in | [BigInt!] | ||
| liquidity_not_in | [BigInt!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [LegLiquidities_filter] | ||
| or | [LegLiquidities_filter] | ||
Leg_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| index | Int | ||
| index_not | Int | ||
| index_gt | Int | ||
| index_lt | Int | ||
| index_gte | Int | ||
| index_lte | Int | ||
| index_in | [Int!] | ||
| index_not_in | [Int!] | ||
| idHexString | String | ||
| idHexString_not | String | ||
| idHexString_gt | String | ||
| idHexString_lt | String | ||
| idHexString_gte | String | ||
| idHexString_lte | String | ||
| idHexString_in | [String!] | ||
| idHexString_not_in | [String!] | ||
| idHexString_contains | String | ||
| idHexString_contains_nocase | String | ||
| idHexString_not_contains | String | ||
| idHexString_not_contains_nocase | String | ||
| idHexString_starts_with | String | ||
| idHexString_starts_with_nocase | String | ||
| idHexString_not_starts_with | String | ||
| idHexString_not_starts_with_nocase | String | ||
| idHexString_ends_with | String | ||
| idHexString_ends_with_nocase | String | ||
| idHexString_not_ends_with | String | ||
| idHexString_not_ends_with_nocase | String | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| optionRatio | BigInt | ||
| optionRatio_not | BigInt | ||
| optionRatio_gt | BigInt | ||
| optionRatio_lt | BigInt | ||
| optionRatio_gte | BigInt | ||
| optionRatio_lte | BigInt | ||
| optionRatio_in | [BigInt!] | ||
| optionRatio_not_in | [BigInt!] | ||
| asset | BigInt | ||
| asset_not | BigInt | ||
| asset_gt | BigInt | ||
| asset_lt | BigInt | ||
| asset_gte | BigInt | ||
| asset_lte | BigInt | ||
| asset_in | [BigInt!] | ||
| asset_not_in | [BigInt!] | ||
| tokenType | BigInt | ||
| tokenType_not | BigInt | ||
| tokenType_gt | BigInt | ||
| tokenType_lt | BigInt | ||
| tokenType_gte | BigInt | ||
| tokenType_lte | BigInt | ||
| tokenType_in | [BigInt!] | ||
| tokenType_not_in | [BigInt!] | ||
| isLong | BigInt | ||
| isLong_not | BigInt | ||
| isLong_gt | BigInt | ||
| isLong_lt | BigInt | ||
| isLong_gte | BigInt | ||
| isLong_lte | BigInt | ||
| isLong_in | [BigInt!] | ||
| isLong_not_in | [BigInt!] | ||
| riskPartner | BigInt | ||
| riskPartner_not | BigInt | ||
| riskPartner_gt | BigInt | ||
| riskPartner_lt | BigInt | ||
| riskPartner_gte | BigInt | ||
| riskPartner_lte | BigInt | ||
| riskPartner_in | [BigInt!] | ||
| riskPartner_not_in | [BigInt!] | ||
| strike | BigInt | ||
| strike_not | BigInt | ||
| strike_gt | BigInt | ||
| strike_lt | BigInt | ||
| strike_gte | BigInt | ||
| strike_lte | BigInt | ||
| strike_in | [BigInt!] | ||
| strike_not_in | [BigInt!] | ||
| width | BigInt | ||
| width_not | BigInt | ||
| width_gt | BigInt | ||
| width_lt | BigInt | ||
| width_gte | BigInt | ||
| width_lte | BigInt | ||
| width_in | [BigInt!] | ||
| width_not_in | [BigInt!] | ||
| chunk | String | ||
| chunk_not | String | ||
| chunk_gt | String | ||
| chunk_lt | String | ||
| chunk_gte | String | ||
| chunk_lte | String | ||
| chunk_in | [String!] | ||
| chunk_not_in | [String!] | ||
| chunk_contains | String | ||
| chunk_contains_nocase | String | ||
| chunk_not_contains | String | ||
| chunk_not_contains_nocase | String | ||
| chunk_starts_with | String | ||
| chunk_starts_with_nocase | String | ||
| chunk_not_starts_with | String | ||
| chunk_not_starts_with_nocase | String | ||
| chunk_ends_with | String | ||
| chunk_ends_with_nocase | String | ||
| chunk_not_ends_with | String | ||
| chunk_not_ends_with_nocase | String | ||
| chunk_ | Chunk_filter | ||
| legCount | BigInt | ||
| legCount_not | BigInt | ||
| legCount_gt | BigInt | ||
| legCount_lt | BigInt | ||
| legCount_gte | BigInt | ||
| legCount_lte | BigInt | ||
| legCount_in | [BigInt!] | ||
| legCount_not_in | [BigInt!] | ||
| tokenIds_ | TokenId_filter | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [Leg_filter] | ||
| or | [Leg_filter] | ||
Mint_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| hash | String | ||
| hash_not | String | ||
| hash_gt | String | ||
| hash_lt | String | ||
| hash_gte | String | ||
| hash_lte | String | ||
| hash_in | [String!] | ||
| hash_not_in | [String!] | ||
| hash_contains | String | ||
| hash_contains_nocase | String | ||
| hash_not_contains | String | ||
| hash_not_contains_nocase | String | ||
| hash_starts_with | String | ||
| hash_starts_with_nocase | String | ||
| hash_not_starts_with | String | ||
| hash_not_starts_with_nocase | String | ||
| hash_ends_with | String | ||
| hash_ends_with_nocase | String | ||
| hash_not_ends_with | String | ||
| hash_not_ends_with_nocase | String | ||
| logIndex | BigInt | ||
| logIndex_not | BigInt | ||
| logIndex_gt | BigInt | ||
| logIndex_lt | BigInt | ||
| logIndex_gte | BigInt | ||
| logIndex_lte | BigInt | ||
| logIndex_in | [BigInt!] | ||
| logIndex_not_in | [BigInt!] | ||
| eventType | EventType | ||
| eventType_not | EventType | ||
| eventType_in | [EventType!] | ||
| eventType_not_in | [EventType!] | ||
| from | String | ||
| from_not | String | ||
| from_gt | String | ||
| from_lt | String | ||
| from_gte | String | ||
| from_lte | String | ||
| from_in | [String!] | ||
| from_not_in | [String!] | ||
| from_contains | String | ||
| from_contains_nocase | String | ||
| from_not_contains | String | ||
| from_not_contains_nocase | String | ||
| from_starts_with | String | ||
| from_starts_with_nocase | String | ||
| from_not_starts_with | String | ||
| from_not_starts_with_nocase | String | ||
| from_ends_with | String | ||
| from_ends_with_nocase | String | ||
| from_not_ends_with | String | ||
| from_not_ends_with_nocase | String | ||
| to | String | ||
| to_not | String | ||
| to_gt | String | ||
| to_lt | String | ||
| to_gte | String | ||
| to_lte | String | ||
| to_in | [String!] | ||
| to_not_in | [String!] | ||
| to_contains | String | ||
| to_contains_nocase | String | ||
| to_not_contains | String | ||
| to_not_contains_nocase | String | ||
| to_starts_with | String | ||
| to_starts_with_nocase | String | ||
| to_not_starts_with | String | ||
| to_not_starts_with_nocase | String | ||
| to_ends_with | String | ||
| to_ends_with_nocase | String | ||
| to_not_ends_with | String | ||
| to_not_ends_with_nocase | String | ||
| blockNumber | BigInt | ||
| blockNumber_not | BigInt | ||
| blockNumber_gt | BigInt | ||
| blockNumber_lt | BigInt | ||
| blockNumber_gte | BigInt | ||
| blockNumber_lte | BigInt | ||
| blockNumber_in | [BigInt!] | ||
| blockNumber_not_in | [BigInt!] | ||
| timestamp | BigInt | ||
| timestamp_not | BigInt | ||
| timestamp_gt | BigInt | ||
| timestamp_lt | BigInt | ||
| timestamp_gte | BigInt | ||
| timestamp_lte | BigInt | ||
| timestamp_in | [BigInt!] | ||
| timestamp_not_in | [BigInt!] | ||
| gasUsed | BigInt | ||
| gasUsed_not | BigInt | ||
| gasUsed_gt | BigInt | ||
| gasUsed_lt | BigInt | ||
| gasUsed_gte | BigInt | ||
| gasUsed_lte | BigInt | ||
| gasUsed_in | [BigInt!] | ||
| gasUsed_not_in | [BigInt!] | ||
| gasPrice | BigInt | ||
| gasPrice_not | BigInt | ||
| gasPrice_gt | BigInt | ||
| gasPrice_lt | BigInt | ||
| gasPrice_gte | BigInt | ||
| gasPrice_lte | BigInt | ||
| gasPrice_in | [BigInt!] | ||
| gasPrice_not_in | [BigInt!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| sender | String | ||
| sender_not | String | ||
| sender_gt | String | ||
| sender_lt | String | ||
| sender_gte | String | ||
| sender_lte | String | ||
| sender_in | [String!] | ||
| sender_not_in | [String!] | ||
| sender_contains | String | ||
| sender_contains_nocase | String | ||
| sender_not_contains | String | ||
| sender_not_contains_nocase | String | ||
| sender_starts_with | String | ||
| sender_starts_with_nocase | String | ||
| sender_not_starts_with | String | ||
| sender_not_starts_with_nocase | String | ||
| sender_ends_with | String | ||
| sender_ends_with_nocase | String | ||
| sender_not_ends_with | String | ||
| sender_not_ends_with_nocase | String | ||
| sender_ | Account_filter | ||
| owner | String | ||
| owner_not | String | ||
| owner_gt | String | ||
| owner_lt | String | ||
| owner_gte | String | ||
| owner_lte | String | ||
| owner_in | [String!] | ||
| owner_not_in | [String!] | ||
| owner_contains | String | ||
| owner_contains_nocase | String | ||
| owner_not_contains | String | ||
| owner_not_contains_nocase | String | ||
| owner_starts_with | String | ||
| owner_starts_with_nocase | String | ||
| owner_not_starts_with | String | ||
| owner_not_starts_with_nocase | String | ||
| owner_ends_with | String | ||
| owner_ends_with_nocase | String | ||
| owner_not_ends_with | String | ||
| owner_not_ends_with_nocase | String | ||
| owner_ | Account_filter | ||
| tickLower | Int | ||
| tickLower_not | Int | ||
| tickLower_gt | Int | ||
| tickLower_lt | Int | ||
| tickLower_gte | Int | ||
| tickLower_lte | Int | ||
| tickLower_in | [Int!] | ||
| tickLower_not_in | [Int!] | ||
| tickUpper | Int | ||
| tickUpper_not | Int | ||
| tickUpper_gt | Int | ||
| tickUpper_lt | Int | ||
| tickUpper_gte | Int | ||
| tickUpper_lte | Int | ||
| tickUpper_in | [Int!] | ||
| tickUpper_not_in | [Int!] | ||
| amount | BigInt | ||
| amount_not | BigInt | ||
| amount_gt | BigInt | ||
| amount_lt | BigInt | ||
| amount_gte | BigInt | ||
| amount_lte | BigInt | ||
| amount_in | [BigInt!] | ||
| amount_not_in | [BigInt!] | ||
| amount0 | BigDecimal | ||
| amount0_not | BigDecimal | ||
| amount0_gt | BigDecimal | ||
| amount0_lt | BigDecimal | ||
| amount0_gte | BigDecimal | ||
| amount0_lte | BigDecimal | ||
| amount0_in | [BigDecimal!] | ||
| amount0_not_in | [BigDecimal!] | ||
| amount1 | BigDecimal | ||
| amount1_not | BigDecimal | ||
| amount1_gt | BigDecimal | ||
| amount1_lt | BigDecimal | ||
| amount1_gte | BigDecimal | ||
| amount1_lte | BigDecimal | ||
| amount1_in | [BigDecimal!] | ||
| amount1_not_in | [BigDecimal!] | ||
| token0 | String | ||
| token0_not | String | ||
| token0_gt | String | ||
| token0_lt | String | ||
| token0_gte | String | ||
| token0_lte | String | ||
| token0_in | [String!] | ||
| token0_not_in | [String!] | ||
| token0_contains | String | ||
| token0_contains_nocase | String | ||
| token0_not_contains | String | ||
| token0_not_contains_nocase | String | ||
| token0_starts_with | String | ||
| token0_starts_with_nocase | String | ||
| token0_not_starts_with | String | ||
| token0_not_starts_with_nocase | String | ||
| token0_ends_with | String | ||
| token0_ends_with_nocase | String | ||
| token0_not_ends_with | String | ||
| token0_not_ends_with_nocase | String | ||
| token0_ | Token_filter | ||
| token1 | String | ||
| token1_not | String | ||
| token1_gt | String | ||
| token1_lt | String | ||
| token1_gte | String | ||
| token1_lte | String | ||
| token1_in | [String!] | ||
| token1_not_in | [String!] | ||
| token1_contains | String | ||
| token1_contains_nocase | String | ||
| token1_not_contains | String | ||
| token1_not_contains_nocase | String | ||
| token1_starts_with | String | ||
| token1_starts_with_nocase | String | ||
| token1_not_starts_with | String | ||
| token1_not_starts_with_nocase | String | ||
| token1_ends_with | String | ||
| token1_ends_with_nocase | String | ||
| token1_not_ends_with | String | ||
| token1_not_ends_with_nocase | String | ||
| token1_ | Token_filter | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [Mint_filter] | ||
| or | [Mint_filter] | ||
OptionBurn_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| hash | String | ||
| hash_not | String | ||
| hash_gt | String | ||
| hash_lt | String | ||
| hash_gte | String | ||
| hash_lte | String | ||
| hash_in | [String!] | ||
| hash_not_in | [String!] | ||
| hash_contains | String | ||
| hash_contains_nocase | String | ||
| hash_not_contains | String | ||
| hash_not_contains_nocase | String | ||
| hash_starts_with | String | ||
| hash_starts_with_nocase | String | ||
| hash_not_starts_with | String | ||
| hash_not_starts_with_nocase | String | ||
| hash_ends_with | String | ||
| hash_ends_with_nocase | String | ||
| hash_not_ends_with | String | ||
| hash_not_ends_with_nocase | String | ||
| logIndex | BigInt | ||
| logIndex_not | BigInt | ||
| logIndex_gt | BigInt | ||
| logIndex_lt | BigInt | ||
| logIndex_gte | BigInt | ||
| logIndex_lte | BigInt | ||
| logIndex_in | [BigInt!] | ||
| logIndex_not_in | [BigInt!] | ||
| eventType | EventType | ||
| eventType_not | EventType | ||
| eventType_in | [EventType!] | ||
| eventType_not_in | [EventType!] | ||
| from | String | ||
| from_not | String | ||
| from_gt | String | ||
| from_lt | String | ||
| from_gte | String | ||
| from_lte | String | ||
| from_in | [String!] | ||
| from_not_in | [String!] | ||
| from_contains | String | ||
| from_contains_nocase | String | ||
| from_not_contains | String | ||
| from_not_contains_nocase | String | ||
| from_starts_with | String | ||
| from_starts_with_nocase | String | ||
| from_not_starts_with | String | ||
| from_not_starts_with_nocase | String | ||
| from_ends_with | String | ||
| from_ends_with_nocase | String | ||
| from_not_ends_with | String | ||
| from_not_ends_with_nocase | String | ||
| to | String | ||
| to_not | String | ||
| to_gt | String | ||
| to_lt | String | ||
| to_gte | String | ||
| to_lte | String | ||
| to_in | [String!] | ||
| to_not_in | [String!] | ||
| to_contains | String | ||
| to_contains_nocase | String | ||
| to_not_contains | String | ||
| to_not_contains_nocase | String | ||
| to_starts_with | String | ||
| to_starts_with_nocase | String | ||
| to_not_starts_with | String | ||
| to_not_starts_with_nocase | String | ||
| to_ends_with | String | ||
| to_ends_with_nocase | String | ||
| to_not_ends_with | String | ||
| to_not_ends_with_nocase | String | ||
| blockNumber | BigInt | ||
| blockNumber_not | BigInt | ||
| blockNumber_gt | BigInt | ||
| blockNumber_lt | BigInt | ||
| blockNumber_gte | BigInt | ||
| blockNumber_lte | BigInt | ||
| blockNumber_in | [BigInt!] | ||
| blockNumber_not_in | [BigInt!] | ||
| timestamp | BigInt | ||
| timestamp_not | BigInt | ||
| timestamp_gt | BigInt | ||
| timestamp_lt | BigInt | ||
| timestamp_gte | BigInt | ||
| timestamp_lte | BigInt | ||
| timestamp_in | [BigInt!] | ||
| timestamp_not_in | [BigInt!] | ||
| gasUsed | BigInt | ||
| gasUsed_not | BigInt | ||
| gasUsed_gt | BigInt | ||
| gasUsed_lt | BigInt | ||
| gasUsed_gte | BigInt | ||
| gasUsed_lte | BigInt | ||
| gasUsed_in | [BigInt!] | ||
| gasUsed_not_in | [BigInt!] | ||
| gasPrice | BigInt | ||
| gasPrice_not | BigInt | ||
| gasPrice_gt | BigInt | ||
| gasPrice_lt | BigInt | ||
| gasPrice_gte | BigInt | ||
| gasPrice_lte | BigInt | ||
| gasPrice_in | [BigInt!] | ||
| gasPrice_not_in | [BigInt!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| recipient | String | ||
| recipient_not | String | ||
| recipient_gt | String | ||
| recipient_lt | String | ||
| recipient_gte | String | ||
| recipient_lte | String | ||
| recipient_in | [String!] | ||
| recipient_not_in | [String!] | ||
| recipient_contains | String | ||
| recipient_contains_nocase | String | ||
| recipient_not_contains | String | ||
| recipient_not_contains_nocase | String | ||
| recipient_starts_with | String | ||
| recipient_starts_with_nocase | String | ||
| recipient_not_starts_with | String | ||
| recipient_not_starts_with_nocase | String | ||
| recipient_ends_with | String | ||
| recipient_ends_with_nocase | String | ||
| recipient_not_ends_with | String | ||
| recipient_not_ends_with_nocase | String | ||
| recipient_ | Account_filter | ||
| positionSize | BigInt | ||
| positionSize_not | BigInt | ||
| positionSize_gt | BigInt | ||
| positionSize_lt | BigInt | ||
| positionSize_gte | BigInt | ||
| positionSize_lte | BigInt | ||
| positionSize_in | [BigInt!] | ||
| positionSize_not_in | [BigInt!] | ||
| tokenId | String | ||
| tokenId_not | String | ||
| tokenId_gt | String | ||
| tokenId_lt | String | ||
| tokenId_gte | String | ||
| tokenId_lte | String | ||
| tokenId_in | [String!] | ||
| tokenId_not_in | [String!] | ||
| tokenId_contains | String | ||
| tokenId_contains_nocase | String | ||
| tokenId_not_contains | String | ||
| tokenId_not_contains_nocase | String | ||
| tokenId_starts_with | String | ||
| tokenId_starts_with_nocase | String | ||
| tokenId_not_starts_with | String | ||
| tokenId_not_starts_with_nocase | String | ||
| tokenId_ends_with | String | ||
| tokenId_ends_with_nocase | String | ||
| tokenId_not_ends_with | String | ||
| tokenId_not_ends_with_nocase | String | ||
| tokenId_ | TokenId_filter | ||
| tickAt | Int | ||
| tickAt_not | Int | ||
| tickAt_gt | Int | ||
| tickAt_lt | Int | ||
| tickAt_gte | Int | ||
| tickAt_lte | Int | ||
| tickAt_in | [Int!] | ||
| tickAt_not_in | [Int!] | ||
| panopticPool | String | ||
| panopticPool_not | String | ||
| panopticPool_gt | String | ||
| panopticPool_lt | String | ||
| panopticPool_gte | String | ||
| panopticPool_lte | String | ||
| panopticPool_in | [String!] | ||
| panopticPool_not_in | [String!] | ||
| panopticPool_contains | String | ||
| panopticPool_contains_nocase | String | ||
| panopticPool_not_contains | String | ||
| panopticPool_not_contains_nocase | String | ||
| panopticPool_starts_with | String | ||
| panopticPool_starts_with_nocase | String | ||
| panopticPool_not_starts_with | String | ||
| panopticPool_not_starts_with_nocase | String | ||
| panopticPool_ends_with | String | ||
| panopticPool_ends_with_nocase | String | ||
| panopticPool_not_ends_with | String | ||
| panopticPool_not_ends_with_nocase | String | ||
| panopticPool_ | PanopticPool_filter | ||
| premium0 | BigInt | ||
| premium0_not | BigInt | ||
| premium0_gt | BigInt | ||
| premium0_lt | BigInt | ||
| premium0_gte | BigInt | ||
| premium0_lte | BigInt | ||
| premium0_in | [BigInt!] | ||
| premium0_not_in | [BigInt!] | ||
| premium1 | BigInt | ||
| premium1_not | BigInt | ||
| premium1_gt | BigInt | ||
| premium1_lt | BigInt | ||
| premium1_gte | BigInt | ||
| premium1_lte | BigInt | ||
| premium1_in | [BigInt!] | ||
| premium1_not_in | [BigInt!] | ||
| premiaByLeg | [BigInt!] | ||
| premiaByLeg_not | [BigInt!] | ||
| premiaByLeg_contains | [BigInt!] | ||
| premiaByLeg_contains_nocase | [BigInt!] | ||
| premiaByLeg_not_contains | [BigInt!] | ||
| premiaByLeg_not_contains_nocase | [BigInt!] | ||
| totalShares0 | BigInt | ||
| totalShares0_not | BigInt | ||
| totalShares0_gt | BigInt | ||
| totalShares0_lt | BigInt | ||
| totalShares0_gte | BigInt | ||
| totalShares0_lte | BigInt | ||
| totalShares0_in | [BigInt!] | ||
| totalShares0_not_in | [BigInt!] | ||
| totalAssets0 | BigInt | ||
| totalAssets0_not | BigInt | ||
| totalAssets0_gt | BigInt | ||
| totalAssets0_lt | BigInt | ||
| totalAssets0_gte | BigInt | ||
| totalAssets0_lte | BigInt | ||
| totalAssets0_in | [BigInt!] | ||
| totalAssets0_not_in | [BigInt!] | ||
| totalShares1 | BigInt | ||
| totalShares1_not | BigInt | ||
| totalShares1_gt | BigInt | ||
| totalShares1_lt | BigInt | ||
| totalShares1_gte | BigInt | ||
| totalShares1_lte | BigInt | ||
| totalShares1_in | [BigInt!] | ||
| totalShares1_not_in | [BigInt!] | ||
| totalAssets1 | BigInt | ||
| totalAssets1_not | BigInt | ||
| totalAssets1_gt | BigInt | ||
| totalAssets1_lt | BigInt | ||
| totalAssets1_gte | BigInt | ||
| totalAssets1_lte | BigInt | ||
| totalAssets1_in | [BigInt!] | ||
| totalAssets1_not_in | [BigInt!] | ||
| txnOpened | String | ||
| txnOpened_not | String | ||
| txnOpened_gt | String | ||
| txnOpened_lt | String | ||
| txnOpened_gte | String | ||
| txnOpened_lte | String | ||
| txnOpened_in | [String!] | ||
| txnOpened_not_in | [String!] | ||
| txnOpened_contains | String | ||
| txnOpened_contains_nocase | String | ||
| txnOpened_not_contains | String | ||
| txnOpened_not_contains_nocase | String | ||
| txnOpened_starts_with | String | ||
| txnOpened_starts_with_nocase | String | ||
| txnOpened_not_starts_with | String | ||
| txnOpened_not_starts_with_nocase | String | ||
| txnOpened_ends_with | String | ||
| txnOpened_ends_with_nocase | String | ||
| txnOpened_not_ends_with | String | ||
| txnOpened_not_ends_with_nocase | String | ||
| txnOpened_ | OptionMint_filter | ||
| accountBalance | String | ||
| accountBalance_not | String | ||
| accountBalance_gt | String | ||
| accountBalance_lt | String | ||
| accountBalance_gte | String | ||
| accountBalance_lte | String | ||
| accountBalance_in | [String!] | ||
| accountBalance_not_in | [String!] | ||
| accountBalance_contains | String | ||
| accountBalance_contains_nocase | String | ||
| accountBalance_not_contains | String | ||
| accountBalance_not_contains_nocase | String | ||
| accountBalance_starts_with | String | ||
| accountBalance_starts_with_nocase | String | ||
| accountBalance_not_starts_with | String | ||
| accountBalance_not_starts_with_nocase | String | ||
| accountBalance_ends_with | String | ||
| accountBalance_ends_with_nocase | String | ||
| accountBalance_not_ends_with | String | ||
| accountBalance_not_ends_with_nocase | String | ||
| accountBalance_ | AccountBalance_filter | ||
| forcedExercise | String | ||
| forcedExercise_not | String | ||
| forcedExercise_gt | String | ||
| forcedExercise_lt | String | ||
| forcedExercise_gte | String | ||
| forcedExercise_lte | String | ||
| forcedExercise_in | [String!] | ||
| forcedExercise_not_in | [String!] | ||
| forcedExercise_contains | String | ||
| forcedExercise_contains_nocase | String | ||
| forcedExercise_not_contains | String | ||
| forcedExercise_not_contains_nocase | String | ||
| forcedExercise_starts_with | String | ||
| forcedExercise_starts_with_nocase | String | ||
| forcedExercise_not_starts_with | String | ||
| forcedExercise_not_starts_with_nocase | String | ||
| forcedExercise_ends_with | String | ||
| forcedExercise_ends_with_nocase | String | ||
| forcedExercise_not_ends_with | String | ||
| forcedExercise_not_ends_with_nocase | String | ||
| forcedExercise_ | ForcedExercise_filter | ||
| accountLiquidated | String | ||
| accountLiquidated_not | String | ||
| accountLiquidated_gt | String | ||
| accountLiquidated_lt | String | ||
| accountLiquidated_gte | String | ||
| accountLiquidated_lte | String | ||
| accountLiquidated_in | [String!] | ||
| accountLiquidated_not_in | [String!] | ||
| accountLiquidated_contains | String | ||
| accountLiquidated_contains_nocase | String | ||
| accountLiquidated_not_contains | String | ||
| accountLiquidated_not_contains_nocase | String | ||
| accountLiquidated_starts_with | String | ||
| accountLiquidated_starts_with_nocase | String | ||
| accountLiquidated_not_starts_with | String | ||
| accountLiquidated_not_starts_with_nocase | String | ||
| accountLiquidated_ends_with | String | ||
| accountLiquidated_ends_with_nocase | String | ||
| accountLiquidated_not_ends_with | String | ||
| accountLiquidated_not_ends_with_nocase | String | ||
| accountLiquidated_ | AccountLiquidated_filter | ||
| panopticVersion | BigDecimal | ||
| panopticVersion_not | BigDecimal | ||
| panopticVersion_gt | BigDecimal | ||
| panopticVersion_lt | BigDecimal | ||
| panopticVersion_gte | BigDecimal | ||
| panopticVersion_lte | BigDecimal | ||
| panopticVersion_in | [BigDecimal!] | ||
| panopticVersion_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [OptionBurn_filter] | ||
| or | [OptionBurn_filter] | ||
OptionMint_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| hash | String | ||
| hash_not | String | ||
| hash_gt | String | ||
| hash_lt | String | ||
| hash_gte | String | ||
| hash_lte | String | ||
| hash_in | [String!] | ||
| hash_not_in | [String!] | ||
| hash_contains | String | ||
| hash_contains_nocase | String | ||
| hash_not_contains | String | ||
| hash_not_contains_nocase | String | ||
| hash_starts_with | String | ||
| hash_starts_with_nocase | String | ||
| hash_not_starts_with | String | ||
| hash_not_starts_with_nocase | String | ||
| hash_ends_with | String | ||
| hash_ends_with_nocase | String | ||
| hash_not_ends_with | String | ||
| hash_not_ends_with_nocase | String | ||
| logIndex | BigInt | ||
| logIndex_not | BigInt | ||
| logIndex_gt | BigInt | ||
| logIndex_lt | BigInt | ||
| logIndex_gte | BigInt | ||
| logIndex_lte | BigInt | ||
| logIndex_in | [BigInt!] | ||
| logIndex_not_in | [BigInt!] | ||
| eventType | EventType | ||
| eventType_not | EventType | ||
| eventType_in | [EventType!] | ||
| eventType_not_in | [EventType!] | ||
| from | String | ||
| from_not | String | ||
| from_gt | String | ||
| from_lt | String | ||
| from_gte | String | ||
| from_lte | String | ||
| from_in | [String!] | ||
| from_not_in | [String!] | ||
| from_contains | String | ||
| from_contains_nocase | String | ||
| from_not_contains | String | ||
| from_not_contains_nocase | String | ||
| from_starts_with | String | ||
| from_starts_with_nocase | String | ||
| from_not_starts_with | String | ||
| from_not_starts_with_nocase | String | ||
| from_ends_with | String | ||
| from_ends_with_nocase | String | ||
| from_not_ends_with | String | ||
| from_not_ends_with_nocase | String | ||
| to | String | ||
| to_not | String | ||
| to_gt | String | ||
| to_lt | String | ||
| to_gte | String | ||
| to_lte | String | ||
| to_in | [String!] | ||
| to_not_in | [String!] | ||
| to_contains | String | ||
| to_contains_nocase | String | ||
| to_not_contains | String | ||
| to_not_contains_nocase | String | ||
| to_starts_with | String | ||
| to_starts_with_nocase | String | ||
| to_not_starts_with | String | ||
| to_not_starts_with_nocase | String | ||
| to_ends_with | String | ||
| to_ends_with_nocase | String | ||
| to_not_ends_with | String | ||
| to_not_ends_with_nocase | String | ||
| blockNumber | BigInt | ||
| blockNumber_not | BigInt | ||
| blockNumber_gt | BigInt | ||
| blockNumber_lt | BigInt | ||
| blockNumber_gte | BigInt | ||
| blockNumber_lte | BigInt | ||
| blockNumber_in | [BigInt!] | ||
| blockNumber_not_in | [BigInt!] | ||
| timestamp | BigInt | ||
| timestamp_not | BigInt | ||
| timestamp_gt | BigInt | ||
| timestamp_lt | BigInt | ||
| timestamp_gte | BigInt | ||
| timestamp_lte | BigInt | ||
| timestamp_in | [BigInt!] | ||
| timestamp_not_in | [BigInt!] | ||
| gasUsed | BigInt | ||
| gasUsed_not | BigInt | ||
| gasUsed_gt | BigInt | ||
| gasUsed_lt | BigInt | ||
| gasUsed_gte | BigInt | ||
| gasUsed_lte | BigInt | ||
| gasUsed_in | [BigInt!] | ||
| gasUsed_not_in | [BigInt!] | ||
| gasPrice | BigInt | ||
| gasPrice_not | BigInt | ||
| gasPrice_gt | BigInt | ||
| gasPrice_lt | BigInt | ||
| gasPrice_gte | BigInt | ||
| gasPrice_lte | BigInt | ||
| gasPrice_in | [BigInt!] | ||
| gasPrice_not_in | [BigInt!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| recipient | String | ||
| recipient_not | String | ||
| recipient_gt | String | ||
| recipient_lt | String | ||
| recipient_gte | String | ||
| recipient_lte | String | ||
| recipient_in | [String!] | ||
| recipient_not_in | [String!] | ||
| recipient_contains | String | ||
| recipient_contains_nocase | String | ||
| recipient_not_contains | String | ||
| recipient_not_contains_nocase | String | ||
| recipient_starts_with | String | ||
| recipient_starts_with_nocase | String | ||
| recipient_not_starts_with | String | ||
| recipient_not_starts_with_nocase | String | ||
| recipient_ends_with | String | ||
| recipient_ends_with_nocase | String | ||
| recipient_not_ends_with | String | ||
| recipient_not_ends_with_nocase | String | ||
| recipient_ | Account_filter | ||
| tokenId | String | ||
| tokenId_not | String | ||
| tokenId_gt | String | ||
| tokenId_lt | String | ||
| tokenId_gte | String | ||
| tokenId_lte | String | ||
| tokenId_in | [String!] | ||
| tokenId_not_in | [String!] | ||
| tokenId_contains | String | ||
| tokenId_contains_nocase | String | ||
| tokenId_not_contains | String | ||
| tokenId_not_contains_nocase | String | ||
| tokenId_starts_with | String | ||
| tokenId_starts_with_nocase | String | ||
| tokenId_not_starts_with | String | ||
| tokenId_not_starts_with_nocase | String | ||
| tokenId_ends_with | String | ||
| tokenId_ends_with_nocase | String | ||
| tokenId_not_ends_with | String | ||
| tokenId_not_ends_with_nocase | String | ||
| tokenId_ | TokenId_filter | ||
| positionSize | BigInt | ||
| positionSize_not | BigInt | ||
| positionSize_gt | BigInt | ||
| positionSize_lt | BigInt | ||
| positionSize_gte | BigInt | ||
| positionSize_lte | BigInt | ||
| positionSize_in | [BigInt!] | ||
| positionSize_not_in | [BigInt!] | ||
| poolUtilization0 | BigInt | ||
| poolUtilization0_not | BigInt | ||
| poolUtilization0_gt | BigInt | ||
| poolUtilization0_lt | BigInt | ||
| poolUtilization0_gte | BigInt | ||
| poolUtilization0_lte | BigInt | ||
| poolUtilization0_in | [BigInt!] | ||
| poolUtilization0_not_in | [BigInt!] | ||
| poolUtilization1 | BigInt | ||
| poolUtilization1_not | BigInt | ||
| poolUtilization1_gt | BigInt | ||
| poolUtilization1_lt | BigInt | ||
| poolUtilization1_gte | BigInt | ||
| poolUtilization1_lte | BigInt | ||
| poolUtilization1_in | [BigInt!] | ||
| poolUtilization1_not_in | [BigInt!] | ||
| currentTick | Int | ||
| currentTick_not | Int | ||
| currentTick_gt | Int | ||
| currentTick_lt | Int | ||
| currentTick_gte | Int | ||
| currentTick_lte | Int | ||
| currentTick_in | [Int!] | ||
| currentTick_not_in | [Int!] | ||
| fastOracleTick | Int | ||
| fastOracleTick_not | Int | ||
| fastOracleTick_gt | Int | ||
| fastOracleTick_lt | Int | ||
| fastOracleTick_gte | Int | ||
| fastOracleTick_lte | Int | ||
| fastOracleTick_in | [Int!] | ||
| fastOracleTick_not_in | [Int!] | ||
| lastObservedTick | Int | ||
| lastObservedTick_not | Int | ||
| lastObservedTick_gt | Int | ||
| lastObservedTick_lt | Int | ||
| lastObservedTick_gte | Int | ||
| lastObservedTick_lte | Int | ||
| lastObservedTick_in | [Int!] | ||
| lastObservedTick_not_in | [Int!] | ||
| slowOracleTick | Int | ||
| slowOracleTick_not | Int | ||
| slowOracleTick_gt | Int | ||
| slowOracleTick_lt | Int | ||
| slowOracleTick_gte | Int | ||
| slowOracleTick_lte | Int | ||
| slowOracleTick_in | [Int!] | ||
| slowOracleTick_not_in | [Int!] | ||
| accountBalance | String | ||
| accountBalance_not | String | ||
| accountBalance_gt | String | ||
| accountBalance_lt | String | ||
| accountBalance_gte | String | ||
| accountBalance_lte | String | ||
| accountBalance_in | [String!] | ||
| accountBalance_not_in | [String!] | ||
| accountBalance_contains | String | ||
| accountBalance_contains_nocase | String | ||
| accountBalance_not_contains | String | ||
| accountBalance_not_contains_nocase | String | ||
| accountBalance_starts_with | String | ||
| accountBalance_starts_with_nocase | String | ||
| accountBalance_not_starts_with | String | ||
| accountBalance_not_starts_with_nocase | String | ||
| accountBalance_ends_with | String | ||
| accountBalance_ends_with_nocase | String | ||
| accountBalance_not_ends_with | String | ||
| accountBalance_not_ends_with_nocase | String | ||
| accountBalance_ | AccountBalance_filter | ||
| panopticPool | String | ||
| panopticPool_not | String | ||
| panopticPool_gt | String | ||
| panopticPool_lt | String | ||
| panopticPool_gte | String | ||
| panopticPool_lte | String | ||
| panopticPool_in | [String!] | ||
| panopticPool_not_in | [String!] | ||
| panopticPool_contains | String | ||
| panopticPool_contains_nocase | String | ||
| panopticPool_not_contains | String | ||
| panopticPool_not_contains_nocase | String | ||
| panopticPool_starts_with | String | ||
| panopticPool_starts_with_nocase | String | ||
| panopticPool_not_starts_with | String | ||
| panopticPool_not_starts_with_nocase | String | ||
| panopticPool_ends_with | String | ||
| panopticPool_ends_with_nocase | String | ||
| panopticPool_not_ends_with | String | ||
| panopticPool_not_ends_with_nocase | String | ||
| panopticPool_ | PanopticPool_filter | ||
| commissions0 | BigDecimal | ||
| commissions0_not | BigDecimal | ||
| commissions0_gt | BigDecimal | ||
| commissions0_lt | BigDecimal | ||
| commissions0_gte | BigDecimal | ||
| commissions0_lte | BigDecimal | ||
| commissions0_in | [BigDecimal!] | ||
| commissions0_not_in | [BigDecimal!] | ||
| commissions1 | BigDecimal | ||
| commissions1_not | BigDecimal | ||
| commissions1_gt | BigDecimal | ||
| commissions1_lt | BigDecimal | ||
| commissions1_gte | BigDecimal | ||
| commissions1_lte | BigDecimal | ||
| commissions1_in | [BigDecimal!] | ||
| commissions1_not_in | [BigDecimal!] | ||
| commissions0USD | BigDecimal | ||
| commissions0USD_not | BigDecimal | ||
| commissions0USD_gt | BigDecimal | ||
| commissions0USD_lt | BigDecimal | ||
| commissions0USD_gte | BigDecimal | ||
| commissions0USD_lte | BigDecimal | ||
| commissions0USD_in | [BigDecimal!] | ||
| commissions0USD_not_in | [BigDecimal!] | ||
| commissions1USD | BigDecimal | ||
| commissions1USD_not | BigDecimal | ||
| commissions1USD_gt | BigDecimal | ||
| commissions1USD_lt | BigDecimal | ||
| commissions1USD_gte | BigDecimal | ||
| commissions1USD_lte | BigDecimal | ||
| commissions1USD_in | [BigDecimal!] | ||
| commissions1USD_not_in | [BigDecimal!] | ||
| commissionsUSD | BigDecimal | ||
| commissionsUSD_not | BigDecimal | ||
| commissionsUSD_gt | BigDecimal | ||
| commissionsUSD_lt | BigDecimal | ||
| commissionsUSD_gte | BigDecimal | ||
| commissionsUSD_lte | BigDecimal | ||
| commissionsUSD_in | [BigDecimal!] | ||
| commissionsUSD_not_in | [BigDecimal!] | ||
| tickAt | Int | ||
| tickAt_not | Int | ||
| tickAt_gt | Int | ||
| tickAt_lt | Int | ||
| tickAt_gte | Int | ||
| tickAt_lte | Int | ||
| tickAt_in | [Int!] | ||
| tickAt_not_in | [Int!] | ||
| panopticVersion | BigDecimal | ||
| panopticVersion_not | BigDecimal | ||
| panopticVersion_gt | BigDecimal | ||
| panopticVersion_lt | BigDecimal | ||
| panopticVersion_gte | BigDecimal | ||
| panopticVersion_lte | BigDecimal | ||
| panopticVersion_in | [BigDecimal!] | ||
| panopticVersion_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [OptionMint_filter] | ||
| or | [OptionMint_filter] | ||
OptionRoll_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| hash | String | ||
| hash_not | String | ||
| hash_gt | String | ||
| hash_lt | String | ||
| hash_gte | String | ||
| hash_lte | String | ||
| hash_in | [String!] | ||
| hash_not_in | [String!] | ||
| hash_contains | String | ||
| hash_contains_nocase | String | ||
| hash_not_contains | String | ||
| hash_not_contains_nocase | String | ||
| hash_starts_with | String | ||
| hash_starts_with_nocase | String | ||
| hash_not_starts_with | String | ||
| hash_not_starts_with_nocase | String | ||
| hash_ends_with | String | ||
| hash_ends_with_nocase | String | ||
| hash_not_ends_with | String | ||
| hash_not_ends_with_nocase | String | ||
| logIndex | BigInt | ||
| logIndex_not | BigInt | ||
| logIndex_gt | BigInt | ||
| logIndex_lt | BigInt | ||
| logIndex_gte | BigInt | ||
| logIndex_lte | BigInt | ||
| logIndex_in | [BigInt!] | ||
| logIndex_not_in | [BigInt!] | ||
| eventType | EventType | ||
| eventType_not | EventType | ||
| eventType_in | [EventType!] | ||
| eventType_not_in | [EventType!] | ||
| from | String | ||
| from_not | String | ||
| from_gt | String | ||
| from_lt | String | ||
| from_gte | String | ||
| from_lte | String | ||
| from_in | [String!] | ||
| from_not_in | [String!] | ||
| from_contains | String | ||
| from_contains_nocase | String | ||
| from_not_contains | String | ||
| from_not_contains_nocase | String | ||
| from_starts_with | String | ||
| from_starts_with_nocase | String | ||
| from_not_starts_with | String | ||
| from_not_starts_with_nocase | String | ||
| from_ends_with | String | ||
| from_ends_with_nocase | String | ||
| from_not_ends_with | String | ||
| from_not_ends_with_nocase | String | ||
| to | String | ||
| to_not | String | ||
| to_gt | String | ||
| to_lt | String | ||
| to_gte | String | ||
| to_lte | String | ||
| to_in | [String!] | ||
| to_not_in | [String!] | ||
| to_contains | String | ||
| to_contains_nocase | String | ||
| to_not_contains | String | ||
| to_not_contains_nocase | String | ||
| to_starts_with | String | ||
| to_starts_with_nocase | String | ||
| to_not_starts_with | String | ||
| to_not_starts_with_nocase | String | ||
| to_ends_with | String | ||
| to_ends_with_nocase | String | ||
| to_not_ends_with | String | ||
| to_not_ends_with_nocase | String | ||
| blockNumber | BigInt | ||
| blockNumber_not | BigInt | ||
| blockNumber_gt | BigInt | ||
| blockNumber_lt | BigInt | ||
| blockNumber_gte | BigInt | ||
| blockNumber_lte | BigInt | ||
| blockNumber_in | [BigInt!] | ||
| blockNumber_not_in | [BigInt!] | ||
| timestamp | BigInt | ||
| timestamp_not | BigInt | ||
| timestamp_gt | BigInt | ||
| timestamp_lt | BigInt | ||
| timestamp_gte | BigInt | ||
| timestamp_lte | BigInt | ||
| timestamp_in | [BigInt!] | ||
| timestamp_not_in | [BigInt!] | ||
| gasUsed | BigInt | ||
| gasUsed_not | BigInt | ||
| gasUsed_gt | BigInt | ||
| gasUsed_lt | BigInt | ||
| gasUsed_gte | BigInt | ||
| gasUsed_lte | BigInt | ||
| gasUsed_in | [BigInt!] | ||
| gasUsed_not_in | [BigInt!] | ||
| gasPrice | BigInt | ||
| gasPrice_not | BigInt | ||
| gasPrice_gt | BigInt | ||
| gasPrice_lt | BigInt | ||
| gasPrice_gte | BigInt | ||
| gasPrice_lte | BigInt | ||
| gasPrice_in | [BigInt!] | ||
| gasPrice_not_in | [BigInt!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| recipient | String | ||
| recipient_not | String | ||
| recipient_gt | String | ||
| recipient_lt | String | ||
| recipient_gte | String | ||
| recipient_lte | String | ||
| recipient_in | [String!] | ||
| recipient_not_in | [String!] | ||
| recipient_contains | String | ||
| recipient_contains_nocase | String | ||
| recipient_not_contains | String | ||
| recipient_not_contains_nocase | String | ||
| recipient_starts_with | String | ||
| recipient_starts_with_nocase | String | ||
| recipient_not_starts_with | String | ||
| recipient_not_starts_with_nocase | String | ||
| recipient_ends_with | String | ||
| recipient_ends_with_nocase | String | ||
| recipient_not_ends_with | String | ||
| recipient_not_ends_with_nocase | String | ||
| recipient_ | Account_filter | ||
| positionSize | BigInt | ||
| positionSize_not | BigInt | ||
| positionSize_gt | BigInt | ||
| positionSize_lt | BigInt | ||
| positionSize_gte | BigInt | ||
| positionSize_lte | BigInt | ||
| positionSize_in | [BigInt!] | ||
| positionSize_not_in | [BigInt!] | ||
| oldTokenId | BigInt | ||
| oldTokenId_not | BigInt | ||
| oldTokenId_gt | BigInt | ||
| oldTokenId_lt | BigInt | ||
| oldTokenId_gte | BigInt | ||
| oldTokenId_lte | BigInt | ||
| oldTokenId_in | [BigInt!] | ||
| oldTokenId_not_in | [BigInt!] | ||
| newTokenId | BigInt | ||
| newTokenId_not | BigInt | ||
| newTokenId_gt | BigInt | ||
| newTokenId_lt | BigInt | ||
| newTokenId_gte | BigInt | ||
| newTokenId_lte | BigInt | ||
| newTokenId_in | [BigInt!] | ||
| newTokenId_not_in | [BigInt!] | ||
| tickAtRoll | Int | ||
| tickAtRoll_not | Int | ||
| tickAtRoll_gt | Int | ||
| tickAtRoll_lt | Int | ||
| tickAtRoll_gte | Int | ||
| tickAtRoll_lte | Int | ||
| tickAtRoll_in | [Int!] | ||
| tickAtRoll_not_in | [Int!] | ||
| poolUtilizations | BigInt | ||
| poolUtilizations_not | BigInt | ||
| poolUtilizations_gt | BigInt | ||
| poolUtilizations_lt | BigInt | ||
| poolUtilizations_gte | BigInt | ||
| poolUtilizations_lte | BigInt | ||
| poolUtilizations_in | [BigInt!] | ||
| poolUtilizations_not_in | [BigInt!] | ||
| premia | BigInt | ||
| premia_not | BigInt | ||
| premia_gt | BigInt | ||
| premia_lt | BigInt | ||
| premia_gte | BigInt | ||
| premia_lte | BigInt | ||
| premia_in | [BigInt!] | ||
| premia_not_in | [BigInt!] | ||
| panopticPool | String | ||
| panopticPool_not | String | ||
| panopticPool_gt | String | ||
| panopticPool_lt | String | ||
| panopticPool_gte | String | ||
| panopticPool_lte | String | ||
| panopticPool_in | [String!] | ||
| panopticPool_not_in | [String!] | ||
| panopticPool_contains | String | ||
| panopticPool_contains_nocase | String | ||
| panopticPool_not_contains | String | ||
| panopticPool_not_contains_nocase | String | ||
| panopticPool_starts_with | String | ||
| panopticPool_starts_with_nocase | String | ||
| panopticPool_not_starts_with | String | ||
| panopticPool_not_starts_with_nocase | String | ||
| panopticPool_ends_with | String | ||
| panopticPool_ends_with_nocase | String | ||
| panopticPool_not_ends_with | String | ||
| panopticPool_not_ends_with_nocase | String | ||
| panopticPool_ | PanopticPool_filter | ||
| poolUtilization0 | BigInt | ||
| poolUtilization0_not | BigInt | ||
| poolUtilization0_gt | BigInt | ||
| poolUtilization0_lt | BigInt | ||
| poolUtilization0_gte | BigInt | ||
| poolUtilization0_lte | BigInt | ||
| poolUtilization0_in | [BigInt!] | ||
| poolUtilization0_not_in | [BigInt!] | ||
| poolUtilization1 | BigInt | ||
| poolUtilization1_not | BigInt | ||
| poolUtilization1_gt | BigInt | ||
| poolUtilization1_lt | BigInt | ||
| poolUtilization1_gte | BigInt | ||
| poolUtilization1_lte | BigInt | ||
| poolUtilization1_in | [BigInt!] | ||
| poolUtilization1_not_in | [BigInt!] | ||
| premium0 | BigInt | ||
| premium0_not | BigInt | ||
| premium0_gt | BigInt | ||
| premium0_lt | BigInt | ||
| premium0_gte | BigInt | ||
| premium0_lte | BigInt | ||
| premium0_in | [BigInt!] | ||
| premium0_not_in | [BigInt!] | ||
| premium1 | BigInt | ||
| premium1_not | BigInt | ||
| premium1_gt | BigInt | ||
| premium1_lt | BigInt | ||
| premium1_gte | BigInt | ||
| premium1_lte | BigInt | ||
| premium1_in | [BigInt!] | ||
| premium1_not_in | [BigInt!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [OptionRoll_filter] | ||
| or | [OptionRoll_filter] | ||
PanopticFactory_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| poolCount | BigInt | ||
| poolCount_not | BigInt | ||
| poolCount_gt | BigInt | ||
| poolCount_lt | BigInt | ||
| poolCount_gte | BigInt | ||
| poolCount_lte | BigInt | ||
| poolCount_in | [BigInt!] | ||
| poolCount_not_in | [BigInt!] | ||
| owner | ID | ||
| owner_not | ID | ||
| owner_gt | ID | ||
| owner_lt | ID | ||
| owner_gte | ID | ||
| owner_lte | ID | ||
| owner_in | [ID!] | ||
| owner_not_in | [ID!] | ||
| panopticVersion | BigDecimal | ||
| panopticVersion_not | BigDecimal | ||
| panopticVersion_gt | BigDecimal | ||
| panopticVersion_lt | BigDecimal | ||
| panopticVersion_gte | BigDecimal | ||
| panopticVersion_lte | BigDecimal | ||
| panopticVersion_in | [BigDecimal!] | ||
| panopticVersion_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [PanopticFactory_filter] | ||
| or | [PanopticFactory_filter] | ||
PanopticPoolAccount_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| panopticPool | String | ||
| panopticPool_not | String | ||
| panopticPool_gt | String | ||
| panopticPool_lt | String | ||
| panopticPool_gte | String | ||
| panopticPool_lte | String | ||
| panopticPool_in | [String!] | ||
| panopticPool_not_in | [String!] | ||
| panopticPool_contains | String | ||
| panopticPool_contains_nocase | String | ||
| panopticPool_not_contains | String | ||
| panopticPool_not_contains_nocase | String | ||
| panopticPool_starts_with | String | ||
| panopticPool_starts_with_nocase | String | ||
| panopticPool_not_starts_with | String | ||
| panopticPool_not_starts_with_nocase | String | ||
| panopticPool_ends_with | String | ||
| panopticPool_ends_with_nocase | String | ||
| panopticPool_not_ends_with | String | ||
| panopticPool_not_ends_with_nocase | String | ||
| panopticPool_ | PanopticPool_filter | ||
| account | String | ||
| account_not | String | ||
| account_gt | String | ||
| account_lt | String | ||
| account_gte | String | ||
| account_lte | String | ||
| account_in | [String!] | ||
| account_not_in | [String!] | ||
| account_contains | String | ||
| account_contains_nocase | String | ||
| account_not_contains | String | ||
| account_not_contains_nocase | String | ||
| account_starts_with | String | ||
| account_starts_with_nocase | String | ||
| account_not_starts_with | String | ||
| account_not_starts_with_nocase | String | ||
| account_ends_with | String | ||
| account_ends_with_nocase | String | ||
| account_not_ends_with | String | ||
| account_not_ends_with_nocase | String | ||
| account_ | Account_filter | ||
| collateral0 | String | ||
| collateral0_not | String | ||
| collateral0_gt | String | ||
| collateral0_lt | String | ||
| collateral0_gte | String | ||
| collateral0_lte | String | ||
| collateral0_in | [String!] | ||
| collateral0_not_in | [String!] | ||
| collateral0_contains | String | ||
| collateral0_contains_nocase | String | ||
| collateral0_not_contains | String | ||
| collateral0_not_contains_nocase | String | ||
| collateral0_starts_with | String | ||
| collateral0_starts_with_nocase | String | ||
| collateral0_not_starts_with | String | ||
| collateral0_not_starts_with_nocase | String | ||
| collateral0_ends_with | String | ||
| collateral0_ends_with_nocase | String | ||
| collateral0_not_ends_with | String | ||
| collateral0_not_ends_with_nocase | String | ||
| collateral0_ | Collateral_filter | ||
| collateral0Shares | BigInt | ||
| collateral0Shares_not | BigInt | ||
| collateral0Shares_gt | BigInt | ||
| collateral0Shares_lt | BigInt | ||
| collateral0Shares_gte | BigInt | ||
| collateral0Shares_lte | BigInt | ||
| collateral0Shares_in | [BigInt!] | ||
| collateral0Shares_not_in | [BigInt!] | ||
| collateral0Assets | BigInt | ||
| collateral0Assets_not | BigInt | ||
| collateral0Assets_gt | BigInt | ||
| collateral0Assets_lt | BigInt | ||
| collateral0Assets_gte | BigInt | ||
| collateral0Assets_lte | BigInt | ||
| collateral0Assets_in | [BigInt!] | ||
| collateral0Assets_not_in | [BigInt!] | ||
| collateral1 | String | ||
| collateral1_not | String | ||
| collateral1_gt | String | ||
| collateral1_lt | String | ||
| collateral1_gte | String | ||
| collateral1_lte | String | ||
| collateral1_in | [String!] | ||
| collateral1_not_in | [String!] | ||
| collateral1_contains | String | ||
| collateral1_contains_nocase | String | ||
| collateral1_not_contains | String | ||
| collateral1_not_contains_nocase | String | ||
| collateral1_starts_with | String | ||
| collateral1_starts_with_nocase | String | ||
| collateral1_not_starts_with | String | ||
| collateral1_not_starts_with_nocase | String | ||
| collateral1_ends_with | String | ||
| collateral1_ends_with_nocase | String | ||
| collateral1_not_ends_with | String | ||
| collateral1_not_ends_with_nocase | String | ||
| collateral1_ | Collateral_filter | ||
| collateral1Shares | BigInt | ||
| collateral1Shares_not | BigInt | ||
| collateral1Shares_gt | BigInt | ||
| collateral1Shares_lt | BigInt | ||
| collateral1Shares_gte | BigInt | ||
| collateral1Shares_lte | BigInt | ||
| collateral1Shares_in | [BigInt!] | ||
| collateral1Shares_not_in | [BigInt!] | ||
| collateral1Assets | BigInt | ||
| collateral1Assets_not | BigInt | ||
| collateral1Assets_gt | BigInt | ||
| collateral1Assets_lt | BigInt | ||
| collateral1Assets_gte | BigInt | ||
| collateral1Assets_lte | BigInt | ||
| collateral1Assets_in | [BigInt!] | ||
| collateral1Assets_not_in | [BigInt!] | ||
| isLiquidated | Int | ||
| isLiquidated_not | Int | ||
| isLiquidated_gt | Int | ||
| isLiquidated_lt | Int | ||
| isLiquidated_gte | Int | ||
| isLiquidated_lte | Int | ||
| isLiquidated_in | [Int!] | ||
| isLiquidated_not_in | [Int!] | ||
| accountBalances_ | AccountBalance_filter | ||
| commissions0 | BigDecimal | ||
| commissions0_not | BigDecimal | ||
| commissions0_gt | BigDecimal | ||
| commissions0_lt | BigDecimal | ||
| commissions0_gte | BigDecimal | ||
| commissions0_lte | BigDecimal | ||
| commissions0_in | [BigDecimal!] | ||
| commissions0_not_in | [BigDecimal!] | ||
| commissions0Usd | BigDecimal | ||
| commissions0Usd_not | BigDecimal | ||
| commissions0Usd_gt | BigDecimal | ||
| commissions0Usd_lt | BigDecimal | ||
| commissions0Usd_gte | BigDecimal | ||
| commissions0Usd_lte | BigDecimal | ||
| commissions0Usd_in | [BigDecimal!] | ||
| commissions0Usd_not_in | [BigDecimal!] | ||
| commissions1 | BigDecimal | ||
| commissions1_not | BigDecimal | ||
| commissions1_gt | BigDecimal | ||
| commissions1_lt | BigDecimal | ||
| commissions1_gte | BigDecimal | ||
| commissions1_lte | BigDecimal | ||
| commissions1_in | [BigDecimal!] | ||
| commissions1_not_in | [BigDecimal!] | ||
| commissions1Usd | BigDecimal | ||
| commissions1Usd_not | BigDecimal | ||
| commissions1Usd_gt | BigDecimal | ||
| commissions1Usd_lt | BigDecimal | ||
| commissions1Usd_gte | BigDecimal | ||
| commissions1Usd_lte | BigDecimal | ||
| commissions1Usd_in | [BigDecimal!] | ||
| commissions1Usd_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [PanopticPoolAccount_filter] | ||
| or | [PanopticPoolAccount_filter] | ||
PanopticPoolDayData_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| panopticPool | String | ||
| panopticPool_not | String | ||
| panopticPool_gt | String | ||
| panopticPool_lt | String | ||
| panopticPool_gte | String | ||
| panopticPool_lte | String | ||
| panopticPool_in | [String!] | ||
| panopticPool_not_in | [String!] | ||
| panopticPool_contains | String | ||
| panopticPool_contains_nocase | String | ||
| panopticPool_not_contains | String | ||
| panopticPool_not_contains_nocase | String | ||
| panopticPool_starts_with | String | ||
| panopticPool_starts_with_nocase | String | ||
| panopticPool_not_starts_with | String | ||
| panopticPool_not_starts_with_nocase | String | ||
| panopticPool_ends_with | String | ||
| panopticPool_ends_with_nocase | String | ||
| panopticPool_not_ends_with | String | ||
| panopticPool_not_ends_with_nocase | String | ||
| panopticPool_ | PanopticPool_filter | ||
| date | Int | ||
| date_not | Int | ||
| date_gt | Int | ||
| date_lt | Int | ||
| date_gte | Int | ||
| date_lte | Int | ||
| date_in | [Int!] | ||
| date_not_in | [Int!] | ||
| mintVolume0 | BigDecimal | ||
| mintVolume0_not | BigDecimal | ||
| mintVolume0_gt | BigDecimal | ||
| mintVolume0_lt | BigDecimal | ||
| mintVolume0_gte | BigDecimal | ||
| mintVolume0_lte | BigDecimal | ||
| mintVolume0_in | [BigDecimal!] | ||
| mintVolume0_not_in | [BigDecimal!] | ||
| mintVolume0USD | BigDecimal | ||
| mintVolume0USD_not | BigDecimal | ||
| mintVolume0USD_gt | BigDecimal | ||
| mintVolume0USD_lt | BigDecimal | ||
| mintVolume0USD_gte | BigDecimal | ||
| mintVolume0USD_lte | BigDecimal | ||
| mintVolume0USD_in | [BigDecimal!] | ||
| mintVolume0USD_not_in | [BigDecimal!] | ||
| burnVolume0 | BigDecimal | ||
| burnVolume0_not | BigDecimal | ||
| burnVolume0_gt | BigDecimal | ||
| burnVolume0_lt | BigDecimal | ||
| burnVolume0_gte | BigDecimal | ||
| burnVolume0_lte | BigDecimal | ||
| burnVolume0_in | [BigDecimal!] | ||
| burnVolume0_not_in | [BigDecimal!] | ||
| burnVolume0USD | BigDecimal | ||
| burnVolume0USD_not | BigDecimal | ||
| burnVolume0USD_gt | BigDecimal | ||
| burnVolume0USD_lt | BigDecimal | ||
| burnVolume0USD_gte | BigDecimal | ||
| burnVolume0USD_lte | BigDecimal | ||
| burnVolume0USD_in | [BigDecimal!] | ||
| burnVolume0USD_not_in | [BigDecimal!] | ||
| totalVolume0 | BigDecimal | ||
| totalVolume0_not | BigDecimal | ||
| totalVolume0_gt | BigDecimal | ||
| totalVolume0_lt | BigDecimal | ||
| totalVolume0_gte | BigDecimal | ||
| totalVolume0_lte | BigDecimal | ||
| totalVolume0_in | [BigDecimal!] | ||
| totalVolume0_not_in | [BigDecimal!] | ||
| totalVolume0USD | BigDecimal | ||
| totalVolume0USD_not | BigDecimal | ||
| totalVolume0USD_gt | BigDecimal | ||
| totalVolume0USD_lt | BigDecimal | ||
| totalVolume0USD_gte | BigDecimal | ||
| totalVolume0USD_lte | BigDecimal | ||
| totalVolume0USD_in | [BigDecimal!] | ||
| totalVolume0USD_not_in | [BigDecimal!] | ||
| mintVolume1 | BigDecimal | ||
| mintVolume1_not | BigDecimal | ||
| mintVolume1_gt | BigDecimal | ||
| mintVolume1_lt | BigDecimal | ||
| mintVolume1_gte | BigDecimal | ||
| mintVolume1_lte | BigDecimal | ||
| mintVolume1_in | [BigDecimal!] | ||
| mintVolume1_not_in | [BigDecimal!] | ||
| mintVolume1USD | BigDecimal | ||
| mintVolume1USD_not | BigDecimal | ||
| mintVolume1USD_gt | BigDecimal | ||
| mintVolume1USD_lt | BigDecimal | ||
| mintVolume1USD_gte | BigDecimal | ||
| mintVolume1USD_lte | BigDecimal | ||
| mintVolume1USD_in | [BigDecimal!] | ||
| mintVolume1USD_not_in | [BigDecimal!] | ||
| burnVolume1 | BigDecimal | ||
| burnVolume1_not | BigDecimal | ||
| burnVolume1_gt | BigDecimal | ||
| burnVolume1_lt | BigDecimal | ||
| burnVolume1_gte | BigDecimal | ||
| burnVolume1_lte | BigDecimal | ||
| burnVolume1_in | [BigDecimal!] | ||
| burnVolume1_not_in | [BigDecimal!] | ||
| burnVolume1USD | BigDecimal | ||
| burnVolume1USD_not | BigDecimal | ||
| burnVolume1USD_gt | BigDecimal | ||
| burnVolume1USD_lt | BigDecimal | ||
| burnVolume1USD_gte | BigDecimal | ||
| burnVolume1USD_lte | BigDecimal | ||
| burnVolume1USD_in | [BigDecimal!] | ||
| burnVolume1USD_not_in | [BigDecimal!] | ||
| totalVolume1 | BigDecimal | ||
| totalVolume1_not | BigDecimal | ||
| totalVolume1_gt | BigDecimal | ||
| totalVolume1_lt | BigDecimal | ||
| totalVolume1_gte | BigDecimal | ||
| totalVolume1_lte | BigDecimal | ||
| totalVolume1_in | [BigDecimal!] | ||
| totalVolume1_not_in | [BigDecimal!] | ||
| totalVolume1USD | BigDecimal | ||
| totalVolume1USD_not | BigDecimal | ||
| totalVolume1USD_gt | BigDecimal | ||
| totalVolume1USD_lt | BigDecimal | ||
| totalVolume1USD_gte | BigDecimal | ||
| totalVolume1USD_lte | BigDecimal | ||
| totalVolume1USD_in | [BigDecimal!] | ||
| totalVolume1USD_not_in | [BigDecimal!] | ||
| totalVolumeUSD | BigDecimal | ||
| totalVolumeUSD_not | BigDecimal | ||
| totalVolumeUSD_gt | BigDecimal | ||
| totalVolumeUSD_lt | BigDecimal | ||
| totalVolumeUSD_gte | BigDecimal | ||
| totalVolumeUSD_lte | BigDecimal | ||
| totalVolumeUSD_in | [BigDecimal!] | ||
| totalVolumeUSD_not_in | [BigDecimal!] | ||
| commissions0 | BigDecimal | ||
| commissions0_not | BigDecimal | ||
| commissions0_gt | BigDecimal | ||
| commissions0_lt | BigDecimal | ||
| commissions0_gte | BigDecimal | ||
| commissions0_lte | BigDecimal | ||
| commissions0_in | [BigDecimal!] | ||
| commissions0_not_in | [BigDecimal!] | ||
| commissions0USD | BigDecimal | ||
| commissions0USD_not | BigDecimal | ||
| commissions0USD_gt | BigDecimal | ||
| commissions0USD_lt | BigDecimal | ||
| commissions0USD_gte | BigDecimal | ||
| commissions0USD_lte | BigDecimal | ||
| commissions0USD_in | [BigDecimal!] | ||
| commissions0USD_not_in | [BigDecimal!] | ||
| commissions1 | BigDecimal | ||
| commissions1_not | BigDecimal | ||
| commissions1_gt | BigDecimal | ||
| commissions1_lt | BigDecimal | ||
| commissions1_gte | BigDecimal | ||
| commissions1_lte | BigDecimal | ||
| commissions1_in | [BigDecimal!] | ||
| commissions1_not_in | [BigDecimal!] | ||
| commissions1USD | BigDecimal | ||
| commissions1USD_not | BigDecimal | ||
| commissions1USD_gt | BigDecimal | ||
| commissions1USD_lt | BigDecimal | ||
| commissions1USD_gte | BigDecimal | ||
| commissions1USD_lte | BigDecimal | ||
| commissions1USD_in | [BigDecimal!] | ||
| commissions1USD_not_in | [BigDecimal!] | ||
| commissionsUSD | BigDecimal | ||
| commissionsUSD_not | BigDecimal | ||
| commissionsUSD_gt | BigDecimal | ||
| commissionsUSD_lt | BigDecimal | ||
| commissionsUSD_gte | BigDecimal | ||
| commissionsUSD_lte | BigDecimal | ||
| commissionsUSD_in | [BigDecimal!] | ||
| commissionsUSD_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [PanopticPoolDayData_filter] | ||
| or | [PanopticPoolDayData_filter] | ||
PanopticPool_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| txCount | BigInt | ||
| txCount_not | BigInt | ||
| txCount_gt | BigInt | ||
| txCount_lt | BigInt | ||
| txCount_gte | BigInt | ||
| txCount_lte | BigInt | ||
| txCount_in | [BigInt!] | ||
| txCount_not_in | [BigInt!] | ||
| token0 | String | ||
| token0_not | String | ||
| token0_gt | String | ||
| token0_lt | String | ||
| token0_gte | String | ||
| token0_lte | String | ||
| token0_in | [String!] | ||
| token0_not_in | [String!] | ||
| token0_contains | String | ||
| token0_contains_nocase | String | ||
| token0_not_contains | String | ||
| token0_not_contains_nocase | String | ||
| token0_starts_with | String | ||
| token0_starts_with_nocase | String | ||
| token0_not_starts_with | String | ||
| token0_not_starts_with_nocase | String | ||
| token0_ends_with | String | ||
| token0_ends_with_nocase | String | ||
| token0_not_ends_with | String | ||
| token0_not_ends_with_nocase | String | ||
| token0_ | Token_filter | ||
| token1 | String | ||
| token1_not | String | ||
| token1_gt | String | ||
| token1_lt | String | ||
| token1_gte | String | ||
| token1_lte | String | ||
| token1_in | [String!] | ||
| token1_not_in | [String!] | ||
| token1_contains | String | ||
| token1_contains_nocase | String | ||
| token1_not_contains | String | ||
| token1_not_contains_nocase | String | ||
| token1_starts_with | String | ||
| token1_starts_with_nocase | String | ||
| token1_not_starts_with | String | ||
| token1_not_starts_with_nocase | String | ||
| token1_ends_with | String | ||
| token1_ends_with_nocase | String | ||
| token1_not_ends_with | String | ||
| token1_not_ends_with_nocase | String | ||
| token1_ | Token_filter | ||
| feeTier | BigInt | ||
| feeTier_not | BigInt | ||
| feeTier_gt | BigInt | ||
| feeTier_lt | BigInt | ||
| feeTier_gte | BigInt | ||
| feeTier_lte | BigInt | ||
| feeTier_in | [BigInt!] | ||
| feeTier_not_in | [BigInt!] | ||
| collateral0 | String | ||
| collateral0_not | String | ||
| collateral0_gt | String | ||
| collateral0_lt | String | ||
| collateral0_gte | String | ||
| collateral0_lte | String | ||
| collateral0_in | [String!] | ||
| collateral0_not_in | [String!] | ||
| collateral0_contains | String | ||
| collateral0_contains_nocase | String | ||
| collateral0_not_contains | String | ||
| collateral0_not_contains_nocase | String | ||
| collateral0_starts_with | String | ||
| collateral0_starts_with_nocase | String | ||
| collateral0_not_starts_with | String | ||
| collateral0_not_starts_with_nocase | String | ||
| collateral0_ends_with | String | ||
| collateral0_ends_with_nocase | String | ||
| collateral0_not_ends_with | String | ||
| collateral0_not_ends_with_nocase | String | ||
| collateral0_ | Collateral_filter | ||
| collateral1 | String | ||
| collateral1_not | String | ||
| collateral1_gt | String | ||
| collateral1_lt | String | ||
| collateral1_gte | String | ||
| collateral1_lte | String | ||
| collateral1_in | [String!] | ||
| collateral1_not_in | [String!] | ||
| collateral1_contains | String | ||
| collateral1_contains_nocase | String | ||
| collateral1_not_contains | String | ||
| collateral1_not_contains_nocase | String | ||
| collateral1_starts_with | String | ||
| collateral1_starts_with_nocase | String | ||
| collateral1_not_starts_with | String | ||
| collateral1_not_starts_with_nocase | String | ||
| collateral1_ends_with | String | ||
| collateral1_ends_with_nocase | String | ||
| collateral1_not_ends_with | String | ||
| collateral1_not_ends_with_nocase | String | ||
| collateral1_ | Collateral_filter | ||
| underlyingPool | String | ||
| underlyingPool_not | String | ||
| underlyingPool_gt | String | ||
| underlyingPool_lt | String | ||
| underlyingPool_gte | String | ||
| underlyingPool_lte | String | ||
| underlyingPool_in | [String!] | ||
| underlyingPool_not_in | [String!] | ||
| underlyingPool_contains | String | ||
| underlyingPool_contains_nocase | String | ||
| underlyingPool_not_contains | String | ||
| underlyingPool_not_contains_nocase | String | ||
| underlyingPool_starts_with | String | ||
| underlyingPool_starts_with_nocase | String | ||
| underlyingPool_not_starts_with | String | ||
| underlyingPool_not_starts_with_nocase | String | ||
| underlyingPool_ends_with | String | ||
| underlyingPool_ends_with_nocase | String | ||
| underlyingPool_not_ends_with | String | ||
| underlyingPool_not_ends_with_nocase | String | ||
| underlyingPool_ | Pool_filter | ||
| panopticVersion | BigDecimal | ||
| panopticVersion_not | BigDecimal | ||
| panopticVersion_gt | BigDecimal | ||
| panopticVersion_lt | BigDecimal | ||
| panopticVersion_gte | BigDecimal | ||
| panopticVersion_lte | BigDecimal | ||
| panopticVersion_in | [BigDecimal!] | ||
| panopticVersion_not_in | [BigDecimal!] | ||
| oracleContract | Bytes | ||
| oracleContract_not | Bytes | ||
| oracleContract_gt | Bytes | ||
| oracleContract_lt | Bytes | ||
| oracleContract_gte | Bytes | ||
| oracleContract_lte | Bytes | ||
| oracleContract_in | [Bytes!] | ||
| oracleContract_not_in | [Bytes!] | ||
| oracleContract_contains | Bytes | ||
| oracleContract_not_contains | Bytes | ||
| mintVolume0 | BigDecimal | ||
| mintVolume0_not | BigDecimal | ||
| mintVolume0_gt | BigDecimal | ||
| mintVolume0_lt | BigDecimal | ||
| mintVolume0_gte | BigDecimal | ||
| mintVolume0_lte | BigDecimal | ||
| mintVolume0_in | [BigDecimal!] | ||
| mintVolume0_not_in | [BigDecimal!] | ||
| mintVolume0USD | BigDecimal | ||
| mintVolume0USD_not | BigDecimal | ||
| mintVolume0USD_gt | BigDecimal | ||
| mintVolume0USD_lt | BigDecimal | ||
| mintVolume0USD_gte | BigDecimal | ||
| mintVolume0USD_lte | BigDecimal | ||
| mintVolume0USD_in | [BigDecimal!] | ||
| mintVolume0USD_not_in | [BigDecimal!] | ||
| burnVolume0 | BigDecimal | ||
| burnVolume0_not | BigDecimal | ||
| burnVolume0_gt | BigDecimal | ||
| burnVolume0_lt | BigDecimal | ||
| burnVolume0_gte | BigDecimal | ||
| burnVolume0_lte | BigDecimal | ||
| burnVolume0_in | [BigDecimal!] | ||
| burnVolume0_not_in | [BigDecimal!] | ||
| burnVolume0USD | BigDecimal | ||
| burnVolume0USD_not | BigDecimal | ||
| burnVolume0USD_gt | BigDecimal | ||
| burnVolume0USD_lt | BigDecimal | ||
| burnVolume0USD_gte | BigDecimal | ||
| burnVolume0USD_lte | BigDecimal | ||
| burnVolume0USD_in | [BigDecimal!] | ||
| burnVolume0USD_not_in | [BigDecimal!] | ||
| totalVolume0 | BigDecimal | ||
| totalVolume0_not | BigDecimal | ||
| totalVolume0_gt | BigDecimal | ||
| totalVolume0_lt | BigDecimal | ||
| totalVolume0_gte | BigDecimal | ||
| totalVolume0_lte | BigDecimal | ||
| totalVolume0_in | [BigDecimal!] | ||
| totalVolume0_not_in | [BigDecimal!] | ||
| totalVolume0USD | BigDecimal | ||
| totalVolume0USD_not | BigDecimal | ||
| totalVolume0USD_gt | BigDecimal | ||
| totalVolume0USD_lt | BigDecimal | ||
| totalVolume0USD_gte | BigDecimal | ||
| totalVolume0USD_lte | BigDecimal | ||
| totalVolume0USD_in | [BigDecimal!] | ||
| totalVolume0USD_not_in | [BigDecimal!] | ||
| mintVolume1 | BigDecimal | ||
| mintVolume1_not | BigDecimal | ||
| mintVolume1_gt | BigDecimal | ||
| mintVolume1_lt | BigDecimal | ||
| mintVolume1_gte | BigDecimal | ||
| mintVolume1_lte | BigDecimal | ||
| mintVolume1_in | [BigDecimal!] | ||
| mintVolume1_not_in | [BigDecimal!] | ||
| mintVolume1USD | BigDecimal | ||
| mintVolume1USD_not | BigDecimal | ||
| mintVolume1USD_gt | BigDecimal | ||
| mintVolume1USD_lt | BigDecimal | ||
| mintVolume1USD_gte | BigDecimal | ||
| mintVolume1USD_lte | BigDecimal | ||
| mintVolume1USD_in | [BigDecimal!] | ||
| mintVolume1USD_not_in | [BigDecimal!] | ||
| burnVolume1 | BigDecimal | ||
| burnVolume1_not | BigDecimal | ||
| burnVolume1_gt | BigDecimal | ||
| burnVolume1_lt | BigDecimal | ||
| burnVolume1_gte | BigDecimal | ||
| burnVolume1_lte | BigDecimal | ||
| burnVolume1_in | [BigDecimal!] | ||
| burnVolume1_not_in | [BigDecimal!] | ||
| burnVolume1USD | BigDecimal | ||
| burnVolume1USD_not | BigDecimal | ||
| burnVolume1USD_gt | BigDecimal | ||
| burnVolume1USD_lt | BigDecimal | ||
| burnVolume1USD_gte | BigDecimal | ||
| burnVolume1USD_lte | BigDecimal | ||
| burnVolume1USD_in | [BigDecimal!] | ||
| burnVolume1USD_not_in | [BigDecimal!] | ||
| totalVolume1 | BigDecimal | ||
| totalVolume1_not | BigDecimal | ||
| totalVolume1_gt | BigDecimal | ||
| totalVolume1_lt | BigDecimal | ||
| totalVolume1_gte | BigDecimal | ||
| totalVolume1_lte | BigDecimal | ||
| totalVolume1_in | [BigDecimal!] | ||
| totalVolume1_not_in | [BigDecimal!] | ||
| totalVolume1USD | BigDecimal | ||
| totalVolume1USD_not | BigDecimal | ||
| totalVolume1USD_gt | BigDecimal | ||
| totalVolume1USD_lt | BigDecimal | ||
| totalVolume1USD_gte | BigDecimal | ||
| totalVolume1USD_lte | BigDecimal | ||
| totalVolume1USD_in | [BigDecimal!] | ||
| totalVolume1USD_not_in | [BigDecimal!] | ||
| totalVolumeUSD | BigDecimal | ||
| totalVolumeUSD_not | BigDecimal | ||
| totalVolumeUSD_gt | BigDecimal | ||
| totalVolumeUSD_lt | BigDecimal | ||
| totalVolumeUSD_gte | BigDecimal | ||
| totalVolumeUSD_lte | BigDecimal | ||
| totalVolumeUSD_in | [BigDecimal!] | ||
| totalVolumeUSD_not_in | [BigDecimal!] | ||
| commissions0 | BigDecimal | ||
| commissions0_not | BigDecimal | ||
| commissions0_gt | BigDecimal | ||
| commissions0_lt | BigDecimal | ||
| commissions0_gte | BigDecimal | ||
| commissions0_lte | BigDecimal | ||
| commissions0_in | [BigDecimal!] | ||
| commissions0_not_in | [BigDecimal!] | ||
| commissions0USD | BigDecimal | ||
| commissions0USD_not | BigDecimal | ||
| commissions0USD_gt | BigDecimal | ||
| commissions0USD_lt | BigDecimal | ||
| commissions0USD_gte | BigDecimal | ||
| commissions0USD_lte | BigDecimal | ||
| commissions0USD_in | [BigDecimal!] | ||
| commissions0USD_not_in | [BigDecimal!] | ||
| commissions1 | BigDecimal | ||
| commissions1_not | BigDecimal | ||
| commissions1_gt | BigDecimal | ||
| commissions1_lt | BigDecimal | ||
| commissions1_gte | BigDecimal | ||
| commissions1_lte | BigDecimal | ||
| commissions1_in | [BigDecimal!] | ||
| commissions1_not_in | [BigDecimal!] | ||
| commissions1USD | BigDecimal | ||
| commissions1USD_not | BigDecimal | ||
| commissions1USD_gt | BigDecimal | ||
| commissions1USD_lt | BigDecimal | ||
| commissions1USD_gte | BigDecimal | ||
| commissions1USD_lte | BigDecimal | ||
| commissions1USD_in | [BigDecimal!] | ||
| commissions1USD_not_in | [BigDecimal!] | ||
| commissionsUSD | BigDecimal | ||
| commissionsUSD_not | BigDecimal | ||
| commissionsUSD_gt | BigDecimal | ||
| commissionsUSD_lt | BigDecimal | ||
| commissionsUSD_gte | BigDecimal | ||
| commissionsUSD_lte | BigDecimal | ||
| commissionsUSD_in | [BigDecimal!] | ||
| commissionsUSD_not_in | [BigDecimal!] | ||
| protocolLoss0 | BigDecimal | ||
| protocolLoss0_not | BigDecimal | ||
| protocolLoss0_gt | BigDecimal | ||
| protocolLoss0_lt | BigDecimal | ||
| protocolLoss0_gte | BigDecimal | ||
| protocolLoss0_lte | BigDecimal | ||
| protocolLoss0_in | [BigDecimal!] | ||
| protocolLoss0_not_in | [BigDecimal!] | ||
| protocolLoss0USD | BigDecimal | ||
| protocolLoss0USD_not | BigDecimal | ||
| protocolLoss0USD_gt | BigDecimal | ||
| protocolLoss0USD_lt | BigDecimal | ||
| protocolLoss0USD_gte | BigDecimal | ||
| protocolLoss0USD_lte | BigDecimal | ||
| protocolLoss0USD_in | [BigDecimal!] | ||
| protocolLoss0USD_not_in | [BigDecimal!] | ||
| protocolLoss1 | BigDecimal | ||
| protocolLoss1_not | BigDecimal | ||
| protocolLoss1_gt | BigDecimal | ||
| protocolLoss1_lt | BigDecimal | ||
| protocolLoss1_gte | BigDecimal | ||
| protocolLoss1_lte | BigDecimal | ||
| protocolLoss1_in | [BigDecimal!] | ||
| protocolLoss1_not_in | [BigDecimal!] | ||
| protocolLoss1USD | BigDecimal | ||
| protocolLoss1USD_not | BigDecimal | ||
| protocolLoss1USD_gt | BigDecimal | ||
| protocolLoss1USD_lt | BigDecimal | ||
| protocolLoss1USD_gte | BigDecimal | ||
| protocolLoss1USD_lte | BigDecimal | ||
| protocolLoss1USD_in | [BigDecimal!] | ||
| protocolLoss1USD_not_in | [BigDecimal!] | ||
| protocolLossUSD | BigDecimal | ||
| protocolLossUSD_not | BigDecimal | ||
| protocolLossUSD_gt | BigDecimal | ||
| protocolLossUSD_lt | BigDecimal | ||
| protocolLossUSD_gte | BigDecimal | ||
| protocolLossUSD_lte | BigDecimal | ||
| protocolLossUSD_in | [BigDecimal!] | ||
| protocolLossUSD_not_in | [BigDecimal!] | ||
| chunks_ | Chunk_filter | ||
| panopticPoolDayData_ | PanopticPoolDayData_filter | ||
| panopticPoolAccounts_ | PanopticPoolAccount_filter | ||
| createdTimestamp | BigInt | ||
| createdTimestamp_not | BigInt | ||
| createdTimestamp_gt | BigInt | ||
| createdTimestamp_lt | BigInt | ||
| createdTimestamp_gte | BigInt | ||
| createdTimestamp_lte | BigInt | ||
| createdTimestamp_in | [BigInt!] | ||
| createdTimestamp_not_in | [BigInt!] | ||
| createdBlockNumber | BigInt | ||
| createdBlockNumber_not | BigInt | ||
| createdBlockNumber_gt | BigInt | ||
| createdBlockNumber_lt | BigInt | ||
| createdBlockNumber_gte | BigInt | ||
| createdBlockNumber_lte | BigInt | ||
| createdBlockNumber_in | [BigInt!] | ||
| createdBlockNumber_not_in | [BigInt!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [PanopticPool_filter] | ||
| or | [PanopticPool_filter] | ||
PoolDayData_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| date | Int | ||
| date_not | Int | ||
| date_gt | Int | ||
| date_lt | Int | ||
| date_gte | Int | ||
| date_lte | Int | ||
| date_in | [Int!] | ||
| date_not_in | [Int!] | ||
| txCount | BigInt | ||
| txCount_not | BigInt | ||
| txCount_gt | BigInt | ||
| txCount_lt | BigInt | ||
| txCount_gte | BigInt | ||
| txCount_lte | BigInt | ||
| txCount_in | [BigInt!] | ||
| txCount_not_in | [BigInt!] | ||
| liquidity | BigInt | ||
| liquidity_not | BigInt | ||
| liquidity_gt | BigInt | ||
| liquidity_lt | BigInt | ||
| liquidity_gte | BigInt | ||
| liquidity_lte | BigInt | ||
| liquidity_in | [BigInt!] | ||
| liquidity_not_in | [BigInt!] | ||
| token0Price | BigDecimal | ||
| token0Price_not | BigDecimal | ||
| token0Price_gt | BigDecimal | ||
| token0Price_lt | BigDecimal | ||
| token0Price_gte | BigDecimal | ||
| token0Price_lte | BigDecimal | ||
| token0Price_in | [BigDecimal!] | ||
| token0Price_not_in | [BigDecimal!] | ||
| token1Price | BigDecimal | ||
| token1Price_not | BigDecimal | ||
| token1Price_gt | BigDecimal | ||
| token1Price_lt | BigDecimal | ||
| token1Price_gte | BigDecimal | ||
| token1Price_lte | BigDecimal | ||
| token1Price_in | [BigDecimal!] | ||
| token1Price_not_in | [BigDecimal!] | ||
| volumeToken0 | BigDecimal | ||
| volumeToken0_not | BigDecimal | ||
| volumeToken0_gt | BigDecimal | ||
| volumeToken0_lt | BigDecimal | ||
| volumeToken0_gte | BigDecimal | ||
| volumeToken0_lte | BigDecimal | ||
| volumeToken0_in | [BigDecimal!] | ||
| volumeToken0_not_in | [BigDecimal!] | ||
| volumeToken1 | BigDecimal | ||
| volumeToken1_not | BigDecimal | ||
| volumeToken1_gt | BigDecimal | ||
| volumeToken1_lt | BigDecimal | ||
| volumeToken1_gte | BigDecimal | ||
| volumeToken1_lte | BigDecimal | ||
| volumeToken1_in | [BigDecimal!] | ||
| volumeToken1_not_in | [BigDecimal!] | ||
| volumeUSD | BigDecimal | ||
| volumeUSD_not | BigDecimal | ||
| volumeUSD_gt | BigDecimal | ||
| volumeUSD_lt | BigDecimal | ||
| volumeUSD_gte | BigDecimal | ||
| volumeUSD_lte | BigDecimal | ||
| volumeUSD_in | [BigDecimal!] | ||
| volumeUSD_not_in | [BigDecimal!] | ||
| feesUSD | BigDecimal | ||
| feesUSD_not | BigDecimal | ||
| feesUSD_gt | BigDecimal | ||
| feesUSD_lt | BigDecimal | ||
| feesUSD_gte | BigDecimal | ||
| feesUSD_lte | BigDecimal | ||
| feesUSD_in | [BigDecimal!] | ||
| feesUSD_not_in | [BigDecimal!] | ||
| open | BigDecimal | ||
| open_not | BigDecimal | ||
| open_gt | BigDecimal | ||
| open_lt | BigDecimal | ||
| open_gte | BigDecimal | ||
| open_lte | BigDecimal | ||
| open_in | [BigDecimal!] | ||
| open_not_in | [BigDecimal!] | ||
| high | BigDecimal | ||
| high_not | BigDecimal | ||
| high_gt | BigDecimal | ||
| high_lt | BigDecimal | ||
| high_gte | BigDecimal | ||
| high_lte | BigDecimal | ||
| high_in | [BigDecimal!] | ||
| high_not_in | [BigDecimal!] | ||
| low | BigDecimal | ||
| low_not | BigDecimal | ||
| low_gt | BigDecimal | ||
| low_lt | BigDecimal | ||
| low_gte | BigDecimal | ||
| low_lte | BigDecimal | ||
| low_in | [BigDecimal!] | ||
| low_not_in | [BigDecimal!] | ||
| close | BigDecimal | ||
| close_not | BigDecimal | ||
| close_gt | BigDecimal | ||
| close_lt | BigDecimal | ||
| close_gte | BigDecimal | ||
| close_lte | BigDecimal | ||
| close_in | [BigDecimal!] | ||
| close_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [PoolDayData_filter] | ||
| or | [PoolDayData_filter] | ||
PoolHourData_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| txCount | BigInt | ||
| txCount_not | BigInt | ||
| txCount_gt | BigInt | ||
| txCount_lt | BigInt | ||
| txCount_gte | BigInt | ||
| txCount_lte | BigInt | ||
| txCount_in | [BigInt!] | ||
| txCount_not_in | [BigInt!] | ||
| liquidity | BigInt | ||
| liquidity_not | BigInt | ||
| liquidity_gt | BigInt | ||
| liquidity_lt | BigInt | ||
| liquidity_gte | BigInt | ||
| liquidity_lte | BigInt | ||
| liquidity_in | [BigInt!] | ||
| liquidity_not_in | [BigInt!] | ||
| token0Price | BigDecimal | ||
| token0Price_not | BigDecimal | ||
| token0Price_gt | BigDecimal | ||
| token0Price_lt | BigDecimal | ||
| token0Price_gte | BigDecimal | ||
| token0Price_lte | BigDecimal | ||
| token0Price_in | [BigDecimal!] | ||
| token0Price_not_in | [BigDecimal!] | ||
| token1Price | BigDecimal | ||
| token1Price_not | BigDecimal | ||
| token1Price_gt | BigDecimal | ||
| token1Price_lt | BigDecimal | ||
| token1Price_gte | BigDecimal | ||
| token1Price_lte | BigDecimal | ||
| token1Price_in | [BigDecimal!] | ||
| token1Price_not_in | [BigDecimal!] | ||
| volumeToken0 | BigDecimal | ||
| volumeToken0_not | BigDecimal | ||
| volumeToken0_gt | BigDecimal | ||
| volumeToken0_lt | BigDecimal | ||
| volumeToken0_gte | BigDecimal | ||
| volumeToken0_lte | BigDecimal | ||
| volumeToken0_in | [BigDecimal!] | ||
| volumeToken0_not_in | [BigDecimal!] | ||
| volumeToken1 | BigDecimal | ||
| volumeToken1_not | BigDecimal | ||
| volumeToken1_gt | BigDecimal | ||
| volumeToken1_lt | BigDecimal | ||
| volumeToken1_gte | BigDecimal | ||
| volumeToken1_lte | BigDecimal | ||
| volumeToken1_in | [BigDecimal!] | ||
| volumeToken1_not_in | [BigDecimal!] | ||
| volumeUSD | BigDecimal | ||
| volumeUSD_not | BigDecimal | ||
| volumeUSD_gt | BigDecimal | ||
| volumeUSD_lt | BigDecimal | ||
| volumeUSD_gte | BigDecimal | ||
| volumeUSD_lte | BigDecimal | ||
| volumeUSD_in | [BigDecimal!] | ||
| volumeUSD_not_in | [BigDecimal!] | ||
| open | BigDecimal | ||
| open_not | BigDecimal | ||
| open_gt | BigDecimal | ||
| open_lt | BigDecimal | ||
| open_gte | BigDecimal | ||
| open_lte | BigDecimal | ||
| open_in | [BigDecimal!] | ||
| open_not_in | [BigDecimal!] | ||
| high | BigDecimal | ||
| high_not | BigDecimal | ||
| high_gt | BigDecimal | ||
| high_lt | BigDecimal | ||
| high_gte | BigDecimal | ||
| high_lte | BigDecimal | ||
| high_in | [BigDecimal!] | ||
| high_not_in | [BigDecimal!] | ||
| low | BigDecimal | ||
| low_not | BigDecimal | ||
| low_gt | BigDecimal | ||
| low_lt | BigDecimal | ||
| low_gte | BigDecimal | ||
| low_lte | BigDecimal | ||
| low_in | [BigDecimal!] | ||
| low_not_in | [BigDecimal!] | ||
| close | BigDecimal | ||
| close_not | BigDecimal | ||
| close_gt | BigDecimal | ||
| close_lt | BigDecimal | ||
| close_gte | BigDecimal | ||
| close_lte | BigDecimal | ||
| close_in | [BigDecimal!] | ||
| close_not_in | [BigDecimal!] | ||
| periodStartUnix | Int | ||
| periodStartUnix_not | Int | ||
| periodStartUnix_gt | Int | ||
| periodStartUnix_lt | Int | ||
| periodStartUnix_gte | Int | ||
| periodStartUnix_lte | Int | ||
| periodStartUnix_in | [Int!] | ||
| periodStartUnix_not_in | [Int!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [PoolHourData_filter] | ||
| or | [PoolHourData_filter] | ||
Pool_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| isV4Pool | Boolean | ||
| isV4Pool_not | Boolean | ||
| isV4Pool_in | [Boolean!] | ||
| isV4Pool_not_in | [Boolean!] | ||
| hooks | Bytes | ||
| hooks_not | Bytes | ||
| hooks_gt | Bytes | ||
| hooks_lt | Bytes | ||
| hooks_gte | Bytes | ||
| hooks_lte | Bytes | ||
| hooks_in | [Bytes!] | ||
| hooks_not_in | [Bytes!] | ||
| hooks_contains | Bytes | ||
| hooks_not_contains | Bytes | ||
| poolId | String | ||
| poolId_not | String | ||
| poolId_gt | String | ||
| poolId_lt | String | ||
| poolId_gte | String | ||
| poolId_lte | String | ||
| poolId_in | [String!] | ||
| poolId_not_in | [String!] | ||
| poolId_contains | String | ||
| poolId_contains_nocase | String | ||
| poolId_not_contains | String | ||
| poolId_not_contains_nocase | String | ||
| poolId_starts_with | String | ||
| poolId_starts_with_nocase | String | ||
| poolId_not_starts_with | String | ||
| poolId_not_starts_with_nocase | String | ||
| poolId_ends_with | String | ||
| poolId_ends_with_nocase | String | ||
| poolId_not_ends_with | String | ||
| poolId_not_ends_with_nocase | String | ||
| feeTier | BigInt | ||
| feeTier_not | BigInt | ||
| feeTier_gt | BigInt | ||
| feeTier_lt | BigInt | ||
| feeTier_gte | BigInt | ||
| feeTier_lte | BigInt | ||
| feeTier_in | [BigInt!] | ||
| feeTier_not_in | [BigInt!] | ||
| tickSpacing | BigInt | ||
| tickSpacing_not | BigInt | ||
| tickSpacing_gt | BigInt | ||
| tickSpacing_lt | BigInt | ||
| tickSpacing_gte | BigInt | ||
| tickSpacing_lte | BigInt | ||
| tickSpacing_in | [BigInt!] | ||
| tickSpacing_not_in | [BigInt!] | ||
| token0 | String | ||
| token0_not | String | ||
| token0_gt | String | ||
| token0_lt | String | ||
| token0_gte | String | ||
| token0_lte | String | ||
| token0_in | [String!] | ||
| token0_not_in | [String!] | ||
| token0_contains | String | ||
| token0_contains_nocase | String | ||
| token0_not_contains | String | ||
| token0_not_contains_nocase | String | ||
| token0_starts_with | String | ||
| token0_starts_with_nocase | String | ||
| token0_not_starts_with | String | ||
| token0_not_starts_with_nocase | String | ||
| token0_ends_with | String | ||
| token0_ends_with_nocase | String | ||
| token0_not_ends_with | String | ||
| token0_not_ends_with_nocase | String | ||
| token0_ | Token_filter | ||
| token1 | String | ||
| token1_not | String | ||
| token1_gt | String | ||
| token1_lt | String | ||
| token1_gte | String | ||
| token1_lte | String | ||
| token1_in | [String!] | ||
| token1_not_in | [String!] | ||
| token1_contains | String | ||
| token1_contains_nocase | String | ||
| token1_not_contains | String | ||
| token1_not_contains_nocase | String | ||
| token1_starts_with | String | ||
| token1_starts_with_nocase | String | ||
| token1_not_starts_with | String | ||
| token1_not_starts_with_nocase | String | ||
| token1_ends_with | String | ||
| token1_ends_with_nocase | String | ||
| token1_not_ends_with | String | ||
| token1_not_ends_with_nocase | String | ||
| token1_ | Token_filter | ||
| txCount | BigInt | ||
| txCount_not | BigInt | ||
| txCount_gt | BigInt | ||
| txCount_lt | BigInt | ||
| txCount_gte | BigInt | ||
| txCount_lte | BigInt | ||
| txCount_in | [BigInt!] | ||
| txCount_not_in | [BigInt!] | ||
| liquidity | BigInt | ||
| liquidity_not | BigInt | ||
| liquidity_gt | BigInt | ||
| liquidity_lt | BigInt | ||
| liquidity_gte | BigInt | ||
| liquidity_lte | BigInt | ||
| liquidity_in | [BigInt!] | ||
| liquidity_not_in | [BigInt!] | ||
| sqrtPrice | BigInt | ||
| sqrtPrice_not | BigInt | ||
| sqrtPrice_gt | BigInt | ||
| sqrtPrice_lt | BigInt | ||
| sqrtPrice_gte | BigInt | ||
| sqrtPrice_lte | BigInt | ||
| sqrtPrice_in | [BigInt!] | ||
| sqrtPrice_not_in | [BigInt!] | ||
| tick | BigInt | ||
| tick_not | BigInt | ||
| tick_gt | BigInt | ||
| tick_lt | BigInt | ||
| tick_gte | BigInt | ||
| tick_lte | BigInt | ||
| tick_in | [BigInt!] | ||
| tick_not_in | [BigInt!] | ||
| tickLastUpdateTimestamp | BigInt | ||
| tickLastUpdateTimestamp_not | BigInt | ||
| tickLastUpdateTimestamp_gt | BigInt | ||
| tickLastUpdateTimestamp_lt | BigInt | ||
| tickLastUpdateTimestamp_gte | BigInt | ||
| tickLastUpdateTimestamp_lte | BigInt | ||
| tickLastUpdateTimestamp_in | [BigInt!] | ||
| tickLastUpdateTimestamp_not_in | [BigInt!] | ||
| tickLastUpdateBlockNumber | BigInt | ||
| tickLastUpdateBlockNumber_not | BigInt | ||
| tickLastUpdateBlockNumber_gt | BigInt | ||
| tickLastUpdateBlockNumber_lt | BigInt | ||
| tickLastUpdateBlockNumber_gte | BigInt | ||
| tickLastUpdateBlockNumber_lte | BigInt | ||
| tickLastUpdateBlockNumber_in | [BigInt!] | ||
| tickLastUpdateBlockNumber_not_in | [BigInt!] | ||
| poolHourData_ | PoolHourData_filter | ||
| poolDayData_ | PoolDayData_filter | ||
| token0Price | BigDecimal | ||
| token0Price_not | BigDecimal | ||
| token0Price_gt | BigDecimal | ||
| token0Price_lt | BigDecimal | ||
| token0Price_gte | BigDecimal | ||
| token0Price_lte | BigDecimal | ||
| token0Price_in | [BigDecimal!] | ||
| token0Price_not_in | [BigDecimal!] | ||
| token1Price | BigDecimal | ||
| token1Price_not | BigDecimal | ||
| token1Price_gt | BigDecimal | ||
| token1Price_lt | BigDecimal | ||
| token1Price_gte | BigDecimal | ||
| token1Price_lte | BigDecimal | ||
| token1Price_in | [BigDecimal!] | ||
| token1Price_not_in | [BigDecimal!] | ||
| totalValueLockedToken0 | BigDecimal | ||
| totalValueLockedToken0_not | BigDecimal | ||
| totalValueLockedToken0_gt | BigDecimal | ||
| totalValueLockedToken0_lt | BigDecimal | ||
| totalValueLockedToken0_gte | BigDecimal | ||
| totalValueLockedToken0_lte | BigDecimal | ||
| totalValueLockedToken0_in | [BigDecimal!] | ||
| totalValueLockedToken0_not_in | [BigDecimal!] | ||
| totalValueLockedToken1 | BigDecimal | ||
| totalValueLockedToken1_not | BigDecimal | ||
| totalValueLockedToken1_gt | BigDecimal | ||
| totalValueLockedToken1_lt | BigDecimal | ||
| totalValueLockedToken1_gte | BigDecimal | ||
| totalValueLockedToken1_lte | BigDecimal | ||
| totalValueLockedToken1_in | [BigDecimal!] | ||
| totalValueLockedToken1_not_in | [BigDecimal!] | ||
| totalValueLockedETH | BigDecimal | ||
| totalValueLockedETH_not | BigDecimal | ||
| totalValueLockedETH_gt | BigDecimal | ||
| totalValueLockedETH_lt | BigDecimal | ||
| totalValueLockedETH_gte | BigDecimal | ||
| totalValueLockedETH_lte | BigDecimal | ||
| totalValueLockedETH_in | [BigDecimal!] | ||
| totalValueLockedETH_not_in | [BigDecimal!] | ||
| totalValueLockedUSD | BigDecimal | ||
| totalValueLockedUSD_not | BigDecimal | ||
| totalValueLockedUSD_gt | BigDecimal | ||
| totalValueLockedUSD_lt | BigDecimal | ||
| totalValueLockedUSD_gte | BigDecimal | ||
| totalValueLockedUSD_lte | BigDecimal | ||
| totalValueLockedUSD_in | [BigDecimal!] | ||
| totalValueLockedUSD_not_in | [BigDecimal!] | ||
| minEnforcedTick | BigInt | ||
| minEnforcedTick_not | BigInt | ||
| minEnforcedTick_gt | BigInt | ||
| minEnforcedTick_lt | BigInt | ||
| minEnforcedTick_gte | BigInt | ||
| minEnforcedTick_lte | BigInt | ||
| minEnforcedTick_in | [BigInt!] | ||
| minEnforcedTick_not_in | [BigInt!] | ||
| maxEnforcedTick | BigInt | ||
| maxEnforcedTick_not | BigInt | ||
| maxEnforcedTick_gt | BigInt | ||
| maxEnforcedTick_lt | BigInt | ||
| maxEnforcedTick_gte | BigInt | ||
| maxEnforcedTick_lte | BigInt | ||
| maxEnforcedTick_in | [BigInt!] | ||
| maxEnforcedTick_not_in | [BigInt!] | ||
| panopticPool | String | ||
| panopticPool_not | String | ||
| panopticPool_gt | String | ||
| panopticPool_lt | String | ||
| panopticPool_gte | String | ||
| panopticPool_lte | String | ||
| panopticPool_in | [String!] | ||
| panopticPool_not_in | [String!] | ||
| panopticPool_contains | String | ||
| panopticPool_contains_nocase | String | ||
| panopticPool_not_contains | String | ||
| panopticPool_not_contains_nocase | String | ||
| panopticPool_starts_with | String | ||
| panopticPool_starts_with_nocase | String | ||
| panopticPool_not_starts_with | String | ||
| panopticPool_not_starts_with_nocase | String | ||
| panopticPool_ends_with | String | ||
| panopticPool_ends_with_nocase | String | ||
| panopticPool_not_ends_with | String | ||
| panopticPool_not_ends_with_nocase | String | ||
| panopticPool_ | PanopticPool_filter | ||
| panopticPools_ | PanopticPool_filter | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [Pool_filter] | ||
| or | [Pool_filter] | ||
PremiumSettled_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| hash | String | ||
| hash_not | String | ||
| hash_gt | String | ||
| hash_lt | String | ||
| hash_gte | String | ||
| hash_lte | String | ||
| hash_in | [String!] | ||
| hash_not_in | [String!] | ||
| hash_contains | String | ||
| hash_contains_nocase | String | ||
| hash_not_contains | String | ||
| hash_not_contains_nocase | String | ||
| hash_starts_with | String | ||
| hash_starts_with_nocase | String | ||
| hash_not_starts_with | String | ||
| hash_not_starts_with_nocase | String | ||
| hash_ends_with | String | ||
| hash_ends_with_nocase | String | ||
| hash_not_ends_with | String | ||
| hash_not_ends_with_nocase | String | ||
| logIndex | BigInt | ||
| logIndex_not | BigInt | ||
| logIndex_gt | BigInt | ||
| logIndex_lt | BigInt | ||
| logIndex_gte | BigInt | ||
| logIndex_lte | BigInt | ||
| logIndex_in | [BigInt!] | ||
| logIndex_not_in | [BigInt!] | ||
| eventType | EventType | ||
| eventType_not | EventType | ||
| eventType_in | [EventType!] | ||
| eventType_not_in | [EventType!] | ||
| from | String | ||
| from_not | String | ||
| from_gt | String | ||
| from_lt | String | ||
| from_gte | String | ||
| from_lte | String | ||
| from_in | [String!] | ||
| from_not_in | [String!] | ||
| from_contains | String | ||
| from_contains_nocase | String | ||
| from_not_contains | String | ||
| from_not_contains_nocase | String | ||
| from_starts_with | String | ||
| from_starts_with_nocase | String | ||
| from_not_starts_with | String | ||
| from_not_starts_with_nocase | String | ||
| from_ends_with | String | ||
| from_ends_with_nocase | String | ||
| from_not_ends_with | String | ||
| from_not_ends_with_nocase | String | ||
| to | String | ||
| to_not | String | ||
| to_gt | String | ||
| to_lt | String | ||
| to_gte | String | ||
| to_lte | String | ||
| to_in | [String!] | ||
| to_not_in | [String!] | ||
| to_contains | String | ||
| to_contains_nocase | String | ||
| to_not_contains | String | ||
| to_not_contains_nocase | String | ||
| to_starts_with | String | ||
| to_starts_with_nocase | String | ||
| to_not_starts_with | String | ||
| to_not_starts_with_nocase | String | ||
| to_ends_with | String | ||
| to_ends_with_nocase | String | ||
| to_not_ends_with | String | ||
| to_not_ends_with_nocase | String | ||
| blockNumber | BigInt | ||
| blockNumber_not | BigInt | ||
| blockNumber_gt | BigInt | ||
| blockNumber_lt | BigInt | ||
| blockNumber_gte | BigInt | ||
| blockNumber_lte | BigInt | ||
| blockNumber_in | [BigInt!] | ||
| blockNumber_not_in | [BigInt!] | ||
| timestamp | BigInt | ||
| timestamp_not | BigInt | ||
| timestamp_gt | BigInt | ||
| timestamp_lt | BigInt | ||
| timestamp_gte | BigInt | ||
| timestamp_lte | BigInt | ||
| timestamp_in | [BigInt!] | ||
| timestamp_not_in | [BigInt!] | ||
| gasUsed | BigInt | ||
| gasUsed_not | BigInt | ||
| gasUsed_gt | BigInt | ||
| gasUsed_lt | BigInt | ||
| gasUsed_gte | BigInt | ||
| gasUsed_lte | BigInt | ||
| gasUsed_in | [BigInt!] | ||
| gasUsed_not_in | [BigInt!] | ||
| gasPrice | BigInt | ||
| gasPrice_not | BigInt | ||
| gasPrice_gt | BigInt | ||
| gasPrice_lt | BigInt | ||
| gasPrice_gte | BigInt | ||
| gasPrice_lte | BigInt | ||
| gasPrice_in | [BigInt!] | ||
| gasPrice_not_in | [BigInt!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| user | String | ||
| user_not | String | ||
| user_gt | String | ||
| user_lt | String | ||
| user_gte | String | ||
| user_lte | String | ||
| user_in | [String!] | ||
| user_not_in | [String!] | ||
| user_contains | String | ||
| user_contains_nocase | String | ||
| user_not_contains | String | ||
| user_not_contains_nocase | String | ||
| user_starts_with | String | ||
| user_starts_with_nocase | String | ||
| user_not_starts_with | String | ||
| user_not_starts_with_nocase | String | ||
| user_ends_with | String | ||
| user_ends_with_nocase | String | ||
| user_not_ends_with | String | ||
| user_not_ends_with_nocase | String | ||
| user_ | Account_filter | ||
| tokenId | String | ||
| tokenId_not | String | ||
| tokenId_gt | String | ||
| tokenId_lt | String | ||
| tokenId_gte | String | ||
| tokenId_lte | String | ||
| tokenId_in | [String!] | ||
| tokenId_not_in | [String!] | ||
| tokenId_contains | String | ||
| tokenId_contains_nocase | String | ||
| tokenId_not_contains | String | ||
| tokenId_not_contains_nocase | String | ||
| tokenId_starts_with | String | ||
| tokenId_starts_with_nocase | String | ||
| tokenId_not_starts_with | String | ||
| tokenId_not_starts_with_nocase | String | ||
| tokenId_ends_with | String | ||
| tokenId_ends_with_nocase | String | ||
| tokenId_not_ends_with | String | ||
| tokenId_not_ends_with_nocase | String | ||
| tokenId_ | TokenId_filter | ||
| legIndex | BigInt | ||
| legIndex_not | BigInt | ||
| legIndex_gt | BigInt | ||
| legIndex_lt | BigInt | ||
| legIndex_gte | BigInt | ||
| legIndex_lte | BigInt | ||
| legIndex_in | [BigInt!] | ||
| legIndex_not_in | [BigInt!] | ||
| settledAmounts | BigInt | ||
| settledAmounts_not | BigInt | ||
| settledAmounts_gt | BigInt | ||
| settledAmounts_lt | BigInt | ||
| settledAmounts_gte | BigInt | ||
| settledAmounts_lte | BigInt | ||
| settledAmounts_in | [BigInt!] | ||
| settledAmounts_not_in | [BigInt!] | ||
| settledAmount0 | BigInt | ||
| settledAmount0_not | BigInt | ||
| settledAmount0_gt | BigInt | ||
| settledAmount0_lt | BigInt | ||
| settledAmount0_gte | BigInt | ||
| settledAmount0_lte | BigInt | ||
| settledAmount0_in | [BigInt!] | ||
| settledAmount0_not_in | [BigInt!] | ||
| settledAmount0InEth | BigDecimal | ||
| settledAmount0InEth_not | BigDecimal | ||
| settledAmount0InEth_gt | BigDecimal | ||
| settledAmount0InEth_lt | BigDecimal | ||
| settledAmount0InEth_gte | BigDecimal | ||
| settledAmount0InEth_lte | BigDecimal | ||
| settledAmount0InEth_in | [BigDecimal!] | ||
| settledAmount0InEth_not_in | [BigDecimal!] | ||
| settledAmount0InUsd | BigDecimal | ||
| settledAmount0InUsd_not | BigDecimal | ||
| settledAmount0InUsd_gt | BigDecimal | ||
| settledAmount0InUsd_lt | BigDecimal | ||
| settledAmount0InUsd_gte | BigDecimal | ||
| settledAmount0InUsd_lte | BigDecimal | ||
| settledAmount0InUsd_in | [BigDecimal!] | ||
| settledAmount0InUsd_not_in | [BigDecimal!] | ||
| settledAmount1 | BigInt | ||
| settledAmount1_not | BigInt | ||
| settledAmount1_gt | BigInt | ||
| settledAmount1_lt | BigInt | ||
| settledAmount1_gte | BigInt | ||
| settledAmount1_lte | BigInt | ||
| settledAmount1_in | [BigInt!] | ||
| settledAmount1_not_in | [BigInt!] | ||
| settledAmount1InEth | BigDecimal | ||
| settledAmount1InEth_not | BigDecimal | ||
| settledAmount1InEth_gt | BigDecimal | ||
| settledAmount1InEth_lt | BigDecimal | ||
| settledAmount1InEth_gte | BigDecimal | ||
| settledAmount1InEth_lte | BigDecimal | ||
| settledAmount1InEth_in | [BigDecimal!] | ||
| settledAmount1InEth_not_in | [BigDecimal!] | ||
| settledAmount1InUsd | BigDecimal | ||
| settledAmount1InUsd_not | BigDecimal | ||
| settledAmount1InUsd_gt | BigDecimal | ||
| settledAmount1InUsd_lt | BigDecimal | ||
| settledAmount1InUsd_gte | BigDecimal | ||
| settledAmount1InUsd_lte | BigDecimal | ||
| settledAmount1InUsd_in | [BigDecimal!] | ||
| settledAmount1InUsd_not_in | [BigDecimal!] | ||
| panopticPool | String | ||
| panopticPool_not | String | ||
| panopticPool_gt | String | ||
| panopticPool_lt | String | ||
| panopticPool_gte | String | ||
| panopticPool_lte | String | ||
| panopticPool_in | [String!] | ||
| panopticPool_not_in | [String!] | ||
| panopticPool_contains | String | ||
| panopticPool_contains_nocase | String | ||
| panopticPool_not_contains | String | ||
| panopticPool_not_contains_nocase | String | ||
| panopticPool_starts_with | String | ||
| panopticPool_starts_with_nocase | String | ||
| panopticPool_not_starts_with | String | ||
| panopticPool_not_starts_with_nocase | String | ||
| panopticPool_ends_with | String | ||
| panopticPool_ends_with_nocase | String | ||
| panopticPool_not_ends_with | String | ||
| panopticPool_not_ends_with_nocase | String | ||
| panopticPool_ | PanopticPool_filter | ||
| panopticVersion | BigDecimal | ||
| panopticVersion_not | BigDecimal | ||
| panopticVersion_gt | BigDecimal | ||
| panopticVersion_lt | BigDecimal | ||
| panopticVersion_gte | BigDecimal | ||
| panopticVersion_lte | BigDecimal | ||
| panopticVersion_in | [BigDecimal!] | ||
| panopticVersion_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [PremiumSettled_filter] | ||
| or | [PremiumSettled_filter] | ||
TokenId_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| idHexString | String | ||
| idHexString_not | String | ||
| idHexString_gt | String | ||
| idHexString_lt | String | ||
| idHexString_gte | String | ||
| idHexString_lte | String | ||
| idHexString_in | [String!] | ||
| idHexString_not_in | [String!] | ||
| idHexString_contains | String | ||
| idHexString_contains_nocase | String | ||
| idHexString_not_contains | String | ||
| idHexString_not_contains_nocase | String | ||
| idHexString_starts_with | String | ||
| idHexString_starts_with_nocase | String | ||
| idHexString_not_starts_with | String | ||
| idHexString_not_starts_with_nocase | String | ||
| idHexString_ends_with | String | ||
| idHexString_ends_with_nocase | String | ||
| idHexString_not_ends_with | String | ||
| idHexString_not_ends_with_nocase | String | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| tokenCount | BigInt | ||
| tokenCount_not | BigInt | ||
| tokenCount_gt | BigInt | ||
| tokenCount_lt | BigInt | ||
| tokenCount_gte | BigInt | ||
| tokenCount_lte | BigInt | ||
| tokenCount_in | [BigInt!] | ||
| tokenCount_not_in | [BigInt!] | ||
| accountBalances_ | AccountBalance_filter | ||
| legs | [String!] | ||
| legs_not | [String!] | ||
| legs_contains | [String!] | ||
| legs_contains_nocase | [String!] | ||
| legs_not_contains | [String!] | ||
| legs_not_contains_nocase | [String!] | ||
| legs_ | Leg_filter | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [TokenId_filter] | ||
| or | [TokenId_filter] | ||
Token_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| decimals | BigInt | ||
| decimals_not | BigInt | ||
| decimals_gt | BigInt | ||
| decimals_lt | BigInt | ||
| decimals_gte | BigInt | ||
| decimals_lte | BigInt | ||
| decimals_in | [BigInt!] | ||
| decimals_not_in | [BigInt!] | ||
| name | String | ||
| name_not | String | ||
| name_gt | String | ||
| name_lt | String | ||
| name_gte | String | ||
| name_lte | String | ||
| name_in | [String!] | ||
| name_not_in | [String!] | ||
| name_contains | String | ||
| name_contains_nocase | String | ||
| name_not_contains | String | ||
| name_not_contains_nocase | String | ||
| name_starts_with | String | ||
| name_starts_with_nocase | String | ||
| name_not_starts_with | String | ||
| name_not_starts_with_nocase | String | ||
| name_ends_with | String | ||
| name_ends_with_nocase | String | ||
| name_not_ends_with | String | ||
| name_not_ends_with_nocase | String | ||
| symbol | String | ||
| symbol_not | String | ||
| symbol_gt | String | ||
| symbol_lt | String | ||
| symbol_gte | String | ||
| symbol_lte | String | ||
| symbol_in | [String!] | ||
| symbol_not_in | [String!] | ||
| symbol_contains | String | ||
| symbol_contains_nocase | String | ||
| symbol_not_contains | String | ||
| symbol_not_contains_nocase | String | ||
| symbol_starts_with | String | ||
| symbol_starts_with_nocase | String | ||
| symbol_not_starts_with | String | ||
| symbol_not_starts_with_nocase | String | ||
| symbol_ends_with | String | ||
| symbol_ends_with_nocase | String | ||
| symbol_not_ends_with | String | ||
| symbol_not_ends_with_nocase | String | ||
| totalSupply | BigInt | ||
| totalSupply_not | BigInt | ||
| totalSupply_gt | BigInt | ||
| totalSupply_lt | BigInt | ||
| totalSupply_gte | BigInt | ||
| totalSupply_lte | BigInt | ||
| totalSupply_in | [BigInt!] | ||
| totalSupply_not_in | [BigInt!] | ||
| txCount | BigInt | ||
| txCount_not | BigInt | ||
| txCount_gt | BigInt | ||
| txCount_lt | BigInt | ||
| txCount_gte | BigInt | ||
| txCount_lte | BigInt | ||
| txCount_in | [BigInt!] | ||
| txCount_not_in | [BigInt!] | ||
| derivedETH | BigDecimal | ||
| derivedETH_not | BigDecimal | ||
| derivedETH_gt | BigDecimal | ||
| derivedETH_lt | BigDecimal | ||
| derivedETH_gte | BigDecimal | ||
| derivedETH_lte | BigDecimal | ||
| derivedETH_in | [BigDecimal!] | ||
| derivedETH_not_in | [BigDecimal!] | ||
| whitelistPools | [String!] | ||
| whitelistPools_not | [String!] | ||
| whitelistPools_contains | [String!] | ||
| whitelistPools_contains_nocase | [String!] | ||
| whitelistPools_not_contains | [String!] | ||
| whitelistPools_not_contains_nocase | [String!] | ||
| whitelistPools_ | Pool_filter | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [Token_filter] | ||
| or | [Token_filter] | ||
TokenizedPositionBurnt_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| hash | String | ||
| hash_not | String | ||
| hash_gt | String | ||
| hash_lt | String | ||
| hash_gte | String | ||
| hash_lte | String | ||
| hash_in | [String!] | ||
| hash_not_in | [String!] | ||
| hash_contains | String | ||
| hash_contains_nocase | String | ||
| hash_not_contains | String | ||
| hash_not_contains_nocase | String | ||
| hash_starts_with | String | ||
| hash_starts_with_nocase | String | ||
| hash_not_starts_with | String | ||
| hash_not_starts_with_nocase | String | ||
| hash_ends_with | String | ||
| hash_ends_with_nocase | String | ||
| hash_not_ends_with | String | ||
| hash_not_ends_with_nocase | String | ||
| logIndex | BigInt | ||
| logIndex_not | BigInt | ||
| logIndex_gt | BigInt | ||
| logIndex_lt | BigInt | ||
| logIndex_gte | BigInt | ||
| logIndex_lte | BigInt | ||
| logIndex_in | [BigInt!] | ||
| logIndex_not_in | [BigInt!] | ||
| eventType | EventType | ||
| eventType_not | EventType | ||
| eventType_in | [EventType!] | ||
| eventType_not_in | [EventType!] | ||
| from | String | ||
| from_not | String | ||
| from_gt | String | ||
| from_lt | String | ||
| from_gte | String | ||
| from_lte | String | ||
| from_in | [String!] | ||
| from_not_in | [String!] | ||
| from_contains | String | ||
| from_contains_nocase | String | ||
| from_not_contains | String | ||
| from_not_contains_nocase | String | ||
| from_starts_with | String | ||
| from_starts_with_nocase | String | ||
| from_not_starts_with | String | ||
| from_not_starts_with_nocase | String | ||
| from_ends_with | String | ||
| from_ends_with_nocase | String | ||
| from_not_ends_with | String | ||
| from_not_ends_with_nocase | String | ||
| to | String | ||
| to_not | String | ||
| to_gt | String | ||
| to_lt | String | ||
| to_gte | String | ||
| to_lte | String | ||
| to_in | [String!] | ||
| to_not_in | [String!] | ||
| to_contains | String | ||
| to_contains_nocase | String | ||
| to_not_contains | String | ||
| to_not_contains_nocase | String | ||
| to_starts_with | String | ||
| to_starts_with_nocase | String | ||
| to_not_starts_with | String | ||
| to_not_starts_with_nocase | String | ||
| to_ends_with | String | ||
| to_ends_with_nocase | String | ||
| to_not_ends_with | String | ||
| to_not_ends_with_nocase | String | ||
| blockNumber | BigInt | ||
| blockNumber_not | BigInt | ||
| blockNumber_gt | BigInt | ||
| blockNumber_lt | BigInt | ||
| blockNumber_gte | BigInt | ||
| blockNumber_lte | BigInt | ||
| blockNumber_in | [BigInt!] | ||
| blockNumber_not_in | [BigInt!] | ||
| timestamp | BigInt | ||
| timestamp_not | BigInt | ||
| timestamp_gt | BigInt | ||
| timestamp_lt | BigInt | ||
| timestamp_gte | BigInt | ||
| timestamp_lte | BigInt | ||
| timestamp_in | [BigInt!] | ||
| timestamp_not_in | [BigInt!] | ||
| gasUsed | BigInt | ||
| gasUsed_not | BigInt | ||
| gasUsed_gt | BigInt | ||
| gasUsed_lt | BigInt | ||
| gasUsed_gte | BigInt | ||
| gasUsed_lte | BigInt | ||
| gasUsed_in | [BigInt!] | ||
| gasUsed_not_in | [BigInt!] | ||
| gasPrice | BigInt | ||
| gasPrice_not | BigInt | ||
| gasPrice_gt | BigInt | ||
| gasPrice_lt | BigInt | ||
| gasPrice_gte | BigInt | ||
| gasPrice_lte | BigInt | ||
| gasPrice_in | [BigInt!] | ||
| gasPrice_not_in | [BigInt!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| recipient | String | ||
| recipient_not | String | ||
| recipient_gt | String | ||
| recipient_lt | String | ||
| recipient_gte | String | ||
| recipient_lte | String | ||
| recipient_in | [String!] | ||
| recipient_not_in | [String!] | ||
| recipient_contains | String | ||
| recipient_contains_nocase | String | ||
| recipient_not_contains | String | ||
| recipient_not_contains_nocase | String | ||
| recipient_starts_with | String | ||
| recipient_starts_with_nocase | String | ||
| recipient_not_starts_with | String | ||
| recipient_not_starts_with_nocase | String | ||
| recipient_ends_with | String | ||
| recipient_ends_with_nocase | String | ||
| recipient_not_ends_with | String | ||
| recipient_not_ends_with_nocase | String | ||
| recipient_ | Account_filter | ||
| positionSize | BigInt | ||
| positionSize_not | BigInt | ||
| positionSize_gt | BigInt | ||
| positionSize_lt | BigInt | ||
| positionSize_gte | BigInt | ||
| positionSize_lte | BigInt | ||
| positionSize_in | [BigInt!] | ||
| positionSize_not_in | [BigInt!] | ||
| tokenId | String | ||
| tokenId_not | String | ||
| tokenId_gt | String | ||
| tokenId_lt | String | ||
| tokenId_gte | String | ||
| tokenId_lte | String | ||
| tokenId_in | [String!] | ||
| tokenId_not_in | [String!] | ||
| tokenId_contains | String | ||
| tokenId_contains_nocase | String | ||
| tokenId_not_contains | String | ||
| tokenId_not_contains_nocase | String | ||
| tokenId_starts_with | String | ||
| tokenId_starts_with_nocase | String | ||
| tokenId_not_starts_with | String | ||
| tokenId_not_starts_with_nocase | String | ||
| tokenId_ends_with | String | ||
| tokenId_ends_with_nocase | String | ||
| tokenId_not_ends_with | String | ||
| tokenId_not_ends_with_nocase | String | ||
| tokenId_ | TokenId_filter | ||
| panopticVersion | BigDecimal | ||
| panopticVersion_not | BigDecimal | ||
| panopticVersion_gt | BigDecimal | ||
| panopticVersion_lt | BigDecimal | ||
| panopticVersion_gte | BigDecimal | ||
| panopticVersion_lte | BigDecimal | ||
| panopticVersion_in | [BigDecimal!] | ||
| panopticVersion_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [TokenizedPositionBurnt_filter] | ||
| or | [TokenizedPositionBurnt_filter] | ||
TokenizedPositionMinted_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| hash | String | ||
| hash_not | String | ||
| hash_gt | String | ||
| hash_lt | String | ||
| hash_gte | String | ||
| hash_lte | String | ||
| hash_in | [String!] | ||
| hash_not_in | [String!] | ||
| hash_contains | String | ||
| hash_contains_nocase | String | ||
| hash_not_contains | String | ||
| hash_not_contains_nocase | String | ||
| hash_starts_with | String | ||
| hash_starts_with_nocase | String | ||
| hash_not_starts_with | String | ||
| hash_not_starts_with_nocase | String | ||
| hash_ends_with | String | ||
| hash_ends_with_nocase | String | ||
| hash_not_ends_with | String | ||
| hash_not_ends_with_nocase | String | ||
| logIndex | BigInt | ||
| logIndex_not | BigInt | ||
| logIndex_gt | BigInt | ||
| logIndex_lt | BigInt | ||
| logIndex_gte | BigInt | ||
| logIndex_lte | BigInt | ||
| logIndex_in | [BigInt!] | ||
| logIndex_not_in | [BigInt!] | ||
| eventType | EventType | ||
| eventType_not | EventType | ||
| eventType_in | [EventType!] | ||
| eventType_not_in | [EventType!] | ||
| from | String | ||
| from_not | String | ||
| from_gt | String | ||
| from_lt | String | ||
| from_gte | String | ||
| from_lte | String | ||
| from_in | [String!] | ||
| from_not_in | [String!] | ||
| from_contains | String | ||
| from_contains_nocase | String | ||
| from_not_contains | String | ||
| from_not_contains_nocase | String | ||
| from_starts_with | String | ||
| from_starts_with_nocase | String | ||
| from_not_starts_with | String | ||
| from_not_starts_with_nocase | String | ||
| from_ends_with | String | ||
| from_ends_with_nocase | String | ||
| from_not_ends_with | String | ||
| from_not_ends_with_nocase | String | ||
| to | String | ||
| to_not | String | ||
| to_gt | String | ||
| to_lt | String | ||
| to_gte | String | ||
| to_lte | String | ||
| to_in | [String!] | ||
| to_not_in | [String!] | ||
| to_contains | String | ||
| to_contains_nocase | String | ||
| to_not_contains | String | ||
| to_not_contains_nocase | String | ||
| to_starts_with | String | ||
| to_starts_with_nocase | String | ||
| to_not_starts_with | String | ||
| to_not_starts_with_nocase | String | ||
| to_ends_with | String | ||
| to_ends_with_nocase | String | ||
| to_not_ends_with | String | ||
| to_not_ends_with_nocase | String | ||
| blockNumber | BigInt | ||
| blockNumber_not | BigInt | ||
| blockNumber_gt | BigInt | ||
| blockNumber_lt | BigInt | ||
| blockNumber_gte | BigInt | ||
| blockNumber_lte | BigInt | ||
| blockNumber_in | [BigInt!] | ||
| blockNumber_not_in | [BigInt!] | ||
| timestamp | BigInt | ||
| timestamp_not | BigInt | ||
| timestamp_gt | BigInt | ||
| timestamp_lt | BigInt | ||
| timestamp_gte | BigInt | ||
| timestamp_lte | BigInt | ||
| timestamp_in | [BigInt!] | ||
| timestamp_not_in | [BigInt!] | ||
| gasUsed | BigInt | ||
| gasUsed_not | BigInt | ||
| gasUsed_gt | BigInt | ||
| gasUsed_lt | BigInt | ||
| gasUsed_gte | BigInt | ||
| gasUsed_lte | BigInt | ||
| gasUsed_in | [BigInt!] | ||
| gasUsed_not_in | [BigInt!] | ||
| gasPrice | BigInt | ||
| gasPrice_not | BigInt | ||
| gasPrice_gt | BigInt | ||
| gasPrice_lt | BigInt | ||
| gasPrice_gte | BigInt | ||
| gasPrice_lte | BigInt | ||
| gasPrice_in | [BigInt!] | ||
| gasPrice_not_in | [BigInt!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| caller | String | ||
| caller_not | String | ||
| caller_gt | String | ||
| caller_lt | String | ||
| caller_gte | String | ||
| caller_lte | String | ||
| caller_in | [String!] | ||
| caller_not_in | [String!] | ||
| caller_contains | String | ||
| caller_contains_nocase | String | ||
| caller_not_contains | String | ||
| caller_not_contains_nocase | String | ||
| caller_starts_with | String | ||
| caller_starts_with_nocase | String | ||
| caller_not_starts_with | String | ||
| caller_not_starts_with_nocase | String | ||
| caller_ends_with | String | ||
| caller_ends_with_nocase | String | ||
| caller_not_ends_with | String | ||
| caller_not_ends_with_nocase | String | ||
| caller_ | Account_filter | ||
| positionSize | BigInt | ||
| positionSize_not | BigInt | ||
| positionSize_gt | BigInt | ||
| positionSize_lt | BigInt | ||
| positionSize_gte | BigInt | ||
| positionSize_lte | BigInt | ||
| positionSize_in | [BigInt!] | ||
| positionSize_not_in | [BigInt!] | ||
| tokenId | String | ||
| tokenId_not | String | ||
| tokenId_gt | String | ||
| tokenId_lt | String | ||
| tokenId_gte | String | ||
| tokenId_lte | String | ||
| tokenId_in | [String!] | ||
| tokenId_not_in | [String!] | ||
| tokenId_contains | String | ||
| tokenId_contains_nocase | String | ||
| tokenId_not_contains | String | ||
| tokenId_not_contains_nocase | String | ||
| tokenId_starts_with | String | ||
| tokenId_starts_with_nocase | String | ||
| tokenId_not_starts_with | String | ||
| tokenId_not_starts_with_nocase | String | ||
| tokenId_ends_with | String | ||
| tokenId_ends_with_nocase | String | ||
| tokenId_not_ends_with | String | ||
| tokenId_not_ends_with_nocase | String | ||
| tokenId_ | TokenId_filter | ||
| panopticVersion | BigDecimal | ||
| panopticVersion_not | BigDecimal | ||
| panopticVersion_gt | BigDecimal | ||
| panopticVersion_lt | BigDecimal | ||
| panopticVersion_gte | BigDecimal | ||
| panopticVersion_lte | BigDecimal | ||
| panopticVersion_in | [BigDecimal!] | ||
| panopticVersion_not_in | [BigDecimal!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [TokenizedPositionMinted_filter] | ||
| or | [TokenizedPositionMinted_filter] | ||
TokenizedPositionRolled_filter
| Field | Type | Description | |
|---|---|---|---|
| id | ID | ||
| id_not | ID | ||
| id_gt | ID | ||
| id_lt | ID | ||
| id_gte | ID | ||
| id_lte | ID | ||
| id_in | [ID!] | ||
| id_not_in | [ID!] | ||
| hash | String | ||
| hash_not | String | ||
| hash_gt | String | ||
| hash_lt | String | ||
| hash_gte | String | ||
| hash_lte | String | ||
| hash_in | [String!] | ||
| hash_not_in | [String!] | ||
| hash_contains | String | ||
| hash_contains_nocase | String | ||
| hash_not_contains | String | ||
| hash_not_contains_nocase | String | ||
| hash_starts_with | String | ||
| hash_starts_with_nocase | String | ||
| hash_not_starts_with | String | ||
| hash_not_starts_with_nocase | String | ||
| hash_ends_with | String | ||
| hash_ends_with_nocase | String | ||
| hash_not_ends_with | String | ||
| hash_not_ends_with_nocase | String | ||
| logIndex | BigInt | ||
| logIndex_not | BigInt | ||
| logIndex_gt | BigInt | ||
| logIndex_lt | BigInt | ||
| logIndex_gte | BigInt | ||
| logIndex_lte | BigInt | ||
| logIndex_in | [BigInt!] | ||
| logIndex_not_in | [BigInt!] | ||
| eventType | EventType | ||
| eventType_not | EventType | ||
| eventType_in | [EventType!] | ||
| eventType_not_in | [EventType!] | ||
| from | String | ||
| from_not | String | ||
| from_gt | String | ||
| from_lt | String | ||
| from_gte | String | ||
| from_lte | String | ||
| from_in | [String!] | ||
| from_not_in | [String!] | ||
| from_contains | String | ||
| from_contains_nocase | String | ||
| from_not_contains | String | ||
| from_not_contains_nocase | String | ||
| from_starts_with | String | ||
| from_starts_with_nocase | String | ||
| from_not_starts_with | String | ||
| from_not_starts_with_nocase | String | ||
| from_ends_with | String | ||
| from_ends_with_nocase | String | ||
| from_not_ends_with | String | ||
| from_not_ends_with_nocase | String | ||
| to | String | ||
| to_not | String | ||
| to_gt | String | ||
| to_lt | String | ||
| to_gte | String | ||
| to_lte | String | ||
| to_in | [String!] | ||
| to_not_in | [String!] | ||
| to_contains | String | ||
| to_contains_nocase | String | ||
| to_not_contains | String | ||
| to_not_contains_nocase | String | ||
| to_starts_with | String | ||
| to_starts_with_nocase | String | ||
| to_not_starts_with | String | ||
| to_not_starts_with_nocase | String | ||
| to_ends_with | String | ||
| to_ends_with_nocase | String | ||
| to_not_ends_with | String | ||
| to_not_ends_with_nocase | String | ||
| blockNumber | BigInt | ||
| blockNumber_not | BigInt | ||
| blockNumber_gt | BigInt | ||
| blockNumber_lt | BigInt | ||
| blockNumber_gte | BigInt | ||
| blockNumber_lte | BigInt | ||
| blockNumber_in | [BigInt!] | ||
| blockNumber_not_in | [BigInt!] | ||
| timestamp | BigInt | ||
| timestamp_not | BigInt | ||
| timestamp_gt | BigInt | ||
| timestamp_lt | BigInt | ||
| timestamp_gte | BigInt | ||
| timestamp_lte | BigInt | ||
| timestamp_in | [BigInt!] | ||
| timestamp_not_in | [BigInt!] | ||
| gasUsed | BigInt | ||
| gasUsed_not | BigInt | ||
| gasUsed_gt | BigInt | ||
| gasUsed_lt | BigInt | ||
| gasUsed_gte | BigInt | ||
| gasUsed_lte | BigInt | ||
| gasUsed_in | [BigInt!] | ||
| gasUsed_not_in | [BigInt!] | ||
| gasPrice | BigInt | ||
| gasPrice_not | BigInt | ||
| gasPrice_gt | BigInt | ||
| gasPrice_lt | BigInt | ||
| gasPrice_gte | BigInt | ||
| gasPrice_lte | BigInt | ||
| gasPrice_in | [BigInt!] | ||
| gasPrice_not_in | [BigInt!] | ||
| pool | String | ||
| pool_not | String | ||
| pool_gt | String | ||
| pool_lt | String | ||
| pool_gte | String | ||
| pool_lte | String | ||
| pool_in | [String!] | ||
| pool_not_in | [String!] | ||
| pool_contains | String | ||
| pool_contains_nocase | String | ||
| pool_not_contains | String | ||
| pool_not_contains_nocase | String | ||
| pool_starts_with | String | ||
| pool_starts_with_nocase | String | ||
| pool_not_starts_with | String | ||
| pool_not_starts_with_nocase | String | ||
| pool_ends_with | String | ||
| pool_ends_with_nocase | String | ||
| pool_not_ends_with | String | ||
| pool_not_ends_with_nocase | String | ||
| pool_ | Pool_filter | ||
| recipient | String | ||
| recipient_not | String | ||
| recipient_gt | String | ||
| recipient_lt | String | ||
| recipient_gte | String | ||
| recipient_lte | String | ||
| recipient_in | [String!] | ||
| recipient_not_in | [String!] | ||
| recipient_contains | String | ||
| recipient_contains_nocase | String | ||
| recipient_not_contains | String | ||
| recipient_not_contains_nocase | String | ||
| recipient_starts_with | String | ||
| recipient_starts_with_nocase | String | ||
| recipient_not_starts_with | String | ||
| recipient_not_starts_with_nocase | String | ||
| recipient_ends_with | String | ||
| recipient_ends_with_nocase | String | ||
| recipient_not_ends_with | String | ||
| recipient_not_ends_with_nocase | String | ||
| recipient_ | Account_filter | ||
| oldTokenId | String | ||
| oldTokenId_not | String | ||
| oldTokenId_gt | String | ||
| oldTokenId_lt | String | ||
| oldTokenId_gte | String | ||
| oldTokenId_lte | String | ||
| oldTokenId_in | [String!] | ||
| oldTokenId_not_in | [String!] | ||
| oldTokenId_contains | String | ||
| oldTokenId_contains_nocase | String | ||
| oldTokenId_not_contains | String | ||
| oldTokenId_not_contains_nocase | String | ||
| oldTokenId_starts_with | String | ||
| oldTokenId_starts_with_nocase | String | ||
| oldTokenId_not_starts_with | String | ||
| oldTokenId_not_starts_with_nocase | String | ||
| oldTokenId_ends_with | String | ||
| oldTokenId_ends_with_nocase | String | ||
| oldTokenId_not_ends_with | String | ||
| oldTokenId_not_ends_with_nocase | String | ||
| oldTokenId_ | TokenId_filter | ||
| newTokenId | String | ||
| newTokenId_not | String | ||
| newTokenId_gt | String | ||
| newTokenId_lt | String | ||
| newTokenId_gte | String | ||
| newTokenId_lte | String | ||
| newTokenId_in | [String!] | ||
| newTokenId_not_in | [String!] | ||
| newTokenId_contains | String | ||
| newTokenId_contains_nocase | String | ||
| newTokenId_not_contains | String | ||
| newTokenId_not_contains_nocase | String | ||
| newTokenId_starts_with | String | ||
| newTokenId_starts_with_nocase | String | ||
| newTokenId_not_starts_with | String | ||
| newTokenId_not_starts_with_nocase | String | ||
| newTokenId_ends_with | String | ||
| newTokenId_ends_with_nocase | String | ||
| newTokenId_not_ends_with | String | ||
| newTokenId_not_ends_with_nocase | String | ||
| newTokenId_ | TokenId_filter | ||
| positionSize | BigInt | ||
| positionSize_not | BigInt | ||
| positionSize_gt | BigInt | ||
| positionSize_lt | BigInt | ||
| positionSize_gte | BigInt | ||
| positionSize_lte | BigInt | ||
| positionSize_in | [BigInt!] | ||
| positionSize_not_in | [BigInt!] | ||
| _change_block | BlockChangedFilter | Filter for the block changed event. | |
| and | [TokenizedPositionRolled_filter] | ||
| or | [TokenizedPositionRolled_filter] | ||
Enums
AccountBalance_orderBy
| Value | Description |
|---|---|
| id | |
| owner | |
| owner__id | |
| sender | |
| sender__id | |
| tokenId | |
| tokenId__id | |
| tokenId__idHexString | |
| tokenId__tokenCount | |
| legLiquidities | |
| tokenCount | |
| positionSize | |
| panopticPoolAccount | |
| panopticPoolAccount__id | |
| panopticPoolAccount__collateral0Shares | |
| panopticPoolAccount__collateral0Assets | |
| panopticPoolAccount__collateral1Shares | |
| panopticPoolAccount__collateral1Assets | |
| panopticPoolAccount__isLiquidated | |
| panopticPoolAccount__commissions0 | |
| panopticPoolAccount__commissions0Usd | |
| panopticPoolAccount__commissions1 | |
| panopticPoolAccount__commissions1Usd | |
| premiaSettled0Total | |
| premiaSettled0InEthTotal | |
| premiaSettled0InUsdTotal | |
| premiaSettled1Total | |
| premiaSettled1InEthTotal | |
| premiaSettled1InUsdTotal | |
| underlyingPool | |
| underlyingPool__id | |
| underlyingPool__isV4Pool | |
| underlyingPool__hooks | |
| underlyingPool__poolId | |
| underlyingPool__feeTier | |
| underlyingPool__tickSpacing | |
| underlyingPool__txCount | |
| underlyingPool__liquidity | |
| underlyingPool__sqrtPrice | |
| underlyingPool__tick | |
| underlyingPool__tickLastUpdateTimestamp | |
| underlyingPool__tickLastUpdateBlockNumber | |
| underlyingPool__token0Price | |
| underlyingPool__token1Price | |
| underlyingPool__totalValueLockedToken0 | |
| underlyingPool__totalValueLockedToken1 | |
| underlyingPool__totalValueLockedETH | |
| underlyingPool__totalValueLockedUSD | |
| underlyingPool__minEnforcedTick | |
| underlyingPool__maxEnforcedTick | |
| txnOpened | |
| txnOpened__id | |
| txnOpened__hash | |
| txnOpened__logIndex | |
| txnOpened__from | |
| txnOpened__to | |
| txnOpened__blockNumber | |
| txnOpened__timestamp | |
| txnOpened__gasUsed | |
| txnOpened__gasPrice | |
| txnOpened__eventType | |
| txnClosed | |
| txnClosed__id | |
| txnClosed__hash | |
| txnClosed__logIndex | |
| txnClosed__from | |
| txnClosed__to | |
| txnClosed__blockNumber | |
| txnClosed__timestamp | |
| txnClosed__gasUsed | |
| txnClosed__gasPrice | |
| txnClosed__eventType | |
| isOpen | |
| createdTimestamp | |
| createdBlockNumber | |
| closedTimestamp |
AccountLiquidated_orderBy
| Value | Description |
|---|---|
| id | |
| hash | |
| logIndex | |
| eventType | |
| from | |
| to | |
| blockNumber | |
| timestamp | |
| gasUsed | |
| gasPrice | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| liquidator | |
| liquidator__id | |
| liquidatee | |
| liquidatee__id | |
| bonusAmounts | |
| liquidationBonus0 | |
| liquidationBonus1 | |
| liquidationBonusUSD | |
| tickAt | |
| panopticPool | |
| panopticPool__id | |
| panopticPool__txCount | |
| panopticPool__feeTier | |
| panopticPool__panopticVersion | |
| panopticPool__oracleContract | |
| panopticPool__mintVolume0 | |
| panopticPool__mintVolume0USD | |
| panopticPool__burnVolume0 | |
| panopticPool__burnVolume0USD | |
| panopticPool__totalVolume0 | |
| panopticPool__totalVolume0USD | |
| panopticPool__mintVolume1 | |
| panopticPool__mintVolume1USD | |
| panopticPool__burnVolume1 | |
| panopticPool__burnVolume1USD | |
| panopticPool__totalVolume1 | |
| panopticPool__totalVolume1USD | |
| panopticPool__totalVolumeUSD | |
| panopticPool__commissions0 | |
| panopticPool__commissions0USD | |
| panopticPool__commissions1 | |
| panopticPool__commissions1USD | |
| panopticPool__commissionsUSD | |
| panopticPool__protocolLoss0 | |
| panopticPool__protocolLoss0USD | |
| panopticPool__protocolLoss1 | |
| panopticPool__protocolLoss1USD | |
| panopticPool__protocolLossUSD | |
| panopticPool__createdTimestamp | |
| panopticPool__createdBlockNumber | |
| optionBurns | |
| panopticVersion |
Account_orderBy
| Value | Description |
|---|---|
| id | |
| accountBalances | |
| panopticPoolAccount |
Aggregation_interval
| Value | Description |
|---|---|
| hour | |
| day |
Bundle_orderBy
| Value | Description |
|---|---|
| id | |
| ethPriceUSD |
Burn_orderBy
| Value | Description |
|---|---|
| id | |
| hash | |
| logIndex | |
| eventType | |
| from | |
| to | |
| blockNumber | |
| timestamp | |
| gasUsed | |
| gasPrice | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| owner | |
| owner__id | |
| tickLower | |
| tickUpper | |
| amount | |
| amount0 | |
| amount1 | |
| token0 | |
| token0__id | |
| token0__decimals | |
| token0__name | |
| token0__symbol | |
| token0__totalSupply | |
| token0__txCount | |
| token0__derivedETH | |
| token1 | |
| token1__id | |
| token1__decimals | |
| token1__name | |
| token1__symbol | |
| token1__totalSupply | |
| token1__txCount | |
| token1__derivedETH |
Chunk_orderBy
| Value | Description |
|---|---|
| id | |
| owner | |
| owner__id | |
| manager | |
| manager__id | |
| tickLower | |
| tickUpper | |
| strike | |
| width | |
| tokenType | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| panopticPool | |
| panopticPool__id | |
| panopticPool__txCount | |
| panopticPool__feeTier | |
| panopticPool__panopticVersion | |
| panopticPool__oracleContract | |
| panopticPool__mintVolume0 | |
| panopticPool__mintVolume0USD | |
| panopticPool__burnVolume0 | |
| panopticPool__burnVolume0USD | |
| panopticPool__totalVolume0 | |
| panopticPool__totalVolume0USD | |
| panopticPool__mintVolume1 | |
| panopticPool__mintVolume1USD | |
| panopticPool__burnVolume1 | |
| panopticPool__burnVolume1USD | |
| panopticPool__totalVolume1 | |
| panopticPool__totalVolume1USD | |
| panopticPool__totalVolumeUSD | |
| panopticPool__commissions0 | |
| panopticPool__commissions0USD | |
| panopticPool__commissions1 | |
| panopticPool__commissions1USD | |
| panopticPool__commissionsUSD | |
| panopticPool__protocolLoss0 | |
| panopticPool__protocolLoss0USD | |
| panopticPool__protocolLoss1 | |
| panopticPool__protocolLoss1USD | |
| panopticPool__protocolLossUSD | |
| panopticPool__createdTimestamp | |
| panopticPool__createdBlockNumber | |
| netLiquidity | |
| shortLiquidity | |
| longLiquidity | |
| shortCounts | |
| longCounts | |
| totalLiquidity | |
| legs |
CollateralDayData_orderBy
| Value | Description |
|---|---|
| id | |
| collateral | |
| collateral__id | |
| collateral__panopticVersion | |
| collateral__totalShares | |
| collateral__totalAssets | |
| collateral__poolAssets | |
| collateral__inAMM | |
| collateral__poolUtilization | |
| collateral__index | |
| date | |
| totalShares | |
| totalAssets | |
| sharePrice |
CollateralDeposit_orderBy
| Value | Description |
|---|---|
| id | |
| hash | |
| logIndex | |
| eventType | |
| from | |
| to | |
| blockNumber | |
| timestamp | |
| gasUsed | |
| gasPrice | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| sender | |
| sender__id | |
| owner | |
| owner__id | |
| assets | |
| shares | |
| collateral | |
| collateral__id | |
| collateral__panopticVersion | |
| collateral__totalShares | |
| collateral__totalAssets | |
| collateral__poolAssets | |
| collateral__inAMM | |
| collateral__poolUtilization | |
| collateral__index | |
| tickAtDeposit | |
| tokenDerivedEthAtDeposit | |
| ethPriceUSDAtDeposit | |
| panopticVersion |
CollateralWithdraw_orderBy
| Value | Description |
|---|---|
| id | |
| hash | |
| logIndex | |
| eventType | |
| from | |
| to | |
| blockNumber | |
| timestamp | |
| gasUsed | |
| gasPrice | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| sender | |
| sender__id | |
| receiver | |
| receiver__id | |
| owner | |
| owner__id | |
| assets | |
| shares | |
| collateral | |
| collateral__id | |
| collateral__panopticVersion | |
| collateral__totalShares | |
| collateral__totalAssets | |
| collateral__poolAssets | |
| collateral__inAMM | |
| collateral__poolUtilization | |
| collateral__index | |
| tickAtWithdraw | |
| tokenDerivedEthAtWithdraw | |
| ethPriceUSDAtWithdraw | |
| panopticVersion |
Collateral_orderBy
| Value | Description |
|---|---|
| id | |
| panopticVersion | |
| token | |
| token__id | |
| token__decimals | |
| token__name | |
| token__symbol | |
| token__totalSupply | |
| token__txCount | |
| token__derivedETH | |
| totalShares | |
| totalAssets | |
| poolAssets | |
| inAMM | |
| poolUtilization | |
| panopticPool | |
| panopticPool__id | |
| panopticPool__txCount | |
| panopticPool__feeTier | |
| panopticPool__panopticVersion | |
| panopticPool__oracleContract | |
| panopticPool__mintVolume0 | |
| panopticPool__mintVolume0USD | |
| panopticPool__burnVolume0 | |
| panopticPool__burnVolume0USD | |
| panopticPool__totalVolume0 | |
| panopticPool__totalVolume0USD | |
| panopticPool__mintVolume1 | |
| panopticPool__mintVolume1USD | |
| panopticPool__burnVolume1 | |
| panopticPool__burnVolume1USD | |
| panopticPool__totalVolume1 | |
| panopticPool__totalVolume1USD | |
| panopticPool__totalVolumeUSD | |
| panopticPool__commissions0 | |
| panopticPool__commissions0USD | |
| panopticPool__commissions1 | |
| panopticPool__commissions1USD | |
| panopticPool__commissionsUSD | |
| panopticPool__protocolLoss0 | |
| panopticPool__protocolLoss0USD | |
| panopticPool__protocolLoss1 | |
| panopticPool__protocolLoss1USD | |
| panopticPool__protocolLossUSD | |
| panopticPool__createdTimestamp | |
| panopticPool__createdBlockNumber | |
| index | |
| collateralDayData |
Collect_orderBy
| Value | Description |
|---|---|
| id | |
| hash | |
| logIndex | |
| eventType | |
| from | |
| to | |
| blockNumber | |
| timestamp | |
| gasUsed | |
| gasPrice | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| owner | |
| owner__id | |
| recipient | |
| recipient__id | |
| tickLower | |
| tickUpper | |
| amount0 | |
| amount1 |
EventType
| Value | Description |
|---|---|
| Mint | Uniswap liquidity mint |
| Burn | Uniswap liquidity burn |
| Collect | Uniswap collect |
| TokenizedPositionBurnt | SFPM tokenized position burn |
| TokenizedPositionMinted | SFPM tokenized position mint |
| TokenizedPositionRolled | SFPM tokenized position roll |
| Deposit | Collateral deposit (PLP liquidity deposit) |
| Withdraw | Collateral deposit (PLP liquidity withdrawal) |
| OptionMint | Panoption mint / position open |
| OptionBurn | Panoption burn / position close |
| OptionRoll | Panoption roll |
| AccountLiquidated | Liquidation of a distressed PanopticPoolAccount. All of the distressed account's positions in a specific PanopticPool get closed and the liquidator receives a bonus. |
| ForcedExercised | Force the exercise of a single position. Exercisor will have to pay a fee to the force exercisee. |
| PremiumSettled | Emitted when premium is settled independent of a mint/burn (e.g. during |
Event_orderBy
| Value | Description |
|---|---|
| id | |
| hash | |
| logIndex | |
| from | |
| to | |
| blockNumber | |
| timestamp | |
| gasUsed | |
| gasPrice | |
| eventType | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick |
Factory_orderBy
| Value | Description |
|---|---|
| id | |
| poolCount | |
| owner | |
| opBackfilled |
ForcedExercise_orderBy
| Value | Description |
|---|---|
| id | |
| hash | |
| logIndex | |
| eventType | |
| from | |
| to | |
| blockNumber | |
| timestamp | |
| gasUsed | |
| gasPrice | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| exercisor | |
| exercisor__id | |
| user | |
| user__id | |
| tokenId | |
| exerciseFee | |
| exerciseFee0 | |
| exerciseFee1 | |
| exerciseFeeUSD | |
| tickAt | |
| panopticPool | |
| panopticPool__id | |
| panopticPool__txCount | |
| panopticPool__feeTier | |
| panopticPool__panopticVersion | |
| panopticPool__oracleContract | |
| panopticPool__mintVolume0 | |
| panopticPool__mintVolume0USD | |
| panopticPool__burnVolume0 | |
| panopticPool__burnVolume0USD | |
| panopticPool__totalVolume0 | |
| panopticPool__totalVolume0USD | |
| panopticPool__mintVolume1 | |
| panopticPool__mintVolume1USD | |
| panopticPool__burnVolume1 | |
| panopticPool__burnVolume1USD | |
| panopticPool__totalVolume1 | |
| panopticPool__totalVolume1USD | |
| panopticPool__totalVolumeUSD | |
| panopticPool__commissions0 | |
| panopticPool__commissions0USD | |
| panopticPool__commissions1 | |
| panopticPool__commissions1USD | |
| panopticPool__commissionsUSD | |
| panopticPool__protocolLoss0 | |
| panopticPool__protocolLoss0USD | |
| panopticPool__protocolLoss1 | |
| panopticPool__protocolLoss1USD | |
| panopticPool__protocolLossUSD | |
| panopticPool__createdTimestamp | |
| panopticPool__createdBlockNumber | |
| optionBurn | |
| optionBurn__id | |
| optionBurn__hash | |
| optionBurn__logIndex | |
| optionBurn__eventType | |
| optionBurn__from | |
| optionBurn__to | |
| optionBurn__blockNumber | |
| optionBurn__timestamp | |
| optionBurn__gasUsed | |
| optionBurn__gasPrice | |
| optionBurn__positionSize | |
| optionBurn__tickAt | |
| optionBurn__premium0 | |
| optionBurn__premium1 | |
| optionBurn__totalShares0 | |
| optionBurn__totalAssets0 | |
| optionBurn__totalShares1 | |
| optionBurn__totalAssets1 | |
| optionBurn__panopticVersion | |
| panopticVersion |
LegLiquidities_orderBy
| Value | Description |
|---|---|
| id | |
| leg | |
| leg__id | |
| leg__index | |
| leg__idHexString | |
| leg__optionRatio | |
| leg__asset | |
| leg__tokenType | |
| leg__isLong | |
| leg__riskPartner | |
| leg__strike | |
| leg__width | |
| leg__legCount | |
| chunk | |
| chunk__id | |
| chunk__tickLower | |
| chunk__tickUpper | |
| chunk__strike | |
| chunk__width | |
| chunk__tokenType | |
| chunk__netLiquidity | |
| chunk__shortLiquidity | |
| chunk__longLiquidity | |
| chunk__shortCounts | |
| chunk__longCounts | |
| chunk__totalLiquidity | |
| liquidity |
Leg_orderBy
| Value | Description |
|---|---|
| id | |
| index | |
| idHexString | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| optionRatio | |
| asset | |
| tokenType | |
| isLong | |
| riskPartner | |
| strike | |
| width | |
| chunk | |
| chunk__id | |
| chunk__tickLower | |
| chunk__tickUpper | |
| chunk__strike | |
| chunk__width | |
| chunk__tokenType | |
| chunk__netLiquidity | |
| chunk__shortLiquidity | |
| chunk__longLiquidity | |
| chunk__shortCounts | |
| chunk__longCounts | |
| chunk__totalLiquidity | |
| legCount | |
| tokenIds |
Mint_orderBy
| Value | Description |
|---|---|
| id | |
| hash | |
| logIndex | |
| eventType | |
| from | |
| to | |
| blockNumber | |
| timestamp | |
| gasUsed | |
| gasPrice | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| sender | |
| sender__id | |
| owner | |
| owner__id | |
| tickLower | |
| tickUpper | |
| amount | |
| amount0 | |
| amount1 | |
| token0 | |
| token0__id | |
| token0__decimals | |
| token0__name | |
| token0__symbol | |
| token0__totalSupply | |
| token0__txCount | |
| token0__derivedETH | |
| token1 | |
| token1__id | |
| token1__decimals | |
| token1__name | |
| token1__symbol | |
| token1__totalSupply | |
| token1__txCount | |
| token1__derivedETH |
OptionBurn_orderBy
| Value | Description |
|---|---|
| id | |
| hash | |
| logIndex | |
| eventType | |
| from | |
| to | |
| blockNumber | |
| timestamp | |
| gasUsed | |
| gasPrice | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| recipient | |
| recipient__id | |
| positionSize | |
| tokenId | |
| tokenId__id | |
| tokenId__idHexString | |
| tokenId__tokenCount | |
| tickAt | |
| panopticPool | |
| panopticPool__id | |
| panopticPool__txCount | |
| panopticPool__feeTier | |
| panopticPool__panopticVersion | |
| panopticPool__oracleContract | |
| panopticPool__mintVolume0 | |
| panopticPool__mintVolume0USD | |
| panopticPool__burnVolume0 | |
| panopticPool__burnVolume0USD | |
| panopticPool__totalVolume0 | |
| panopticPool__totalVolume0USD | |
| panopticPool__mintVolume1 | |
| panopticPool__mintVolume1USD | |
| panopticPool__burnVolume1 | |
| panopticPool__burnVolume1USD | |
| panopticPool__totalVolume1 | |
| panopticPool__totalVolume1USD | |
| panopticPool__totalVolumeUSD | |
| panopticPool__commissions0 | |
| panopticPool__commissions0USD | |
| panopticPool__commissions1 | |
| panopticPool__commissions1USD | |
| panopticPool__commissionsUSD | |
| panopticPool__protocolLoss0 | |
| panopticPool__protocolLoss0USD | |
| panopticPool__protocolLoss1 | |
| panopticPool__protocolLoss1USD | |
| panopticPool__protocolLossUSD | |
| panopticPool__createdTimestamp | |
| panopticPool__createdBlockNumber | |
| premium0 | |
| premium1 | |
| premiaByLeg | |
| totalShares0 | |
| totalAssets0 | |
| totalShares1 | |
| totalAssets1 | |
| txnOpened | |
| txnOpened__id | |
| txnOpened__hash | |
| txnOpened__logIndex | |
| txnOpened__eventType | |
| txnOpened__from | |
| txnOpened__to | |
| txnOpened__blockNumber | |
| txnOpened__timestamp | |
| txnOpened__gasUsed | |
| txnOpened__gasPrice | |
| txnOpened__positionSize | |
| txnOpened__poolUtilization0 | |
| txnOpened__poolUtilization1 | |
| txnOpened__currentTick | |
| txnOpened__fastOracleTick | |
| txnOpened__lastObservedTick | |
| txnOpened__slowOracleTick | |
| txnOpened__commissions0 | |
| txnOpened__commissions1 | |
| txnOpened__commissions0USD | |
| txnOpened__commissions1USD | |
| txnOpened__commissionsUSD | |
| txnOpened__tickAt | |
| txnOpened__panopticVersion | |
| accountBalance | |
| accountBalance__id | |
| accountBalance__tokenCount | |
| accountBalance__positionSize | |
| accountBalance__premiaSettled0Total | |
| accountBalance__premiaSettled0InEthTotal | |
| accountBalance__premiaSettled0InUsdTotal | |
| accountBalance__premiaSettled1Total | |
| accountBalance__premiaSettled1InEthTotal | |
| accountBalance__premiaSettled1InUsdTotal | |
| accountBalance__isOpen | |
| accountBalance__createdTimestamp | |
| accountBalance__createdBlockNumber | |
| accountBalance__closedTimestamp | |
| forcedExercise | |
| forcedExercise__id | |
| forcedExercise__hash | |
| forcedExercise__logIndex | |
| forcedExercise__eventType | |
| forcedExercise__from | |
| forcedExercise__to | |
| forcedExercise__blockNumber | |
| forcedExercise__timestamp | |
| forcedExercise__gasUsed | |
| forcedExercise__gasPrice | |
| forcedExercise__tokenId | |
| forcedExercise__exerciseFee | |
| forcedExercise__exerciseFee0 | |
| forcedExercise__exerciseFee1 | |
| forcedExercise__exerciseFeeUSD | |
| forcedExercise__tickAt | |
| forcedExercise__panopticVersion | |
| accountLiquidated | |
| accountLiquidated__id | |
| accountLiquidated__hash | |
| accountLiquidated__logIndex | |
| accountLiquidated__eventType | |
| accountLiquidated__from | |
| accountLiquidated__to | |
| accountLiquidated__blockNumber | |
| accountLiquidated__timestamp | |
| accountLiquidated__gasUsed | |
| accountLiquidated__gasPrice | |
| accountLiquidated__bonusAmounts | |
| accountLiquidated__liquidationBonus0 | |
| accountLiquidated__liquidationBonus1 | |
| accountLiquidated__liquidationBonusUSD | |
| accountLiquidated__tickAt | |
| accountLiquidated__panopticVersion | |
| panopticVersion |
OptionMint_orderBy
| Value | Description |
|---|---|
| id | |
| hash | |
| logIndex | |
| eventType | |
| from | |
| to | |
| blockNumber | |
| timestamp | |
| gasUsed | |
| gasPrice | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| recipient | |
| recipient__id | |
| tokenId | |
| tokenId__id | |
| tokenId__idHexString | |
| tokenId__tokenCount | |
| positionSize | |
| poolUtilization0 | |
| poolUtilization1 | |
| currentTick | |
| fastOracleTick | |
| lastObservedTick | |
| slowOracleTick | |
| accountBalance | |
| accountBalance__id | |
| accountBalance__tokenCount | |
| accountBalance__positionSize | |
| accountBalance__premiaSettled0Total | |
| accountBalance__premiaSettled0InEthTotal | |
| accountBalance__premiaSettled0InUsdTotal | |
| accountBalance__premiaSettled1Total | |
| accountBalance__premiaSettled1InEthTotal | |
| accountBalance__premiaSettled1InUsdTotal | |
| accountBalance__isOpen | |
| accountBalance__createdTimestamp | |
| accountBalance__createdBlockNumber | |
| accountBalance__closedTimestamp | |
| panopticPool | |
| panopticPool__id | |
| panopticPool__txCount | |
| panopticPool__feeTier | |
| panopticPool__panopticVersion | |
| panopticPool__oracleContract | |
| panopticPool__mintVolume0 | |
| panopticPool__mintVolume0USD | |
| panopticPool__burnVolume0 | |
| panopticPool__burnVolume0USD | |
| panopticPool__totalVolume0 | |
| panopticPool__totalVolume0USD | |
| panopticPool__mintVolume1 | |
| panopticPool__mintVolume1USD | |
| panopticPool__burnVolume1 | |
| panopticPool__burnVolume1USD | |
| panopticPool__totalVolume1 | |
| panopticPool__totalVolume1USD | |
| panopticPool__totalVolumeUSD | |
| panopticPool__commissions0 | |
| panopticPool__commissions0USD | |
| panopticPool__commissions1 | |
| panopticPool__commissions1USD | |
| panopticPool__commissionsUSD | |
| panopticPool__protocolLoss0 | |
| panopticPool__protocolLoss0USD | |
| panopticPool__protocolLoss1 | |
| panopticPool__protocolLoss1USD | |
| panopticPool__protocolLossUSD | |
| panopticPool__createdTimestamp | |
| panopticPool__createdBlockNumber | |
| commissions0 | |
| commissions1 | |
| commissions0USD | |
| commissions1USD | |
| commissionsUSD | |
| tickAt | |
| panopticVersion |
OptionRoll_orderBy
| Value | Description |
|---|---|
| id | |
| hash | |
| logIndex | |
| eventType | |
| from | |
| to | |
| blockNumber | |
| timestamp | |
| gasUsed | |
| gasPrice | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| recipient | |
| recipient__id | |
| positionSize | |
| oldTokenId | |
| newTokenId | |
| tickAtRoll | |
| poolUtilizations | |
| premia | |
| panopticPool | |
| panopticPool__id | |
| panopticPool__txCount | |
| panopticPool__feeTier | |
| panopticPool__panopticVersion | |
| panopticPool__oracleContract | |
| panopticPool__mintVolume0 | |
| panopticPool__mintVolume0USD | |
| panopticPool__burnVolume0 | |
| panopticPool__burnVolume0USD | |
| panopticPool__totalVolume0 | |
| panopticPool__totalVolume0USD | |
| panopticPool__mintVolume1 | |
| panopticPool__mintVolume1USD | |
| panopticPool__burnVolume1 | |
| panopticPool__burnVolume1USD | |
| panopticPool__totalVolume1 | |
| panopticPool__totalVolume1USD | |
| panopticPool__totalVolumeUSD | |
| panopticPool__commissions0 | |
| panopticPool__commissions0USD | |
| panopticPool__commissions1 | |
| panopticPool__commissions1USD | |
| panopticPool__commissionsUSD | |
| panopticPool__protocolLoss0 | |
| panopticPool__protocolLoss0USD | |
| panopticPool__protocolLoss1 | |
| panopticPool__protocolLoss1USD | |
| panopticPool__protocolLossUSD | |
| panopticPool__createdTimestamp | |
| panopticPool__createdBlockNumber | |
| poolUtilization0 | |
| poolUtilization1 | |
| premium0 | |
| premium1 |
OrderDirection
Defines the order direction, either ascending or descending
| Value | Description |
|---|---|
| asc | |
| desc |
PanopticFactory_orderBy
| Value | Description |
|---|---|
| id | |
| poolCount | |
| owner | |
| panopticVersion |
PanopticPoolAccount_orderBy
| Value | Description |
|---|---|
| id | |
| panopticPool | |
| panopticPool__id | |
| panopticPool__txCount | |
| panopticPool__feeTier | |
| panopticPool__panopticVersion | |
| panopticPool__oracleContract | |
| panopticPool__mintVolume0 | |
| panopticPool__mintVolume0USD | |
| panopticPool__burnVolume0 | |
| panopticPool__burnVolume0USD | |
| panopticPool__totalVolume0 | |
| panopticPool__totalVolume0USD | |
| panopticPool__mintVolume1 | |
| panopticPool__mintVolume1USD | |
| panopticPool__burnVolume1 | |
| panopticPool__burnVolume1USD | |
| panopticPool__totalVolume1 | |
| panopticPool__totalVolume1USD | |
| panopticPool__totalVolumeUSD | |
| panopticPool__commissions0 | |
| panopticPool__commissions0USD | |
| panopticPool__commissions1 | |
| panopticPool__commissions1USD | |
| panopticPool__commissionsUSD | |
| panopticPool__protocolLoss0 | |
| panopticPool__protocolLoss0USD | |
| panopticPool__protocolLoss1 | |
| panopticPool__protocolLoss1USD | |
| panopticPool__protocolLossUSD | |
| panopticPool__createdTimestamp | |
| panopticPool__createdBlockNumber | |
| account | |
| account__id | |
| collateral0 | |
| collateral0__id | |
| collateral0__panopticVersion | |
| collateral0__totalShares | |
| collateral0__totalAssets | |
| collateral0__poolAssets | |
| collateral0__inAMM | |
| collateral0__poolUtilization | |
| collateral0__index | |
| collateral0Shares | |
| collateral0Assets | |
| collateral1 | |
| collateral1__id | |
| collateral1__panopticVersion | |
| collateral1__totalShares | |
| collateral1__totalAssets | |
| collateral1__poolAssets | |
| collateral1__inAMM | |
| collateral1__poolUtilization | |
| collateral1__index | |
| collateral1Shares | |
| collateral1Assets | |
| isLiquidated | |
| accountBalances | |
| commissions0 | |
| commissions0Usd | |
| commissions1 | |
| commissions1Usd |
PanopticPoolDayData_orderBy
| Value | Description |
|---|---|
| id | |
| panopticPool | |
| panopticPool__id | |
| panopticPool__txCount | |
| panopticPool__feeTier | |
| panopticPool__panopticVersion | |
| panopticPool__oracleContract | |
| panopticPool__mintVolume0 | |
| panopticPool__mintVolume0USD | |
| panopticPool__burnVolume0 | |
| panopticPool__burnVolume0USD | |
| panopticPool__totalVolume0 | |
| panopticPool__totalVolume0USD | |
| panopticPool__mintVolume1 | |
| panopticPool__mintVolume1USD | |
| panopticPool__burnVolume1 | |
| panopticPool__burnVolume1USD | |
| panopticPool__totalVolume1 | |
| panopticPool__totalVolume1USD | |
| panopticPool__totalVolumeUSD | |
| panopticPool__commissions0 | |
| panopticPool__commissions0USD | |
| panopticPool__commissions1 | |
| panopticPool__commissions1USD | |
| panopticPool__commissionsUSD | |
| panopticPool__protocolLoss0 | |
| panopticPool__protocolLoss0USD | |
| panopticPool__protocolLoss1 | |
| panopticPool__protocolLoss1USD | |
| panopticPool__protocolLossUSD | |
| panopticPool__createdTimestamp | |
| panopticPool__createdBlockNumber | |
| date | |
| mintVolume0 | |
| mintVolume0USD | |
| burnVolume0 | |
| burnVolume0USD | |
| totalVolume0 | |
| totalVolume0USD | |
| mintVolume1 | |
| mintVolume1USD | |
| burnVolume1 | |
| burnVolume1USD | |
| totalVolume1 | |
| totalVolume1USD | |
| totalVolumeUSD | |
| commissions0 | |
| commissions0USD | |
| commissions1 | |
| commissions1USD | |
| commissionsUSD |
PanopticPool_orderBy
| Value | Description |
|---|---|
| id | |
| txCount | |
| token0 | |
| token0__id | |
| token0__decimals | |
| token0__name | |
| token0__symbol | |
| token0__totalSupply | |
| token0__txCount | |
| token0__derivedETH | |
| token1 | |
| token1__id | |
| token1__decimals | |
| token1__name | |
| token1__symbol | |
| token1__totalSupply | |
| token1__txCount | |
| token1__derivedETH | |
| feeTier | |
| collateral0 | |
| collateral0__id | |
| collateral0__panopticVersion | |
| collateral0__totalShares | |
| collateral0__totalAssets | |
| collateral0__poolAssets | |
| collateral0__inAMM | |
| collateral0__poolUtilization | |
| collateral0__index | |
| collateral1 | |
| collateral1__id | |
| collateral1__panopticVersion | |
| collateral1__totalShares | |
| collateral1__totalAssets | |
| collateral1__poolAssets | |
| collateral1__inAMM | |
| collateral1__poolUtilization | |
| collateral1__index | |
| underlyingPool | |
| underlyingPool__id | |
| underlyingPool__isV4Pool | |
| underlyingPool__hooks | |
| underlyingPool__poolId | |
| underlyingPool__feeTier | |
| underlyingPool__tickSpacing | |
| underlyingPool__txCount | |
| underlyingPool__liquidity | |
| underlyingPool__sqrtPrice | |
| underlyingPool__tick | |
| underlyingPool__tickLastUpdateTimestamp | |
| underlyingPool__tickLastUpdateBlockNumber | |
| underlyingPool__token0Price | |
| underlyingPool__token1Price | |
| underlyingPool__totalValueLockedToken0 | |
| underlyingPool__totalValueLockedToken1 | |
| underlyingPool__totalValueLockedETH | |
| underlyingPool__totalValueLockedUSD | |
| underlyingPool__minEnforcedTick | |
| underlyingPool__maxEnforcedTick | |
| panopticVersion | |
| oracleContract | |
| mintVolume0 | |
| mintVolume0USD | |
| burnVolume0 | |
| burnVolume0USD | |
| totalVolume0 | |
| totalVolume0USD | |
| mintVolume1 | |
| mintVolume1USD | |
| burnVolume1 | |
| burnVolume1USD | |
| totalVolume1 | |
| totalVolume1USD | |
| totalVolumeUSD | |
| commissions0 | |
| commissions0USD | |
| commissions1 | |
| commissions1USD | |
| commissionsUSD | |
| protocolLoss0 | |
| protocolLoss0USD | |
| protocolLoss1 | |
| protocolLoss1USD | |
| protocolLossUSD | |
| chunks | |
| panopticPoolDayData | |
| panopticPoolAccounts | |
| createdTimestamp | |
| createdBlockNumber |
PoolDayData_orderBy
| Value | Description |
|---|---|
| id | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| date | |
| txCount | |
| liquidity | |
| token0Price | |
| token1Price | |
| volumeToken0 | |
| volumeToken1 | |
| volumeUSD | |
| feesUSD | |
| open | |
| high | |
| low | |
| close |
PoolHourData_orderBy
| Value | Description |
|---|---|
| id | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| txCount | |
| liquidity | |
| token0Price | |
| token1Price | |
| volumeToken0 | |
| volumeToken1 | |
| volumeUSD | |
| open | |
| high | |
| low | |
| close | |
| periodStartUnix |
Pool_orderBy
| Value | Description |
|---|---|
| id | |
| isV4Pool | |
| hooks | |
| poolId | |
| feeTier | |
| tickSpacing | |
| token0 | |
| token0__id | |
| token0__decimals | |
| token0__name | |
| token0__symbol | |
| token0__totalSupply | |
| token0__txCount | |
| token0__derivedETH | |
| token1 | |
| token1__id | |
| token1__decimals | |
| token1__name | |
| token1__symbol | |
| token1__totalSupply | |
| token1__txCount | |
| token1__derivedETH | |
| txCount | |
| liquidity | |
| sqrtPrice | |
| tick | |
| tickLastUpdateTimestamp | |
| tickLastUpdateBlockNumber | |
| poolHourData | |
| poolDayData | |
| token0Price | |
| token1Price | |
| totalValueLockedToken0 | |
| totalValueLockedToken1 | |
| totalValueLockedETH | |
| totalValueLockedUSD | |
| minEnforcedTick | |
| maxEnforcedTick | |
| panopticPool | |
| panopticPool__id | |
| panopticPool__txCount | |
| panopticPool__feeTier | |
| panopticPool__panopticVersion | |
| panopticPool__oracleContract | |
| panopticPool__mintVolume0 | |
| panopticPool__mintVolume0USD | |
| panopticPool__burnVolume0 | |
| panopticPool__burnVolume0USD | |
| panopticPool__totalVolume0 | |
| panopticPool__totalVolume0USD | |
| panopticPool__mintVolume1 | |
| panopticPool__mintVolume1USD | |
| panopticPool__burnVolume1 | |
| panopticPool__burnVolume1USD | |
| panopticPool__totalVolume1 | |
| panopticPool__totalVolume1USD | |
| panopticPool__totalVolumeUSD | |
| panopticPool__commissions0 | |
| panopticPool__commissions0USD | |
| panopticPool__commissions1 | |
| panopticPool__commissions1USD | |
| panopticPool__commissionsUSD | |
| panopticPool__protocolLoss0 | |
| panopticPool__protocolLoss0USD | |
| panopticPool__protocolLoss1 | |
| panopticPool__protocolLoss1USD | |
| panopticPool__protocolLossUSD | |
| panopticPool__createdTimestamp | |
| panopticPool__createdBlockNumber | |
| panopticPools |
PremiumSettled_orderBy
| Value | Description |
|---|---|
| id | |
| hash | |
| logIndex | |
| eventType | |
| from | |
| to | |
| blockNumber | |
| timestamp | |
| gasUsed | |
| gasPrice | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| user | |
| user__id | |
| tokenId | |
| tokenId__id | |
| tokenId__idHexString | |
| tokenId__tokenCount | |
| legIndex | |
| settledAmounts | |
| settledAmount0 | |
| settledAmount0InEth | |
| settledAmount0InUsd | |
| settledAmount1 | |
| settledAmount1InEth | |
| settledAmount1InUsd | |
| panopticPool | |
| panopticPool__id | |
| panopticPool__txCount | |
| panopticPool__feeTier | |
| panopticPool__panopticVersion | |
| panopticPool__oracleContract | |
| panopticPool__mintVolume0 | |
| panopticPool__mintVolume0USD | |
| panopticPool__burnVolume0 | |
| panopticPool__burnVolume0USD | |
| panopticPool__totalVolume0 | |
| panopticPool__totalVolume0USD | |
| panopticPool__mintVolume1 | |
| panopticPool__mintVolume1USD | |
| panopticPool__burnVolume1 | |
| panopticPool__burnVolume1USD | |
| panopticPool__totalVolume1 | |
| panopticPool__totalVolume1USD | |
| panopticPool__totalVolumeUSD | |
| panopticPool__commissions0 | |
| panopticPool__commissions0USD | |
| panopticPool__commissions1 | |
| panopticPool__commissions1USD | |
| panopticPool__commissionsUSD | |
| panopticPool__protocolLoss0 | |
| panopticPool__protocolLoss0USD | |
| panopticPool__protocolLoss1 | |
| panopticPool__protocolLoss1USD | |
| panopticPool__protocolLossUSD | |
| panopticPool__createdTimestamp | |
| panopticPool__createdBlockNumber | |
| panopticVersion |
TokenId_orderBy
| Value | Description |
|---|---|
| id | |
| idHexString | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| tokenCount | |
| accountBalances | |
| legs |
Token_orderBy
| Value | Description |
|---|---|
| id | |
| decimals | |
| name | |
| symbol | |
| totalSupply | |
| txCount | |
| derivedETH | |
| whitelistPools |
TokenizedPositionBurnt_orderBy
| Value | Description |
|---|---|
| id | |
| hash | |
| logIndex | |
| eventType | |
| from | |
| to | |
| blockNumber | |
| timestamp | |
| gasUsed | |
| gasPrice | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| recipient | |
| recipient__id | |
| positionSize | |
| tokenId | |
| tokenId__id | |
| tokenId__idHexString | |
| tokenId__tokenCount | |
| panopticVersion |
TokenizedPositionMinted_orderBy
| Value | Description |
|---|---|
| id | |
| hash | |
| logIndex | |
| eventType | |
| from | |
| to | |
| blockNumber | |
| timestamp | |
| gasUsed | |
| gasPrice | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| caller | |
| caller__id | |
| positionSize | |
| tokenId | |
| tokenId__id | |
| tokenId__idHexString | |
| tokenId__tokenCount | |
| panopticVersion |
TokenizedPositionRolled_orderBy
| Value | Description |
|---|---|
| id | |
| hash | |
| logIndex | |
| eventType | |
| from | |
| to | |
| blockNumber | |
| timestamp | |
| gasUsed | |
| gasPrice | |
| pool | |
| pool__id | |
| pool__isV4Pool | |
| pool__hooks | |
| pool__poolId | |
| pool__feeTier | |
| pool__tickSpacing | |
| pool__txCount | |
| pool__liquidity | |
| pool__sqrtPrice | |
| pool__tick | |
| pool__tickLastUpdateTimestamp | |
| pool__tickLastUpdateBlockNumber | |
| pool__token0Price | |
| pool__token1Price | |
| pool__totalValueLockedToken0 | |
| pool__totalValueLockedToken1 | |
| pool__totalValueLockedETH | |
| pool__totalValueLockedUSD | |
| pool__minEnforcedTick | |
| pool__maxEnforcedTick | |
| recipient | |
| recipient__id | |
| oldTokenId | |
| oldTokenId__id | |
| oldTokenId__idHexString | |
| oldTokenId__tokenCount | |
| newTokenId | |
| newTokenId__id | |
| newTokenId__idHexString | |
| newTokenId__tokenCount | |
| positionSize |
SubgraphErrorPolicy
| Value | Description |
|---|---|
| allow | Data will be returned even if the subgraph has indexing errors |
| deny | If the subgraph has indexing errors, data will be omitted. The default. |
Scalars
BigDecimal
BigInt
Boolean
Bytes
Float
ID
Int
4 bytes signed integer
Int8
8 bytes signed integer
String
Timestamp
A string representation of microseconds UNIX timestamp (16 digits)
Interfaces
Event
A generic entity for the many events that get emitted throughout the Panoptic protocol.
| Field | Argument | Type | Description |
|---|---|---|---|
| id | ID! | Txn hash + '#' + log index | |
| hash | String! | Txn hash of the transaction emitting this event | |
| logIndex | BigInt! | Event log index | |
| from | String! | Sender of transaction | |
| to | String! | Receiver of transaction | |
| blockNumber | BigInt! | Block txn was included in | |
| timestamp | BigInt! | Timestamp txn was confirmed | |
| gasUsed | BigInt! | Gas used during txn execution | |
| gasPrice | BigInt! | Gas price during txn execution | |
| eventType | EventType! | Type of event. The Graph doesn't allow filtering by __typename meta so it's explicitly required here | |
| pool | Pool! | Uniswap Pool the event happened within, or the underlying Uniswap Pool for a PanopticPool event. Needed to show all transactions within a pool from a certain account because The Graph doesn't have the ability to add custom filters. | |
Possible Types: Mint, Burn, Collect, TokenizedPositionBurnt, TokenizedPositionMinted, TokenizedPositionRolled, OptionRoll, CollateralDeposit, CollateralWithdraw, OptionMint, OptionBurn, AccountLiquidated, ForcedExercise, PremiumSettled