Skip to main content

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.

FieldArgumentTypeDescription
idID!

Account address

accountBalances[AccountBalance!]!

TokenIds owned by this account

skipInt
firstInt
orderByAccountBalance_orderBy
orderDirectionOrderDirection
whereAccountBalance_filter
panopticPoolAccount[PanopticPoolAccount!]

Subaccounts for PanopticPools where this Account has options activity

skipInt
firstInt
orderByPanopticPoolAccount_orderBy
orderDirectionOrderDirection
wherePanopticPoolAccount_filter

AccountBalance

The AccountBalance entity represents how many of a specific TokenId an Account holds

FieldArgumentTypeDescription
idID!

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').

ownerAccount!

Creator of this AccountToken balance (e.g. NFPM Account, SFPM Account, PanopticPool)

senderAccount!

Initiator of this txn (account responsible)

tokenIdTokenId!

The ERC1155 TokenId held by this Account

legLiquidities[LegLiquidities!]!

The Legs and associated liquidity amounts of this AccountBalance's TokenId

skipInt
firstInt
orderByLegLiquidities_orderBy
orderDirectionOrderDirection
whereLegLiquidities_filter
tokenCountBigInt!

Amount of TokenId held by this Account

positionSizeBigInt!

Position size expressed in terms of the asset

panopticPoolAccountPanopticPoolAccount

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.

txnOpenedEvent!

ID of the event that created account balance

txnClosedEvent

ID of the event that closed account balance

isOpenInt!

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.

createdTimestampBigInt!

Creation timestamp

createdBlockNumberBigInt!

Creation block number

closedTimestampBigInt

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.

FieldArgumentTypeDescription
idID!
hashString!
logIndexBigInt!
eventTypeEventType!
fromString!
toString!
blockNumberBigInt!
timestampBigInt!
gasUsedBigInt!
gasPriceBigInt!
poolPool!
liquidatorAccount!

Address that liquidates the distressed account

liquidateeAccount!

Address of the distressed/liquidated account

bonusAmountsBigInt!

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.

liquidationBonus0BigInt!

The amount of bonus paid for token0 for this liquidation.

liquidationBonus1BigInt!

The amount of bonus paid for token1 for this liquidation.

liquidationBonusUSDBigDecimal!

The summed liquidation bonus in USD.

tickAtInt!

Tick when the position was liquidated

panopticPoolPanopticPool!

The PanopticPool this liquidation happened in (from event.address)

optionBurns[OptionBurn!]

List of OptionBurn events resulting from this Liquidation

skipInt
firstInt
orderByOptionBurn_orderBy
orderDirectionOrderDirection
whereOptionBurn_filter

Bundle

Keeps track of ETH/USD price using a configured Uniswap pool.

FieldArgumentTypeDescription
idID!

The ID of the Bundle singleton is always 1.

ethPriceUSDBigDecimal!

Price of ETH in USD.

Burn

Uniswap liquidity burn

FieldArgumentTypeDescription
idID!
hashString!
logIndexBigInt!
eventTypeEventType!
fromString!
toString!
blockNumberBigInt!
timestampBigInt!
gasUsedBigInt!
gasPriceBigInt!
poolPool!
ownerAccount!

The owner of the position for which liquidity is removed

tickLowerInt!

The lower tick of the position

tickUpperInt!

The upper tick of the position

amountBigInt!

The amount of liquidity to remove

amount0BigDecimal!

The amount of token 0 withdrawn

amount1BigDecimal!

The amount of token 1 withdrawn

token0Token!

Allow indexing by tokens

token1Token!

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.

FieldArgumentTypeDescription
idID!

ID is a concatenated string of: owner + '#' + manager + '#' + poolAddress + '#' + tokenType + '#' + lowerTick + '#' + upperTick

ownerAccount!

TokenizedPositionMinted.caller if mint routes through SFPM. Otherwise, same as manager (will be a PanopticPool address for option mints/burns/rolls).

managerAccount!

Mint.sender / Burn.owner on Uniswap pool event

tickLowerBigInt!

Lower tick of the position

tickUpperBigInt!

Upper tick of the position

strikeBigInt!

Avg. of tickLower & tickUpper

widthBigInt!

(tickUpper - tickLower) / pool.tickSpacing

tokenTypeBigInt!

Which token is moved when deployed (0 -> token0, 1 -> token1). When minted through Uniswap's NFPM, tokenType is always 1 (for put).

poolPool!

Pool where this chunk exists

panopticPoolPanopticPool

If owned by a PanopticPool, PanopticPool that owns this chunk

netLiquidityBigInt!

Net liquidity in chunk

shortLiquidityBigInt!

Short liquidity in chunk

longLiquidityBigInt!

Long liquidity in chunk

shortCountsBigInt!

Total long positions in chunk

longCountsBigInt!

Total short positions in chunk

totalLiquidityBigInt!

Total liquidity in chunk

legs[Leg!]!

Legs created on this chunk of liquidity

skipInt
firstInt
orderByLeg_orderBy
orderDirectionOrderDirection
whereLeg_filter

Collateral

Contains the collateralization metrics of a certain token in a certain PanopticPool (derived from the CollateralTracker.sol contract).

FieldArgumentTypeDescription
idID!

Address of CollateralTracker for pool

tokenToken!

Address of underlying token

totalSharesBigInt!

Total shares supply (receipts to claim assets)

totalAssetsBigInt!

Total assets managed by this Collateral vault. Should be equal to poolAssets + inAMM.

poolAssetsBigInt!

Assets accounted to be held by the Panoptic Pool. Ignores donations, pending fee payouts, and other untracked balance changes.

inAMMBigInt!

Tokens moved from Panoptic Pool to AMM

poolUtilizationBigInt!

Pool utilization represents how many funds are in the AMM pool, times 10,000, over the total assets controlled by the Panoptic pool.

panopticPoolPanopticPool!

The PanopticPool being collateralized

indexBigInt!

Index of 0 or 1, indicating if this is collateralTracker0 or collateralTracker1 in its parent PanopticPool

collateralDayData[CollateralDayData!]!

Snapshots of CollateralDayData

skipInt
firstInt
orderByCollateralDayData_orderBy
orderDirectionOrderDirection
whereCollateralDayData_filter
previousSharePriceBigDecimal!

Share price before most recent transfer event. Useful for calculating commissions.

preLiquidationSharePriceBigDecimal!

Share price immediately before calling liquidate() used for calculating protocol loss. Starts as 0 and gets updated when a _mint() call is being handled during a liquidation (nonzero share transfer from 0 address -> liquidator). Gets reset when handling a Deposit() event (which is the only other time transfer from 0 address -> liquidator would happen) or after being used by the AccountLiquidated() event handler.

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.

FieldArgumentTypeDescription
idID!

Timestamp rounded to current day combined with collateral id

collateralCollateral!

Pointer to Collateral

dateInt!

Timestamp rounded to current day by dividing by 86400

totalSharesBigInt!

Shares

totalAssetsBigInt!

Assets

sharePriceBigDecimal!

Share price (assets/shares)

CollateralDeposit

Collateral deposit (PLP liquidity deposit)

FieldArgumentTypeDescription
idID!
hashString!
logIndexBigInt!
eventTypeEventType!
fromString!
toString!
blockNumberBigInt!
timestampBigInt!
gasUsedBigInt!
gasPriceBigInt!
poolPool!
senderAccount!

The address of the caller (and depositor)

ownerAccount!

The address of the recipient of the newly minted shares

assetsBigInt!

The amount of assets deposited by sender in exchange for shares

sharesBigInt!

Shares the amount of shares minted to owner

collateralCollateral!

The collateral entity that received the deposit.

tickAtDepositBigInt
tokenDerivedEthAtDepositBigDecimal!
ethPriceUSDAtDepositBigDecimal!

CollateralWithdraw

Collateral deposit (PLP liquidity withdrawal)

FieldArgumentTypeDescription
idID!
hashString!
logIndexBigInt!
eventTypeEventType!
fromString!
toString!
blockNumberBigInt!
timestampBigInt!
gasUsedBigInt!
gasPriceBigInt!
poolPool!
senderAccount!

The address of the caller

receiverAccount!

The address of the recipient of the withdrawn assets

ownerAccount!

The address of the owner of the shares being burned

assetsBigInt!

The amount of assets withdrawn to receiver

sharesBigInt!

The amount of shares burned by owner in exchange for assets

collateralCollateral!

The collateral entity that was withdrawn from.

tickAtWithdrawBigInt
tokenDerivedEthAtWithdrawBigDecimal!
ethPriceUSDAtWithdrawBigDecimal!

Collect

Uniswap collect

FieldArgumentTypeDescription
idID!
hashString!
logIndexBigInt!
eventTypeEventType!
fromString!
toString!
blockNumberBigInt!
timestampBigInt!
gasUsedBigInt!
gasPriceBigInt!
poolPool!
ownerAccount!

The owner of the position for which fees are collected

recipientAccount!

The address that received the output of the collect

tickLowerInt!

The lower tick of the position

tickUpperInt!

The upper tick of the position

amount0BigDecimal!

The amount of token0 fees collected

amount1BigDecimal!

The amount of token1 fees collected

Factory

Uniswap Factory (deployer of Pools).

FieldArgumentTypeDescription
idID!

Factory address

poolCountBigInt!

Amount of pools created

ownerID!

Current owner of the factory

opBackfilledBoolean

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.

FieldArgumentTypeDescription
idID!
hashString!
logIndexBigInt!
eventTypeEventType!
fromString!
toString!
blockNumberBigInt!
timestampBigInt!
gasUsedBigInt!
gasPriceBigInt!
poolPool!
exercisorAccount!

Address of the account that forces the exercise of the position

userAccount!

Address of the owner of the liquidated position

tokenIdBigInt!

TokenId of the exercised position

exerciseFeeBigInt!

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.

exerciseFee0BigInt!

The cost paid by the exercisor to force the exercise for token0 (represented as a negative value, fee debited)

exerciseFee1BigInt!

The cost paid by the exercisor to force the exercise for token1 (represented as a negative value, fee debited)

exerciseFeeUSDBigDecimal!

The summed cost in USD paid by the exercisor for this force exercise

tickAtInt!

Tick when the position was exercised

panopticPoolPanopticPool!

The PanopticPool this forced exercise happened in (from event.address)

optionBurnOptionBurn

OptionBurn event for the exercised position

Leg

A leg of a TokenId, representing a single option.

FieldArgumentTypeDescription
idID!

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

indexInt!

Index of the leg in the tokenId

idHexStringString!

Hex stringified leg ID

poolPool!

Pool position is within

optionRatioBigInt!

Number of contracts per leg

assetBigInt!

Asset of 0 token0, 1 for token1

tokenTypeBigInt!

Token type

isLongBigInt!

Is it a long leg?

riskPartnerBigInt!

Risk partner

strikeBigInt!

Strike

widthBigInt!

Width

chunkChunk!

Chunk data

legCountBigInt!

How many of this Leg exist

tokenIds[TokenId!]!

TokenIds which this leg exists in

skipInt
firstInt
orderByTokenId_orderBy
orderDirectionOrderDirection
whereTokenId_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.

FieldArgumentTypeDescription
idID!

leg id + '#' + txnHash + '#' + logIndex

legLeg!
chunkChunk!
liquidityBigInt!

Mint

Uniswap liquidity mint

FieldArgumentTypeDescription
idID!
hashString!
logIndexBigInt!
eventTypeEventType!
fromString!
toString!
blockNumberBigInt!
timestampBigInt!
gasUsedBigInt!
gasPriceBigInt!
poolPool!
senderAccount!

The address that minted the liquidity

ownerAccount!

Owner of position where liquidity minted to

tickLowerInt!

Lower tick of the position

tickUpperInt!

Upper tick of the position

amountBigInt!

Amount of liquidity minted

amount0BigDecimal!

Amount of token 0 minted

amount1BigDecimal!

Amount of token 1 minted

token0Token!

Allow indexing by tokens

token1Token!

Allow indexing by tokens

OptionBurn

Panoption burn / position close

FieldArgumentTypeDescription
idID!
hashString!
logIndexBigInt!
eventTypeEventType!
fromString!
toString!
blockNumberBigInt!
timestampBigInt!
gasUsedBigInt!
gasPriceBigInt!
poolPool!
recipientAccount!

User that burnt the option

positionSizeBigInt!

The number of contracts burnt, expressed in terms of the asset

tokenIdTokenId!

TokenId of the burnt option

tickAtInt!

Tick at which the option was burned

premiaBigInt!

The amount of premia collected

panopticPoolPanopticPool!

PanopticPool mint is within (from event.address)

premium0BigInt!

Premium collected for token0

premium1BigInt!

Premium collected for token1

txnOpenedOptionMint!

ID of the corresponding OptionMint

forcedExerciseForcedExercise

If this optionBurn was due to a position being exercised, this will be the ID of the related ForceExercise event.

accountLiquidatedAccountLiquidated

If this optionBurn was due to a PanopticPoolAccount being liquidated, this will be the ID of the related AccountLiquidated event.

OptionMint

Panoption mint / position open

FieldArgumentTypeDescription
idID!
hashString!
logIndexBigInt!
eventTypeEventType!
fromString!
toString!
blockNumberBigInt!
timestampBigInt!
gasUsedBigInt!
gasPriceBigInt!
poolPool!
recipientAccount!

User that minted the option

positionSizeBigInt!

The number of contracts minted, expressed in terms of the asset

tokenIdTokenId!

TokenId of the created option

tickAtInt!

Tick at which the option was minted

poolUtilizationsBigInt!

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

panopticPoolPanopticPool!

PanopticPool mint is within (from event.address)

commissions0BigDecimal!

Token0 commissions paid to mint this option

commissions1BigDecimal!

Token1 commissions paid to mint this option

poolUtilization0BigInt!

Pool utilization token0

poolUtilization1BigInt!

Pool utilization token1

OptionRoll

FieldArgumentTypeDescription
idID!
hashString!
logIndexBigInt!
eventTypeEventType!
fromString!
toString!
blockNumberBigInt!
timestampBigInt!
gasUsedBigInt!
gasPriceBigInt!
poolPool!
recipientAccount!

User that burnt the option

positionSizeBigInt!

The number of contracts burnt, expressed in terms of the asset

oldTokenIdBigInt!

TokenId of the burnt option

newTokenIdBigInt!

TokenId of the minted option

tickAtRollInt!

Tick at which the option was rolled

poolUtilizationsBigInt!

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

premiaBigInt!

LeftRight packing for the amount of premia collected for token0 and token1

panopticPoolPanopticPool!

PanopticPool roll is within (from event.address)

poolUtilization0BigInt!

Pool utilization token0

poolUtilization1BigInt!

Pool utilization token1

premium0BigInt!

Premium collected for token0

premium1BigInt!

Premium collected for token1

PanopticFactory

Panoptic Factory (deployer of PanopticPools).

FieldArgumentTypeDescription
idID!

Factory address

poolCountBigInt!

Amount of pools created

ownerID!

Current owner of the factory

PanopticPool

A pool deployed on top of an existing Uniswap Pool to facilitate perpetual options trading.

FieldArgumentTypeDescription
idID!

Pool address

txCountBigInt!

Total transaction count

token0Token!

Token0

token1Token!

Token1

feeTierBigInt!

Fee amount

collateral0Collateral!

Vault for token 0 collateral

collateral1Collateral!

Vault for token 1 collateral

underlyingPoolPool!

Underlying pool

mintVolume0BigDecimal!

Token0 moved for OptionMints.

mintVolume0USDBigDecimal!

Token0 moved for OptionMints in USD.

burnVolume0BigDecimal!

Token0 moved for OptionBurns.

burnVolume0USDBigDecimal!

Token0 moved for OptionBurns in USD.

totalVolume0BigDecimal!

Sum of OptionMint and OptionBurn token0 volume.

totalVolume0USDBigDecimal!

Sum of OptionMint and OptionBurn token0 volume in USD.

mintVolume1BigDecimal!

Token1 moved for OptionMints.

mintVolume1USDBigDecimal!

Token1 moved for OptionMints in USD.

burnVolume1BigDecimal!

Token1 moved for OptionBurns.

burnVolume1USDBigDecimal!

Token1 moved for OptionBurns in USD.

totalVolume1BigDecimal!

Sum of OptionMint and OptionBurn token1 volume in USD.

totalVolume1USDBigDecimal!

Sum of OptionMint and OptionBurn token1 volume in USD.

commissions0BigDecimal!

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.

commissions0USDBigDecimal!

