5299 lines
131 KiB
Plaintext
5299 lines
131 KiB
Plaintext
|
directive @cacheControl(maxAge: Int, inheritMaxAge: Boolean, scope: CacheControlScope) on FIELD_DEFINITION | OBJECT | INTERFACE | UNION
|
||
|
|
||
|
enum CacheControlScope {
|
||
|
PUBLIC
|
||
|
PRIVATE
|
||
|
}
|
||
|
|
||
|
scalar BigInt
|
||
|
|
||
|
scalar BigDecimal
|
||
|
|
||
|
scalar Bytes
|
||
|
|
||
|
type Proof {
|
||
|
data: String!
|
||
|
}
|
||
|
|
||
|
type _Block_ {
|
||
|
cid: String
|
||
|
hash: String!
|
||
|
number: Int!
|
||
|
timestamp: Int!
|
||
|
parentHash: String!
|
||
|
}
|
||
|
|
||
|
type _Transaction_ {
|
||
|
hash: String!
|
||
|
index: Int!
|
||
|
from: String!
|
||
|
to: String!
|
||
|
}
|
||
|
|
||
|
type ResultEvent {
|
||
|
block: _Block_!
|
||
|
tx: _Transaction_!
|
||
|
contract: String!
|
||
|
eventIndex: Int!
|
||
|
event: Event!
|
||
|
proof: Proof
|
||
|
}
|
||
|
|
||
|
union Event = FeeAmountEnabledEvent | OwnerChangedEvent | PoolCreatedEvent | ApprovalEvent | ApprovalForAllEvent | CollectEvent | DecreaseLiquidityEvent | IncreaseLiquidityEvent | TransferEvent | BurnEvent | CollectProtocolEvent | FlashEvent | IncreaseObservationCardinalityNextEvent | InitializeEvent | MintEvent | SetFeeProtocolEvent | SwapEvent
|
||
|
|
||
|
type FeeAmountEnabledEvent {
|
||
|
fee: Int!
|
||
|
tickSpacing: Int!
|
||
|
}
|
||
|
|
||
|
type OwnerChangedEvent {
|
||
|
oldOwner: String!
|
||
|
newOwner: String!
|
||
|
}
|
||
|
|
||
|
type PoolCreatedEvent {
|
||
|
token0: String!
|
||
|
token1: String!
|
||
|
fee: Int!
|
||
|
tickSpacing: Int!
|
||
|
pool: String!
|
||
|
}
|
||
|
|
||
|
type ApprovalEvent {
|
||
|
owner: String!
|
||
|
approved: String!
|
||
|
tokenId: BigInt!
|
||
|
}
|
||
|
|
||
|
type ApprovalForAllEvent {
|
||
|
owner: String!
|
||
|
operator: String!
|
||
|
approved: Boolean!
|
||
|
}
|
||
|
|
||
|
type CollectEvent {
|
||
|
tokenId: BigInt
|
||
|
recipient: String!
|
||
|
amount0: BigInt!
|
||
|
amount1: BigInt!
|
||
|
owner: String
|
||
|
tickLower: Int
|
||
|
tickUpper: Int
|
||
|
}
|
||
|
|
||
|
type DecreaseLiquidityEvent {
|
||
|
tokenId: BigInt!
|
||
|
liquidity: BigInt!
|
||
|
amount0: BigInt!
|
||
|
amount1: BigInt!
|
||
|
}
|
||
|
|
||
|
type IncreaseLiquidityEvent {
|
||
|
tokenId: BigInt!
|
||
|
liquidity: BigInt!
|
||
|
amount0: BigInt!
|
||
|
amount1: BigInt!
|
||
|
}
|
||
|
|
||
|
type TransferEvent {
|
||
|
from: String!
|
||
|
to: String!
|
||
|
tokenId: BigInt!
|
||
|
}
|
||
|
|
||
|
type BurnEvent {
|
||
|
owner: String!
|
||
|
tickLower: Int!
|
||
|
tickUpper: Int!
|
||
|
amount: BigInt!
|
||
|
amount0: BigInt!
|
||
|
amount1: BigInt!
|
||
|
}
|
||
|
|
||
|
type CollectProtocolEvent {
|
||
|
sender: String!
|
||
|
recipient: String!
|
||
|
amount0: BigInt!
|
||
|
amount1: BigInt!
|
||
|
}
|
||
|
|
||
|
type FlashEvent {
|
||
|
sender: String!
|
||
|
recipient: String!
|
||
|
amount0: BigInt!
|
||
|
amount1: BigInt!
|
||
|
paid0: BigInt!
|
||
|
paid1: BigInt!
|
||
|
}
|
||
|
|
||
|
type IncreaseObservationCardinalityNextEvent {
|
||
|
observationCardinalityNextOld: Int!
|
||
|
observationCardinalityNextNew: Int!
|
||
|
}
|
||
|
|
||
|
type InitializeEvent {
|
||
|
sqrtPriceX96: BigInt!
|
||
|
tick: Int!
|
||
|
}
|
||
|
|
||
|
type MintEvent {
|
||
|
sender: String!
|
||
|
owner: String!
|
||
|
tickLower: Int!
|
||
|
tickUpper: Int!
|
||
|
amount: BigInt!
|
||
|
amount0: BigInt!
|
||
|
amount1: BigInt!
|
||
|
}
|
||
|
|
||
|
type SetFeeProtocolEvent {
|
||
|
feeProtocol0Old: Int!
|
||
|
feeProtocol1Old: Int!
|
||
|
feeProtocol0New: Int!
|
||
|
feeProtocol1New: Int!
|
||
|
}
|
||
|
|
||
|
type SwapEvent {
|
||
|
sender: String!
|
||
|
recipient: String!
|
||
|
amount0: BigInt!
|
||
|
amount1: BigInt!
|
||
|
sqrtPriceX96: BigInt!
|
||
|
liquidity: BigInt!
|
||
|
tick: Int!
|
||
|
}
|
||
|
|
||
|
input Block_height {
|
||
|
hash: Bytes
|
||
|
number: Int
|
||
|
}
|
||
|
|
||
|
input BlockChangedFilter {
|
||
|
number_gte: Int!
|
||
|
}
|
||
|
|
||
|
enum OrderDirection {
|
||
|
asc
|
||
|
desc
|
||
|
}
|
||
|
|
||
|
enum Factory_orderBy {
|
||
|
id
|
||
|
poolCount
|
||
|
txCount
|
||
|
totalVolumeUSD
|
||
|
totalVolumeETH
|
||
|
totalFeesUSD
|
||
|
totalFeesETH
|
||
|
untrackedVolumeUSD
|
||
|
totalValueLockedUSD
|
||
|
totalValueLockedETH
|
||
|
totalValueLockedUSDUntracked
|
||
|
totalValueLockedETHUntracked
|
||
|
owner
|
||
|
}
|
||
|
|
||
|
input Factory_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
poolCount: BigInt
|
||
|
poolCount_not: BigInt
|
||
|
poolCount_gt: BigInt
|
||
|
poolCount_lt: BigInt
|
||
|
poolCount_gte: BigInt
|
||
|
poolCount_lte: BigInt
|
||
|
poolCount_in: [BigInt!]
|
||
|
poolCount_not_in: [BigInt!]
|
||
|
txCount: BigInt
|
||
|
txCount_not: BigInt
|
||
|
txCount_gt: BigInt
|
||
|
txCount_lt: BigInt
|
||
|
txCount_gte: BigInt
|
||
|
txCount_lte: BigInt
|
||
|
txCount_in: [BigInt!]
|
||
|
txCount_not_in: [BigInt!]
|
||
|
totalVolumeUSD: BigDecimal
|
||
|
totalVolumeUSD_not: BigDecimal
|
||
|
totalVolumeUSD_gt: BigDecimal
|
||
|
totalVolumeUSD_lt: BigDecimal
|
||
|
totalVolumeUSD_gte: BigDecimal
|
||
|
totalVolumeUSD_lte: BigDecimal
|
||
|
totalVolumeUSD_in: [BigDecimal!]
|
||
|
totalVolumeUSD_not_in: [BigDecimal!]
|
||
|
totalVolumeETH: BigDecimal
|
||
|
totalVolumeETH_not: BigDecimal
|
||
|
totalVolumeETH_gt: BigDecimal
|
||
|
totalVolumeETH_lt: BigDecimal
|
||
|
totalVolumeETH_gte: BigDecimal
|
||
|
totalVolumeETH_lte: BigDecimal
|
||
|
totalVolumeETH_in: [BigDecimal!]
|
||
|
totalVolumeETH_not_in: [BigDecimal!]
|
||
|
totalFeesUSD: BigDecimal
|
||
|
totalFeesUSD_not: BigDecimal
|
||
|
totalFeesUSD_gt: BigDecimal
|
||
|
totalFeesUSD_lt: BigDecimal
|
||
|
totalFeesUSD_gte: BigDecimal
|
||
|
totalFeesUSD_lte: BigDecimal
|
||
|
totalFeesUSD_in: [BigDecimal!]
|
||
|
totalFeesUSD_not_in: [BigDecimal!]
|
||
|
totalFeesETH: BigDecimal
|
||
|
totalFeesETH_not: BigDecimal
|
||
|
totalFeesETH_gt: BigDecimal
|
||
|
totalFeesETH_lt: BigDecimal
|
||
|
totalFeesETH_gte: BigDecimal
|
||
|
totalFeesETH_lte: BigDecimal
|
||
|
totalFeesETH_in: [BigDecimal!]
|
||
|
totalFeesETH_not_in: [BigDecimal!]
|
||
|
untrackedVolumeUSD: BigDecimal
|
||
|
untrackedVolumeUSD_not: BigDecimal
|
||
|
untrackedVolumeUSD_gt: BigDecimal
|
||
|
untrackedVolumeUSD_lt: BigDecimal
|
||
|
untrackedVolumeUSD_gte: BigDecimal
|
||
|
untrackedVolumeUSD_lte: BigDecimal
|
||
|
untrackedVolumeUSD_in: [BigDecimal!]
|
||
|
untrackedVolumeUSD_not_in: [BigDecimal!]
|
||
|
totalValueLockedUSD: BigDecimal
|
||
|
totalValueLockedUSD_not: BigDecimal
|
||
|
totalValueLockedUSD_gt: BigDecimal
|
||
|
totalValueLockedUSD_lt: BigDecimal
|
||
|
totalValueLockedUSD_gte: BigDecimal
|
||
|
totalValueLockedUSD_lte: BigDecimal
|
||
|
totalValueLockedUSD_in: [BigDecimal!]
|
||
|
totalValueLockedUSD_not_in: [BigDecimal!]
|
||
|
totalValueLockedETH: BigDecimal
|
||
|
totalValueLockedETH_not: BigDecimal
|
||
|
totalValueLockedETH_gt: BigDecimal
|
||
|
totalValueLockedETH_lt: BigDecimal
|
||
|
totalValueLockedETH_gte: BigDecimal
|
||
|
totalValueLockedETH_lte: BigDecimal
|
||
|
totalValueLockedETH_in: [BigDecimal!]
|
||
|
totalValueLockedETH_not_in: [BigDecimal!]
|
||
|
totalValueLockedUSDUntracked: BigDecimal
|
||
|
totalValueLockedUSDUntracked_not: BigDecimal
|
||
|
totalValueLockedUSDUntracked_gt: BigDecimal
|
||
|
totalValueLockedUSDUntracked_lt: BigDecimal
|
||
|
totalValueLockedUSDUntracked_gte: BigDecimal
|
||
|
totalValueLockedUSDUntracked_lte: BigDecimal
|
||
|
totalValueLockedUSDUntracked_in: [BigDecimal!]
|
||
|
totalValueLockedUSDUntracked_not_in: [BigDecimal!]
|
||
|
totalValueLockedETHUntracked: BigDecimal
|
||
|
totalValueLockedETHUntracked_not: BigDecimal
|
||
|
totalValueLockedETHUntracked_gt: BigDecimal
|
||
|
totalValueLockedETHUntracked_lt: BigDecimal
|
||
|
totalValueLockedETHUntracked_gte: BigDecimal
|
||
|
totalValueLockedETHUntracked_lte: BigDecimal
|
||
|
totalValueLockedETHUntracked_in: [BigDecimal!]
|
||
|
totalValueLockedETHUntracked_not_in: [BigDecimal!]
|
||
|
owner: ID
|
||
|
owner_not: ID
|
||
|
owner_gt: ID
|
||
|
owner_lt: ID
|
||
|
owner_gte: ID
|
||
|
owner_lte: ID
|
||
|
owner_in: [ID!]
|
||
|
owner_not_in: [ID!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [Factory_filter]
|
||
|
or: [Factory_filter]
|
||
|
}
|
||
|
|
||
|
enum Bundle_orderBy {
|
||
|
id
|
||
|
ethPriceUSD
|
||
|
}
|
||
|
|
||
|
input Bundle_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
ethPriceUSD: BigDecimal
|
||
|
ethPriceUSD_not: BigDecimal
|
||
|
ethPriceUSD_gt: BigDecimal
|
||
|
ethPriceUSD_lt: BigDecimal
|
||
|
ethPriceUSD_gte: BigDecimal
|
||
|
ethPriceUSD_lte: BigDecimal
|
||
|
ethPriceUSD_in: [BigDecimal!]
|
||
|
ethPriceUSD_not_in: [BigDecimal!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [Bundle_filter]
|
||
|
or: [Bundle_filter]
|
||
|
}
|
||
|
|
||
|
enum Token_orderBy {
|
||
|
id
|
||
|
symbol
|
||
|
name
|
||
|
decimals
|
||
|
totalSupply
|
||
|
volume
|
||
|
volumeUSD
|
||
|
untrackedVolumeUSD
|
||
|
feesUSD
|
||
|
txCount
|
||
|
poolCount
|
||
|
totalValueLocked
|
||
|
totalValueLockedUSD
|
||
|
totalValueLockedUSDUntracked
|
||
|
derivedETH
|
||
|
whitelistPools
|
||
|
tokenDayData
|
||
|
}
|
||
|
|
||
|
input Token_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
symbol: String
|
||
|
symbol_not: String
|
||
|
symbol_gt: String
|
||
|
symbol_lt: String
|
||
|
symbol_gte: String
|
||
|
symbol_lte: String
|
||
|
symbol_in: [String!]
|
||
|
symbol_not_in: [String!]
|
||
|
symbol_starts_with: String
|
||
|
symbol_starts_with_nocase: String
|
||
|
symbol_not_starts_with: String
|
||
|
symbol_not_starts_with_nocase: String
|
||
|
symbol_ends_with: String
|
||
|
symbol_ends_with_nocase: String
|
||
|
symbol_not_ends_with: String
|
||
|
symbol_not_ends_with_nocase: String
|
||
|
symbol_contains: String
|
||
|
symbol_not_contains: String
|
||
|
symbol_contains_nocase: String
|
||
|
symbol_not_contains_nocase: String
|
||
|
name: String
|
||
|
name_not: String
|
||
|
name_gt: String
|
||
|
name_lt: String
|
||
|
name_gte: String
|
||
|
name_lte: String
|
||
|
name_in: [String!]
|
||
|
name_not_in: [String!]
|
||
|
name_starts_with: String
|
||
|
name_starts_with_nocase: String
|
||
|
name_not_starts_with: String
|
||
|
name_not_starts_with_nocase: String
|
||
|
name_ends_with: String
|
||
|
name_ends_with_nocase: String
|
||
|
name_not_ends_with: String
|
||
|
name_not_ends_with_nocase: String
|
||
|
name_contains: String
|
||
|
name_not_contains: String
|
||
|
name_contains_nocase: String
|
||
|
name_not_contains_nocase: String
|
||
|
decimals: BigInt
|
||
|
decimals_not: BigInt
|
||
|
decimals_gt: BigInt
|
||
|
decimals_lt: BigInt
|
||
|
decimals_gte: BigInt
|
||
|
decimals_lte: BigInt
|
||
|
decimals_in: [BigInt!]
|
||
|
decimals_not_in: [BigInt!]
|
||
|
totalSupply: BigInt
|
||
|
totalSupply_not: BigInt
|
||
|
totalSupply_gt: BigInt
|
||
|
totalSupply_lt: BigInt
|
||
|
totalSupply_gte: BigInt
|
||
|
totalSupply_lte: BigInt
|
||
|
totalSupply_in: [BigInt!]
|
||
|
totalSupply_not_in: [BigInt!]
|
||
|
volume: BigDecimal
|
||
|
volume_not: BigDecimal
|
||
|
volume_gt: BigDecimal
|
||
|
volume_lt: BigDecimal
|
||
|
volume_gte: BigDecimal
|
||
|
volume_lte: BigDecimal
|
||
|
volume_in: [BigDecimal!]
|
||
|
volume_not_in: [BigDecimal!]
|
||
|
volumeUSD: BigDecimal
|
||
|
volumeUSD_not: BigDecimal
|
||
|
volumeUSD_gt: BigDecimal
|
||
|
volumeUSD_lt: BigDecimal
|
||
|
volumeUSD_gte: BigDecimal
|
||
|
volumeUSD_lte: BigDecimal
|
||
|
volumeUSD_in: [BigDecimal!]
|
||
|
volumeUSD_not_in: [BigDecimal!]
|
||
|
untrackedVolumeUSD: BigDecimal
|
||
|
untrackedVolumeUSD_not: BigDecimal
|
||
|
untrackedVolumeUSD_gt: BigDecimal
|
||
|
untrackedVolumeUSD_lt: BigDecimal
|
||
|
untrackedVolumeUSD_gte: BigDecimal
|
||
|
untrackedVolumeUSD_lte: BigDecimal
|
||
|
untrackedVolumeUSD_in: [BigDecimal!]
|
||
|
untrackedVolumeUSD_not_in: [BigDecimal!]
|
||
|
feesUSD: BigDecimal
|
||
|
feesUSD_not: BigDecimal
|
||
|
feesUSD_gt: BigDecimal
|
||
|
feesUSD_lt: BigDecimal
|
||
|
feesUSD_gte: BigDecimal
|
||
|
feesUSD_lte: BigDecimal
|
||
|
feesUSD_in: [BigDecimal!]
|
||
|
feesUSD_not_in: [BigDecimal!]
|
||
|
txCount: BigInt
|
||
|
txCount_not: BigInt
|
||
|
txCount_gt: BigInt
|
||
|
txCount_lt: BigInt
|
||
|
txCount_gte: BigInt
|
||
|
txCount_lte: BigInt
|
||
|
txCount_in: [BigInt!]
|
||
|
txCount_not_in: [BigInt!]
|
||
|
poolCount: BigInt
|
||
|
poolCount_not: BigInt
|
||
|
poolCount_gt: BigInt
|
||
|
poolCount_lt: BigInt
|
||
|
poolCount_gte: BigInt
|
||
|
poolCount_lte: BigInt
|
||
|
poolCount_in: [BigInt!]
|
||
|
poolCount_not_in: [BigInt!]
|
||
|
totalValueLocked: BigDecimal
|
||
|
totalValueLocked_not: BigDecimal
|
||
|
totalValueLocked_gt: BigDecimal
|
||
|
totalValueLocked_lt: BigDecimal
|
||
|
totalValueLocked_gte: BigDecimal
|
||
|
totalValueLocked_lte: BigDecimal
|
||
|
totalValueLocked_in: [BigDecimal!]
|
||
|
totalValueLocked_not_in: [BigDecimal!]
|
||
|
totalValueLockedUSD: BigDecimal
|
||
|
totalValueLockedUSD_not: BigDecimal
|
||
|
totalValueLockedUSD_gt: BigDecimal
|
||
|
totalValueLockedUSD_lt: BigDecimal
|
||
|
totalValueLockedUSD_gte: BigDecimal
|
||
|
totalValueLockedUSD_lte: BigDecimal
|
||
|
totalValueLockedUSD_in: [BigDecimal!]
|
||
|
totalValueLockedUSD_not_in: [BigDecimal!]
|
||
|
totalValueLockedUSDUntracked: BigDecimal
|
||
|
totalValueLockedUSDUntracked_not: BigDecimal
|
||
|
totalValueLockedUSDUntracked_gt: BigDecimal
|
||
|
totalValueLockedUSDUntracked_lt: BigDecimal
|
||
|
totalValueLockedUSDUntracked_gte: BigDecimal
|
||
|
totalValueLockedUSDUntracked_lte: BigDecimal
|
||
|
totalValueLockedUSDUntracked_in: [BigDecimal!]
|
||
|
totalValueLockedUSDUntracked_not_in: [BigDecimal!]
|
||
|
derivedETH: BigDecimal
|
||
|
derivedETH_not: BigDecimal
|
||
|
derivedETH_gt: BigDecimal
|
||
|
derivedETH_lt: BigDecimal
|
||
|
derivedETH_gte: BigDecimal
|
||
|
derivedETH_lte: BigDecimal
|
||
|
derivedETH_in: [BigDecimal!]
|
||
|
derivedETH_not_in: [BigDecimal!]
|
||
|
whitelistPools: [String!]
|
||
|
whitelistPools_not: [String!]
|
||
|
whitelistPools_contains: [String!]
|
||
|
whitelistPools_not_contains: [String!]
|
||
|
whitelistPools_contains_nocase: [String!]
|
||
|
whitelistPools_not_contains_nocase: [String!]
|
||
|
whitelistPools_: Pool_filter
|
||
|
tokenDayData_: TokenDayData_filter
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [Token_filter]
|
||
|
or: [Token_filter]
|
||
|
}
|
||
|
|
||
|
enum Pool_orderBy {
|
||
|
id
|
||
|
createdAtTimestamp
|
||
|
createdAtBlockNumber
|
||
|
token0
|
||
|
token0__id
|
||
|
token0__symbol
|
||
|
token0__name
|
||
|
token0__decimals
|
||
|
token0__totalSupply
|
||
|
token0__volume
|
||
|
token0__volumeUSD
|
||
|
token0__untrackedVolumeUSD
|
||
|
token0__feesUSD
|
||
|
token0__txCount
|
||
|
token0__poolCount
|
||
|
token0__totalValueLocked
|
||
|
token0__totalValueLockedUSD
|
||
|
token0__totalValueLockedUSDUntracked
|
||
|
token0__derivedETH
|
||
|
token1
|
||
|
token1__id
|
||
|
token1__symbol
|
||
|
token1__name
|
||
|
token1__decimals
|
||
|
token1__totalSupply
|
||
|
token1__volume
|
||
|
token1__volumeUSD
|
||
|
token1__untrackedVolumeUSD
|
||
|
token1__feesUSD
|
||
|
token1__txCount
|
||
|
token1__poolCount
|
||
|
token1__totalValueLocked
|
||
|
token1__totalValueLockedUSD
|
||
|
token1__totalValueLockedUSDUntracked
|
||
|
token1__derivedETH
|
||
|
feeTier
|
||
|
liquidity
|
||
|
sqrtPrice
|
||
|
feeGrowthGlobal0X128
|
||
|
feeGrowthGlobal1X128
|
||
|
token0Price
|
||
|
token1Price
|
||
|
tick
|
||
|
observationIndex
|
||
|
volumeToken0
|
||
|
volumeToken1
|
||
|
volumeUSD
|
||
|
untrackedVolumeUSD
|
||
|
feesUSD
|
||
|
txCount
|
||
|
collectedFeesToken0
|
||
|
collectedFeesToken1
|
||
|
collectedFeesUSD
|
||
|
totalValueLockedToken0
|
||
|
totalValueLockedToken1
|
||
|
totalValueLockedETH
|
||
|
totalValueLockedUSD
|
||
|
totalValueLockedUSDUntracked
|
||
|
isProtocolFeeEnabled
|
||
|
liquidityProviderCount
|
||
|
poolHourData
|
||
|
poolDayData
|
||
|
mints
|
||
|
burns
|
||
|
swaps
|
||
|
collects
|
||
|
ticks
|
||
|
}
|
||
|
|
||
|
input Pool_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
createdAtTimestamp: BigInt
|
||
|
createdAtTimestamp_not: BigInt
|
||
|
createdAtTimestamp_gt: BigInt
|
||
|
createdAtTimestamp_lt: BigInt
|
||
|
createdAtTimestamp_gte: BigInt
|
||
|
createdAtTimestamp_lte: BigInt
|
||
|
createdAtTimestamp_in: [BigInt!]
|
||
|
createdAtTimestamp_not_in: [BigInt!]
|
||
|
createdAtBlockNumber: BigInt
|
||
|
createdAtBlockNumber_not: BigInt
|
||
|
createdAtBlockNumber_gt: BigInt
|
||
|
createdAtBlockNumber_lt: BigInt
|
||
|
createdAtBlockNumber_gte: BigInt
|
||
|
createdAtBlockNumber_lte: BigInt
|
||
|
createdAtBlockNumber_in: [BigInt!]
|
||
|
createdAtBlockNumber_not_in: [BigInt!]
|
||
|
token0: String
|
||
|
token0_not: String
|
||
|
token0_gt: String
|
||
|
token0_lt: String
|
||
|
token0_gte: String
|
||
|
token0_lte: String
|
||
|
token0_in: [String!]
|
||
|
token0_not_in: [String!]
|
||
|
token0_starts_with: String
|
||
|
token0_starts_with_nocase: String
|
||
|
token0_not_starts_with: String
|
||
|
token0_not_starts_with_nocase: String
|
||
|
token0_ends_with: String
|
||
|
token0_ends_with_nocase: String
|
||
|
token0_not_ends_with: String
|
||
|
token0_not_ends_with_nocase: String
|
||
|
token0_contains: String
|
||
|
token0_not_contains: String
|
||
|
token0_contains_nocase: String
|
||
|
token0_not_contains_nocase: String
|
||
|
token0_: Token_filter
|
||
|
token1: String
|
||
|
token1_not: String
|
||
|
token1_gt: String
|
||
|
token1_lt: String
|
||
|
token1_gte: String
|
||
|
token1_lte: String
|
||
|
token1_in: [String!]
|
||
|
token1_not_in: [String!]
|
||
|
token1_starts_with: String
|
||
|
token1_starts_with_nocase: String
|
||
|
token1_not_starts_with: String
|
||
|
token1_not_starts_with_nocase: String
|
||
|
token1_ends_with: String
|
||
|
token1_ends_with_nocase: String
|
||
|
token1_not_ends_with: String
|
||
|
token1_not_ends_with_nocase: String
|
||
|
token1_contains: String
|
||
|
token1_not_contains: String
|
||
|
token1_contains_nocase: String
|
||
|
token1_not_contains_nocase: String
|
||
|
token1_: Token_filter
|
||
|
feeTier: BigInt
|
||
|
feeTier_not: BigInt
|
||
|
feeTier_gt: BigInt
|
||
|
feeTier_lt: BigInt
|
||
|
feeTier_gte: BigInt
|
||
|
feeTier_lte: BigInt
|
||
|
feeTier_in: [BigInt!]
|
||
|
feeTier_not_in: [BigInt!]
|
||
|
liquidity: BigInt
|
||
|
liquidity_not: BigInt
|
||
|
liquidity_gt: BigInt
|
||
|
liquidity_lt: BigInt
|
||
|
liquidity_gte: BigInt
|
||
|
liquidity_lte: BigInt
|
||
|
liquidity_in: [BigInt!]
|
||
|
liquidity_not_in: [BigInt!]
|
||
|
sqrtPrice: BigInt
|
||
|
sqrtPrice_not: BigInt
|
||
|
sqrtPrice_gt: BigInt
|
||
|
sqrtPrice_lt: BigInt
|
||
|
sqrtPrice_gte: BigInt
|
||
|
sqrtPrice_lte: BigInt
|
||
|
sqrtPrice_in: [BigInt!]
|
||
|
sqrtPrice_not_in: [BigInt!]
|
||
|
feeGrowthGlobal0X128: BigInt
|
||
|
feeGrowthGlobal0X128_not: BigInt
|
||
|
feeGrowthGlobal0X128_gt: BigInt
|
||
|
feeGrowthGlobal0X128_lt: BigInt
|
||
|
feeGrowthGlobal0X128_gte: BigInt
|
||
|
feeGrowthGlobal0X128_lte: BigInt
|
||
|
feeGrowthGlobal0X128_in: [BigInt!]
|
||
|
feeGrowthGlobal0X128_not_in: [BigInt!]
|
||
|
feeGrowthGlobal1X128: BigInt
|
||
|
feeGrowthGlobal1X128_not: BigInt
|
||
|
feeGrowthGlobal1X128_gt: BigInt
|
||
|
feeGrowthGlobal1X128_lt: BigInt
|
||
|
feeGrowthGlobal1X128_gte: BigInt
|
||
|
feeGrowthGlobal1X128_lte: BigInt
|
||
|
feeGrowthGlobal1X128_in: [BigInt!]
|
||
|
feeGrowthGlobal1X128_not_in: [BigInt!]
|
||
|
token0Price: BigDecimal
|
||
|
token0Price_not: BigDecimal
|
||
|
token0Price_gt: BigDecimal
|
||
|
token0Price_lt: BigDecimal
|
||
|
token0Price_gte: BigDecimal
|
||
|
token0Price_lte: BigDecimal
|
||
|
token0Price_in: [BigDecimal!]
|
||
|
token0Price_not_in: [BigDecimal!]
|
||
|
token1Price: BigDecimal
|
||
|
token1Price_not: BigDecimal
|
||
|
token1Price_gt: BigDecimal
|
||
|
token1Price_lt: BigDecimal
|
||
|
token1Price_gte: BigDecimal
|
||
|
token1Price_lte: BigDecimal
|
||
|
token1Price_in: [BigDecimal!]
|
||
|
token1Price_not_in: [BigDecimal!]
|
||
|
tick: BigInt
|
||
|
tick_not: BigInt
|
||
|
tick_gt: BigInt
|
||
|
tick_lt: BigInt
|
||
|
tick_gte: BigInt
|
||
|
tick_lte: BigInt
|
||
|
tick_in: [BigInt!]
|
||
|
tick_not_in: [BigInt!]
|
||
|
observationIndex: BigInt
|
||
|
observationIndex_not: BigInt
|
||
|
observationIndex_gt: BigInt
|
||
|
observationIndex_lt: BigInt
|
||
|
observationIndex_gte: BigInt
|
||
|
observationIndex_lte: BigInt
|
||
|
observationIndex_in: [BigInt!]
|
||
|
observationIndex_not_in: [BigInt!]
|
||
|
volumeToken0: BigDecimal
|
||
|
volumeToken0_not: BigDecimal
|
||
|
volumeToken0_gt: BigDecimal
|
||
|
volumeToken0_lt: BigDecimal
|
||
|
volumeToken0_gte: BigDecimal
|
||
|
volumeToken0_lte: BigDecimal
|
||
|
volumeToken0_in: [BigDecimal!]
|
||
|
volumeToken0_not_in: [BigDecimal!]
|
||
|
volumeToken1: BigDecimal
|
||
|
volumeToken1_not: BigDecimal
|
||
|
volumeToken1_gt: BigDecimal
|
||
|
volumeToken1_lt: BigDecimal
|
||
|
volumeToken1_gte: BigDecimal
|
||
|
volumeToken1_lte: BigDecimal
|
||
|
volumeToken1_in: [BigDecimal!]
|
||
|
volumeToken1_not_in: [BigDecimal!]
|
||
|
volumeUSD: BigDecimal
|
||
|
volumeUSD_not: BigDecimal
|
||
|
volumeUSD_gt: BigDecimal
|
||
|
volumeUSD_lt: BigDecimal
|
||
|
volumeUSD_gte: BigDecimal
|
||
|
volumeUSD_lte: BigDecimal
|
||
|
volumeUSD_in: [BigDecimal!]
|
||
|
volumeUSD_not_in: [BigDecimal!]
|
||
|
untrackedVolumeUSD: BigDecimal
|
||
|
untrackedVolumeUSD_not: BigDecimal
|
||
|
untrackedVolumeUSD_gt: BigDecimal
|
||
|
untrackedVolumeUSD_lt: BigDecimal
|
||
|
untrackedVolumeUSD_gte: BigDecimal
|
||
|
untrackedVolumeUSD_lte: BigDecimal
|
||
|
untrackedVolumeUSD_in: [BigDecimal!]
|
||
|
untrackedVolumeUSD_not_in: [BigDecimal!]
|
||
|
feesUSD: BigDecimal
|
||
|
feesUSD_not: BigDecimal
|
||
|
feesUSD_gt: BigDecimal
|
||
|
feesUSD_lt: BigDecimal
|
||
|
feesUSD_gte: BigDecimal
|
||
|
feesUSD_lte: BigDecimal
|
||
|
feesUSD_in: [BigDecimal!]
|
||
|
feesUSD_not_in: [BigDecimal!]
|
||
|
txCount: BigInt
|
||
|
txCount_not: BigInt
|
||
|
txCount_gt: BigInt
|
||
|
txCount_lt: BigInt
|
||
|
txCount_gte: BigInt
|
||
|
txCount_lte: BigInt
|
||
|
txCount_in: [BigInt!]
|
||
|
txCount_not_in: [BigInt!]
|
||
|
collectedFeesToken0: BigDecimal
|
||
|
collectedFeesToken0_not: BigDecimal
|
||
|
collectedFeesToken0_gt: BigDecimal
|
||
|
collectedFeesToken0_lt: BigDecimal
|
||
|
collectedFeesToken0_gte: BigDecimal
|
||
|
collectedFeesToken0_lte: BigDecimal
|
||
|
collectedFeesToken0_in: [BigDecimal!]
|
||
|
collectedFeesToken0_not_in: [BigDecimal!]
|
||
|
collectedFeesToken1: BigDecimal
|
||
|
collectedFeesToken1_not: BigDecimal
|
||
|
collectedFeesToken1_gt: BigDecimal
|
||
|
collectedFeesToken1_lt: BigDecimal
|
||
|
collectedFeesToken1_gte: BigDecimal
|
||
|
collectedFeesToken1_lte: BigDecimal
|
||
|
collectedFeesToken1_in: [BigDecimal!]
|
||
|
collectedFeesToken1_not_in: [BigDecimal!]
|
||
|
collectedFeesUSD: BigDecimal
|
||
|
collectedFeesUSD_not: BigDecimal
|
||
|
collectedFeesUSD_gt: BigDecimal
|
||
|
collectedFeesUSD_lt: BigDecimal
|
||
|
collectedFeesUSD_gte: BigDecimal
|
||
|
collectedFeesUSD_lte: BigDecimal
|
||
|
collectedFeesUSD_in: [BigDecimal!]
|
||
|
collectedFeesUSD_not_in: [BigDecimal!]
|
||
|
totalValueLockedToken0: BigDecimal
|
||
|
totalValueLockedToken0_not: BigDecimal
|
||
|
totalValueLockedToken0_gt: BigDecimal
|
||
|
totalValueLockedToken0_lt: BigDecimal
|
||
|
totalValueLockedToken0_gte: BigDecimal
|
||
|
totalValueLockedToken0_lte: BigDecimal
|
||
|
totalValueLockedToken0_in: [BigDecimal!]
|
||
|
totalValueLockedToken0_not_in: [BigDecimal!]
|
||
|
totalValueLockedToken1: BigDecimal
|
||
|
totalValueLockedToken1_not: BigDecimal
|
||
|
totalValueLockedToken1_gt: BigDecimal
|
||
|
totalValueLockedToken1_lt: BigDecimal
|
||
|
totalValueLockedToken1_gte: BigDecimal
|
||
|
totalValueLockedToken1_lte: BigDecimal
|
||
|
totalValueLockedToken1_in: [BigDecimal!]
|
||
|
totalValueLockedToken1_not_in: [BigDecimal!]
|
||
|
totalValueLockedETH: BigDecimal
|
||
|
totalValueLockedETH_not: BigDecimal
|
||
|
totalValueLockedETH_gt: BigDecimal
|
||
|
totalValueLockedETH_lt: BigDecimal
|
||
|
totalValueLockedETH_gte: BigDecimal
|
||
|
totalValueLockedETH_lte: BigDecimal
|
||
|
totalValueLockedETH_in: [BigDecimal!]
|
||
|
totalValueLockedETH_not_in: [BigDecimal!]
|
||
|
totalValueLockedUSD: BigDecimal
|
||
|
totalValueLockedUSD_not: BigDecimal
|
||
|
totalValueLockedUSD_gt: BigDecimal
|
||
|
totalValueLockedUSD_lt: BigDecimal
|
||
|
totalValueLockedUSD_gte: BigDecimal
|
||
|
totalValueLockedUSD_lte: BigDecimal
|
||
|
totalValueLockedUSD_in: [BigDecimal!]
|
||
|
totalValueLockedUSD_not_in: [BigDecimal!]
|
||
|
totalValueLockedUSDUntracked: BigDecimal
|
||
|
totalValueLockedUSDUntracked_not: BigDecimal
|
||
|
totalValueLockedUSDUntracked_gt: BigDecimal
|
||
|
totalValueLockedUSDUntracked_lt: BigDecimal
|
||
|
totalValueLockedUSDUntracked_gte: BigDecimal
|
||
|
totalValueLockedUSDUntracked_lte: BigDecimal
|
||
|
totalValueLockedUSDUntracked_in: [BigDecimal!]
|
||
|
totalValueLockedUSDUntracked_not_in: [BigDecimal!]
|
||
|
isProtocolFeeEnabled: Boolean
|
||
|
isProtocolFeeEnabled_not: Boolean
|
||
|
isProtocolFeeEnabled_gt: Boolean
|
||
|
isProtocolFeeEnabled_lt: Boolean
|
||
|
isProtocolFeeEnabled_gte: Boolean
|
||
|
isProtocolFeeEnabled_lte: Boolean
|
||
|
isProtocolFeeEnabled_in: [Boolean!]
|
||
|
isProtocolFeeEnabled_not_in: [Boolean!]
|
||
|
liquidityProviderCount: BigInt
|
||
|
liquidityProviderCount_not: BigInt
|
||
|
liquidityProviderCount_gt: BigInt
|
||
|
liquidityProviderCount_lt: BigInt
|
||
|
liquidityProviderCount_gte: BigInt
|
||
|
liquidityProviderCount_lte: BigInt
|
||
|
liquidityProviderCount_in: [BigInt!]
|
||
|
liquidityProviderCount_not_in: [BigInt!]
|
||
|
poolHourData_: PoolHourData_filter
|
||
|
poolDayData_: PoolDayData_filter
|
||
|
mints_: Mint_filter
|
||
|
burns_: Burn_filter
|
||
|
swaps_: Swap_filter
|
||
|
collects_: Collect_filter
|
||
|
ticks_: Tick_filter
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [Pool_filter]
|
||
|
or: [Pool_filter]
|
||
|
}
|
||
|
|
||
|
enum Tick_orderBy {
|
||
|
id
|
||
|
poolAddress
|
||
|
tickIdx
|
||
|
pool
|
||
|
pool__id
|
||
|
pool__createdAtTimestamp
|
||
|
pool__createdAtBlockNumber
|
||
|
pool__feeTier
|
||
|
pool__liquidity
|
||
|
pool__sqrtPrice
|
||
|
pool__feeGrowthGlobal0X128
|
||
|
pool__feeGrowthGlobal1X128
|
||
|
pool__token0Price
|
||
|
pool__token1Price
|
||
|
pool__tick
|
||
|
pool__observationIndex
|
||
|
pool__volumeToken0
|
||
|
pool__volumeToken1
|
||
|
pool__volumeUSD
|
||
|
pool__untrackedVolumeUSD
|
||
|
pool__feesUSD
|
||
|
pool__txCount
|
||
|
pool__collectedFeesToken0
|
||
|
pool__collectedFeesToken1
|
||
|
pool__collectedFeesUSD
|
||
|
pool__totalValueLockedToken0
|
||
|
pool__totalValueLockedToken1
|
||
|
pool__totalValueLockedETH
|
||
|
pool__totalValueLockedUSD
|
||
|
pool__totalValueLockedUSDUntracked
|
||
|
pool__isProtocolFeeEnabled
|
||
|
pool__liquidityProviderCount
|
||
|
liquidityGross
|
||
|
liquidityNet
|
||
|
price0
|
||
|
price1
|
||
|
volumeToken0
|
||
|
volumeToken1
|
||
|
volumeUSD
|
||
|
untrackedVolumeUSD
|
||
|
feesUSD
|
||
|
collectedFeesToken0
|
||
|
collectedFeesToken1
|
||
|
collectedFeesUSD
|
||
|
createdAtTimestamp
|
||
|
createdAtBlockNumber
|
||
|
liquidityProviderCount
|
||
|
feeGrowthOutside0X128
|
||
|
feeGrowthOutside1X128
|
||
|
}
|
||
|
|
||
|
input Tick_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
poolAddress: String
|
||
|
poolAddress_not: String
|
||
|
poolAddress_gt: String
|
||
|
poolAddress_lt: String
|
||
|
poolAddress_gte: String
|
||
|
poolAddress_lte: String
|
||
|
poolAddress_in: [String!]
|
||
|
poolAddress_not_in: [String!]
|
||
|
poolAddress_starts_with: String
|
||
|
poolAddress_starts_with_nocase: String
|
||
|
poolAddress_not_starts_with: String
|
||
|
poolAddress_not_starts_with_nocase: String
|
||
|
poolAddress_ends_with: String
|
||
|
poolAddress_ends_with_nocase: String
|
||
|
poolAddress_not_ends_with: String
|
||
|
poolAddress_not_ends_with_nocase: String
|
||
|
poolAddress_contains: String
|
||
|
poolAddress_not_contains: String
|
||
|
poolAddress_contains_nocase: String
|
||
|
poolAddress_not_contains_nocase: String
|
||
|
tickIdx: BigInt
|
||
|
tickIdx_not: BigInt
|
||
|
tickIdx_gt: BigInt
|
||
|
tickIdx_lt: BigInt
|
||
|
tickIdx_gte: BigInt
|
||
|
tickIdx_lte: BigInt
|
||
|
tickIdx_in: [BigInt!]
|
||
|
tickIdx_not_in: [BigInt!]
|
||
|
pool: String
|
||
|
pool_not: String
|
||
|
pool_gt: String
|
||
|
pool_lt: String
|
||
|
pool_gte: String
|
||
|
pool_lte: String
|
||
|
pool_in: [String!]
|
||
|
pool_not_in: [String!]
|
||
|
pool_starts_with: String
|
||
|
pool_starts_with_nocase: String
|
||
|
pool_not_starts_with: String
|
||
|
pool_not_starts_with_nocase: String
|
||
|
pool_ends_with: String
|
||
|
pool_ends_with_nocase: String
|
||
|
pool_not_ends_with: String
|
||
|
pool_not_ends_with_nocase: String
|
||
|
pool_contains: String
|
||
|
pool_not_contains: String
|
||
|
pool_contains_nocase: String
|
||
|
pool_not_contains_nocase: String
|
||
|
pool_: Pool_filter
|
||
|
liquidityGross: BigInt
|
||
|
liquidityGross_not: BigInt
|
||
|
liquidityGross_gt: BigInt
|
||
|
liquidityGross_lt: BigInt
|
||
|
liquidityGross_gte: BigInt
|
||
|
liquidityGross_lte: BigInt
|
||
|
liquidityGross_in: [BigInt!]
|
||
|
liquidityGross_not_in: [BigInt!]
|
||
|
liquidityNet: BigInt
|
||
|
liquidityNet_not: BigInt
|
||
|
liquidityNet_gt: BigInt
|
||
|
liquidityNet_lt: BigInt
|
||
|
liquidityNet_gte: BigInt
|
||
|
liquidityNet_lte: BigInt
|
||
|
liquidityNet_in: [BigInt!]
|
||
|
liquidityNet_not_in: [BigInt!]
|
||
|
price0: BigDecimal
|
||
|
price0_not: BigDecimal
|
||
|
price0_gt: BigDecimal
|
||
|
price0_lt: BigDecimal
|
||
|
price0_gte: BigDecimal
|
||
|
price0_lte: BigDecimal
|
||
|
price0_in: [BigDecimal!]
|
||
|
price0_not_in: [BigDecimal!]
|
||
|
price1: BigDecimal
|
||
|
price1_not: BigDecimal
|
||
|
price1_gt: BigDecimal
|
||
|
price1_lt: BigDecimal
|
||
|
price1_gte: BigDecimal
|
||
|
price1_lte: BigDecimal
|
||
|
price1_in: [BigDecimal!]
|
||
|
price1_not_in: [BigDecimal!]
|
||
|
volumeToken0: BigDecimal
|
||
|
volumeToken0_not: BigDecimal
|
||
|
volumeToken0_gt: BigDecimal
|
||
|
volumeToken0_lt: BigDecimal
|
||
|
volumeToken0_gte: BigDecimal
|
||
|
volumeToken0_lte: BigDecimal
|
||
|
volumeToken0_in: [BigDecimal!]
|
||
|
volumeToken0_not_in: [BigDecimal!]
|
||
|
volumeToken1: BigDecimal
|
||
|
volumeToken1_not: BigDecimal
|
||
|
volumeToken1_gt: BigDecimal
|
||
|
volumeToken1_lt: BigDecimal
|
||
|
volumeToken1_gte: BigDecimal
|
||
|
volumeToken1_lte: BigDecimal
|
||
|
volumeToken1_in: [BigDecimal!]
|
||
|
volumeToken1_not_in: [BigDecimal!]
|
||
|
volumeUSD: BigDecimal
|
||
|
volumeUSD_not: BigDecimal
|
||
|
volumeUSD_gt: BigDecimal
|
||
|
volumeUSD_lt: BigDecimal
|
||
|
volumeUSD_gte: BigDecimal
|
||
|
volumeUSD_lte: BigDecimal
|
||
|
volumeUSD_in: [BigDecimal!]
|
||
|
volumeUSD_not_in: [BigDecimal!]
|
||
|
untrackedVolumeUSD: BigDecimal
|
||
|
untrackedVolumeUSD_not: BigDecimal
|
||
|
untrackedVolumeUSD_gt: BigDecimal
|
||
|
untrackedVolumeUSD_lt: BigDecimal
|
||
|
untrackedVolumeUSD_gte: BigDecimal
|
||
|
untrackedVolumeUSD_lte: BigDecimal
|
||
|
untrackedVolumeUSD_in: [BigDecimal!]
|
||
|
untrackedVolumeUSD_not_in: [BigDecimal!]
|
||
|
feesUSD: BigDecimal
|
||
|
feesUSD_not: BigDecimal
|
||
|
feesUSD_gt: BigDecimal
|
||
|
feesUSD_lt: BigDecimal
|
||
|
feesUSD_gte: BigDecimal
|
||
|
feesUSD_lte: BigDecimal
|
||
|
feesUSD_in: [BigDecimal!]
|
||
|
feesUSD_not_in: [BigDecimal!]
|
||
|
collectedFeesToken0: BigDecimal
|
||
|
collectedFeesToken0_not: BigDecimal
|
||
|
collectedFeesToken0_gt: BigDecimal
|
||
|
collectedFeesToken0_lt: BigDecimal
|
||
|
collectedFeesToken0_gte: BigDecimal
|
||
|
collectedFeesToken0_lte: BigDecimal
|
||
|
collectedFeesToken0_in: [BigDecimal!]
|
||
|
collectedFeesToken0_not_in: [BigDecimal!]
|
||
|
collectedFeesToken1: BigDecimal
|
||
|
collectedFeesToken1_not: BigDecimal
|
||
|
collectedFeesToken1_gt: BigDecimal
|
||
|
collectedFeesToken1_lt: BigDecimal
|
||
|
collectedFeesToken1_gte: BigDecimal
|
||
|
collectedFeesToken1_lte: BigDecimal
|
||
|
collectedFeesToken1_in: [BigDecimal!]
|
||
|
collectedFeesToken1_not_in: [BigDecimal!]
|
||
|
collectedFeesUSD: BigDecimal
|
||
|
collectedFeesUSD_not: BigDecimal
|
||
|
collectedFeesUSD_gt: BigDecimal
|
||
|
collectedFeesUSD_lt: BigDecimal
|
||
|
collectedFeesUSD_gte: BigDecimal
|
||
|
collectedFeesUSD_lte: BigDecimal
|
||
|
collectedFeesUSD_in: [BigDecimal!]
|
||
|
collectedFeesUSD_not_in: [BigDecimal!]
|
||
|
createdAtTimestamp: BigInt
|
||
|
createdAtTimestamp_not: BigInt
|
||
|
createdAtTimestamp_gt: BigInt
|
||
|
createdAtTimestamp_lt: BigInt
|
||
|
createdAtTimestamp_gte: BigInt
|
||
|
createdAtTimestamp_lte: BigInt
|
||
|
createdAtTimestamp_in: [BigInt!]
|
||
|
createdAtTimestamp_not_in: [BigInt!]
|
||
|
createdAtBlockNumber: BigInt
|
||
|
createdAtBlockNumber_not: BigInt
|
||
|
createdAtBlockNumber_gt: BigInt
|
||
|
createdAtBlockNumber_lt: BigInt
|
||
|
createdAtBlockNumber_gte: BigInt
|
||
|
createdAtBlockNumber_lte: BigInt
|
||
|
createdAtBlockNumber_in: [BigInt!]
|
||
|
createdAtBlockNumber_not_in: [BigInt!]
|
||
|
liquidityProviderCount: BigInt
|
||
|
liquidityProviderCount_not: BigInt
|
||
|
liquidityProviderCount_gt: BigInt
|
||
|
liquidityProviderCount_lt: BigInt
|
||
|
liquidityProviderCount_gte: BigInt
|
||
|
liquidityProviderCount_lte: BigInt
|
||
|
liquidityProviderCount_in: [BigInt!]
|
||
|
liquidityProviderCount_not_in: [BigInt!]
|
||
|
feeGrowthOutside0X128: BigInt
|
||
|
feeGrowthOutside0X128_not: BigInt
|
||
|
feeGrowthOutside0X128_gt: BigInt
|
||
|
feeGrowthOutside0X128_lt: BigInt
|
||
|
feeGrowthOutside0X128_gte: BigInt
|
||
|
feeGrowthOutside0X128_lte: BigInt
|
||
|
feeGrowthOutside0X128_in: [BigInt!]
|
||
|
feeGrowthOutside0X128_not_in: [BigInt!]
|
||
|
feeGrowthOutside1X128: BigInt
|
||
|
feeGrowthOutside1X128_not: BigInt
|
||
|
feeGrowthOutside1X128_gt: BigInt
|
||
|
feeGrowthOutside1X128_lt: BigInt
|
||
|
feeGrowthOutside1X128_gte: BigInt
|
||
|
feeGrowthOutside1X128_lte: BigInt
|
||
|
feeGrowthOutside1X128_in: [BigInt!]
|
||
|
feeGrowthOutside1X128_not_in: [BigInt!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [Tick_filter]
|
||
|
or: [Tick_filter]
|
||
|
}
|
||
|
|
||
|
enum Position_orderBy {
|
||
|
id
|
||
|
owner
|
||
|
pool
|
||
|
pool__id
|
||
|
pool__createdAtTimestamp
|
||
|
pool__createdAtBlockNumber
|
||
|
pool__feeTier
|
||
|
pool__liquidity
|
||
|
pool__sqrtPrice
|
||
|
pool__feeGrowthGlobal0X128
|
||
|
pool__feeGrowthGlobal1X128
|
||
|
pool__token0Price
|
||
|
pool__token1Price
|
||
|
pool__tick
|
||
|
pool__observationIndex
|
||
|
pool__volumeToken0
|
||
|
pool__volumeToken1
|
||
|
pool__volumeUSD
|
||
|
pool__untrackedVolumeUSD
|
||
|
pool__feesUSD
|
||
|
pool__txCount
|
||
|
pool__collectedFeesToken0
|
||
|
pool__collectedFeesToken1
|
||
|
pool__collectedFeesUSD
|
||
|
pool__totalValueLockedToken0
|
||
|
pool__totalValueLockedToken1
|
||
|
pool__totalValueLockedETH
|
||
|
pool__totalValueLockedUSD
|
||
|
pool__totalValueLockedUSDUntracked
|
||
|
pool__isProtocolFeeEnabled
|
||
|
pool__liquidityProviderCount
|
||
|
token0
|
||
|
token0__id
|
||
|
token0__symbol
|
||
|
token0__name
|
||
|
token0__decimals
|
||
|
token0__totalSupply
|
||
|
token0__volume
|
||
|
token0__volumeUSD
|
||
|
token0__untrackedVolumeUSD
|
||
|
token0__feesUSD
|
||
|
token0__txCount
|
||
|
token0__poolCount
|
||
|
token0__totalValueLocked
|
||
|
token0__totalValueLockedUSD
|
||
|
token0__totalValueLockedUSDUntracked
|
||
|
token0__derivedETH
|
||
|
token1
|
||
|
token1__id
|
||
|
token1__symbol
|
||
|
token1__name
|
||
|
token1__decimals
|
||
|
token1__totalSupply
|
||
|
token1__volume
|
||
|
token1__volumeUSD
|
||
|
token1__untrackedVolumeUSD
|
||
|
token1__feesUSD
|
||
|
token1__txCount
|
||
|
token1__poolCount
|
||
|
token1__totalValueLocked
|
||
|
token1__totalValueLockedUSD
|
||
|
token1__totalValueLockedUSDUntracked
|
||
|
token1__derivedETH
|
||
|
tickLower
|
||
|
tickLower__id
|
||
|
tickLower__poolAddress
|
||
|
tickLower__tickIdx
|
||
|
tickLower__liquidityGross
|
||
|
tickLower__liquidityNet
|
||
|
tickLower__price0
|
||
|
tickLower__price1
|
||
|
tickLower__volumeToken0
|
||
|
tickLower__volumeToken1
|
||
|
tickLower__volumeUSD
|
||
|
tickLower__untrackedVolumeUSD
|
||
|
tickLower__feesUSD
|
||
|
tickLower__collectedFeesToken0
|
||
|
tickLower__collectedFeesToken1
|
||
|
tickLower__collectedFeesUSD
|
||
|
tickLower__createdAtTimestamp
|
||
|
tickLower__createdAtBlockNumber
|
||
|
tickLower__liquidityProviderCount
|
||
|
tickLower__feeGrowthOutside0X128
|
||
|
tickLower__feeGrowthOutside1X128
|
||
|
tickUpper
|
||
|
tickUpper__id
|
||
|
tickUpper__poolAddress
|
||
|
tickUpper__tickIdx
|
||
|
tickUpper__liquidityGross
|
||
|
tickUpper__liquidityNet
|
||
|
tickUpper__price0
|
||
|
tickUpper__price1
|
||
|
tickUpper__volumeToken0
|
||
|
tickUpper__volumeToken1
|
||
|
tickUpper__volumeUSD
|
||
|
tickUpper__untrackedVolumeUSD
|
||
|
tickUpper__feesUSD
|
||
|
tickUpper__collectedFeesToken0
|
||
|
tickUpper__collectedFeesToken1
|
||
|
tickUpper__collectedFeesUSD
|
||
|
tickUpper__createdAtTimestamp
|
||
|
tickUpper__createdAtBlockNumber
|
||
|
tickUpper__liquidityProviderCount
|
||
|
tickUpper__feeGrowthOutside0X128
|
||
|
tickUpper__feeGrowthOutside1X128
|
||
|
liquidity
|
||
|
depositedToken0
|
||
|
depositedToken1
|
||
|
withdrawnToken0
|
||
|
withdrawnToken1
|
||
|
collectedToken0
|
||
|
collectedToken1
|
||
|
collectedFeesToken0
|
||
|
collectedFeesToken1
|
||
|
amountDepositedUSD
|
||
|
amountWithdrawnUSD
|
||
|
amountCollectedUSD
|
||
|
transaction
|
||
|
transaction__id
|
||
|
transaction__blockNumber
|
||
|
transaction__timestamp
|
||
|
transaction__gasUsed
|
||
|
transaction__gasPrice
|
||
|
feeGrowthInside0LastX128
|
||
|
feeGrowthInside1LastX128
|
||
|
increaseEvents
|
||
|
decreaseEvents
|
||
|
}
|
||
|
|
||
|
input Position_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
owner: Bytes
|
||
|
owner_not: Bytes
|
||
|
owner_gt: Bytes
|
||
|
owner_lt: Bytes
|
||
|
owner_gte: Bytes
|
||
|
owner_lte: Bytes
|
||
|
owner_in: [Bytes!]
|
||
|
owner_not_in: [Bytes!]
|
||
|
owner_contains: Bytes
|
||
|
owner_not_contains: Bytes
|
||
|
pool: String
|
||
|
pool_not: String
|
||
|
pool_gt: String
|
||
|
pool_lt: String
|
||
|
pool_gte: String
|
||
|
pool_lte: String
|
||
|
pool_in: [String!]
|
||
|
pool_not_in: [String!]
|
||
|
pool_starts_with: String
|
||
|
pool_starts_with_nocase: String
|
||
|
pool_not_starts_with: String
|
||
|
pool_not_starts_with_nocase: String
|
||
|
pool_ends_with: String
|
||
|
pool_ends_with_nocase: String
|
||
|
pool_not_ends_with: String
|
||
|
pool_not_ends_with_nocase: String
|
||
|
pool_contains: String
|
||
|
pool_not_contains: String
|
||
|
pool_contains_nocase: String
|
||
|
pool_not_contains_nocase: String
|
||
|
pool_: Pool_filter
|
||
|
token0: String
|
||
|
token0_not: String
|
||
|
token0_gt: String
|
||
|
token0_lt: String
|
||
|
token0_gte: String
|
||
|
token0_lte: String
|
||
|
token0_in: [String!]
|
||
|
token0_not_in: [String!]
|
||
|
token0_starts_with: String
|
||
|
token0_starts_with_nocase: String
|
||
|
token0_not_starts_with: String
|
||
|
token0_not_starts_with_nocase: String
|
||
|
token0_ends_with: String
|
||
|
token0_ends_with_nocase: String
|
||
|
token0_not_ends_with: String
|
||
|
token0_not_ends_with_nocase: String
|
||
|
token0_contains: String
|
||
|
token0_not_contains: String
|
||
|
token0_contains_nocase: String
|
||
|
token0_not_contains_nocase: String
|
||
|
token0_: Token_filter
|
||
|
token1: String
|
||
|
token1_not: String
|
||
|
token1_gt: String
|
||
|
token1_lt: String
|
||
|
token1_gte: String
|
||
|
token1_lte: String
|
||
|
token1_in: [String!]
|
||
|
token1_not_in: [String!]
|
||
|
token1_starts_with: String
|
||
|
token1_starts_with_nocase: String
|
||
|
token1_not_starts_with: String
|
||
|
token1_not_starts_with_nocase: String
|
||
|
token1_ends_with: String
|
||
|
token1_ends_with_nocase: String
|
||
|
token1_not_ends_with: String
|
||
|
token1_not_ends_with_nocase: String
|
||
|
token1_contains: String
|
||
|
token1_not_contains: String
|
||
|
token1_contains_nocase: String
|
||
|
token1_not_contains_nocase: String
|
||
|
token1_: Token_filter
|
||
|
tickLower: String
|
||
|
tickLower_not: String
|
||
|
tickLower_gt: String
|
||
|
tickLower_lt: String
|
||
|
tickLower_gte: String
|
||
|
tickLower_lte: String
|
||
|
tickLower_in: [String!]
|
||
|
tickLower_not_in: [String!]
|
||
|
tickLower_starts_with: String
|
||
|
tickLower_starts_with_nocase: String
|
||
|
tickLower_not_starts_with: String
|
||
|
tickLower_not_starts_with_nocase: String
|
||
|
tickLower_ends_with: String
|
||
|
tickLower_ends_with_nocase: String
|
||
|
tickLower_not_ends_with: String
|
||
|
tickLower_not_ends_with_nocase: String
|
||
|
tickLower_contains: String
|
||
|
tickLower_not_contains: String
|
||
|
tickLower_contains_nocase: String
|
||
|
tickLower_not_contains_nocase: String
|
||
|
tickLower_: Tick_filter
|
||
|
tickUpper: String
|
||
|
tickUpper_not: String
|
||
|
tickUpper_gt: String
|
||
|
tickUpper_lt: String
|
||
|
tickUpper_gte: String
|
||
|
tickUpper_lte: String
|
||
|
tickUpper_in: [String!]
|
||
|
tickUpper_not_in: [String!]
|
||
|
tickUpper_starts_with: String
|
||
|
tickUpper_starts_with_nocase: String
|
||
|
tickUpper_not_starts_with: String
|
||
|
tickUpper_not_starts_with_nocase: String
|
||
|
tickUpper_ends_with: String
|
||
|
tickUpper_ends_with_nocase: String
|
||
|
tickUpper_not_ends_with: String
|
||
|
tickUpper_not_ends_with_nocase: String
|
||
|
tickUpper_contains: String
|
||
|
tickUpper_not_contains: String
|
||
|
tickUpper_contains_nocase: String
|
||
|
tickUpper_not_contains_nocase: String
|
||
|
tickUpper_: Tick_filter
|
||
|
liquidity: BigInt
|
||
|
liquidity_not: BigInt
|
||
|
liquidity_gt: BigInt
|
||
|
liquidity_lt: BigInt
|
||
|
liquidity_gte: BigInt
|
||
|
liquidity_lte: BigInt
|
||
|
liquidity_in: [BigInt!]
|
||
|
liquidity_not_in: [BigInt!]
|
||
|
depositedToken0: BigDecimal
|
||
|
depositedToken0_not: BigDecimal
|
||
|
depositedToken0_gt: BigDecimal
|
||
|
depositedToken0_lt: BigDecimal
|
||
|
depositedToken0_gte: BigDecimal
|
||
|
depositedToken0_lte: BigDecimal
|
||
|
depositedToken0_in: [BigDecimal!]
|
||
|
depositedToken0_not_in: [BigDecimal!]
|
||
|
depositedToken1: BigDecimal
|
||
|
depositedToken1_not: BigDecimal
|
||
|
depositedToken1_gt: BigDecimal
|
||
|
depositedToken1_lt: BigDecimal
|
||
|
depositedToken1_gte: BigDecimal
|
||
|
depositedToken1_lte: BigDecimal
|
||
|
depositedToken1_in: [BigDecimal!]
|
||
|
depositedToken1_not_in: [BigDecimal!]
|
||
|
withdrawnToken0: BigDecimal
|
||
|
withdrawnToken0_not: BigDecimal
|
||
|
withdrawnToken0_gt: BigDecimal
|
||
|
withdrawnToken0_lt: BigDecimal
|
||
|
withdrawnToken0_gte: BigDecimal
|
||
|
withdrawnToken0_lte: BigDecimal
|
||
|
withdrawnToken0_in: [BigDecimal!]
|
||
|
withdrawnToken0_not_in: [BigDecimal!]
|
||
|
withdrawnToken1: BigDecimal
|
||
|
withdrawnToken1_not: BigDecimal
|
||
|
withdrawnToken1_gt: BigDecimal
|
||
|
withdrawnToken1_lt: BigDecimal
|
||
|
withdrawnToken1_gte: BigDecimal
|
||
|
withdrawnToken1_lte: BigDecimal
|
||
|
withdrawnToken1_in: [BigDecimal!]
|
||
|
withdrawnToken1_not_in: [BigDecimal!]
|
||
|
collectedToken0: BigDecimal
|
||
|
collectedToken0_not: BigDecimal
|
||
|
collectedToken0_gt: BigDecimal
|
||
|
collectedToken0_lt: BigDecimal
|
||
|
collectedToken0_gte: BigDecimal
|
||
|
collectedToken0_lte: BigDecimal
|
||
|
collectedToken0_in: [BigDecimal!]
|
||
|
collectedToken0_not_in: [BigDecimal!]
|
||
|
collectedToken1: BigDecimal
|
||
|
collectedToken1_not: BigDecimal
|
||
|
collectedToken1_gt: BigDecimal
|
||
|
collectedToken1_lt: BigDecimal
|
||
|
collectedToken1_gte: BigDecimal
|
||
|
collectedToken1_lte: BigDecimal
|
||
|
collectedToken1_in: [BigDecimal!]
|
||
|
collectedToken1_not_in: [BigDecimal!]
|
||
|
collectedFeesToken0: BigDecimal
|
||
|
collectedFeesToken0_not: BigDecimal
|
||
|
collectedFeesToken0_gt: BigDecimal
|
||
|
collectedFeesToken0_lt: BigDecimal
|
||
|
collectedFeesToken0_gte: BigDecimal
|
||
|
collectedFeesToken0_lte: BigDecimal
|
||
|
collectedFeesToken0_in: [BigDecimal!]
|
||
|
collectedFeesToken0_not_in: [BigDecimal!]
|
||
|
collectedFeesToken1: BigDecimal
|
||
|
collectedFeesToken1_not: BigDecimal
|
||
|
collectedFeesToken1_gt: BigDecimal
|
||
|
collectedFeesToken1_lt: BigDecimal
|
||
|
collectedFeesToken1_gte: BigDecimal
|
||
|
collectedFeesToken1_lte: BigDecimal
|
||
|
collectedFeesToken1_in: [BigDecimal!]
|
||
|
collectedFeesToken1_not_in: [BigDecimal!]
|
||
|
amountDepositedUSD: BigDecimal
|
||
|
amountDepositedUSD_not: BigDecimal
|
||
|
amountDepositedUSD_gt: BigDecimal
|
||
|
amountDepositedUSD_lt: BigDecimal
|
||
|
amountDepositedUSD_gte: BigDecimal
|
||
|
amountDepositedUSD_lte: BigDecimal
|
||
|
amountDepositedUSD_in: [BigDecimal!]
|
||
|
amountDepositedUSD_not_in: [BigDecimal!]
|
||
|
amountWithdrawnUSD: BigDecimal
|
||
|
amountWithdrawnUSD_not: BigDecimal
|
||
|
amountWithdrawnUSD_gt: BigDecimal
|
||
|
amountWithdrawnUSD_lt: BigDecimal
|
||
|
amountWithdrawnUSD_gte: BigDecimal
|
||
|
amountWithdrawnUSD_lte: BigDecimal
|
||
|
amountWithdrawnUSD_in: [BigDecimal!]
|
||
|
amountWithdrawnUSD_not_in: [BigDecimal!]
|
||
|
amountCollectedUSD: BigDecimal
|
||
|
amountCollectedUSD_not: BigDecimal
|
||
|
amountCollectedUSD_gt: BigDecimal
|
||
|
amountCollectedUSD_lt: BigDecimal
|
||
|
amountCollectedUSD_gte: BigDecimal
|
||
|
amountCollectedUSD_lte: BigDecimal
|
||
|
amountCollectedUSD_in: [BigDecimal!]
|
||
|
amountCollectedUSD_not_in: [BigDecimal!]
|
||
|
transaction: String
|
||
|
transaction_not: String
|
||
|
transaction_gt: String
|
||
|
transaction_lt: String
|
||
|
transaction_gte: String
|
||
|
transaction_lte: String
|
||
|
transaction_in: [String!]
|
||
|
transaction_not_in: [String!]
|
||
|
transaction_starts_with: String
|
||
|
transaction_starts_with_nocase: String
|
||
|
transaction_not_starts_with: String
|
||
|
transaction_not_starts_with_nocase: String
|
||
|
transaction_ends_with: String
|
||
|
transaction_ends_with_nocase: String
|
||
|
transaction_not_ends_with: String
|
||
|
transaction_not_ends_with_nocase: String
|
||
|
transaction_contains: String
|
||
|
transaction_not_contains: String
|
||
|
transaction_contains_nocase: String
|
||
|
transaction_not_contains_nocase: String
|
||
|
transaction_: Transaction_filter
|
||
|
feeGrowthInside0LastX128: BigInt
|
||
|
feeGrowthInside0LastX128_not: BigInt
|
||
|
feeGrowthInside0LastX128_gt: BigInt
|
||
|
feeGrowthInside0LastX128_lt: BigInt
|
||
|
feeGrowthInside0LastX128_gte: BigInt
|
||
|
feeGrowthInside0LastX128_lte: BigInt
|
||
|
feeGrowthInside0LastX128_in: [BigInt!]
|
||
|
feeGrowthInside0LastX128_not_in: [BigInt!]
|
||
|
feeGrowthInside1LastX128: BigInt
|
||
|
feeGrowthInside1LastX128_not: BigInt
|
||
|
feeGrowthInside1LastX128_gt: BigInt
|
||
|
feeGrowthInside1LastX128_lt: BigInt
|
||
|
feeGrowthInside1LastX128_gte: BigInt
|
||
|
feeGrowthInside1LastX128_lte: BigInt
|
||
|
feeGrowthInside1LastX128_in: [BigInt!]
|
||
|
feeGrowthInside1LastX128_not_in: [BigInt!]
|
||
|
increaseEvents_: IncreaseEvent_filter
|
||
|
decreaseEvents_: IncreaseEvent_filter
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [Position_filter]
|
||
|
or: [Position_filter]
|
||
|
}
|
||
|
|
||
|
enum PositionSnapshot_orderBy {
|
||
|
id
|
||
|
owner
|
||
|
pool
|
||
|
pool__id
|
||
|
pool__createdAtTimestamp
|
||
|
pool__createdAtBlockNumber
|
||
|
pool__feeTier
|
||
|
pool__liquidity
|
||
|
pool__sqrtPrice
|
||
|
pool__feeGrowthGlobal0X128
|
||
|
pool__feeGrowthGlobal1X128
|
||
|
pool__token0Price
|
||
|
pool__token1Price
|
||
|
pool__tick
|
||
|
pool__observationIndex
|
||
|
pool__volumeToken0
|
||
|
pool__volumeToken1
|
||
|
pool__volumeUSD
|
||
|
pool__untrackedVolumeUSD
|
||
|
pool__feesUSD
|
||
|
pool__txCount
|
||
|
pool__collectedFeesToken0
|
||
|
pool__collectedFeesToken1
|
||
|
pool__collectedFeesUSD
|
||
|
pool__totalValueLockedToken0
|
||
|
pool__totalValueLockedToken1
|
||
|
pool__totalValueLockedETH
|
||
|
pool__totalValueLockedUSD
|
||
|
pool__totalValueLockedUSDUntracked
|
||
|
pool__isProtocolFeeEnabled
|
||
|
pool__liquidityProviderCount
|
||
|
position
|
||
|
position__id
|
||
|
position__owner
|
||
|
position__liquidity
|
||
|
position__depositedToken0
|
||
|
position__depositedToken1
|
||
|
position__withdrawnToken0
|
||
|
position__withdrawnToken1
|
||
|
position__collectedToken0
|
||
|
position__collectedToken1
|
||
|
position__collectedFeesToken0
|
||
|
position__collectedFeesToken1
|
||
|
position__amountDepositedUSD
|
||
|
position__amountWithdrawnUSD
|
||
|
position__amountCollectedUSD
|
||
|
position__feeGrowthInside0LastX128
|
||
|
position__feeGrowthInside1LastX128
|
||
|
blockNumber
|
||
|
timestamp
|
||
|
liquidity
|
||
|
depositedToken0
|
||
|
depositedToken1
|
||
|
withdrawnToken0
|
||
|
withdrawnToken1
|
||
|
collectedFeesToken0
|
||
|
collectedFeesToken1
|
||
|
transaction
|
||
|
transaction__id
|
||
|
transaction__blockNumber
|
||
|
transaction__timestamp
|
||
|
transaction__gasUsed
|
||
|
transaction__gasPrice
|
||
|
feeGrowthInside0LastX128
|
||
|
feeGrowthInside1LastX128
|
||
|
}
|
||
|
|
||
|
input PositionSnapshot_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
owner: Bytes
|
||
|
owner_not: Bytes
|
||
|
owner_gt: Bytes
|
||
|
owner_lt: Bytes
|
||
|
owner_gte: Bytes
|
||
|
owner_lte: Bytes
|
||
|
owner_in: [Bytes!]
|
||
|
owner_not_in: [Bytes!]
|
||
|
owner_contains: Bytes
|
||
|
owner_not_contains: Bytes
|
||
|
pool: String
|
||
|
pool_not: String
|
||
|
pool_gt: String
|
||
|
pool_lt: String
|
||
|
pool_gte: String
|
||
|
pool_lte: String
|
||
|
pool_in: [String!]
|
||
|
pool_not_in: [String!]
|
||
|
pool_starts_with: String
|
||
|
pool_starts_with_nocase: String
|
||
|
pool_not_starts_with: String
|
||
|
pool_not_starts_with_nocase: String
|
||
|
pool_ends_with: String
|
||
|
pool_ends_with_nocase: String
|
||
|
pool_not_ends_with: String
|
||
|
pool_not_ends_with_nocase: String
|
||
|
pool_contains: String
|
||
|
pool_not_contains: String
|
||
|
pool_contains_nocase: String
|
||
|
pool_not_contains_nocase: String
|
||
|
pool_: Pool_filter
|
||
|
position: String
|
||
|
position_not: String
|
||
|
position_gt: String
|
||
|
position_lt: String
|
||
|
position_gte: String
|
||
|
position_lte: String
|
||
|
position_in: [String!]
|
||
|
position_not_in: [String!]
|
||
|
position_starts_with: String
|
||
|
position_starts_with_nocase: String
|
||
|
position_not_starts_with: String
|
||
|
position_not_starts_with_nocase: String
|
||
|
position_ends_with: String
|
||
|
position_ends_with_nocase: String
|
||
|
position_not_ends_with: String
|
||
|
position_not_ends_with_nocase: String
|
||
|
position_contains: String
|
||
|
position_not_contains: String
|
||
|
position_contains_nocase: String
|
||
|
position_not_contains_nocase: String
|
||
|
position_: Position_filter
|
||
|
blockNumber: BigInt
|
||
|
blockNumber_not: BigInt
|
||
|
blockNumber_gt: BigInt
|
||
|
blockNumber_lt: BigInt
|
||
|
blockNumber_gte: BigInt
|
||
|
blockNumber_lte: BigInt
|
||
|
blockNumber_in: [BigInt!]
|
||
|
blockNumber_not_in: [BigInt!]
|
||
|
timestamp: BigInt
|
||
|
timestamp_not: BigInt
|
||
|
timestamp_gt: BigInt
|
||
|
timestamp_lt: BigInt
|
||
|
timestamp_gte: BigInt
|
||
|
timestamp_lte: BigInt
|
||
|
timestamp_in: [BigInt!]
|
||
|
timestamp_not_in: [BigInt!]
|
||
|
liquidity: BigInt
|
||
|
liquidity_not: BigInt
|
||
|
liquidity_gt: BigInt
|
||
|
liquidity_lt: BigInt
|
||
|
liquidity_gte: BigInt
|
||
|
liquidity_lte: BigInt
|
||
|
liquidity_in: [BigInt!]
|
||
|
liquidity_not_in: [BigInt!]
|
||
|
depositedToken0: BigDecimal
|
||
|
depositedToken0_not: BigDecimal
|
||
|
depositedToken0_gt: BigDecimal
|
||
|
depositedToken0_lt: BigDecimal
|
||
|
depositedToken0_gte: BigDecimal
|
||
|
depositedToken0_lte: BigDecimal
|
||
|
depositedToken0_in: [BigDecimal!]
|
||
|
depositedToken0_not_in: [BigDecimal!]
|
||
|
depositedToken1: BigDecimal
|
||
|
depositedToken1_not: BigDecimal
|
||
|
depositedToken1_gt: BigDecimal
|
||
|
depositedToken1_lt: BigDecimal
|
||
|
depositedToken1_gte: BigDecimal
|
||
|
depositedToken1_lte: BigDecimal
|
||
|
depositedToken1_in: [BigDecimal!]
|
||
|
depositedToken1_not_in: [BigDecimal!]
|
||
|
withdrawnToken0: BigDecimal
|
||
|
withdrawnToken0_not: BigDecimal
|
||
|
withdrawnToken0_gt: BigDecimal
|
||
|
withdrawnToken0_lt: BigDecimal
|
||
|
withdrawnToken0_gte: BigDecimal
|
||
|
withdrawnToken0_lte: BigDecimal
|
||
|
withdrawnToken0_in: [BigDecimal!]
|
||
|
withdrawnToken0_not_in: [BigDecimal!]
|
||
|
withdrawnToken1: BigDecimal
|
||
|
withdrawnToken1_not: BigDecimal
|
||
|
withdrawnToken1_gt: BigDecimal
|
||
|
withdrawnToken1_lt: BigDecimal
|
||
|
withdrawnToken1_gte: BigDecimal
|
||
|
withdrawnToken1_lte: BigDecimal
|
||
|
withdrawnToken1_in: [BigDecimal!]
|
||
|
withdrawnToken1_not_in: [BigDecimal!]
|
||
|
collectedFeesToken0: BigDecimal
|
||
|
collectedFeesToken0_not: BigDecimal
|
||
|
collectedFeesToken0_gt: BigDecimal
|
||
|
collectedFeesToken0_lt: BigDecimal
|
||
|
collectedFeesToken0_gte: BigDecimal
|
||
|
collectedFeesToken0_lte: BigDecimal
|
||
|
collectedFeesToken0_in: [BigDecimal!]
|
||
|
collectedFeesToken0_not_in: [BigDecimal!]
|
||
|
collectedFeesToken1: BigDecimal
|
||
|
collectedFeesToken1_not: BigDecimal
|
||
|
collectedFeesToken1_gt: BigDecimal
|
||
|
collectedFeesToken1_lt: BigDecimal
|
||
|
collectedFeesToken1_gte: BigDecimal
|
||
|
collectedFeesToken1_lte: BigDecimal
|
||
|
collectedFeesToken1_in: [BigDecimal!]
|
||
|
collectedFeesToken1_not_in: [BigDecimal!]
|
||
|
transaction: String
|
||
|
transaction_not: String
|
||
|
transaction_gt: String
|
||
|
transaction_lt: String
|
||
|
transaction_gte: String
|
||
|
transaction_lte: String
|
||
|
transaction_in: [String!]
|
||
|
transaction_not_in: [String!]
|
||
|
transaction_starts_with: String
|
||
|
transaction_starts_with_nocase: String
|
||
|
transaction_not_starts_with: String
|
||
|
transaction_not_starts_with_nocase: String
|
||
|
transaction_ends_with: String
|
||
|
transaction_ends_with_nocase: String
|
||
|
transaction_not_ends_with: String
|
||
|
transaction_not_ends_with_nocase: String
|
||
|
transaction_contains: String
|
||
|
transaction_not_contains: String
|
||
|
transaction_contains_nocase: String
|
||
|
transaction_not_contains_nocase: String
|
||
|
transaction_: Transaction_filter
|
||
|
feeGrowthInside0LastX128: BigInt
|
||
|
feeGrowthInside0LastX128_not: BigInt
|
||
|
feeGrowthInside0LastX128_gt: BigInt
|
||
|
feeGrowthInside0LastX128_lt: BigInt
|
||
|
feeGrowthInside0LastX128_gte: BigInt
|
||
|
feeGrowthInside0LastX128_lte: BigInt
|
||
|
feeGrowthInside0LastX128_in: [BigInt!]
|
||
|
feeGrowthInside0LastX128_not_in: [BigInt!]
|
||
|
feeGrowthInside1LastX128: BigInt
|
||
|
feeGrowthInside1LastX128_not: BigInt
|
||
|
feeGrowthInside1LastX128_gt: BigInt
|
||
|
feeGrowthInside1LastX128_lt: BigInt
|
||
|
feeGrowthInside1LastX128_gte: BigInt
|
||
|
feeGrowthInside1LastX128_lte: BigInt
|
||
|
feeGrowthInside1LastX128_in: [BigInt!]
|
||
|
feeGrowthInside1LastX128_not_in: [BigInt!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [PositionSnapshot_filter]
|
||
|
or: [PositionSnapshot_filter]
|
||
|
}
|
||
|
|
||
|
enum Transaction_orderBy {
|
||
|
id
|
||
|
blockNumber
|
||
|
timestamp
|
||
|
gasUsed
|
||
|
gasPrice
|
||
|
mints
|
||
|
burns
|
||
|
swaps
|
||
|
flashed
|
||
|
collects
|
||
|
}
|
||
|
|
||
|
input Transaction_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
blockNumber: BigInt
|
||
|
blockNumber_not: BigInt
|
||
|
blockNumber_gt: BigInt
|
||
|
blockNumber_lt: BigInt
|
||
|
blockNumber_gte: BigInt
|
||
|
blockNumber_lte: BigInt
|
||
|
blockNumber_in: [BigInt!]
|
||
|
blockNumber_not_in: [BigInt!]
|
||
|
timestamp: BigInt
|
||
|
timestamp_not: BigInt
|
||
|
timestamp_gt: BigInt
|
||
|
timestamp_lt: BigInt
|
||
|
timestamp_gte: BigInt
|
||
|
timestamp_lte: BigInt
|
||
|
timestamp_in: [BigInt!]
|
||
|
timestamp_not_in: [BigInt!]
|
||
|
gasUsed: BigInt
|
||
|
gasUsed_not: BigInt
|
||
|
gasUsed_gt: BigInt
|
||
|
gasUsed_lt: BigInt
|
||
|
gasUsed_gte: BigInt
|
||
|
gasUsed_lte: BigInt
|
||
|
gasUsed_in: [BigInt!]
|
||
|
gasUsed_not_in: [BigInt!]
|
||
|
gasPrice: BigInt
|
||
|
gasPrice_not: BigInt
|
||
|
gasPrice_gt: BigInt
|
||
|
gasPrice_lt: BigInt
|
||
|
gasPrice_gte: BigInt
|
||
|
gasPrice_lte: BigInt
|
||
|
gasPrice_in: [BigInt!]
|
||
|
gasPrice_not_in: [BigInt!]
|
||
|
mints_: Mint_filter
|
||
|
burns_: Burn_filter
|
||
|
swaps_: Swap_filter
|
||
|
flashed_: Flash_filter
|
||
|
collects_: Collect_filter
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [Transaction_filter]
|
||
|
or: [Transaction_filter]
|
||
|
}
|
||
|
|
||
|
enum Mint_orderBy {
|
||
|
id
|
||
|
transaction
|
||
|
transaction__id
|
||
|
transaction__blockNumber
|
||
|
transaction__timestamp
|
||
|
transaction__gasUsed
|
||
|
transaction__gasPrice
|
||
|
timestamp
|
||
|
pool
|
||
|
pool__id
|
||
|
pool__createdAtTimestamp
|
||
|
pool__createdAtBlockNumber
|
||
|
pool__feeTier
|
||
|
pool__liquidity
|
||
|
pool__sqrtPrice
|
||
|
pool__feeGrowthGlobal0X128
|
||
|
pool__feeGrowthGlobal1X128
|
||
|
pool__token0Price
|
||
|
pool__token1Price
|
||
|
pool__tick
|
||
|
pool__observationIndex
|
||
|
pool__volumeToken0
|
||
|
pool__volumeToken1
|
||
|
pool__volumeUSD
|
||
|
pool__untrackedVolumeUSD
|
||
|
pool__feesUSD
|
||
|
pool__txCount
|
||
|
pool__collectedFeesToken0
|
||
|
pool__collectedFeesToken1
|
||
|
pool__collectedFeesUSD
|
||
|
pool__totalValueLockedToken0
|
||
|
pool__totalValueLockedToken1
|
||
|
pool__totalValueLockedETH
|
||
|
pool__totalValueLockedUSD
|
||
|
pool__totalValueLockedUSDUntracked
|
||
|
pool__isProtocolFeeEnabled
|
||
|
pool__liquidityProviderCount
|
||
|
token0
|
||
|
token0__id
|
||
|
token0__symbol
|
||
|
token0__name
|
||
|
token0__decimals
|
||
|
token0__totalSupply
|
||
|
token0__volume
|
||
|
token0__volumeUSD
|
||
|
token0__untrackedVolumeUSD
|
||
|
token0__feesUSD
|
||
|
token0__txCount
|
||
|
token0__poolCount
|
||
|
token0__totalValueLocked
|
||
|
token0__totalValueLockedUSD
|
||
|
token0__totalValueLockedUSDUntracked
|
||
|
token0__derivedETH
|
||
|
token1
|
||
|
token1__id
|
||
|
token1__symbol
|
||
|
token1__name
|
||
|
token1__decimals
|
||
|
token1__totalSupply
|
||
|
token1__volume
|
||
|
token1__volumeUSD
|
||
|
token1__untrackedVolumeUSD
|
||
|
token1__feesUSD
|
||
|
token1__txCount
|
||
|
token1__poolCount
|
||
|
token1__totalValueLocked
|
||
|
token1__totalValueLockedUSD
|
||
|
token1__totalValueLockedUSDUntracked
|
||
|
token1__derivedETH
|
||
|
owner
|
||
|
sender
|
||
|
origin
|
||
|
amount
|
||
|
amount0
|
||
|
amount1
|
||
|
amountUSD
|
||
|
tickLower
|
||
|
tickUpper
|
||
|
logIndex
|
||
|
}
|
||
|
|
||
|
input Mint_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
transaction: String
|
||
|
transaction_not: String
|
||
|
transaction_gt: String
|
||
|
transaction_lt: String
|
||
|
transaction_gte: String
|
||
|
transaction_lte: String
|
||
|
transaction_in: [String!]
|
||
|
transaction_not_in: [String!]
|
||
|
transaction_starts_with: String
|
||
|
transaction_starts_with_nocase: String
|
||
|
transaction_not_starts_with: String
|
||
|
transaction_not_starts_with_nocase: String
|
||
|
transaction_ends_with: String
|
||
|
transaction_ends_with_nocase: String
|
||
|
transaction_not_ends_with: String
|
||
|
transaction_not_ends_with_nocase: String
|
||
|
transaction_contains: String
|
||
|
transaction_not_contains: String
|
||
|
transaction_contains_nocase: String
|
||
|
transaction_not_contains_nocase: String
|
||
|
transaction_: Transaction_filter
|
||
|
timestamp: BigInt
|
||
|
timestamp_not: BigInt
|
||
|
timestamp_gt: BigInt
|
||
|
timestamp_lt: BigInt
|
||
|
timestamp_gte: BigInt
|
||
|
timestamp_lte: BigInt
|
||
|
timestamp_in: [BigInt!]
|
||
|
timestamp_not_in: [BigInt!]
|
||
|
pool: String
|
||
|
pool_not: String
|
||
|
pool_gt: String
|
||
|
pool_lt: String
|
||
|
pool_gte: String
|
||
|
pool_lte: String
|
||
|
pool_in: [String!]
|
||
|
pool_not_in: [String!]
|
||
|
pool_starts_with: String
|
||
|
pool_starts_with_nocase: String
|
||
|
pool_not_starts_with: String
|
||
|
pool_not_starts_with_nocase: String
|
||
|
pool_ends_with: String
|
||
|
pool_ends_with_nocase: String
|
||
|
pool_not_ends_with: String
|
||
|
pool_not_ends_with_nocase: String
|
||
|
pool_contains: String
|
||
|
pool_not_contains: String
|
||
|
pool_contains_nocase: String
|
||
|
pool_not_contains_nocase: String
|
||
|
pool_: Pool_filter
|
||
|
token0: String
|
||
|
token0_not: String
|
||
|
token0_gt: String
|
||
|
token0_lt: String
|
||
|
token0_gte: String
|
||
|
token0_lte: String
|
||
|
token0_in: [String!]
|
||
|
token0_not_in: [String!]
|
||
|
token0_starts_with: String
|
||
|
token0_starts_with_nocase: String
|
||
|
token0_not_starts_with: String
|
||
|
token0_not_starts_with_nocase: String
|
||
|
token0_ends_with: String
|
||
|
token0_ends_with_nocase: String
|
||
|
token0_not_ends_with: String
|
||
|
token0_not_ends_with_nocase: String
|
||
|
token0_contains: String
|
||
|
token0_not_contains: String
|
||
|
token0_contains_nocase: String
|
||
|
token0_not_contains_nocase: String
|
||
|
token0_: Token_filter
|
||
|
token1: String
|
||
|
token1_not: String
|
||
|
token1_gt: String
|
||
|
token1_lt: String
|
||
|
token1_gte: String
|
||
|
token1_lte: String
|
||
|
token1_in: [String!]
|
||
|
token1_not_in: [String!]
|
||
|
token1_starts_with: String
|
||
|
token1_starts_with_nocase: String
|
||
|
token1_not_starts_with: String
|
||
|
token1_not_starts_with_nocase: String
|
||
|
token1_ends_with: String
|
||
|
token1_ends_with_nocase: String
|
||
|
token1_not_ends_with: String
|
||
|
token1_not_ends_with_nocase: String
|
||
|
token1_contains: String
|
||
|
token1_not_contains: String
|
||
|
token1_contains_nocase: String
|
||
|
token1_not_contains_nocase: String
|
||
|
token1_: Token_filter
|
||
|
owner: Bytes
|
||
|
owner_not: Bytes
|
||
|
owner_gt: Bytes
|
||
|
owner_lt: Bytes
|
||
|
owner_gte: Bytes
|
||
|
owner_lte: Bytes
|
||
|
owner_in: [Bytes!]
|
||
|
owner_not_in: [Bytes!]
|
||
|
owner_contains: Bytes
|
||
|
owner_not_contains: Bytes
|
||
|
sender: Bytes
|
||
|
sender_not: Bytes
|
||
|
sender_gt: Bytes
|
||
|
sender_lt: Bytes
|
||
|
sender_gte: Bytes
|
||
|
sender_lte: Bytes
|
||
|
sender_in: [Bytes!]
|
||
|
sender_not_in: [Bytes!]
|
||
|
sender_contains: Bytes
|
||
|
sender_not_contains: Bytes
|
||
|
origin: Bytes
|
||
|
origin_not: Bytes
|
||
|
origin_gt: Bytes
|
||
|
origin_lt: Bytes
|
||
|
origin_gte: Bytes
|
||
|
origin_lte: Bytes
|
||
|
origin_in: [Bytes!]
|
||
|
origin_not_in: [Bytes!]
|
||
|
origin_contains: Bytes
|
||
|
origin_not_contains: Bytes
|
||
|
amount: BigInt
|
||
|
amount_not: BigInt
|
||
|
amount_gt: BigInt
|
||
|
amount_lt: BigInt
|
||
|
amount_gte: BigInt
|
||
|
amount_lte: BigInt
|
||
|
amount_in: [BigInt!]
|
||
|
amount_not_in: [BigInt!]
|
||
|
amount0: BigDecimal
|
||
|
amount0_not: BigDecimal
|
||
|
amount0_gt: BigDecimal
|
||
|
amount0_lt: BigDecimal
|
||
|
amount0_gte: BigDecimal
|
||
|
amount0_lte: BigDecimal
|
||
|
amount0_in: [BigDecimal!]
|
||
|
amount0_not_in: [BigDecimal!]
|
||
|
amount1: BigDecimal
|
||
|
amount1_not: BigDecimal
|
||
|
amount1_gt: BigDecimal
|
||
|
amount1_lt: BigDecimal
|
||
|
amount1_gte: BigDecimal
|
||
|
amount1_lte: BigDecimal
|
||
|
amount1_in: [BigDecimal!]
|
||
|
amount1_not_in: [BigDecimal!]
|
||
|
amountUSD: BigDecimal
|
||
|
amountUSD_not: BigDecimal
|
||
|
amountUSD_gt: BigDecimal
|
||
|
amountUSD_lt: BigDecimal
|
||
|
amountUSD_gte: BigDecimal
|
||
|
amountUSD_lte: BigDecimal
|
||
|
amountUSD_in: [BigDecimal!]
|
||
|
amountUSD_not_in: [BigDecimal!]
|
||
|
tickLower: BigInt
|
||
|
tickLower_not: BigInt
|
||
|
tickLower_gt: BigInt
|
||
|
tickLower_lt: BigInt
|
||
|
tickLower_gte: BigInt
|
||
|
tickLower_lte: BigInt
|
||
|
tickLower_in: [BigInt!]
|
||
|
tickLower_not_in: [BigInt!]
|
||
|
tickUpper: BigInt
|
||
|
tickUpper_not: BigInt
|
||
|
tickUpper_gt: BigInt
|
||
|
tickUpper_lt: BigInt
|
||
|
tickUpper_gte: BigInt
|
||
|
tickUpper_lte: BigInt
|
||
|
tickUpper_in: [BigInt!]
|
||
|
tickUpper_not_in: [BigInt!]
|
||
|
logIndex: BigInt
|
||
|
logIndex_not: BigInt
|
||
|
logIndex_gt: BigInt
|
||
|
logIndex_lt: BigInt
|
||
|
logIndex_gte: BigInt
|
||
|
logIndex_lte: BigInt
|
||
|
logIndex_in: [BigInt!]
|
||
|
logIndex_not_in: [BigInt!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [Mint_filter]
|
||
|
or: [Mint_filter]
|
||
|
}
|
||
|
|
||
|
enum Burn_orderBy {
|
||
|
id
|
||
|
transaction
|
||
|
transaction__id
|
||
|
transaction__blockNumber
|
||
|
transaction__timestamp
|
||
|
transaction__gasUsed
|
||
|
transaction__gasPrice
|
||
|
pool
|
||
|
pool__id
|
||
|
pool__createdAtTimestamp
|
||
|
pool__createdAtBlockNumber
|
||
|
pool__feeTier
|
||
|
pool__liquidity
|
||
|
pool__sqrtPrice
|
||
|
pool__feeGrowthGlobal0X128
|
||
|
pool__feeGrowthGlobal1X128
|
||
|
pool__token0Price
|
||
|
pool__token1Price
|
||
|
pool__tick
|
||
|
pool__observationIndex
|
||
|
pool__volumeToken0
|
||
|
pool__volumeToken1
|
||
|
pool__volumeUSD
|
||
|
pool__untrackedVolumeUSD
|
||
|
pool__feesUSD
|
||
|
pool__txCount
|
||
|
pool__collectedFeesToken0
|
||
|
pool__collectedFeesToken1
|
||
|
pool__collectedFeesUSD
|
||
|
pool__totalValueLockedToken0
|
||
|
pool__totalValueLockedToken1
|
||
|
pool__totalValueLockedETH
|
||
|
pool__totalValueLockedUSD
|
||
|
pool__totalValueLockedUSDUntracked
|
||
|
pool__isProtocolFeeEnabled
|
||
|
pool__liquidityProviderCount
|
||
|
token0
|
||
|
token0__id
|
||
|
token0__symbol
|
||
|
token0__name
|
||
|
token0__decimals
|
||
|
token0__totalSupply
|
||
|
token0__volume
|
||
|
token0__volumeUSD
|
||
|
token0__untrackedVolumeUSD
|
||
|
token0__feesUSD
|
||
|
token0__txCount
|
||
|
token0__poolCount
|
||
|
token0__totalValueLocked
|
||
|
token0__totalValueLockedUSD
|
||
|
token0__totalValueLockedUSDUntracked
|
||
|
token0__derivedETH
|
||
|
token1
|
||
|
token1__id
|
||
|
token1__symbol
|
||
|
token1__name
|
||
|
token1__decimals
|
||
|
token1__totalSupply
|
||
|
token1__volume
|
||
|
token1__volumeUSD
|
||
|
token1__untrackedVolumeUSD
|
||
|
token1__feesUSD
|
||
|
token1__txCount
|
||
|
token1__poolCount
|
||
|
token1__totalValueLocked
|
||
|
token1__totalValueLockedUSD
|
||
|
token1__totalValueLockedUSDUntracked
|
||
|
token1__derivedETH
|
||
|
timestamp
|
||
|
owner
|
||
|
origin
|
||
|
amount
|
||
|
amount0
|
||
|
amount1
|
||
|
amountUSD
|
||
|
tickLower
|
||
|
tickUpper
|
||
|
logIndex
|
||
|
}
|
||
|
|
||
|
input Burn_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
transaction: String
|
||
|
transaction_not: String
|
||
|
transaction_gt: String
|
||
|
transaction_lt: String
|
||
|
transaction_gte: String
|
||
|
transaction_lte: String
|
||
|
transaction_in: [String!]
|
||
|
transaction_not_in: [String!]
|
||
|
transaction_starts_with: String
|
||
|
transaction_starts_with_nocase: String
|
||
|
transaction_not_starts_with: String
|
||
|
transaction_not_starts_with_nocase: String
|
||
|
transaction_ends_with: String
|
||
|
transaction_ends_with_nocase: String
|
||
|
transaction_not_ends_with: String
|
||
|
transaction_not_ends_with_nocase: String
|
||
|
transaction_contains: String
|
||
|
transaction_not_contains: String
|
||
|
transaction_contains_nocase: String
|
||
|
transaction_not_contains_nocase: String
|
||
|
transaction_: Transaction_filter
|
||
|
pool: String
|
||
|
pool_not: String
|
||
|
pool_gt: String
|
||
|
pool_lt: String
|
||
|
pool_gte: String
|
||
|
pool_lte: String
|
||
|
pool_in: [String!]
|
||
|
pool_not_in: [String!]
|
||
|
pool_starts_with: String
|
||
|
pool_starts_with_nocase: String
|
||
|
pool_not_starts_with: String
|
||
|
pool_not_starts_with_nocase: String
|
||
|
pool_ends_with: String
|
||
|
pool_ends_with_nocase: String
|
||
|
pool_not_ends_with: String
|
||
|
pool_not_ends_with_nocase: String
|
||
|
pool_contains: String
|
||
|
pool_not_contains: String
|
||
|
pool_contains_nocase: String
|
||
|
pool_not_contains_nocase: String
|
||
|
pool_: Pool_filter
|
||
|
token0: String
|
||
|
token0_not: String
|
||
|
token0_gt: String
|
||
|
token0_lt: String
|
||
|
token0_gte: String
|
||
|
token0_lte: String
|
||
|
token0_in: [String!]
|
||
|
token0_not_in: [String!]
|
||
|
token0_starts_with: String
|
||
|
token0_starts_with_nocase: String
|
||
|
token0_not_starts_with: String
|
||
|
token0_not_starts_with_nocase: String
|
||
|
token0_ends_with: String
|
||
|
token0_ends_with_nocase: String
|
||
|
token0_not_ends_with: String
|
||
|
token0_not_ends_with_nocase: String
|
||
|
token0_contains: String
|
||
|
token0_not_contains: String
|
||
|
token0_contains_nocase: String
|
||
|
token0_not_contains_nocase: String
|
||
|
token0_: Token_filter
|
||
|
token1: String
|
||
|
token1_not: String
|
||
|
token1_gt: String
|
||
|
token1_lt: String
|
||
|
token1_gte: String
|
||
|
token1_lte: String
|
||
|
token1_in: [String!]
|
||
|
token1_not_in: [String!]
|
||
|
token1_starts_with: String
|
||
|
token1_starts_with_nocase: String
|
||
|
token1_not_starts_with: String
|
||
|
token1_not_starts_with_nocase: String
|
||
|
token1_ends_with: String
|
||
|
token1_ends_with_nocase: String
|
||
|
token1_not_ends_with: String
|
||
|
token1_not_ends_with_nocase: String
|
||
|
token1_contains: String
|
||
|
token1_not_contains: String
|
||
|
token1_contains_nocase: String
|
||
|
token1_not_contains_nocase: String
|
||
|
token1_: Token_filter
|
||
|
timestamp: BigInt
|
||
|
timestamp_not: BigInt
|
||
|
timestamp_gt: BigInt
|
||
|
timestamp_lt: BigInt
|
||
|
timestamp_gte: BigInt
|
||
|
timestamp_lte: BigInt
|
||
|
timestamp_in: [BigInt!]
|
||
|
timestamp_not_in: [BigInt!]
|
||
|
owner: Bytes
|
||
|
owner_not: Bytes
|
||
|
owner_gt: Bytes
|
||
|
owner_lt: Bytes
|
||
|
owner_gte: Bytes
|
||
|
owner_lte: Bytes
|
||
|
owner_in: [Bytes!]
|
||
|
owner_not_in: [Bytes!]
|
||
|
owner_contains: Bytes
|
||
|
owner_not_contains: Bytes
|
||
|
origin: Bytes
|
||
|
origin_not: Bytes
|
||
|
origin_gt: Bytes
|
||
|
origin_lt: Bytes
|
||
|
origin_gte: Bytes
|
||
|
origin_lte: Bytes
|
||
|
origin_in: [Bytes!]
|
||
|
origin_not_in: [Bytes!]
|
||
|
origin_contains: Bytes
|
||
|
origin_not_contains: Bytes
|
||
|
amount: BigInt
|
||
|
amount_not: BigInt
|
||
|
amount_gt: BigInt
|
||
|
amount_lt: BigInt
|
||
|
amount_gte: BigInt
|
||
|
amount_lte: BigInt
|
||
|
amount_in: [BigInt!]
|
||
|
amount_not_in: [BigInt!]
|
||
|
amount0: BigDecimal
|
||
|
amount0_not: BigDecimal
|
||
|
amount0_gt: BigDecimal
|
||
|
amount0_lt: BigDecimal
|
||
|
amount0_gte: BigDecimal
|
||
|
amount0_lte: BigDecimal
|
||
|
amount0_in: [BigDecimal!]
|
||
|
amount0_not_in: [BigDecimal!]
|
||
|
amount1: BigDecimal
|
||
|
amount1_not: BigDecimal
|
||
|
amount1_gt: BigDecimal
|
||
|
amount1_lt: BigDecimal
|
||
|
amount1_gte: BigDecimal
|
||
|
amount1_lte: BigDecimal
|
||
|
amount1_in: [BigDecimal!]
|
||
|
amount1_not_in: [BigDecimal!]
|
||
|
amountUSD: BigDecimal
|
||
|
amountUSD_not: BigDecimal
|
||
|
amountUSD_gt: BigDecimal
|
||
|
amountUSD_lt: BigDecimal
|
||
|
amountUSD_gte: BigDecimal
|
||
|
amountUSD_lte: BigDecimal
|
||
|
amountUSD_in: [BigDecimal!]
|
||
|
amountUSD_not_in: [BigDecimal!]
|
||
|
tickLower: BigInt
|
||
|
tickLower_not: BigInt
|
||
|
tickLower_gt: BigInt
|
||
|
tickLower_lt: BigInt
|
||
|
tickLower_gte: BigInt
|
||
|
tickLower_lte: BigInt
|
||
|
tickLower_in: [BigInt!]
|
||
|
tickLower_not_in: [BigInt!]
|
||
|
tickUpper: BigInt
|
||
|
tickUpper_not: BigInt
|
||
|
tickUpper_gt: BigInt
|
||
|
tickUpper_lt: BigInt
|
||
|
tickUpper_gte: BigInt
|
||
|
tickUpper_lte: BigInt
|
||
|
tickUpper_in: [BigInt!]
|
||
|
tickUpper_not_in: [BigInt!]
|
||
|
logIndex: BigInt
|
||
|
logIndex_not: BigInt
|
||
|
logIndex_gt: BigInt
|
||
|
logIndex_lt: BigInt
|
||
|
logIndex_gte: BigInt
|
||
|
logIndex_lte: BigInt
|
||
|
logIndex_in: [BigInt!]
|
||
|
logIndex_not_in: [BigInt!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [Burn_filter]
|
||
|
or: [Burn_filter]
|
||
|
}
|
||
|
|
||
|
enum Swap_orderBy {
|
||
|
id
|
||
|
transaction
|
||
|
transaction__id
|
||
|
transaction__blockNumber
|
||
|
transaction__timestamp
|
||
|
transaction__gasUsed
|
||
|
transaction__gasPrice
|
||
|
timestamp
|
||
|
pool
|
||
|
pool__id
|
||
|
pool__createdAtTimestamp
|
||
|
pool__createdAtBlockNumber
|
||
|
pool__feeTier
|
||
|
pool__liquidity
|
||
|
pool__sqrtPrice
|
||
|
pool__feeGrowthGlobal0X128
|
||
|
pool__feeGrowthGlobal1X128
|
||
|
pool__token0Price
|
||
|
pool__token1Price
|
||
|
pool__tick
|
||
|
pool__observationIndex
|
||
|
pool__volumeToken0
|
||
|
pool__volumeToken1
|
||
|
pool__volumeUSD
|
||
|
pool__untrackedVolumeUSD
|
||
|
pool__feesUSD
|
||
|
pool__txCount
|
||
|
pool__collectedFeesToken0
|
||
|
pool__collectedFeesToken1
|
||
|
pool__collectedFeesUSD
|
||
|
pool__totalValueLockedToken0
|
||
|
pool__totalValueLockedToken1
|
||
|
pool__totalValueLockedETH
|
||
|
pool__totalValueLockedUSD
|
||
|
pool__totalValueLockedUSDUntracked
|
||
|
pool__isProtocolFeeEnabled
|
||
|
pool__liquidityProviderCount
|
||
|
token0
|
||
|
token0__id
|
||
|
token0__symbol
|
||
|
token0__name
|
||
|
token0__decimals
|
||
|
token0__totalSupply
|
||
|
token0__volume
|
||
|
token0__volumeUSD
|
||
|
token0__untrackedVolumeUSD
|
||
|
token0__feesUSD
|
||
|
token0__txCount
|
||
|
token0__poolCount
|
||
|
token0__totalValueLocked
|
||
|
token0__totalValueLockedUSD
|
||
|
token0__totalValueLockedUSDUntracked
|
||
|
token0__derivedETH
|
||
|
token1
|
||
|
token1__id
|
||
|
token1__symbol
|
||
|
token1__name
|
||
|
token1__decimals
|
||
|
token1__totalSupply
|
||
|
token1__volume
|
||
|
token1__volumeUSD
|
||
|
token1__untrackedVolumeUSD
|
||
|
token1__feesUSD
|
||
|
token1__txCount
|
||
|
token1__poolCount
|
||
|
token1__totalValueLocked
|
||
|
token1__totalValueLockedUSD
|
||
|
token1__totalValueLockedUSDUntracked
|
||
|
token1__derivedETH
|
||
|
sender
|
||
|
recipient
|
||
|
origin
|
||
|
amount0
|
||
|
amount1
|
||
|
amountUSD
|
||
|
sqrtPriceX96
|
||
|
tick
|
||
|
logIndex
|
||
|
}
|
||
|
|
||
|
input Swap_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
transaction: String
|
||
|
transaction_not: String
|
||
|
transaction_gt: String
|
||
|
transaction_lt: String
|
||
|
transaction_gte: String
|
||
|
transaction_lte: String
|
||
|
transaction_in: [String!]
|
||
|
transaction_not_in: [String!]
|
||
|
transaction_starts_with: String
|
||
|
transaction_starts_with_nocase: String
|
||
|
transaction_not_starts_with: String
|
||
|
transaction_not_starts_with_nocase: String
|
||
|
transaction_ends_with: String
|
||
|
transaction_ends_with_nocase: String
|
||
|
transaction_not_ends_with: String
|
||
|
transaction_not_ends_with_nocase: String
|
||
|
transaction_contains: String
|
||
|
transaction_not_contains: String
|
||
|
transaction_contains_nocase: String
|
||
|
transaction_not_contains_nocase: String
|
||
|
transaction_: Transaction_filter
|
||
|
timestamp: BigInt
|
||
|
timestamp_not: BigInt
|
||
|
timestamp_gt: BigInt
|
||
|
timestamp_lt: BigInt
|
||
|
timestamp_gte: BigInt
|
||
|
timestamp_lte: BigInt
|
||
|
timestamp_in: [BigInt!]
|
||
|
timestamp_not_in: [BigInt!]
|
||
|
pool: String
|
||
|
pool_not: String
|
||
|
pool_gt: String
|
||
|
pool_lt: String
|
||
|
pool_gte: String
|
||
|
pool_lte: String
|
||
|
pool_in: [String!]
|
||
|
pool_not_in: [String!]
|
||
|
pool_starts_with: String
|
||
|
pool_starts_with_nocase: String
|
||
|
pool_not_starts_with: String
|
||
|
pool_not_starts_with_nocase: String
|
||
|
pool_ends_with: String
|
||
|
pool_ends_with_nocase: String
|
||
|
pool_not_ends_with: String
|
||
|
pool_not_ends_with_nocase: String
|
||
|
pool_contains: String
|
||
|
pool_not_contains: String
|
||
|
pool_contains_nocase: String
|
||
|
pool_not_contains_nocase: String
|
||
|
pool_: Pool_filter
|
||
|
token0: String
|
||
|
token0_not: String
|
||
|
token0_gt: String
|
||
|
token0_lt: String
|
||
|
token0_gte: String
|
||
|
token0_lte: String
|
||
|
token0_in: [String!]
|
||
|
token0_not_in: [String!]
|
||
|
token0_starts_with: String
|
||
|
token0_starts_with_nocase: String
|
||
|
token0_not_starts_with: String
|
||
|
token0_not_starts_with_nocase: String
|
||
|
token0_ends_with: String
|
||
|
token0_ends_with_nocase: String
|
||
|
token0_not_ends_with: String
|
||
|
token0_not_ends_with_nocase: String
|
||
|
token0_contains: String
|
||
|
token0_not_contains: String
|
||
|
token0_contains_nocase: String
|
||
|
token0_not_contains_nocase: String
|
||
|
token0_: Token_filter
|
||
|
token1: String
|
||
|
token1_not: String
|
||
|
token1_gt: String
|
||
|
token1_lt: String
|
||
|
token1_gte: String
|
||
|
token1_lte: String
|
||
|
token1_in: [String!]
|
||
|
token1_not_in: [String!]
|
||
|
token1_starts_with: String
|
||
|
token1_starts_with_nocase: String
|
||
|
token1_not_starts_with: String
|
||
|
token1_not_starts_with_nocase: String
|
||
|
token1_ends_with: String
|
||
|
token1_ends_with_nocase: String
|
||
|
token1_not_ends_with: String
|
||
|
token1_not_ends_with_nocase: String
|
||
|
token1_contains: String
|
||
|
token1_not_contains: String
|
||
|
token1_contains_nocase: String
|
||
|
token1_not_contains_nocase: String
|
||
|
token1_: Token_filter
|
||
|
sender: Bytes
|
||
|
sender_not: Bytes
|
||
|
sender_gt: Bytes
|
||
|
sender_lt: Bytes
|
||
|
sender_gte: Bytes
|
||
|
sender_lte: Bytes
|
||
|
sender_in: [Bytes!]
|
||
|
sender_not_in: [Bytes!]
|
||
|
sender_contains: Bytes
|
||
|
sender_not_contains: Bytes
|
||
|
recipient: Bytes
|
||
|
recipient_not: Bytes
|
||
|
recipient_gt: Bytes
|
||
|
recipient_lt: Bytes
|
||
|
recipient_gte: Bytes
|
||
|
recipient_lte: Bytes
|
||
|
recipient_in: [Bytes!]
|
||
|
recipient_not_in: [Bytes!]
|
||
|
recipient_contains: Bytes
|
||
|
recipient_not_contains: Bytes
|
||
|
origin: Bytes
|
||
|
origin_not: Bytes
|
||
|
origin_gt: Bytes
|
||
|
origin_lt: Bytes
|
||
|
origin_gte: Bytes
|
||
|
origin_lte: Bytes
|
||
|
origin_in: [Bytes!]
|
||
|
origin_not_in: [Bytes!]
|
||
|
origin_contains: Bytes
|
||
|
origin_not_contains: Bytes
|
||
|
amount0: BigDecimal
|
||
|
amount0_not: BigDecimal
|
||
|
amount0_gt: BigDecimal
|
||
|
amount0_lt: BigDecimal
|
||
|
amount0_gte: BigDecimal
|
||
|
amount0_lte: BigDecimal
|
||
|
amount0_in: [BigDecimal!]
|
||
|
amount0_not_in: [BigDecimal!]
|
||
|
amount1: BigDecimal
|
||
|
amount1_not: BigDecimal
|
||
|
amount1_gt: BigDecimal
|
||
|
amount1_lt: BigDecimal
|
||
|
amount1_gte: BigDecimal
|
||
|
amount1_lte: BigDecimal
|
||
|
amount1_in: [BigDecimal!]
|
||
|
amount1_not_in: [BigDecimal!]
|
||
|
amountUSD: BigDecimal
|
||
|
amountUSD_not: BigDecimal
|
||
|
amountUSD_gt: BigDecimal
|
||
|
amountUSD_lt: BigDecimal
|
||
|
amountUSD_gte: BigDecimal
|
||
|
amountUSD_lte: BigDecimal
|
||
|
amountUSD_in: [BigDecimal!]
|
||
|
amountUSD_not_in: [BigDecimal!]
|
||
|
sqrtPriceX96: BigInt
|
||
|
sqrtPriceX96_not: BigInt
|
||
|
sqrtPriceX96_gt: BigInt
|
||
|
sqrtPriceX96_lt: BigInt
|
||
|
sqrtPriceX96_gte: BigInt
|
||
|
sqrtPriceX96_lte: BigInt
|
||
|
sqrtPriceX96_in: [BigInt!]
|
||
|
sqrtPriceX96_not_in: [BigInt!]
|
||
|
tick: BigInt
|
||
|
tick_not: BigInt
|
||
|
tick_gt: BigInt
|
||
|
tick_lt: BigInt
|
||
|
tick_gte: BigInt
|
||
|
tick_lte: BigInt
|
||
|
tick_in: [BigInt!]
|
||
|
tick_not_in: [BigInt!]
|
||
|
logIndex: BigInt
|
||
|
logIndex_not: BigInt
|
||
|
logIndex_gt: BigInt
|
||
|
logIndex_lt: BigInt
|
||
|
logIndex_gte: BigInt
|
||
|
logIndex_lte: BigInt
|
||
|
logIndex_in: [BigInt!]
|
||
|
logIndex_not_in: [BigInt!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [Swap_filter]
|
||
|
or: [Swap_filter]
|
||
|
}
|
||
|
|
||
|
enum Collect_orderBy {
|
||
|
id
|
||
|
transaction
|
||
|
transaction__id
|
||
|
transaction__blockNumber
|
||
|
transaction__timestamp
|
||
|
transaction__gasUsed
|
||
|
transaction__gasPrice
|
||
|
timestamp
|
||
|
pool
|
||
|
pool__id
|
||
|
pool__createdAtTimestamp
|
||
|
pool__createdAtBlockNumber
|
||
|
pool__feeTier
|
||
|
pool__liquidity
|
||
|
pool__sqrtPrice
|
||
|
pool__feeGrowthGlobal0X128
|
||
|
pool__feeGrowthGlobal1X128
|
||
|
pool__token0Price
|
||
|
pool__token1Price
|
||
|
pool__tick
|
||
|
pool__observationIndex
|
||
|
pool__volumeToken0
|
||
|
pool__volumeToken1
|
||
|
pool__volumeUSD
|
||
|
pool__untrackedVolumeUSD
|
||
|
pool__feesUSD
|
||
|
pool__txCount
|
||
|
pool__collectedFeesToken0
|
||
|
pool__collectedFeesToken1
|
||
|
pool__collectedFeesUSD
|
||
|
pool__totalValueLockedToken0
|
||
|
pool__totalValueLockedToken1
|
||
|
pool__totalValueLockedETH
|
||
|
pool__totalValueLockedUSD
|
||
|
pool__totalValueLockedUSDUntracked
|
||
|
pool__isProtocolFeeEnabled
|
||
|
pool__liquidityProviderCount
|
||
|
owner
|
||
|
amount0
|
||
|
amount1
|
||
|
amountUSD
|
||
|
tickLower
|
||
|
tickUpper
|
||
|
logIndex
|
||
|
}
|
||
|
|
||
|
input Collect_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
transaction: String
|
||
|
transaction_not: String
|
||
|
transaction_gt: String
|
||
|
transaction_lt: String
|
||
|
transaction_gte: String
|
||
|
transaction_lte: String
|
||
|
transaction_in: [String!]
|
||
|
transaction_not_in: [String!]
|
||
|
transaction_starts_with: String
|
||
|
transaction_starts_with_nocase: String
|
||
|
transaction_not_starts_with: String
|
||
|
transaction_not_starts_with_nocase: String
|
||
|
transaction_ends_with: String
|
||
|
transaction_ends_with_nocase: String
|
||
|
transaction_not_ends_with: String
|
||
|
transaction_not_ends_with_nocase: String
|
||
|
transaction_contains: String
|
||
|
transaction_not_contains: String
|
||
|
transaction_contains_nocase: String
|
||
|
transaction_not_contains_nocase: String
|
||
|
transaction_: Transaction_filter
|
||
|
timestamp: BigInt
|
||
|
timestamp_not: BigInt
|
||
|
timestamp_gt: BigInt
|
||
|
timestamp_lt: BigInt
|
||
|
timestamp_gte: BigInt
|
||
|
timestamp_lte: BigInt
|
||
|
timestamp_in: [BigInt!]
|
||
|
timestamp_not_in: [BigInt!]
|
||
|
pool: String
|
||
|
pool_not: String
|
||
|
pool_gt: String
|
||
|
pool_lt: String
|
||
|
pool_gte: String
|
||
|
pool_lte: String
|
||
|
pool_in: [String!]
|
||
|
pool_not_in: [String!]
|
||
|
pool_starts_with: String
|
||
|
pool_starts_with_nocase: String
|
||
|
pool_not_starts_with: String
|
||
|
pool_not_starts_with_nocase: String
|
||
|
pool_ends_with: String
|
||
|
pool_ends_with_nocase: String
|
||
|
pool_not_ends_with: String
|
||
|
pool_not_ends_with_nocase: String
|
||
|
pool_contains: String
|
||
|
pool_not_contains: String
|
||
|
pool_contains_nocase: String
|
||
|
pool_not_contains_nocase: String
|
||
|
pool_: Pool_filter
|
||
|
owner: Bytes
|
||
|
owner_not: Bytes
|
||
|
owner_gt: Bytes
|
||
|
owner_lt: Bytes
|
||
|
owner_gte: Bytes
|
||
|
owner_lte: Bytes
|
||
|
owner_in: [Bytes!]
|
||
|
owner_not_in: [Bytes!]
|
||
|
owner_contains: Bytes
|
||
|
owner_not_contains: Bytes
|
||
|
amount0: BigDecimal
|
||
|
amount0_not: BigDecimal
|
||
|
amount0_gt: BigDecimal
|
||
|
amount0_lt: BigDecimal
|
||
|
amount0_gte: BigDecimal
|
||
|
amount0_lte: BigDecimal
|
||
|
amount0_in: [BigDecimal!]
|
||
|
amount0_not_in: [BigDecimal!]
|
||
|
amount1: BigDecimal
|
||
|
amount1_not: BigDecimal
|
||
|
amount1_gt: BigDecimal
|
||
|
amount1_lt: BigDecimal
|
||
|
amount1_gte: BigDecimal
|
||
|
amount1_lte: BigDecimal
|
||
|
amount1_in: [BigDecimal!]
|
||
|
amount1_not_in: [BigDecimal!]
|
||
|
amountUSD: BigDecimal
|
||
|
amountUSD_not: BigDecimal
|
||
|
amountUSD_gt: BigDecimal
|
||
|
amountUSD_lt: BigDecimal
|
||
|
amountUSD_gte: BigDecimal
|
||
|
amountUSD_lte: BigDecimal
|
||
|
amountUSD_in: [BigDecimal!]
|
||
|
amountUSD_not_in: [BigDecimal!]
|
||
|
tickLower: BigInt
|
||
|
tickLower_not: BigInt
|
||
|
tickLower_gt: BigInt
|
||
|
tickLower_lt: BigInt
|
||
|
tickLower_gte: BigInt
|
||
|
tickLower_lte: BigInt
|
||
|
tickLower_in: [BigInt!]
|
||
|
tickLower_not_in: [BigInt!]
|
||
|
tickUpper: BigInt
|
||
|
tickUpper_not: BigInt
|
||
|
tickUpper_gt: BigInt
|
||
|
tickUpper_lt: BigInt
|
||
|
tickUpper_gte: BigInt
|
||
|
tickUpper_lte: BigInt
|
||
|
tickUpper_in: [BigInt!]
|
||
|
tickUpper_not_in: [BigInt!]
|
||
|
logIndex: BigInt
|
||
|
logIndex_not: BigInt
|
||
|
logIndex_gt: BigInt
|
||
|
logIndex_lt: BigInt
|
||
|
logIndex_gte: BigInt
|
||
|
logIndex_lte: BigInt
|
||
|
logIndex_in: [BigInt!]
|
||
|
logIndex_not_in: [BigInt!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [Collect_filter]
|
||
|
or: [Collect_filter]
|
||
|
}
|
||
|
|
||
|
enum Flash_orderBy {
|
||
|
id
|
||
|
transaction
|
||
|
transaction__id
|
||
|
transaction__blockNumber
|
||
|
transaction__timestamp
|
||
|
transaction__gasUsed
|
||
|
transaction__gasPrice
|
||
|
timestamp
|
||
|
pool
|
||
|
pool__id
|
||
|
pool__createdAtTimestamp
|
||
|
pool__createdAtBlockNumber
|
||
|
pool__feeTier
|
||
|
pool__liquidity
|
||
|
pool__sqrtPrice
|
||
|
pool__feeGrowthGlobal0X128
|
||
|
pool__feeGrowthGlobal1X128
|
||
|
pool__token0Price
|
||
|
pool__token1Price
|
||
|
pool__tick
|
||
|
pool__observationIndex
|
||
|
pool__volumeToken0
|
||
|
pool__volumeToken1
|
||
|
pool__volumeUSD
|
||
|
pool__untrackedVolumeUSD
|
||
|
pool__feesUSD
|
||
|
pool__txCount
|
||
|
pool__collectedFeesToken0
|
||
|
pool__collectedFeesToken1
|
||
|
pool__collectedFeesUSD
|
||
|
pool__totalValueLockedToken0
|
||
|
pool__totalValueLockedToken1
|
||
|
pool__totalValueLockedETH
|
||
|
pool__totalValueLockedUSD
|
||
|
pool__totalValueLockedUSDUntracked
|
||
|
pool__isProtocolFeeEnabled
|
||
|
pool__liquidityProviderCount
|
||
|
sender
|
||
|
recipient
|
||
|
amount0
|
||
|
amount1
|
||
|
amountUSD
|
||
|
amount0Paid
|
||
|
amount1Paid
|
||
|
logIndex
|
||
|
}
|
||
|
|
||
|
input Flash_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
transaction: String
|
||
|
transaction_not: String
|
||
|
transaction_gt: String
|
||
|
transaction_lt: String
|
||
|
transaction_gte: String
|
||
|
transaction_lte: String
|
||
|
transaction_in: [String!]
|
||
|
transaction_not_in: [String!]
|
||
|
transaction_starts_with: String
|
||
|
transaction_starts_with_nocase: String
|
||
|
transaction_not_starts_with: String
|
||
|
transaction_not_starts_with_nocase: String
|
||
|
transaction_ends_with: String
|
||
|
transaction_ends_with_nocase: String
|
||
|
transaction_not_ends_with: String
|
||
|
transaction_not_ends_with_nocase: String
|
||
|
transaction_contains: String
|
||
|
transaction_not_contains: String
|
||
|
transaction_contains_nocase: String
|
||
|
transaction_not_contains_nocase: String
|
||
|
transaction_: Transaction_filter
|
||
|
timestamp: BigInt
|
||
|
timestamp_not: BigInt
|
||
|
timestamp_gt: BigInt
|
||
|
timestamp_lt: BigInt
|
||
|
timestamp_gte: BigInt
|
||
|
timestamp_lte: BigInt
|
||
|
timestamp_in: [BigInt!]
|
||
|
timestamp_not_in: [BigInt!]
|
||
|
pool: String
|
||
|
pool_not: String
|
||
|
pool_gt: String
|
||
|
pool_lt: String
|
||
|
pool_gte: String
|
||
|
pool_lte: String
|
||
|
pool_in: [String!]
|
||
|
pool_not_in: [String!]
|
||
|
pool_starts_with: String
|
||
|
pool_starts_with_nocase: String
|
||
|
pool_not_starts_with: String
|
||
|
pool_not_starts_with_nocase: String
|
||
|
pool_ends_with: String
|
||
|
pool_ends_with_nocase: String
|
||
|
pool_not_ends_with: String
|
||
|
pool_not_ends_with_nocase: String
|
||
|
pool_contains: String
|
||
|
pool_not_contains: String
|
||
|
pool_contains_nocase: String
|
||
|
pool_not_contains_nocase: String
|
||
|
pool_: Pool_filter
|
||
|
sender: Bytes
|
||
|
sender_not: Bytes
|
||
|
sender_gt: Bytes
|
||
|
sender_lt: Bytes
|
||
|
sender_gte: Bytes
|
||
|
sender_lte: Bytes
|
||
|
sender_in: [Bytes!]
|
||
|
sender_not_in: [Bytes!]
|
||
|
sender_contains: Bytes
|
||
|
sender_not_contains: Bytes
|
||
|
recipient: Bytes
|
||
|
recipient_not: Bytes
|
||
|
recipient_gt: Bytes
|
||
|
recipient_lt: Bytes
|
||
|
recipient_gte: Bytes
|
||
|
recipient_lte: Bytes
|
||
|
recipient_in: [Bytes!]
|
||
|
recipient_not_in: [Bytes!]
|
||
|
recipient_contains: Bytes
|
||
|
recipient_not_contains: Bytes
|
||
|
amount0: BigDecimal
|
||
|
amount0_not: BigDecimal
|
||
|
amount0_gt: BigDecimal
|
||
|
amount0_lt: BigDecimal
|
||
|
amount0_gte: BigDecimal
|
||
|
amount0_lte: BigDecimal
|
||
|
amount0_in: [BigDecimal!]
|
||
|
amount0_not_in: [BigDecimal!]
|
||
|
amount1: BigDecimal
|
||
|
amount1_not: BigDecimal
|
||
|
amount1_gt: BigDecimal
|
||
|
amount1_lt: BigDecimal
|
||
|
amount1_gte: BigDecimal
|
||
|
amount1_lte: BigDecimal
|
||
|
amount1_in: [BigDecimal!]
|
||
|
amount1_not_in: [BigDecimal!]
|
||
|
amountUSD: BigDecimal
|
||
|
amountUSD_not: BigDecimal
|
||
|
amountUSD_gt: BigDecimal
|
||
|
amountUSD_lt: BigDecimal
|
||
|
amountUSD_gte: BigDecimal
|
||
|
amountUSD_lte: BigDecimal
|
||
|
amountUSD_in: [BigDecimal!]
|
||
|
amountUSD_not_in: [BigDecimal!]
|
||
|
amount0Paid: BigDecimal
|
||
|
amount0Paid_not: BigDecimal
|
||
|
amount0Paid_gt: BigDecimal
|
||
|
amount0Paid_lt: BigDecimal
|
||
|
amount0Paid_gte: BigDecimal
|
||
|
amount0Paid_lte: BigDecimal
|
||
|
amount0Paid_in: [BigDecimal!]
|
||
|
amount0Paid_not_in: [BigDecimal!]
|
||
|
amount1Paid: BigDecimal
|
||
|
amount1Paid_not: BigDecimal
|
||
|
amount1Paid_gt: BigDecimal
|
||
|
amount1Paid_lt: BigDecimal
|
||
|
amount1Paid_gte: BigDecimal
|
||
|
amount1Paid_lte: BigDecimal
|
||
|
amount1Paid_in: [BigDecimal!]
|
||
|
amount1Paid_not_in: [BigDecimal!]
|
||
|
logIndex: BigInt
|
||
|
logIndex_not: BigInt
|
||
|
logIndex_gt: BigInt
|
||
|
logIndex_lt: BigInt
|
||
|
logIndex_gte: BigInt
|
||
|
logIndex_lte: BigInt
|
||
|
logIndex_in: [BigInt!]
|
||
|
logIndex_not_in: [BigInt!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [Flash_filter]
|
||
|
or: [Flash_filter]
|
||
|
}
|
||
|
|
||
|
enum UniswapDayData_orderBy {
|
||
|
id
|
||
|
date
|
||
|
volumeETH
|
||
|
volumeUSD
|
||
|
volumeUSDUntracked
|
||
|
feesUSD
|
||
|
txCount
|
||
|
tvlUSD
|
||
|
}
|
||
|
|
||
|
input UniswapDayData_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
date: Int
|
||
|
date_not: Int
|
||
|
date_gt: Int
|
||
|
date_lt: Int
|
||
|
date_gte: Int
|
||
|
date_lte: Int
|
||
|
date_in: [Int!]
|
||
|
date_not_in: [Int!]
|
||
|
volumeETH: BigDecimal
|
||
|
volumeETH_not: BigDecimal
|
||
|
volumeETH_gt: BigDecimal
|
||
|
volumeETH_lt: BigDecimal
|
||
|
volumeETH_gte: BigDecimal
|
||
|
volumeETH_lte: BigDecimal
|
||
|
volumeETH_in: [BigDecimal!]
|
||
|
volumeETH_not_in: [BigDecimal!]
|
||
|
volumeUSD: BigDecimal
|
||
|
volumeUSD_not: BigDecimal
|
||
|
volumeUSD_gt: BigDecimal
|
||
|
volumeUSD_lt: BigDecimal
|
||
|
volumeUSD_gte: BigDecimal
|
||
|
volumeUSD_lte: BigDecimal
|
||
|
volumeUSD_in: [BigDecimal!]
|
||
|
volumeUSD_not_in: [BigDecimal!]
|
||
|
volumeUSDUntracked: BigDecimal
|
||
|
volumeUSDUntracked_not: BigDecimal
|
||
|
volumeUSDUntracked_gt: BigDecimal
|
||
|
volumeUSDUntracked_lt: BigDecimal
|
||
|
volumeUSDUntracked_gte: BigDecimal
|
||
|
volumeUSDUntracked_lte: BigDecimal
|
||
|
volumeUSDUntracked_in: [BigDecimal!]
|
||
|
volumeUSDUntracked_not_in: [BigDecimal!]
|
||
|
feesUSD: BigDecimal
|
||
|
feesUSD_not: BigDecimal
|
||
|
feesUSD_gt: BigDecimal
|
||
|
feesUSD_lt: BigDecimal
|
||
|
feesUSD_gte: BigDecimal
|
||
|
feesUSD_lte: BigDecimal
|
||
|
feesUSD_in: [BigDecimal!]
|
||
|
feesUSD_not_in: [BigDecimal!]
|
||
|
txCount: BigInt
|
||
|
txCount_not: BigInt
|
||
|
txCount_gt: BigInt
|
||
|
txCount_lt: BigInt
|
||
|
txCount_gte: BigInt
|
||
|
txCount_lte: BigInt
|
||
|
txCount_in: [BigInt!]
|
||
|
txCount_not_in: [BigInt!]
|
||
|
tvlUSD: BigDecimal
|
||
|
tvlUSD_not: BigDecimal
|
||
|
tvlUSD_gt: BigDecimal
|
||
|
tvlUSD_lt: BigDecimal
|
||
|
tvlUSD_gte: BigDecimal
|
||
|
tvlUSD_lte: BigDecimal
|
||
|
tvlUSD_in: [BigDecimal!]
|
||
|
tvlUSD_not_in: [BigDecimal!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [UniswapDayData_filter]
|
||
|
or: [UniswapDayData_filter]
|
||
|
}
|
||
|
|
||
|
enum PoolDayData_orderBy {
|
||
|
id
|
||
|
date
|
||
|
pool
|
||
|
pool__id
|
||
|
pool__createdAtTimestamp
|
||
|
pool__createdAtBlockNumber
|
||
|
pool__feeTier
|
||
|
pool__liquidity
|
||
|
pool__sqrtPrice
|
||
|
pool__feeGrowthGlobal0X128
|
||
|
pool__feeGrowthGlobal1X128
|
||
|
pool__token0Price
|
||
|
pool__token1Price
|
||
|
pool__tick
|
||
|
pool__observationIndex
|
||
|
pool__volumeToken0
|
||
|
pool__volumeToken1
|
||
|
pool__volumeUSD
|
||
|
pool__untrackedVolumeUSD
|
||
|
pool__feesUSD
|
||
|
pool__txCount
|
||
|
pool__collectedFeesToken0
|
||
|
pool__collectedFeesToken1
|
||
|
pool__collectedFeesUSD
|
||
|
pool__totalValueLockedToken0
|
||
|
pool__totalValueLockedToken1
|
||
|
pool__totalValueLockedETH
|
||
|
pool__totalValueLockedUSD
|
||
|
pool__totalValueLockedUSDUntracked
|
||
|
pool__isProtocolFeeEnabled
|
||
|
pool__liquidityProviderCount
|
||
|
liquidity
|
||
|
sqrtPrice
|
||
|
token0Price
|
||
|
token1Price
|
||
|
tick
|
||
|
feeGrowthGlobal0X128
|
||
|
feeGrowthGlobal1X128
|
||
|
tvlUSD
|
||
|
volumeToken0
|
||
|
volumeToken1
|
||
|
volumeUSD
|
||
|
feesUSD
|
||
|
txCount
|
||
|
open
|
||
|
high
|
||
|
low
|
||
|
close
|
||
|
}
|
||
|
|
||
|
input PoolDayData_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
date: Int
|
||
|
date_not: Int
|
||
|
date_gt: Int
|
||
|
date_lt: Int
|
||
|
date_gte: Int
|
||
|
date_lte: Int
|
||
|
date_in: [Int!]
|
||
|
date_not_in: [Int!]
|
||
|
pool: String
|
||
|
pool_not: String
|
||
|
pool_gt: String
|
||
|
pool_lt: String
|
||
|
pool_gte: String
|
||
|
pool_lte: String
|
||
|
pool_in: [String!]
|
||
|
pool_not_in: [String!]
|
||
|
pool_starts_with: String
|
||
|
pool_starts_with_nocase: String
|
||
|
pool_not_starts_with: String
|
||
|
pool_not_starts_with_nocase: String
|
||
|
pool_ends_with: String
|
||
|
pool_ends_with_nocase: String
|
||
|
pool_not_ends_with: String
|
||
|
pool_not_ends_with_nocase: String
|
||
|
pool_contains: String
|
||
|
pool_not_contains: String
|
||
|
pool_contains_nocase: String
|
||
|
pool_not_contains_nocase: String
|
||
|
pool_: Pool_filter
|
||
|
liquidity: BigInt
|
||
|
liquidity_not: BigInt
|
||
|
liquidity_gt: BigInt
|
||
|
liquidity_lt: BigInt
|
||
|
liquidity_gte: BigInt
|
||
|
liquidity_lte: BigInt
|
||
|
liquidity_in: [BigInt!]
|
||
|
liquidity_not_in: [BigInt!]
|
||
|
sqrtPrice: BigInt
|
||
|
sqrtPrice_not: BigInt
|
||
|
sqrtPrice_gt: BigInt
|
||
|
sqrtPrice_lt: BigInt
|
||
|
sqrtPrice_gte: BigInt
|
||
|
sqrtPrice_lte: BigInt
|
||
|
sqrtPrice_in: [BigInt!]
|
||
|
sqrtPrice_not_in: [BigInt!]
|
||
|
token0Price: BigDecimal
|
||
|
token0Price_not: BigDecimal
|
||
|
token0Price_gt: BigDecimal
|
||
|
token0Price_lt: BigDecimal
|
||
|
token0Price_gte: BigDecimal
|
||
|
token0Price_lte: BigDecimal
|
||
|
token0Price_in: [BigDecimal!]
|
||
|
token0Price_not_in: [BigDecimal!]
|
||
|
token1Price: BigDecimal
|
||
|
token1Price_not: BigDecimal
|
||
|
token1Price_gt: BigDecimal
|
||
|
token1Price_lt: BigDecimal
|
||
|
token1Price_gte: BigDecimal
|
||
|
token1Price_lte: BigDecimal
|
||
|
token1Price_in: [BigDecimal!]
|
||
|
token1Price_not_in: [BigDecimal!]
|
||
|
tick: BigInt
|
||
|
tick_not: BigInt
|
||
|
tick_gt: BigInt
|
||
|
tick_lt: BigInt
|
||
|
tick_gte: BigInt
|
||
|
tick_lte: BigInt
|
||
|
tick_in: [BigInt!]
|
||
|
tick_not_in: [BigInt!]
|
||
|
feeGrowthGlobal0X128: BigInt
|
||
|
feeGrowthGlobal0X128_not: BigInt
|
||
|
feeGrowthGlobal0X128_gt: BigInt
|
||
|
feeGrowthGlobal0X128_lt: BigInt
|
||
|
feeGrowthGlobal0X128_gte: BigInt
|
||
|
feeGrowthGlobal0X128_lte: BigInt
|
||
|
feeGrowthGlobal0X128_in: [BigInt!]
|
||
|
feeGrowthGlobal0X128_not_in: [BigInt!]
|
||
|
feeGrowthGlobal1X128: BigInt
|
||
|
feeGrowthGlobal1X128_not: BigInt
|
||
|
feeGrowthGlobal1X128_gt: BigInt
|
||
|
feeGrowthGlobal1X128_lt: BigInt
|
||
|
feeGrowthGlobal1X128_gte: BigInt
|
||
|
feeGrowthGlobal1X128_lte: BigInt
|
||
|
feeGrowthGlobal1X128_in: [BigInt!]
|
||
|
feeGrowthGlobal1X128_not_in: [BigInt!]
|
||
|
tvlUSD: BigDecimal
|
||
|
tvlUSD_not: BigDecimal
|
||
|
tvlUSD_gt: BigDecimal
|
||
|
tvlUSD_lt: BigDecimal
|
||
|
tvlUSD_gte: BigDecimal
|
||
|
tvlUSD_lte: BigDecimal
|
||
|
tvlUSD_in: [BigDecimal!]
|
||
|
tvlUSD_not_in: [BigDecimal!]
|
||
|
volumeToken0: BigDecimal
|
||
|
volumeToken0_not: BigDecimal
|
||
|
volumeToken0_gt: BigDecimal
|
||
|
volumeToken0_lt: BigDecimal
|
||
|
volumeToken0_gte: BigDecimal
|
||
|
volumeToken0_lte: BigDecimal
|
||
|
volumeToken0_in: [BigDecimal!]
|
||
|
volumeToken0_not_in: [BigDecimal!]
|
||
|
volumeToken1: BigDecimal
|
||
|
volumeToken1_not: BigDecimal
|
||
|
volumeToken1_gt: BigDecimal
|
||
|
volumeToken1_lt: BigDecimal
|
||
|
volumeToken1_gte: BigDecimal
|
||
|
volumeToken1_lte: BigDecimal
|
||
|
volumeToken1_in: [BigDecimal!]
|
||
|
volumeToken1_not_in: [BigDecimal!]
|
||
|
volumeUSD: BigDecimal
|
||
|
volumeUSD_not: BigDecimal
|
||
|
volumeUSD_gt: BigDecimal
|
||
|
volumeUSD_lt: BigDecimal
|
||
|
volumeUSD_gte: BigDecimal
|
||
|
volumeUSD_lte: BigDecimal
|
||
|
volumeUSD_in: [BigDecimal!]
|
||
|
volumeUSD_not_in: [BigDecimal!]
|
||
|
feesUSD: BigDecimal
|
||
|
feesUSD_not: BigDecimal
|
||
|
feesUSD_gt: BigDecimal
|
||
|
feesUSD_lt: BigDecimal
|
||
|
feesUSD_gte: BigDecimal
|
||
|
feesUSD_lte: BigDecimal
|
||
|
feesUSD_in: [BigDecimal!]
|
||
|
feesUSD_not_in: [BigDecimal!]
|
||
|
txCount: BigInt
|
||
|
txCount_not: BigInt
|
||
|
txCount_gt: BigInt
|
||
|
txCount_lt: BigInt
|
||
|
txCount_gte: BigInt
|
||
|
txCount_lte: BigInt
|
||
|
txCount_in: [BigInt!]
|
||
|
txCount_not_in: [BigInt!]
|
||
|
open: BigDecimal
|
||
|
open_not: BigDecimal
|
||
|
open_gt: BigDecimal
|
||
|
open_lt: BigDecimal
|
||
|
open_gte: BigDecimal
|
||
|
open_lte: BigDecimal
|
||
|
open_in: [BigDecimal!]
|
||
|
open_not_in: [BigDecimal!]
|
||
|
high: BigDecimal
|
||
|
high_not: BigDecimal
|
||
|
high_gt: BigDecimal
|
||
|
high_lt: BigDecimal
|
||
|
high_gte: BigDecimal
|
||
|
high_lte: BigDecimal
|
||
|
high_in: [BigDecimal!]
|
||
|
high_not_in: [BigDecimal!]
|
||
|
low: BigDecimal
|
||
|
low_not: BigDecimal
|
||
|
low_gt: BigDecimal
|
||
|
low_lt: BigDecimal
|
||
|
low_gte: BigDecimal
|
||
|
low_lte: BigDecimal
|
||
|
low_in: [BigDecimal!]
|
||
|
low_not_in: [BigDecimal!]
|
||
|
close: BigDecimal
|
||
|
close_not: BigDecimal
|
||
|
close_gt: BigDecimal
|
||
|
close_lt: BigDecimal
|
||
|
close_gte: BigDecimal
|
||
|
close_lte: BigDecimal
|
||
|
close_in: [BigDecimal!]
|
||
|
close_not_in: [BigDecimal!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [PoolDayData_filter]
|
||
|
or: [PoolDayData_filter]
|
||
|
}
|
||
|
|
||
|
enum PoolHourData_orderBy {
|
||
|
id
|
||
|
periodStartUnix
|
||
|
pool
|
||
|
pool__id
|
||
|
pool__createdAtTimestamp
|
||
|
pool__createdAtBlockNumber
|
||
|
pool__feeTier
|
||
|
pool__liquidity
|
||
|
pool__sqrtPrice
|
||
|
pool__feeGrowthGlobal0X128
|
||
|
pool__feeGrowthGlobal1X128
|
||
|
pool__token0Price
|
||
|
pool__token1Price
|
||
|
pool__tick
|
||
|
pool__observationIndex
|
||
|
pool__volumeToken0
|
||
|
pool__volumeToken1
|
||
|
pool__volumeUSD
|
||
|
pool__untrackedVolumeUSD
|
||
|
pool__feesUSD
|
||
|
pool__txCount
|
||
|
pool__collectedFeesToken0
|
||
|
pool__collectedFeesToken1
|
||
|
pool__collectedFeesUSD
|
||
|
pool__totalValueLockedToken0
|
||
|
pool__totalValueLockedToken1
|
||
|
pool__totalValueLockedETH
|
||
|
pool__totalValueLockedUSD
|
||
|
pool__totalValueLockedUSDUntracked
|
||
|
pool__isProtocolFeeEnabled
|
||
|
pool__liquidityProviderCount
|
||
|
liquidity
|
||
|
sqrtPrice
|
||
|
token0Price
|
||
|
token1Price
|
||
|
tick
|
||
|
feeGrowthGlobal0X128
|
||
|
feeGrowthGlobal1X128
|
||
|
tvlUSD
|
||
|
volumeToken0
|
||
|
volumeToken1
|
||
|
volumeUSD
|
||
|
feesUSD
|
||
|
txCount
|
||
|
open
|
||
|
high
|
||
|
low
|
||
|
close
|
||
|
}
|
||
|
|
||
|
input PoolHourData_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
periodStartUnix: Int
|
||
|
periodStartUnix_not: Int
|
||
|
periodStartUnix_gt: Int
|
||
|
periodStartUnix_lt: Int
|
||
|
periodStartUnix_gte: Int
|
||
|
periodStartUnix_lte: Int
|
||
|
periodStartUnix_in: [Int!]
|
||
|
periodStartUnix_not_in: [Int!]
|
||
|
pool: String
|
||
|
pool_not: String
|
||
|
pool_gt: String
|
||
|
pool_lt: String
|
||
|
pool_gte: String
|
||
|
pool_lte: String
|
||
|
pool_in: [String!]
|
||
|
pool_not_in: [String!]
|
||
|
pool_starts_with: String
|
||
|
pool_starts_with_nocase: String
|
||
|
pool_not_starts_with: String
|
||
|
pool_not_starts_with_nocase: String
|
||
|
pool_ends_with: String
|
||
|
pool_ends_with_nocase: String
|
||
|
pool_not_ends_with: String
|
||
|
pool_not_ends_with_nocase: String
|
||
|
pool_contains: String
|
||
|
pool_not_contains: String
|
||
|
pool_contains_nocase: String
|
||
|
pool_not_contains_nocase: String
|
||
|
pool_: Pool_filter
|
||
|
liquidity: BigInt
|
||
|
liquidity_not: BigInt
|
||
|
liquidity_gt: BigInt
|
||
|
liquidity_lt: BigInt
|
||
|
liquidity_gte: BigInt
|
||
|
liquidity_lte: BigInt
|
||
|
liquidity_in: [BigInt!]
|
||
|
liquidity_not_in: [BigInt!]
|
||
|
sqrtPrice: BigInt
|
||
|
sqrtPrice_not: BigInt
|
||
|
sqrtPrice_gt: BigInt
|
||
|
sqrtPrice_lt: BigInt
|
||
|
sqrtPrice_gte: BigInt
|
||
|
sqrtPrice_lte: BigInt
|
||
|
sqrtPrice_in: [BigInt!]
|
||
|
sqrtPrice_not_in: [BigInt!]
|
||
|
token0Price: BigDecimal
|
||
|
token0Price_not: BigDecimal
|
||
|
token0Price_gt: BigDecimal
|
||
|
token0Price_lt: BigDecimal
|
||
|
token0Price_gte: BigDecimal
|
||
|
token0Price_lte: BigDecimal
|
||
|
token0Price_in: [BigDecimal!]
|
||
|
token0Price_not_in: [BigDecimal!]
|
||
|
token1Price: BigDecimal
|
||
|
token1Price_not: BigDecimal
|
||
|
token1Price_gt: BigDecimal
|
||
|
token1Price_lt: BigDecimal
|
||
|
token1Price_gte: BigDecimal
|
||
|
token1Price_lte: BigDecimal
|
||
|
token1Price_in: [BigDecimal!]
|
||
|
token1Price_not_in: [BigDecimal!]
|
||
|
tick: BigInt
|
||
|
tick_not: BigInt
|
||
|
tick_gt: BigInt
|
||
|
tick_lt: BigInt
|
||
|
tick_gte: BigInt
|
||
|
tick_lte: BigInt
|
||
|
tick_in: [BigInt!]
|
||
|
tick_not_in: [BigInt!]
|
||
|
feeGrowthGlobal0X128: BigInt
|
||
|
feeGrowthGlobal0X128_not: BigInt
|
||
|
feeGrowthGlobal0X128_gt: BigInt
|
||
|
feeGrowthGlobal0X128_lt: BigInt
|
||
|
feeGrowthGlobal0X128_gte: BigInt
|
||
|
feeGrowthGlobal0X128_lte: BigInt
|
||
|
feeGrowthGlobal0X128_in: [BigInt!]
|
||
|
feeGrowthGlobal0X128_not_in: [BigInt!]
|
||
|
feeGrowthGlobal1X128: BigInt
|
||
|
feeGrowthGlobal1X128_not: BigInt
|
||
|
feeGrowthGlobal1X128_gt: BigInt
|
||
|
feeGrowthGlobal1X128_lt: BigInt
|
||
|
feeGrowthGlobal1X128_gte: BigInt
|
||
|
feeGrowthGlobal1X128_lte: BigInt
|
||
|
feeGrowthGlobal1X128_in: [BigInt!]
|
||
|
feeGrowthGlobal1X128_not_in: [BigInt!]
|
||
|
tvlUSD: BigDecimal
|
||
|
tvlUSD_not: BigDecimal
|
||
|
tvlUSD_gt: BigDecimal
|
||
|
tvlUSD_lt: BigDecimal
|
||
|
tvlUSD_gte: BigDecimal
|
||
|
tvlUSD_lte: BigDecimal
|
||
|
tvlUSD_in: [BigDecimal!]
|
||
|
tvlUSD_not_in: [BigDecimal!]
|
||
|
volumeToken0: BigDecimal
|
||
|
volumeToken0_not: BigDecimal
|
||
|
volumeToken0_gt: BigDecimal
|
||
|
volumeToken0_lt: BigDecimal
|
||
|
volumeToken0_gte: BigDecimal
|
||
|
volumeToken0_lte: BigDecimal
|
||
|
volumeToken0_in: [BigDecimal!]
|
||
|
volumeToken0_not_in: [BigDecimal!]
|
||
|
volumeToken1: BigDecimal
|
||
|
volumeToken1_not: BigDecimal
|
||
|
volumeToken1_gt: BigDecimal
|
||
|
volumeToken1_lt: BigDecimal
|
||
|
volumeToken1_gte: BigDecimal
|
||
|
volumeToken1_lte: BigDecimal
|
||
|
volumeToken1_in: [BigDecimal!]
|
||
|
volumeToken1_not_in: [BigDecimal!]
|
||
|
volumeUSD: BigDecimal
|
||
|
volumeUSD_not: BigDecimal
|
||
|
volumeUSD_gt: BigDecimal
|
||
|
volumeUSD_lt: BigDecimal
|
||
|
volumeUSD_gte: BigDecimal
|
||
|
volumeUSD_lte: BigDecimal
|
||
|
volumeUSD_in: [BigDecimal!]
|
||
|
volumeUSD_not_in: [BigDecimal!]
|
||
|
feesUSD: BigDecimal
|
||
|
feesUSD_not: BigDecimal
|
||
|
feesUSD_gt: BigDecimal
|
||
|
feesUSD_lt: BigDecimal
|
||
|
feesUSD_gte: BigDecimal
|
||
|
feesUSD_lte: BigDecimal
|
||
|
feesUSD_in: [BigDecimal!]
|
||
|
feesUSD_not_in: [BigDecimal!]
|
||
|
txCount: BigInt
|
||
|
txCount_not: BigInt
|
||
|
txCount_gt: BigInt
|
||
|
txCount_lt: BigInt
|
||
|
txCount_gte: BigInt
|
||
|
txCount_lte: BigInt
|
||
|
txCount_in: [BigInt!]
|
||
|
txCount_not_in: [BigInt!]
|
||
|
open: BigDecimal
|
||
|
open_not: BigDecimal
|
||
|
open_gt: BigDecimal
|
||
|
open_lt: BigDecimal
|
||
|
open_gte: BigDecimal
|
||
|
open_lte: BigDecimal
|
||
|
open_in: [BigDecimal!]
|
||
|
open_not_in: [BigDecimal!]
|
||
|
high: BigDecimal
|
||
|
high_not: BigDecimal
|
||
|
high_gt: BigDecimal
|
||
|
high_lt: BigDecimal
|
||
|
high_gte: BigDecimal
|
||
|
high_lte: BigDecimal
|
||
|
high_in: [BigDecimal!]
|
||
|
high_not_in: [BigDecimal!]
|
||
|
low: BigDecimal
|
||
|
low_not: BigDecimal
|
||
|
low_gt: BigDecimal
|
||
|
low_lt: BigDecimal
|
||
|
low_gte: BigDecimal
|
||
|
low_lte: BigDecimal
|
||
|
low_in: [BigDecimal!]
|
||
|
low_not_in: [BigDecimal!]
|
||
|
close: BigDecimal
|
||
|
close_not: BigDecimal
|
||
|
close_gt: BigDecimal
|
||
|
close_lt: BigDecimal
|
||
|
close_gte: BigDecimal
|
||
|
close_lte: BigDecimal
|
||
|
close_in: [BigDecimal!]
|
||
|
close_not_in: [BigDecimal!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [PoolHourData_filter]
|
||
|
or: [PoolHourData_filter]
|
||
|
}
|
||
|
|
||
|
enum TickHourData_orderBy {
|
||
|
id
|
||
|
periodStartUnix
|
||
|
pool
|
||
|
pool__id
|
||
|
pool__createdAtTimestamp
|
||
|
pool__createdAtBlockNumber
|
||
|
pool__feeTier
|
||
|
pool__liquidity
|
||
|
pool__sqrtPrice
|
||
|
pool__feeGrowthGlobal0X128
|
||
|
pool__feeGrowthGlobal1X128
|
||
|
pool__token0Price
|
||
|
pool__token1Price
|
||
|
pool__tick
|
||
|
pool__observationIndex
|
||
|
pool__volumeToken0
|
||
|
pool__volumeToken1
|
||
|
pool__volumeUSD
|
||
|
pool__untrackedVolumeUSD
|
||
|
pool__feesUSD
|
||
|
pool__txCount
|
||
|
pool__collectedFeesToken0
|
||
|
pool__collectedFeesToken1
|
||
|
pool__collectedFeesUSD
|
||
|
pool__totalValueLockedToken0
|
||
|
pool__totalValueLockedToken1
|
||
|
pool__totalValueLockedETH
|
||
|
pool__totalValueLockedUSD
|
||
|
pool__totalValueLockedUSDUntracked
|
||
|
pool__isProtocolFeeEnabled
|
||
|
pool__liquidityProviderCount
|
||
|
tick
|
||
|
tick__id
|
||
|
tick__poolAddress
|
||
|
tick__tickIdx
|
||
|
tick__liquidityGross
|
||
|
tick__liquidityNet
|
||
|
tick__price0
|
||
|
tick__price1
|
||
|
tick__volumeToken0
|
||
|
tick__volumeToken1
|
||
|
tick__volumeUSD
|
||
|
tick__untrackedVolumeUSD
|
||
|
tick__feesUSD
|
||
|
tick__collectedFeesToken0
|
||
|
tick__collectedFeesToken1
|
||
|
tick__collectedFeesUSD
|
||
|
tick__createdAtTimestamp
|
||
|
tick__createdAtBlockNumber
|
||
|
tick__liquidityProviderCount
|
||
|
tick__feeGrowthOutside0X128
|
||
|
tick__feeGrowthOutside1X128
|
||
|
liquidityGross
|
||
|
liquidityNet
|
||
|
volumeToken0
|
||
|
volumeToken1
|
||
|
volumeUSD
|
||
|
feesUSD
|
||
|
}
|
||
|
|
||
|
input TickHourData_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
periodStartUnix: Int
|
||
|
periodStartUnix_not: Int
|
||
|
periodStartUnix_gt: Int
|
||
|
periodStartUnix_lt: Int
|
||
|
periodStartUnix_gte: Int
|
||
|
periodStartUnix_lte: Int
|
||
|
periodStartUnix_in: [Int!]
|
||
|
periodStartUnix_not_in: [Int!]
|
||
|
pool: String
|
||
|
pool_not: String
|
||
|
pool_gt: String
|
||
|
pool_lt: String
|
||
|
pool_gte: String
|
||
|
pool_lte: String
|
||
|
pool_in: [String!]
|
||
|
pool_not_in: [String!]
|
||
|
pool_starts_with: String
|
||
|
pool_starts_with_nocase: String
|
||
|
pool_not_starts_with: String
|
||
|
pool_not_starts_with_nocase: String
|
||
|
pool_ends_with: String
|
||
|
pool_ends_with_nocase: String
|
||
|
pool_not_ends_with: String
|
||
|
pool_not_ends_with_nocase: String
|
||
|
pool_contains: String
|
||
|
pool_not_contains: String
|
||
|
pool_contains_nocase: String
|
||
|
pool_not_contains_nocase: String
|
||
|
pool_: Pool_filter
|
||
|
tick: String
|
||
|
tick_not: String
|
||
|
tick_gt: String
|
||
|
tick_lt: String
|
||
|
tick_gte: String
|
||
|
tick_lte: String
|
||
|
tick_in: [String!]
|
||
|
tick_not_in: [String!]
|
||
|
tick_starts_with: String
|
||
|
tick_starts_with_nocase: String
|
||
|
tick_not_starts_with: String
|
||
|
tick_not_starts_with_nocase: String
|
||
|
tick_ends_with: String
|
||
|
tick_ends_with_nocase: String
|
||
|
tick_not_ends_with: String
|
||
|
tick_not_ends_with_nocase: String
|
||
|
tick_contains: String
|
||
|
tick_not_contains: String
|
||
|
tick_contains_nocase: String
|
||
|
tick_not_contains_nocase: String
|
||
|
tick_: Tick_filter
|
||
|
liquidityGross: BigInt
|
||
|
liquidityGross_not: BigInt
|
||
|
liquidityGross_gt: BigInt
|
||
|
liquidityGross_lt: BigInt
|
||
|
liquidityGross_gte: BigInt
|
||
|
liquidityGross_lte: BigInt
|
||
|
liquidityGross_in: [BigInt!]
|
||
|
liquidityGross_not_in: [BigInt!]
|
||
|
liquidityNet: BigInt
|
||
|
liquidityNet_not: BigInt
|
||
|
liquidityNet_gt: BigInt
|
||
|
liquidityNet_lt: BigInt
|
||
|
liquidityNet_gte: BigInt
|
||
|
liquidityNet_lte: BigInt
|
||
|
liquidityNet_in: [BigInt!]
|
||
|
liquidityNet_not_in: [BigInt!]
|
||
|
volumeToken0: BigDecimal
|
||
|
volumeToken0_not: BigDecimal
|
||
|
volumeToken0_gt: BigDecimal
|
||
|
volumeToken0_lt: BigDecimal
|
||
|
volumeToken0_gte: BigDecimal
|
||
|
volumeToken0_lte: BigDecimal
|
||
|
volumeToken0_in: [BigDecimal!]
|
||
|
volumeToken0_not_in: [BigDecimal!]
|
||
|
volumeToken1: BigDecimal
|
||
|
volumeToken1_not: BigDecimal
|
||
|
volumeToken1_gt: BigDecimal
|
||
|
volumeToken1_lt: BigDecimal
|
||
|
volumeToken1_gte: BigDecimal
|
||
|
volumeToken1_lte: BigDecimal
|
||
|
volumeToken1_in: [BigDecimal!]
|
||
|
volumeToken1_not_in: [BigDecimal!]
|
||
|
volumeUSD: BigDecimal
|
||
|
volumeUSD_not: BigDecimal
|
||
|
volumeUSD_gt: BigDecimal
|
||
|
volumeUSD_lt: BigDecimal
|
||
|
volumeUSD_gte: BigDecimal
|
||
|
volumeUSD_lte: BigDecimal
|
||
|
volumeUSD_in: [BigDecimal!]
|
||
|
volumeUSD_not_in: [BigDecimal!]
|
||
|
feesUSD: BigDecimal
|
||
|
feesUSD_not: BigDecimal
|
||
|
feesUSD_gt: BigDecimal
|
||
|
feesUSD_lt: BigDecimal
|
||
|
feesUSD_gte: BigDecimal
|
||
|
feesUSD_lte: BigDecimal
|
||
|
feesUSD_in: [BigDecimal!]
|
||
|
feesUSD_not_in: [BigDecimal!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [TickHourData_filter]
|
||
|
or: [TickHourData_filter]
|
||
|
}
|
||
|
|
||
|
enum TickDayData_orderBy {
|
||
|
id
|
||
|
date
|
||
|
pool
|
||
|
pool__id
|
||
|
pool__createdAtTimestamp
|
||
|
pool__createdAtBlockNumber
|
||
|
pool__feeTier
|
||
|
pool__liquidity
|
||
|
pool__sqrtPrice
|
||
|
pool__feeGrowthGlobal0X128
|
||
|
pool__feeGrowthGlobal1X128
|
||
|
pool__token0Price
|
||
|
pool__token1Price
|
||
|
pool__tick
|
||
|
pool__observationIndex
|
||
|
pool__volumeToken0
|
||
|
pool__volumeToken1
|
||
|
pool__volumeUSD
|
||
|
pool__untrackedVolumeUSD
|
||
|
pool__feesUSD
|
||
|
pool__txCount
|
||
|
pool__collectedFeesToken0
|
||
|
pool__collectedFeesToken1
|
||
|
pool__collectedFeesUSD
|
||
|
pool__totalValueLockedToken0
|
||
|
pool__totalValueLockedToken1
|
||
|
pool__totalValueLockedETH
|
||
|
pool__totalValueLockedUSD
|
||
|
pool__totalValueLockedUSDUntracked
|
||
|
pool__isProtocolFeeEnabled
|
||
|
pool__liquidityProviderCount
|
||
|
tick
|
||
|
tick__id
|
||
|
tick__poolAddress
|
||
|
tick__tickIdx
|
||
|
tick__liquidityGross
|
||
|
tick__liquidityNet
|
||
|
tick__price0
|
||
|
tick__price1
|
||
|
tick__volumeToken0
|
||
|
tick__volumeToken1
|
||
|
tick__volumeUSD
|
||
|
tick__untrackedVolumeUSD
|
||
|
tick__feesUSD
|
||
|
tick__collectedFeesToken0
|
||
|
tick__collectedFeesToken1
|
||
|
tick__collectedFeesUSD
|
||
|
tick__createdAtTimestamp
|
||
|
tick__createdAtBlockNumber
|
||
|
tick__liquidityProviderCount
|
||
|
tick__feeGrowthOutside0X128
|
||
|
tick__feeGrowthOutside1X128
|
||
|
liquidityGross
|
||
|
liquidityNet
|
||
|
volumeToken0
|
||
|
volumeToken1
|
||
|
volumeUSD
|
||
|
feesUSD
|
||
|
feeGrowthOutside0X128
|
||
|
feeGrowthOutside1X128
|
||
|
}
|
||
|
|
||
|
input TickDayData_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
date: Int
|
||
|
date_not: Int
|
||
|
date_gt: Int
|
||
|
date_lt: Int
|
||
|
date_gte: Int
|
||
|
date_lte: Int
|
||
|
date_in: [Int!]
|
||
|
date_not_in: [Int!]
|
||
|
pool: String
|
||
|
pool_not: String
|
||
|
pool_gt: String
|
||
|
pool_lt: String
|
||
|
pool_gte: String
|
||
|
pool_lte: String
|
||
|
pool_in: [String!]
|
||
|
pool_not_in: [String!]
|
||
|
pool_starts_with: String
|
||
|
pool_starts_with_nocase: String
|
||
|
pool_not_starts_with: String
|
||
|
pool_not_starts_with_nocase: String
|
||
|
pool_ends_with: String
|
||
|
pool_ends_with_nocase: String
|
||
|
pool_not_ends_with: String
|
||
|
pool_not_ends_with_nocase: String
|
||
|
pool_contains: String
|
||
|
pool_not_contains: String
|
||
|
pool_contains_nocase: String
|
||
|
pool_not_contains_nocase: String
|
||
|
pool_: Pool_filter
|
||
|
tick: String
|
||
|
tick_not: String
|
||
|
tick_gt: String
|
||
|
tick_lt: String
|
||
|
tick_gte: String
|
||
|
tick_lte: String
|
||
|
tick_in: [String!]
|
||
|
tick_not_in: [String!]
|
||
|
tick_starts_with: String
|
||
|
tick_starts_with_nocase: String
|
||
|
tick_not_starts_with: String
|
||
|
tick_not_starts_with_nocase: String
|
||
|
tick_ends_with: String
|
||
|
tick_ends_with_nocase: String
|
||
|
tick_not_ends_with: String
|
||
|
tick_not_ends_with_nocase: String
|
||
|
tick_contains: String
|
||
|
tick_not_contains: String
|
||
|
tick_contains_nocase: String
|
||
|
tick_not_contains_nocase: String
|
||
|
tick_: Tick_filter
|
||
|
liquidityGross: BigInt
|
||
|
liquidityGross_not: BigInt
|
||
|
liquidityGross_gt: BigInt
|
||
|
liquidityGross_lt: BigInt
|
||
|
liquidityGross_gte: BigInt
|
||
|
liquidityGross_lte: BigInt
|
||
|
liquidityGross_in: [BigInt!]
|
||
|
liquidityGross_not_in: [BigInt!]
|
||
|
liquidityNet: BigInt
|
||
|
liquidityNet_not: BigInt
|
||
|
liquidityNet_gt: BigInt
|
||
|
liquidityNet_lt: BigInt
|
||
|
liquidityNet_gte: BigInt
|
||
|
liquidityNet_lte: BigInt
|
||
|
liquidityNet_in: [BigInt!]
|
||
|
liquidityNet_not_in: [BigInt!]
|
||
|
volumeToken0: BigDecimal
|
||
|
volumeToken0_not: BigDecimal
|
||
|
volumeToken0_gt: BigDecimal
|
||
|
volumeToken0_lt: BigDecimal
|
||
|
volumeToken0_gte: BigDecimal
|
||
|
volumeToken0_lte: BigDecimal
|
||
|
volumeToken0_in: [BigDecimal!]
|
||
|
volumeToken0_not_in: [BigDecimal!]
|
||
|
volumeToken1: BigDecimal
|
||
|
volumeToken1_not: BigDecimal
|
||
|
volumeToken1_gt: BigDecimal
|
||
|
volumeToken1_lt: BigDecimal
|
||
|
volumeToken1_gte: BigDecimal
|
||
|
volumeToken1_lte: BigDecimal
|
||
|
volumeToken1_in: [BigDecimal!]
|
||
|
volumeToken1_not_in: [BigDecimal!]
|
||
|
volumeUSD: BigDecimal
|
||
|
volumeUSD_not: BigDecimal
|
||
|
volumeUSD_gt: BigDecimal
|
||
|
volumeUSD_lt: BigDecimal
|
||
|
volumeUSD_gte: BigDecimal
|
||
|
volumeUSD_lte: BigDecimal
|
||
|
volumeUSD_in: [BigDecimal!]
|
||
|
volumeUSD_not_in: [BigDecimal!]
|
||
|
feesUSD: BigDecimal
|
||
|
feesUSD_not: BigDecimal
|
||
|
feesUSD_gt: BigDecimal
|
||
|
feesUSD_lt: BigDecimal
|
||
|
feesUSD_gte: BigDecimal
|
||
|
feesUSD_lte: BigDecimal
|
||
|
feesUSD_in: [BigDecimal!]
|
||
|
feesUSD_not_in: [BigDecimal!]
|
||
|
feeGrowthOutside0X128: BigInt
|
||
|
feeGrowthOutside0X128_not: BigInt
|
||
|
feeGrowthOutside0X128_gt: BigInt
|
||
|
feeGrowthOutside0X128_lt: BigInt
|
||
|
feeGrowthOutside0X128_gte: BigInt
|
||
|
feeGrowthOutside0X128_lte: BigInt
|
||
|
feeGrowthOutside0X128_in: [BigInt!]
|
||
|
feeGrowthOutside0X128_not_in: [BigInt!]
|
||
|
feeGrowthOutside1X128: BigInt
|
||
|
feeGrowthOutside1X128_not: BigInt
|
||
|
feeGrowthOutside1X128_gt: BigInt
|
||
|
feeGrowthOutside1X128_lt: BigInt
|
||
|
feeGrowthOutside1X128_gte: BigInt
|
||
|
feeGrowthOutside1X128_lte: BigInt
|
||
|
feeGrowthOutside1X128_in: [BigInt!]
|
||
|
feeGrowthOutside1X128_not_in: [BigInt!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [TickDayData_filter]
|
||
|
or: [TickDayData_filter]
|
||
|
}
|
||
|
|
||
|
enum TokenDayData_orderBy {
|
||
|
id
|
||
|
date
|
||
|
token
|
||
|
token__id
|
||
|
token__symbol
|
||
|
token__name
|
||
|
token__decimals
|
||
|
token__totalSupply
|
||
|
token__volume
|
||
|
token__volumeUSD
|
||
|
token__untrackedVolumeUSD
|
||
|
token__feesUSD
|
||
|
token__txCount
|
||
|
token__poolCount
|
||
|
token__totalValueLocked
|
||
|
token__totalValueLockedUSD
|
||
|
token__totalValueLockedUSDUntracked
|
||
|
token__derivedETH
|
||
|
volume
|
||
|
volumeUSD
|
||
|
untrackedVolumeUSD
|
||
|
totalValueLocked
|
||
|
totalValueLockedUSD
|
||
|
priceUSD
|
||
|
feesUSD
|
||
|
open
|
||
|
high
|
||
|
low
|
||
|
close
|
||
|
}
|
||
|
|
||
|
input TokenDayData_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
date: Int
|
||
|
date_not: Int
|
||
|
date_gt: Int
|
||
|
date_lt: Int
|
||
|
date_gte: Int
|
||
|
date_lte: Int
|
||
|
date_in: [Int!]
|
||
|
date_not_in: [Int!]
|
||
|
token: String
|
||
|
token_not: String
|
||
|
token_gt: String
|
||
|
token_lt: String
|
||
|
token_gte: String
|
||
|
token_lte: String
|
||
|
token_in: [String!]
|
||
|
token_not_in: [String!]
|
||
|
token_starts_with: String
|
||
|
token_starts_with_nocase: String
|
||
|
token_not_starts_with: String
|
||
|
token_not_starts_with_nocase: String
|
||
|
token_ends_with: String
|
||
|
token_ends_with_nocase: String
|
||
|
token_not_ends_with: String
|
||
|
token_not_ends_with_nocase: String
|
||
|
token_contains: String
|
||
|
token_not_contains: String
|
||
|
token_contains_nocase: String
|
||
|
token_not_contains_nocase: String
|
||
|
token_: Token_filter
|
||
|
volume: BigDecimal
|
||
|
volume_not: BigDecimal
|
||
|
volume_gt: BigDecimal
|
||
|
volume_lt: BigDecimal
|
||
|
volume_gte: BigDecimal
|
||
|
volume_lte: BigDecimal
|
||
|
volume_in: [BigDecimal!]
|
||
|
volume_not_in: [BigDecimal!]
|
||
|
volumeUSD: BigDecimal
|
||
|
volumeUSD_not: BigDecimal
|
||
|
volumeUSD_gt: BigDecimal
|
||
|
volumeUSD_lt: BigDecimal
|
||
|
volumeUSD_gte: BigDecimal
|
||
|
volumeUSD_lte: BigDecimal
|
||
|
volumeUSD_in: [BigDecimal!]
|
||
|
volumeUSD_not_in: [BigDecimal!]
|
||
|
untrackedVolumeUSD: BigDecimal
|
||
|
untrackedVolumeUSD_not: BigDecimal
|
||
|
untrackedVolumeUSD_gt: BigDecimal
|
||
|
untrackedVolumeUSD_lt: BigDecimal
|
||
|
untrackedVolumeUSD_gte: BigDecimal
|
||
|
untrackedVolumeUSD_lte: BigDecimal
|
||
|
untrackedVolumeUSD_in: [BigDecimal!]
|
||
|
untrackedVolumeUSD_not_in: [BigDecimal!]
|
||
|
totalValueLocked: BigDecimal
|
||
|
totalValueLocked_not: BigDecimal
|
||
|
totalValueLocked_gt: BigDecimal
|
||
|
totalValueLocked_lt: BigDecimal
|
||
|
totalValueLocked_gte: BigDecimal
|
||
|
totalValueLocked_lte: BigDecimal
|
||
|
totalValueLocked_in: [BigDecimal!]
|
||
|
totalValueLocked_not_in: [BigDecimal!]
|
||
|
totalValueLockedUSD: BigDecimal
|
||
|
totalValueLockedUSD_not: BigDecimal
|
||
|
totalValueLockedUSD_gt: BigDecimal
|
||
|
totalValueLockedUSD_lt: BigDecimal
|
||
|
totalValueLockedUSD_gte: BigDecimal
|
||
|
totalValueLockedUSD_lte: BigDecimal
|
||
|
totalValueLockedUSD_in: [BigDecimal!]
|
||
|
totalValueLockedUSD_not_in: [BigDecimal!]
|
||
|
priceUSD: BigDecimal
|
||
|
priceUSD_not: BigDecimal
|
||
|
priceUSD_gt: BigDecimal
|
||
|
priceUSD_lt: BigDecimal
|
||
|
priceUSD_gte: BigDecimal
|
||
|
priceUSD_lte: BigDecimal
|
||
|
priceUSD_in: [BigDecimal!]
|
||
|
priceUSD_not_in: [BigDecimal!]
|
||
|
feesUSD: BigDecimal
|
||
|
feesUSD_not: BigDecimal
|
||
|
feesUSD_gt: BigDecimal
|
||
|
feesUSD_lt: BigDecimal
|
||
|
feesUSD_gte: BigDecimal
|
||
|
feesUSD_lte: BigDecimal
|
||
|
feesUSD_in: [BigDecimal!]
|
||
|
feesUSD_not_in: [BigDecimal!]
|
||
|
open: BigDecimal
|
||
|
open_not: BigDecimal
|
||
|
open_gt: BigDecimal
|
||
|
open_lt: BigDecimal
|
||
|
open_gte: BigDecimal
|
||
|
open_lte: BigDecimal
|
||
|
open_in: [BigDecimal!]
|
||
|
open_not_in: [BigDecimal!]
|
||
|
high: BigDecimal
|
||
|
high_not: BigDecimal
|
||
|
high_gt: BigDecimal
|
||
|
high_lt: BigDecimal
|
||
|
high_gte: BigDecimal
|
||
|
high_lte: BigDecimal
|
||
|
high_in: [BigDecimal!]
|
||
|
high_not_in: [BigDecimal!]
|
||
|
low: BigDecimal
|
||
|
low_not: BigDecimal
|
||
|
low_gt: BigDecimal
|
||
|
low_lt: BigDecimal
|
||
|
low_gte: BigDecimal
|
||
|
low_lte: BigDecimal
|
||
|
low_in: [BigDecimal!]
|
||
|
low_not_in: [BigDecimal!]
|
||
|
close: BigDecimal
|
||
|
close_not: BigDecimal
|
||
|
close_gt: BigDecimal
|
||
|
close_lt: BigDecimal
|
||
|
close_gte: BigDecimal
|
||
|
close_lte: BigDecimal
|
||
|
close_in: [BigDecimal!]
|
||
|
close_not_in: [BigDecimal!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [TokenDayData_filter]
|
||
|
or: [TokenDayData_filter]
|
||
|
}
|
||
|
|
||
|
enum TokenHourData_orderBy {
|
||
|
id
|
||
|
periodStartUnix
|
||
|
token
|
||
|
token__id
|
||
|
token__symbol
|
||
|
token__name
|
||
|
token__decimals
|
||
|
token__totalSupply
|
||
|
token__volume
|
||
|
token__volumeUSD
|
||
|
token__untrackedVolumeUSD
|
||
|
token__feesUSD
|
||
|
token__txCount
|
||
|
token__poolCount
|
||
|
token__totalValueLocked
|
||
|
token__totalValueLockedUSD
|
||
|
token__totalValueLockedUSDUntracked
|
||
|
token__derivedETH
|
||
|
volume
|
||
|
volumeUSD
|
||
|
untrackedVolumeUSD
|
||
|
totalValueLocked
|
||
|
totalValueLockedUSD
|
||
|
priceUSD
|
||
|
feesUSD
|
||
|
open
|
||
|
high
|
||
|
low
|
||
|
close
|
||
|
}
|
||
|
|
||
|
input TokenHourData_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
periodStartUnix: Int
|
||
|
periodStartUnix_not: Int
|
||
|
periodStartUnix_gt: Int
|
||
|
periodStartUnix_lt: Int
|
||
|
periodStartUnix_gte: Int
|
||
|
periodStartUnix_lte: Int
|
||
|
periodStartUnix_in: [Int!]
|
||
|
periodStartUnix_not_in: [Int!]
|
||
|
token: String
|
||
|
token_not: String
|
||
|
token_gt: String
|
||
|
token_lt: String
|
||
|
token_gte: String
|
||
|
token_lte: String
|
||
|
token_in: [String!]
|
||
|
token_not_in: [String!]
|
||
|
token_starts_with: String
|
||
|
token_starts_with_nocase: String
|
||
|
token_not_starts_with: String
|
||
|
token_not_starts_with_nocase: String
|
||
|
token_ends_with: String
|
||
|
token_ends_with_nocase: String
|
||
|
token_not_ends_with: String
|
||
|
token_not_ends_with_nocase: String
|
||
|
token_contains: String
|
||
|
token_not_contains: String
|
||
|
token_contains_nocase: String
|
||
|
token_not_contains_nocase: String
|
||
|
token_: Token_filter
|
||
|
volume: BigDecimal
|
||
|
volume_not: BigDecimal
|
||
|
volume_gt: BigDecimal
|
||
|
volume_lt: BigDecimal
|
||
|
volume_gte: BigDecimal
|
||
|
volume_lte: BigDecimal
|
||
|
volume_in: [BigDecimal!]
|
||
|
volume_not_in: [BigDecimal!]
|
||
|
volumeUSD: BigDecimal
|
||
|
volumeUSD_not: BigDecimal
|
||
|
volumeUSD_gt: BigDecimal
|
||
|
volumeUSD_lt: BigDecimal
|
||
|
volumeUSD_gte: BigDecimal
|
||
|
volumeUSD_lte: BigDecimal
|
||
|
volumeUSD_in: [BigDecimal!]
|
||
|
volumeUSD_not_in: [BigDecimal!]
|
||
|
untrackedVolumeUSD: BigDecimal
|
||
|
untrackedVolumeUSD_not: BigDecimal
|
||
|
untrackedVolumeUSD_gt: BigDecimal
|
||
|
untrackedVolumeUSD_lt: BigDecimal
|
||
|
untrackedVolumeUSD_gte: BigDecimal
|
||
|
untrackedVolumeUSD_lte: BigDecimal
|
||
|
untrackedVolumeUSD_in: [BigDecimal!]
|
||
|
untrackedVolumeUSD_not_in: [BigDecimal!]
|
||
|
totalValueLocked: BigDecimal
|
||
|
totalValueLocked_not: BigDecimal
|
||
|
totalValueLocked_gt: BigDecimal
|
||
|
totalValueLocked_lt: BigDecimal
|
||
|
totalValueLocked_gte: BigDecimal
|
||
|
totalValueLocked_lte: BigDecimal
|
||
|
totalValueLocked_in: [BigDecimal!]
|
||
|
totalValueLocked_not_in: [BigDecimal!]
|
||
|
totalValueLockedUSD: BigDecimal
|
||
|
totalValueLockedUSD_not: BigDecimal
|
||
|
totalValueLockedUSD_gt: BigDecimal
|
||
|
totalValueLockedUSD_lt: BigDecimal
|
||
|
totalValueLockedUSD_gte: BigDecimal
|
||
|
totalValueLockedUSD_lte: BigDecimal
|
||
|
totalValueLockedUSD_in: [BigDecimal!]
|
||
|
totalValueLockedUSD_not_in: [BigDecimal!]
|
||
|
priceUSD: BigDecimal
|
||
|
priceUSD_not: BigDecimal
|
||
|
priceUSD_gt: BigDecimal
|
||
|
priceUSD_lt: BigDecimal
|
||
|
priceUSD_gte: BigDecimal
|
||
|
priceUSD_lte: BigDecimal
|
||
|
priceUSD_in: [BigDecimal!]
|
||
|
priceUSD_not_in: [BigDecimal!]
|
||
|
feesUSD: BigDecimal
|
||
|
feesUSD_not: BigDecimal
|
||
|
feesUSD_gt: BigDecimal
|
||
|
feesUSD_lt: BigDecimal
|
||
|
feesUSD_gte: BigDecimal
|
||
|
feesUSD_lte: BigDecimal
|
||
|
feesUSD_in: [BigDecimal!]
|
||
|
feesUSD_not_in: [BigDecimal!]
|
||
|
open: BigDecimal
|
||
|
open_not: BigDecimal
|
||
|
open_gt: BigDecimal
|
||
|
open_lt: BigDecimal
|
||
|
open_gte: BigDecimal
|
||
|
open_lte: BigDecimal
|
||
|
open_in: [BigDecimal!]
|
||
|
open_not_in: [BigDecimal!]
|
||
|
high: BigDecimal
|
||
|
high_not: BigDecimal
|
||
|
high_gt: BigDecimal
|
||
|
high_lt: BigDecimal
|
||
|
high_gte: BigDecimal
|
||
|
high_lte: BigDecimal
|
||
|
high_in: [BigDecimal!]
|
||
|
high_not_in: [BigDecimal!]
|
||
|
low: BigDecimal
|
||
|
low_not: BigDecimal
|
||
|
low_gt: BigDecimal
|
||
|
low_lt: BigDecimal
|
||
|
low_gte: BigDecimal
|
||
|
low_lte: BigDecimal
|
||
|
low_in: [BigDecimal!]
|
||
|
low_not_in: [BigDecimal!]
|
||
|
close: BigDecimal
|
||
|
close_not: BigDecimal
|
||
|
close_gt: BigDecimal
|
||
|
close_lt: BigDecimal
|
||
|
close_gte: BigDecimal
|
||
|
close_lte: BigDecimal
|
||
|
close_in: [BigDecimal!]
|
||
|
close_not_in: [BigDecimal!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [TokenHourData_filter]
|
||
|
or: [TokenHourData_filter]
|
||
|
}
|
||
|
|
||
|
enum IncreaseEvent_orderBy {
|
||
|
id
|
||
|
pool
|
||
|
pool__id
|
||
|
pool__createdAtTimestamp
|
||
|
pool__createdAtBlockNumber
|
||
|
pool__feeTier
|
||
|
pool__liquidity
|
||
|
pool__sqrtPrice
|
||
|
pool__feeGrowthGlobal0X128
|
||
|
pool__feeGrowthGlobal1X128
|
||
|
pool__token0Price
|
||
|
pool__token1Price
|
||
|
pool__tick
|
||
|
pool__observationIndex
|
||
|
pool__volumeToken0
|
||
|
pool__volumeToken1
|
||
|
pool__volumeUSD
|
||
|
pool__untrackedVolumeUSD
|
||
|
pool__feesUSD
|
||
|
pool__txCount
|
||
|
pool__collectedFeesToken0
|
||
|
pool__collectedFeesToken1
|
||
|
pool__collectedFeesUSD
|
||
|
pool__totalValueLockedToken0
|
||
|
pool__totalValueLockedToken1
|
||
|
pool__totalValueLockedETH
|
||
|
pool__totalValueLockedUSD
|
||
|
pool__totalValueLockedUSDUntracked
|
||
|
pool__isProtocolFeeEnabled
|
||
|
pool__liquidityProviderCount
|
||
|
tokenID
|
||
|
position
|
||
|
position__id
|
||
|
position__owner
|
||
|
position__liquidity
|
||
|
position__depositedToken0
|
||
|
position__depositedToken1
|
||
|
position__withdrawnToken0
|
||
|
position__withdrawnToken1
|
||
|
position__collectedToken0
|
||
|
position__collectedToken1
|
||
|
position__collectedFeesToken0
|
||
|
position__collectedFeesToken1
|
||
|
position__amountDepositedUSD
|
||
|
position__amountWithdrawnUSD
|
||
|
position__amountCollectedUSD
|
||
|
position__feeGrowthInside0LastX128
|
||
|
position__feeGrowthInside1LastX128
|
||
|
amount0
|
||
|
amount1
|
||
|
token0
|
||
|
token0__id
|
||
|
token0__symbol
|
||
|
token0__name
|
||
|
token0__decimals
|
||
|
token0__totalSupply
|
||
|
token0__volume
|
||
|
token0__volumeUSD
|
||
|
token0__untrackedVolumeUSD
|
||
|
token0__feesUSD
|
||
|
token0__txCount
|
||
|
token0__poolCount
|
||
|
token0__totalValueLocked
|
||
|
token0__totalValueLockedUSD
|
||
|
token0__totalValueLockedUSDUntracked
|
||
|
token0__derivedETH
|
||
|
token1
|
||
|
token1__id
|
||
|
token1__symbol
|
||
|
token1__name
|
||
|
token1__decimals
|
||
|
token1__totalSupply
|
||
|
token1__volume
|
||
|
token1__volumeUSD
|
||
|
token1__untrackedVolumeUSD
|
||
|
token1__feesUSD
|
||
|
token1__txCount
|
||
|
token1__poolCount
|
||
|
token1__totalValueLocked
|
||
|
token1__totalValueLockedUSD
|
||
|
token1__totalValueLockedUSDUntracked
|
||
|
token1__derivedETH
|
||
|
timeStamp
|
||
|
transaction
|
||
|
transaction__id
|
||
|
transaction__blockNumber
|
||
|
transaction__timestamp
|
||
|
transaction__gasUsed
|
||
|
transaction__gasPrice
|
||
|
}
|
||
|
|
||
|
input IncreaseEvent_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
pool: String
|
||
|
pool_not: String
|
||
|
pool_gt: String
|
||
|
pool_lt: String
|
||
|
pool_gte: String
|
||
|
pool_lte: String
|
||
|
pool_in: [String!]
|
||
|
pool_not_in: [String!]
|
||
|
pool_starts_with: String
|
||
|
pool_starts_with_nocase: String
|
||
|
pool_not_starts_with: String
|
||
|
pool_not_starts_with_nocase: String
|
||
|
pool_ends_with: String
|
||
|
pool_ends_with_nocase: String
|
||
|
pool_not_ends_with: String
|
||
|
pool_not_ends_with_nocase: String
|
||
|
pool_contains: String
|
||
|
pool_not_contains: String
|
||
|
pool_contains_nocase: String
|
||
|
pool_not_contains_nocase: String
|
||
|
pool_: Pool_filter
|
||
|
tokenID: BigInt
|
||
|
tokenID_not: BigInt
|
||
|
tokenID_gt: BigInt
|
||
|
tokenID_lt: BigInt
|
||
|
tokenID_gte: BigInt
|
||
|
tokenID_lte: BigInt
|
||
|
tokenID_in: [BigInt!]
|
||
|
tokenID_not_in: [BigInt!]
|
||
|
position: String
|
||
|
position_not: String
|
||
|
position_gt: String
|
||
|
position_lt: String
|
||
|
position_gte: String
|
||
|
position_lte: String
|
||
|
position_in: [String!]
|
||
|
position_not_in: [String!]
|
||
|
position_starts_with: String
|
||
|
position_starts_with_nocase: String
|
||
|
position_not_starts_with: String
|
||
|
position_not_starts_with_nocase: String
|
||
|
position_ends_with: String
|
||
|
position_ends_with_nocase: String
|
||
|
position_not_ends_with: String
|
||
|
position_not_ends_with_nocase: String
|
||
|
position_contains: String
|
||
|
position_not_contains: String
|
||
|
position_contains_nocase: String
|
||
|
position_not_contains_nocase: String
|
||
|
position_: Position_filter
|
||
|
amount0: BigInt
|
||
|
amount0_not: BigInt
|
||
|
amount0_gt: BigInt
|
||
|
amount0_lt: BigInt
|
||
|
amount0_gte: BigInt
|
||
|
amount0_lte: BigInt
|
||
|
amount0_in: [BigInt!]
|
||
|
amount0_not_in: [BigInt!]
|
||
|
amount1: BigInt
|
||
|
amount1_not: BigInt
|
||
|
amount1_gt: BigInt
|
||
|
amount1_lt: BigInt
|
||
|
amount1_gte: BigInt
|
||
|
amount1_lte: BigInt
|
||
|
amount1_in: [BigInt!]
|
||
|
amount1_not_in: [BigInt!]
|
||
|
token0: String
|
||
|
token0_not: String
|
||
|
token0_gt: String
|
||
|
token0_lt: String
|
||
|
token0_gte: String
|
||
|
token0_lte: String
|
||
|
token0_in: [String!]
|
||
|
token0_not_in: [String!]
|
||
|
token0_starts_with: String
|
||
|
token0_starts_with_nocase: String
|
||
|
token0_not_starts_with: String
|
||
|
token0_not_starts_with_nocase: String
|
||
|
token0_ends_with: String
|
||
|
token0_ends_with_nocase: String
|
||
|
token0_not_ends_with: String
|
||
|
token0_not_ends_with_nocase: String
|
||
|
token0_contains: String
|
||
|
token0_not_contains: String
|
||
|
token0_contains_nocase: String
|
||
|
token0_not_contains_nocase: String
|
||
|
token0_: Token_filter
|
||
|
token1: String
|
||
|
token1_not: String
|
||
|
token1_gt: String
|
||
|
token1_lt: String
|
||
|
token1_gte: String
|
||
|
token1_lte: String
|
||
|
token1_in: [String!]
|
||
|
token1_not_in: [String!]
|
||
|
token1_starts_with: String
|
||
|
token1_starts_with_nocase: String
|
||
|
token1_not_starts_with: String
|
||
|
token1_not_starts_with_nocase: String
|
||
|
token1_ends_with: String
|
||
|
token1_ends_with_nocase: String
|
||
|
token1_not_ends_with: String
|
||
|
token1_not_ends_with_nocase: String
|
||
|
token1_contains: String
|
||
|
token1_not_contains: String
|
||
|
token1_contains_nocase: String
|
||
|
token1_not_contains_nocase: String
|
||
|
token1_: Token_filter
|
||
|
timeStamp: BigInt
|
||
|
timeStamp_not: BigInt
|
||
|
timeStamp_gt: BigInt
|
||
|
timeStamp_lt: BigInt
|
||
|
timeStamp_gte: BigInt
|
||
|
timeStamp_lte: BigInt
|
||
|
timeStamp_in: [BigInt!]
|
||
|
timeStamp_not_in: [BigInt!]
|
||
|
transaction: String
|
||
|
transaction_not: String
|
||
|
transaction_gt: String
|
||
|
transaction_lt: String
|
||
|
transaction_gte: String
|
||
|
transaction_lte: String
|
||
|
transaction_in: [String!]
|
||
|
transaction_not_in: [String!]
|
||
|
transaction_starts_with: String
|
||
|
transaction_starts_with_nocase: String
|
||
|
transaction_not_starts_with: String
|
||
|
transaction_not_starts_with_nocase: String
|
||
|
transaction_ends_with: String
|
||
|
transaction_ends_with_nocase: String
|
||
|
transaction_not_ends_with: String
|
||
|
transaction_not_ends_with_nocase: String
|
||
|
transaction_contains: String
|
||
|
transaction_not_contains: String
|
||
|
transaction_contains_nocase: String
|
||
|
transaction_not_contains_nocase: String
|
||
|
transaction_: Transaction_filter
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [IncreaseEvent_filter]
|
||
|
or: [IncreaseEvent_filter]
|
||
|
}
|
||
|
|
||
|
enum DecreaseEvent_orderBy {
|
||
|
id
|
||
|
pool
|
||
|
pool__id
|
||
|
pool__createdAtTimestamp
|
||
|
pool__createdAtBlockNumber
|
||
|
pool__feeTier
|
||
|
pool__liquidity
|
||
|
pool__sqrtPrice
|
||
|
pool__feeGrowthGlobal0X128
|
||
|
pool__feeGrowthGlobal1X128
|
||
|
pool__token0Price
|
||
|
pool__token1Price
|
||
|
pool__tick
|
||
|
pool__observationIndex
|
||
|
pool__volumeToken0
|
||
|
pool__volumeToken1
|
||
|
pool__volumeUSD
|
||
|
pool__untrackedVolumeUSD
|
||
|
pool__feesUSD
|
||
|
pool__txCount
|
||
|
pool__collectedFeesToken0
|
||
|
pool__collectedFeesToken1
|
||
|
pool__collectedFeesUSD
|
||
|
pool__totalValueLockedToken0
|
||
|
pool__totalValueLockedToken1
|
||
|
pool__totalValueLockedETH
|
||
|
pool__totalValueLockedUSD
|
||
|
pool__totalValueLockedUSDUntracked
|
||
|
pool__isProtocolFeeEnabled
|
||
|
pool__liquidityProviderCount
|
||
|
tokenID
|
||
|
position
|
||
|
position__id
|
||
|
position__owner
|
||
|
position__liquidity
|
||
|
position__depositedToken0
|
||
|
position__depositedToken1
|
||
|
position__withdrawnToken0
|
||
|
position__withdrawnToken1
|
||
|
position__collectedToken0
|
||
|
position__collectedToken1
|
||
|
position__collectedFeesToken0
|
||
|
position__collectedFeesToken1
|
||
|
position__amountDepositedUSD
|
||
|
position__amountWithdrawnUSD
|
||
|
position__amountCollectedUSD
|
||
|
position__feeGrowthInside0LastX128
|
||
|
position__feeGrowthInside1LastX128
|
||
|
amount0
|
||
|
amount1
|
||
|
token0
|
||
|
token0__id
|
||
|
token0__symbol
|
||
|
token0__name
|
||
|
token0__decimals
|
||
|
token0__totalSupply
|
||
|
token0__volume
|
||
|
token0__volumeUSD
|
||
|
token0__untrackedVolumeUSD
|
||
|
token0__feesUSD
|
||
|
token0__txCount
|
||
|
token0__poolCount
|
||
|
token0__totalValueLocked
|
||
|
token0__totalValueLockedUSD
|
||
|
token0__totalValueLockedUSDUntracked
|
||
|
token0__derivedETH
|
||
|
token1
|
||
|
token1__id
|
||
|
token1__symbol
|
||
|
token1__name
|
||
|
token1__decimals
|
||
|
token1__totalSupply
|
||
|
token1__volume
|
||
|
token1__volumeUSD
|
||
|
token1__untrackedVolumeUSD
|
||
|
token1__feesUSD
|
||
|
token1__txCount
|
||
|
token1__poolCount
|
||
|
token1__totalValueLocked
|
||
|
token1__totalValueLockedUSD
|
||
|
token1__totalValueLockedUSDUntracked
|
||
|
token1__derivedETH
|
||
|
timeStamp
|
||
|
transaction
|
||
|
transaction__id
|
||
|
transaction__blockNumber
|
||
|
transaction__timestamp
|
||
|
transaction__gasUsed
|
||
|
transaction__gasPrice
|
||
|
}
|
||
|
|
||
|
input DecreaseEvent_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
pool: String
|
||
|
pool_not: String
|
||
|
pool_gt: String
|
||
|
pool_lt: String
|
||
|
pool_gte: String
|
||
|
pool_lte: String
|
||
|
pool_in: [String!]
|
||
|
pool_not_in: [String!]
|
||
|
pool_starts_with: String
|
||
|
pool_starts_with_nocase: String
|
||
|
pool_not_starts_with: String
|
||
|
pool_not_starts_with_nocase: String
|
||
|
pool_ends_with: String
|
||
|
pool_ends_with_nocase: String
|
||
|
pool_not_ends_with: String
|
||
|
pool_not_ends_with_nocase: String
|
||
|
pool_contains: String
|
||
|
pool_not_contains: String
|
||
|
pool_contains_nocase: String
|
||
|
pool_not_contains_nocase: String
|
||
|
pool_: Pool_filter
|
||
|
tokenID: BigInt
|
||
|
tokenID_not: BigInt
|
||
|
tokenID_gt: BigInt
|
||
|
tokenID_lt: BigInt
|
||
|
tokenID_gte: BigInt
|
||
|
tokenID_lte: BigInt
|
||
|
tokenID_in: [BigInt!]
|
||
|
tokenID_not_in: [BigInt!]
|
||
|
position: String
|
||
|
position_not: String
|
||
|
position_gt: String
|
||
|
position_lt: String
|
||
|
position_gte: String
|
||
|
position_lte: String
|
||
|
position_in: [String!]
|
||
|
position_not_in: [String!]
|
||
|
position_starts_with: String
|
||
|
position_starts_with_nocase: String
|
||
|
position_not_starts_with: String
|
||
|
position_not_starts_with_nocase: String
|
||
|
position_ends_with: String
|
||
|
position_ends_with_nocase: String
|
||
|
position_not_ends_with: String
|
||
|
position_not_ends_with_nocase: String
|
||
|
position_contains: String
|
||
|
position_not_contains: String
|
||
|
position_contains_nocase: String
|
||
|
position_not_contains_nocase: String
|
||
|
position_: Position_filter
|
||
|
amount0: BigInt
|
||
|
amount0_not: BigInt
|
||
|
amount0_gt: BigInt
|
||
|
amount0_lt: BigInt
|
||
|
amount0_gte: BigInt
|
||
|
amount0_lte: BigInt
|
||
|
amount0_in: [BigInt!]
|
||
|
amount0_not_in: [BigInt!]
|
||
|
amount1: BigInt
|
||
|
amount1_not: BigInt
|
||
|
amount1_gt: BigInt
|
||
|
amount1_lt: BigInt
|
||
|
amount1_gte: BigInt
|
||
|
amount1_lte: BigInt
|
||
|
amount1_in: [BigInt!]
|
||
|
amount1_not_in: [BigInt!]
|
||
|
token0: String
|
||
|
token0_not: String
|
||
|
token0_gt: String
|
||
|
token0_lt: String
|
||
|
token0_gte: String
|
||
|
token0_lte: String
|
||
|
token0_in: [String!]
|
||
|
token0_not_in: [String!]
|
||
|
token0_starts_with: String
|
||
|
token0_starts_with_nocase: String
|
||
|
token0_not_starts_with: String
|
||
|
token0_not_starts_with_nocase: String
|
||
|
token0_ends_with: String
|
||
|
token0_ends_with_nocase: String
|
||
|
token0_not_ends_with: String
|
||
|
token0_not_ends_with_nocase: String
|
||
|
token0_contains: String
|
||
|
token0_not_contains: String
|
||
|
token0_contains_nocase: String
|
||
|
token0_not_contains_nocase: String
|
||
|
token0_: Token_filter
|
||
|
token1: String
|
||
|
token1_not: String
|
||
|
token1_gt: String
|
||
|
token1_lt: String
|
||
|
token1_gte: String
|
||
|
token1_lte: String
|
||
|
token1_in: [String!]
|
||
|
token1_not_in: [String!]
|
||
|
token1_starts_with: String
|
||
|
token1_starts_with_nocase: String
|
||
|
token1_not_starts_with: String
|
||
|
token1_not_starts_with_nocase: String
|
||
|
token1_ends_with: String
|
||
|
token1_ends_with_nocase: String
|
||
|
token1_not_ends_with: String
|
||
|
token1_not_ends_with_nocase: String
|
||
|
token1_contains: String
|
||
|
token1_not_contains: String
|
||
|
token1_contains_nocase: String
|
||
|
token1_not_contains_nocase: String
|
||
|
token1_: Token_filter
|
||
|
timeStamp: BigInt
|
||
|
timeStamp_not: BigInt
|
||
|
timeStamp_gt: BigInt
|
||
|
timeStamp_lt: BigInt
|
||
|
timeStamp_gte: BigInt
|
||
|
timeStamp_lte: BigInt
|
||
|
timeStamp_in: [BigInt!]
|
||
|
timeStamp_not_in: [BigInt!]
|
||
|
transaction: String
|
||
|
transaction_not: String
|
||
|
transaction_gt: String
|
||
|
transaction_lt: String
|
||
|
transaction_gte: String
|
||
|
transaction_lte: String
|
||
|
transaction_in: [String!]
|
||
|
transaction_not_in: [String!]
|
||
|
transaction_starts_with: String
|
||
|
transaction_starts_with_nocase: String
|
||
|
transaction_not_starts_with: String
|
||
|
transaction_not_starts_with_nocase: String
|
||
|
transaction_ends_with: String
|
||
|
transaction_ends_with_nocase: String
|
||
|
transaction_not_ends_with: String
|
||
|
transaction_not_ends_with_nocase: String
|
||
|
transaction_contains: String
|
||
|
transaction_not_contains: String
|
||
|
transaction_contains_nocase: String
|
||
|
transaction_not_contains_nocase: String
|
||
|
transaction_: Transaction_filter
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [DecreaseEvent_filter]
|
||
|
or: [DecreaseEvent_filter]
|
||
|
}
|
||
|
|
||
|
enum SetProtocolFeeEvent_orderBy {
|
||
|
id
|
||
|
pool
|
||
|
pool__id
|
||
|
pool__createdAtTimestamp
|
||
|
pool__createdAtBlockNumber
|
||
|
pool__feeTier
|
||
|
pool__liquidity
|
||
|
pool__sqrtPrice
|
||
|
pool__feeGrowthGlobal0X128
|
||
|
pool__feeGrowthGlobal1X128
|
||
|
pool__token0Price
|
||
|
pool__token1Price
|
||
|
pool__tick
|
||
|
pool__observationIndex
|
||
|
pool__volumeToken0
|
||
|
pool__volumeToken1
|
||
|
pool__volumeUSD
|
||
|
pool__untrackedVolumeUSD
|
||
|
pool__feesUSD
|
||
|
pool__txCount
|
||
|
pool__collectedFeesToken0
|
||
|
pool__collectedFeesToken1
|
||
|
pool__collectedFeesUSD
|
||
|
pool__totalValueLockedToken0
|
||
|
pool__totalValueLockedToken1
|
||
|
pool__totalValueLockedETH
|
||
|
pool__totalValueLockedUSD
|
||
|
pool__totalValueLockedUSDUntracked
|
||
|
pool__isProtocolFeeEnabled
|
||
|
pool__liquidityProviderCount
|
||
|
logIndex
|
||
|
new0
|
||
|
new1
|
||
|
old0
|
||
|
old1
|
||
|
timestamp
|
||
|
}
|
||
|
|
||
|
input SetProtocolFeeEvent_filter {
|
||
|
id: ID
|
||
|
id_not: ID
|
||
|
id_gt: ID
|
||
|
id_lt: ID
|
||
|
id_gte: ID
|
||
|
id_lte: ID
|
||
|
id_in: [ID!]
|
||
|
id_not_in: [ID!]
|
||
|
pool: String
|
||
|
pool_not: String
|
||
|
pool_gt: String
|
||
|
pool_lt: String
|
||
|
pool_gte: String
|
||
|
pool_lte: String
|
||
|
pool_in: [String!]
|
||
|
pool_not_in: [String!]
|
||
|
pool_starts_with: String
|
||
|
pool_starts_with_nocase: String
|
||
|
pool_not_starts_with: String
|
||
|
pool_not_starts_with_nocase: String
|
||
|
pool_ends_with: String
|
||
|
pool_ends_with_nocase: String
|
||
|
pool_not_ends_with: String
|
||
|
pool_not_ends_with_nocase: String
|
||
|
pool_contains: String
|
||
|
pool_not_contains: String
|
||
|
pool_contains_nocase: String
|
||
|
pool_not_contains_nocase: String
|
||
|
pool_: Pool_filter
|
||
|
logIndex: BigInt
|
||
|
logIndex_not: BigInt
|
||
|
logIndex_gt: BigInt
|
||
|
logIndex_lt: BigInt
|
||
|
logIndex_gte: BigInt
|
||
|
logIndex_lte: BigInt
|
||
|
logIndex_in: [BigInt!]
|
||
|
logIndex_not_in: [BigInt!]
|
||
|
new0: BigInt
|
||
|
new0_not: BigInt
|
||
|
new0_gt: BigInt
|
||
|
new0_lt: BigInt
|
||
|
new0_gte: BigInt
|
||
|
new0_lte: BigInt
|
||
|
new0_in: [BigInt!]
|
||
|
new0_not_in: [BigInt!]
|
||
|
new1: BigInt
|
||
|
new1_not: BigInt
|
||
|
new1_gt: BigInt
|
||
|
new1_lt: BigInt
|
||
|
new1_gte: BigInt
|
||
|
new1_lte: BigInt
|
||
|
new1_in: [BigInt!]
|
||
|
new1_not_in: [BigInt!]
|
||
|
old0: BigInt
|
||
|
old0_not: BigInt
|
||
|
old0_gt: BigInt
|
||
|
old0_lt: BigInt
|
||
|
old0_gte: BigInt
|
||
|
old0_lte: BigInt
|
||
|
old0_in: [BigInt!]
|
||
|
old0_not_in: [BigInt!]
|
||
|
old1: BigInt
|
||
|
old1_not: BigInt
|
||
|
old1_gt: BigInt
|
||
|
old1_lt: BigInt
|
||
|
old1_gte: BigInt
|
||
|
old1_lte: BigInt
|
||
|
old1_in: [BigInt!]
|
||
|
old1_not_in: [BigInt!]
|
||
|
timestamp: BigInt
|
||
|
timestamp_not: BigInt
|
||
|
timestamp_gt: BigInt
|
||
|
timestamp_lt: BigInt
|
||
|
timestamp_gte: BigInt
|
||
|
timestamp_lte: BigInt
|
||
|
timestamp_in: [BigInt!]
|
||
|
timestamp_not_in: [BigInt!]
|
||
|
_change_block: BlockChangedFilter
|
||
|
and: [SetProtocolFeeEvent_filter]
|
||
|
or: [SetProtocolFeeEvent_filter]
|
||
|
}
|
||
|
|
||
|
type _MetaBlock_ {
|
||
|
hash: Bytes
|
||
|
number: Int!
|
||
|
timestamp: Int
|
||
|
}
|
||
|
|
||
|
type _Meta_ {
|
||
|
block: _MetaBlock_!
|
||
|
deployment: String!
|
||
|
hasIndexingErrors: Boolean!
|
||
|
}
|
||
|
|
||
|
type ResultState {
|
||
|
block: _Block_!
|
||
|
contractAddress: String!
|
||
|
cid: String!
|
||
|
kind: String!
|
||
|
data: String!
|
||
|
}
|
||
|
|
||
|
type SyncStatus {
|
||
|
latestIndexedBlockHash: String!
|
||
|
latestIndexedBlockNumber: Int!
|
||
|
latestCanonicalBlockHash: String!
|
||
|
latestCanonicalBlockNumber: Int!
|
||
|
initialIndexedBlockHash: String!
|
||
|
initialIndexedBlockNumber: Int!
|
||
|
latestProcessedBlockHash: String!
|
||
|
latestProcessedBlockNumber: Int!
|
||
|
}
|
||
|
|
||
|
type Query {
|
||
|
events(blockHash: String!, contractAddress: String!, name: String): [ResultEvent!]
|
||
|
eventsInRange(fromBlockNumber: Int!, toBlockNumber: Int!): [ResultEvent!]
|
||
|
factory(id: ID!, block: Block_height): Factory
|
||
|
factories(block: Block_height, where: Factory_filter, orderBy: Factory_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Factory!]!
|
||
|
bundle(id: ID!, block: Block_height): Bundle
|
||
|
bundles(block: Block_height, where: Bundle_filter, orderBy: Bundle_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Bundle!]!
|
||
|
token(id: ID!, block: Block_height): Token
|
||
|
tokens(block: Block_height, where: Token_filter, orderBy: Token_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Token!]!
|
||
|
pool(id: ID!, block: Block_height): Pool
|
||
|
pools(block: Block_height, where: Pool_filter, orderBy: Pool_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Pool!]!
|
||
|
tick(id: ID!, block: Block_height): Tick
|
||
|
ticks(block: Block_height, where: Tick_filter, orderBy: Tick_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Tick!]!
|
||
|
position(id: ID!, block: Block_height): Position
|
||
|
positions(block: Block_height, where: Position_filter, orderBy: Position_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Position!]!
|
||
|
positionSnapshot(id: ID!, block: Block_height): PositionSnapshot
|
||
|
positionSnapshots(block: Block_height, where: PositionSnapshot_filter, orderBy: PositionSnapshot_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [PositionSnapshot!]!
|
||
|
transaction(id: ID!, block: Block_height): Transaction
|
||
|
transactions(block: Block_height, where: Transaction_filter, orderBy: Transaction_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Transaction!]!
|
||
|
mint(id: ID!, block: Block_height): Mint
|
||
|
mints(block: Block_height, where: Mint_filter, orderBy: Mint_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Mint!]!
|
||
|
burn(id: ID!, block: Block_height): Burn
|
||
|
burns(block: Block_height, where: Burn_filter, orderBy: Burn_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Burn!]!
|
||
|
swap(id: ID!, block: Block_height): Swap
|
||
|
swaps(block: Block_height, where: Swap_filter, orderBy: Swap_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Swap!]!
|
||
|
collect(id: ID!, block: Block_height): Collect
|
||
|
collects(block: Block_height, where: Collect_filter, orderBy: Collect_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Collect!]!
|
||
|
flash(id: ID!, block: Block_height): Flash
|
||
|
flashes(block: Block_height, where: Flash_filter, orderBy: Flash_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [Flash!]!
|
||
|
uniswapDayData(id: ID!, block: Block_height): UniswapDayData
|
||
|
uniswapDayDatas(block: Block_height, where: UniswapDayData_filter, orderBy: UniswapDayData_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [UniswapDayData!]!
|
||
|
poolDayData(id: ID!, block: Block_height): PoolDayData
|
||
|
poolDayDatas(block: Block_height, where: PoolDayData_filter, orderBy: PoolDayData_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [PoolDayData!]!
|
||
|
poolHourData(id: ID!, block: Block_height): PoolHourData
|
||
|
poolHourDatas(block: Block_height, where: PoolHourData_filter, orderBy: PoolHourData_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [PoolHourData!]!
|
||
|
tickHourData(id: ID!, block: Block_height): TickHourData
|
||
|
tickHourDatas(block: Block_height, where: TickHourData_filter, orderBy: TickHourData_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [TickHourData!]!
|
||
|
tickDayData(id: ID!, block: Block_height): TickDayData
|
||
|
tickDayDatas(block: Block_height, where: TickDayData_filter, orderBy: TickDayData_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [TickDayData!]!
|
||
|
tokenDayData(id: ID!, block: Block_height): TokenDayData
|
||
|
tokenDayDatas(block: Block_height, where: TokenDayData_filter, orderBy: TokenDayData_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [TokenDayData!]!
|
||
|
tokenHourData(id: ID!, block: Block_height): TokenHourData
|
||
|
tokenHourDatas(block: Block_height, where: TokenHourData_filter, orderBy: TokenHourData_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [TokenHourData!]!
|
||
|
increaseEvent(id: ID!, block: Block_height): IncreaseEvent
|
||
|
increaseEvents(block: Block_height, where: IncreaseEvent_filter, orderBy: IncreaseEvent_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [IncreaseEvent!]!
|
||
|
decreaseEvent(id: ID!, block: Block_height): DecreaseEvent
|
||
|
decreaseEvents(block: Block_height, where: DecreaseEvent_filter, orderBy: DecreaseEvent_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [DecreaseEvent!]!
|
||
|
setProtocolFeeEvent(id: ID!, block: Block_height): SetProtocolFeeEvent
|
||
|
setProtocolFeeEvents(block: Block_height, where: SetProtocolFeeEvent_filter, orderBy: SetProtocolFeeEvent_orderBy, orderDirection: OrderDirection, first: Int = 100, skip: Int = 0): [SetProtocolFeeEvent!]!
|
||
|
_meta(block: Block_height): _Meta_
|
||
|
getStateByCID(cid: String!): ResultState
|
||
|
getState(blockHash: String!, contractAddress: String!, kind: String): ResultState
|
||
|
getSyncStatus: SyncStatus
|
||
|
}
|
||
|
|
||
|
type Factory {
|
||
|
id: ID!
|
||
|
poolCount: BigInt!
|
||
|
txCount: BigInt!
|
||
|
totalVolumeUSD: BigDecimal!
|
||
|
totalVolumeETH: BigDecimal!
|
||
|
totalFeesUSD: BigDecimal!
|
||
|
totalFeesETH: BigDecimal!
|
||
|
untrackedVolumeUSD: BigDecimal!
|
||
|
totalValueLockedUSD: BigDecimal!
|
||
|
totalValueLockedETH: BigDecimal!
|
||
|
totalValueLockedUSDUntracked: BigDecimal!
|
||
|
totalValueLockedETHUntracked: BigDecimal!
|
||
|
owner: ID!
|
||
|
}
|
||
|
|
||
|
type Bundle {
|
||
|
id: ID!
|
||
|
ethPriceUSD: BigDecimal!
|
||
|
}
|
||
|
|
||
|
type Token {
|
||
|
id: ID!
|
||
|
symbol: String!
|
||
|
name: String!
|
||
|
decimals: BigInt!
|
||
|
totalSupply: BigInt!
|
||
|
volume: BigDecimal!
|
||
|
volumeUSD: BigDecimal!
|
||
|
untrackedVolumeUSD: BigDecimal!
|
||
|
feesUSD: BigDecimal!
|
||
|
txCount: BigInt!
|
||
|
poolCount: BigInt!
|
||
|
totalValueLocked: BigDecimal!
|
||
|
totalValueLockedUSD: BigDecimal!
|
||
|
totalValueLockedUSDUntracked: BigDecimal!
|
||
|
derivedETH: BigDecimal!
|
||
|
whitelistPools: [Pool!]!
|
||
|
tokenDayData: [TokenDayData!]!
|
||
|
}
|
||
|
|
||
|
type Pool {
|
||
|
id: ID!
|
||
|
createdAtTimestamp: BigInt!
|
||
|
createdAtBlockNumber: BigInt!
|
||
|
token0: Token!
|
||
|
token1: Token!
|
||
|
feeTier: BigInt!
|
||
|
liquidity: BigInt!
|
||
|
sqrtPrice: BigInt!
|
||
|
feeGrowthGlobal0X128: BigInt!
|
||
|
feeGrowthGlobal1X128: BigInt!
|
||
|
token0Price: BigDecimal!
|
||
|
token1Price: BigDecimal!
|
||
|
tick: BigInt
|
||
|
observationIndex: BigInt!
|
||
|
volumeToken0: BigDecimal!
|
||
|
volumeToken1: BigDecimal!
|
||
|
volumeUSD: BigDecimal!
|
||
|
untrackedVolumeUSD: BigDecimal!
|
||
|
feesUSD: BigDecimal!
|
||
|
txCount: BigInt!
|
||
|
collectedFeesToken0: BigDecimal!
|
||
|
collectedFeesToken1: BigDecimal!
|
||
|
collectedFeesUSD: BigDecimal!
|
||
|
totalValueLockedToken0: BigDecimal!
|
||
|
totalValueLockedToken1: BigDecimal!
|
||
|
totalValueLockedETH: BigDecimal!
|
||
|
totalValueLockedUSD: BigDecimal!
|
||
|
totalValueLockedUSDUntracked: BigDecimal!
|
||
|
isProtocolFeeEnabled: Boolean!
|
||
|
liquidityProviderCount: BigInt!
|
||
|
poolHourData: [PoolHourData!]!
|
||
|
poolDayData: [PoolDayData!]!
|
||
|
mints: [Mint!]!
|
||
|
burns: [Burn!]!
|
||
|
swaps: [Swap!]!
|
||
|
collects: [Collect!]!
|
||
|
ticks: [Tick!]!
|
||
|
}
|
||
|
|
||
|
type PoolHourData {
|
||
|
id: ID!
|
||
|
periodStartUnix: Int!
|
||
|
pool: Pool!
|
||
|
liquidity: BigInt!
|
||
|
sqrtPrice: BigInt!
|
||
|
token0Price: BigDecimal!
|
||
|
token1Price: BigDecimal!
|
||
|
tick: BigInt
|
||
|
feeGrowthGlobal0X128: BigInt!
|
||
|
feeGrowthGlobal1X128: BigInt!
|
||
|
tvlUSD: BigDecimal!
|
||
|
volumeToken0: BigDecimal!
|
||
|
volumeToken1: BigDecimal!
|
||
|
volumeUSD: BigDecimal!
|
||
|
feesUSD: BigDecimal!
|
||
|
txCount: BigInt!
|
||
|
open: BigDecimal!
|
||
|
high: BigDecimal!
|
||
|
low: BigDecimal!
|
||
|
close: BigDecimal!
|
||
|
}
|
||
|
|
||
|
type PoolDayData {
|
||
|
id: ID!
|
||
|
date: Int!
|
||
|
pool: Pool!
|
||
|
liquidity: BigInt!
|
||
|
sqrtPrice: BigInt!
|
||
|
token0Price: BigDecimal!
|
||
|
token1Price: BigDecimal!
|
||
|
tick: BigInt
|
||
|
feeGrowthGlobal0X128: BigInt!
|
||
|
feeGrowthGlobal1X128: BigInt!
|
||
|
tvlUSD: BigDecimal!
|
||
|
volumeToken0: BigDecimal!
|
||
|
volumeToken1: BigDecimal!
|
||
|
volumeUSD: BigDecimal!
|
||
|
feesUSD: BigDecimal!
|
||
|
txCount: BigInt!
|
||
|
open: BigDecimal!
|
||
|
high: BigDecimal!
|
||
|
low: BigDecimal!
|
||
|
close: BigDecimal!
|
||
|
}
|
||
|
|
||
|
type Mint {
|
||
|
id: ID!
|
||
|
transaction: Transaction!
|
||
|
timestamp: BigInt!
|
||
|
pool: Pool!
|
||
|
token0: Token!
|
||
|
token1: Token!
|
||
|
owner: Bytes!
|
||
|
sender: Bytes
|
||
|
origin: Bytes!
|
||
|
amount: BigInt!
|
||
|
amount0: BigDecimal!
|
||
|
amount1: BigDecimal!
|
||
|
amountUSD: BigDecimal
|
||
|
tickLower: BigInt!
|
||
|
tickUpper: BigInt!
|
||
|
logIndex: BigInt
|
||
|
}
|
||
|
|
||
|
type Transaction {
|
||
|
id: ID!
|
||
|
blockNumber: BigInt!
|
||
|
timestamp: BigInt!
|
||
|
gasUsed: BigInt!
|
||
|
gasPrice: BigInt!
|
||
|
mints: [Mint!]!
|
||
|
burns: [Burn!]!
|
||
|
swaps: [Swap!]!
|
||
|
flashed: [Flash!]!
|
||
|
collects: [Collect!]!
|
||
|
}
|
||
|
|
||
|
type Burn {
|
||
|
id: ID!
|
||
|
transaction: Transaction!
|
||
|
pool: Pool!
|
||
|
token0: Token!
|
||
|
token1: Token!
|
||
|
timestamp: BigInt!
|
||
|
owner: Bytes
|
||
|
origin: Bytes!
|
||
|
amount: BigInt!
|
||
|
amount0: BigDecimal!
|
||
|
amount1: BigDecimal!
|
||
|
amountUSD: BigDecimal
|
||
|
tickLower: BigInt!
|
||
|
tickUpper: BigInt!
|
||
|
logIndex: BigInt
|
||
|
}
|
||
|
|
||
|
type Swap {
|
||
|
id: ID!
|
||
|
transaction: Transaction!
|
||
|
timestamp: BigInt!
|
||
|
pool: Pool!
|
||
|
token0: Token!
|
||
|
token1: Token!
|
||
|
sender: Bytes!
|
||
|
recipient: Bytes!
|
||
|
origin: Bytes!
|
||
|
amount0: BigDecimal!
|
||
|
amount1: BigDecimal!
|
||
|
amountUSD: BigDecimal!
|
||
|
sqrtPriceX96: BigInt!
|
||
|
tick: BigInt!
|
||
|
logIndex: BigInt
|
||
|
}
|
||
|
|
||
|
type Flash {
|
||
|
id: ID!
|
||
|
transaction: Transaction!
|
||
|
timestamp: BigInt!
|
||
|
pool: Pool!
|
||
|
sender: Bytes!
|
||
|
recipient: Bytes!
|
||
|
amount0: BigDecimal!
|
||
|
amount1: BigDecimal!
|
||
|
amountUSD: BigDecimal!
|
||
|
amount0Paid: BigDecimal!
|
||
|
amount1Paid: BigDecimal!
|
||
|
logIndex: BigInt
|
||
|
}
|
||
|
|
||
|
type Collect {
|
||
|
id: ID!
|
||
|
transaction: Transaction!
|
||
|
timestamp: BigInt!
|
||
|
pool: Pool!
|
||
|
owner: Bytes
|
||
|
amount0: BigDecimal!
|
||
|
amount1: BigDecimal!
|
||
|
amountUSD: BigDecimal
|
||
|
tickLower: BigInt!
|
||
|
tickUpper: BigInt!
|
||
|
logIndex: BigInt
|
||
|
}
|
||
|
|
||
|
type Tick {
|
||
|
id: ID!
|
||
|
poolAddress: String
|
||
|
tickIdx: BigInt!
|
||
|
pool: Pool!
|
||
|
liquidityGross: BigInt!
|
||
|
liquidityNet: BigInt!
|
||
|
price0: BigDecimal!
|
||
|
price1: BigDecimal!
|
||
|
volumeToken0: BigDecimal!
|
||
|
volumeToken1: BigDecimal!
|
||
|
volumeUSD: BigDecimal!
|
||
|
untrackedVolumeUSD: BigDecimal!
|
||
|
feesUSD: BigDecimal!
|
||
|
collectedFeesToken0: BigDecimal!
|
||
|
collectedFeesToken1: BigDecimal!
|
||
|
collectedFeesUSD: BigDecimal!
|
||
|
createdAtTimestamp: BigInt!
|
||
|
createdAtBlockNumber: BigInt!
|
||
|
liquidityProviderCount: BigInt!
|
||
|
feeGrowthOutside0X128: BigInt!
|
||
|
feeGrowthOutside1X128: BigInt!
|
||
|
}
|
||
|
|
||
|
type TokenDayData {
|
||
|
id: ID!
|
||
|
date: Int!
|
||
|
token: Token!
|
||
|
volume: BigDecimal!
|
||
|
volumeUSD: BigDecimal!
|
||
|
untrackedVolumeUSD: BigDecimal!
|
||
|
totalValueLocked: BigDecimal!
|
||
|
totalValueLockedUSD: BigDecimal!
|
||
|
priceUSD: BigDecimal!
|
||
|
feesUSD: BigDecimal!
|
||
|
open: BigDecimal!
|
||
|
high: BigDecimal!
|
||
|
low: BigDecimal!
|
||
|
close: BigDecimal!
|
||
|
}
|
||
|
|
||
|
type Position {
|
||
|
id: ID!
|
||
|
owner: Bytes!
|
||
|
pool: Pool!
|
||
|
token0: Token!
|
||
|
token1: Token!
|
||
|
tickLower: Tick!
|
||
|
tickUpper: Tick!
|
||
|
liquidity: BigInt!
|
||
|
depositedToken0: BigDecimal!
|
||
|
depositedToken1: BigDecimal!
|
||
|
withdrawnToken0: BigDecimal!
|
||
|
withdrawnToken1: BigDecimal!
|
||
|
collectedToken0: BigDecimal!
|
||
|
collectedToken1: BigDecimal!
|
||
|
collectedFeesToken0: BigDecimal!
|
||
|
collectedFeesToken1: BigDecimal!
|
||
|
amountDepositedUSD: BigDecimal!
|
||
|
amountWithdrawnUSD: BigDecimal!
|
||
|
amountCollectedUSD: BigDecimal!
|
||
|
transaction: Transaction!
|
||
|
feeGrowthInside0LastX128: BigInt!
|
||
|
feeGrowthInside1LastX128: BigInt!
|
||
|
increaseEvents: [IncreaseEvent!]!
|
||
|
decreaseEvents: [IncreaseEvent!]!
|
||
|
}
|
||
|
|
||
|
type IncreaseEvent {
|
||
|
id: ID!
|
||
|
pool: Pool!
|
||
|
tokenID: BigInt!
|
||
|
position: Position!
|
||
|
amount0: BigInt!
|
||
|
amount1: BigInt!
|
||
|
token0: Token!
|
||
|
token1: Token!
|
||
|
timeStamp: BigInt!
|
||
|
transaction: Transaction!
|
||
|
}
|
||
|
|
||
|
type PositionSnapshot {
|
||
|
id: ID!
|
||
|
owner: Bytes!
|
||
|
pool: Pool!
|
||
|
position: Position!
|
||
|
blockNumber: BigInt!
|
||
|
timestamp: BigInt!
|
||
|
liquidity: BigInt!
|
||
|
depositedToken0: BigDecimal!
|
||
|
depositedToken1: BigDecimal!
|
||
|
withdrawnToken0: BigDecimal!
|
||
|
withdrawnToken1: BigDecimal!
|
||
|
collectedFeesToken0: BigDecimal!
|
||
|
collectedFeesToken1: BigDecimal!
|
||
|
transaction: Transaction!
|
||
|
feeGrowthInside0LastX128: BigInt!
|
||
|
feeGrowthInside1LastX128: BigInt!
|
||
|
}
|
||
|
|
||
|
type UniswapDayData {
|
||
|
id: ID!
|
||
|
date: Int!
|
||
|
volumeETH: BigDecimal!
|
||
|
volumeUSD: BigDecimal!
|
||
|
volumeUSDUntracked: BigDecimal!
|
||
|
feesUSD: BigDecimal!
|
||
|
txCount: BigInt!
|
||
|
tvlUSD: BigDecimal!
|
||
|
}
|
||
|
|
||
|
type TickHourData {
|
||
|
id: ID!
|
||
|
periodStartUnix: Int!
|
||
|
pool: Pool!
|
||
|
tick: Tick!
|
||
|
liquidityGross: BigInt!
|
||
|
liquidityNet: BigInt!
|
||
|
volumeToken0: BigDecimal!
|
||
|
volumeToken1: BigDecimal!
|
||
|
volumeUSD: BigDecimal!
|
||
|
feesUSD: BigDecimal!
|
||
|
}
|
||
|
|
||
|
type TickDayData {
|
||
|
id: ID!
|
||
|
date: Int!
|
||
|
pool: Pool!
|
||
|
tick: Tick!
|
||
|
liquidityGross: BigInt!
|
||
|
liquidityNet: BigInt!
|
||
|
volumeToken0: BigDecimal!
|
||
|
volumeToken1: BigDecimal!
|
||
|
volumeUSD: BigDecimal!
|
||
|
feesUSD: BigDecimal!
|
||
|
feeGrowthOutside0X128: BigInt!
|
||
|
feeGrowthOutside1X128: BigInt!
|
||
|
}
|
||
|
|
||
|
type TokenHourData {
|
||
|
id: ID!
|
||
|
periodStartUnix: Int!
|
||
|
token: Token!
|
||
|
volume: BigDecimal!
|
||
|
volumeUSD: BigDecimal!
|
||
|
untrackedVolumeUSD: BigDecimal!
|
||
|
totalValueLocked: BigDecimal!
|
||
|
totalValueLockedUSD: BigDecimal!
|
||
|
priceUSD: BigDecimal!
|
||
|
feesUSD: BigDecimal!
|
||
|
open: BigDecimal!
|
||
|
high: BigDecimal!
|
||
|
low: BigDecimal!
|
||
|
close: BigDecimal!
|
||
|
}
|
||
|
|
||
|
type DecreaseEvent {
|
||
|
id: ID!
|
||
|
pool: Pool!
|
||
|
tokenID: BigInt!
|
||
|
position: Position!
|
||
|
amount0: BigInt!
|
||
|
amount1: BigInt!
|
||
|
token0: Token!
|
||
|
token1: Token!
|
||
|
timeStamp: BigInt!
|
||
|
transaction: Transaction!
|
||
|
}
|
||
|
|
||
|
type SetProtocolFeeEvent {
|
||
|
id: ID!
|
||
|
pool: Pool!
|
||
|
logIndex: BigInt!
|
||
|
new0: BigInt!
|
||
|
new1: BigInt!
|
||
|
old0: BigInt!
|
||
|
old1: BigInt!
|
||
|
timestamp: BigInt!
|
||
|
}
|
||
|
|
||
|
type Mutation {
|
||
|
watchContract(address: String!, kind: String!, checkpoint: Boolean!, startingBlock: Int): Boolean!
|
||
|
}
|
||
|
|
||
|
type Subscription {
|
||
|
onEvent: ResultEvent!
|
||
|
}
|