All time token0 commissions converted to USD (calculated using token0's derivedETH and the bundle.ethPriceUSD values).

commissions1BigDecimal!

All time commissions earned from Collateral1.

commissions1USDBigDecimal!

All time token1 commissions converted to USD.

commissionsUSDBigDecimal!

All time commissions for both tokens converted to USD.

protocolLoss0BigDecimal!

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.

protocolLoss0USDBigDecimal!

All time protocol loss in token0 converted to USD (calculated using token0's derivedETH and the bundle.ethPriceUSD values).

protocolLoss1BigDecimal!

All time protocol loss in token1.

protocolLoss1USDBigDecimal!

All time protocol loss in token1 converted to USD.

protocolLossUSDBigDecimal!

All time protocol loss in both tokens converted to USD.

chunks[Chunk!]!

Link to all chunks of liquidity that are valid for options buying from this PanopticPool

skipInt
firstInt
orderByChunk_orderBy
orderDirectionOrderDirection
whereChunk_filter

PanopticPoolAccount

Tracks Panoption & PLP activity (collateral withdrawals and deposits) for a given Account & PanopticPool the Account has interacted with.

FieldArgumentTypeDescription
idID!

Address of account + '#' + address of panoptic pool

panopticPoolPanopticPool!

Panoptic pool address

accountAccount!

Account address

collateral0Collateral!

Collateral contract for Token0

collateral0SharesBigInt!

Number of Collateral0 shares this PanopticPoolAccount controls

collateral0AssetsBigInt!

Number of Collateral0 assets this PanopticPoolAccount controls

collateral1Collateral!

Collateral contract for Token1

collateral1SharesBigInt!

Number of Collateral1 shares this PanopticPoolAccount controls

collateral1AssetsBigInt!

Number of Collateral1 assets this PanopticPoolAccount controls

commissions0BigDecimal!

All time commissions paid to PLPs in Collateral0. Commissions increase with every OptionMint and collateral deposit.

commissions1BigDecimal!

All time commissions paid to PLPs in Collateral1.

sharePriceAtLastTransfer0BigDecimal!

Collateral0 share price at time of last transfer (an internal bookeeping mechanism to keep track of total commissions this account has earned as a PLP).

sharePriceAtLastTransfer1BigDecimal!

See sharePriceAtLastTransfer0.

commissionsSinceLastTransfer0BigDecimal!

Commissions earned in token0 since this account's last share transfer event (shares get transferred when depositing or withdrawing collateral, burning or minting an option, or directly sending share tokens).

commissionsSinceLastTransfer1BigDecimal!

Same as commissionsSinceLastTransfer, but in token1.

isLiquidatedInt!

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

skipInt
firstInt
orderByAccountBalance_orderBy
orderDirectionOrderDirection
whereAccountBalance_filter

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).

FieldArgumentTypeDescription
idID!

Timestamp rounded to current day combined with panoptic pool id

panopticPoolPanopticPool!

Pointer to Panoptic Pool

dateInt!

Timestamp rounded to current day by dividing by 86400

mintVolume0BigDecimal!

Token0 moved for OptionMints.

mintVolume0USDBigDecimal!

Token0 moved for OptionMints in USD.

burnVolume0BigDecimal!

Token0 moved for OptionBurns.

burnVolume0USDBigDecimal!

Token0 moved for OptionBurns in USD.

totalVolume0BigDecimal!

Sum of OptionMint and OptionBurn token0 volume.

totalVolume0USDBigDecimal!

Sum of OptionMint and OptionBurn token0 volume in USD.

mintVolume1BigDecimal!

Token1 moved for OptionMints.

mintVolume1USDBigDecimal!

Token1 moved for OptionMints in USD.

burnVolume1BigDecimal!

Token1 moved for OptionBurns.

burnVolume1USDBigDecimal!

Token1 moved for OptionBurns in USD.

totalVolume1BigDecimal!

Sum of OptionMint and OptionBurn token1 volume in USD.

totalVolume1USDBigDecimal!

Sum of OptionMint and OptionBurn token1 volume in USD.

commissions0BigDecimal!

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.

commissions0USDBigDecimal!

All time token0 commissions converted to USD (calculated using token0's derivedETH and the bundle.ethPriceUSD values).

commissions1BigDecimal!

All time commissions earned from Collateral1.

commissions1USDBigDecimal!

All time token1 commissions converted to USD.

commissionsUSDBigDecimal!

All time commissions for both tokens converted to USD.

Pool

Underlying pool (e.g. Uniswap V3 Pool)

FieldArgumentTypeDescription
idID!

Pool address

poolIdString

Panoptic identifier of uniswap pool

feeTierBigInt!

Fee amount

tickSpacingBigInt!

Min space between ticks

token0Token!

Token0

token1Token!

Token1

txCountBigInt!

Total transaction count

liquidityBigInt!

In range liquidity

sqrtPriceBigInt!

Current price tracker

tickBigInt

Current tick. May be null if pool has not been initialized.

tickLastUpdateTimestampBigInt!

Timestamp of the last time this tick was updated

tickLastUpdateBlockNumberBigInt!

Block number of the last time this tick was updated

poolHourData[PoolHourData!]!

Snapshots of PoolHourData

skipInt
firstInt
orderByPoolHourData_orderBy
orderDirectionOrderDirection
wherePoolHourData_filter
poolDayData[PoolDayData!]!

Snapshots of PoolDayData

skipInt
firstInt
orderByPoolDayData_orderBy
orderDirectionOrderDirection
wherePoolDayData_filter
token0PriceBigDecimal!

token0 per token1

token1PriceBigDecimal!

Token1 per token0

totalValueLockedToken0BigDecimal!

Total token 0 across all ticks

totalValueLockedToken1BigDecimal!

Total token 1 across all ticks

totalValueLockedETHBigDecimal!

Tvl derived ETH (necessary for tvlUSD using uni's implementation)

totalValueLockedUSDBigDecimal!

Tvl USD

panopticPoolPanopticPool

Associated PanopticPool. Null if not created yet

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.

FieldArgumentTypeDescription
idID!

Timestamp rounded to current day combined with pool id

poolPool!

Pointer to Pool

dateInt!

Timestamp rounded to current day by dividing by 86400

txCountBigInt!

Number of transactions during period

liquidityBigInt!

In range liquidity at end of period

token0PriceBigDecimal!

Price of token0 - derived from sqrtPrice

token1PriceBigDecimal!

Price of token1 - derived from sqrtPrice

volumeToken0BigDecimal!

Volume in token0

volumeToken1BigDecimal!

Volume in token1

volumeUSDBigDecimal!

Volume in USD

feesUSDBigDecimal!

Fees in USD

openBigDecimal!

Opening price of token0

highBigDecimal!

High price of token0

lowBigDecimal!

Low price of token0

closeBigDecimal!

Close price of token0

PoolHourData

FieldArgumentTypeDescription
idID!

Format: pool address + # + timestamp

poolPool!

Pointer to pool

txCountBigInt!

Number of transactions during period

liquidityBigInt!

In range liquidity at end of period

token0PriceBigDecimal!

Price of token0 - derived from sqrtPrice

token1PriceBigDecimal!

Price of token1 - derived from sqrtPrice

volumeToken0BigDecimal!

Volume in token0

volumeToken1BigDecimal!

Volume in token1

volumeUSDBigDecimal!

Volume in USD

openBigDecimal!

Opening price of token0

highBigDecimal!

High price of token0

lowBigDecimal!

Low price of token0

closeBigDecimal!

Close price of token0

periodStartUnixInt!

Unix timestamp for start of hour

PremiumSettled

Emitted when premium is settled independent of a mint/burn (e.g. during settleLongPremium)

FieldArgumentTypeDescription
idID!
hashString!
logIndexBigInt!
eventTypeEventType!
fromString!
toString!
blockNumberBigInt!
timestampBigInt!
gasUsedBigInt!
gasPriceBigInt!
poolPool!
userAccount!

Address of the owner of the settled position

tokenIdTokenId!

TokenId of the settled position

settledAmountsBigInt!

LeftRight encoding for the amount of premium settled for token0 (right slot) and token1 (left slot)

settledAmount0BigInt!

Amount settled for token0

settledAmount1BigInt!

Amount settled for token1

panopticPoolPanopticPool!

PanopticPool mint is within (from event.address)

Subscription

FieldArgumentTypeDescription
factoryFactory
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

factories[Factory!]!
skipInt
firstInt
orderByFactory_orderBy
orderDirectionOrderDirection
whereFactory_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

panopticFactoryPanopticFactory
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

panopticFactories[PanopticFactory!]!
skipInt
firstInt
orderByPanopticFactory_orderBy
orderDirectionOrderDirection
wherePanopticFactory_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

bundleBundle
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

bundles[Bundle!]!
skipInt
firstInt
orderByBundle_orderBy
orderDirectionOrderDirection
whereBundle_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

accountAccount
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

accounts[Account!]!
skipInt
firstInt
orderByAccount_orderBy
orderDirectionOrderDirection
whereAccount_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

accountBalanceAccountBalance
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

accountBalances[AccountBalance!]!
skipInt
firstInt
orderByAccountBalance_orderBy
orderDirectionOrderDirection
whereAccountBalance_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

panopticPoolAccountPanopticPoolAccount
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

panopticPoolAccounts[PanopticPoolAccount!]!
skipInt
firstInt
orderByPanopticPoolAccount_orderBy
orderDirectionOrderDirection
wherePanopticPoolAccount_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

tokenToken
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

tokens[Token!]!
skipInt
firstInt
orderByToken_orderBy
orderDirectionOrderDirection
whereToken_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

poolPool
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

pools[Pool!]!
skipInt
firstInt
orderByPool_orderBy
orderDirectionOrderDirection
wherePool_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

chunkChunk
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

chunks[Chunk!]!
skipInt
firstInt
orderByChunk_orderBy
orderDirectionOrderDirection
whereChunk_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

legLeg
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

legs[Leg!]!
skipInt
firstInt
orderByLeg_orderBy
orderDirectionOrderDirection
whereLeg_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

legLiquiditiesLegLiquidities
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

legLiquidities_collection[LegLiquidities!]!
skipInt
firstInt
orderByLegLiquidities_orderBy
orderDirectionOrderDirection
whereLegLiquidities_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

tokenIdTokenId
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

tokenIds[TokenId!]!
skipInt
firstInt
orderByTokenId_orderBy
orderDirectionOrderDirection
whereTokenId_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

collateralCollateral
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

collaterals[Collateral!]!
skipInt
firstInt
orderByCollateral_orderBy
orderDirectionOrderDirection
whereCollateral_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

panopticPoolPanopticPool
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

panopticPools[PanopticPool!]!
skipInt
firstInt
orderByPanopticPool_orderBy
orderDirectionOrderDirection
wherePanopticPool_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

poolDayDataPoolDayData
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

poolDayDatas[PoolDayData!]!
skipInt
firstInt
orderByPoolDayData_orderBy
orderDirectionOrderDirection
wherePoolDayData_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

panopticPoolDayDataPanopticPoolDayData
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

panopticPoolDayDatas[PanopticPoolDayData!]!
skipInt
firstInt
orderByPanopticPoolDayData_orderBy
orderDirectionOrderDirection
wherePanopticPoolDayData_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

collateralDayDataCollateralDayData
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

collateralDayDatas[CollateralDayData!]!
skipInt
firstInt
orderByCollateralDayData_orderBy
orderDirectionOrderDirection
whereCollateralDayData_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

poolHourDataPoolHourData
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

poolHourDatas[PoolHourData!]!
skipInt
firstInt
orderByPoolHourData_orderBy
orderDirectionOrderDirection
wherePoolHourData_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

mintMint
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

mints[Mint!]!
skipInt
firstInt
orderByMint_orderBy
orderDirectionOrderDirection
whereMint_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

burnBurn
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

burns[Burn!]!
skipInt
firstInt
orderByBurn_orderBy
orderDirectionOrderDirection
whereBurn_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

collectCollect
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

collects[Collect!]!
skipInt
firstInt
orderByCollect_orderBy
orderDirectionOrderDirection
whereCollect_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

tokenizedPositionBurntTokenizedPositionBurnt
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

tokenizedPositionBurnts[TokenizedPositionBurnt!]!
skipInt
firstInt
orderByTokenizedPositionBurnt_orderBy
orderDirectionOrderDirection
whereTokenizedPositionBurnt_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

tokenizedPositionMintedTokenizedPositionMinted
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

tokenizedPositionMinteds[TokenizedPositionMinted!]!
skipInt
firstInt
orderByTokenizedPositionMinted_orderBy
orderDirectionOrderDirection
whereTokenizedPositionMinted_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

tokenizedPositionRolledTokenizedPositionRolled
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

tokenizedPositionRolleds[TokenizedPositionRolled!]!
skipInt
firstInt
orderByTokenizedPositionRolled_orderBy
orderDirectionOrderDirection
whereTokenizedPositionRolled_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

collateralDepositCollateralDeposit
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

collateralDeposits[CollateralDeposit!]!
skipInt
firstInt
orderByCollateralDeposit_orderBy
orderDirectionOrderDirection
whereCollateralDeposit_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

collateralWithdrawCollateralWithdraw
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

collateralWithdraws[CollateralWithdraw!]!
skipInt
firstInt
orderByCollateralWithdraw_orderBy
orderDirectionOrderDirection
whereCollateralWithdraw_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

optionMintOptionMint
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

optionMints[OptionMint!]!
skipInt
firstInt
orderByOptionMint_orderBy
orderDirectionOrderDirection
whereOptionMint_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

optionBurnOptionBurn
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

optionBurns[OptionBurn!]!
skipInt
firstInt
orderByOptionBurn_orderBy
orderDirectionOrderDirection
whereOptionBurn_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

optionRollOptionRoll
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

optionRolls[OptionRoll!]!
skipInt
firstInt
orderByOptionRoll_orderBy
orderDirectionOrderDirection
whereOptionRoll_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

accountLiquidatedAccountLiquidated
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

accountLiquidateds[AccountLiquidated!]!
skipInt
firstInt
orderByAccountLiquidated_orderBy
orderDirectionOrderDirection
whereAccountLiquidated_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

forcedExerciseForcedExercise
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

forcedExercises[ForcedExercise!]!
skipInt
firstInt
orderByForcedExercise_orderBy
orderDirectionOrderDirection
whereForcedExercise_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

premiumSettledPremiumSettled
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

premiumSettleds[PremiumSettled!]!
skipInt
firstInt
orderByPremiumSettled_orderBy
orderDirectionOrderDirection
wherePremiumSettled_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

eventEvent
idID!
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

events[Event!]!
skipInt
firstInt
orderByEvent_orderBy
orderDirectionOrderDirection
whereEvent_filter
blockBlock_height

The block at which the query should be executed. Can either be a { hash: Bytes } value containing a block hash, a { number: Int } containing the block number, or a { number_gte: Int } containing the minimum block number. In the case of number_gte, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.

subgraphError_SubgraphErrorPolicy_!

Set to allow to receive data even if the subgraph has skipped over errors while syncing.

_meta_Meta_

Access to subgraph metadata

blockBlock_height

Token

FieldArgumentTypeDescription
idID!

Token address

decimalsBigInt!

Token decimals

nameString!

Token name

symbolString!

Token symbol

totalSupplyBigInt!

Token total supply

txCountBigInt!

Number of transactions across all pools that include this token

derivedETHBigDecimal!

Derived price in ETH, used to provide human readable price

whitelistPools[Pool!]!

Pools token is in that are white listed for USD pricing

skipInt
firstInt
orderByPool_orderBy
orderDirectionOrderDirection
wherePool_filter

TokenId

An ERC-1155 ID representing a position.

FieldArgumentTypeDescription
idID!

The ERC-1155 TokenId for this position. See the TokenId.sol for more information on its structure.

idHexStringString!

Hex stringified tokenId

poolPool!

Pool position is within

tokenCountBigInt!

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

skipInt
firstInt
orderByAccountBalance_orderBy
orderDirectionOrderDirection
whereAccountBalance_filter
legs[Leg!]!

Legs in this tokenId

skipInt
firstInt
orderByLeg_orderBy
orderDirectionOrderDirection
whereLeg_filter

TokenizedPositionBurnt

SFPM tokenized position burn

FieldArgumentTypeDescription
idID!
hashString!
logIndexBigInt!
eventTypeEventType!
fromString!
toString!
blockNumberBigInt!
timestampBigInt!
gasUsedBigInt!
gasPriceBigInt!
poolPool!
recipientAccount!

User that burnt the position

positionSizeBigInt!

The number of contracts burnt, expressed in terms of the asset

tokenIdTokenId!

TokenId of the burnt option

TokenizedPositionMinted

SFPM tokenized position mint

FieldArgumentTypeDescription
idID!
hashString!
logIndexBigInt!
eventTypeEventType!
fromString!
toString!
blockNumberBigInt!
timestampBigInt!
gasUsedBigInt!
gasPriceBigInt!
poolPool!
callerAccount!

User that minted the position

positionSizeBigInt!

The number of contracts minted, expressed in terms of the asset

tokenIdTokenId!

TokenId of the minted position

TokenizedPositionRolled

SFPM tokenized position roll

FieldArgumentTypeDescription
idID!
hashString!
logIndexBigInt!
eventTypeEventType!
fromString!
toString!
blockNumberBigInt!
timestampBigInt!
gasUsedBigInt!
gasPriceBigInt!
poolPool!
recipientAccount!

User that rolled the position

oldTokenIdTokenId!

TokenId of the burnt position

newTokenIdTokenId!

TokenId of the newly minted position

positionSizeBigInt!

The number of contracts rolled, expressed in terms of the asset

Block

FieldArgumentTypeDescription
hashBytes

The hash of the block

numberInt!

The block number

timestampInt

Integer representation of the timestamp stored in blocks for the chain

parentHashBytes

The hash of the parent block

Meta

The type for the top-level _meta field

FieldArgumentTypeDescription
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

deploymentString!

The deployment ID

hasIndexingErrorsBoolean!

If true, the subgraph encountered indexing errors at some past block

Inputs

AccountBalance_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
ownerString
owner_notString
owner_gtString
owner_ltString
owner_gteString
owner_lteString
owner_in[String!]
owner_not_in[String!]
owner_containsString
owner_contains_nocaseString
owner_not_containsString
owner_not_contains_nocaseString
owner_starts_withString
owner_starts_with_nocaseString
owner_not_starts_withString
owner_not_starts_with_nocaseString
owner_ends_withString
owner_ends_with_nocaseString
owner_not_ends_withString
owner_not_ends_with_nocaseString
owner_Account_filter
senderString
sender_notString
sender_gtString
sender_ltString
sender_gteString
sender_lteString
sender_in[String!]
sender_not_in[String!]
sender_containsString
sender_contains_nocaseString
sender_not_containsString
sender_not_contains_nocaseString
sender_starts_withString
sender_starts_with_nocaseString
sender_not_starts_withString
sender_not_starts_with_nocaseString
sender_ends_withString
sender_ends_with_nocaseString
sender_not_ends_withString
sender_not_ends_with_nocaseString
sender_Account_filter
tokenIdString
tokenId_notString
tokenId_gtString
tokenId_ltString
tokenId_gteString
tokenId_lteString
tokenId_in[String!]
tokenId_not_in[String!]
tokenId_containsString
tokenId_contains_nocaseString
tokenId_not_containsString
tokenId_not_contains_nocaseString
tokenId_starts_withString
tokenId_starts_with_nocaseString
tokenId_not_starts_withString
tokenId_not_starts_with_nocaseString
tokenId_ends_withString
tokenId_ends_with_nocaseString
tokenId_not_ends_withString
tokenId_not_ends_with_nocaseString
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
tokenCountBigInt
tokenCount_notBigInt
tokenCount_gtBigInt
tokenCount_ltBigInt
tokenCount_gteBigInt
tokenCount_lteBigInt
tokenCount_in[BigInt!]
tokenCount_not_in[BigInt!]
positionSizeBigInt
positionSize_notBigInt
positionSize_gtBigInt
positionSize_ltBigInt
positionSize_gteBigInt
positionSize_lteBigInt
positionSize_in[BigInt!]
positionSize_not_in[BigInt!]
panopticPoolAccountString
panopticPoolAccount_notString
panopticPoolAccount_gtString
panopticPoolAccount_ltString
panopticPoolAccount_gteString
panopticPoolAccount_lteString
panopticPoolAccount_in[String!]
panopticPoolAccount_not_in[String!]
panopticPoolAccount_containsString
panopticPoolAccount_contains_nocaseString
panopticPoolAccount_not_containsString
panopticPoolAccount_not_contains_nocaseString
panopticPoolAccount_starts_withString
panopticPoolAccount_starts_with_nocaseString
panopticPoolAccount_not_starts_withString
panopticPoolAccount_not_starts_with_nocaseString
panopticPoolAccount_ends_withString
panopticPoolAccount_ends_with_nocaseString
panopticPoolAccount_not_ends_withString
panopticPoolAccount_not_ends_with_nocaseString
panopticPoolAccount_PanopticPoolAccount_filter
txnOpenedString
txnOpened_notString
txnOpened_gtString
txnOpened_ltString
txnOpened_gteString
txnOpened_lteString
txnOpened_in[String!]
txnOpened_not_in[String!]
txnOpened_containsString
txnOpened_contains_nocaseString
txnOpened_not_containsString
txnOpened_not_contains_nocaseString
txnOpened_starts_withString
txnOpened_starts_with_nocaseString
txnOpened_not_starts_withString
txnOpened_not_starts_with_nocaseString
txnOpened_ends_withString
txnOpened_ends_with_nocaseString
txnOpened_not_ends_withString
txnOpened_not_ends_with_nocaseString
txnOpened_Event_filter
txnClosedString
txnClosed_notString
txnClosed_gtString
txnClosed_ltString
txnClosed_gteString
txnClosed_lteString
txnClosed_in[String!]
txnClosed_not_in[String!]
txnClosed_containsString
txnClosed_contains_nocaseString
txnClosed_not_containsString
txnClosed_not_contains_nocaseString
txnClosed_starts_withString
txnClosed_starts_with_nocaseString
txnClosed_not_starts_withString
txnClosed_not_starts_with_nocaseString
txnClosed_ends_withString
txnClosed_ends_with_nocaseString
txnClosed_not_ends_withString
txnClosed_not_ends_with_nocaseString
txnClosed_Event_filter
isOpenInt
isOpen_notInt
isOpen_gtInt
isOpen_ltInt
isOpen_gteInt
isOpen_lteInt
isOpen_in[Int!]
isOpen_not_in[Int!]
createdTimestampBigInt
createdTimestamp_notBigInt
createdTimestamp_gtBigInt
createdTimestamp_ltBigInt
createdTimestamp_gteBigInt
createdTimestamp_lteBigInt
createdTimestamp_in[BigInt!]
createdTimestamp_not_in[BigInt!]
createdBlockNumberBigInt
createdBlockNumber_notBigInt
createdBlockNumber_gtBigInt
createdBlockNumber_ltBigInt
createdBlockNumber_gteBigInt
createdBlockNumber_lteBigInt
createdBlockNumber_in[BigInt!]
createdBlockNumber_not_in[BigInt!]
closedTimestampBigInt
closedTimestamp_notBigInt
closedTimestamp_gtBigInt
closedTimestamp_ltBigInt
closedTimestamp_gteBigInt
closedTimestamp_lteBigInt
closedTimestamp_in[BigInt!]
closedTimestamp_not_in[BigInt!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[AccountBalance_filter]
or[AccountBalance_filter]

AccountLiquidated_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
hashString
hash_notString
hash_gtString
hash_ltString
hash_gteString
hash_lteString
hash_in[String!]
hash_not_in[String!]
hash_containsString
hash_contains_nocaseString
hash_not_containsString
hash_not_contains_nocaseString
hash_starts_withString
hash_starts_with_nocaseString
hash_not_starts_withString
hash_not_starts_with_nocaseString
hash_ends_withString
hash_ends_with_nocaseString
hash_not_ends_withString
hash_not_ends_with_nocaseString
logIndexBigInt
logIndex_notBigInt
logIndex_gtBigInt
logIndex_ltBigInt
logIndex_gteBigInt
logIndex_lteBigInt
logIndex_in[BigInt!]
logIndex_not_in[BigInt!]
eventTypeEventType
eventType_notEventType
eventType_in[EventType!]
eventType_not_in[EventType!]
fromString
from_notString
from_gtString
from_ltString
from_gteString
from_lteString
from_in[String!]
from_not_in[String!]
from_containsString
from_contains_nocaseString
from_not_containsString
from_not_contains_nocaseString
from_starts_withString
from_starts_with_nocaseString
from_not_starts_withString
from_not_starts_with_nocaseString
from_ends_withString
from_ends_with_nocaseString
from_not_ends_withString
from_not_ends_with_nocaseString
toString
to_notString
to_gtString
to_ltString
to_gteString
to_lteString
to_in[String!]
to_not_in[String!]
to_containsString
to_contains_nocaseString
to_not_containsString
to_not_contains_nocaseString
to_starts_withString
to_starts_with_nocaseString
to_not_starts_withString
to_not_starts_with_nocaseString
to_ends_withString
to_ends_with_nocaseString
to_not_ends_withString
to_not_ends_with_nocaseString
blockNumberBigInt
blockNumber_notBigInt
blockNumber_gtBigInt
blockNumber_ltBigInt
blockNumber_gteBigInt
blockNumber_lteBigInt
blockNumber_in[BigInt!]
blockNumber_not_in[BigInt!]
timestampBigInt
timestamp_notBigInt
timestamp_gtBigInt
timestamp_ltBigInt
timestamp_gteBigInt
timestamp_lteBigInt
timestamp_in[BigInt!]
timestamp_not_in[BigInt!]
gasUsedBigInt
gasUsed_notBigInt
gasUsed_gtBigInt
gasUsed_ltBigInt
gasUsed_gteBigInt
gasUsed_lteBigInt
gasUsed_in[BigInt!]
gasUsed_not_in[BigInt!]
gasPriceBigInt
gasPrice_notBigInt
gasPrice_gtBigInt
gasPrice_ltBigInt
gasPrice_gteBigInt
gasPrice_lteBigInt
gasPrice_in[BigInt!]
gasPrice_not_in[BigInt!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
liquidatorString
liquidator_notString
liquidator_gtString
liquidator_ltString
liquidator_gteString
liquidator_lteString
liquidator_in[String!]
liquidator_not_in[String!]
liquidator_containsString
liquidator_contains_nocaseString
liquidator_not_containsString
liquidator_not_contains_nocaseString
liquidator_starts_withString
liquidator_starts_with_nocaseString
liquidator_not_starts_withString
liquidator_not_starts_with_nocaseString
liquidator_ends_withString
liquidator_ends_with_nocaseString
liquidator_not_ends_withString
liquidator_not_ends_with_nocaseString
liquidator_Account_filter
liquidateeString
liquidatee_notString
liquidatee_gtString
liquidatee_ltString
liquidatee_gteString
liquidatee_lteString
liquidatee_in[String!]
liquidatee_not_in[String!]
liquidatee_containsString
liquidatee_contains_nocaseString
liquidatee_not_containsString
liquidatee_not_contains_nocaseString
liquidatee_starts_withString
liquidatee_starts_with_nocaseString
liquidatee_not_starts_withString
liquidatee_not_starts_with_nocaseString
liquidatee_ends_withString
liquidatee_ends_with_nocaseString
liquidatee_not_ends_withString
liquidatee_not_ends_with_nocaseString
liquidatee_Account_filter
bonusAmountsBigInt
bonusAmounts_notBigInt
bonusAmounts_gtBigInt
bonusAmounts_ltBigInt
bonusAmounts_gteBigInt
bonusAmounts_lteBigInt
bonusAmounts_in[BigInt!]
bonusAmounts_not_in[BigInt!]
liquidationBonus0BigInt
liquidationBonus0_notBigInt
liquidationBonus0_gtBigInt
liquidationBonus0_ltBigInt
liquidationBonus0_gteBigInt
liquidationBonus0_lteBigInt
liquidationBonus0_in[BigInt!]
liquidationBonus0_not_in[BigInt!]
liquidationBonus1BigInt
liquidationBonus1_notBigInt
liquidationBonus1_gtBigInt
liquidationBonus1_ltBigInt
liquidationBonus1_gteBigInt
liquidationBonus1_lteBigInt
liquidationBonus1_in[BigInt!]
liquidationBonus1_not_in[BigInt!]
liquidationBonusUSDBigDecimal
liquidationBonusUSD_notBigDecimal
liquidationBonusUSD_gtBigDecimal
liquidationBonusUSD_ltBigDecimal
liquidationBonusUSD_gteBigDecimal
liquidationBonusUSD_lteBigDecimal
liquidationBonusUSD_in[BigDecimal!]
liquidationBonusUSD_not_in[BigDecimal!]
tickAtInt
tickAt_notInt
tickAt_gtInt
tickAt_ltInt
tickAt_gteInt
tickAt_lteInt
tickAt_in[Int!]
tickAt_not_in[Int!]
panopticPoolString
panopticPool_notString
panopticPool_gtString
panopticPool_ltString
panopticPool_gteString
panopticPool_lteString
panopticPool_in[String!]
panopticPool_not_in[String!]
panopticPool_containsString
panopticPool_contains_nocaseString
panopticPool_not_containsString
panopticPool_not_contains_nocaseString
panopticPool_starts_withString
panopticPool_starts_with_nocaseString
panopticPool_not_starts_withString
panopticPool_not_starts_with_nocaseString
panopticPool_ends_withString
panopticPool_ends_with_nocaseString
panopticPool_not_ends_withString
panopticPool_not_ends_with_nocaseString
panopticPool_PanopticPool_filter
optionBurns_OptionBurn_filter
_change_blockBlockChangedFilter

Filter for the block changed event.

and[AccountLiquidated_filter]
or[AccountLiquidated_filter]

Account_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
accountBalances_AccountBalance_filter
panopticPoolAccount_PanopticPoolAccount_filter
_change_blockBlockChangedFilter

Filter for the block changed event.

and[Account_filter]
or[Account_filter]

BlockChangedFilter

FieldTypeDescription
number_gteInt!

Block_height

FieldTypeDescription
hashBytes
numberInt
number_gteInt

Bundle_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
ethPriceUSDBigDecimal
ethPriceUSD_notBigDecimal
ethPriceUSD_gtBigDecimal
ethPriceUSD_ltBigDecimal
ethPriceUSD_gteBigDecimal
ethPriceUSD_lteBigDecimal
ethPriceUSD_in[BigDecimal!]
ethPriceUSD_not_in[BigDecimal!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[Bundle_filter]
or[Bundle_filter]

Burn_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
hashString
hash_notString
hash_gtString
hash_ltString
hash_gteString
hash_lteString
hash_in[String!]
hash_not_in[String!]
hash_containsString
hash_contains_nocaseString
hash_not_containsString
hash_not_contains_nocaseString
hash_starts_withString
hash_starts_with_nocaseString
hash_not_starts_withString
hash_not_starts_with_nocaseString
hash_ends_withString
hash_ends_with_nocaseString
hash_not_ends_withString
hash_not_ends_with_nocaseString
logIndexBigInt
logIndex_notBigInt
logIndex_gtBigInt
logIndex_ltBigInt
logIndex_gteBigInt
logIndex_lteBigInt
logIndex_in[BigInt!]
logIndex_not_in[BigInt!]
eventTypeEventType
eventType_notEventType
eventType_in[EventType!]
eventType_not_in[EventType!]
fromString
from_notString
from_gtString
from_ltString
from_gteString
from_lteString
from_in[String!]
from_not_in[String!]
from_containsString
from_contains_nocaseString
from_not_containsString
from_not_contains_nocaseString
from_starts_withString
from_starts_with_nocaseString
from_not_starts_withString
from_not_starts_with_nocaseString
from_ends_withString
from_ends_with_nocaseString
from_not_ends_withString
from_not_ends_with_nocaseString
toString
to_notString
to_gtString
to_ltString
to_gteString
to_lteString
to_in[String!]
to_not_in[String!]
to_containsString
to_contains_nocaseString
to_not_containsString
to_not_contains_nocaseString
to_starts_withString
to_starts_with_nocaseString
to_not_starts_withString
to_not_starts_with_nocaseString
to_ends_withString
to_ends_with_nocaseString
to_not_ends_withString
to_not_ends_with_nocaseString
blockNumberBigInt
blockNumber_notBigInt
blockNumber_gtBigInt
blockNumber_ltBigInt
blockNumber_gteBigInt
blockNumber_lteBigInt
blockNumber_in[BigInt!]
blockNumber_not_in[BigInt!]
timestampBigInt
timestamp_notBigInt
timestamp_gtBigInt
timestamp_ltBigInt
timestamp_gteBigInt
timestamp_lteBigInt
timestamp_in[BigInt!]
timestamp_not_in[BigInt!]
gasUsedBigInt
gasUsed_notBigInt
gasUsed_gtBigInt
gasUsed_ltBigInt
gasUsed_gteBigInt
gasUsed_lteBigInt
gasUsed_in[BigInt!]
gasUsed_not_in[BigInt!]
gasPriceBigInt
gasPrice_notBigInt
gasPrice_gtBigInt
gasPrice_ltBigInt
gasPrice_gteBigInt
gasPrice_lteBigInt
gasPrice_in[BigInt!]
gasPrice_not_in[BigInt!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
ownerString
owner_notString
owner_gtString
owner_ltString
owner_gteString
owner_lteString
owner_in[String!]
owner_not_in[String!]
owner_containsString
owner_contains_nocaseString
owner_not_containsString
owner_not_contains_nocaseString
owner_starts_withString
owner_starts_with_nocaseString
owner_not_starts_withString
owner_not_starts_with_nocaseString
owner_ends_withString
owner_ends_with_nocaseString
owner_not_ends_withString
owner_not_ends_with_nocaseString
owner_Account_filter
tickLowerInt
tickLower_notInt
tickLower_gtInt
tickLower_ltInt
tickLower_gteInt
tickLower_lteInt
tickLower_in[Int!]
tickLower_not_in[Int!]
tickUpperInt
tickUpper_notInt
tickUpper_gtInt
tickUpper_ltInt
tickUpper_gteInt
tickUpper_lteInt
tickUpper_in[Int!]
tickUpper_not_in[Int!]
amountBigInt
amount_notBigInt
amount_gtBigInt
amount_ltBigInt
amount_gteBigInt
amount_lteBigInt
amount_in[BigInt!]
amount_not_in[BigInt!]
amount0BigDecimal
amount0_notBigDecimal
amount0_gtBigDecimal
amount0_ltBigDecimal
amount0_gteBigDecimal
amount0_lteBigDecimal
amount0_in[BigDecimal!]
amount0_not_in[BigDecimal!]
amount1BigDecimal
amount1_notBigDecimal
amount1_gtBigDecimal
amount1_ltBigDecimal
amount1_gteBigDecimal
amount1_lteBigDecimal
amount1_in[BigDecimal!]
amount1_not_in[BigDecimal!]
token0String
token0_notString
token0_gtString
token0_ltString
token0_gteString
token0_lteString
token0_in[String!]
token0_not_in[String!]
token0_containsString
token0_contains_nocaseString
token0_not_containsString
token0_not_contains_nocaseString
token0_starts_withString
token0_starts_with_nocaseString
token0_not_starts_withString
token0_not_starts_with_nocaseString
token0_ends_withString
token0_ends_with_nocaseString
token0_not_ends_withString
token0_not_ends_with_nocaseString
token0_Token_filter
token1String
token1_notString
token1_gtString
token1_ltString
token1_gteString
token1_lteString
token1_in[String!]
token1_not_in[String!]
token1_containsString
token1_contains_nocaseString
token1_not_containsString
token1_not_contains_nocaseString
token1_starts_withString
token1_starts_with_nocaseString
token1_not_starts_withString
token1_not_starts_with_nocaseString
token1_ends_withString
token1_ends_with_nocaseString
token1_not_ends_withString
token1_not_ends_with_nocaseString
token1_Token_filter
_change_blockBlockChangedFilter

Filter for the block changed event.

and[Burn_filter]
or[Burn_filter]

Chunk_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
ownerString
owner_notString
owner_gtString
owner_ltString
owner_gteString
owner_lteString
owner_in[String!]
owner_not_in[String!]
owner_containsString
owner_contains_nocaseString
owner_not_containsString
owner_not_contains_nocaseString
owner_starts_withString
owner_starts_with_nocaseString
owner_not_starts_withString
owner_not_starts_with_nocaseString
owner_ends_withString
owner_ends_with_nocaseString
owner_not_ends_withString
owner_not_ends_with_nocaseString
owner_Account_filter
managerString
manager_notString
manager_gtString
manager_ltString
manager_gteString
manager_lteString
manager_in[String!]
manager_not_in[String!]
manager_containsString
manager_contains_nocaseString
manager_not_containsString
manager_not_contains_nocaseString
manager_starts_withString
manager_starts_with_nocaseString
manager_not_starts_withString
manager_not_starts_with_nocaseString
manager_ends_withString
manager_ends_with_nocaseString
manager_not_ends_withString
manager_not_ends_with_nocaseString
manager_Account_filter
tickLowerBigInt
tickLower_notBigInt
tickLower_gtBigInt
tickLower_ltBigInt
tickLower_gteBigInt
tickLower_lteBigInt
tickLower_in[BigInt!]
tickLower_not_in[BigInt!]
tickUpperBigInt
tickUpper_notBigInt
tickUpper_gtBigInt
tickUpper_ltBigInt
tickUpper_gteBigInt
tickUpper_lteBigInt
tickUpper_in[BigInt!]
tickUpper_not_in[BigInt!]
strikeBigInt
strike_notBigInt
strike_gtBigInt
strike_ltBigInt
strike_gteBigInt
strike_lteBigInt
strike_in[BigInt!]
strike_not_in[BigInt!]
widthBigInt
width_notBigInt
width_gtBigInt
width_ltBigInt
width_gteBigInt
width_lteBigInt
width_in[BigInt!]
width_not_in[BigInt!]
tokenTypeBigInt
tokenType_notBigInt
tokenType_gtBigInt
tokenType_ltBigInt
tokenType_gteBigInt
tokenType_lteBigInt
tokenType_in[BigInt!]
tokenType_not_in[BigInt!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
panopticPoolString
panopticPool_notString
panopticPool_gtString
panopticPool_ltString
panopticPool_gteString
panopticPool_lteString
panopticPool_in[String!]
panopticPool_not_in[String!]
panopticPool_containsString
panopticPool_contains_nocaseString
panopticPool_not_containsString
panopticPool_not_contains_nocaseString
panopticPool_starts_withString
panopticPool_starts_with_nocaseString
panopticPool_not_starts_withString
panopticPool_not_starts_with_nocaseString
panopticPool_ends_withString
panopticPool_ends_with_nocaseString
panopticPool_not_ends_withString
panopticPool_not_ends_with_nocaseString
panopticPool_PanopticPool_filter
netLiquidityBigInt
netLiquidity_notBigInt
netLiquidity_gtBigInt
netLiquidity_ltBigInt
netLiquidity_gteBigInt
netLiquidity_lteBigInt
netLiquidity_in[BigInt!]
netLiquidity_not_in[BigInt!]
shortLiquidityBigInt
shortLiquidity_notBigInt
shortLiquidity_gtBigInt
shortLiquidity_ltBigInt
shortLiquidity_gteBigInt
shortLiquidity_lteBigInt
shortLiquidity_in[BigInt!]
shortLiquidity_not_in[BigInt!]
longLiquidityBigInt
longLiquidity_notBigInt
longLiquidity_gtBigInt
longLiquidity_ltBigInt
longLiquidity_gteBigInt
longLiquidity_lteBigInt
longLiquidity_in[BigInt!]
longLiquidity_not_in[BigInt!]
shortCountsBigInt
shortCounts_notBigInt
shortCounts_gtBigInt
shortCounts_ltBigInt
shortCounts_gteBigInt
shortCounts_lteBigInt
shortCounts_in[BigInt!]
shortCounts_not_in[BigInt!]
longCountsBigInt
longCounts_notBigInt
longCounts_gtBigInt
longCounts_ltBigInt
longCounts_gteBigInt
longCounts_lteBigInt
longCounts_in[BigInt!]
longCounts_not_in[BigInt!]
totalLiquidityBigInt
totalLiquidity_notBigInt
totalLiquidity_gtBigInt
totalLiquidity_ltBigInt
totalLiquidity_gteBigInt
totalLiquidity_lteBigInt
totalLiquidity_in[BigInt!]
totalLiquidity_not_in[BigInt!]
legs_Leg_filter
_change_blockBlockChangedFilter

Filter for the block changed event.

and[Chunk_filter]
or[Chunk_filter]

CollateralDayData_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
collateralString
collateral_notString
collateral_gtString
collateral_ltString
collateral_gteString
collateral_lteString
collateral_in[String!]
collateral_not_in[String!]
collateral_containsString
collateral_contains_nocaseString
collateral_not_containsString
collateral_not_contains_nocaseString
collateral_starts_withString
collateral_starts_with_nocaseString
collateral_not_starts_withString
collateral_not_starts_with_nocaseString
collateral_ends_withString
collateral_ends_with_nocaseString
collateral_not_ends_withString
collateral_not_ends_with_nocaseString
collateral_Collateral_filter
dateInt
date_notInt
date_gtInt
date_ltInt
date_gteInt
date_lteInt
date_in[Int!]
date_not_in[Int!]
totalSharesBigInt
totalShares_notBigInt
totalShares_gtBigInt
totalShares_ltBigInt
totalShares_gteBigInt
totalShares_lteBigInt
totalShares_in[BigInt!]
totalShares_not_in[BigInt!]
totalAssetsBigInt
totalAssets_notBigInt
totalAssets_gtBigInt
totalAssets_ltBigInt
totalAssets_gteBigInt
totalAssets_lteBigInt
totalAssets_in[BigInt!]
totalAssets_not_in[BigInt!]
sharePriceBigDecimal
sharePrice_notBigDecimal
sharePrice_gtBigDecimal
sharePrice_ltBigDecimal
sharePrice_gteBigDecimal
sharePrice_lteBigDecimal
sharePrice_in[BigDecimal!]
sharePrice_not_in[BigDecimal!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[CollateralDayData_filter]
or[CollateralDayData_filter]

CollateralDeposit_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
hashString
hash_notString
hash_gtString
hash_ltString
hash_gteString
hash_lteString
hash_in[String!]
hash_not_in[String!]
hash_containsString
hash_contains_nocaseString
hash_not_containsString
hash_not_contains_nocaseString
hash_starts_withString
hash_starts_with_nocaseString
hash_not_starts_withString
hash_not_starts_with_nocaseString
hash_ends_withString
hash_ends_with_nocaseString
hash_not_ends_withString
hash_not_ends_with_nocaseString
logIndexBigInt
logIndex_notBigInt
logIndex_gtBigInt
logIndex_ltBigInt
logIndex_gteBigInt
logIndex_lteBigInt
logIndex_in[BigInt!]
logIndex_not_in[BigInt!]
eventTypeEventType
eventType_notEventType
eventType_in[EventType!]
eventType_not_in[EventType!]
fromString
from_notString
from_gtString
from_ltString
from_gteString
from_lteString
from_in[String!]
from_not_in[String!]
from_containsString
from_contains_nocaseString
from_not_containsString
from_not_contains_nocaseString
from_starts_withString
from_starts_with_nocaseString
from_not_starts_withString
from_not_starts_with_nocaseString
from_ends_withString
from_ends_with_nocaseString
from_not_ends_withString
from_not_ends_with_nocaseString
toString
to_notString
to_gtString
to_ltString
to_gteString
to_lteString
to_in[String!]
to_not_in[String!]
to_containsString
to_contains_nocaseString
to_not_containsString
to_not_contains_nocaseString
to_starts_withString
to_starts_with_nocaseString
to_not_starts_withString
to_not_starts_with_nocaseString
to_ends_withString
to_ends_with_nocaseString
to_not_ends_withString
to_not_ends_with_nocaseString
blockNumberBigInt
blockNumber_notBigInt
blockNumber_gtBigInt
blockNumber_ltBigInt
blockNumber_gteBigInt
blockNumber_lteBigInt
blockNumber_in[BigInt!]
blockNumber_not_in[BigInt!]
timestampBigInt
timestamp_notBigInt
timestamp_gtBigInt
timestamp_ltBigInt
timestamp_gteBigInt
timestamp_lteBigInt
timestamp_in[BigInt!]
timestamp_not_in[BigInt!]
gasUsedBigInt
gasUsed_notBigInt
gasUsed_gtBigInt
gasUsed_ltBigInt
gasUsed_gteBigInt
gasUsed_lteBigInt
gasUsed_in[BigInt!]
gasUsed_not_in[BigInt!]
gasPriceBigInt
gasPrice_notBigInt
gasPrice_gtBigInt
gasPrice_ltBigInt
gasPrice_gteBigInt
gasPrice_lteBigInt
gasPrice_in[BigInt!]
gasPrice_not_in[BigInt!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
senderString
sender_notString
sender_gtString
sender_ltString
sender_gteString
sender_lteString
sender_in[String!]
sender_not_in[String!]
sender_containsString
sender_contains_nocaseString
sender_not_containsString
sender_not_contains_nocaseString
sender_starts_withString
sender_starts_with_nocaseString
sender_not_starts_withString
sender_not_starts_with_nocaseString
sender_ends_withString
sender_ends_with_nocaseString
sender_not_ends_withString
sender_not_ends_with_nocaseString
sender_Account_filter
ownerString
owner_notString
owner_gtString
owner_ltString
owner_gteString
owner_lteString
owner_in[String!]
owner_not_in[String!]
owner_containsString
owner_contains_nocaseString
owner_not_containsString
owner_not_contains_nocaseString
owner_starts_withString
owner_starts_with_nocaseString
owner_not_starts_withString
owner_not_starts_with_nocaseString
owner_ends_withString
owner_ends_with_nocaseString
owner_not_ends_withString
owner_not_ends_with_nocaseString
owner_Account_filter
assetsBigInt
assets_notBigInt
assets_gtBigInt
assets_ltBigInt
assets_gteBigInt
assets_lteBigInt
assets_in[BigInt!]
assets_not_in[BigInt!]
sharesBigInt
shares_notBigInt
shares_gtBigInt
shares_ltBigInt
shares_gteBigInt
shares_lteBigInt
shares_in[BigInt!]
shares_not_in[BigInt!]
collateralString
collateral_notString
collateral_gtString
collateral_ltString
collateral_gteString
collateral_lteString
collateral_in[String!]
collateral_not_in[String!]
collateral_containsString
collateral_contains_nocaseString
collateral_not_containsString
collateral_not_contains_nocaseString
collateral_starts_withString
collateral_starts_with_nocaseString
collateral_not_starts_withString
collateral_not_starts_with_nocaseString
collateral_ends_withString
collateral_ends_with_nocaseString
collateral_not_ends_withString
collateral_not_ends_with_nocaseString
collateral_Collateral_filter
tickAtDepositBigInt
tickAtDeposit_notBigInt
tickAtDeposit_gtBigInt
tickAtDeposit_ltBigInt
tickAtDeposit_gteBigInt
tickAtDeposit_lteBigInt
tickAtDeposit_in[BigInt!]
tickAtDeposit_not_in[BigInt!]
tokenDerivedEthAtDepositBigDecimal
tokenDerivedEthAtDeposit_notBigDecimal
tokenDerivedEthAtDeposit_gtBigDecimal
tokenDerivedEthAtDeposit_ltBigDecimal
tokenDerivedEthAtDeposit_gteBigDecimal
tokenDerivedEthAtDeposit_lteBigDecimal
tokenDerivedEthAtDeposit_in[BigDecimal!]
tokenDerivedEthAtDeposit_not_in[BigDecimal!]
ethPriceUSDAtDepositBigDecimal
ethPriceUSDAtDeposit_notBigDecimal
ethPriceUSDAtDeposit_gtBigDecimal
ethPriceUSDAtDeposit_ltBigDecimal
ethPriceUSDAtDeposit_gteBigDecimal
ethPriceUSDAtDeposit_lteBigDecimal
ethPriceUSDAtDeposit_in[BigDecimal!]
ethPriceUSDAtDeposit_not_in[BigDecimal!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[CollateralDeposit_filter]
or[CollateralDeposit_filter]

CollateralWithdraw_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
hashString
hash_notString
hash_gtString
hash_ltString
hash_gteString
hash_lteString
hash_in[String!]
hash_not_in[String!]
hash_containsString
hash_contains_nocaseString
hash_not_containsString
hash_not_contains_nocaseString
hash_starts_withString
hash_starts_with_nocaseString
hash_not_starts_withString
hash_not_starts_with_nocaseString
hash_ends_withString
hash_ends_with_nocaseString
hash_not_ends_withString
hash_not_ends_with_nocaseString
logIndexBigInt
logIndex_notBigInt
logIndex_gtBigInt
logIndex_ltBigInt
logIndex_gteBigInt
logIndex_lteBigInt
logIndex_in[BigInt!]
logIndex_not_in[BigInt!]
eventTypeEventType
eventType_notEventType
eventType_in[EventType!]
eventType_not_in[EventType!]
fromString
from_notString
from_gtString
from_ltString
from_gteString
from_lteString
from_in[String!]
from_not_in[String!]
from_containsString
from_contains_nocaseString
from_not_containsString
from_not_contains_nocaseString
from_starts_withString
from_starts_with_nocaseString
from_not_starts_withString
from_not_starts_with_nocaseString
from_ends_withString
from_ends_with_nocaseString
from_not_ends_withString
from_not_ends_with_nocaseString
toString
to_notString
to_gtString
to_ltString
to_gteString
to_lteString
to_in[String!]
to_not_in[String!]
to_containsString
to_contains_nocaseString
to_not_containsString
to_not_contains_nocaseString
to_starts_withString
to_starts_with_nocaseString
to_not_starts_withString
to_not_starts_with_nocaseString
to_ends_withString
to_ends_with_nocaseString
to_not_ends_withString
to_not_ends_with_nocaseString
blockNumberBigInt
blockNumber_notBigInt
blockNumber_gtBigInt
blockNumber_ltBigInt
blockNumber_gteBigInt
blockNumber_lteBigInt
blockNumber_in[BigInt!]
blockNumber_not_in[BigInt!]
timestampBigInt
timestamp_notBigInt
timestamp_gtBigInt
timestamp_ltBigInt
timestamp_gteBigInt
timestamp_lteBigInt
timestamp_in[BigInt!]
timestamp_not_in[BigInt!]
gasUsedBigInt
gasUsed_notBigInt
gasUsed_gtBigInt
gasUsed_ltBigInt
gasUsed_gteBigInt
gasUsed_lteBigInt
gasUsed_in[BigInt!]
gasUsed_not_in[BigInt!]
gasPriceBigInt
gasPrice_notBigInt
gasPrice_gtBigInt
gasPrice_ltBigInt
gasPrice_gteBigInt
gasPrice_lteBigInt
gasPrice_in[BigInt!]
gasPrice_not_in[BigInt!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
senderString
sender_notString
sender_gtString
sender_ltString
sender_gteString
sender_lteString
sender_in[String!]
sender_not_in[String!]
sender_containsString
sender_contains_nocaseString
sender_not_containsString
sender_not_contains_nocaseString
sender_starts_withString
sender_starts_with_nocaseString
sender_not_starts_withString
sender_not_starts_with_nocaseString
sender_ends_withString
sender_ends_with_nocaseString
sender_not_ends_withString
sender_not_ends_with_nocaseString
sender_Account_filter
receiverString
receiver_notString
receiver_gtString
receiver_ltString
receiver_gteString
receiver_lteString
receiver_in[String!]
receiver_not_in[String!]
receiver_containsString
receiver_contains_nocaseString
receiver_not_containsString
receiver_not_contains_nocaseString
receiver_starts_withString
receiver_starts_with_nocaseString
receiver_not_starts_withString
receiver_not_starts_with_nocaseString
receiver_ends_withString
receiver_ends_with_nocaseString
receiver_not_ends_withString
receiver_not_ends_with_nocaseString
receiver_Account_filter
ownerString
owner_notString
owner_gtString
owner_ltString
owner_gteString
owner_lteString
owner_in[String!]
owner_not_in[String!]
owner_containsString
owner_contains_nocaseString
owner_not_containsString
owner_not_contains_nocaseString
owner_starts_withString
owner_starts_with_nocaseString
owner_not_starts_withString
owner_not_starts_with_nocaseString
owner_ends_withString
owner_ends_with_nocaseString
owner_not_ends_withString
owner_not_ends_with_nocaseString
owner_Account_filter
assetsBigInt
assets_notBigInt
assets_gtBigInt
assets_ltBigInt
assets_gteBigInt
assets_lteBigInt
assets_in[BigInt!]
assets_not_in[BigInt!]
sharesBigInt
shares_notBigInt
shares_gtBigInt
shares_ltBigInt
shares_gteBigInt
shares_lteBigInt
shares_in[BigInt!]
shares_not_in[BigInt!]
collateralString
collateral_notString
collateral_gtString
collateral_ltString
collateral_gteString
collateral_lteString
collateral_in[String!]
collateral_not_in[String!]
collateral_containsString
collateral_contains_nocaseString
collateral_not_containsString
collateral_not_contains_nocaseString
collateral_starts_withString
collateral_starts_with_nocaseString
collateral_not_starts_withString
collateral_not_starts_with_nocaseString
collateral_ends_withString
collateral_ends_with_nocaseString
collateral_not_ends_withString
collateral_not_ends_with_nocaseString
collateral_Collateral_filter
tickAtWithdrawBigInt
tickAtWithdraw_notBigInt
tickAtWithdraw_gtBigInt
tickAtWithdraw_ltBigInt
tickAtWithdraw_gteBigInt
tickAtWithdraw_lteBigInt
tickAtWithdraw_in[BigInt!]
tickAtWithdraw_not_in[BigInt!]
tokenDerivedEthAtWithdrawBigDecimal
tokenDerivedEthAtWithdraw_notBigDecimal
tokenDerivedEthAtWithdraw_gtBigDecimal
tokenDerivedEthAtWithdraw_ltBigDecimal
tokenDerivedEthAtWithdraw_gteBigDecimal
tokenDerivedEthAtWithdraw_lteBigDecimal
tokenDerivedEthAtWithdraw_in[BigDecimal!]
tokenDerivedEthAtWithdraw_not_in[BigDecimal!]
ethPriceUSDAtWithdrawBigDecimal
ethPriceUSDAtWithdraw_notBigDecimal
ethPriceUSDAtWithdraw_gtBigDecimal
ethPriceUSDAtWithdraw_ltBigDecimal
ethPriceUSDAtWithdraw_gteBigDecimal
ethPriceUSDAtWithdraw_lteBigDecimal
ethPriceUSDAtWithdraw_in[BigDecimal!]
ethPriceUSDAtWithdraw_not_in[BigDecimal!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[CollateralWithdraw_filter]
or[CollateralWithdraw_filter]

Collateral_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
tokenString
token_notString
token_gtString
token_ltString
token_gteString
token_lteString
token_in[String!]
token_not_in[String!]
token_containsString
token_contains_nocaseString
token_not_containsString
token_not_contains_nocaseString
token_starts_withString
token_starts_with_nocaseString
token_not_starts_withString
token_not_starts_with_nocaseString
token_ends_withString
token_ends_with_nocaseString
token_not_ends_withString
token_not_ends_with_nocaseString
token_Token_filter
totalSharesBigInt
totalShares_notBigInt
totalShares_gtBigInt
totalShares_ltBigInt
totalShares_gteBigInt
totalShares_lteBigInt
totalShares_in[BigInt!]
totalShares_not_in[BigInt!]
totalAssetsBigInt
totalAssets_notBigInt
totalAssets_gtBigInt
totalAssets_ltBigInt
totalAssets_gteBigInt
totalAssets_lteBigInt
totalAssets_in[BigInt!]
totalAssets_not_in[BigInt!]
poolAssetsBigInt
poolAssets_notBigInt
poolAssets_gtBigInt
poolAssets_ltBigInt
poolAssets_gteBigInt
poolAssets_lteBigInt
poolAssets_in[BigInt!]
poolAssets_not_in[BigInt!]
inAMMBigInt
inAMM_notBigInt
inAMM_gtBigInt
inAMM_ltBigInt
inAMM_gteBigInt
inAMM_lteBigInt
inAMM_in[BigInt!]
inAMM_not_in[BigInt!]
poolUtilizationBigInt
poolUtilization_notBigInt
poolUtilization_gtBigInt
poolUtilization_ltBigInt
poolUtilization_gteBigInt
poolUtilization_lteBigInt
poolUtilization_in[BigInt!]
poolUtilization_not_in[BigInt!]
panopticPoolString
panopticPool_notString
panopticPool_gtString
panopticPool_ltString
panopticPool_gteString
panopticPool_lteString
panopticPool_in[String!]
panopticPool_not_in[String!]
panopticPool_containsString
panopticPool_contains_nocaseString
panopticPool_not_containsString
panopticPool_not_contains_nocaseString
panopticPool_starts_withString
panopticPool_starts_with_nocaseString
panopticPool_not_starts_withString
panopticPool_not_starts_with_nocaseString
panopticPool_ends_withString
panopticPool_ends_with_nocaseString
panopticPool_not_ends_withString
panopticPool_not_ends_with_nocaseString
panopticPool_PanopticPool_filter
indexBigInt
index_notBigInt
index_gtBigInt
index_ltBigInt
index_gteBigInt
index_lteBigInt
index_in[BigInt!]
index_not_in[BigInt!]
collateralDayData_CollateralDayData_filter
previousSharePriceBigDecimal
previousSharePrice_notBigDecimal
previousSharePrice_gtBigDecimal
previousSharePrice_ltBigDecimal
previousSharePrice_gteBigDecimal
previousSharePrice_lteBigDecimal
previousSharePrice_in[BigDecimal!]
previousSharePrice_not_in[BigDecimal!]
preLiquidationSharePriceBigDecimal
preLiquidationSharePrice_notBigDecimal
preLiquidationSharePrice_gtBigDecimal
preLiquidationSharePrice_ltBigDecimal
preLiquidationSharePrice_gteBigDecimal
preLiquidationSharePrice_lteBigDecimal
preLiquidationSharePrice_in[BigDecimal!]
preLiquidationSharePrice_not_in[BigDecimal!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[Collateral_filter]
or[Collateral_filter]

Collect_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
hashString
hash_notString
hash_gtString
hash_ltString
hash_gteString
hash_lteString
hash_in[String!]
hash_not_in[String!]
hash_containsString
hash_contains_nocaseString
hash_not_containsString
hash_not_contains_nocaseString
hash_starts_withString
hash_starts_with_nocaseString
hash_not_starts_withString
hash_not_starts_with_nocaseString
hash_ends_withString
hash_ends_with_nocaseString
hash_not_ends_withString
hash_not_ends_with_nocaseString
logIndexBigInt
logIndex_notBigInt
logIndex_gtBigInt
logIndex_ltBigInt
logIndex_gteBigInt
logIndex_lteBigInt
logIndex_in[BigInt!]
logIndex_not_in[BigInt!]
eventTypeEventType
eventType_notEventType
eventType_in[EventType!]
eventType_not_in[EventType!]
fromString
from_notString
from_gtString
from_ltString
from_gteString
from_lteString
from_in[String!]
from_not_in[String!]
from_containsString
from_contains_nocaseString
from_not_containsString
from_not_contains_nocaseString
from_starts_withString
from_starts_with_nocaseString
from_not_starts_withString
from_not_starts_with_nocaseString
from_ends_withString
from_ends_with_nocaseString
from_not_ends_withString
from_not_ends_with_nocaseString
toString
to_notString
to_gtString
to_ltString
to_gteString
to_lteString
to_in[String!]
to_not_in[String!]
to_containsString
to_contains_nocaseString
to_not_containsString
to_not_contains_nocaseString
to_starts_withString
to_starts_with_nocaseString
to_not_starts_withString
to_not_starts_with_nocaseString
to_ends_withString
to_ends_with_nocaseString
to_not_ends_withString
to_not_ends_with_nocaseString
blockNumberBigInt
blockNumber_notBigInt
blockNumber_gtBigInt
blockNumber_ltBigInt
blockNumber_gteBigInt
blockNumber_lteBigInt
blockNumber_in[BigInt!]
blockNumber_not_in[BigInt!]
timestampBigInt
timestamp_notBigInt
timestamp_gtBigInt
timestamp_ltBigInt
timestamp_gteBigInt
timestamp_lteBigInt
timestamp_in[BigInt!]
timestamp_not_in[BigInt!]
gasUsedBigInt
gasUsed_notBigInt
gasUsed_gtBigInt
gasUsed_ltBigInt
gasUsed_gteBigInt
gasUsed_lteBigInt
gasUsed_in[BigInt!]
gasUsed_not_in[BigInt!]
gasPriceBigInt
gasPrice_notBigInt
gasPrice_gtBigInt
gasPrice_ltBigInt
gasPrice_gteBigInt
gasPrice_lteBigInt
gasPrice_in[BigInt!]
gasPrice_not_in[BigInt!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
ownerString
owner_notString
owner_gtString
owner_ltString
owner_gteString
owner_lteString
owner_in[String!]
owner_not_in[String!]
owner_containsString
owner_contains_nocaseString
owner_not_containsString
owner_not_contains_nocaseString
owner_starts_withString
owner_starts_with_nocaseString
owner_not_starts_withString
owner_not_starts_with_nocaseString
owner_ends_withString
owner_ends_with_nocaseString
owner_not_ends_withString
owner_not_ends_with_nocaseString
owner_Account_filter
recipientString
recipient_notString
recipient_gtString
recipient_ltString
recipient_gteString
recipient_lteString
recipient_in[String!]
recipient_not_in[String!]
recipient_containsString
recipient_contains_nocaseString
recipient_not_containsString
recipient_not_contains_nocaseString
recipient_starts_withString
recipient_starts_with_nocaseString
recipient_not_starts_withString
recipient_not_starts_with_nocaseString
recipient_ends_withString
recipient_ends_with_nocaseString
recipient_not_ends_withString
recipient_not_ends_with_nocaseString
recipient_Account_filter
tickLowerInt
tickLower_notInt
tickLower_gtInt
tickLower_ltInt
tickLower_gteInt
tickLower_lteInt
tickLower_in[Int!]
tickLower_not_in[Int!]
tickUpperInt
tickUpper_notInt
tickUpper_gtInt
tickUpper_ltInt
tickUpper_gteInt
tickUpper_lteInt
tickUpper_in[Int!]
tickUpper_not_in[Int!]
amount0BigDecimal
amount0_notBigDecimal
amount0_gtBigDecimal
amount0_ltBigDecimal
amount0_gteBigDecimal
amount0_lteBigDecimal
amount0_in[BigDecimal!]
amount0_not_in[BigDecimal!]
amount1BigDecimal
amount1_notBigDecimal
amount1_gtBigDecimal
amount1_ltBigDecimal
amount1_gteBigDecimal
amount1_lteBigDecimal
amount1_in[BigDecimal!]
amount1_not_in[BigDecimal!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[Collect_filter]
or[Collect_filter]

Event_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
hashString
hash_notString
hash_gtString
hash_ltString
hash_gteString
hash_lteString
hash_in[String!]
hash_not_in[String!]
hash_containsString
hash_contains_nocaseString
hash_not_containsString
hash_not_contains_nocaseString
hash_starts_withString
hash_starts_with_nocaseString
hash_not_starts_withString
hash_not_starts_with_nocaseString
hash_ends_withString
hash_ends_with_nocaseString
hash_not_ends_withString
hash_not_ends_with_nocaseString
logIndexBigInt
logIndex_notBigInt
logIndex_gtBigInt
logIndex_ltBigInt
logIndex_gteBigInt
logIndex_lteBigInt
logIndex_in[BigInt!]
logIndex_not_in[BigInt!]
fromString
from_notString
from_gtString
from_ltString
from_gteString
from_lteString
from_in[String!]
from_not_in[String!]
from_containsString
from_contains_nocaseString
from_not_containsString
from_not_contains_nocaseString
from_starts_withString
from_starts_with_nocaseString
from_not_starts_withString
from_not_starts_with_nocaseString
from_ends_withString
from_ends_with_nocaseString
from_not_ends_withString
from_not_ends_with_nocaseString
toString
to_notString
to_gtString
to_ltString
to_gteString
to_lteString
to_in[String!]
to_not_in[String!]
to_containsString
to_contains_nocaseString
to_not_containsString
to_not_contains_nocaseString
to_starts_withString
to_starts_with_nocaseString
to_not_starts_withString
to_not_starts_with_nocaseString
to_ends_withString
to_ends_with_nocaseString
to_not_ends_withString
to_not_ends_with_nocaseString
blockNumberBigInt
blockNumber_notBigInt
blockNumber_gtBigInt
blockNumber_ltBigInt
blockNumber_gteBigInt
blockNumber_lteBigInt
blockNumber_in[BigInt!]
blockNumber_not_in[BigInt!]
timestampBigInt
timestamp_notBigInt
timestamp_gtBigInt
timestamp_ltBigInt
timestamp_gteBigInt
timestamp_lteBigInt
timestamp_in[BigInt!]
timestamp_not_in[BigInt!]
gasUsedBigInt
gasUsed_notBigInt
gasUsed_gtBigInt
gasUsed_ltBigInt
gasUsed_gteBigInt
gasUsed_lteBigInt
gasUsed_in[BigInt!]
gasUsed_not_in[BigInt!]
gasPriceBigInt
gasPrice_notBigInt
gasPrice_gtBigInt
gasPrice_ltBigInt
gasPrice_gteBigInt
gasPrice_lteBigInt
gasPrice_in[BigInt!]
gasPrice_not_in[BigInt!]
eventTypeEventType
eventType_notEventType
eventType_in[EventType!]
eventType_not_in[EventType!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
_change_blockBlockChangedFilter

Filter for the block changed event.

and[Event_filter]
or[Event_filter]

Factory_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
poolCountBigInt
poolCount_notBigInt
poolCount_gtBigInt
poolCount_ltBigInt
poolCount_gteBigInt
poolCount_lteBigInt
poolCount_in[BigInt!]
poolCount_not_in[BigInt!]
ownerID
owner_notID
owner_gtID
owner_ltID
owner_gteID
owner_lteID
owner_in[ID!]
owner_not_in[ID!]
opBackfilledBoolean
opBackfilled_notBoolean
opBackfilled_in[Boolean!]
opBackfilled_not_in[Boolean!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[Factory_filter]
or[Factory_filter]

ForcedExercise_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
hashString
hash_notString
hash_gtString
hash_ltString
hash_gteString
hash_lteString
hash_in[String!]
hash_not_in[String!]
hash_containsString
hash_contains_nocaseString
hash_not_containsString
hash_not_contains_nocaseString
hash_starts_withString
hash_starts_with_nocaseString
hash_not_starts_withString
hash_not_starts_with_nocaseString
hash_ends_withString
hash_ends_with_nocaseString
hash_not_ends_withString
hash_not_ends_with_nocaseString
logIndexBigInt
logIndex_notBigInt
logIndex_gtBigInt
logIndex_ltBigInt
logIndex_gteBigInt
logIndex_lteBigInt
logIndex_in[BigInt!]
logIndex_not_in[BigInt!]
eventTypeEventType
eventType_notEventType
eventType_in[EventType!]
eventType_not_in[EventType!]
fromString
from_notString
from_gtString
from_ltString
from_gteString
from_lteString
from_in[String!]
from_not_in[String!]
from_containsString
from_contains_nocaseString
from_not_containsString
from_not_contains_nocaseString
from_starts_withString
from_starts_with_nocaseString
from_not_starts_withString
from_not_starts_with_nocaseString
from_ends_withString
from_ends_with_nocaseString
from_not_ends_withString
from_not_ends_with_nocaseString
toString
to_notString
to_gtString
to_ltString
to_gteString
to_lteString
to_in[String!]
to_not_in[String!]
to_containsString
to_contains_nocaseString
to_not_containsString
to_not_contains_nocaseString
to_starts_withString
to_starts_with_nocaseString
to_not_starts_withString
to_not_starts_with_nocaseString
to_ends_withString
to_ends_with_nocaseString
to_not_ends_withString
to_not_ends_with_nocaseString
blockNumberBigInt
blockNumber_notBigInt
blockNumber_gtBigInt
blockNumber_ltBigInt
blockNumber_gteBigInt
blockNumber_lteBigInt
blockNumber_in[BigInt!]
blockNumber_not_in[BigInt!]
timestampBigInt
timestamp_notBigInt
timestamp_gtBigInt
timestamp_ltBigInt
timestamp_gteBigInt
timestamp_lteBigInt
timestamp_in[BigInt!]
timestamp_not_in[BigInt!]
gasUsedBigInt
gasUsed_notBigInt
gasUsed_gtBigInt
gasUsed_ltBigInt
gasUsed_gteBigInt
gasUsed_lteBigInt
gasUsed_in[BigInt!]
gasUsed_not_in[BigInt!]
gasPriceBigInt
gasPrice_notBigInt
gasPrice_gtBigInt
gasPrice_ltBigInt
gasPrice_gteBigInt
gasPrice_lteBigInt
gasPrice_in[BigInt!]
gasPrice_not_in[BigInt!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
exercisorString
exercisor_notString
exercisor_gtString
exercisor_ltString
exercisor_gteString
exercisor_lteString
exercisor_in[String!]
exercisor_not_in[String!]
exercisor_containsString
exercisor_contains_nocaseString
exercisor_not_containsString
exercisor_not_contains_nocaseString
exercisor_starts_withString
exercisor_starts_with_nocaseString
exercisor_not_starts_withString
exercisor_not_starts_with_nocaseString
exercisor_ends_withString
exercisor_ends_with_nocaseString
exercisor_not_ends_withString
exercisor_not_ends_with_nocaseString
exercisor_Account_filter
userString
user_notString
user_gtString
user_ltString
user_gteString
user_lteString
user_in[String!]
user_not_in[String!]
user_containsString
user_contains_nocaseString
user_not_containsString
user_not_contains_nocaseString
user_starts_withString
user_starts_with_nocaseString
user_not_starts_withString
user_not_starts_with_nocaseString
user_ends_withString
user_ends_with_nocaseString
user_not_ends_withString
user_not_ends_with_nocaseString
user_Account_filter
tokenIdBigInt
tokenId_notBigInt
tokenId_gtBigInt
tokenId_ltBigInt
tokenId_gteBigInt
tokenId_lteBigInt
tokenId_in[BigInt!]
tokenId_not_in[BigInt!]
exerciseFeeBigInt
exerciseFee_notBigInt
exerciseFee_gtBigInt
exerciseFee_ltBigInt
exerciseFee_gteBigInt
exerciseFee_lteBigInt
exerciseFee_in[BigInt!]
exerciseFee_not_in[BigInt!]
exerciseFee0BigInt
exerciseFee0_notBigInt
exerciseFee0_gtBigInt
exerciseFee0_ltBigInt
exerciseFee0_gteBigInt
exerciseFee0_lteBigInt
exerciseFee0_in[BigInt!]
exerciseFee0_not_in[BigInt!]
exerciseFee1BigInt
exerciseFee1_notBigInt
exerciseFee1_gtBigInt
exerciseFee1_ltBigInt
exerciseFee1_gteBigInt
exerciseFee1_lteBigInt
exerciseFee1_in[BigInt!]
exerciseFee1_not_in[BigInt!]
exerciseFeeUSDBigDecimal
exerciseFeeUSD_notBigDecimal
exerciseFeeUSD_gtBigDecimal
exerciseFeeUSD_ltBigDecimal
exerciseFeeUSD_gteBigDecimal
exerciseFeeUSD_lteBigDecimal
exerciseFeeUSD_in[BigDecimal!]
exerciseFeeUSD_not_in[BigDecimal!]
tickAtInt
tickAt_notInt
tickAt_gtInt
tickAt_ltInt
tickAt_gteInt
tickAt_lteInt
tickAt_in[Int!]
tickAt_not_in[Int!]
panopticPoolString
panopticPool_notString
panopticPool_gtString
panopticPool_ltString
panopticPool_gteString
panopticPool_lteString
panopticPool_in[String!]
panopticPool_not_in[String!]
panopticPool_containsString
panopticPool_contains_nocaseString
panopticPool_not_containsString
panopticPool_not_contains_nocaseString
panopticPool_starts_withString
panopticPool_starts_with_nocaseString
panopticPool_not_starts_withString
panopticPool_not_starts_with_nocaseString
panopticPool_ends_withString
panopticPool_ends_with_nocaseString
panopticPool_not_ends_withString
panopticPool_not_ends_with_nocaseString
panopticPool_PanopticPool_filter
optionBurn_OptionBurn_filter
_change_blockBlockChangedFilter

Filter for the block changed event.

and[ForcedExercise_filter]
or[ForcedExercise_filter]

LegLiquidities_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
legString
leg_notString
leg_gtString
leg_ltString
leg_gteString
leg_lteString
leg_in[String!]
leg_not_in[String!]
leg_containsString
leg_contains_nocaseString
leg_not_containsString
leg_not_contains_nocaseString
leg_starts_withString
leg_starts_with_nocaseString
leg_not_starts_withString
leg_not_starts_with_nocaseString
leg_ends_withString
leg_ends_with_nocaseString
leg_not_ends_withString
leg_not_ends_with_nocaseString
leg_Leg_filter
chunkString
chunk_notString
chunk_gtString
chunk_ltString
chunk_gteString
chunk_lteString
chunk_in[String!]
chunk_not_in[String!]
chunk_containsString
chunk_contains_nocaseString
chunk_not_containsString
chunk_not_contains_nocaseString
chunk_starts_withString
chunk_starts_with_nocaseString
chunk_not_starts_withString
chunk_not_starts_with_nocaseString
chunk_ends_withString
chunk_ends_with_nocaseString
chunk_not_ends_withString
chunk_not_ends_with_nocaseString
chunk_Chunk_filter
liquidityBigInt
liquidity_notBigInt
liquidity_gtBigInt
liquidity_ltBigInt
liquidity_gteBigInt
liquidity_lteBigInt
liquidity_in[BigInt!]
liquidity_not_in[BigInt!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[LegLiquidities_filter]
or[LegLiquidities_filter]

Leg_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
indexInt
index_notInt
index_gtInt
index_ltInt
index_gteInt
index_lteInt
index_in[Int!]
index_not_in[Int!]
idHexStringString
idHexString_notString
idHexString_gtString
idHexString_ltString
idHexString_gteString
idHexString_lteString
idHexString_in[String!]
idHexString_not_in[String!]
idHexString_containsString
idHexString_contains_nocaseString
idHexString_not_containsString
idHexString_not_contains_nocaseString
idHexString_starts_withString
idHexString_starts_with_nocaseString
idHexString_not_starts_withString
idHexString_not_starts_with_nocaseString
idHexString_ends_withString
idHexString_ends_with_nocaseString
idHexString_not_ends_withString
idHexString_not_ends_with_nocaseString
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
optionRatioBigInt
optionRatio_notBigInt
optionRatio_gtBigInt
optionRatio_ltBigInt
optionRatio_gteBigInt
optionRatio_lteBigInt
optionRatio_in[BigInt!]
optionRatio_not_in[BigInt!]
assetBigInt
asset_notBigInt
asset_gtBigInt
asset_ltBigInt
asset_gteBigInt
asset_lteBigInt
asset_in[BigInt!]
asset_not_in[BigInt!]
tokenTypeBigInt
tokenType_notBigInt
tokenType_gtBigInt
tokenType_ltBigInt
tokenType_gteBigInt
tokenType_lteBigInt
tokenType_in[BigInt!]
tokenType_not_in[BigInt!]
isLongBigInt
isLong_notBigInt
isLong_gtBigInt
isLong_ltBigInt
isLong_gteBigInt
isLong_lteBigInt
isLong_in[BigInt!]
isLong_not_in[BigInt!]
riskPartnerBigInt
riskPartner_notBigInt
riskPartner_gtBigInt
riskPartner_ltBigInt
riskPartner_gteBigInt
riskPartner_lteBigInt
riskPartner_in[BigInt!]
riskPartner_not_in[BigInt!]
strikeBigInt
strike_notBigInt
strike_gtBigInt
strike_ltBigInt
strike_gteBigInt
strike_lteBigInt
strike_in[BigInt!]
strike_not_in[BigInt!]
widthBigInt
width_notBigInt
width_gtBigInt
width_ltBigInt
width_gteBigInt
width_lteBigInt
width_in[BigInt!]
width_not_in[BigInt!]
chunkString
chunk_notString
chunk_gtString
chunk_ltString
chunk_gteString
chunk_lteString
chunk_in[String!]
chunk_not_in[String!]
chunk_containsString
chunk_contains_nocaseString
chunk_not_containsString
chunk_not_contains_nocaseString
chunk_starts_withString
chunk_starts_with_nocaseString
chunk_not_starts_withString
chunk_not_starts_with_nocaseString
chunk_ends_withString
chunk_ends_with_nocaseString
chunk_not_ends_withString
chunk_not_ends_with_nocaseString
chunk_Chunk_filter
legCountBigInt
legCount_notBigInt
legCount_gtBigInt
legCount_ltBigInt
legCount_gteBigInt
legCount_lteBigInt
legCount_in[BigInt!]
legCount_not_in[BigInt!]
tokenIds_TokenId_filter
_change_blockBlockChangedFilter

Filter for the block changed event.

and[Leg_filter]
or[Leg_filter]

Mint_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
hashString
hash_notString
hash_gtString
hash_ltString
hash_gteString
hash_lteString
hash_in[String!]
hash_not_in[String!]
hash_containsString
hash_contains_nocaseString
hash_not_containsString
hash_not_contains_nocaseString
hash_starts_withString
hash_starts_with_nocaseString
hash_not_starts_withString
hash_not_starts_with_nocaseString
hash_ends_withString
hash_ends_with_nocaseString
hash_not_ends_withString
hash_not_ends_with_nocaseString
logIndexBigInt
logIndex_notBigInt
logIndex_gtBigInt
logIndex_ltBigInt
logIndex_gteBigInt
logIndex_lteBigInt
logIndex_in[BigInt!]
logIndex_not_in[BigInt!]
eventTypeEventType
eventType_notEventType
eventType_in[EventType!]
eventType_not_in[EventType!]
fromString
from_notString
from_gtString
from_ltString
from_gteString
from_lteString
from_in[String!]
from_not_in[String!]
from_containsString
from_contains_nocaseString
from_not_containsString
from_not_contains_nocaseString
from_starts_withString
from_starts_with_nocaseString
from_not_starts_withString
from_not_starts_with_nocaseString
from_ends_withString
from_ends_with_nocaseString
from_not_ends_withString
from_not_ends_with_nocaseString
toString
to_notString
to_gtString
to_ltString
to_gteString
to_lteString
to_in[String!]
to_not_in[String!]
to_containsString
to_contains_nocaseString
to_not_containsString
to_not_contains_nocaseString
to_starts_withString
to_starts_with_nocaseString
to_not_starts_withString
to_not_starts_with_nocaseString
to_ends_withString
to_ends_with_nocaseString
to_not_ends_withString
to_not_ends_with_nocaseString
blockNumberBigInt
blockNumber_notBigInt
blockNumber_gtBigInt
blockNumber_ltBigInt
blockNumber_gteBigInt
blockNumber_lteBigInt
blockNumber_in[BigInt!]
blockNumber_not_in[BigInt!]
timestampBigInt
timestamp_notBigInt
timestamp_gtBigInt
timestamp_ltBigInt
timestamp_gteBigInt
timestamp_lteBigInt
timestamp_in[BigInt!]
timestamp_not_in[BigInt!]
gasUsedBigInt
gasUsed_notBigInt
gasUsed_gtBigInt
gasUsed_ltBigInt
gasUsed_gteBigInt
gasUsed_lteBigInt
gasUsed_in[BigInt!]
gasUsed_not_in[BigInt!]
gasPriceBigInt
gasPrice_notBigInt
gasPrice_gtBigInt
gasPrice_ltBigInt
gasPrice_gteBigInt
gasPrice_lteBigInt
gasPrice_in[BigInt!]
gasPrice_not_in[BigInt!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
senderString
sender_notString
sender_gtString
sender_ltString
sender_gteString
sender_lteString
sender_in[String!]
sender_not_in[String!]
sender_containsString
sender_contains_nocaseString
sender_not_containsString
sender_not_contains_nocaseString
sender_starts_withString
sender_starts_with_nocaseString
sender_not_starts_withString
sender_not_starts_with_nocaseString
sender_ends_withString
sender_ends_with_nocaseString
sender_not_ends_withString
sender_not_ends_with_nocaseString
sender_Account_filter
ownerString
owner_notString
owner_gtString
owner_ltString
owner_gteString
owner_lteString
owner_in[String!]
owner_not_in[String!]
owner_containsString
owner_contains_nocaseString
owner_not_containsString
owner_not_contains_nocaseString
owner_starts_withString
owner_starts_with_nocaseString
owner_not_starts_withString
owner_not_starts_with_nocaseString
owner_ends_withString
owner_ends_with_nocaseString
owner_not_ends_withString
owner_not_ends_with_nocaseString
owner_Account_filter
tickLowerInt
tickLower_notInt
tickLower_gtInt
tickLower_ltInt
tickLower_gteInt
tickLower_lteInt
tickLower_in[Int!]
tickLower_not_in[Int!]
tickUpperInt
tickUpper_notInt
tickUpper_gtInt
tickUpper_ltInt
tickUpper_gteInt
tickUpper_lteInt
tickUpper_in[Int!]
tickUpper_not_in[Int!]
amountBigInt
amount_notBigInt
amount_gtBigInt
amount_ltBigInt
amount_gteBigInt
amount_lteBigInt
amount_in[BigInt!]
amount_not_in[BigInt!]
amount0BigDecimal
amount0_notBigDecimal
amount0_gtBigDecimal
amount0_ltBigDecimal
amount0_gteBigDecimal
amount0_lteBigDecimal
amount0_in[BigDecimal!]
amount0_not_in[BigDecimal!]
amount1BigDecimal
amount1_notBigDecimal
amount1_gtBigDecimal
amount1_ltBigDecimal
amount1_gteBigDecimal
amount1_lteBigDecimal
amount1_in[BigDecimal!]
amount1_not_in[BigDecimal!]
token0String
token0_notString
token0_gtString
token0_ltString
token0_gteString
token0_lteString
token0_in[String!]
token0_not_in[String!]
token0_containsString
token0_contains_nocaseString
token0_not_containsString
token0_not_contains_nocaseString
token0_starts_withString
token0_starts_with_nocaseString
token0_not_starts_withString
token0_not_starts_with_nocaseString
token0_ends_withString
token0_ends_with_nocaseString
token0_not_ends_withString
token0_not_ends_with_nocaseString
token0_Token_filter
token1String
token1_notString
token1_gtString
token1_ltString
token1_gteString
token1_lteString
token1_in[String!]
token1_not_in[String!]
token1_containsString
token1_contains_nocaseString
token1_not_containsString
token1_not_contains_nocaseString
token1_starts_withString
token1_starts_with_nocaseString
token1_not_starts_withString
token1_not_starts_with_nocaseString
token1_ends_withString
token1_ends_with_nocaseString
token1_not_ends_withString
token1_not_ends_with_nocaseString
token1_Token_filter
_change_blockBlockChangedFilter

Filter for the block changed event.

and[Mint_filter]
or[Mint_filter]

OptionBurn_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
hashString
hash_notString
hash_gtString
hash_ltString
hash_gteString
hash_lteString
hash_in[String!]
hash_not_in[String!]
hash_containsString
hash_contains_nocaseString
hash_not_containsString
hash_not_contains_nocaseString
hash_starts_withString
hash_starts_with_nocaseString
hash_not_starts_withString
hash_not_starts_with_nocaseString
hash_ends_withString
hash_ends_with_nocaseString
hash_not_ends_withString
hash_not_ends_with_nocaseString
logIndexBigInt
logIndex_notBigInt
logIndex_gtBigInt
logIndex_ltBigInt
logIndex_gteBigInt
logIndex_lteBigInt
logIndex_in[BigInt!]
logIndex_not_in[BigInt!]
eventTypeEventType
eventType_notEventType
eventType_in[EventType!]
eventType_not_in[EventType!]
fromString
from_notString
from_gtString
from_ltString
from_gteString
from_lteString
from_in[String!]
from_not_in[String!]
from_containsString
from_contains_nocaseString
from_not_containsString
from_not_contains_nocaseString
from_starts_withString
from_starts_with_nocaseString
from_not_starts_withString
from_not_starts_with_nocaseString
from_ends_withString
from_ends_with_nocaseString
from_not_ends_withString
from_not_ends_with_nocaseString
toString
to_notString
to_gtString
to_ltString
to_gteString
to_lteString
to_in[String!]
to_not_in[String!]
to_containsString
to_contains_nocaseString
to_not_containsString
to_not_contains_nocaseString
to_starts_withString
to_starts_with_nocaseString
to_not_starts_withString
to_not_starts_with_nocaseString
to_ends_withString
to_ends_with_nocaseString
to_not_ends_withString
to_not_ends_with_nocaseString
blockNumberBigInt
blockNumber_notBigInt
blockNumber_gtBigInt
blockNumber_ltBigInt
blockNumber_gteBigInt
blockNumber_lteBigInt
blockNumber_in[BigInt!]
blockNumber_not_in[BigInt!]
timestampBigInt
timestamp_notBigInt
timestamp_gtBigInt
timestamp_ltBigInt
timestamp_gteBigInt
timestamp_lteBigInt
timestamp_in[BigInt!]
timestamp_not_in[BigInt!]
gasUsedBigInt
gasUsed_notBigInt
gasUsed_gtBigInt
gasUsed_ltBigInt
gasUsed_gteBigInt
gasUsed_lteBigInt
gasUsed_in[BigInt!]
gasUsed_not_in[BigInt!]
gasPriceBigInt
gasPrice_notBigInt
gasPrice_gtBigInt
gasPrice_ltBigInt
gasPrice_gteBigInt
gasPrice_lteBigInt
gasPrice_in[BigInt!]
gasPrice_not_in[BigInt!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
recipientString
recipient_notString
recipient_gtString
recipient_ltString
recipient_gteString
recipient_lteString
recipient_in[String!]
recipient_not_in[String!]
recipient_containsString
recipient_contains_nocaseString
recipient_not_containsString
recipient_not_contains_nocaseString
recipient_starts_withString
recipient_starts_with_nocaseString
recipient_not_starts_withString
recipient_not_starts_with_nocaseString
recipient_ends_withString
recipient_ends_with_nocaseString
recipient_not_ends_withString
recipient_not_ends_with_nocaseString
recipient_Account_filter
positionSizeBigInt
positionSize_notBigInt
positionSize_gtBigInt
positionSize_ltBigInt
positionSize_gteBigInt
positionSize_lteBigInt
positionSize_in[BigInt!]
positionSize_not_in[BigInt!]
tokenIdString
tokenId_notString
tokenId_gtString
tokenId_ltString
tokenId_gteString
tokenId_lteString
tokenId_in[String!]
tokenId_not_in[String!]
tokenId_containsString
tokenId_contains_nocaseString
tokenId_not_containsString
tokenId_not_contains_nocaseString
tokenId_starts_withString
tokenId_starts_with_nocaseString
tokenId_not_starts_withString
tokenId_not_starts_with_nocaseString
tokenId_ends_withString
tokenId_ends_with_nocaseString
tokenId_not_ends_withString
tokenId_not_ends_with_nocaseString
tokenId_TokenId_filter
tickAtInt
tickAt_notInt
tickAt_gtInt
tickAt_ltInt
tickAt_gteInt
tickAt_lteInt
tickAt_in[Int!]
tickAt_not_in[Int!]
premiaBigInt
premia_notBigInt
premia_gtBigInt
premia_ltBigInt
premia_gteBigInt
premia_lteBigInt
premia_in[BigInt!]
premia_not_in[BigInt!]
panopticPoolString
panopticPool_notString
panopticPool_gtString
panopticPool_ltString
panopticPool_gteString
panopticPool_lteString
panopticPool_in[String!]
panopticPool_not_in[String!]
panopticPool_containsString
panopticPool_contains_nocaseString
panopticPool_not_containsString
panopticPool_not_contains_nocaseString
panopticPool_starts_withString
panopticPool_starts_with_nocaseString
panopticPool_not_starts_withString
panopticPool_not_starts_with_nocaseString
panopticPool_ends_withString
panopticPool_ends_with_nocaseString
panopticPool_not_ends_withString
panopticPool_not_ends_with_nocaseString
panopticPool_PanopticPool_filter
premium0BigInt
premium0_notBigInt
premium0_gtBigInt
premium0_ltBigInt
premium0_gteBigInt
premium0_lteBigInt
premium0_in[BigInt!]
premium0_not_in[BigInt!]
premium1BigInt
premium1_notBigInt
premium1_gtBigInt
premium1_ltBigInt
premium1_gteBigInt
premium1_lteBigInt
premium1_in[BigInt!]
premium1_not_in[BigInt!]
txnOpenedString
txnOpened_notString
txnOpened_gtString
txnOpened_ltString
txnOpened_gteString
txnOpened_lteString
txnOpened_in[String!]
txnOpened_not_in[String!]
txnOpened_containsString
txnOpened_contains_nocaseString
txnOpened_not_containsString
txnOpened_not_contains_nocaseString
txnOpened_starts_withString
txnOpened_starts_with_nocaseString
txnOpened_not_starts_withString
txnOpened_not_starts_with_nocaseString
txnOpened_ends_withString
txnOpened_ends_with_nocaseString
txnOpened_not_ends_withString
txnOpened_not_ends_with_nocaseString
txnOpened_OptionMint_filter
forcedExerciseString
forcedExercise_notString
forcedExercise_gtString
forcedExercise_ltString
forcedExercise_gteString
forcedExercise_lteString
forcedExercise_in[String!]
forcedExercise_not_in[String!]
forcedExercise_containsString
forcedExercise_contains_nocaseString
forcedExercise_not_containsString
forcedExercise_not_contains_nocaseString
forcedExercise_starts_withString
forcedExercise_starts_with_nocaseString
forcedExercise_not_starts_withString
forcedExercise_not_starts_with_nocaseString
forcedExercise_ends_withString
forcedExercise_ends_with_nocaseString
forcedExercise_not_ends_withString
forcedExercise_not_ends_with_nocaseString
forcedExercise_ForcedExercise_filter
accountLiquidatedString
accountLiquidated_notString
accountLiquidated_gtString
accountLiquidated_ltString
accountLiquidated_gteString
accountLiquidated_lteString
accountLiquidated_in[String!]
accountLiquidated_not_in[String!]
accountLiquidated_containsString
accountLiquidated_contains_nocaseString
accountLiquidated_not_containsString
accountLiquidated_not_contains_nocaseString
accountLiquidated_starts_withString
accountLiquidated_starts_with_nocaseString
accountLiquidated_not_starts_withString
accountLiquidated_not_starts_with_nocaseString
accountLiquidated_ends_withString
accountLiquidated_ends_with_nocaseString
accountLiquidated_not_ends_withString
accountLiquidated_not_ends_with_nocaseString
accountLiquidated_AccountLiquidated_filter
_change_blockBlockChangedFilter

Filter for the block changed event.

and[OptionBurn_filter]
or[OptionBurn_filter]

OptionMint_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
hashString
hash_notString
hash_gtString
hash_ltString
hash_gteString
hash_lteString
hash_in[String!]
hash_not_in[String!]
hash_containsString
hash_contains_nocaseString
hash_not_containsString
hash_not_contains_nocaseString
hash_starts_withString
hash_starts_with_nocaseString
hash_not_starts_withString
hash_not_starts_with_nocaseString
hash_ends_withString
hash_ends_with_nocaseString
hash_not_ends_withString
hash_not_ends_with_nocaseString
logIndexBigInt
logIndex_notBigInt
logIndex_gtBigInt
logIndex_ltBigInt
logIndex_gteBigInt
logIndex_lteBigInt
logIndex_in[BigInt!]
logIndex_not_in[BigInt!]
eventTypeEventType
eventType_notEventType
eventType_in[EventType!]
eventType_not_in[EventType!]
fromString
from_notString
from_gtString
from_ltString
from_gteString
from_lteString
from_in[String!]
from_not_in[String!]
from_containsString
from_contains_nocaseString
from_not_containsString
from_not_contains_nocaseString
from_starts_withString
from_starts_with_nocaseString
from_not_starts_withString
from_not_starts_with_nocaseString
from_ends_withString
from_ends_with_nocaseString
from_not_ends_withString
from_not_ends_with_nocaseString
toString
to_notString
to_gtString
to_ltString
to_gteString
to_lteString
to_in[String!]
to_not_in[String!]
to_containsString
to_contains_nocaseString
to_not_containsString
to_not_contains_nocaseString
to_starts_withString
to_starts_with_nocaseString
to_not_starts_withString
to_not_starts_with_nocaseString
to_ends_withString
to_ends_with_nocaseString
to_not_ends_withString
to_not_ends_with_nocaseString
blockNumberBigInt
blockNumber_notBigInt
blockNumber_gtBigInt
blockNumber_ltBigInt
blockNumber_gteBigInt
blockNumber_lteBigInt
blockNumber_in[BigInt!]
blockNumber_not_in[BigInt!]
timestampBigInt
timestamp_notBigInt
timestamp_gtBigInt
timestamp_ltBigInt
timestamp_gteBigInt
timestamp_lteBigInt
timestamp_in[BigInt!]
timestamp_not_in[BigInt!]
gasUsedBigInt
gasUsed_notBigInt
gasUsed_gtBigInt
gasUsed_ltBigInt
gasUsed_gteBigInt
gasUsed_lteBigInt
gasUsed_in[BigInt!]
gasUsed_not_in[BigInt!]
gasPriceBigInt
gasPrice_notBigInt
gasPrice_gtBigInt
gasPrice_ltBigInt
gasPrice_gteBigInt
gasPrice_lteBigInt
gasPrice_in[BigInt!]
gasPrice_not_in[BigInt!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
recipientString
recipient_notString
recipient_gtString
recipient_ltString
recipient_gteString
recipient_lteString
recipient_in[String!]
recipient_not_in[String!]
recipient_containsString
recipient_contains_nocaseString
recipient_not_containsString
recipient_not_contains_nocaseString
recipient_starts_withString
recipient_starts_with_nocaseString
recipient_not_starts_withString
recipient_not_starts_with_nocaseString
recipient_ends_withString
recipient_ends_with_nocaseString
recipient_not_ends_withString
recipient_not_ends_with_nocaseString
recipient_Account_filter
positionSizeBigInt
positionSize_notBigInt
positionSize_gtBigInt
positionSize_ltBigInt
positionSize_gteBigInt
positionSize_lteBigInt
positionSize_in[BigInt!]
positionSize_not_in[BigInt!]
tokenIdString
tokenId_notString
tokenId_gtString
tokenId_ltString
tokenId_gteString
tokenId_lteString
tokenId_in[String!]
tokenId_not_in[String!]
tokenId_containsString
tokenId_contains_nocaseString
tokenId_not_containsString
tokenId_not_contains_nocaseString
tokenId_starts_withString
tokenId_starts_with_nocaseString
tokenId_not_starts_withString
tokenId_not_starts_with_nocaseString
tokenId_ends_withString
tokenId_ends_with_nocaseString
tokenId_not_ends_withString
tokenId_not_ends_with_nocaseString
tokenId_TokenId_filter
tickAtInt
tickAt_notInt
tickAt_gtInt
tickAt_ltInt
tickAt_gteInt
tickAt_lteInt
tickAt_in[Int!]
tickAt_not_in[Int!]
poolUtilizationsBigInt
poolUtilizations_notBigInt
poolUtilizations_gtBigInt
poolUtilizations_ltBigInt
poolUtilizations_gteBigInt
poolUtilizations_lteBigInt
poolUtilizations_in[BigInt!]
poolUtilizations_not_in[BigInt!]
panopticPoolString
panopticPool_notString
panopticPool_gtString
panopticPool_ltString
panopticPool_gteString
panopticPool_lteString
panopticPool_in[String!]
panopticPool_not_in[String!]
panopticPool_containsString
panopticPool_contains_nocaseString
panopticPool_not_containsString
panopticPool_not_contains_nocaseString
panopticPool_starts_withString
panopticPool_starts_with_nocaseString
panopticPool_not_starts_withString
panopticPool_not_starts_with_nocaseString
panopticPool_ends_withString
panopticPool_ends_with_nocaseString
panopticPool_not_ends_withString
panopticPool_not_ends_with_nocaseString
panopticPool_PanopticPool_filter
commissions0BigDecimal
commissions0_notBigDecimal
commissions0_gtBigDecimal
commissions0_ltBigDecimal
commissions0_gteBigDecimal
commissions0_lteBigDecimal
commissions0_in[BigDecimal!]
commissions0_not_in[BigDecimal!]
commissions1BigDecimal
commissions1_notBigDecimal
commissions1_gtBigDecimal
commissions1_ltBigDecimal
commissions1_gteBigDecimal
commissions1_lteBigDecimal
commissions1_in[BigDecimal!]
commissions1_not_in[BigDecimal!]
poolUtilization0BigInt
poolUtilization0_notBigInt
poolUtilization0_gtBigInt
poolUtilization0_ltBigInt
poolUtilization0_gteBigInt
poolUtilization0_lteBigInt
poolUtilization0_in[BigInt!]
poolUtilization0_not_in[BigInt!]
poolUtilization1BigInt
poolUtilization1_notBigInt
poolUtilization1_gtBigInt
poolUtilization1_ltBigInt
poolUtilization1_gteBigInt
poolUtilization1_lteBigInt
poolUtilization1_in[BigInt!]
poolUtilization1_not_in[BigInt!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[OptionMint_filter]
or[OptionMint_filter]

OptionRoll_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
hashString
hash_notString
hash_gtString
hash_ltString
hash_gteString
hash_lteString
hash_in[String!]
hash_not_in[String!]
hash_containsString
hash_contains_nocaseString
hash_not_containsString
hash_not_contains_nocaseString
hash_starts_withString
hash_starts_with_nocaseString
hash_not_starts_withString
hash_not_starts_with_nocaseString
hash_ends_withString
hash_ends_with_nocaseString
hash_not_ends_withString
hash_not_ends_with_nocaseString
logIndexBigInt
logIndex_notBigInt
logIndex_gtBigInt
logIndex_ltBigInt
logIndex_gteBigInt
logIndex_lteBigInt
logIndex_in[BigInt!]
logIndex_not_in[BigInt!]
eventTypeEventType
eventType_notEventType
eventType_in[EventType!]
eventType_not_in[EventType!]
fromString
from_notString
from_gtString
from_ltString
from_gteString
from_lteString
from_in[String!]
from_not_in[String!]
from_containsString
from_contains_nocaseString
from_not_containsString
from_not_contains_nocaseString
from_starts_withString
from_starts_with_nocaseString
from_not_starts_withString
from_not_starts_with_nocaseString
from_ends_withString
from_ends_with_nocaseString
from_not_ends_withString
from_not_ends_with_nocaseString
toString
to_notString
to_gtString
to_ltString
to_gteString
to_lteString
to_in[String!]
to_not_in[String!]
to_containsString
to_contains_nocaseString
to_not_containsString
to_not_contains_nocaseString
to_starts_withString
to_starts_with_nocaseString
to_not_starts_withString
to_not_starts_with_nocaseString
to_ends_withString
to_ends_with_nocaseString
to_not_ends_withString
to_not_ends_with_nocaseString
blockNumberBigInt
blockNumber_notBigInt
blockNumber_gtBigInt
blockNumber_ltBigInt
blockNumber_gteBigInt
blockNumber_lteBigInt
blockNumber_in[BigInt!]
blockNumber_not_in[BigInt!]
timestampBigInt
timestamp_notBigInt
timestamp_gtBigInt
timestamp_ltBigInt
timestamp_gteBigInt
timestamp_lteBigInt
timestamp_in[BigInt!]
timestamp_not_in[BigInt!]
gasUsedBigInt
gasUsed_notBigInt
gasUsed_gtBigInt
gasUsed_ltBigInt
gasUsed_gteBigInt
gasUsed_lteBigInt
gasUsed_in[BigInt!]
gasUsed_not_in[BigInt!]
gasPriceBigInt
gasPrice_notBigInt
gasPrice_gtBigInt
gasPrice_ltBigInt
gasPrice_gteBigInt
gasPrice_lteBigInt
gasPrice_in[BigInt!]
gasPrice_not_in[BigInt!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
recipientString
recipient_notString
recipient_gtString
recipient_ltString
recipient_gteString
recipient_lteString
recipient_in[String!]
recipient_not_in[String!]
recipient_containsString
recipient_contains_nocaseString
recipient_not_containsString
recipient_not_contains_nocaseString
recipient_starts_withString
recipient_starts_with_nocaseString
recipient_not_starts_withString
recipient_not_starts_with_nocaseString
recipient_ends_withString
recipient_ends_with_nocaseString
recipient_not_ends_withString
recipient_not_ends_with_nocaseString
recipient_Account_filter
positionSizeBigInt
positionSize_notBigInt
positionSize_gtBigInt
positionSize_ltBigInt
positionSize_gteBigInt
positionSize_lteBigInt
positionSize_in[BigInt!]
positionSize_not_in[BigInt!]
oldTokenIdBigInt
oldTokenId_notBigInt
oldTokenId_gtBigInt
oldTokenId_ltBigInt
oldTokenId_gteBigInt
oldTokenId_lteBigInt
oldTokenId_in[BigInt!]
oldTokenId_not_in[BigInt!]
newTokenIdBigInt
newTokenId_notBigInt
newTokenId_gtBigInt
newTokenId_ltBigInt
newTokenId_gteBigInt
newTokenId_lteBigInt
newTokenId_in[BigInt!]
newTokenId_not_in[BigInt!]
tickAtRollInt
tickAtRoll_notInt
tickAtRoll_gtInt
tickAtRoll_ltInt
tickAtRoll_gteInt
tickAtRoll_lteInt
tickAtRoll_in[Int!]
tickAtRoll_not_in[Int!]
poolUtilizationsBigInt
poolUtilizations_notBigInt
poolUtilizations_gtBigInt
poolUtilizations_ltBigInt
poolUtilizations_gteBigInt
poolUtilizations_lteBigInt
poolUtilizations_in[BigInt!]
poolUtilizations_not_in[BigInt!]
premiaBigInt
premia_notBigInt
premia_gtBigInt
premia_ltBigInt
premia_gteBigInt
premia_lteBigInt
premia_in[BigInt!]
premia_not_in[BigInt!]
panopticPoolString
panopticPool_notString
panopticPool_gtString
panopticPool_ltString
panopticPool_gteString
panopticPool_lteString
panopticPool_in[String!]
panopticPool_not_in[String!]
panopticPool_containsString
panopticPool_contains_nocaseString
panopticPool_not_containsString
panopticPool_not_contains_nocaseString
panopticPool_starts_withString
panopticPool_starts_with_nocaseString
panopticPool_not_starts_withString
panopticPool_not_starts_with_nocaseString
panopticPool_ends_withString
panopticPool_ends_with_nocaseString
panopticPool_not_ends_withString
panopticPool_not_ends_with_nocaseString
panopticPool_PanopticPool_filter
poolUtilization0BigInt
poolUtilization0_notBigInt
poolUtilization0_gtBigInt
poolUtilization0_ltBigInt
poolUtilization0_gteBigInt
poolUtilization0_lteBigInt
poolUtilization0_in[BigInt!]
poolUtilization0_not_in[BigInt!]
poolUtilization1BigInt
poolUtilization1_notBigInt
poolUtilization1_gtBigInt
poolUtilization1_ltBigInt
poolUtilization1_gteBigInt
poolUtilization1_lteBigInt
poolUtilization1_in[BigInt!]
poolUtilization1_not_in[BigInt!]
premium0BigInt
premium0_notBigInt
premium0_gtBigInt
premium0_ltBigInt
premium0_gteBigInt
premium0_lteBigInt
premium0_in[BigInt!]
premium0_not_in[BigInt!]
premium1BigInt
premium1_notBigInt
premium1_gtBigInt
premium1_ltBigInt
premium1_gteBigInt
premium1_lteBigInt
premium1_in[BigInt!]
premium1_not_in[BigInt!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[OptionRoll_filter]
or[OptionRoll_filter]

PanopticFactory_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
poolCountBigInt
poolCount_notBigInt
poolCount_gtBigInt
poolCount_ltBigInt
poolCount_gteBigInt
poolCount_lteBigInt
poolCount_in[BigInt!]
poolCount_not_in[BigInt!]
ownerID
owner_notID
owner_gtID
owner_ltID
owner_gteID
owner_lteID
owner_in[ID!]
owner_not_in[ID!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[PanopticFactory_filter]
or[PanopticFactory_filter]

PanopticPoolAccount_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
panopticPoolString
panopticPool_notString
panopticPool_gtString
panopticPool_ltString
panopticPool_gteString
panopticPool_lteString
panopticPool_in[String!]
panopticPool_not_in[String!]
panopticPool_containsString
panopticPool_contains_nocaseString
panopticPool_not_containsString
panopticPool_not_contains_nocaseString
panopticPool_starts_withString
panopticPool_starts_with_nocaseString
panopticPool_not_starts_withString
panopticPool_not_starts_with_nocaseString
panopticPool_ends_withString
panopticPool_ends_with_nocaseString
panopticPool_not_ends_withString
panopticPool_not_ends_with_nocaseString
panopticPool_PanopticPool_filter
accountString
account_notString
account_gtString
account_ltString
account_gteString
account_lteString
account_in[String!]
account_not_in[String!]
account_containsString
account_contains_nocaseString
account_not_containsString
account_not_contains_nocaseString
account_starts_withString
account_starts_with_nocaseString
account_not_starts_withString
account_not_starts_with_nocaseString
account_ends_withString
account_ends_with_nocaseString
account_not_ends_withString
account_not_ends_with_nocaseString
account_Account_filter
collateral0String
collateral0_notString
collateral0_gtString
collateral0_ltString
collateral0_gteString
collateral0_lteString
collateral0_in[String!]
collateral0_not_in[String!]
collateral0_containsString
collateral0_contains_nocaseString
collateral0_not_containsString
collateral0_not_contains_nocaseString
collateral0_starts_withString
collateral0_starts_with_nocaseString
collateral0_not_starts_withString
collateral0_not_starts_with_nocaseString
collateral0_ends_withString
collateral0_ends_with_nocaseString
collateral0_not_ends_withString
collateral0_not_ends_with_nocaseString
collateral0_Collateral_filter
collateral0SharesBigInt
collateral0Shares_notBigInt
collateral0Shares_gtBigInt
collateral0Shares_ltBigInt
collateral0Shares_gteBigInt
collateral0Shares_lteBigInt
collateral0Shares_in[BigInt!]
collateral0Shares_not_in[BigInt!]
collateral0AssetsBigInt
collateral0Assets_notBigInt
collateral0Assets_gtBigInt
collateral0Assets_ltBigInt
collateral0Assets_gteBigInt
collateral0Assets_lteBigInt
collateral0Assets_in[BigInt!]
collateral0Assets_not_in[BigInt!]
collateral1String
collateral1_notString
collateral1_gtString
collateral1_ltString
collateral1_gteString
collateral1_lteString
collateral1_in[String!]
collateral1_not_in[String!]
collateral1_containsString
collateral1_contains_nocaseString
collateral1_not_containsString
collateral1_not_contains_nocaseString
collateral1_starts_withString
collateral1_starts_with_nocaseString
collateral1_not_starts_withString
collateral1_not_starts_with_nocaseString
collateral1_ends_withString
collateral1_ends_with_nocaseString
collateral1_not_ends_withString
collateral1_not_ends_with_nocaseString
collateral1_Collateral_filter
collateral1SharesBigInt
collateral1Shares_notBigInt
collateral1Shares_gtBigInt
collateral1Shares_ltBigInt
collateral1Shares_gteBigInt
collateral1Shares_lteBigInt
collateral1Shares_in[BigInt!]
collateral1Shares_not_in[BigInt!]
collateral1AssetsBigInt
collateral1Assets_notBigInt
collateral1Assets_gtBigInt
collateral1Assets_ltBigInt
collateral1Assets_gteBigInt
collateral1Assets_lteBigInt
collateral1Assets_in[BigInt!]
collateral1Assets_not_in[BigInt!]
commissions0BigDecimal
commissions0_notBigDecimal
commissions0_gtBigDecimal
commissions0_ltBigDecimal
commissions0_gteBigDecimal
commissions0_lteBigDecimal
commissions0_in[BigDecimal!]
commissions0_not_in[BigDecimal!]
commissions1BigDecimal
commissions1_notBigDecimal
commissions1_gtBigDecimal
commissions1_ltBigDecimal
commissions1_gteBigDecimal
commissions1_lteBigDecimal
commissions1_in[BigDecimal!]
commissions1_not_in[BigDecimal!]
sharePriceAtLastTransfer0BigDecimal
sharePriceAtLastTransfer0_notBigDecimal
sharePriceAtLastTransfer0_gtBigDecimal
sharePriceAtLastTransfer0_ltBigDecimal
sharePriceAtLastTransfer0_gteBigDecimal
sharePriceAtLastTransfer0_lteBigDecimal
sharePriceAtLastTransfer0_in[BigDecimal!]
sharePriceAtLastTransfer0_not_in[BigDecimal!]
sharePriceAtLastTransfer1BigDecimal
sharePriceAtLastTransfer1_notBigDecimal
sharePriceAtLastTransfer1_gtBigDecimal
sharePriceAtLastTransfer1_ltBigDecimal
sharePriceAtLastTransfer1_gteBigDecimal
sharePriceAtLastTransfer1_lteBigDecimal
sharePriceAtLastTransfer1_in[BigDecimal!]
sharePriceAtLastTransfer1_not_in[BigDecimal!]
commissionsSinceLastTransfer0BigDecimal
commissionsSinceLastTransfer0_notBigDecimal
commissionsSinceLastTransfer0_gtBigDecimal
commissionsSinceLastTransfer0_ltBigDecimal
commissionsSinceLastTransfer0_gteBigDecimal
commissionsSinceLastTransfer0_lteBigDecimal
commissionsSinceLastTransfer0_in[BigDecimal!]
commissionsSinceLastTransfer0_not_in[BigDecimal!]
commissionsSinceLastTransfer1BigDecimal
commissionsSinceLastTransfer1_notBigDecimal
commissionsSinceLastTransfer1_gtBigDecimal
commissionsSinceLastTransfer1_ltBigDecimal
commissionsSinceLastTransfer1_gteBigDecimal
commissionsSinceLastTransfer1_lteBigDecimal
commissionsSinceLastTransfer1_in[BigDecimal!]
commissionsSinceLastTransfer1_not_in[BigDecimal!]
isLiquidatedInt
isLiquidated_notInt
isLiquidated_gtInt
isLiquidated_ltInt
isLiquidated_gteInt
isLiquidated_lteInt
isLiquidated_in[Int!]
isLiquidated_not_in[Int!]
accountBalances_AccountBalance_filter
_change_blockBlockChangedFilter

Filter for the block changed event.

and[PanopticPoolAccount_filter]
or[PanopticPoolAccount_filter]

PanopticPoolDayData_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
panopticPoolString
panopticPool_notString
panopticPool_gtString
panopticPool_ltString
panopticPool_gteString
panopticPool_lteString
panopticPool_in[String!]
panopticPool_not_in[String!]
panopticPool_containsString
panopticPool_contains_nocaseString
panopticPool_not_containsString
panopticPool_not_contains_nocaseString
panopticPool_starts_withString
panopticPool_starts_with_nocaseString
panopticPool_not_starts_withString
panopticPool_not_starts_with_nocaseString
panopticPool_ends_withString
panopticPool_ends_with_nocaseString
panopticPool_not_ends_withString
panopticPool_not_ends_with_nocaseString
panopticPool_PanopticPool_filter
dateInt
date_notInt
date_gtInt
date_ltInt
date_gteInt
date_lteInt
date_in[Int!]
date_not_in[Int!]
mintVolume0BigDecimal
mintVolume0_notBigDecimal
mintVolume0_gtBigDecimal
mintVolume0_ltBigDecimal
mintVolume0_gteBigDecimal
mintVolume0_lteBigDecimal
mintVolume0_in[BigDecimal!]
mintVolume0_not_in[BigDecimal!]
mintVolume0USDBigDecimal
mintVolume0USD_notBigDecimal
mintVolume0USD_gtBigDecimal
mintVolume0USD_ltBigDecimal
mintVolume0USD_gteBigDecimal
mintVolume0USD_lteBigDecimal
mintVolume0USD_in[BigDecimal!]
mintVolume0USD_not_in[BigDecimal!]
burnVolume0BigDecimal
burnVolume0_notBigDecimal
burnVolume0_gtBigDecimal
burnVolume0_ltBigDecimal
burnVolume0_gteBigDecimal
burnVolume0_lteBigDecimal
burnVolume0_in[BigDecimal!]
burnVolume0_not_in[BigDecimal!]
burnVolume0USDBigDecimal
burnVolume0USD_notBigDecimal
burnVolume0USD_gtBigDecimal
burnVolume0USD_ltBigDecimal
burnVolume0USD_gteBigDecimal
burnVolume0USD_lteBigDecimal
burnVolume0USD_in[BigDecimal!]
burnVolume0USD_not_in[BigDecimal!]
totalVolume0BigDecimal
totalVolume0_notBigDecimal
totalVolume0_gtBigDecimal
totalVolume0_ltBigDecimal
totalVolume0_gteBigDecimal
totalVolume0_lteBigDecimal
totalVolume0_in[BigDecimal!]
totalVolume0_not_in[BigDecimal!]
totalVolume0USDBigDecimal
totalVolume0USD_notBigDecimal
totalVolume0USD_gtBigDecimal
totalVolume0USD_ltBigDecimal
totalVolume0USD_gteBigDecimal
totalVolume0USD_lteBigDecimal
totalVolume0USD_in[BigDecimal!]
totalVolume0USD_not_in[BigDecimal!]
mintVolume1BigDecimal
mintVolume1_notBigDecimal
mintVolume1_gtBigDecimal
mintVolume1_ltBigDecimal
mintVolume1_gteBigDecimal
mintVolume1_lteBigDecimal
mintVolume1_in[BigDecimal!]
mintVolume1_not_in[BigDecimal!]
mintVolume1USDBigDecimal
mintVolume1USD_notBigDecimal
mintVolume1USD_gtBigDecimal
mintVolume1USD_ltBigDecimal
mintVolume1USD_gteBigDecimal
mintVolume1USD_lteBigDecimal
mintVolume1USD_in[BigDecimal!]
mintVolume1USD_not_in[BigDecimal!]
burnVolume1BigDecimal
burnVolume1_notBigDecimal
burnVolume1_gtBigDecimal
burnVolume1_ltBigDecimal
burnVolume1_gteBigDecimal
burnVolume1_lteBigDecimal
burnVolume1_in[BigDecimal!]
burnVolume1_not_in[BigDecimal!]
burnVolume1USDBigDecimal
burnVolume1USD_notBigDecimal
burnVolume1USD_gtBigDecimal
burnVolume1USD_ltBigDecimal
burnVolume1USD_gteBigDecimal
burnVolume1USD_lteBigDecimal
burnVolume1USD_in[BigDecimal!]
burnVolume1USD_not_in[BigDecimal!]
totalVolume1BigDecimal
totalVolume1_notBigDecimal
totalVolume1_gtBigDecimal
totalVolume1_ltBigDecimal
totalVolume1_gteBigDecimal
totalVolume1_lteBigDecimal
totalVolume1_in[BigDecimal!]
totalVolume1_not_in[BigDecimal!]
totalVolume1USDBigDecimal
totalVolume1USD_notBigDecimal
totalVolume1USD_gtBigDecimal
totalVolume1USD_ltBigDecimal
totalVolume1USD_gteBigDecimal
totalVolume1USD_lteBigDecimal
totalVolume1USD_in[BigDecimal!]
totalVolume1USD_not_in[BigDecimal!]
commissions0BigDecimal
commissions0_notBigDecimal
commissions0_gtBigDecimal
commissions0_ltBigDecimal
commissions0_gteBigDecimal
commissions0_lteBigDecimal
commissions0_in[BigDecimal!]
commissions0_not_in[BigDecimal!]
commissions0USDBigDecimal
commissions0USD_notBigDecimal
commissions0USD_gtBigDecimal
commissions0USD_ltBigDecimal
commissions0USD_gteBigDecimal
commissions0USD_lteBigDecimal
commissions0USD_in[BigDecimal!]
commissions0USD_not_in[BigDecimal!]
commissions1BigDecimal
commissions1_notBigDecimal
commissions1_gtBigDecimal
commissions1_ltBigDecimal
commissions1_gteBigDecimal
commissions1_lteBigDecimal
commissions1_in[BigDecimal!]
commissions1_not_in[BigDecimal!]
commissions1USDBigDecimal
commissions1USD_notBigDecimal
commissions1USD_gtBigDecimal
commissions1USD_ltBigDecimal
commissions1USD_gteBigDecimal
commissions1USD_lteBigDecimal
commissions1USD_in[BigDecimal!]
commissions1USD_not_in[BigDecimal!]
commissionsUSDBigDecimal
commissionsUSD_notBigDecimal
commissionsUSD_gtBigDecimal
commissionsUSD_ltBigDecimal
commissionsUSD_gteBigDecimal
commissionsUSD_lteBigDecimal
commissionsUSD_in[BigDecimal!]
commissionsUSD_not_in[BigDecimal!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[PanopticPoolDayData_filter]
or[PanopticPoolDayData_filter]

PanopticPool_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
txCountBigInt
txCount_notBigInt
txCount_gtBigInt
txCount_ltBigInt
txCount_gteBigInt
txCount_lteBigInt
txCount_in[BigInt!]
txCount_not_in[BigInt!]
token0String
token0_notString
token0_gtString
token0_ltString
token0_gteString
token0_lteString
token0_in[String!]
token0_not_in[String!]
token0_containsString
token0_contains_nocaseString
token0_not_containsString
token0_not_contains_nocaseString
token0_starts_withString
token0_starts_with_nocaseString
token0_not_starts_withString
token0_not_starts_with_nocaseString
token0_ends_withString
token0_ends_with_nocaseString
token0_not_ends_withString
token0_not_ends_with_nocaseString
token0_Token_filter
token1String
token1_notString
token1_gtString
token1_ltString
token1_gteString
token1_lteString
token1_in[String!]
token1_not_in[String!]
token1_containsString
token1_contains_nocaseString
token1_not_containsString
token1_not_contains_nocaseString
token1_starts_withString
token1_starts_with_nocaseString
token1_not_starts_withString
token1_not_starts_with_nocaseString
token1_ends_withString
token1_ends_with_nocaseString
token1_not_ends_withString
token1_not_ends_with_nocaseString
token1_Token_filter
feeTierBigInt
feeTier_notBigInt
feeTier_gtBigInt
feeTier_ltBigInt
feeTier_gteBigInt
feeTier_lteBigInt
feeTier_in[BigInt!]
feeTier_not_in[BigInt!]
collateral0String
collateral0_notString
collateral0_gtString
collateral0_ltString
collateral0_gteString
collateral0_lteString
collateral0_in[String!]
collateral0_not_in[String!]
collateral0_containsString
collateral0_contains_nocaseString
collateral0_not_containsString
collateral0_not_contains_nocaseString
collateral0_starts_withString
collateral0_starts_with_nocaseString
collateral0_not_starts_withString
collateral0_not_starts_with_nocaseString
collateral0_ends_withString
collateral0_ends_with_nocaseString
collateral0_not_ends_withString
collateral0_not_ends_with_nocaseString
collateral0_Collateral_filter
collateral1String
collateral1_notString
collateral1_gtString
collateral1_ltString
collateral1_gteString
collateral1_lteString
collateral1_in[String!]
collateral1_not_in[String!]
collateral1_containsString
collateral1_contains_nocaseString
collateral1_not_containsString
collateral1_not_contains_nocaseString
collateral1_starts_withString
collateral1_starts_with_nocaseString
collateral1_not_starts_withString
collateral1_not_starts_with_nocaseString
collateral1_ends_withString
collateral1_ends_with_nocaseString
collateral1_not_ends_withString
collateral1_not_ends_with_nocaseString
collateral1_Collateral_filter
underlyingPoolString
underlyingPool_notString
underlyingPool_gtString
underlyingPool_ltString
underlyingPool_gteString
underlyingPool_lteString
underlyingPool_in[String!]
underlyingPool_not_in[String!]
underlyingPool_containsString
underlyingPool_contains_nocaseString
underlyingPool_not_containsString
underlyingPool_not_contains_nocaseString
underlyingPool_starts_withString
underlyingPool_starts_with_nocaseString
underlyingPool_not_starts_withString
underlyingPool_not_starts_with_nocaseString
underlyingPool_ends_withString
underlyingPool_ends_with_nocaseString
underlyingPool_not_ends_withString
underlyingPool_not_ends_with_nocaseString
underlyingPool_Pool_filter
mintVolume0BigDecimal
mintVolume0_notBigDecimal
mintVolume0_gtBigDecimal
mintVolume0_ltBigDecimal
mintVolume0_gteBigDecimal
mintVolume0_lteBigDecimal
mintVolume0_in[BigDecimal!]
mintVolume0_not_in[BigDecimal!]
mintVolume0USDBigDecimal
mintVolume0USD_notBigDecimal
mintVolume0USD_gtBigDecimal
mintVolume0USD_ltBigDecimal
mintVolume0USD_gteBigDecimal
mintVolume0USD_lteBigDecimal
mintVolume0USD_in[BigDecimal!]
mintVolume0USD_not_in[BigDecimal!]
burnVolume0BigDecimal
burnVolume0_notBigDecimal
burnVolume0_gtBigDecimal
burnVolume0_ltBigDecimal
burnVolume0_gteBigDecimal
burnVolume0_lteBigDecimal
burnVolume0_in[BigDecimal!]
burnVolume0_not_in[BigDecimal!]
burnVolume0USDBigDecimal
burnVolume0USD_notBigDecimal
burnVolume0USD_gtBigDecimal
burnVolume0USD_ltBigDecimal
burnVolume0USD_gteBigDecimal
burnVolume0USD_lteBigDecimal
burnVolume0USD_in[BigDecimal!]
burnVolume0USD_not_in[BigDecimal!]
totalVolume0BigDecimal
totalVolume0_notBigDecimal
totalVolume0_gtBigDecimal
totalVolume0_ltBigDecimal
totalVolume0_gteBigDecimal
totalVolume0_lteBigDecimal
totalVolume0_in[BigDecimal!]
totalVolume0_not_in[BigDecimal!]
totalVolume0USDBigDecimal
totalVolume0USD_notBigDecimal
totalVolume0USD_gtBigDecimal
totalVolume0USD_ltBigDecimal
totalVolume0USD_gteBigDecimal
totalVolume0USD_lteBigDecimal
totalVolume0USD_in[BigDecimal!]
totalVolume0USD_not_in[BigDecimal!]
mintVolume1BigDecimal
mintVolume1_notBigDecimal
mintVolume1_gtBigDecimal
mintVolume1_ltBigDecimal
mintVolume1_gteBigDecimal
mintVolume1_lteBigDecimal
mintVolume1_in[BigDecimal!]
mintVolume1_not_in[BigDecimal!]
mintVolume1USDBigDecimal
mintVolume1USD_notBigDecimal
mintVolume1USD_gtBigDecimal
mintVolume1USD_ltBigDecimal
mintVolume1USD_gteBigDecimal
mintVolume1USD_lteBigDecimal
mintVolume1USD_in[BigDecimal!]
mintVolume1USD_not_in[BigDecimal!]
burnVolume1BigDecimal
burnVolume1_notBigDecimal
burnVolume1_gtBigDecimal
burnVolume1_ltBigDecimal
burnVolume1_gteBigDecimal
burnVolume1_lteBigDecimal
burnVolume1_in[BigDecimal!]
burnVolume1_not_in[BigDecimal!]
burnVolume1USDBigDecimal
burnVolume1USD_notBigDecimal
burnVolume1USD_gtBigDecimal
burnVolume1USD_ltBigDecimal
burnVolume1USD_gteBigDecimal
burnVolume1USD_lteBigDecimal
burnVolume1USD_in[BigDecimal!]
burnVolume1USD_not_in[BigDecimal!]
totalVolume1BigDecimal
totalVolume1_notBigDecimal
totalVolume1_gtBigDecimal
totalVolume1_ltBigDecimal
totalVolume1_gteBigDecimal
totalVolume1_lteBigDecimal
totalVolume1_in[BigDecimal!]
totalVolume1_not_in[BigDecimal!]
totalVolume1USDBigDecimal
totalVolume1USD_notBigDecimal
totalVolume1USD_gtBigDecimal
totalVolume1USD_ltBigDecimal
totalVolume1USD_gteBigDecimal
totalVolume1USD_lteBigDecimal
totalVolume1USD_in[BigDecimal!]
totalVolume1USD_not_in[BigDecimal!]
commissions0BigDecimal
commissions0_notBigDecimal
commissions0_gtBigDecimal
commissions0_ltBigDecimal
commissions0_gteBigDecimal
commissions0_lteBigDecimal
commissions0_in[BigDecimal!]
commissions0_not_in[BigDecimal!]
commissions0USDBigDecimal
commissions0USD_notBigDecimal
commissions0USD_gtBigDecimal
commissions0USD_ltBigDecimal
commissions0USD_gteBigDecimal
commissions0USD_lteBigDecimal
commissions0USD_in[BigDecimal!]
commissions0USD_not_in[BigDecimal!]
commissions1BigDecimal
commissions1_notBigDecimal
commissions1_gtBigDecimal
commissions1_ltBigDecimal
commissions1_gteBigDecimal
commissions1_lteBigDecimal
commissions1_in[BigDecimal!]
commissions1_not_in[BigDecimal!]
commissions1USDBigDecimal
commissions1USD_notBigDecimal
commissions1USD_gtBigDecimal
commissions1USD_ltBigDecimal
commissions1USD_gteBigDecimal
commissions1USD_lteBigDecimal
commissions1USD_in[BigDecimal!]
commissions1USD_not_in[BigDecimal!]
commissionsUSDBigDecimal
commissionsUSD_notBigDecimal
commissionsUSD_gtBigDecimal
commissionsUSD_ltBigDecimal
commissionsUSD_gteBigDecimal
commissionsUSD_lteBigDecimal
commissionsUSD_in[BigDecimal!]
commissionsUSD_not_in[BigDecimal!]
protocolLoss0BigDecimal
protocolLoss0_notBigDecimal
protocolLoss0_gtBigDecimal
protocolLoss0_ltBigDecimal
protocolLoss0_gteBigDecimal
protocolLoss0_lteBigDecimal
protocolLoss0_in[BigDecimal!]
protocolLoss0_not_in[BigDecimal!]
protocolLoss0USDBigDecimal
protocolLoss0USD_notBigDecimal
protocolLoss0USD_gtBigDecimal
protocolLoss0USD_ltBigDecimal
protocolLoss0USD_gteBigDecimal
protocolLoss0USD_lteBigDecimal
protocolLoss0USD_in[BigDecimal!]
protocolLoss0USD_not_in[BigDecimal!]
protocolLoss1BigDecimal
protocolLoss1_notBigDecimal
protocolLoss1_gtBigDecimal
protocolLoss1_ltBigDecimal
protocolLoss1_gteBigDecimal
protocolLoss1_lteBigDecimal
protocolLoss1_in[BigDecimal!]
protocolLoss1_not_in[BigDecimal!]
protocolLoss1USDBigDecimal
protocolLoss1USD_notBigDecimal
protocolLoss1USD_gtBigDecimal
protocolLoss1USD_ltBigDecimal
protocolLoss1USD_gteBigDecimal
protocolLoss1USD_lteBigDecimal
protocolLoss1USD_in[BigDecimal!]
protocolLoss1USD_not_in[BigDecimal!]
protocolLossUSDBigDecimal
protocolLossUSD_notBigDecimal
protocolLossUSD_gtBigDecimal
protocolLossUSD_ltBigDecimal
protocolLossUSD_gteBigDecimal
protocolLossUSD_lteBigDecimal
protocolLossUSD_in[BigDecimal!]
protocolLossUSD_not_in[BigDecimal!]
chunks_Chunk_filter
_change_blockBlockChangedFilter

Filter for the block changed event.

and[PanopticPool_filter]
or[PanopticPool_filter]

PoolDayData_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
dateInt
date_notInt
date_gtInt
date_ltInt
date_gteInt
date_lteInt
date_in[Int!]
date_not_in[Int!]
txCountBigInt
txCount_notBigInt
txCount_gtBigInt
txCount_ltBigInt
txCount_gteBigInt
txCount_lteBigInt
txCount_in[BigInt!]
txCount_not_in[BigInt!]
liquidityBigInt
liquidity_notBigInt
liquidity_gtBigInt
liquidity_ltBigInt
liquidity_gteBigInt
liquidity_lteBigInt
liquidity_in[BigInt!]
liquidity_not_in[BigInt!]
token0PriceBigDecimal
token0Price_notBigDecimal
token0Price_gtBigDecimal
token0Price_ltBigDecimal
token0Price_gteBigDecimal
token0Price_lteBigDecimal
token0Price_in[BigDecimal!]
token0Price_not_in[BigDecimal!]
token1PriceBigDecimal
token1Price_notBigDecimal
token1Price_gtBigDecimal
token1Price_ltBigDecimal
token1Price_gteBigDecimal
token1Price_lteBigDecimal
token1Price_in[BigDecimal!]
token1Price_not_in[BigDecimal!]
volumeToken0BigDecimal
volumeToken0_notBigDecimal
volumeToken0_gtBigDecimal
volumeToken0_ltBigDecimal
volumeToken0_gteBigDecimal
volumeToken0_lteBigDecimal
volumeToken0_in[BigDecimal!]
volumeToken0_not_in[BigDecimal!]
volumeToken1BigDecimal
volumeToken1_notBigDecimal
volumeToken1_gtBigDecimal
volumeToken1_ltBigDecimal
volumeToken1_gteBigDecimal
volumeToken1_lteBigDecimal
volumeToken1_in[BigDecimal!]
volumeToken1_not_in[BigDecimal!]
volumeUSDBigDecimal
volumeUSD_notBigDecimal
volumeUSD_gtBigDecimal
volumeUSD_ltBigDecimal
volumeUSD_gteBigDecimal
volumeUSD_lteBigDecimal
volumeUSD_in[BigDecimal!]
volumeUSD_not_in[BigDecimal!]
feesUSDBigDecimal
feesUSD_notBigDecimal
feesUSD_gtBigDecimal
feesUSD_ltBigDecimal
feesUSD_gteBigDecimal
feesUSD_lteBigDecimal
feesUSD_in[BigDecimal!]
feesUSD_not_in[BigDecimal!]
openBigDecimal
open_notBigDecimal
open_gtBigDecimal
open_ltBigDecimal
open_gteBigDecimal
open_lteBigDecimal
open_in[BigDecimal!]
open_not_in[BigDecimal!]
highBigDecimal
high_notBigDecimal
high_gtBigDecimal
high_ltBigDecimal
high_gteBigDecimal
high_lteBigDecimal
high_in[BigDecimal!]
high_not_in[BigDecimal!]
lowBigDecimal
low_notBigDecimal
low_gtBigDecimal
low_ltBigDecimal
low_gteBigDecimal
low_lteBigDecimal
low_in[BigDecimal!]
low_not_in[BigDecimal!]
closeBigDecimal
close_notBigDecimal
close_gtBigDecimal
close_ltBigDecimal
close_gteBigDecimal
close_lteBigDecimal
close_in[BigDecimal!]
close_not_in[BigDecimal!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[PoolDayData_filter]
or[PoolDayData_filter]

PoolHourData_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
txCountBigInt
txCount_notBigInt
txCount_gtBigInt
txCount_ltBigInt
txCount_gteBigInt
txCount_lteBigInt
txCount_in[BigInt!]
txCount_not_in[BigInt!]
liquidityBigInt
liquidity_notBigInt
liquidity_gtBigInt
liquidity_ltBigInt
liquidity_gteBigInt
liquidity_lteBigInt
liquidity_in[BigInt!]
liquidity_not_in[BigInt!]
token0PriceBigDecimal
token0Price_notBigDecimal
token0Price_gtBigDecimal
token0Price_ltBigDecimal
token0Price_gteBigDecimal
token0Price_lteBigDecimal
token0Price_in[BigDecimal!]
token0Price_not_in[BigDecimal!]
token1PriceBigDecimal
token1Price_notBigDecimal
token1Price_gtBigDecimal
token1Price_ltBigDecimal
token1Price_gteBigDecimal
token1Price_lteBigDecimal
token1Price_in[BigDecimal!]
token1Price_not_in[BigDecimal!]
volumeToken0BigDecimal
volumeToken0_notBigDecimal
volumeToken0_gtBigDecimal
volumeToken0_ltBigDecimal
volumeToken0_gteBigDecimal
volumeToken0_lteBigDecimal
volumeToken0_in[BigDecimal!]
volumeToken0_not_in[BigDecimal!]
volumeToken1BigDecimal
volumeToken1_notBigDecimal
volumeToken1_gtBigDecimal
volumeToken1_ltBigDecimal
volumeToken1_gteBigDecimal
volumeToken1_lteBigDecimal
volumeToken1_in[BigDecimal!]
volumeToken1_not_in[BigDecimal!]
volumeUSDBigDecimal
volumeUSD_notBigDecimal
volumeUSD_gtBigDecimal
volumeUSD_ltBigDecimal
volumeUSD_gteBigDecimal
volumeUSD_lteBigDecimal
volumeUSD_in[BigDecimal!]
volumeUSD_not_in[BigDecimal!]
openBigDecimal
open_notBigDecimal
open_gtBigDecimal
open_ltBigDecimal
open_gteBigDecimal
open_lteBigDecimal
open_in[BigDecimal!]
open_not_in[BigDecimal!]
highBigDecimal
high_notBigDecimal
high_gtBigDecimal
high_ltBigDecimal
high_gteBigDecimal
high_lteBigDecimal
high_in[BigDecimal!]
high_not_in[BigDecimal!]
lowBigDecimal
low_notBigDecimal
low_gtBigDecimal
low_ltBigDecimal
low_gteBigDecimal
low_lteBigDecimal
low_in[BigDecimal!]
low_not_in[BigDecimal!]
closeBigDecimal
close_notBigDecimal
close_gtBigDecimal
close_ltBigDecimal
close_gteBigDecimal
close_lteBigDecimal
close_in[BigDecimal!]
close_not_in[BigDecimal!]
periodStartUnixInt
periodStartUnix_notInt
periodStartUnix_gtInt
periodStartUnix_ltInt
periodStartUnix_gteInt
periodStartUnix_lteInt
periodStartUnix_in[Int!]
periodStartUnix_not_in[Int!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[PoolHourData_filter]
or[PoolHourData_filter]

Pool_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
poolIdString
poolId_notString
poolId_gtString
poolId_ltString
poolId_gteString
poolId_lteString
poolId_in[String!]
poolId_not_in[String!]
poolId_containsString
poolId_contains_nocaseString
poolId_not_containsString
poolId_not_contains_nocaseString
poolId_starts_withString
poolId_starts_with_nocaseString
poolId_not_starts_withString
poolId_not_starts_with_nocaseString
poolId_ends_withString
poolId_ends_with_nocaseString
poolId_not_ends_withString
poolId_not_ends_with_nocaseString
feeTierBigInt
feeTier_notBigInt
feeTier_gtBigInt
feeTier_ltBigInt
feeTier_gteBigInt
feeTier_lteBigInt
feeTier_in[BigInt!]
feeTier_not_in[BigInt!]
tickSpacingBigInt
tickSpacing_notBigInt
tickSpacing_gtBigInt
tickSpacing_ltBigInt
tickSpacing_gteBigInt
tickSpacing_lteBigInt
tickSpacing_in[BigInt!]
tickSpacing_not_in[BigInt!]
token0String
token0_notString
token0_gtString
token0_ltString
token0_gteString
token0_lteString
token0_in[String!]
token0_not_in[String!]
token0_containsString
token0_contains_nocaseString
token0_not_containsString
token0_not_contains_nocaseString
token0_starts_withString
token0_starts_with_nocaseString
token0_not_starts_withString
token0_not_starts_with_nocaseString
token0_ends_withString
token0_ends_with_nocaseString
token0_not_ends_withString
token0_not_ends_with_nocaseString
token0_Token_filter
token1String
token1_notString
token1_gtString
token1_ltString
token1_gteString
token1_lteString
token1_in[String!]
token1_not_in[String!]
token1_containsString
token1_contains_nocaseString
token1_not_containsString
token1_not_contains_nocaseString
token1_starts_withString
token1_starts_with_nocaseString
token1_not_starts_withString
token1_not_starts_with_nocaseString
token1_ends_withString
token1_ends_with_nocaseString
token1_not_ends_withString
token1_not_ends_with_nocaseString
token1_Token_filter
txCountBigInt
txCount_notBigInt
txCount_gtBigInt
txCount_ltBigInt
txCount_gteBigInt
txCount_lteBigInt
txCount_in[BigInt!]
txCount_not_in[BigInt!]
liquidityBigInt
liquidity_notBigInt
liquidity_gtBigInt
liquidity_ltBigInt
liquidity_gteBigInt
liquidity_lteBigInt
liquidity_in[BigInt!]
liquidity_not_in[BigInt!]
sqrtPriceBigInt
sqrtPrice_notBigInt
sqrtPrice_gtBigInt
sqrtPrice_ltBigInt
sqrtPrice_gteBigInt
sqrtPrice_lteBigInt
sqrtPrice_in[BigInt!]
sqrtPrice_not_in[BigInt!]
tickBigInt
tick_notBigInt
tick_gtBigInt
tick_ltBigInt
tick_gteBigInt
tick_lteBigInt
tick_in[BigInt!]
tick_not_in[BigInt!]
tickLastUpdateTimestampBigInt
tickLastUpdateTimestamp_notBigInt
tickLastUpdateTimestamp_gtBigInt
tickLastUpdateTimestamp_ltBigInt
tickLastUpdateTimestamp_gteBigInt
tickLastUpdateTimestamp_lteBigInt
tickLastUpdateTimestamp_in[BigInt!]
tickLastUpdateTimestamp_not_in[BigInt!]
tickLastUpdateBlockNumberBigInt
tickLastUpdateBlockNumber_notBigInt
tickLastUpdateBlockNumber_gtBigInt
tickLastUpdateBlockNumber_ltBigInt
tickLastUpdateBlockNumber_gteBigInt
tickLastUpdateBlockNumber_lteBigInt
tickLastUpdateBlockNumber_in[BigInt!]
tickLastUpdateBlockNumber_not_in[BigInt!]
poolHourData_PoolHourData_filter
poolDayData_PoolDayData_filter
token0PriceBigDecimal
token0Price_notBigDecimal
token0Price_gtBigDecimal
token0Price_ltBigDecimal
token0Price_gteBigDecimal
token0Price_lteBigDecimal
token0Price_in[BigDecimal!]
token0Price_not_in[BigDecimal!]
token1PriceBigDecimal
token1Price_notBigDecimal
token1Price_gtBigDecimal
token1Price_ltBigDecimal
token1Price_gteBigDecimal
token1Price_lteBigDecimal
token1Price_in[BigDecimal!]
token1Price_not_in[BigDecimal!]
totalValueLockedToken0BigDecimal
totalValueLockedToken0_notBigDecimal
totalValueLockedToken0_gtBigDecimal
totalValueLockedToken0_ltBigDecimal
totalValueLockedToken0_gteBigDecimal
totalValueLockedToken0_lteBigDecimal
totalValueLockedToken0_in[BigDecimal!]
totalValueLockedToken0_not_in[BigDecimal!]
totalValueLockedToken1BigDecimal
totalValueLockedToken1_notBigDecimal
totalValueLockedToken1_gtBigDecimal
totalValueLockedToken1_ltBigDecimal
totalValueLockedToken1_gteBigDecimal
totalValueLockedToken1_lteBigDecimal
totalValueLockedToken1_in[BigDecimal!]
totalValueLockedToken1_not_in[BigDecimal!]
totalValueLockedETHBigDecimal
totalValueLockedETH_notBigDecimal
totalValueLockedETH_gtBigDecimal
totalValueLockedETH_ltBigDecimal
totalValueLockedETH_gteBigDecimal
totalValueLockedETH_lteBigDecimal
totalValueLockedETH_in[BigDecimal!]
totalValueLockedETH_not_in[BigDecimal!]
totalValueLockedUSDBigDecimal
totalValueLockedUSD_notBigDecimal
totalValueLockedUSD_gtBigDecimal
totalValueLockedUSD_ltBigDecimal
totalValueLockedUSD_gteBigDecimal
totalValueLockedUSD_lteBigDecimal
totalValueLockedUSD_in[BigDecimal!]
totalValueLockedUSD_not_in[BigDecimal!]
panopticPoolString
panopticPool_notString
panopticPool_gtString
panopticPool_ltString
panopticPool_gteString
panopticPool_lteString
panopticPool_in[String!]
panopticPool_not_in[String!]
panopticPool_containsString
panopticPool_contains_nocaseString
panopticPool_not_containsString
panopticPool_not_contains_nocaseString
panopticPool_starts_withString
panopticPool_starts_with_nocaseString
panopticPool_not_starts_withString
panopticPool_not_starts_with_nocaseString
panopticPool_ends_withString
panopticPool_ends_with_nocaseString
panopticPool_not_ends_withString
panopticPool_not_ends_with_nocaseString
panopticPool_PanopticPool_filter
_change_blockBlockChangedFilter

Filter for the block changed event.

and[Pool_filter]
or[Pool_filter]

PremiumSettled_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
hashString
hash_notString
hash_gtString
hash_ltString
hash_gteString
hash_lteString
hash_in[String!]
hash_not_in[String!]
hash_containsString
hash_contains_nocaseString
hash_not_containsString
hash_not_contains_nocaseString
hash_starts_withString
hash_starts_with_nocaseString
hash_not_starts_withString
hash_not_starts_with_nocaseString
hash_ends_withString
hash_ends_with_nocaseString
hash_not_ends_withString
hash_not_ends_with_nocaseString
logIndexBigInt
logIndex_notBigInt
logIndex_gtBigInt
logIndex_ltBigInt
logIndex_gteBigInt
logIndex_lteBigInt
logIndex_in[BigInt!]
logIndex_not_in[BigInt!]
eventTypeEventType
eventType_notEventType
eventType_in[EventType!]
eventType_not_in[EventType!]
fromString
from_notString
from_gtString
from_ltString
from_gteString
from_lteString
from_in[String!]
from_not_in[String!]
from_containsString
from_contains_nocaseString
from_not_containsString
from_not_contains_nocaseString
from_starts_withString
from_starts_with_nocaseString
from_not_starts_withString
from_not_starts_with_nocaseString
from_ends_withString
from_ends_with_nocaseString
from_not_ends_withString
from_not_ends_with_nocaseString
toString
to_notString
to_gtString
to_ltString
to_gteString
to_lteString
to_in[String!]
to_not_in[String!]
to_containsString
to_contains_nocaseString
to_not_containsString
to_not_contains_nocaseString
to_starts_withString
to_starts_with_nocaseString
to_not_starts_withString
to_not_starts_with_nocaseString
to_ends_withString
to_ends_with_nocaseString
to_not_ends_withString
to_not_ends_with_nocaseString
blockNumberBigInt
blockNumber_notBigInt
blockNumber_gtBigInt
blockNumber_ltBigInt
blockNumber_gteBigInt
blockNumber_lteBigInt
blockNumber_in[BigInt!]
blockNumber_not_in[BigInt!]
timestampBigInt
timestamp_notBigInt
timestamp_gtBigInt
timestamp_ltBigInt
timestamp_gteBigInt
timestamp_lteBigInt
timestamp_in[BigInt!]
timestamp_not_in[BigInt!]
gasUsedBigInt
gasUsed_notBigInt
gasUsed_gtBigInt
gasUsed_ltBigInt
gasUsed_gteBigInt
gasUsed_lteBigInt
gasUsed_in[BigInt!]
gasUsed_not_in[BigInt!]
gasPriceBigInt
gasPrice_notBigInt
gasPrice_gtBigInt
gasPrice_ltBigInt
gasPrice_gteBigInt
gasPrice_lteBigInt
gasPrice_in[BigInt!]
gasPrice_not_in[BigInt!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
userString
user_notString
user_gtString
user_ltString
user_gteString
user_lteString
user_in[String!]
user_not_in[String!]
user_containsString
user_contains_nocaseString
user_not_containsString
user_not_contains_nocaseString
user_starts_withString
user_starts_with_nocaseString
user_not_starts_withString
user_not_starts_with_nocaseString
user_ends_withString
user_ends_with_nocaseString
user_not_ends_withString
user_not_ends_with_nocaseString
user_Account_filter
tokenIdString
tokenId_notString
tokenId_gtString
tokenId_ltString
tokenId_gteString
tokenId_lteString
tokenId_in[String!]
tokenId_not_in[String!]
tokenId_containsString
tokenId_contains_nocaseString
tokenId_not_containsString
tokenId_not_contains_nocaseString
tokenId_starts_withString
tokenId_starts_with_nocaseString
tokenId_not_starts_withString
tokenId_not_starts_with_nocaseString
tokenId_ends_withString
tokenId_ends_with_nocaseString
tokenId_not_ends_withString
tokenId_not_ends_with_nocaseString
tokenId_TokenId_filter
settledAmountsBigInt
settledAmounts_notBigInt
settledAmounts_gtBigInt
settledAmounts_ltBigInt
settledAmounts_gteBigInt
settledAmounts_lteBigInt
settledAmounts_in[BigInt!]
settledAmounts_not_in[BigInt!]
settledAmount0BigInt
settledAmount0_notBigInt
settledAmount0_gtBigInt
settledAmount0_ltBigInt
settledAmount0_gteBigInt
settledAmount0_lteBigInt
settledAmount0_in[BigInt!]
settledAmount0_not_in[BigInt!]
settledAmount1BigInt
settledAmount1_notBigInt
settledAmount1_gtBigInt
settledAmount1_ltBigInt
settledAmount1_gteBigInt
settledAmount1_lteBigInt
settledAmount1_in[BigInt!]
settledAmount1_not_in[BigInt!]
panopticPoolString
panopticPool_notString
panopticPool_gtString
panopticPool_ltString
panopticPool_gteString
panopticPool_lteString
panopticPool_in[String!]
panopticPool_not_in[String!]
panopticPool_containsString
panopticPool_contains_nocaseString
panopticPool_not_containsString
panopticPool_not_contains_nocaseString
panopticPool_starts_withString
panopticPool_starts_with_nocaseString
panopticPool_not_starts_withString
panopticPool_not_starts_with_nocaseString
panopticPool_ends_withString
panopticPool_ends_with_nocaseString
panopticPool_not_ends_withString
panopticPool_not_ends_with_nocaseString
panopticPool_PanopticPool_filter
_change_blockBlockChangedFilter

Filter for the block changed event.

and[PremiumSettled_filter]
or[PremiumSettled_filter]

TokenId_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
idHexStringString
idHexString_notString
idHexString_gtString
idHexString_ltString
idHexString_gteString
idHexString_lteString
idHexString_in[String!]
idHexString_not_in[String!]
idHexString_containsString
idHexString_contains_nocaseString
idHexString_not_containsString
idHexString_not_contains_nocaseString
idHexString_starts_withString
idHexString_starts_with_nocaseString
idHexString_not_starts_withString
idHexString_not_starts_with_nocaseString
idHexString_ends_withString
idHexString_ends_with_nocaseString
idHexString_not_ends_withString
idHexString_not_ends_with_nocaseString
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
tokenCountBigInt
tokenCount_notBigInt
tokenCount_gtBigInt
tokenCount_ltBigInt
tokenCount_gteBigInt
tokenCount_lteBigInt
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_blockBlockChangedFilter

Filter for the block changed event.

and[TokenId_filter]
or[TokenId_filter]

Token_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
decimalsBigInt
decimals_notBigInt
decimals_gtBigInt
decimals_ltBigInt
decimals_gteBigInt
decimals_lteBigInt
decimals_in[BigInt!]
decimals_not_in[BigInt!]
nameString
name_notString
name_gtString
name_ltString
name_gteString
name_lteString
name_in[String!]
name_not_in[String!]
name_containsString
name_contains_nocaseString
name_not_containsString
name_not_contains_nocaseString
name_starts_withString
name_starts_with_nocaseString
name_not_starts_withString
name_not_starts_with_nocaseString
name_ends_withString
name_ends_with_nocaseString
name_not_ends_withString
name_not_ends_with_nocaseString
symbolString
symbol_notString
symbol_gtString
symbol_ltString
symbol_gteString
symbol_lteString
symbol_in[String!]
symbol_not_in[String!]
symbol_containsString
symbol_contains_nocaseString
symbol_not_containsString
symbol_not_contains_nocaseString
symbol_starts_withString
symbol_starts_with_nocaseString
symbol_not_starts_withString
symbol_not_starts_with_nocaseString
symbol_ends_withString
symbol_ends_with_nocaseString
symbol_not_ends_withString
symbol_not_ends_with_nocaseString
totalSupplyBigInt
totalSupply_notBigInt
totalSupply_gtBigInt
totalSupply_ltBigInt
totalSupply_gteBigInt
totalSupply_lteBigInt
totalSupply_in[BigInt!]
totalSupply_not_in[BigInt!]
txCountBigInt
txCount_notBigInt
txCount_gtBigInt
txCount_ltBigInt
txCount_gteBigInt
txCount_lteBigInt
txCount_in[BigInt!]
txCount_not_in[BigInt!]
derivedETHBigDecimal
derivedETH_notBigDecimal
derivedETH_gtBigDecimal
derivedETH_ltBigDecimal
derivedETH_gteBigDecimal
derivedETH_lteBigDecimal
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_blockBlockChangedFilter

Filter for the block changed event.

and[Token_filter]
or[Token_filter]

TokenizedPositionBurnt_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
hashString
hash_notString
hash_gtString
hash_ltString
hash_gteString
hash_lteString
hash_in[String!]
hash_not_in[String!]
hash_containsString
hash_contains_nocaseString
hash_not_containsString
hash_not_contains_nocaseString
hash_starts_withString
hash_starts_with_nocaseString
hash_not_starts_withString
hash_not_starts_with_nocaseString
hash_ends_withString
hash_ends_with_nocaseString
hash_not_ends_withString
hash_not_ends_with_nocaseString
logIndexBigInt
logIndex_notBigInt
logIndex_gtBigInt
logIndex_ltBigInt
logIndex_gteBigInt
logIndex_lteBigInt
logIndex_in[BigInt!]
logIndex_not_in[BigInt!]
eventTypeEventType
eventType_notEventType
eventType_in[EventType!]
eventType_not_in[EventType!]
fromString
from_notString
from_gtString
from_ltString
from_gteString
from_lteString
from_in[String!]
from_not_in[String!]
from_containsString
from_contains_nocaseString
from_not_containsString
from_not_contains_nocaseString
from_starts_withString
from_starts_with_nocaseString
from_not_starts_withString
from_not_starts_with_nocaseString
from_ends_withString
from_ends_with_nocaseString
from_not_ends_withString
from_not_ends_with_nocaseString
toString
to_notString
to_gtString
to_ltString
to_gteString
to_lteString
to_in[String!]
to_not_in[String!]
to_containsString
to_contains_nocaseString
to_not_containsString
to_not_contains_nocaseString
to_starts_withString
to_starts_with_nocaseString
to_not_starts_withString
to_not_starts_with_nocaseString
to_ends_withString
to_ends_with_nocaseString
to_not_ends_withString
to_not_ends_with_nocaseString
blockNumberBigInt
blockNumber_notBigInt
blockNumber_gtBigInt
blockNumber_ltBigInt
blockNumber_gteBigInt
blockNumber_lteBigInt
blockNumber_in[BigInt!]
blockNumber_not_in[BigInt!]
timestampBigInt
timestamp_notBigInt
timestamp_gtBigInt
timestamp_ltBigInt
timestamp_gteBigInt
timestamp_lteBigInt
timestamp_in[BigInt!]
timestamp_not_in[BigInt!]
gasUsedBigInt
gasUsed_notBigInt
gasUsed_gtBigInt
gasUsed_ltBigInt
gasUsed_gteBigInt
gasUsed_lteBigInt
gasUsed_in[BigInt!]
gasUsed_not_in[BigInt!]
gasPriceBigInt
gasPrice_notBigInt
gasPrice_gtBigInt
gasPrice_ltBigInt
gasPrice_gteBigInt
gasPrice_lteBigInt
gasPrice_in[BigInt!]
gasPrice_not_in[BigInt!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
recipientString
recipient_notString
recipient_gtString
recipient_ltString
recipient_gteString
recipient_lteString
recipient_in[String!]
recipient_not_in[String!]
recipient_containsString
recipient_contains_nocaseString
recipient_not_containsString
recipient_not_contains_nocaseString
recipient_starts_withString
recipient_starts_with_nocaseString
recipient_not_starts_withString
recipient_not_starts_with_nocaseString
recipient_ends_withString
recipient_ends_with_nocaseString
recipient_not_ends_withString
recipient_not_ends_with_nocaseString
recipient_Account_filter
positionSizeBigInt
positionSize_notBigInt
positionSize_gtBigInt
positionSize_ltBigInt
positionSize_gteBigInt
positionSize_lteBigInt
positionSize_in[BigInt!]
positionSize_not_in[BigInt!]
tokenIdString
tokenId_notString
tokenId_gtString
tokenId_ltString
tokenId_gteString
tokenId_lteString
tokenId_in[String!]
tokenId_not_in[String!]
tokenId_containsString
tokenId_contains_nocaseString
tokenId_not_containsString
tokenId_not_contains_nocaseString
tokenId_starts_withString
tokenId_starts_with_nocaseString
tokenId_not_starts_withString
tokenId_not_starts_with_nocaseString
tokenId_ends_withString
tokenId_ends_with_nocaseString
tokenId_not_ends_withString
tokenId_not_ends_with_nocaseString
tokenId_TokenId_filter
_change_blockBlockChangedFilter

Filter for the block changed event.

and[TokenizedPositionBurnt_filter]
or[TokenizedPositionBurnt_filter]

TokenizedPositionMinted_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
hashString
hash_notString
hash_gtString
hash_ltString
hash_gteString
hash_lteString
hash_in[String!]
hash_not_in[String!]
hash_containsString
hash_contains_nocaseString
hash_not_containsString
hash_not_contains_nocaseString
hash_starts_withString
hash_starts_with_nocaseString
hash_not_starts_withString
hash_not_starts_with_nocaseString
hash_ends_withString
hash_ends_with_nocaseString
hash_not_ends_withString
hash_not_ends_with_nocaseString
logIndexBigInt
logIndex_notBigInt
logIndex_gtBigInt
logIndex_ltBigInt
logIndex_gteBigInt
logIndex_lteBigInt
logIndex_in[BigInt!]
logIndex_not_in[BigInt!]
eventTypeEventType
eventType_notEventType
eventType_in[EventType!]
eventType_not_in[EventType!]
fromString
from_notString
from_gtString
from_ltString
from_gteString
from_lteString
from_in[String!]
from_not_in[String!]
from_containsString
from_contains_nocaseString
from_not_containsString
from_not_contains_nocaseString
from_starts_withString
from_starts_with_nocaseString
from_not_starts_withString
from_not_starts_with_nocaseString
from_ends_withString
from_ends_with_nocaseString
from_not_ends_withString
from_not_ends_with_nocaseString
toString
to_notString
to_gtString
to_ltString
to_gteString
to_lteString
to_in[String!]
to_not_in[String!]
to_containsString
to_contains_nocaseString
to_not_containsString
to_not_contains_nocaseString
to_starts_withString
to_starts_with_nocaseString
to_not_starts_withString
to_not_starts_with_nocaseString
to_ends_withString
to_ends_with_nocaseString
to_not_ends_withString
to_not_ends_with_nocaseString
blockNumberBigInt
blockNumber_notBigInt
blockNumber_gtBigInt
blockNumber_ltBigInt
blockNumber_gteBigInt
blockNumber_lteBigInt
blockNumber_in[BigInt!]
blockNumber_not_in[BigInt!]
timestampBigInt
timestamp_notBigInt
timestamp_gtBigInt
timestamp_ltBigInt
timestamp_gteBigInt
timestamp_lteBigInt
timestamp_in[BigInt!]
timestamp_not_in[BigInt!]
gasUsedBigInt
gasUsed_notBigInt
gasUsed_gtBigInt
gasUsed_ltBigInt
gasUsed_gteBigInt
gasUsed_lteBigInt
gasUsed_in[BigInt!]
gasUsed_not_in[BigInt!]
gasPriceBigInt
gasPrice_notBigInt
gasPrice_gtBigInt
gasPrice_ltBigInt
gasPrice_gteBigInt
gasPrice_lteBigInt
gasPrice_in[BigInt!]
gasPrice_not_in[BigInt!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
callerString
caller_notString
caller_gtString
caller_ltString
caller_gteString
caller_lteString
caller_in[String!]
caller_not_in[String!]
caller_containsString
caller_contains_nocaseString
caller_not_containsString
caller_not_contains_nocaseString
caller_starts_withString
caller_starts_with_nocaseString
caller_not_starts_withString
caller_not_starts_with_nocaseString
caller_ends_withString
caller_ends_with_nocaseString
caller_not_ends_withString
caller_not_ends_with_nocaseString
caller_Account_filter
positionSizeBigInt
positionSize_notBigInt
positionSize_gtBigInt
positionSize_ltBigInt
positionSize_gteBigInt
positionSize_lteBigInt
positionSize_in[BigInt!]
positionSize_not_in[BigInt!]
tokenIdString
tokenId_notString
tokenId_gtString
tokenId_ltString
tokenId_gteString
tokenId_lteString
tokenId_in[String!]
tokenId_not_in[String!]
tokenId_containsString
tokenId_contains_nocaseString
tokenId_not_containsString
tokenId_not_contains_nocaseString
tokenId_starts_withString
tokenId_starts_with_nocaseString
tokenId_not_starts_withString
tokenId_not_starts_with_nocaseString
tokenId_ends_withString
tokenId_ends_with_nocaseString
tokenId_not_ends_withString
tokenId_not_ends_with_nocaseString
tokenId_TokenId_filter
_change_blockBlockChangedFilter

Filter for the block changed event.

and[TokenizedPositionMinted_filter]
or[TokenizedPositionMinted_filter]

TokenizedPositionRolled_filter

FieldTypeDescription
idID
id_notID
id_gtID
id_ltID
id_gteID
id_lteID
id_in[ID!]
id_not_in[ID!]
hashString
hash_notString
hash_gtString
hash_ltString
hash_gteString
hash_lteString
hash_in[String!]
hash_not_in[String!]
hash_containsString
hash_contains_nocaseString
hash_not_containsString
hash_not_contains_nocaseString
hash_starts_withString
hash_starts_with_nocaseString
hash_not_starts_withString
hash_not_starts_with_nocaseString
hash_ends_withString
hash_ends_with_nocaseString
hash_not_ends_withString
hash_not_ends_with_nocaseString
logIndexBigInt
logIndex_notBigInt
logIndex_gtBigInt
logIndex_ltBigInt
logIndex_gteBigInt
logIndex_lteBigInt
logIndex_in[BigInt!]
logIndex_not_in[BigInt!]
eventTypeEventType
eventType_notEventType
eventType_in[EventType!]
eventType_not_in[EventType!]
fromString
from_notString
from_gtString
from_ltString
from_gteString
from_lteString
from_in[String!]
from_not_in[String!]
from_containsString
from_contains_nocaseString
from_not_containsString
from_not_contains_nocaseString
from_starts_withString
from_starts_with_nocaseString
from_not_starts_withString
from_not_starts_with_nocaseString
from_ends_withString
from_ends_with_nocaseString
from_not_ends_withString
from_not_ends_with_nocaseString
toString
to_notString
to_gtString
to_ltString
to_gteString
to_lteString
to_in[String!]
to_not_in[String!]
to_containsString
to_contains_nocaseString
to_not_containsString
to_not_contains_nocaseString
to_starts_withString
to_starts_with_nocaseString
to_not_starts_withString
to_not_starts_with_nocaseString
to_ends_withString
to_ends_with_nocaseString
to_not_ends_withString
to_not_ends_with_nocaseString
blockNumberBigInt
blockNumber_notBigInt
blockNumber_gtBigInt
blockNumber_ltBigInt
blockNumber_gteBigInt
blockNumber_lteBigInt
blockNumber_in[BigInt!]
blockNumber_not_in[BigInt!]
timestampBigInt
timestamp_notBigInt
timestamp_gtBigInt
timestamp_ltBigInt
timestamp_gteBigInt
timestamp_lteBigInt
timestamp_in[BigInt!]
timestamp_not_in[BigInt!]
gasUsedBigInt
gasUsed_notBigInt
gasUsed_gtBigInt
gasUsed_ltBigInt
gasUsed_gteBigInt
gasUsed_lteBigInt
gasUsed_in[BigInt!]
gasUsed_not_in[BigInt!]
gasPriceBigInt
gasPrice_notBigInt
gasPrice_gtBigInt
gasPrice_ltBigInt
gasPrice_gteBigInt
gasPrice_lteBigInt
gasPrice_in[BigInt!]
gasPrice_not_in[BigInt!]
poolString
pool_notString
pool_gtString
pool_ltString
pool_gteString
pool_lteString
pool_in[String!]
pool_not_in[String!]
pool_containsString
pool_contains_nocaseString
pool_not_containsString
pool_not_contains_nocaseString
pool_starts_withString
pool_starts_with_nocaseString
pool_not_starts_withString
pool_not_starts_with_nocaseString
pool_ends_withString
pool_ends_with_nocaseString
pool_not_ends_withString
pool_not_ends_with_nocaseString
pool_Pool_filter
recipientString
recipient_notString
recipient_gtString
recipient_ltString
recipient_gteString
recipient_lteString
recipient_in[String!]
recipient_not_in[String!]
recipient_containsString
recipient_contains_nocaseString
recipient_not_containsString
recipient_not_contains_nocaseString
recipient_starts_withString
recipient_starts_with_nocaseString
recipient_not_starts_withString
recipient_not_starts_with_nocaseString
recipient_ends_withString
recipient_ends_with_nocaseString
recipient_not_ends_withString
recipient_not_ends_with_nocaseString
recipient_Account_filter
oldTokenIdString
oldTokenId_notString
oldTokenId_gtString
oldTokenId_ltString
oldTokenId_gteString
oldTokenId_lteString
oldTokenId_in[String!]
oldTokenId_not_in[String!]
oldTokenId_containsString
oldTokenId_contains_nocaseString
oldTokenId_not_containsString
oldTokenId_not_contains_nocaseString
oldTokenId_starts_withString
oldTokenId_starts_with_nocaseString
oldTokenId_not_starts_withString
oldTokenId_not_starts_with_nocaseString
oldTokenId_ends_withString
oldTokenId_ends_with_nocaseString
oldTokenId_not_ends_withString
oldTokenId_not_ends_with_nocaseString
oldTokenId_TokenId_filter
newTokenIdString
newTokenId_notString
newTokenId_gtString
newTokenId_ltString
newTokenId_gteString
newTokenId_lteString
newTokenId_in[String!]
newTokenId_not_in[String!]
newTokenId_containsString
newTokenId_contains_nocaseString
newTokenId_not_containsString
newTokenId_not_contains_nocaseString
newTokenId_starts_withString
newTokenId_starts_with_nocaseString
newTokenId_not_starts_withString
newTokenId_not_starts_with_nocaseString
newTokenId_ends_withString
newTokenId_ends_with_nocaseString
newTokenId_not_ends_withString
newTokenId_not_ends_with_nocaseString
newTokenId_TokenId_filter
positionSizeBigInt
positionSize_notBigInt
positionSize_gtBigInt
positionSize_ltBigInt
positionSize_gteBigInt
positionSize_lteBigInt
positionSize_in[BigInt!]
positionSize_not_in[BigInt!]
_change_blockBlockChangedFilter

Filter for the block changed event.

and[TokenizedPositionRolled_filter]
or[TokenizedPositionRolled_filter]

Enums

AccountBalance_orderBy

ValueDescription
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__commissions0
panopticPoolAccount__commissions1
panopticPoolAccount__sharePriceAtLastTransfer0
panopticPoolAccount__sharePriceAtLastTransfer1
panopticPoolAccount__commissionsSinceLastTransfer0
panopticPoolAccount__commissionsSinceLastTransfer1
panopticPoolAccount__isLiquidated
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

ValueDescription
id
hash
logIndex
eventType
from
to
blockNumber
timestamp
gasUsed
gasPrice
pool
pool__id
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
liquidator
liquidator__id
liquidatee
liquidatee__id
bonusAmounts
liquidationBonus0
liquidationBonus1
liquidationBonusUSD
tickAt
panopticPool
panopticPool__id
panopticPool__txCount
panopticPool__feeTier
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__commissions0
panopticPool__commissions0USD
panopticPool__commissions1
panopticPool__commissions1USD
panopticPool__commissionsUSD
panopticPool__protocolLoss0
panopticPool__protocolLoss0USD
panopticPool__protocolLoss1
panopticPool__protocolLoss1USD
panopticPool__protocolLossUSD
optionBurns

Account_orderBy

ValueDescription
id
accountBalances
panopticPoolAccount

Aggregation_interval

ValueDescription
hour
day

Bundle_orderBy

ValueDescription
id
ethPriceUSD

Burn_orderBy

ValueDescription
id
hash
logIndex
eventType
from
to
blockNumber
timestamp
gasUsed
gasPrice
pool
pool__id
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
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

ValueDescription
id
owner
owner__id
manager
manager__id
tickLower
tickUpper
strike
width
tokenType
pool
pool__id
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
panopticPool
panopticPool__id
panopticPool__txCount
panopticPool__feeTier
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__commissions0
panopticPool__commissions0USD
panopticPool__commissions1
panopticPool__commissions1USD
panopticPool__commissionsUSD
panopticPool__protocolLoss0
panopticPool__protocolLoss0USD
panopticPool__protocolLoss1
panopticPool__protocolLoss1USD
panopticPool__protocolLossUSD
netLiquidity
shortLiquidity
longLiquidity
shortCounts
longCounts
totalLiquidity
legs

CollateralDayData_orderBy

ValueDescription
id
collateral
collateral__id
collateral__totalShares
collateral__totalAssets
collateral__poolAssets
collateral__inAMM
collateral__poolUtilization
collateral__index
collateral__previousSharePrice
collateral__preLiquidationSharePrice
date
totalShares
totalAssets
sharePrice

CollateralDeposit_orderBy

ValueDescription
id
hash
logIndex
eventType
from
to
blockNumber
timestamp
gasUsed
gasPrice
pool
pool__id
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
sender
sender__id
owner
owner__id
assets
shares
collateral
collateral__id
collateral__totalShares
collateral__totalAssets
collateral__poolAssets
collateral__inAMM
collateral__poolUtilization
collateral__index
collateral__previousSharePrice
collateral__preLiquidationSharePrice
tickAtDeposit
tokenDerivedEthAtDeposit
ethPriceUSDAtDeposit

CollateralWithdraw_orderBy

ValueDescription
id
hash
logIndex
eventType
from
to
blockNumber
timestamp
gasUsed
gasPrice
pool
pool__id
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
sender
sender__id
receiver
receiver__id
owner
owner__id
assets
shares
collateral
collateral__id
collateral__totalShares
collateral__totalAssets
collateral__poolAssets
collateral__inAMM
collateral__poolUtilization
collateral__index
collateral__previousSharePrice
collateral__preLiquidationSharePrice
tickAtWithdraw
tokenDerivedEthAtWithdraw
ethPriceUSDAtWithdraw

Collateral_orderBy

ValueDescription
id
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__mintVolume0
panopticPool__mintVolume0USD
panopticPool__burnVolume0
panopticPool__burnVolume0USD
panopticPool__totalVolume0
panopticPool__totalVolume0USD
panopticPool__mintVolume1
panopticPool__mintVolume1USD
panopticPool__burnVolume1
panopticPool__burnVolume1USD
panopticPool__totalVolume1
panopticPool__totalVolume1USD
panopticPool__commissions0
panopticPool__commissions0USD
panopticPool__commissions1
panopticPool__commissions1USD
panopticPool__commissionsUSD
panopticPool__protocolLoss0
panopticPool__protocolLoss0USD
panopticPool__protocolLoss1
panopticPool__protocolLoss1USD
panopticPool__protocolLossUSD
index
collateralDayData
previousSharePrice
preLiquidationSharePrice

Collect_orderBy

ValueDescription
id
hash
logIndex
eventType
from
to
blockNumber
timestamp
gasUsed
gasPrice
pool
pool__id
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
owner
owner__id
recipient
recipient__id
tickLower
tickUpper
amount0
amount1

EventType

ValueDescription
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
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 settleLongPremium)

Event_orderBy

ValueDescription
id
hash
logIndex
from
to
blockNumber
timestamp
gasUsed
gasPrice
eventType
pool
pool__id
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

Factory_orderBy

ValueDescription
id
poolCount
owner
opBackfilled

ForcedExercise_orderBy

ValueDescription
id
hash
logIndex
eventType
from
to
blockNumber
timestamp
gasUsed
gasPrice
pool
pool__id
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
exercisor
exercisor__id
user
user__id
tokenId
exerciseFee
exerciseFee0
exerciseFee1
exerciseFeeUSD
tickAt
panopticPool
panopticPool__id
panopticPool__txCount
panopticPool__feeTier
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__commissions0
panopticPool__commissions0USD
panopticPool__commissions1
panopticPool__commissions1USD
panopticPool__commissionsUSD
panopticPool__protocolLoss0
panopticPool__protocolLoss0USD
panopticPool__protocolLoss1
panopticPool__protocolLoss1USD
panopticPool__protocolLossUSD
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__premia
optionBurn__premium0
optionBurn__premium1

LegLiquidities_orderBy

ValueDescription
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

ValueDescription
id
index
idHexString
pool
pool__id
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
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

ValueDescription
id
hash
logIndex
eventType
from
to
blockNumber
timestamp
gasUsed
gasPrice
pool
pool__id
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
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

ValueDescription
id
hash
logIndex
eventType
from
to
blockNumber
timestamp
gasUsed
gasPrice
pool
pool__id
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
recipient
recipient__id
positionSize
tokenId
tokenId__id
tokenId__idHexString
tokenId__tokenCount
tickAt
premia
panopticPool
panopticPool__id
panopticPool__txCount
panopticPool__feeTier
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__commissions0
panopticPool__commissions0USD
panopticPool__commissions1
panopticPool__commissions1USD
panopticPool__commissionsUSD
panopticPool__protocolLoss0
panopticPool__protocolLoss0USD
panopticPool__protocolLoss1
panopticPool__protocolLoss1USD
panopticPool__protocolLossUSD
premium0
premium1
txnOpened
txnOpened__id
txnOpened__hash
txnOpened__logIndex
txnOpened__eventType
txnOpened__from
txnOpened__to
txnOpened__blockNumber
txnOpened__timestamp
txnOpened__gasUsed
txnOpened__gasPrice
txnOpened__positionSize
txnOpened__tickAt
txnOpened__poolUtilizations
txnOpened__commissions0
txnOpened__commissions1
txnOpened__poolUtilization0
txnOpened__poolUtilization1
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
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

OptionMint_orderBy

ValueDescription
id
hash
logIndex
eventType
from
to
blockNumber
timestamp
gasUsed
gasPrice
pool
pool__id
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
recipient
recipient__id
positionSize
tokenId
tokenId__id
tokenId__idHexString
tokenId__tokenCount
tickAt
poolUtilizations
panopticPool
panopticPool__id
panopticPool__txCount
panopticPool__feeTier
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__commissions0
panopticPool__commissions0USD
panopticPool__commissions1
panopticPool__commissions1USD
panopticPool__commissionsUSD
panopticPool__protocolLoss0
panopticPool__protocolLoss0USD
panopticPool__protocolLoss1
panopticPool__protocolLoss1USD
panopticPool__protocolLossUSD
commissions0
commissions1
poolUtilization0
poolUtilization1

OptionRoll_orderBy

ValueDescription
id
hash
logIndex
eventType
from
to
blockNumber
timestamp
gasUsed
gasPrice
pool
pool__id
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
recipient
recipient__id
positionSize
oldTokenId
newTokenId
tickAtRoll
poolUtilizations
premia
panopticPool
panopticPool__id
panopticPool__txCount
panopticPool__feeTier
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__commissions0
panopticPool__commissions0USD
panopticPool__commissions1
panopticPool__commissions1USD
panopticPool__commissionsUSD
panopticPool__protocolLoss0
panopticPool__protocolLoss0USD
panopticPool__protocolLoss1
panopticPool__protocolLoss1USD
panopticPool__protocolLossUSD
poolUtilization0
poolUtilization1
premium0
premium1

OrderDirection

Defines the order direction, either ascending or descending

ValueDescription
asc
desc

PanopticFactory_orderBy

ValueDescription
id
poolCount
owner

PanopticPoolAccount_orderBy

ValueDescription
id
panopticPool
panopticPool__id
panopticPool__txCount
panopticPool__feeTier
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__commissions0
panopticPool__commissions0USD
panopticPool__commissions1
panopticPool__commissions1USD
panopticPool__commissionsUSD
panopticPool__protocolLoss0
panopticPool__protocolLoss0USD
panopticPool__protocolLoss1
panopticPool__protocolLoss1USD
panopticPool__protocolLossUSD
account
account__id
collateral0
collateral0__id
collateral0__totalShares
collateral0__totalAssets
collateral0__poolAssets
collateral0__inAMM
collateral0__poolUtilization
collateral0__index
collateral0__previousSharePrice
collateral0__preLiquidationSharePrice
collateral0Shares
collateral0Assets
collateral1
collateral1__id
collateral1__totalShares
collateral1__totalAssets
collateral1__poolAssets
collateral1__inAMM
collateral1__poolUtilization
collateral1__index
collateral1__previousSharePrice
collateral1__preLiquidationSharePrice
collateral1Shares
collateral1Assets
commissions0
commissions1
sharePriceAtLastTransfer0
sharePriceAtLastTransfer1
commissionsSinceLastTransfer0
commissionsSinceLastTransfer1
isLiquidated
accountBalances

PanopticPoolDayData_orderBy

ValueDescription
id
panopticPool
panopticPool__id
panopticPool__txCount
panopticPool__feeTier
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__commissions0
panopticPool__commissions0USD
panopticPool__commissions1
panopticPool__commissions1USD
panopticPool__commissionsUSD
panopticPool__protocolLoss0
panopticPool__protocolLoss0USD
panopticPool__protocolLoss1
panopticPool__protocolLoss1USD
panopticPool__protocolLossUSD
date
mintVolume0
mintVolume0USD
burnVolume0
burnVolume0USD
totalVolume0
totalVolume0USD
mintVolume1
mintVolume1USD
burnVolume1
burnVolume1USD
totalVolume1
totalVolume1USD
commissions0
commissions0USD
commissions1
commissions1USD
commissionsUSD

PanopticPool_orderBy

ValueDescription
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__totalShares
collateral0__totalAssets
collateral0__poolAssets
collateral0__inAMM
collateral0__poolUtilization
collateral0__index
collateral0__previousSharePrice
collateral0__preLiquidationSharePrice
collateral1
collateral1__id
collateral1__totalShares
collateral1__totalAssets
collateral1__poolAssets
collateral1__inAMM
collateral1__poolUtilization
collateral1__index
collateral1__previousSharePrice
collateral1__preLiquidationSharePrice
underlyingPool
underlyingPool__id
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
mintVolume0
mintVolume0USD
burnVolume0
burnVolume0USD
totalVolume0
totalVolume0USD
mintVolume1
mintVolume1USD
burnVolume1
burnVolume1USD
totalVolume1
totalVolume1USD
commissions0
commissions0USD
commissions1
commissions1USD
commissionsUSD
protocolLoss0
protocolLoss0USD
protocolLoss1
protocolLoss1USD
protocolLossUSD
chunks

PoolDayData_orderBy

ValueDescription
id
pool
pool__id
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
date
txCount
liquidity
token0Price
token1Price
volumeToken0
volumeToken1
volumeUSD
feesUSD
open
high
low
close

PoolHourData_orderBy

ValueDescription
id
pool
pool__id
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
txCount
liquidity
token0Price
token1Price
volumeToken0
volumeToken1
volumeUSD
open
high
low
close
periodStartUnix

Pool_orderBy

ValueDescription
id
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
panopticPool
panopticPool__id
panopticPool__txCount
panopticPool__feeTier
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__commissions0
panopticPool__commissions0USD
panopticPool__commissions1
panopticPool__commissions1USD
panopticPool__commissionsUSD
panopticPool__protocolLoss0
panopticPool__protocolLoss0USD
panopticPool__protocolLoss1
panopticPool__protocolLoss1USD
panopticPool__protocolLossUSD

PremiumSettled_orderBy

ValueDescription
id
hash
logIndex
eventType
from
to
blockNumber
timestamp
gasUsed
gasPrice
pool
pool__id
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
user
user__id
tokenId
tokenId__id
tokenId__idHexString
tokenId__tokenCount
settledAmounts
settledAmount0
settledAmount1
panopticPool
panopticPool__id
panopticPool__txCount
panopticPool__feeTier
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__commissions0
panopticPool__commissions0USD
panopticPool__commissions1
panopticPool__commissions1USD
panopticPool__commissionsUSD
panopticPool__protocolLoss0
panopticPool__protocolLoss0USD
panopticPool__protocolLoss1
panopticPool__protocolLoss1USD
panopticPool__protocolLossUSD

TokenId_orderBy

ValueDescription
id
idHexString
pool
pool__id
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
tokenCount
accountBalances
legs

Token_orderBy

ValueDescription
id
decimals
name
symbol
totalSupply
txCount
derivedETH
whitelistPools

TokenizedPositionBurnt_orderBy

ValueDescription
id
hash
logIndex
eventType
from
to
blockNumber
timestamp
gasUsed
gasPrice
pool
pool__id
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
recipient
recipient__id
positionSize
tokenId
tokenId__id
tokenId__idHexString
tokenId__tokenCount

TokenizedPositionMinted_orderBy

ValueDescription
id
hash
logIndex
eventType
from
to
blockNumber
timestamp
gasUsed
gasPrice
pool
pool__id
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
caller
caller__id
positionSize
tokenId
tokenId__id
tokenId__idHexString
tokenId__tokenCount

TokenizedPositionRolled_orderBy

ValueDescription
id
hash
logIndex
eventType
from
to
blockNumber
timestamp
gasUsed
gasPrice
pool
pool__id
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
recipient
recipient__id
oldTokenId
oldTokenId__id
oldTokenId__idHexString
oldTokenId__tokenCount
newTokenId
newTokenId__id
newTokenId__idHexString
newTokenId__tokenCount
positionSize

SubgraphErrorPolicy

ValueDescription
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.

FieldArgumentTypeDescription
idID!

Txn hash + '#' + log index

hashString!

Txn hash of the transaction emitting this event

logIndexBigInt!

Event log index

fromString!

Sender of transaction

toString!

Receiver of transaction

blockNumberBigInt!

Block txn was included in

timestampBigInt!

Timestamp txn was confirmed

gasUsedBigInt!

Gas used during txn execution

gasPriceBigInt!

Gas price during txn execution

eventTypeEventType!

Type of event. The Graph doesn't allow filtering by __typename meta so it's explicitly required here

poolPool!

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.

Table of Contents